
    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_e8900f01c28ae382aa2e9510.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.568848;font-style:normal;font-weight:normal;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_d9e213218f0cd24358d34cdb.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00000;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00000{font-family:ff3_c00000;line-height:1.219238;font-style: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);}
.v1_c00000{vertical-align:-34.800000px;}
.v0_c00000{vertical-align:0.000000px;}
.v2_c00000{vertical-align:52.200000px;}
.ls1_c00000{letter-spacing:0.000000px;}
.ls0_c00000{letter-spacing:16.776000px;}
.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:-29.325000px;}
.ws1_c00000{word-spacing:0.000000px;}
._3_c00000{margin-left:-9.588000px;}
._1_c00000{margin-left:-5.049000px;}
._2_c00000{margin-left:-2.211000px;}
._0_c00000{width:2.346000px;}
.fc2_c00000{color:transparent;}
.fc1_c00000{color:rgb(128,128,128);}
.fc0_c00000{color:rgb(0,0,0);}
.fs2_c00000{font-size:24.000000px;}
.fs3_c00000{font-size:48.000000px;}
.fs0_c00000{font-size:51.000000px;}
.fs1_c00000{font-size:72.000000px;}
.y0_c00000{bottom:0.000000px;}
.y3_c00000{bottom:0.270000px;}
.y5_c00000{bottom:3.105000px;}
.y4_c00000{bottom:7.228369px;}
.y2_c00000{bottom:426.870000px;}
.y1_c00000{bottom:676.920000px;}
.h4_c00000{height:13.200073px;}
.h3_c00000{height:28.089844px;}
.h5_c00000{height:43.804688px;}
.h1_c00000{height:64.571777px;}
.h2_c00000{height:81.971777px;}
.h0_c00000{height:793.500000px;}
.w2_c00000{width:104.875500px;}
.w1_c00000{width:624.750000px;}
.w0_c00000{width:625.050000px;}
.x0_c00000{left:0.000000px;}
.x3_c00000{left:22.950000px;}
.x4_c00000{left:264.339249px;}
.x2_c00000{left:387.900000px;}
.x1_c00000{left:428.850000px;}
@media print{
.v1_c00000{vertical-align:-30.933333pt;}
.v0_c00000{vertical-align:0.000000pt;}
.v2_c00000{vertical-align:46.400000pt;}
.ls1_c00000{letter-spacing:0.000000pt;}
.ls0_c00000{letter-spacing:14.912000pt;}
.ws0_c00000{word-spacing:-26.066667pt;}
.ws1_c00000{word-spacing:0.000000pt;}
._3_c00000{margin-left:-8.522667pt;}
._1_c00000{margin-left:-4.488000pt;}
._2_c00000{margin-left:-1.965333pt;}
._0_c00000{width:2.085333pt;}
.fs2_c00000{font-size:21.333333pt;}
.fs3_c00000{font-size:42.666667pt;}
.fs0_c00000{font-size:45.333333pt;}
.fs1_c00000{font-size:64.000000pt;}
.y0_c00000{bottom:0.000000pt;}
.y3_c00000{bottom:0.240000pt;}
.y5_c00000{bottom:2.760000pt;}
.y4_c00000{bottom:6.425217pt;}
.y2_c00000{bottom:379.440000pt;}
.y1_c00000{bottom:601.706667pt;}
.h4_c00000{height:11.733399pt;}
.h3_c00000{height:24.968750pt;}
.h5_c00000{height:38.937500pt;}
.h1_c00000{height:57.397135pt;}
.h2_c00000{height:72.863802pt;}
.h0_c00000{height:705.333333pt;}
.w2_c00000{width:93.222667pt;}
.w1_c00000{width:555.333333pt;}
.w0_c00000{width:555.600000pt;}
.x0_c00000{left:0.000000pt;}
.x3_c00000{left:20.400000pt;}
.x4_c00000{left:234.968221pt;}
.x2_c00000{left:344.800000pt;}
.x1_c00000{left:381.200000pt;}
}





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

.ir_c00001:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00001;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00001{word-spacing:0.000000px;}
.fc0_c00001{color:rgb(128,128,128);}
.fs0_c00001{font-size:48.000000px;}
.y0_c00001{bottom:0.000000px;}
.y2_c00001{bottom:3.105000px;}
.y1_c00001{bottom:7.228369px;}
.h2_c00001{height:13.200073px;}
.h3_c00001{height:43.804688px;}
.h0_c00001{height:801.600000px;}
.h1_c00001{height:801.750000px;}
.w2_c00001{width:104.875500px;}
.w0_c00001{width:576.450000px;}
.w1_c00001{width:576.750000px;}
.x0_c00001{left:0.000000px;}
.x1_c00001{left:240.039230px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws0_c00001{word-spacing:0.000000pt;}
.fs0_c00001{font-size:42.666667pt;}
.y0_c00001{bottom:0.000000pt;}
.y2_c00001{bottom:2.760000pt;}
.y1_c00001{bottom:6.425217pt;}
.h2_c00001{height:11.733399pt;}
.h3_c00001{height:38.937500pt;}
.h0_c00001{height:712.533333pt;}
.h1_c00001{height:712.666667pt;}
.w2_c00001{width:93.222667pt;}
.w0_c00001{width:512.400000pt;}
.w1_c00001{width:512.666667pt;}
.x0_c00001{left:0.000000pt;}
.x1_c00001{left:213.368205pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f928a378444d5b5eb48a74fb.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.568848;font-style:normal;font-weight:normal;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_c5e76763f26a1f5c746664f9.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00002;src:url('chunks/assets/font_ccdd350be9e2dfccaa04ddde.woff2')format("woff");}.ff3_c00002{font-family:ff3_c00002;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00002;src:url('chunks/assets/font_839e52a67aabc40f2bc3b490.woff2')format("woff");}.ff4_c00002{font-family:ff4_c00002;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00002;src:url('chunks/assets/font_02135f3a4b1673c2aa73ea6e.woff2')format("woff");}.ff5_c00002{font-family:ff5_c00002;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00002;src:url('chunks/assets/font_c1f83c2dd07fb4a581fe235b.woff2')format("woff");}.ff6_c00002{font-family:ff6_c00002;line-height:1.284180;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_a66731525ef5da7f0df625d9.woff2')format("woff");}.ff7_c00002{font-family:ff7_c00002;line-height:1.480469;font-style:normal;font-weight: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_c00002;src:url('chunks/assets/font_4e3f7b0e4e7e88f2aededf48.woff2')format("woff");}.ff8_c00002{font-family:ff8_c00002;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00002;src:url('chunks/assets/font_2679d2a3e8dcf4e1ffb47249.woff2')format("woff");}.ff9_c00002{font-family:ff9_c00002;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00002;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ffa_c00002{font-family:ffa_c00002;line-height:1.219238;font-style: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);}
.v1_c00002{vertical-align:-16.800000px;}
.v0_c00002{vertical-align:0.000000px;}
.ls9_c00002{letter-spacing:-6.000000px;}
.ls8_c00002{letter-spacing:0.000000px;}
.ls4_c00002{letter-spacing:2.990400px;}
.ls7_c00002{letter-spacing:3.000000px;}
.ls6_c00002{letter-spacing:4.188000px;}
.ls2_c00002{letter-spacing:6.840000px;}
.ls0_c00002{letter-spacing:7.200000px;}
.ls5_c00002{letter-spacing:13.782000px;}
.ls1_c00002{letter-spacing:15.600000px;}
.ls3_c00002{letter-spacing:21.906000px;}
.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;}
}
.ws3_c00002{word-spacing:-20.352000px;}
.ws1_c00002{word-spacing:-19.500000px;}
.ws5_c00002{word-spacing:-15.000000px;}
.ws4_c00002{word-spacing:-12.291000px;}
.ws2_c00002{word-spacing:-7.500000px;}
.ws6_c00002{word-spacing:-3.888000px;}
.ws7_c00002{word-spacing:-0.043200px;}
.ws8_c00002{word-spacing:0.000000px;}
.ws0_c00002{word-spacing:1.248000px;}
._36_c00002{margin-left:-26.064000px;}
._14_c00002{margin-left:-23.478000px;}
._15_c00002{margin-left:-17.394000px;}
._1d_c00002{margin-left:-16.182000px;}
._13_c00002{margin-left:-13.266000px;}
._16_c00002{margin-left:-11.778000px;}
._37_c00002{margin-left:-10.494000px;}
._2a_c00002{margin-left:-9.138000px;}
._1e_c00002{margin-left:-7.626000px;}
._27_c00002{margin-left:-6.426000px;}
._28_c00002{margin-left:-4.614000px;}
._1f_c00002{margin-left:-2.883000px;}
._20_c00002{margin-left:-1.116000px;}
._2b_c00002{width:1.035000px;}
._22_c00002{width:2.091000px;}
._23_c00002{width:3.576000px;}
._1c_c00002{width:4.650000px;}
._1b_c00002{width:5.736000px;}
._1a_c00002{width:7.254000px;}
._12_c00002{width:8.268000px;}
._17_c00002{width:9.516000px;}
._21_c00002{width:11.532000px;}
._25_c00002{width:12.726000px;}
._1_c00002{width:14.256000px;}
._11_c00002{width:16.068000px;}
._39_c00002{width:17.706000px;}
._2e_c00002{width:19.440000px;}
._f_c00002{width:20.514000px;}
._38_c00002{width:22.386000px;}
._2_c00002{width:23.688000px;}
._0_c00002{width:25.848000px;}
._30_c00002{width:26.973000px;}
._2c_c00002{width:30.240000px;}
._34_c00002{width:32.208000px;}
._8_c00002{width:34.128000px;}
._10_c00002{width:35.412000px;}
._d_c00002{width:37.752000px;}
._18_c00002{width:39.858000px;}
._29_c00002{width:41.910000px;}
._6_c00002{width:44.496000px;}
._b_c00002{width:47.160000px;}
._19_c00002{width:50.934000px;}
._5_c00002{width:56.448000px;}
._4_c00002{width:64.584000px;}
._9_c00002{width:70.344000px;}
._24_c00002{width:71.622000px;}
._7_c00002{width:72.648000px;}
._3_c00002{width:73.872000px;}
._2f_c00002{width:79.200000px;}
._c_c00002{width:84.456000px;}
._35_c00002{width:85.470000px;}
._a_c00002{width:86.976000px;}
._32_c00002{width:132.444000px;}
._26_c00002{width:193.662000px;}
._33_c00002{width:290.970000px;}
._31_c00002{width:307.080000px;}
._e_c00002{width:619.788000px;}
._2d_c00002{width:767.952000px;}
.fc2_c00002{color:transparent;}
.fc1_c00002{color:rgb(128,128,128);}
.fc0_c00002{color:rgb(0,0,0);}
.fs7_c00002{font-size:24.000000px;}
.fs9_c00002{font-size:43.200000px;}
.fsa_c00002{font-size:48.000000px;}
.fs6_c00002{font-size:51.000000px;}
.fs5_c00002{font-size:54.000000px;}
.fs8_c00002{font-size:60.000000px;}
.fs2_c00002{font-size:62.400000px;}
.fs4_c00002{font-size:63.000000px;}
.fs0_c00002{font-size:72.000000px;}
.fs1_c00002{font-size:78.000000px;}
.fs3_c00002{font-size:93.000000px;}
.y0_c00002{bottom:0.000000px;}
.y1a_c00002{bottom:3.105000px;}
.y19_c00002{bottom:7.228363px;}
.y18_c00002{bottom:29.400000px;}
.y17_c00002{bottom:60.150000px;}
.y16_c00002{bottom:80.400000px;}
.y15_c00002{bottom:101.700000px;}
.y14_c00002{bottom:232.950000px;}
.y13_c00002{bottom:243.300000px;}
.yf_c00002{bottom:250.200000px;}
.y12_c00002{bottom:255.600000px;}
.ye_c00002{bottom:268.050000px;}
.yd_c00002{bottom:286.950000px;}
.y11_c00002{bottom:300.450000px;}
.y10_c00002{bottom:363.150000px;}
.yc_c00002{bottom:441.000000px;}
.yb_c00002{bottom:458.400000px;}
.ya_c00002{bottom:484.950000px;}
.y9_c00002{bottom:517.050000px;}
.y8_c00002{bottom:538.050000px;}
.y7_c00002{bottom:571.800000px;}
.y6_c00002{bottom:593.400000px;}
.y5_c00002{bottom:614.550000px;}
.y4_c00002{bottom:636.750000px;}
.y3_c00002{bottom:663.750000px;}
.y2_c00002{bottom:695.250000px;}
.y1_c00002{bottom:729.300000px;}
.hc_c00002{height:13.200074px;}
.h9_c00002{height:30.386719px;}
.hd_c00002{height:43.804688px;}
.ha_c00002{height:52.998047px;}
.hb_c00002{height:58.536000px;}
.h8_c00002{height:60.468750px;}
.h5_c00002{height:61.831055px;}
.h7_c00002{height:64.571777px;}
.h6_c00002{height:70.628906px;}
.h3_c00002{height:78.609375px;}
.h2_c00002{height:91.160156px;}
.h4_c00002{height:117.748535px;}
.h1_c00002{height:800.250000px;}
.h0_c00002{height:800.550000px;}
.w2_c00002{width:104.875500px;}
.w0_c00002{width:596.700000px;}
.w1_c00002{width:597.000000px;}
.x0_c00002{left:0.000000px;}
.x14_c00002{left:59.700000px;}
.x3_c00002{left:61.800000px;}
.x4_c00002{left:63.750000px;}
.x2_c00002{left:66.600000px;}
.xb_c00002{left:73.200000px;}
.xd_c00002{left:76.950000px;}
.x5_c00002{left:78.000000px;}
.xc_c00002{left:80.700000px;}
.x7_c00002{left:83.400000px;}
.x16_c00002{left:121.200000px;}
.x13_c00002{left:156.900000px;}
.x9_c00002{left:172.800000px;}
.x6_c00002{left:184.350000px;}
.xa_c00002{left:202.050000px;}
.x1_c00002{left:207.150000px;}
.x15_c00002{left:227.100000px;}
.x8_c00002{left:249.300000px;}
.x11_c00002{left:452.850000px;}
.x10_c00002{left:453.900000px;}
.x12_c00002{left:457.350000px;}
.xf_c00002{left:459.000000px;}
.xe_c00002{left:583.800000px;}
@media print{
.v1_c00002{vertical-align:-14.933333pt;}
.v0_c00002{vertical-align:0.000000pt;}
.ls9_c00002{letter-spacing:-5.333333pt;}
.ls8_c00002{letter-spacing:0.000000pt;}
.ls4_c00002{letter-spacing:2.658133pt;}
.ls7_c00002{letter-spacing:2.666667pt;}
.ls6_c00002{letter-spacing:3.722667pt;}
.ls2_c00002{letter-spacing:6.080000pt;}
.ls0_c00002{letter-spacing:6.400000pt;}
.ls5_c00002{letter-spacing:12.250667pt;}
.ls1_c00002{letter-spacing:13.866667pt;}
.ls3_c00002{letter-spacing:19.472000pt;}
.ws3_c00002{word-spacing:-18.090667pt;}
.ws1_c00002{word-spacing:-17.333333pt;}
.ws5_c00002{word-spacing:-13.333333pt;}
.ws4_c00002{word-spacing:-10.925333pt;}
.ws2_c00002{word-spacing:-6.666667pt;}
.ws6_c00002{word-spacing:-3.456000pt;}
.ws7_c00002{word-spacing:-0.038400pt;}
.ws8_c00002{word-spacing:0.000000pt;}
.ws0_c00002{word-spacing:1.109333pt;}
._36_c00002{margin-left:-23.168000pt;}
._14_c00002{margin-left:-20.869333pt;}
._15_c00002{margin-left:-15.461333pt;}
._1d_c00002{margin-left:-14.384000pt;}
._13_c00002{margin-left:-11.792000pt;}
._16_c00002{margin-left:-10.469333pt;}
._37_c00002{margin-left:-9.328000pt;}
._2a_c00002{margin-left:-8.122667pt;}
._1e_c00002{margin-left:-6.778667pt;}
._27_c00002{margin-left:-5.712000pt;}
._28_c00002{margin-left:-4.101333pt;}
._1f_c00002{margin-left:-2.562667pt;}
._20_c00002{margin-left:-0.992000pt;}
._2b_c00002{width:0.920000pt;}
._22_c00002{width:1.858667pt;}
._23_c00002{width:3.178667pt;}
._1c_c00002{width:4.133333pt;}
._1b_c00002{width:5.098667pt;}
._1a_c00002{width:6.448000pt;}
._12_c00002{width:7.349333pt;}
._17_c00002{width:8.458667pt;}
._21_c00002{width:10.250667pt;}
._25_c00002{width:11.312000pt;}
._1_c00002{width:12.672000pt;}
._11_c00002{width:14.282667pt;}
._39_c00002{width:15.738667pt;}
._2e_c00002{width:17.280000pt;}
._f_c00002{width:18.234667pt;}
._38_c00002{width:19.898667pt;}
._2_c00002{width:21.056000pt;}
._0_c00002{width:22.976000pt;}
._30_c00002{width:23.976000pt;}
._2c_c00002{width:26.880000pt;}
._34_c00002{width:28.629333pt;}
._8_c00002{width:30.336000pt;}
._10_c00002{width:31.477333pt;}
._d_c00002{width:33.557333pt;}
._18_c00002{width:35.429333pt;}
._29_c00002{width:37.253333pt;}
._6_c00002{width:39.552000pt;}
._b_c00002{width:41.920000pt;}
._19_c00002{width:45.274667pt;}
._5_c00002{width:50.176000pt;}
._4_c00002{width:57.408000pt;}
._9_c00002{width:62.528000pt;}
._24_c00002{width:63.664000pt;}
._7_c00002{width:64.576000pt;}
._3_c00002{width:65.664000pt;}
._2f_c00002{width:70.400000pt;}
._c_c00002{width:75.072000pt;}
._35_c00002{width:75.973333pt;}
._a_c00002{width:77.312000pt;}
._32_c00002{width:117.728000pt;}
._26_c00002{width:172.144000pt;}
._33_c00002{width:258.640000pt;}
._31_c00002{width:272.960000pt;}
._e_c00002{width:550.922667pt;}
._2d_c00002{width:682.624000pt;}
.fs7_c00002{font-size:21.333333pt;}
.fs9_c00002{font-size:38.400000pt;}
.fsa_c00002{font-size:42.666667pt;}
.fs6_c00002{font-size:45.333333pt;}
.fs5_c00002{font-size:48.000000pt;}
.fs8_c00002{font-size:53.333333pt;}
.fs2_c00002{font-size:55.466667pt;}
.fs4_c00002{font-size:56.000000pt;}
.fs0_c00002{font-size:64.000000pt;}
.fs1_c00002{font-size:69.333333pt;}
.fs3_c00002{font-size:82.666667pt;}
.y0_c00002{bottom:0.000000pt;}
.y1a_c00002{bottom:2.760000pt;}
.y19_c00002{bottom:6.425212pt;}
.y18_c00002{bottom:26.133333pt;}
.y17_c00002{bottom:53.466667pt;}
.y16_c00002{bottom:71.466667pt;}
.y15_c00002{bottom:90.400000pt;}
.y14_c00002{bottom:207.066667pt;}
.y13_c00002{bottom:216.266667pt;}
.yf_c00002{bottom:222.400000pt;}
.y12_c00002{bottom:227.200000pt;}
.ye_c00002{bottom:238.266667pt;}
.yd_c00002{bottom:255.066667pt;}
.y11_c00002{bottom:267.066667pt;}
.y10_c00002{bottom:322.800000pt;}
.yc_c00002{bottom:392.000000pt;}
.yb_c00002{bottom:407.466667pt;}
.ya_c00002{bottom:431.066667pt;}
.y9_c00002{bottom:459.600000pt;}
.y8_c00002{bottom:478.266667pt;}
.y7_c00002{bottom:508.266667pt;}
.y6_c00002{bottom:527.466667pt;}
.y5_c00002{bottom:546.266667pt;}
.y4_c00002{bottom:566.000000pt;}
.y3_c00002{bottom:590.000000pt;}
.y2_c00002{bottom:618.000000pt;}
.y1_c00002{bottom:648.266667pt;}
.hc_c00002{height:11.733399pt;}
.h9_c00002{height:27.010417pt;}
.hd_c00002{height:38.937500pt;}
.ha_c00002{height:47.109375pt;}
.hb_c00002{height:52.032000pt;}
.h8_c00002{height:53.750000pt;}
.h5_c00002{height:54.960938pt;}
.h7_c00002{height:57.397135pt;}
.h6_c00002{height:62.781250pt;}
.h3_c00002{height:69.875000pt;}
.h2_c00002{height:81.031250pt;}
.h4_c00002{height:104.665365pt;}
.h1_c00002{height:711.333333pt;}
.h0_c00002{height:711.600000pt;}
.w2_c00002{width:93.222667pt;}
.w0_c00002{width:530.400000pt;}
.w1_c00002{width:530.666667pt;}
.x0_c00002{left:0.000000pt;}
.x14_c00002{left:53.066667pt;}
.x3_c00002{left:54.933333pt;}
.x4_c00002{left:56.666667pt;}
.x2_c00002{left:59.200000pt;}
.xb_c00002{left:65.066667pt;}
.xd_c00002{left:68.400000pt;}
.x5_c00002{left:69.333333pt;}
.xc_c00002{left:71.733333pt;}
.x7_c00002{left:74.133333pt;}
.x16_c00002{left:107.733333pt;}
.x13_c00002{left:139.466667pt;}
.x9_c00002{left:153.600000pt;}
.x6_c00002{left:163.866667pt;}
.xa_c00002{left:179.600000pt;}
.x1_c00002{left:184.133333pt;}
.x15_c00002{left:201.866667pt;}
.x8_c00002{left:221.600000pt;}
.x11_c00002{left:402.533333pt;}
.x10_c00002{left:403.466667pt;}
.x12_c00002{left:406.533333pt;}
.xf_c00002{left:408.000000pt;}
.xe_c00002{left:518.933333pt;}
}





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

.ir_c00003:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00003;src:url('chunks/assets/font_883072785594e3fe12fb0b47.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00003;src:url('chunks/assets/font_1dcf56f73596c3910b5fef48.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00003;src:url('chunks/assets/font_3b5a6831cea1dd75ff17c4ff.woff2')format("woff");}.ff3_c00003{font-family:ff3_c00003;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00003;src:url('chunks/assets/font_f78cab8b162e707073df4a2e.woff2')format("woff");}.ff4_c00003{font-family:ff4_c00003;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00003;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00003{font-family:ff5_c00003;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00003{vertical-align:0.000000px;}
.ls2_c00003{letter-spacing:0.000000px;}
.ls0_c00003{letter-spacing:2.412000px;}
.ls4_c00003{letter-spacing:3.000000px;}
.ls3_c00003{letter-spacing:9.000000px;}
.ls1_c00003{letter-spacing:10.824000px;}
.sc__c00003{text-shadow:none;}
.sc0_c00003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00003{-webkit-text-stroke:0px transparent;}
.sc0_c00003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00003{word-spacing:-27.000000px;}
.ws0_c00003{word-spacing:-24.750000px;}
.ws2_c00003{word-spacing:-15.750000px;}
.ws3_c00003{word-spacing:0.000000px;}
._1a_c00003{margin-left:-13.212000px;}
._4_c00003{margin-left:-9.996000px;}
._0_c00003{margin-left:-4.896000px;}
._19_c00003{margin-left:-3.828000px;}
._11_c00003{margin-left:-1.848000px;}
._10_c00003{width:1.122000px;}
._6_c00003{width:2.601000px;}
._f_c00003{width:3.816000px;}
._a_c00003{width:4.851000px;}
._9_c00003{width:6.741000px;}
._2_c00003{width:8.262000px;}
._13_c00003{width:9.273000px;}
._7_c00003{width:10.506000px;}
._d_c00003{width:13.362000px;}
._1_c00003{width:15.402000px;}
._16_c00003{width:16.896000px;}
._8_c00003{width:18.207000px;}
._12_c00003{width:20.088000px;}
._18_c00003{width:31.293000px;}
._17_c00003{width:35.772000px;}
._b_c00003{width:40.356000px;}
._3_c00003{width:42.585000px;}
._15_c00003{width:45.948000px;}
._c_c00003{width:54.699000px;}
._5_c00003{width:99.042000px;}
._14_c00003{width:109.899000px;}
._e_c00003{width:254.328000px;}
.fc2_c00003{color:transparent;}
.fc1_c00003{color:rgb(128,128,128);}
.fc0_c00003{color:rgb(0,0,0);}
.fs2_c00003{font-size:24.000000px;}
.fs5_c00003{font-size:48.000000px;}
.fs0_c00003{font-size:51.000000px;}
.fs3_c00003{font-size:54.000000px;}
.fs1_c00003{font-size:63.000000px;}
.fs4_c00003{font-size:72.000000px;}
.y0_c00003{bottom:0.000000px;}
.y11_c00003{bottom:3.105000px;}
.y10_c00003{bottom:7.228369px;}
.yf_c00003{bottom:404.670000px;}
.ye_c00003{bottom:449.520000px;}
.yd_c00003{bottom:457.020000px;}
.yc_c00003{bottom:488.370000px;}
.yb_c00003{bottom:507.870000px;}
.ya_c00003{bottom:524.520000px;}
.y9_c00003{bottom:542.670000px;}
.y8_c00003{bottom:559.620000px;}
.y7_c00003{bottom:577.470000px;}
.y6_c00003{bottom:595.020000px;}
.y5_c00003{bottom:613.170000px;}
.y4_c00003{bottom:632.820000px;}
.y3_c00003{bottom:647.670000px;}
.y2_c00003{bottom:684.120000px;}
.y1_c00003{bottom:716.070000px;}
.h5_c00003{height:13.200073px;}
.h6_c00003{height:43.804688px;}
.h3_c00003{height:61.831055px;}
.h2_c00003{height:64.571777px;}
.h4_c00003{height:70.628906px;}
.h1_c00003{height:785.250000px;}
.h0_c00003{height:785.400000px;}
.w2_c00003{width:104.875500px;}
.w0_c00003{width:512.175000px;}
.w1_c00003{width:512.250000px;}
.x0_c00003{left:0.000000px;}
.x4_c00003{left:124.800000px;}
.x5_c00003{left:126.600000px;}
.x3_c00003{left:145.800000px;}
.x9_c00003{left:207.901749px;}
.x2_c00003{left:226.800000px;}
.x1_c00003{left:254.100000px;}
.x6_c00003{left:335.400000px;}
.x7_c00003{left:355.950000px;}
.x8_c00003{left:448.200000px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls2_c00003{letter-spacing:0.000000pt;}
.ls0_c00003{letter-spacing:2.144000pt;}
.ls4_c00003{letter-spacing:2.666667pt;}
.ls3_c00003{letter-spacing:8.000000pt;}
.ls1_c00003{letter-spacing:9.621333pt;}
.ws1_c00003{word-spacing:-24.000000pt;}
.ws0_c00003{word-spacing:-22.000000pt;}
.ws2_c00003{word-spacing:-14.000000pt;}
.ws3_c00003{word-spacing:0.000000pt;}
._1a_c00003{margin-left:-11.744000pt;}
._4_c00003{margin-left:-8.885333pt;}
._0_c00003{margin-left:-4.352000pt;}
._19_c00003{margin-left:-3.402667pt;}
._11_c00003{margin-left:-1.642667pt;}
._10_c00003{width:0.997333pt;}
._6_c00003{width:2.312000pt;}
._f_c00003{width:3.392000pt;}
._a_c00003{width:4.312000pt;}
._9_c00003{width:5.992000pt;}
._2_c00003{width:7.344000pt;}
._13_c00003{width:8.242667pt;}
._7_c00003{width:9.338667pt;}
._d_c00003{width:11.877333pt;}
._1_c00003{width:13.690667pt;}
._16_c00003{width:15.018667pt;}
._8_c00003{width:16.184000pt;}
._12_c00003{width:17.856000pt;}
._18_c00003{width:27.816000pt;}
._17_c00003{width:31.797333pt;}
._b_c00003{width:35.872000pt;}
._3_c00003{width:37.853333pt;}
._15_c00003{width:40.842667pt;}
._c_c00003{width:48.621333pt;}
._5_c00003{width:88.037333pt;}
._14_c00003{width:97.688000pt;}
._e_c00003{width:226.069333pt;}
.fs2_c00003{font-size:21.333333pt;}
.fs5_c00003{font-size:42.666667pt;}
.fs0_c00003{font-size:45.333333pt;}
.fs3_c00003{font-size:48.000000pt;}
.fs1_c00003{font-size:56.000000pt;}
.fs4_c00003{font-size:64.000000pt;}
.y0_c00003{bottom:0.000000pt;}
.y11_c00003{bottom:2.760000pt;}
.y10_c00003{bottom:6.425217pt;}
.yf_c00003{bottom:359.706667pt;}
.ye_c00003{bottom:399.573333pt;}
.yd_c00003{bottom:406.240000pt;}
.yc_c00003{bottom:434.106667pt;}
.yb_c00003{bottom:451.440000pt;}
.ya_c00003{bottom:466.240000pt;}
.y9_c00003{bottom:482.373333pt;}
.y8_c00003{bottom:497.440000pt;}
.y7_c00003{bottom:513.306667pt;}
.y6_c00003{bottom:528.906667pt;}
.y5_c00003{bottom:545.040000pt;}
.y4_c00003{bottom:562.506667pt;}
.y3_c00003{bottom:575.706667pt;}
.y2_c00003{bottom:608.106667pt;}
.y1_c00003{bottom:636.506667pt;}
.h5_c00003{height:11.733399pt;}
.h6_c00003{height:38.937500pt;}
.h3_c00003{height:54.960938pt;}
.h2_c00003{height:57.397135pt;}
.h4_c00003{height:62.781250pt;}
.h1_c00003{height:698.000000pt;}
.h0_c00003{height:698.133333pt;}
.w2_c00003{width:93.222667pt;}
.w0_c00003{width:455.266667pt;}
.w1_c00003{width:455.333333pt;}
.x0_c00003{left:0.000000pt;}
.x4_c00003{left:110.933333pt;}
.x5_c00003{left:112.533333pt;}
.x3_c00003{left:129.600000pt;}
.x9_c00003{left:184.801554pt;}
.x2_c00003{left:201.600000pt;}
.x1_c00003{left:225.866667pt;}
.x6_c00003{left:298.133333pt;}
.x7_c00003{left:316.400000pt;}
.x8_c00003{left:398.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dff7cda1a3a0490a68a4c6e2.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.568848;font-style:normal;font-weight:normal;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_be7a5e76fbd0a92a4fedb7d2.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:1.480469;font-style:normal;font-weight:normal;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_cc254a2d24a7a8fe76a42840.woff2')format("woff");}.ff3_c00004{font-family:ff3_c00004;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00004;src:url('chunks/assets/font_da985059fe8774dcc9f1b93b.woff2')format("woff");}.ff4_c00004{font-family:ff4_c00004;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00004;src:url('chunks/assets/font_273ac41d9f4386a0c1688efe.woff2')format("woff");}.ff5_c00004{font-family:ff5_c00004;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00004;src:url('chunks/assets/font_f24dec45fb88c63efb7f7696.woff2')format("woff");}.ff6_c00004{font-family:ff6_c00004;line-height:1.284180;font-style:normal;font-weight: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_c00004;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00004{font-family:ff7_c00004;line-height:1.219238;font-style: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;}
.v1_c00004{vertical-align:12.600000px;}
.v2_c00004{vertical-align:93.000000px;}
.ls5_c00004{letter-spacing:-3.000000px;}
.ls4_c00004{letter-spacing:0.000000px;}
.ls1_c00004{letter-spacing:2.424000px;}
.ls3_c00004{letter-spacing:3.000000px;}
.ls2_c00004{letter-spacing:21.624000px;}
.ls0_c00004{letter-spacing:23.160000px;}
.ls6_c00004{letter-spacing:30.000000px;}
.sc__c00004{text-shadow:none;}
.sc0_c00004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
.sc0_c00004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00004{word-spacing:-57.000000px;}
.ws0_c00004{word-spacing:-34.704000px;}
.ws7_c00004{word-spacing:-33.192000px;}
.ws6_c00004{word-spacing:-27.000000px;}
.ws4_c00004{word-spacing:-15.300000px;}
.ws3_c00004{word-spacing:-8.784000px;}
.ws8_c00004{word-spacing:0.000000px;}
.ws2_c00004{word-spacing:3.936000px;}
.ws1_c00004{word-spacing:16.632000px;}
._25_c00004{margin-left:-65.400000px;}
._26_c00004{margin-left:-59.613000px;}
._2a_c00004{margin-left:-45.900000px;}
._20_c00004{margin-left:-33.108000px;}
._21_c00004{margin-left:-30.132000px;}
._1d_c00004{margin-left:-24.759000px;}
._28_c00004{margin-left:-16.920000px;}
._2b_c00004{margin-left:-11.067000px;}
._1e_c00004{margin-left:-8.568000px;}
._6_c00004{margin-left:-7.488000px;}
._5_c00004{margin-left:-5.256000px;}
._7_c00004{margin-left:-3.672000px;}
._0_c00004{margin-left:-1.944000px;}
._18_c00004{width:1.122000px;}
._2_c00004{width:2.472000px;}
._17_c00004{width:4.296000px;}
._1_c00004{width:5.928000px;}
._3_c00004{width:7.416000px;}
._1c_c00004{width:8.577000px;}
._c_c00004{width:9.984000px;}
._a_c00004{width:11.304000px;}
._15_c00004{width:12.336000px;}
._e_c00004{width:13.632000px;}
._d_c00004{width:14.664000px;}
._12_c00004{width:15.672000px;}
._9_c00004{width:16.848000px;}
._16_c00004{width:17.856000px;}
._11_c00004{width:18.888000px;}
._b_c00004{width:20.328000px;}
._f_c00004{width:21.576000px;}
._10_c00004{width:22.800000px;}
._14_c00004{width:24.984000px;}
._8_c00004{width:27.672000px;}
._1b_c00004{width:29.529000px;}
._22_c00004{width:36.840000px;}
._1f_c00004{width:49.014000px;}
._13_c00004{width:50.976000px;}
._19_c00004{width:102.024000px;}
._24_c00004{width:189.267000px;}
._4_c00004{width:193.824000px;}
._27_c00004{width:217.224000px;}
._1a_c00004{width:604.056000px;}
._23_c00004{width:639.519000px;}
._29_c00004{width:909.672000px;}
.fc2_c00004{color:transparent;}
.fc1_c00004{color:rgb(128,128,128);}
.fc0_c00004{color:rgb(0,0,0);}
.fs0_c00004{font-size:24.000000px;}
.fs6_c00004{font-size:48.000000px;}
.fs3_c00004{font-size:51.000000px;}
.fs5_c00004{font-size:54.000000px;}
.fs4_c00004{font-size:63.000000px;}
.fs1_c00004{font-size:72.000000px;}
.fs2_c00004{font-size:144.000000px;}
.y0_c00004{bottom:0.000000px;}
.y18_c00004{bottom:3.105000px;}
.y17_c00004{bottom:7.228369px;}
.y16_c00004{bottom:178.170000px;}
.y15_c00004{bottom:231.120000px;}
.y14_c00004{bottom:274.620000px;}
.y13_c00004{bottom:315.570000px;}
.y12_c00004{bottom:348.270000px;}
.y11_c00004{bottom:366.420000px;}
.y10_c00004{bottom:384.720000px;}
.yf_c00004{bottom:401.970000px;}
.ye_c00004{bottom:419.520000px;}
.yd_c00004{bottom:437.070000px;}
.yc_c00004{bottom:460.920000px;}
.yb_c00004{bottom:472.170000px;}
.ya_c00004{bottom:525.120000px;}
.y9_c00004{bottom:543.270000px;}
.y8_c00004{bottom:560.970000px;}
.y7_c00004{bottom:578.520000px;}
.y6_c00004{bottom:593.370000px;}
.y5_c00004{bottom:613.470000px;}
.y4_c00004{bottom:629.820000px;}
.y2_c00004{bottom:640.920000px;}
.y3_c00004{bottom:648.570000px;}
.y1_c00004{bottom:696.870000px;}
.h9_c00004{height:13.200073px;}
.h4_c00004{height:30.386719px;}
.ha_c00004{height:43.804688px;}
.h7_c00004{height:52.971680px;}
.h6_c00004{height:61.831055px;}
.h5_c00004{height:64.571777px;}
.h8_c00004{height:91.160156px;}
.h2_c00004{height:103.760156px;}
.h3_c00004{height:182.320312px;}
.h0_c00004{height:775.950000px;}
.h1_c00004{height:776.250000px;}
.w1_c00004{width:104.875500px;}
.w0_c00004{width:526.500000px;}
.x0_c00004{left:0.000000px;}
.xa_c00004{left:17.850000px;}
.x1_c00004{left:42.150000px;}
.x2_c00004{left:47.850000px;}
.x4_c00004{left:49.200000px;}
.x5_c00004{left:50.550000px;}
.x8_c00004{left:52.200000px;}
.x9_c00004{left:53.250000px;}
.xc_c00004{left:55.950000px;}
.x3_c00004{left:68.550000px;}
.x6_c00004{left:150.450000px;}
.x7_c00004{left:205.200000px;}
.xe_c00004{left:215.064240px;}
.xb_c00004{left:258.900000px;}
.xd_c00004{left:351.600000px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.v1_c00004{vertical-align:11.200000pt;}
.v2_c00004{vertical-align:82.666667pt;}
.ls5_c00004{letter-spacing:-2.666667pt;}
.ls4_c00004{letter-spacing:0.000000pt;}
.ls1_c00004{letter-spacing:2.154667pt;}
.ls3_c00004{letter-spacing:2.666667pt;}
.ls2_c00004{letter-spacing:19.221333pt;}
.ls0_c00004{letter-spacing:20.586667pt;}
.ls6_c00004{letter-spacing:26.666667pt;}
.ws5_c00004{word-spacing:-50.666667pt;}
.ws0_c00004{word-spacing:-30.848000pt;}
.ws7_c00004{word-spacing:-29.504000pt;}
.ws6_c00004{word-spacing:-24.000000pt;}
.ws4_c00004{word-spacing:-13.600000pt;}
.ws3_c00004{word-spacing:-7.808000pt;}
.ws8_c00004{word-spacing:0.000000pt;}
.ws2_c00004{word-spacing:3.498667pt;}
.ws1_c00004{word-spacing:14.784000pt;}
._25_c00004{margin-left:-58.133333pt;}
._26_c00004{margin-left:-52.989333pt;}
._2a_c00004{margin-left:-40.800000pt;}
._20_c00004{margin-left:-29.429333pt;}
._21_c00004{margin-left:-26.784000pt;}
._1d_c00004{margin-left:-22.008000pt;}
._28_c00004{margin-left:-15.040000pt;}
._2b_c00004{margin-left:-9.837333pt;}
._1e_c00004{margin-left:-7.616000pt;}
._6_c00004{margin-left:-6.656000pt;}
._5_c00004{margin-left:-4.672000pt;}
._7_c00004{margin-left:-3.264000pt;}
._0_c00004{margin-left:-1.728000pt;}
._18_c00004{width:0.997333pt;}
._2_c00004{width:2.197333pt;}
._17_c00004{width:3.818667pt;}
._1_c00004{width:5.269333pt;}
._3_c00004{width:6.592000pt;}
._1c_c00004{width:7.624000pt;}
._c_c00004{width:8.874667pt;}
._a_c00004{width:10.048000pt;}
._15_c00004{width:10.965333pt;}
._e_c00004{width:12.117333pt;}
._d_c00004{width:13.034667pt;}
._12_c00004{width:13.930667pt;}
._9_c00004{width:14.976000pt;}
._16_c00004{width:15.872000pt;}
._11_c00004{width:16.789333pt;}
._b_c00004{width:18.069333pt;}
._f_c00004{width:19.178667pt;}
._10_c00004{width:20.266667pt;}
._14_c00004{width:22.208000pt;}
._8_c00004{width:24.597333pt;}
._1b_c00004{width:26.248000pt;}
._22_c00004{width:32.746667pt;}
._1f_c00004{width:43.568000pt;}
._13_c00004{width:45.312000pt;}
._19_c00004{width:90.688000pt;}
._24_c00004{width:168.237333pt;}
._4_c00004{width:172.288000pt;}
._27_c00004{width:193.088000pt;}
._1a_c00004{width:536.938667pt;}
._23_c00004{width:568.461333pt;}
._29_c00004{width:808.597333pt;}
.fs0_c00004{font-size:21.333333pt;}
.fs6_c00004{font-size:42.666667pt;}
.fs3_c00004{font-size:45.333333pt;}
.fs5_c00004{font-size:48.000000pt;}
.fs4_c00004{font-size:56.000000pt;}
.fs1_c00004{font-size:64.000000pt;}
.fs2_c00004{font-size:128.000000pt;}
.y0_c00004{bottom:0.000000pt;}
.y18_c00004{bottom:2.760000pt;}
.y17_c00004{bottom:6.425217pt;}
.y16_c00004{bottom:158.373333pt;}
.y15_c00004{bottom:205.440000pt;}
.y14_c00004{bottom:244.106667pt;}
.y13_c00004{bottom:280.506667pt;}
.y12_c00004{bottom:309.573333pt;}
.y11_c00004{bottom:325.706667pt;}
.y10_c00004{bottom:341.973333pt;}
.yf_c00004{bottom:357.306667pt;}
.ye_c00004{bottom:372.906667pt;}
.yd_c00004{bottom:388.506667pt;}
.yc_c00004{bottom:409.706667pt;}
.yb_c00004{bottom:419.706667pt;}
.ya_c00004{bottom:466.773333pt;}
.y9_c00004{bottom:482.906667pt;}
.y8_c00004{bottom:498.640000pt;}
.y7_c00004{bottom:514.240000pt;}
.y6_c00004{bottom:527.440000pt;}
.y5_c00004{bottom:545.306667pt;}
.y4_c00004{bottom:559.840000pt;}
.y2_c00004{bottom:569.706667pt;}
.y3_c00004{bottom:576.506667pt;}
.y1_c00004{bottom:619.440000pt;}
.h9_c00004{height:11.733399pt;}
.h4_c00004{height:27.010417pt;}
.ha_c00004{height:38.937500pt;}
.h7_c00004{height:47.085938pt;}
.h6_c00004{height:54.960938pt;}
.h5_c00004{height:57.397135pt;}
.h8_c00004{height:81.031250pt;}
.h2_c00004{height:92.231250pt;}
.h3_c00004{height:162.062500pt;}
.h0_c00004{height:689.733333pt;}
.h1_c00004{height:690.000000pt;}
.w1_c00004{width:93.222667pt;}
.w0_c00004{width:468.000000pt;}
.x0_c00004{left:0.000000pt;}
.xa_c00004{left:15.866667pt;}
.x1_c00004{left:37.466667pt;}
.x2_c00004{left:42.533333pt;}
.x4_c00004{left:43.733333pt;}
.x5_c00004{left:44.933333pt;}
.x8_c00004{left:46.400000pt;}
.x9_c00004{left:47.333333pt;}
.xc_c00004{left:49.733333pt;}
.x3_c00004{left:60.933333pt;}
.x6_c00004{left:133.733333pt;}
.x7_c00004{left:182.400000pt;}
.xe_c00004{left:191.168213pt;}
.xb_c00004{left:230.133333pt;}
.xd_c00004{left:312.533333pt;}
}





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

.ir_c00005:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00005{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00005;src:url('chunks/assets/font_df2bc02de5e6fc3e26ea3ee1.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00005;src:url('chunks/assets/font_01c643d8759ea0c504c68644.woff2')format("woff");}.ff2_c00005{font-family:ff2_c00005;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00005;src:url('chunks/assets/font_339735e71afe9350519f884f.woff2')format("woff");}.ff3_c00005{font-family:ff3_c00005;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00005;src:url('chunks/assets/font_0fc19586aa494c4aeeaf1c6c.woff2')format("woff");}.ff4_c00005{font-family:ff4_c00005;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00005;src:url('chunks/assets/font_fd147c568a0a9cbe6402bf56.woff2')format("woff");}.ff5_c00005{font-family:ff5_c00005;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00005;src:url('chunks/assets/font_a4113599174a3bab52d0e0e4.woff2')format("woff");}.ff6_c00005{font-family:ff6_c00005;line-height:1.284180;font-style:normal;font-weight: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_c00005;src:url('chunks/assets/font_cf7697bed687b68f5226dd8f.woff2')format("woff");}.ff7_c00005{font-family:ff7_c00005;line-height:1.592000;font-style:normal;font-weight: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_c00005;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff8_c00005{font-family:ff8_c00005;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00005{vertical-align:0.000000px;}
.ls5_c00005{letter-spacing:-6.000000px;}
.ls4_c00005{letter-spacing:0.000000px;}
.ls0_c00005{letter-spacing:1.200000px;}
.ls2_c00005{letter-spacing:2.058000px;}
.ls6_c00005{letter-spacing:3.000000px;}
.ls1_c00005{letter-spacing:14.400000px;}
.ls3_c00005{letter-spacing:23.382000px;}
.sc__c00005{text-shadow:none;}
.sc0_c00005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00005{-webkit-text-stroke:0px transparent;}
.sc0_c00005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00005{word-spacing:-19.500000px;}
.ws2_c00005{word-spacing:-18.000000px;}
.ws0_c00005{word-spacing:-16.629000px;}
.ws6_c00005{word-spacing:-16.254000px;}
.ws3_c00005{word-spacing:-12.291000px;}
.ws4_c00005{word-spacing:-7.500000px;}
.ws8_c00005{word-spacing:0.000000px;}
.ws5_c00005{word-spacing:3.393600px;}
.ws7_c00005{word-spacing:19.320000px;}
._11_c00005{margin-left:-23.478000px;}
._e_c00005{margin-left:-22.446000px;}
._c_c00005{margin-left:-19.881000px;}
._b_c00005{margin-left:-18.876000px;}
._0_c00005{margin-left:-17.862000px;}
._f_c00005{margin-left:-16.698000px;}
._a_c00005{margin-left:-15.444000px;}
._2_c00005{margin-left:-13.572000px;}
._9_c00005{margin-left:-12.558000px;}
._1_c00005{margin-left:-11.466000px;}
._4_c00005{margin-left:-9.906000px;}
._3_c00005{margin-left:-8.580000px;}
._5_c00005{margin-left:-7.410000px;}
._7_c00005{margin-left:-6.396000px;}
._8_c00005{margin-left:-5.148000px;}
._6_c00005{margin-left:-3.900000px;}
._d_c00005{margin-left:-2.508000px;}
._1a_c00005{margin-left:-1.176000px;}
._10_c00005{width:1.623000px;}
._13_c00005{width:3.744000px;}
._15_c00005{width:5.307000px;}
._16_c00005{width:7.074000px;}
._1c_c00005{width:8.934000px;}
._21_c00005{width:10.722000px;}
._17_c00005{width:18.360000px;}
._1f_c00005{width:23.274000px;}
._20_c00005{width:31.740000px;}
._18_c00005{width:32.805000px;}
._1d_c00005{width:45.619142px;}
._1e_c00005{width:48.960058px;}
._14_c00005{width:54.522000px;}
._12_c00005{width:152.169000px;}
._19_c00005{width:481.302000px;}
._1b_c00005{width:644.760000px;}
.fc2_c00005{color:transparent;}
.fc1_c00005{color:rgb(128,128,128);}
.fc0_c00005{color:rgb(0,0,0);}
.fs8_c00005{font-size:48.000000px;}
.fs4_c00005{font-size:51.000000px;}
.fs3_c00005{font-size:54.000000px;}
.fs6_c00005{font-size:57.600000px;}
.fs7_c00005{font-size:60.000000px;}
.fs5_c00005{font-size:63.000000px;}
.fs1_c00005{font-size:69.000000px;}
.fs2_c00005{font-size:72.000000px;}
.fs0_c00005{font-size:78.000000px;}
.y0_c00005{bottom:0.000000px;}
.y25_c00005{bottom:3.105000px;}
.y24_c00005{bottom:7.228371px;}
.y23_c00005{bottom:54.465000px;}
.y22_c00005{bottom:145.515000px;}
.y21_c00005{bottom:173.565000px;}
.y20_c00005{bottom:188.115000px;}
.y1f_c00005{bottom:202.965000px;}
.y1e_c00005{bottom:216.765000px;}
.y1d_c00005{bottom:231.165000px;}
.y1c_c00005{bottom:244.815000px;}
.y1b_c00005{bottom:259.215000px;}
.y1a_c00005{bottom:274.065000px;}
.y19_c00005{bottom:287.565000px;}
.y18_c00005{bottom:301.365000px;}
.y17_c00005{bottom:315.915000px;}
.y16_c00005{bottom:358.215000px;}
.y15_c00005{bottom:377.415000px;}
.y14_c00005{bottom:431.715000px;}
.y13_c00005{bottom:445.815000px;}
.y12_c00005{bottom:461.415000px;}
.y11_c00005{bottom:475.965000px;}
.y10_c00005{bottom:489.765000px;}
.yf_c00005{bottom:504.315000px;}
.ye_c00005{bottom:518.415000px;}
.yd_c00005{bottom:531.915000px;}
.yc_c00005{bottom:545.715000px;}
.yb_c00005{bottom:559.965000px;}
.ya_c00005{bottom:573.765000px;}
.y9_c00005{bottom:588.315000px;}
.y8_c00005{bottom:616.365000px;}
.y7_c00005{bottom:630.915000px;}
.y6_c00005{bottom:644.715000px;}
.y5_c00005{bottom:657.465000px;}
.y4_c00005{bottom:672.315000px;}
.y3_c00005{bottom:687.165000px;}
.y2_c00005{bottom:701.115000px;}
.y1_c00005{bottom:714.615000px;}
.h8_c00005{height:13.200074px;}
.h9_c00005{height:43.804688px;}
.h7_c00005{height:60.468750px;}
.h5_c00005{height:61.831055px;}
.h4_c00005{height:64.571777px;}
.h2_c00005{height:78.609375px;}
.h3_c00005{height:87.361816px;}
.h6_c00005{height:91.160156px;}
.h0_c00005{height:785.175000px;}
.h1_c00005{height:785.250000px;}
.w2_c00005{width:104.875500px;}
.w0_c00005{width:521.100000px;}
.w1_c00005{width:521.250000px;}
.x0_c00005{left:0.000000px;}
.x4_c00005{left:124.500000px;}
.x2_c00005{left:125.850000px;}
.x3_c00005{left:127.500000px;}
.x7_c00005{left:129.300000px;}
.x1_c00005{left:193.650000px;}
.xa_c00005{left:212.364258px;}
.x6_c00005{left:250.800000px;}
.x5_c00005{left:308.250000px;}
.x8_c00005{left:315.900000px;}
.x9_c00005{left:453.300000px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls5_c00005{letter-spacing:-5.333333pt;}
.ls4_c00005{letter-spacing:0.000000pt;}
.ls0_c00005{letter-spacing:1.066667pt;}
.ls2_c00005{letter-spacing:1.829333pt;}
.ls6_c00005{letter-spacing:2.666667pt;}
.ls1_c00005{letter-spacing:12.800000pt;}
.ls3_c00005{letter-spacing:20.784000pt;}
.ws1_c00005{word-spacing:-17.333333pt;}
.ws2_c00005{word-spacing:-16.000000pt;}
.ws0_c00005{word-spacing:-14.781333pt;}
.ws6_c00005{word-spacing:-14.448000pt;}
.ws3_c00005{word-spacing:-10.925333pt;}
.ws4_c00005{word-spacing:-6.666667pt;}
.ws8_c00005{word-spacing:0.000000pt;}
.ws5_c00005{word-spacing:3.016533pt;}
.ws7_c00005{word-spacing:17.173333pt;}
._11_c00005{margin-left:-20.869333pt;}
._e_c00005{margin-left:-19.952000pt;}
._c_c00005{margin-left:-17.672000pt;}
._b_c00005{margin-left:-16.778667pt;}
._0_c00005{margin-left:-15.877333pt;}
._f_c00005{margin-left:-14.842667pt;}
._a_c00005{margin-left:-13.728000pt;}
._2_c00005{margin-left:-12.064000pt;}
._9_c00005{margin-left:-11.162667pt;}
._1_c00005{margin-left:-10.192000pt;}
._4_c00005{margin-left:-8.805333pt;}
._3_c00005{margin-left:-7.626667pt;}
._5_c00005{margin-left:-6.586667pt;}
._7_c00005{margin-left:-5.685333pt;}
._8_c00005{margin-left:-4.576000pt;}
._6_c00005{margin-left:-3.466667pt;}
._d_c00005{margin-left:-2.229333pt;}
._1a_c00005{margin-left:-1.045333pt;}
._10_c00005{width:1.442667pt;}
._13_c00005{width:3.328000pt;}
._15_c00005{width:4.717333pt;}
._16_c00005{width:6.288000pt;}
._1c_c00005{width:7.941333pt;}
._21_c00005{width:9.530667pt;}
._17_c00005{width:16.320000pt;}
._1f_c00005{width:20.688000pt;}
._20_c00005{width:28.213333pt;}
._18_c00005{width:29.160000pt;}
._1d_c00005{width:40.550349pt;}
._1e_c00005{width:43.520051pt;}
._14_c00005{width:48.464000pt;}
._12_c00005{width:135.261333pt;}
._19_c00005{width:427.824000pt;}
._1b_c00005{width:573.120000pt;}
.fs8_c00005{font-size:42.666667pt;}
.fs4_c00005{font-size:45.333333pt;}
.fs3_c00005{font-size:48.000000pt;}
.fs6_c00005{font-size:51.200000pt;}
.fs7_c00005{font-size:53.333333pt;}
.fs5_c00005{font-size:56.000000pt;}
.fs1_c00005{font-size:61.333333pt;}
.fs2_c00005{font-size:64.000000pt;}
.fs0_c00005{font-size:69.333333pt;}
.y0_c00005{bottom:0.000000pt;}
.y25_c00005{bottom:2.760000pt;}
.y24_c00005{bottom:6.425219pt;}
.y23_c00005{bottom:48.413333pt;}
.y22_c00005{bottom:129.346667pt;}
.y21_c00005{bottom:154.280000pt;}
.y20_c00005{bottom:167.213333pt;}
.y1f_c00005{bottom:180.413333pt;}
.y1e_c00005{bottom:192.680000pt;}
.y1d_c00005{bottom:205.480000pt;}
.y1c_c00005{bottom:217.613333pt;}
.y1b_c00005{bottom:230.413333pt;}
.y1a_c00005{bottom:243.613333pt;}
.y19_c00005{bottom:255.613333pt;}
.y18_c00005{bottom:267.880000pt;}
.y17_c00005{bottom:280.813333pt;}
.y16_c00005{bottom:318.413333pt;}
.y15_c00005{bottom:335.480000pt;}
.y14_c00005{bottom:383.746667pt;}
.y13_c00005{bottom:396.280000pt;}
.y12_c00005{bottom:410.146667pt;}
.y11_c00005{bottom:423.080000pt;}
.y10_c00005{bottom:435.346667pt;}
.yf_c00005{bottom:448.280000pt;}
.ye_c00005{bottom:460.813333pt;}
.yd_c00005{bottom:472.813333pt;}
.yc_c00005{bottom:485.080000pt;}
.yb_c00005{bottom:497.746667pt;}
.ya_c00005{bottom:510.013333pt;}
.y9_c00005{bottom:522.946667pt;}
.y8_c00005{bottom:547.880000pt;}
.y7_c00005{bottom:560.813333pt;}
.y6_c00005{bottom:573.080000pt;}
.y5_c00005{bottom:584.413333pt;}
.y4_c00005{bottom:597.613333pt;}
.y3_c00005{bottom:610.813333pt;}
.y2_c00005{bottom:623.213333pt;}
.y1_c00005{bottom:635.213333pt;}
.h8_c00005{height:11.733399pt;}
.h9_c00005{height:38.937500pt;}
.h7_c00005{height:53.750000pt;}
.h5_c00005{height:54.960938pt;}
.h4_c00005{height:57.397135pt;}
.h2_c00005{height:69.875000pt;}
.h3_c00005{height:77.654948pt;}
.h6_c00005{height:81.031250pt;}
.h0_c00005{height:697.933333pt;}
.h1_c00005{height:698.000000pt;}
.w2_c00005{width:93.222667pt;}
.w0_c00005{width:463.200000pt;}
.w1_c00005{width:463.333333pt;}
.x0_c00005{left:0.000000pt;}
.x4_c00005{left:110.666667pt;}
.x2_c00005{left:111.866667pt;}
.x3_c00005{left:113.333333pt;}
.x7_c00005{left:114.933333pt;}
.x1_c00005{left:172.133333pt;}
.xa_c00005{left:188.768229pt;}
.x6_c00005{left:222.933333pt;}
.x5_c00005{left:274.000000pt;}
.x8_c00005{left:280.800000pt;}
.x9_c00005{left:402.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d2dcad77186402e23554ec7e.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.568848;font-style:normal;font-weight:normal;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_024932a5e48538f155777b71.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00006;src:url('chunks/assets/font_3c51df77bb77cd58d25967ff.woff2')format("woff");}.ff3_c00006{font-family:ff3_c00006;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00006;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00006{font-family:ff4_c00006;line-height:1.219238;font-style: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;}
.v1_c00006{vertical-align:1.200000px;}
.ls3_c00006{letter-spacing:-6.000000px;}
.ls2_c00006{letter-spacing:0.000000px;}
.ls1_c00006{letter-spacing:3.000000px;}
.ls0_c00006{letter-spacing:45.000000px;}
.sc__c00006{text-shadow:none;}
.sc0_c00006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00006{word-spacing:-15.000000px;}
.ws1_c00006{word-spacing:-7.500000px;}
.ws2_c00006{word-spacing:0.000000px;}
._16_c00006{margin-left:-36.924000px;}
._17_c00006{margin-left:-11.730000px;}
._14_c00006{margin-left:-6.153000px;}
._15_c00006{margin-left:-4.188000px;}
._11_c00006{margin-left:-3.087000px;}
._10_c00006{margin-left:-1.851000px;}
._9_c00006{width:1.938000px;}
._d_c00006{width:3.687000px;}
._a_c00006{width:4.818000px;}
._b_c00006{width:6.174000px;}
._7_c00006{width:7.320000px;}
._e_c00006{width:8.763000px;}
._c_c00006{width:9.894000px;}
._1_c00006{width:10.944000px;}
._2_c00006{width:14.112000px;}
._f_c00006{width:15.972000px;}
._13_c00006{width:17.049000px;}
._0_c00006{width:23.184000px;}
._18_c00006{width:24.972000px;}
._8_c00006{width:27.960000px;}
._6_c00006{width:30.096000px;}
._5_c00006{width:31.608000px;}
._4_c00006{width:33.696000px;}
._3_c00006{width:37.008000px;}
._1b_c00006{width:42.702000px;}
._1e_c00006{width:62.730000px;}
._1a_c00006{width:76.500000px;}
._1c_c00006{width:83.232000px;}
._19_c00006{width:338.337000px;}
._12_c00006{width:340.053000px;}
._1d_c00006{width:344.214000px;}
.fc2_c00006{color:transparent;}
.fc1_c00006{color:rgb(128,128,128);}
.fc0_c00006{color:rgb(0,0,0);}
.fs4_c00006{font-size:48.000000px;}
.fs2_c00006{font-size:51.000000px;}
.fs3_c00006{font-size:54.000000px;}
.fs1_c00006{font-size:60.000000px;}
.fs0_c00006{font-size:72.000000px;}
.y0_c00006{bottom:0.000000px;}
.y28_c00006{bottom:3.105000px;}
.y27_c00006{bottom:7.228357px;}
.y26_c00006{bottom:71.880000px;}
.y25_c00006{bottom:83.430000px;}
.y24_c00006{bottom:100.980000px;}
.y23_c00006{bottom:119.430000px;}
.y22_c00006{bottom:138.030000px;}
.y21_c00006{bottom:156.030000px;}
.y20_c00006{bottom:173.580000px;}
.y1f_c00006{bottom:192.030000px;}
.y1e_c00006{bottom:210.330000px;}
.y1d_c00006{bottom:227.880000px;}
.y1c_c00006{bottom:245.730000px;}
.y1b_c00006{bottom:264.330000px;}
.y1a_c00006{bottom:281.880000px;}
.y19_c00006{bottom:298.980000px;}
.y18_c00006{bottom:315.930000px;}
.y17_c00006{bottom:333.780000px;}
.y16_c00006{bottom:351.030000px;}
.y15_c00006{bottom:369.180000px;}
.y14_c00006{bottom:386.730000px;}
.y13_c00006{bottom:404.430000px;}
.y12_c00006{bottom:422.580000px;}
.y11_c00006{bottom:440.130000px;}
.y10_c00006{bottom:458.280000px;}
.yf_c00006{bottom:475.830000px;}
.ye_c00006{bottom:493.530000px;}
.yd_c00006{bottom:511.080000px;}
.yc_c00006{bottom:528.480000px;}
.yb_c00006{bottom:546.180000px;}
.ya_c00006{bottom:563.730000px;}
.y9_c00006{bottom:581.580000px;}
.y8_c00006{bottom:598.680000px;}
.y7_c00006{bottom:616.980000px;}
.y6_c00006{bottom:634.230000px;}
.y5_c00006{bottom:652.080000px;}
.y4_c00006{bottom:669.930000px;}
.y3_c00006{bottom:687.180000px;}
.y2_c00006{bottom:705.030000px;}
.y1_c00006{bottom:724.980000px;}
.h5_c00006{height:13.200074px;}
.h6_c00006{height:43.804688px;}
.h4_c00006{height:64.571777px;}
.h3_c00006{height:75.966797px;}
.h2_c00006{height:91.160156px;}
.h1_c00006{height:777.750000px;}
.h0_c00006{height:777.900000px;}
.w2_c00006{width:104.875500px;}
.w1_c00006{width:520.500000px;}
.w0_c00006{width:520.575000px;}
.x0_c00006{left:0.000000px;}
.x6_c00006{left:4.950000px;}
.x9_c00006{left:6.450000px;}
.x7_c00006{left:10.500000px;}
.x8_c00006{left:12.150000px;}
.x5_c00006{left:13.200000px;}
.x4_c00006{left:14.400000px;}
.x2_c00006{left:16.950000px;}
.x3_c00006{left:37.500000px;}
.xa_c00006{left:67.050000px;}
.x1_c00006{left:135.900000px;}
.xb_c00006{left:212.101730px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.v1_c00006{vertical-align:1.066667pt;}
.ls3_c00006{letter-spacing:-5.333333pt;}
.ls2_c00006{letter-spacing:0.000000pt;}
.ls1_c00006{letter-spacing:2.666667pt;}
.ls0_c00006{letter-spacing:40.000000pt;}
.ws0_c00006{word-spacing:-13.333333pt;}
.ws1_c00006{word-spacing:-6.666667pt;}
.ws2_c00006{word-spacing:0.000000pt;}
._16_c00006{margin-left:-32.821333pt;}
._17_c00006{margin-left:-10.426667pt;}
._14_c00006{margin-left:-5.469333pt;}
._15_c00006{margin-left:-3.722667pt;}
._11_c00006{margin-left:-2.744000pt;}
._10_c00006{margin-left:-1.645333pt;}
._9_c00006{width:1.722667pt;}
._d_c00006{width:3.277333pt;}
._a_c00006{width:4.282667pt;}
._b_c00006{width:5.488000pt;}
._7_c00006{width:6.506667pt;}
._e_c00006{width:7.789333pt;}
._c_c00006{width:8.794667pt;}
._1_c00006{width:9.728000pt;}
._2_c00006{width:12.544000pt;}
._f_c00006{width:14.197333pt;}
._13_c00006{width:15.154667pt;}
._0_c00006{width:20.608000pt;}
._18_c00006{width:22.197333pt;}
._8_c00006{width:24.853333pt;}
._6_c00006{width:26.752000pt;}
._5_c00006{width:28.096000pt;}
._4_c00006{width:29.952000pt;}
._3_c00006{width:32.896000pt;}
._1b_c00006{width:37.957333pt;}
._1e_c00006{width:55.760000pt;}
._1a_c00006{width:68.000000pt;}
._1c_c00006{width:73.984000pt;}
._19_c00006{width:300.744000pt;}
._12_c00006{width:302.269333pt;}
._1d_c00006{width:305.968000pt;}
.fs4_c00006{font-size:42.666667pt;}
.fs2_c00006{font-size:45.333333pt;}
.fs3_c00006{font-size:48.000000pt;}
.fs1_c00006{font-size:53.333333pt;}
.fs0_c00006{font-size:64.000000pt;}
.y0_c00006{bottom:0.000000pt;}
.y28_c00006{bottom:2.760000pt;}
.y27_c00006{bottom:6.425206pt;}
.y26_c00006{bottom:63.893333pt;}
.y25_c00006{bottom:74.160000pt;}
.y24_c00006{bottom:89.760000pt;}
.y23_c00006{bottom:106.160000pt;}
.y22_c00006{bottom:122.693333pt;}
.y21_c00006{bottom:138.693333pt;}
.y20_c00006{bottom:154.293333pt;}
.y1f_c00006{bottom:170.693333pt;}
.y1e_c00006{bottom:186.960000pt;}
.y1d_c00006{bottom:202.560000pt;}
.y1c_c00006{bottom:218.426667pt;}
.y1b_c00006{bottom:234.960000pt;}
.y1a_c00006{bottom:250.560000pt;}
.y19_c00006{bottom:265.760000pt;}
.y18_c00006{bottom:280.826667pt;}
.y17_c00006{bottom:296.693333pt;}
.y16_c00006{bottom:312.026667pt;}
.y15_c00006{bottom:328.160000pt;}
.y14_c00006{bottom:343.760000pt;}
.y13_c00006{bottom:359.493333pt;}
.y12_c00006{bottom:375.626667pt;}
.y11_c00006{bottom:391.226667pt;}
.y10_c00006{bottom:407.360000pt;}
.yf_c00006{bottom:422.960000pt;}
.ye_c00006{bottom:438.693333pt;}
.yd_c00006{bottom:454.293333pt;}
.yc_c00006{bottom:469.760000pt;}
.yb_c00006{bottom:485.493333pt;}
.ya_c00006{bottom:501.093333pt;}
.y9_c00006{bottom:516.960000pt;}
.y8_c00006{bottom:532.160000pt;}
.y7_c00006{bottom:548.426667pt;}
.y6_c00006{bottom:563.760000pt;}
.y5_c00006{bottom:579.626667pt;}
.y4_c00006{bottom:595.493333pt;}
.y3_c00006{bottom:610.826667pt;}
.y2_c00006{bottom:626.693333pt;}
.y1_c00006{bottom:644.426667pt;}
.h5_c00006{height:11.733399pt;}
.h6_c00006{height:38.937500pt;}
.h4_c00006{height:57.397135pt;}
.h3_c00006{height:67.526042pt;}
.h2_c00006{height:81.031250pt;}
.h1_c00006{height:691.333333pt;}
.h0_c00006{height:691.466667pt;}
.w2_c00006{width:93.222667pt;}
.w1_c00006{width:462.666667pt;}
.w0_c00006{width:462.733333pt;}
.x0_c00006{left:0.000000pt;}
.x6_c00006{left:4.400000pt;}
.x9_c00006{left:5.733333pt;}
.x7_c00006{left:9.333333pt;}
.x8_c00006{left:10.800000pt;}
.x5_c00006{left:11.733333pt;}
.x4_c00006{left:12.800000pt;}
.x2_c00006{left:15.066667pt;}
.x3_c00006{left:33.333333pt;}
.xa_c00006{left:59.600000pt;}
.x1_c00006{left:120.800000pt;}
.xb_c00006{left:188.534871pt;}
}





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

.ir_c00007:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00007{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00007;src:url('chunks/assets/font_844c291a1a95f2849a67d6ab.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00007;src:url('chunks/assets/font_a92b962c10c9560dfd1c0d84.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00007;src:url('chunks/assets/font_d3e4852911bc0f85776db85b.woff2')format("woff");}.ff3_c00007{font-family:ff3_c00007;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00007;src:url('chunks/assets/font_662b9471ddae34cffd50539d.woff2')format("woff");}.ff4_c00007{font-family:ff4_c00007;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00007;src:url('chunks/assets/font_fddcc2686868ed9716fc1663.woff2')format("woff");}.ff5_c00007{font-family:ff5_c00007;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00007;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00007{font-family:ff6_c00007;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00007{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00007{vertical-align:0.000000px;}
.ls6_c00007{letter-spacing:-6.000000px;}
.ls5_c00007{letter-spacing:0.000000px;}
.ls3_c00007{letter-spacing:0.600000px;}
.ls2_c00007{letter-spacing:3.000000px;}
.ls0_c00007{letter-spacing:12.624000px;}
.ls8_c00007{letter-spacing:18.000000px;}
.ls1_c00007{letter-spacing:21.588000px;}
.ls4_c00007{letter-spacing:31.200000px;}
.ls7_c00007{letter-spacing:54.000000px;}
.sc__c00007{text-shadow:none;}
.sc0_c00007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00007{-webkit-text-stroke:0px transparent;}
.sc0_c00007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00007{word-spacing:-30.291000px;}
.ws1_c00007{word-spacing:-13.500000px;}
.ws4_c00007{word-spacing:-12.291000px;}
.ws2_c00007{word-spacing:-7.500000px;}
.ws8_c00007{word-spacing:0.000000px;}
.ws5_c00007{word-spacing:2.700000px;}
.ws0_c00007{word-spacing:3.300000px;}
.ws6_c00007{word-spacing:5.355000px;}
.ws3_c00007{word-spacing:82.374000px;}
._17_c00007{margin-left:-53.907000px;}
._19_c00007{margin-left:-51.510000px;}
._18_c00007{margin-left:-48.501000px;}
._1a_c00007{margin-left:-46.614000px;}
._3f_c00007{margin-left:-27.141000px;}
._3b_c00007{margin-left:-24.072000px;}
._2f_c00007{margin-left:-17.712000px;}
._1e_c00007{margin-left:-14.457000px;}
._25_c00007{margin-left:-12.087000px;}
._12_c00007{margin-left:-9.009000px;}
._31_c00007{margin-left:-7.755000px;}
._3_c00007{margin-left:-6.732000px;}
._d_c00007{margin-left:-5.694000px;}
._c_c00007{margin-left:-4.233000px;}
._b_c00007{margin-left:-2.805000px;}
._4_c00007{margin-left:-1.734000px;}
._8_c00007{width:1.836000px;}
._1_c00007{width:3.111000px;}
._10_c00007{width:4.125000px;}
._0_c00007{width:5.151000px;}
._5_c00007{width:6.171000px;}
._6_c00007{width:7.803000px;}
._f_c00007{width:9.027000px;}
._9_c00007{width:10.149000px;}
._13_c00007{width:11.163000px;}
._e_c00007{width:13.668000px;}
._a_c00007{width:15.198000px;}
._11_c00007{width:16.785000px;}
._7_c00007{width:18.054000px;}
._1d_c00007{width:19.329000px;}
._14_c00007{width:20.349000px;}
._2c_c00007{width:21.666000px;}
._1c_c00007{width:24.111000px;}
._1f_c00007{width:27.291000px;}
._20_c00007{width:30.798000px;}
._24_c00007{width:34.578000px;}
._29_c00007{width:40.758000px;}
._28_c00007{width:44.070000px;}
._3a_c00007{width:53.388000px;}
._2d_c00007{width:55.137000px;}
._2_c00007{width:56.712000px;}
._2b_c00007{width:63.504000px;}
._34_c00007{width:78.030000px;}
._35_c00007{width:79.815000px;}
._3c_c00007{width:83.445000px;}
._33_c00007{width:87.057000px;}
._23_c00007{width:101.163000px;}
._1b_c00007{width:107.883000px;}
._32_c00007{width:110.280000px;}
._37_c00007{width:113.832000px;}
._22_c00007{width:117.555000px;}
._3d_c00007{width:121.278000px;}
._39_c00007{width:163.638000px;}
._16_c00007{width:165.858000px;}
._15_c00007{width:191.658000px;}
._3e_c00007{width:210.018000px;}
._36_c00007{width:218.844000px;}
._2e_c00007{width:251.793000px;}
._2a_c00007{width:256.332000px;}
._27_c00007{width:288.156000px;}
._38_c00007{width:301.614000px;}
._26_c00007{width:308.397000px;}
._40_c00007{width:409.551000px;}
._21_c00007{width:411.933000px;}
._30_c00007{width:500.607000px;}
.fc2_c00007{color:transparent;}
.fc1_c00007{color:rgb(128,128,128);}
.fc0_c00007{color:rgb(0,0,0);}
.fs2_c00007{font-size:24.000000px;}
.fs3_c00007{font-size:42.000000px;}
.fs4_c00007{font-size:48.000000px;}
.fs0_c00007{font-size:51.000000px;}
.fs1_c00007{font-size:54.000000px;}
.y0_c00007{bottom:0.000000px;}
.y28_c00007{bottom:0.015000px;}
.y2a_c00007{bottom:3.105000px;}
.y29_c00007{bottom:7.228371px;}
.y27_c00007{bottom:11.115000px;}
.y26_c00007{bottom:20.715000px;}
.y25_c00007{bottom:39.165000px;}
.y24_c00007{bottom:66.465000px;}
.y23_c00007{bottom:84.465000px;}
.y22_c00007{bottom:97.215000px;}
.y21_c00007{bottom:132.765000px;}
.y20_c00007{bottom:153.315000px;}
.y1f_c00007{bottom:171.765000px;}
.y1e_c00007{bottom:190.365000px;}
.y1d_c00007{bottom:207.915000px;}
.y1c_c00007{bottom:226.515000px;}
.y1b_c00007{bottom:243.315000px;}
.y1a_c00007{bottom:261.915000px;}
.y19_c00007{bottom:279.465000px;}
.y18_c00007{bottom:297.465000px;}
.y17_c00007{bottom:315.015000px;}
.y16_c00007{bottom:331.815000px;}
.y15_c00007{bottom:351.015000px;}
.y14_c00007{bottom:368.565000px;}
.y13_c00007{bottom:386.415000px;}
.y12_c00007{bottom:404.115000px;}
.y11_c00007{bottom:421.965000px;}
.y10_c00007{bottom:439.815000px;}
.yf_c00007{bottom:457.665000px;}
.ye_c00007{bottom:475.515000px;}
.yd_c00007{bottom:492.465000px;}
.yc_c00007{bottom:511.065000px;}
.yb_c00007{bottom:528.615000px;}
.ya_c00007{bottom:546.765000px;}
.y9_c00007{bottom:563.415000px;}
.y8_c00007{bottom:582.165000px;}
.y7_c00007{bottom:599.115000px;}
.y6_c00007{bottom:617.415000px;}
.y5_c00007{bottom:634.965000px;}
.y4_c00007{bottom:652.815000px;}
.y3_c00007{bottom:670.665000px;}
.y2_c00007{bottom:688.215000px;}
.y1_c00007{bottom:705.165000px;}
.h5_c00007{height:13.200074px;}
.h3_c00007{height:30.386719px;}
.h4_c00007{height:43.169382px;}
.h6_c00007{height:43.804688px;}
.h2_c00007{height:64.571777px;}
.h1_c00007{height:782.250000px;}
.h0_c00007{height:782.475000px;}
.w2_c00007{width:104.875500px;}
.w0_c00007{width:503.850000px;}
.w1_c00007{width:504.000000px;}
.x0_c00007{left:0.000000px;}
.xb_c00007{left:108.750000px;}
.x9_c00007{left:110.400000px;}
.x7_c00007{left:112.050000px;}
.xa_c00007{left:115.800000px;}
.x8_c00007{left:117.150000px;}
.x2_c00007{left:119.400000px;}
.x5_c00007{left:121.200000px;}
.x6_c00007{left:122.400000px;}
.x3_c00007{left:125.250000px;}
.x1_c00007{left:126.900000px;}
.xd_c00007{left:136.050000px;}
.x4_c00007{left:196.350000px;}
.xe_c00007{left:203.739258px;}
.xc_c00007{left:238.050000px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls6_c00007{letter-spacing:-5.333333pt;}
.ls5_c00007{letter-spacing:0.000000pt;}
.ls3_c00007{letter-spacing:0.533333pt;}
.ls2_c00007{letter-spacing:2.666667pt;}
.ls0_c00007{letter-spacing:11.221333pt;}
.ls8_c00007{letter-spacing:16.000000pt;}
.ls1_c00007{letter-spacing:19.189333pt;}
.ls4_c00007{letter-spacing:27.733333pt;}
.ls7_c00007{letter-spacing:48.000000pt;}
.ws7_c00007{word-spacing:-26.925333pt;}
.ws1_c00007{word-spacing:-12.000000pt;}
.ws4_c00007{word-spacing:-10.925333pt;}
.ws2_c00007{word-spacing:-6.666667pt;}
.ws8_c00007{word-spacing:0.000000pt;}
.ws5_c00007{word-spacing:2.400000pt;}
.ws0_c00007{word-spacing:2.933333pt;}
.ws6_c00007{word-spacing:4.760000pt;}
.ws3_c00007{word-spacing:73.221333pt;}
._17_c00007{margin-left:-47.917333pt;}
._19_c00007{margin-left:-45.786667pt;}
._18_c00007{margin-left:-43.112000pt;}
._1a_c00007{margin-left:-41.434667pt;}
._3f_c00007{margin-left:-24.125333pt;}
._3b_c00007{margin-left:-21.397333pt;}
._2f_c00007{margin-left:-15.744000pt;}
._1e_c00007{margin-left:-12.850667pt;}
._25_c00007{margin-left:-10.744000pt;}
._12_c00007{margin-left:-8.008000pt;}
._31_c00007{margin-left:-6.893333pt;}
._3_c00007{margin-left:-5.984000pt;}
._d_c00007{margin-left:-5.061333pt;}
._c_c00007{margin-left:-3.762667pt;}
._b_c00007{margin-left:-2.493333pt;}
._4_c00007{margin-left:-1.541333pt;}
._8_c00007{width:1.632000pt;}
._1_c00007{width:2.765333pt;}
._10_c00007{width:3.666667pt;}
._0_c00007{width:4.578667pt;}
._5_c00007{width:5.485333pt;}
._6_c00007{width:6.936000pt;}
._f_c00007{width:8.024000pt;}
._9_c00007{width:9.021333pt;}
._13_c00007{width:9.922667pt;}
._e_c00007{width:12.149333pt;}
._a_c00007{width:13.509333pt;}
._11_c00007{width:14.920000pt;}
._7_c00007{width:16.048000pt;}
._1d_c00007{width:17.181333pt;}
._14_c00007{width:18.088000pt;}
._2c_c00007{width:19.258667pt;}
._1c_c00007{width:21.432000pt;}
._1f_c00007{width:24.258667pt;}
._20_c00007{width:27.376000pt;}
._24_c00007{width:30.736000pt;}
._29_c00007{width:36.229333pt;}
._28_c00007{width:39.173333pt;}
._3a_c00007{width:47.456000pt;}
._2d_c00007{width:49.010667pt;}
._2_c00007{width:50.410667pt;}
._2b_c00007{width:56.448000pt;}
._34_c00007{width:69.360000pt;}
._35_c00007{width:70.946667pt;}
._3c_c00007{width:74.173333pt;}
._33_c00007{width:77.384000pt;}
._23_c00007{width:89.922667pt;}
._1b_c00007{width:95.896000pt;}
._32_c00007{width:98.026667pt;}
._37_c00007{width:101.184000pt;}
._22_c00007{width:104.493333pt;}
._3d_c00007{width:107.802667pt;}
._39_c00007{width:145.456000pt;}
._16_c00007{width:147.429333pt;}
._15_c00007{width:170.362667pt;}
._3e_c00007{width:186.682667pt;}
._36_c00007{width:194.528000pt;}
._2e_c00007{width:223.816000pt;}
._2a_c00007{width:227.850667pt;}
._27_c00007{width:256.138667pt;}
._38_c00007{width:268.101333pt;}
._26_c00007{width:274.130667pt;}
._40_c00007{width:364.045333pt;}
._21_c00007{width:366.162667pt;}
._30_c00007{width:444.984000pt;}
.fs2_c00007{font-size:21.333333pt;}
.fs3_c00007{font-size:37.333333pt;}
.fs4_c00007{font-size:42.666667pt;}
.fs0_c00007{font-size:45.333333pt;}
.fs1_c00007{font-size:48.000000pt;}
.y0_c00007{bottom:0.000000pt;}
.y28_c00007{bottom:0.013333pt;}
.y2a_c00007{bottom:2.760000pt;}
.y29_c00007{bottom:6.425219pt;}
.y27_c00007{bottom:9.880000pt;}
.y26_c00007{bottom:18.413333pt;}
.y25_c00007{bottom:34.813333pt;}
.y24_c00007{bottom:59.080000pt;}
.y23_c00007{bottom:75.080000pt;}
.y22_c00007{bottom:86.413333pt;}
.y21_c00007{bottom:118.013333pt;}
.y20_c00007{bottom:136.280000pt;}
.y1f_c00007{bottom:152.680000pt;}
.y1e_c00007{bottom:169.213333pt;}
.y1d_c00007{bottom:184.813333pt;}
.y1c_c00007{bottom:201.346667pt;}
.y1b_c00007{bottom:216.280000pt;}
.y1a_c00007{bottom:232.813333pt;}
.y19_c00007{bottom:248.413333pt;}
.y18_c00007{bottom:264.413333pt;}
.y17_c00007{bottom:280.013333pt;}
.y16_c00007{bottom:294.946667pt;}
.y15_c00007{bottom:312.013333pt;}
.y14_c00007{bottom:327.613333pt;}
.y13_c00007{bottom:343.480000pt;}
.y12_c00007{bottom:359.213333pt;}
.y11_c00007{bottom:375.080000pt;}
.y10_c00007{bottom:390.946667pt;}
.yf_c00007{bottom:406.813333pt;}
.ye_c00007{bottom:422.680000pt;}
.yd_c00007{bottom:437.746667pt;}
.yc_c00007{bottom:454.280000pt;}
.yb_c00007{bottom:469.880000pt;}
.ya_c00007{bottom:486.013333pt;}
.y9_c00007{bottom:500.813333pt;}
.y8_c00007{bottom:517.480000pt;}
.y7_c00007{bottom:532.546667pt;}
.y6_c00007{bottom:548.813333pt;}
.y5_c00007{bottom:564.413333pt;}
.y4_c00007{bottom:580.280000pt;}
.y3_c00007{bottom:596.146667pt;}
.y2_c00007{bottom:611.746667pt;}
.y1_c00007{bottom:626.813333pt;}
.h5_c00007{height:11.733399pt;}
.h3_c00007{height:27.010417pt;}
.h4_c00007{height:38.372784pt;}
.h6_c00007{height:38.937500pt;}
.h2_c00007{height:57.397135pt;}
.h1_c00007{height:695.333333pt;}
.h0_c00007{height:695.533333pt;}
.w2_c00007{width:93.222667pt;}
.w0_c00007{width:447.866667pt;}
.w1_c00007{width:448.000000pt;}
.x0_c00007{left:0.000000pt;}
.xb_c00007{left:96.666667pt;}
.x9_c00007{left:98.133333pt;}
.x7_c00007{left:99.600000pt;}
.xa_c00007{left:102.933333pt;}
.x8_c00007{left:104.133333pt;}
.x2_c00007{left:106.133333pt;}
.x5_c00007{left:107.733333pt;}
.x6_c00007{left:108.800000pt;}
.x3_c00007{left:111.333333pt;}
.x1_c00007{left:112.800000pt;}
.xd_c00007{left:120.933333pt;}
.x4_c00007{left:174.533333pt;}
.xe_c00007{left:181.101563pt;}
.xc_c00007{left:211.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e2506d2d530cde2730136dcd.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.284180;font-style:normal;font-weight:normal;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_b8d2d4d028fff33c133246d8.woff2')format("woff");}.ff2_c00008{font-family:ff2_c00008;line-height:1.284180;font-style:normal;font-weight:normal;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_80673de22603dd6c8aa055c6.woff2')format("woff");}.ff3_c00008{font-family:ff3_c00008;line-height:1.284180;font-style:normal;font-weight:normal;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_cf01fe5d2ddc9a66003051e6.woff2')format("woff");}.ff4_c00008{font-family:ff4_c00008;line-height:1.592000;font-style:normal;font-weight:normal;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_fb1639c49ff41d7ba5f83665.woff2')format("woff");}.ff5_c00008{font-family:ff5_c00008;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00008;src:url('chunks/assets/font_2acdb89ddfbf50159067bd38.woff2')format("woff");}.ff6_c00008{font-family:ff6_c00008;line-height:1.480469;font-style:normal;font-weight: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_c00008;src:url('chunks/assets/font_53c262164a77b11ec8a301a3.woff2')format("woff");}.ff7_c00008{font-family:ff7_c00008;line-height:1.568848;font-style:normal;font-weight: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_c00008;src:url('chunks/assets/font_be8a7c2d6663707de9f58fb1.woff2')format("woff");}.ff8_c00008{font-family:ff8_c00008;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00008;src:url('chunks/assets/font_b94596b7d327f9cd647e55d1.woff2')format("woff");}.ff9_c00008{font-family:ff9_c00008;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00008;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ffa_c00008{font-family:ffa_c00008;line-height:1.219238;font-style: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;}
.ls6_c00008{letter-spacing:0.000000px;}
.ls7_c00008{letter-spacing:3.000000px;}
.ls4_c00008{letter-spacing:11.400000px;}
.ls5_c00008{letter-spacing:12.900000px;}
.ls0_c00008{letter-spacing:19.219200px;}
.ls2_c00008{letter-spacing:19.800000px;}
.ls3_c00008{letter-spacing:44.006400px;}
.ls1_c00008{letter-spacing:49.780800px;}
.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;}
}
.ws3_c00008{word-spacing:-26.277000px;}
.ws7_c00008{word-spacing:-22.413000px;}
.ws1_c00008{word-spacing:-18.000000px;}
.ws4_c00008{word-spacing:-16.254000px;}
.ws5_c00008{word-spacing:-13.500000px;}
.ws8_c00008{word-spacing:0.000000px;}
.ws6_c00008{word-spacing:1.326000px;}
.ws2_c00008{word-spacing:23.284800px;}
.ws0_c00008{word-spacing:47.520000px;}
._23_c00008{margin-left:-16.128000px;}
._19_c00008{margin-left:-14.974200px;}
._24_c00008{margin-left:-11.695200px;}
._1e_c00008{margin-left:-10.435200px;}
._3_c00008{margin-left:-8.390400px;}
._21_c00008{margin-left:-7.122000px;}
._22_c00008{margin-left:-5.625600px;}
._1b_c00008{margin-left:-4.524000px;}
._1d_c00008{margin-left:-3.366000px;}
._2_c00008{margin-left:-2.208000px;}
._18_c00008{margin-left:-1.188000px;}
._16_c00008{width:1.134000px;}
._14_c00008{width:2.376000px;}
._17_c00008{width:3.510000px;}
._15_c00008{width:5.130000px;}
._e_c00008{width:6.876000px;}
._1a_c00008{width:8.154000px;}
._11_c00008{width:9.882000px;}
._d_c00008{width:11.718000px;}
._20_c00008{width:13.176000px;}
._a_c00008{width:15.012000px;}
._10_c00008{width:16.146000px;}
._f_c00008{width:17.712000px;}
._1c_c00008{width:19.062000px;}
._c_c00008{width:20.088000px;}
._12_c00008{width:21.186000px;}
._7_c00008{width:22.824000px;}
._6_c00008{width:24.019200px;}
._13_c00008{width:26.676000px;}
._0_c00008{width:28.584000px;}
._9_c00008{width:29.592000px;}
._b_c00008{width:34.470000px;}
._4_c00008{width:42.192000px;}
._8_c00008{width:45.936000px;}
._5_c00008{width:49.824000px;}
._1_c00008{width:93.024000px;}
._1f_c00008{width:459.612000px;}
.fc2_c00008{color:transparent;}
.fc1_c00008{color:rgb(128,128,128);}
.fc0_c00008{color:rgb(0,0,0);}
.fs7_c00008{font-size:48.000000px;}
.fs4_c00008{font-size:51.000000px;}
.fs2_c00008{font-size:54.000000px;}
.fs3_c00008{font-size:57.000000px;}
.fs0_c00008{font-size:57.600000px;}
.fs1_c00008{font-size:72.000000px;}
.fs5_c00008{font-size:81.000000px;}
.fs6_c00008{font-size:93.000000px;}
.y0_c00008{bottom:0.000000px;}
.y1f_c00008{bottom:3.105000px;}
.y1e_c00008{bottom:7.228355px;}
.y1d_c00008{bottom:19.935000px;}
.y1c_c00008{bottom:45.885000px;}
.y1b_c00008{bottom:71.535000px;}
.y1a_c00008{bottom:96.135000px;}
.y19_c00008{bottom:121.185000px;}
.y18_c00008{bottom:146.385000px;}
.y17_c00008{bottom:170.985000px;}
.y16_c00008{bottom:196.035000px;}
.y15_c00008{bottom:222.285000px;}
.y14_c00008{bottom:246.285000px;}
.y13_c00008{bottom:269.685000px;}
.y12_c00008{bottom:294.285000px;}
.y11_c00008{bottom:319.485000px;}
.y10_c00008{bottom:343.185000px;}
.yf_c00008{bottom:367.485000px;}
.ye_c00008{bottom:392.535000px;}
.yd_c00008{bottom:417.435000px;}
.yc_c00008{bottom:442.485000px;}
.yb_c00008{bottom:464.685000px;}
.ya_c00008{bottom:488.985000px;}
.y9_c00008{bottom:515.235000px;}
.y8_c00008{bottom:555.885000px;}
.y7_c00008{bottom:577.785000px;}
.y6_c00008{bottom:597.285000px;}
.y5_c00008{bottom:617.835000px;}
.y4_c00008{bottom:638.235000px;}
.y3_c00008{bottom:658.785000px;}
.y2_c00008{bottom:681.735000px;}
.y1_c00008{bottom:707.385000px;}
.ha_c00008{height:13.200074px;}
.hb_c00008{height:43.804688px;}
.h3_c00008{height:52.971680px;}
.h8_c00008{height:55.942383px;}
.h4_c00008{height:58.536000px;}
.h6_c00008{height:64.571777px;}
.h5_c00008{height:66.713379px;}
.h2_c00008{height:70.628906px;}
.h7_c00008{height:91.160156px;}
.h9_c00008{height:117.748535px;}
.h1_c00008{height:786.000000px;}
.h0_c00008{height:786.225000px;}
.w2_c00008{width:104.875500px;}
.w1_c00008{width:500.250000px;}
.w0_c00008{width:500.550000px;}
.x0_c00008{left:0.000000px;}
.xb_c00008{left:12.150000px;}
.xc_c00008{left:13.200000px;}
.x3_c00008{left:14.400000px;}
.x2_c00008{left:15.450000px;}
.x1_c00008{left:17.100000px;}
.x4_c00008{left:37.500000px;}
.x5_c00008{left:54.000000px;}
.x6_c00008{left:141.750000px;}
.x7_c00008{left:158.850000px;}
.x8_c00008{left:160.200000px;}
.x9_c00008{left:161.700000px;}
.xa_c00008{left:178.200000px;}
.xe_c00008{left:202.089249px;}
.xd_c00008{left:340.200000px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.ls6_c00008{letter-spacing:0.000000pt;}
.ls7_c00008{letter-spacing:2.666667pt;}
.ls4_c00008{letter-spacing:10.133333pt;}
.ls5_c00008{letter-spacing:11.466667pt;}
.ls0_c00008{letter-spacing:17.083733pt;}
.ls2_c00008{letter-spacing:17.600000pt;}
.ls3_c00008{letter-spacing:39.116800pt;}
.ls1_c00008{letter-spacing:44.249600pt;}
.ws3_c00008{word-spacing:-23.357333pt;}
.ws7_c00008{word-spacing:-19.922667pt;}
.ws1_c00008{word-spacing:-16.000000pt;}
.ws4_c00008{word-spacing:-14.448000pt;}
.ws5_c00008{word-spacing:-12.000000pt;}
.ws8_c00008{word-spacing:0.000000pt;}
.ws6_c00008{word-spacing:1.178667pt;}
.ws2_c00008{word-spacing:20.697600pt;}
.ws0_c00008{word-spacing:42.240000pt;}
._23_c00008{margin-left:-14.336000pt;}
._19_c00008{margin-left:-13.310400pt;}
._24_c00008{margin-left:-10.395733pt;}
._1e_c00008{margin-left:-9.275733pt;}
._3_c00008{margin-left:-7.458133pt;}
._21_c00008{margin-left:-6.330667pt;}
._22_c00008{margin-left:-5.000533pt;}
._1b_c00008{margin-left:-4.021333pt;}
._1d_c00008{margin-left:-2.992000pt;}
._2_c00008{margin-left:-1.962667pt;}
._18_c00008{margin-left:-1.056000pt;}
._16_c00008{width:1.008000pt;}
._14_c00008{width:2.112000pt;}
._17_c00008{width:3.120000pt;}
._15_c00008{width:4.560000pt;}
._e_c00008{width:6.112000pt;}
._1a_c00008{width:7.248000pt;}
._11_c00008{width:8.784000pt;}
._d_c00008{width:10.416000pt;}
._20_c00008{width:11.712000pt;}
._a_c00008{width:13.344000pt;}
._10_c00008{width:14.352000pt;}
._f_c00008{width:15.744000pt;}
._1c_c00008{width:16.944000pt;}
._c_c00008{width:17.856000pt;}
._12_c00008{width:18.832000pt;}
._7_c00008{width:20.288000pt;}
._6_c00008{width:21.350400pt;}
._13_c00008{width:23.712000pt;}
._0_c00008{width:25.408000pt;}
._9_c00008{width:26.304000pt;}
._b_c00008{width:30.640000pt;}
._4_c00008{width:37.504000pt;}
._8_c00008{width:40.832000pt;}
._5_c00008{width:44.288000pt;}
._1_c00008{width:82.688000pt;}
._1f_c00008{width:408.544000pt;}
.fs7_c00008{font-size:42.666667pt;}
.fs4_c00008{font-size:45.333333pt;}
.fs2_c00008{font-size:48.000000pt;}
.fs3_c00008{font-size:50.666667pt;}
.fs0_c00008{font-size:51.200000pt;}
.fs1_c00008{font-size:64.000000pt;}
.fs5_c00008{font-size:72.000000pt;}
.fs6_c00008{font-size:82.666667pt;}
.y0_c00008{bottom:0.000000pt;}
.y1f_c00008{bottom:2.760000pt;}
.y1e_c00008{bottom:6.425204pt;}
.y1d_c00008{bottom:17.720000pt;}
.y1c_c00008{bottom:40.786667pt;}
.y1b_c00008{bottom:63.586667pt;}
.y1a_c00008{bottom:85.453333pt;}
.y19_c00008{bottom:107.720000pt;}
.y18_c00008{bottom:130.120000pt;}
.y17_c00008{bottom:151.986667pt;}
.y16_c00008{bottom:174.253333pt;}
.y15_c00008{bottom:197.586667pt;}
.y14_c00008{bottom:218.920000pt;}
.y13_c00008{bottom:239.720000pt;}
.y12_c00008{bottom:261.586667pt;}
.y11_c00008{bottom:283.986667pt;}
.y10_c00008{bottom:305.053333pt;}
.yf_c00008{bottom:326.653333pt;}
.ye_c00008{bottom:348.920000pt;}
.yd_c00008{bottom:371.053333pt;}
.yc_c00008{bottom:393.320000pt;}
.yb_c00008{bottom:413.053333pt;}
.ya_c00008{bottom:434.653333pt;}
.y9_c00008{bottom:457.986667pt;}
.y8_c00008{bottom:494.120000pt;}
.y7_c00008{bottom:513.586667pt;}
.y6_c00008{bottom:530.920000pt;}
.y5_c00008{bottom:549.186667pt;}
.y4_c00008{bottom:567.320000pt;}
.y3_c00008{bottom:585.586667pt;}
.y2_c00008{bottom:605.986667pt;}
.y1_c00008{bottom:628.786667pt;}
.ha_c00008{height:11.733399pt;}
.hb_c00008{height:38.937500pt;}
.h3_c00008{height:47.085938pt;}
.h8_c00008{height:49.726562pt;}
.h4_c00008{height:52.032000pt;}
.h6_c00008{height:57.397135pt;}
.h5_c00008{height:59.300781pt;}
.h2_c00008{height:62.781250pt;}
.h7_c00008{height:81.031250pt;}
.h9_c00008{height:104.665365pt;}
.h1_c00008{height:698.666667pt;}
.h0_c00008{height:698.866667pt;}
.w2_c00008{width:93.222667pt;}
.w1_c00008{width:444.666667pt;}
.w0_c00008{width:444.933333pt;}
.x0_c00008{left:0.000000pt;}
.xb_c00008{left:10.800000pt;}
.xc_c00008{left:11.733333pt;}
.x3_c00008{left:12.800000pt;}
.x2_c00008{left:13.733333pt;}
.x1_c00008{left:15.200000pt;}
.x4_c00008{left:33.333333pt;}
.x5_c00008{left:48.000000pt;}
.x6_c00008{left:126.000000pt;}
.x7_c00008{left:141.200000pt;}
.x8_c00008{left:142.400000pt;}
.x9_c00008{left:143.733333pt;}
.xa_c00008{left:158.400000pt;}
.xe_c00008{left:179.634888pt;}
.xd_c00008{left:302.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_45afa8118fed067a5781da57.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.568848;font-style:normal;font-weight:normal;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_4bb71be9cdc78ab036bb3949.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00009;src:url('chunks/assets/font_c2b727ab6f93ab043d3c1227.woff2')format("woff");}.ff3_c00009{font-family:ff3_c00009;line-height:1.284180;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00009{font-family:ff4_c00009;line-height:1.219238;font-style: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;}
.ls2_c00009{letter-spacing:0.000000px;}
.ls1_c00009{letter-spacing:3.000000px;}
.ls0_c00009{letter-spacing:20.400000px;}
.sc__c00009{text-shadow:none;}
.sc0_c00009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00009{-webkit-text-stroke:0px transparent;}
.sc0_c00009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00009{word-spacing:-14.040000px;}
.ws2_c00009{word-spacing:0.000000px;}
.ws0_c00009{word-spacing:2.754000px;}
._10_c00009{margin-left:-11.232000px;}
._f_c00009{margin-left:-9.072000px;}
._1_c00009{margin-left:-7.488000px;}
._8_c00009{margin-left:-6.480000px;}
._7_c00009{margin-left:-5.400000px;}
._6_c00009{margin-left:-4.032000px;}
._3_c00009{margin-left:-2.952000px;}
._5_c00009{margin-left:-1.800000px;}
._0_c00009{width:1.080000px;}
._4_c00009{width:2.088000px;}
._2_c00009{width:3.528000px;}
._d_c00009{width:4.680000px;}
._9_c00009{width:5.760000px;}
._b_c00009{width:6.768000px;}
._a_c00009{width:8.280000px;}
._c_c00009{width:9.792000px;}
._13_c00009{width:10.800000px;}
._11_c00009{width:12.024000px;}
._e_c00009{width:14.112000px;}
._14_c00009{width:15.192000px;}
._1a_c00009{width:16.830000px;}
._19_c00009{width:19.170000px;}
._16_c00009{width:24.582000px;}
._15_c00009{width:29.529000px;}
._17_c00009{width:32.589000px;}
._12_c00009{width:135.720000px;}
._18_c00009{width:236.901000px;}
.fc2_c00009{color:transparent;}
.fc1_c00009{color:rgb(128,128,128);}
.fc0_c00009{color:rgb(0,0,0);}
.fs3_c00009{font-size:48.000000px;}
.fs1_c00009{font-size:51.000000px;}
.fs2_c00009{font-size:54.000000px;}
.fs0_c00009{font-size:72.000000px;}
.y0_c00009{bottom:0.000000px;}
.y17_c00009{bottom:3.105000px;}
.y16_c00009{bottom:7.228357px;}
.y15_c00009{bottom:213.630000px;}
.y14_c00009{bottom:233.280000px;}
.y13_c00009{bottom:260.280000px;}
.y12_c00009{bottom:284.280000px;}
.y11_c00009{bottom:308.880000px;}
.y10_c00009{bottom:334.230000px;}
.yf_c00009{bottom:358.380000px;}
.ye_c00009{bottom:383.430000px;}
.yd_c00009{bottom:407.430000px;}
.yc_c00009{bottom:433.080000px;}
.yb_c00009{bottom:457.080000px;}
.ya_c00009{bottom:481.980000px;}
.y9_c00009{bottom:506.280000px;}
.y8_c00009{bottom:530.880000px;}
.y7_c00009{bottom:555.180000px;}
.y6_c00009{bottom:579.930000px;}
.y5_c00009{bottom:604.230000px;}
.y4_c00009{bottom:629.130000px;}
.y3_c00009{bottom:652.680000px;}
.y2_c00009{bottom:677.730000px;}
.y1_c00009{bottom:702.630000px;}
.h5_c00009{height:13.200074px;}
.h6_c00009{height:43.804688px;}
.h4_c00009{height:52.971680px;}
.h3_c00009{height:64.571777px;}
.h2_c00009{height:91.160156px;}
.h1_c00009{height:784.500000px;}
.h0_c00009{height:784.650000px;}
.w1_c00009{width:104.875500px;}
.w0_c00009{width:502.500000px;}
.x0_c00009{left:0.000000px;}
.x3_c00009{left:116.850000px;}
.x2_c00009{left:118.800000px;}
.x1_c00009{left:120.450000px;}
.x5_c00009{left:203.064240px;}
.x4_c00009{left:272.100000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls2_c00009{letter-spacing:0.000000pt;}
.ls1_c00009{letter-spacing:2.666667pt;}
.ls0_c00009{letter-spacing:18.133333pt;}
.ws1_c00009{word-spacing:-12.480000pt;}
.ws2_c00009{word-spacing:0.000000pt;}
.ws0_c00009{word-spacing:2.448000pt;}
._10_c00009{margin-left:-9.984000pt;}
._f_c00009{margin-left:-8.064000pt;}
._1_c00009{margin-left:-6.656000pt;}
._8_c00009{margin-left:-5.760000pt;}
._7_c00009{margin-left:-4.800000pt;}
._6_c00009{margin-left:-3.584000pt;}
._3_c00009{margin-left:-2.624000pt;}
._5_c00009{margin-left:-1.600000pt;}
._0_c00009{width:0.960000pt;}
._4_c00009{width:1.856000pt;}
._2_c00009{width:3.136000pt;}
._d_c00009{width:4.160000pt;}
._9_c00009{width:5.120000pt;}
._b_c00009{width:6.016000pt;}
._a_c00009{width:7.360000pt;}
._c_c00009{width:8.704000pt;}
._13_c00009{width:9.600000pt;}
._11_c00009{width:10.688000pt;}
._e_c00009{width:12.544000pt;}
._14_c00009{width:13.504000pt;}
._1a_c00009{width:14.960000pt;}
._19_c00009{width:17.040000pt;}
._16_c00009{width:21.850667pt;}
._15_c00009{width:26.248000pt;}
._17_c00009{width:28.968000pt;}
._12_c00009{width:120.640000pt;}
._18_c00009{width:210.578667pt;}
.fs3_c00009{font-size:42.666667pt;}
.fs1_c00009{font-size:45.333333pt;}
.fs2_c00009{font-size:48.000000pt;}
.fs0_c00009{font-size:64.000000pt;}
.y0_c00009{bottom:0.000000pt;}
.y17_c00009{bottom:2.760000pt;}
.y16_c00009{bottom:6.425206pt;}
.y15_c00009{bottom:189.893333pt;}
.y14_c00009{bottom:207.360000pt;}
.y13_c00009{bottom:231.360000pt;}
.y12_c00009{bottom:252.693333pt;}
.y11_c00009{bottom:274.560000pt;}
.y10_c00009{bottom:297.093333pt;}
.yf_c00009{bottom:318.560000pt;}
.ye_c00009{bottom:340.826667pt;}
.yd_c00009{bottom:362.160000pt;}
.yc_c00009{bottom:384.960000pt;}
.yb_c00009{bottom:406.293333pt;}
.ya_c00009{bottom:428.426667pt;}
.y9_c00009{bottom:450.026667pt;}
.y8_c00009{bottom:471.893333pt;}
.y7_c00009{bottom:493.493333pt;}
.y6_c00009{bottom:515.493333pt;}
.y5_c00009{bottom:537.093333pt;}
.y4_c00009{bottom:559.226667pt;}
.y3_c00009{bottom:580.160000pt;}
.y2_c00009{bottom:602.426667pt;}
.y1_c00009{bottom:624.560000pt;}
.h5_c00009{height:11.733399pt;}
.h6_c00009{height:38.937500pt;}
.h4_c00009{height:47.085938pt;}
.h3_c00009{height:57.397135pt;}
.h2_c00009{height:81.031250pt;}
.h1_c00009{height:697.333333pt;}
.h0_c00009{height:697.466667pt;}
.w1_c00009{width:93.222667pt;}
.w0_c00009{width:446.666667pt;}
.x0_c00009{left:0.000000pt;}
.x3_c00009{left:103.866667pt;}
.x2_c00009{left:105.600000pt;}
.x1_c00009{left:107.066667pt;}
.x5_c00009{left:180.501546pt;}
.x4_c00009{left:241.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c60dc280ca7dafb78bc8832a.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.568848;font-style:normal;font-weight:normal;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_a65659c5f6aff14d52749a6a.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00010;src:url('chunks/assets/font_0d0351ed020ad15eadc70411.woff2')format("woff");}.ff3_c00010{font-family:ff3_c00010;line-height:1.592000;font-style:normal;font-weight:normal;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_fb1639c49ff41d7ba5f83665.woff2')format("woff");}.ff4_c00010{font-family:ff4_c00010;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00010;src:url('chunks/assets/font_deb53c605545bb49fc89ca6d.woff2')format("woff");}.ff5_c00010{font-family:ff5_c00010;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00010;src:url('chunks/assets/font_c9ff406b00118fd516cc3340.woff2')format("woff");}.ff6_c00010{font-family:ff6_c00010;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00010;src:url('chunks/assets/font_2bf068dae3c25fc3b40e9177.woff2')format("woff");}.ff7_c00010{font-family:ff7_c00010;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00010;src:url('chunks/assets/font_2acdb89ddfbf50159067bd38.woff2')format("woff");}.ff8_c00010{font-family:ff8_c00010;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00010;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff9_c00010{font-family:ff9_c00010;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00010;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ffa_c00010{font-family:ffa_c00010;line-height:1.219238;font-style: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.000000px;}
.ls2_c00010{letter-spacing:0.090000px;}
.ls0_c00010{letter-spacing:0.338400px;}
.ls1_c00010{letter-spacing:2.619000px;}
.ls3_c00010{letter-spacing:3.000000px;}
.sc__c00010{text-shadow:none;}
.sc0_c00010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00010{-webkit-text-stroke:0px transparent;}
.sc0_c00010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00010{word-spacing:-41.154000px;}
.ws0_c00010{word-spacing:-32.923200px;}
.ws2_c00010{word-spacing:-14.250000px;}
.ws3_c00010{word-spacing:0.000000px;}
._13_c00010{margin-left:-22.373400px;}
._b_c00010{margin-left:-17.607000px;}
._18_c00010{margin-left:-14.352000px;}
._17_c00010{margin-left:-13.326000px;}
._c_c00010{margin-left:-11.562000px;}
._1b_c00010{margin-left:-10.125000px;}
._16_c00010{margin-left:-8.487000px;}
._f_c00010{margin-left:-7.266000px;}
._0_c00010{margin-left:-6.048000px;}
._1_c00010{margin-left:-4.896000px;}
._3_c00010{margin-left:-3.648000px;}
._8_c00010{margin-left:-2.424000px;}
._10_c00010{margin-left:-1.257000px;}
._9_c00010{width:1.458000px;}
._2_c00010{width:2.496000px;}
._a_c00010{width:3.546000px;}
._7_c00010{width:4.752000px;}
._6_c00010{width:6.426000px;}
._14_c00010{width:7.641000px;}
._e_c00010{width:8.718000px;}
._5_c00010{width:9.900000px;}
._15_c00010{width:11.520000px;}
._d_c00010{width:12.567000px;}
._12_c00010{width:15.840000px;}
._11_c00010{width:18.102000px;}
._19_c00010{width:19.350000px;}
._1c_c00010{width:20.355000px;}
._4_c00010{width:32.040000px;}
._1a_c00010{width:41.571000px;}
.fc2_c00010{color:transparent;}
.fc1_c00010{color:rgb(128,128,128);}
.fc0_c00010{color:rgb(0,0,0);}
.fs4_c00010{font-size:45.600000px;}
.fs5_c00010{font-size:48.000000px;}
.fs2_c00010{font-size:54.000000px;}
.fs3_c00010{font-size:57.000000px;}
.fs1_c00010{font-size:60.000000px;}
.fs0_c00010{font-size:96.000000px;}
.y0_c00010{bottom:0.000000px;}
.y21_c00010{bottom:3.105000px;}
.y20_c00010{bottom:7.228369px;}
.y1f_c00010{bottom:57.420000px;}
.y1e_c00010{bottom:78.570000px;}
.y1d_c00010{bottom:98.820000px;}
.y1c_c00010{bottom:119.820000px;}
.y1b_c00010{bottom:140.970000px;}
.y1a_c00010{bottom:162.270000px;}
.y19_c00010{bottom:182.820000px;}
.y18_c00010{bottom:203.820000px;}
.y17_c00010{bottom:224.370000px;}
.y16_c00010{bottom:245.370000px;}
.y15_c00010{bottom:265.620000px;}
.y14_c00010{bottom:285.420000px;}
.y13_c00010{bottom:305.070000px;}
.y12_c00010{bottom:326.070000px;}
.y11_c00010{bottom:346.320000px;}
.y10_c00010{bottom:367.170000px;}
.yf_c00010{bottom:388.020000px;}
.ye_c00010{bottom:408.420000px;}
.yd_c00010{bottom:428.970000px;}
.yc_c00010{bottom:449.820000px;}
.yb_c00010{bottom:471.120000px;}
.ya_c00010{bottom:490.020000px;}
.y9_c00010{bottom:510.270000px;}
.y8_c00010{bottom:532.170000px;}
.y7_c00010{bottom:550.770000px;}
.y6_c00010{bottom:571.620000px;}
.y5_c00010{bottom:591.870000px;}
.y4_c00010{bottom:612.270000px;}
.y3_c00010{bottom:632.520000px;}
.y2_c00010{bottom:653.370000px;}
.y1_c00010{bottom:693.270000px;}
.h7_c00010{height:13.200073px;}
.h8_c00010{height:43.804688px;}
.h5_c00010{height:55.914551px;}
.h4_c00010{height:55.942383px;}
.h3_c00010{height:60.468750px;}
.h6_c00010{height:68.370117px;}
.h2_c00010{height:121.546875px;}
.h1_c00010{height:783.750000px;}
.h0_c00010{height:784.050000px;}
.w2_c00010{width:104.875500px;}
.w0_c00010{width:527.850000px;}
.w1_c00010{width:528.000000px;}
.x0_c00010{left:0.000000px;}
.xf_c00010{left:15.300000px;}
.xd_c00010{left:17.850000px;}
.xe_c00010{left:19.200000px;}
.xb_c00010{left:20.250000px;}
.xc_c00010{left:21.900000px;}
.x9_c00010{left:22.950000px;}
.x7_c00010{left:24.300000px;}
.x6_c00010{left:25.950000px;}
.x8_c00010{left:45.000000px;}
.x1_c00010{left:149.400000px;}
.x2_c00010{left:162.300000px;}
.x3_c00010{left:164.100000px;}
.x4_c00010{left:165.750000px;}
.x5_c00010{left:166.800000px;}
.x10_c00010{left:215.739258px;}
.xa_c00010{left:225.150000px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls4_c00010{letter-spacing:0.000000pt;}
.ls2_c00010{letter-spacing:0.080000pt;}
.ls0_c00010{letter-spacing:0.300800pt;}
.ls1_c00010{letter-spacing:2.328000pt;}
.ls3_c00010{letter-spacing:2.666667pt;}
.ws1_c00010{word-spacing:-36.581333pt;}
.ws0_c00010{word-spacing:-29.265067pt;}
.ws2_c00010{word-spacing:-12.666667pt;}
.ws3_c00010{word-spacing:0.000000pt;}
._13_c00010{margin-left:-19.887467pt;}
._b_c00010{margin-left:-15.650667pt;}
._18_c00010{margin-left:-12.757333pt;}
._17_c00010{margin-left:-11.845333pt;}
._c_c00010{margin-left:-10.277333pt;}
._1b_c00010{margin-left:-9.000000pt;}
._16_c00010{margin-left:-7.544000pt;}
._f_c00010{margin-left:-6.458667pt;}
._0_c00010{margin-left:-5.376000pt;}
._1_c00010{margin-left:-4.352000pt;}
._3_c00010{margin-left:-3.242667pt;}
._8_c00010{margin-left:-2.154667pt;}
._10_c00010{margin-left:-1.117333pt;}
._9_c00010{width:1.296000pt;}
._2_c00010{width:2.218667pt;}
._a_c00010{width:3.152000pt;}
._7_c00010{width:4.224000pt;}
._6_c00010{width:5.712000pt;}
._14_c00010{width:6.792000pt;}
._e_c00010{width:7.749333pt;}
._5_c00010{width:8.800000pt;}
._15_c00010{width:10.240000pt;}
._d_c00010{width:11.170667pt;}
._12_c00010{width:14.080000pt;}
._11_c00010{width:16.090667pt;}
._19_c00010{width:17.200000pt;}
._1c_c00010{width:18.093333pt;}
._4_c00010{width:28.480000pt;}
._1a_c00010{width:36.952000pt;}
.fs4_c00010{font-size:40.533333pt;}
.fs5_c00010{font-size:42.666667pt;}
.fs2_c00010{font-size:48.000000pt;}
.fs3_c00010{font-size:50.666667pt;}
.fs1_c00010{font-size:53.333333pt;}
.fs0_c00010{font-size:85.333333pt;}
.y0_c00010{bottom:0.000000pt;}
.y21_c00010{bottom:2.760000pt;}
.y20_c00010{bottom:6.425217pt;}
.y1f_c00010{bottom:51.040000pt;}
.y1e_c00010{bottom:69.840000pt;}
.y1d_c00010{bottom:87.840000pt;}
.y1c_c00010{bottom:106.506667pt;}
.y1b_c00010{bottom:125.306667pt;}
.y1a_c00010{bottom:144.240000pt;}
.y19_c00010{bottom:162.506667pt;}
.y18_c00010{bottom:181.173333pt;}
.y17_c00010{bottom:199.440000pt;}
.y16_c00010{bottom:218.106667pt;}
.y15_c00010{bottom:236.106667pt;}
.y14_c00010{bottom:253.706667pt;}
.y13_c00010{bottom:271.173333pt;}
.y12_c00010{bottom:289.840000pt;}
.y11_c00010{bottom:307.840000pt;}
.y10_c00010{bottom:326.373333pt;}
.yf_c00010{bottom:344.906667pt;}
.ye_c00010{bottom:363.040000pt;}
.yd_c00010{bottom:381.306667pt;}
.yc_c00010{bottom:399.840000pt;}
.yb_c00010{bottom:418.773333pt;}
.ya_c00010{bottom:435.573333pt;}
.y9_c00010{bottom:453.573333pt;}
.y8_c00010{bottom:473.040000pt;}
.y7_c00010{bottom:489.573333pt;}
.y6_c00010{bottom:508.106667pt;}
.y5_c00010{bottom:526.106667pt;}
.y4_c00010{bottom:544.240000pt;}
.y3_c00010{bottom:562.240000pt;}
.y2_c00010{bottom:580.773333pt;}
.y1_c00010{bottom:616.240000pt;}
.h7_c00010{height:11.733399pt;}
.h8_c00010{height:38.937500pt;}
.h5_c00010{height:49.701823pt;}
.h4_c00010{height:49.726562pt;}
.h3_c00010{height:53.750000pt;}
.h6_c00010{height:60.773438pt;}
.h2_c00010{height:108.041667pt;}
.h1_c00010{height:696.666667pt;}
.h0_c00010{height:696.933333pt;}
.w2_c00010{width:93.222667pt;}
.w0_c00010{width:469.200000pt;}
.w1_c00010{width:469.333333pt;}
.x0_c00010{left:0.000000pt;}
.xf_c00010{left:13.600000pt;}
.xd_c00010{left:15.866667pt;}
.xe_c00010{left:17.066667pt;}
.xb_c00010{left:18.000000pt;}
.xc_c00010{left:19.466667pt;}
.x9_c00010{left:20.400000pt;}
.x7_c00010{left:21.600000pt;}
.x6_c00010{left:23.066667pt;}
.x8_c00010{left:40.000000pt;}
.x1_c00010{left:132.800000pt;}
.x2_c00010{left:144.266667pt;}
.x3_c00010{left:145.866667pt;}
.x4_c00010{left:147.333333pt;}
.x5_c00010{left:148.266667pt;}
.x10_c00010{left:191.768229pt;}
.xa_c00010{left:200.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1a0478f20bf72595033ef781.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.284180;font-style:normal;font-weight:normal;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_c0be205aaebf3e38712c4971.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00011;src:url('chunks/assets/font_092a30bc055801b22c589979.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00011;src:url('chunks/assets/font_a8ca36800b851f78b65a35b5.woff2')format("woff");}.ff4_c00011{font-family:ff4_c00011;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00011;src:url('chunks/assets/font_5ec8d16c4579dca898121161.woff2')format("woff");}.ff5_c00011{font-family:ff5_c00011;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00011;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00011{font-family:ff6_c00011;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls1_c00011{letter-spacing:0.000000px;}
.ls0_c00011{letter-spacing:2.025600px;}
.ls3_c00011{letter-spacing:27.000000px;}
.ls2_c00011{letter-spacing:105.000000px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00011{word-spacing:-123.000000px;}
.ws1_c00011{word-spacing:-51.984000px;}
.ws5_c00011{word-spacing:-45.000000px;}
.ws4_c00011{word-spacing:-41.587200px;}
.ws0_c00011{word-spacing:-32.923200px;}
.ws2_c00011{word-spacing:-18.000000px;}
.ws6_c00011{word-spacing:0.000000px;}
._16_c00011{margin-left:-57.384000px;}
._13_c00011{margin-left:-51.543000px;}
._15_c00011{margin-left:-50.049000px;}
._14_c00011{margin-left:-45.504000px;}
._17_c00011{margin-left:-44.433000px;}
._1a_c00011{margin-left:-22.464000px;}
._12_c00011{margin-left:-18.045000px;}
._1e_c00011{margin-left:-15.840000px;}
._11_c00011{margin-left:-14.425200px;}
._10_c00011{margin-left:-11.997000px;}
._1f_c00011{margin-left:-10.879200px;}
._f_c00011{margin-left:-9.864000px;}
._1c_c00011{margin-left:-8.803200px;}
._3_c00011{margin-left:-7.638000px;}
._e_c00011{margin-left:-5.870400px;}
._a_c00011{margin-left:-4.161000px;}
._b_c00011{margin-left:-3.078000px;}
._c_c00011{margin-left:-1.710000px;}
._2_c00011{width:1.311000px;}
._1_c00011{width:2.451000px;}
._6_c00011{width:4.275000px;}
._4_c00011{width:5.301000px;}
._7_c00011{width:6.327000px;}
._5_c00011{width:7.752000px;}
._8_c00011{width:9.291000px;}
._0_c00011{width:10.431000px;}
._9_c00011{width:11.742000px;}
._19_c00011{width:12.953400px;}
._21_c00011{width:15.504000px;}
._24_c00011{width:16.530000px;}
._22_c00011{width:17.583000px;}
._25_c00011{width:18.631800px;}
._23_c00011{width:20.151000px;}
._1d_c00011{width:28.935000px;}
._20_c00011{width:104.832000px;}
._d_c00011{width:110.124000px;}
._1b_c00011{width:263.507400px;}
._26_c00011{width:314.811000px;}
._18_c00011{width:473.159400px;}
.fc2_c00011{color:transparent;}
.fc1_c00011{color:rgb(128,128,128);}
.fc0_c00011{color:rgb(0,0,0);}
.fs1_c00011{font-size:45.600000px;}
.fs6_c00011{font-size:48.000000px;}
.fs5_c00011{font-size:54.000000px;}
.fs0_c00011{font-size:57.000000px;}
.fs3_c00011{font-size:57.600000px;}
.fs2_c00011{font-size:72.000000px;}
.fs4_c00011{font-size:78.000000px;}
.y0_c00011{bottom:0.000000px;}
.y23_c00011{bottom:3.105000px;}
.y22_c00011{bottom:7.228371px;}
.y21_c00011{bottom:16.215000px;}
.y20_c00011{bottom:38.115000px;}
.y1f_c00011{bottom:58.515000px;}
.y1e_c00011{bottom:79.065000px;}
.y1d_c00011{bottom:99.915000px;}
.y1c_c00011{bottom:121.215000px;}
.y1b_c00011{bottom:141.165000px;}
.y1a_c00011{bottom:161.715000px;}
.y19_c00011{bottom:183.015000px;}
.y18_c00011{bottom:203.865000px;}
.y17_c00011{bottom:224.415000px;}
.y16_c00011{bottom:245.715000px;}
.y15_c00011{bottom:265.665000px;}
.y14_c00011{bottom:285.165000px;}
.y13_c00011{bottom:305.415000px;}
.y12_c00011{bottom:325.665000px;}
.y11_c00011{bottom:346.665000px;}
.y10_c00011{bottom:367.215000px;}
.yf_c00011{bottom:388.215000px;}
.ye_c00011{bottom:409.065000px;}
.yd_c00011{bottom:430.065000px;}
.yc_c00011{bottom:450.615000px;}
.yb_c00011{bottom:471.465000px;}
.ya_c00011{bottom:493.515000px;}
.y9_c00011{bottom:513.465000px;}
.y8_c00011{bottom:534.615000px;}
.y7_c00011{bottom:555.315000px;}
.y6_c00011{bottom:575.565000px;}
.y5_c00011{bottom:595.365000px;}
.y4_c00011{bottom:615.615000px;}
.y3_c00011{bottom:636.915000px;}
.y2_c00011{bottom:656.415000px;}
.y1_c00011{bottom:677.115000px;}
.h8_c00011{height:13.200074px;}
.h9_c00011{height:43.804688px;}
.h7_c00011{height:52.971680px;}
.h3_c00011{height:55.914551px;}
.h2_c00011{height:55.942383px;}
.h6_c00011{height:70.628906px;}
.h4_c00011{height:70.664062px;}
.h5_c00011{height:78.609375px;}
.h0_c00011{height:791.925000px;}
.h1_c00011{height:792.000000px;}
.w2_c00011{width:104.875500px;}
.w1_c00011{width:501.750000px;}
.w0_c00011{width:501.900000px;}
.x0_c00011{left:0.000000px;}
.x8_c00011{left:120.450000px;}
.x2_c00011{left:122.550000px;}
.x6_c00011{left:123.600000px;}
.x4_c00011{left:125.250000px;}
.x1_c00011{left:126.450000px;}
.x3_c00011{left:127.650000px;}
.x7_c00011{left:161.700000px;}
.x5_c00011{left:195.150000px;}
.xa_c00011{left:202.764267px;}
.x9_c00011{left:467.100000px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls1_c00011{letter-spacing:0.000000pt;}
.ls0_c00011{letter-spacing:1.800533pt;}
.ls3_c00011{letter-spacing:24.000000pt;}
.ls2_c00011{letter-spacing:93.333333pt;}
.ws3_c00011{word-spacing:-109.333333pt;}
.ws1_c00011{word-spacing:-46.208000pt;}
.ws5_c00011{word-spacing:-40.000000pt;}
.ws4_c00011{word-spacing:-36.966400pt;}
.ws0_c00011{word-spacing:-29.265067pt;}
.ws2_c00011{word-spacing:-16.000000pt;}
.ws6_c00011{word-spacing:0.000000pt;}
._16_c00011{margin-left:-51.008000pt;}
._13_c00011{margin-left:-45.816000pt;}
._15_c00011{margin-left:-44.488000pt;}
._14_c00011{margin-left:-40.448000pt;}
._17_c00011{margin-left:-39.496000pt;}
._1a_c00011{margin-left:-19.968000pt;}
._12_c00011{margin-left:-16.040000pt;}
._1e_c00011{margin-left:-14.080000pt;}
._11_c00011{margin-left:-12.822400pt;}
._10_c00011{margin-left:-10.664000pt;}
._1f_c00011{margin-left:-9.670400pt;}
._f_c00011{margin-left:-8.768000pt;}
._1c_c00011{margin-left:-7.825067pt;}
._3_c00011{margin-left:-6.789333pt;}
._e_c00011{margin-left:-5.218133pt;}
._a_c00011{margin-left:-3.698667pt;}
._b_c00011{margin-left:-2.736000pt;}
._c_c00011{margin-left:-1.520000pt;}
._2_c00011{width:1.165333pt;}
._1_c00011{width:2.178667pt;}
._6_c00011{width:3.800000pt;}
._4_c00011{width:4.712000pt;}
._7_c00011{width:5.624000pt;}
._5_c00011{width:6.890667pt;}
._8_c00011{width:8.258667pt;}
._0_c00011{width:9.272000pt;}
._9_c00011{width:10.437333pt;}
._19_c00011{width:11.514133pt;}
._21_c00011{width:13.781333pt;}
._24_c00011{width:14.693333pt;}
._22_c00011{width:15.629333pt;}
._25_c00011{width:16.561600pt;}
._23_c00011{width:17.912000pt;}
._1d_c00011{width:25.720000pt;}
._20_c00011{width:93.184000pt;}
._d_c00011{width:97.888000pt;}
._1b_c00011{width:234.228800pt;}
._26_c00011{width:279.832000pt;}
._18_c00011{width:420.586133pt;}
.fs1_c00011{font-size:40.533333pt;}
.fs6_c00011{font-size:42.666667pt;}
.fs5_c00011{font-size:48.000000pt;}
.fs0_c00011{font-size:50.666667pt;}
.fs3_c00011{font-size:51.200000pt;}
.fs2_c00011{font-size:64.000000pt;}
.fs4_c00011{font-size:69.333333pt;}
.y0_c00011{bottom:0.000000pt;}
.y23_c00011{bottom:2.760000pt;}
.y22_c00011{bottom:6.425219pt;}
.y21_c00011{bottom:14.413333pt;}
.y20_c00011{bottom:33.880000pt;}
.y1f_c00011{bottom:52.013333pt;}
.y1e_c00011{bottom:70.280000pt;}
.y1d_c00011{bottom:88.813333pt;}
.y1c_c00011{bottom:107.746667pt;}
.y1b_c00011{bottom:125.480000pt;}
.y1a_c00011{bottom:143.746667pt;}
.y19_c00011{bottom:162.680000pt;}
.y18_c00011{bottom:181.213333pt;}
.y17_c00011{bottom:199.480000pt;}
.y16_c00011{bottom:218.413333pt;}
.y15_c00011{bottom:236.146667pt;}
.y14_c00011{bottom:253.480000pt;}
.y13_c00011{bottom:271.480000pt;}
.y12_c00011{bottom:289.480000pt;}
.y11_c00011{bottom:308.146667pt;}
.y10_c00011{bottom:326.413333pt;}
.yf_c00011{bottom:345.080000pt;}
.ye_c00011{bottom:363.613333pt;}
.yd_c00011{bottom:382.280000pt;}
.yc_c00011{bottom:400.546667pt;}
.yb_c00011{bottom:419.080000pt;}
.ya_c00011{bottom:438.680000pt;}
.y9_c00011{bottom:456.413333pt;}
.y8_c00011{bottom:475.213333pt;}
.y7_c00011{bottom:493.613333pt;}
.y6_c00011{bottom:511.613333pt;}
.y5_c00011{bottom:529.213333pt;}
.y4_c00011{bottom:547.213333pt;}
.y3_c00011{bottom:566.146667pt;}
.y2_c00011{bottom:583.480000pt;}
.y1_c00011{bottom:601.880000pt;}
.h8_c00011{height:11.733399pt;}
.h9_c00011{height:38.937500pt;}
.h7_c00011{height:47.085938pt;}
.h3_c00011{height:49.701823pt;}
.h2_c00011{height:49.726562pt;}
.h6_c00011{height:62.781250pt;}
.h4_c00011{height:62.812500pt;}
.h5_c00011{height:69.875000pt;}
.h0_c00011{height:703.933333pt;}
.h1_c00011{height:704.000000pt;}
.w2_c00011{width:93.222667pt;}
.w1_c00011{width:446.000000pt;}
.w0_c00011{width:446.133333pt;}
.x0_c00011{left:0.000000pt;}
.x8_c00011{left:107.066667pt;}
.x2_c00011{left:108.933333pt;}
.x6_c00011{left:109.866667pt;}
.x4_c00011{left:111.333333pt;}
.x1_c00011{left:112.400000pt;}
.x3_c00011{left:113.466667pt;}
.x7_c00011{left:143.733333pt;}
.x5_c00011{left:173.466667pt;}
.xa_c00011{left:180.234904pt;}
.x9_c00011{left:415.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_69eff57c3dd5a470c923fedf.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00012;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00012;src:url('chunks/assets/font_13ba25df88ce274ea8e055be.woff2')format("woff");}.ff3_c00012{font-family:ff3_c00012;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00012;src:url('chunks/assets/font_e8b176e8eb1291876be43e21.woff2')format("woff");}.ff4_c00012{font-family:ff4_c00012;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00012;src:url('chunks/assets/font_fc5b26e0027752159f3d4cc8.woff2')format("woff");}.ff5_c00012{font-family:ff5_c00012;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00012;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00012{font-family:ff6_c00012;line-height:1.219238;font-style: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;}
.ls0_c00012{letter-spacing:0.000000px;}
.sc__c00012{text-shadow:none;}
.sc0_c00012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00012{-webkit-text-stroke:0px transparent;}
.sc0_c00012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00012{word-spacing:-16.254000px;}
.ws1_c00012{word-spacing:0.000000px;}
._16_c00012{margin-left:-17.568000px;}
._15_c00012{margin-left:-14.016000px;}
._12_c00012{margin-left:-12.024000px;}
._8_c00012{margin-left:-10.440000px;}
._4_c00012{margin-left:-8.928000px;}
._2_c00012{margin-left:-7.488000px;}
._b_c00012{margin-left:-6.336000px;}
._0_c00012{margin-left:-5.112000px;}
._3_c00012{margin-left:-3.960000px;}
._1_c00012{margin-left:-2.736000px;}
._9_c00012{margin-left:-1.152000px;}
._6_c00012{width:1.944000px;}
._7_c00012{width:3.312000px;}
._14_c00012{width:5.184000px;}
._c_c00012{width:6.552000px;}
._d_c00012{width:8.328000px;}
._f_c00012{width:9.888000px;}
._5_c00012{width:11.088000px;}
._11_c00012{width:12.168000px;}
._13_c00012{width:20.736000px;}
._e_c00012{width:21.816000px;}
._a_c00012{width:25.632000px;}
._10_c00012{width:242.784000px;}
.fc2_c00012{color:transparent;}
.fc1_c00012{color:rgb(128,128,128);}
.fc0_c00012{color:rgb(0,0,0);}
.fs3_c00012{font-size:48.000000px;}
.fs2_c00012{font-size:54.000000px;}
.fs0_c00012{font-size:72.000000px;}
.fs1_c00012{font-size:78.000000px;}
.y0_c00012{bottom:0.000000px;}
.yb_c00012{bottom:3.105000px;}
.ya_c00012{bottom:7.228369px;}
.y9_c00012{bottom:538.620000px;}
.y8_c00012{bottom:559.470000px;}
.y7_c00012{bottom:579.720000px;}
.y6_c00012{bottom:600.720000px;}
.y5_c00012{bottom:620.970000px;}
.y4_c00012{bottom:641.820000px;}
.y3_c00012{bottom:661.770000px;}
.y2_c00012{bottom:682.020000px;}
.y1_c00012{bottom:702.270000px;}
.h6_c00012{height:13.200073px;}
.h7_c00012{height:43.804688px;}
.h5_c00012{height:52.971680px;}
.h4_c00012{height:70.628906px;}
.h2_c00012{height:70.664062px;}
.h3_c00012{height:78.609375px;}
.h1_c00012{height:771.750000px;}
.h0_c00012{height:771.900000px;}
.w2_c00012{width:104.875500px;}
.w0_c00012{width:514.875000px;}
.w1_c00012{width:515.250000px;}
.x0_c00012{left:0.000000px;}
.x2_c00012{left:12.600000px;}
.x3_c00012{left:13.950000px;}
.x4_c00012{left:15.300000px;}
.x1_c00012{left:42.900000px;}
.x5_c00012{left:162.450000px;}
.x6_c00012{left:209.251740px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls0_c00012{letter-spacing:0.000000pt;}
.ws0_c00012{word-spacing:-14.448000pt;}
.ws1_c00012{word-spacing:0.000000pt;}
._16_c00012{margin-left:-15.616000pt;}
._15_c00012{margin-left:-12.458667pt;}
._12_c00012{margin-left:-10.688000pt;}
._8_c00012{margin-left:-9.280000pt;}
._4_c00012{margin-left:-7.936000pt;}
._2_c00012{margin-left:-6.656000pt;}
._b_c00012{margin-left:-5.632000pt;}
._0_c00012{margin-left:-4.544000pt;}
._3_c00012{margin-left:-3.520000pt;}
._1_c00012{margin-left:-2.432000pt;}
._9_c00012{margin-left:-1.024000pt;}
._6_c00012{width:1.728000pt;}
._7_c00012{width:2.944000pt;}
._14_c00012{width:4.608000pt;}
._c_c00012{width:5.824000pt;}
._d_c00012{width:7.402667pt;}
._f_c00012{width:8.789333pt;}
._5_c00012{width:9.856000pt;}
._11_c00012{width:10.816000pt;}
._13_c00012{width:18.432000pt;}
._e_c00012{width:19.392000pt;}
._a_c00012{width:22.784000pt;}
._10_c00012{width:215.808000pt;}
.fs3_c00012{font-size:42.666667pt;}
.fs2_c00012{font-size:48.000000pt;}
.fs0_c00012{font-size:64.000000pt;}
.fs1_c00012{font-size:69.333333pt;}
.y0_c00012{bottom:0.000000pt;}
.yb_c00012{bottom:2.760000pt;}
.ya_c00012{bottom:6.425217pt;}
.y9_c00012{bottom:478.773333pt;}
.y8_c00012{bottom:497.306667pt;}
.y7_c00012{bottom:515.306667pt;}
.y6_c00012{bottom:533.973333pt;}
.y5_c00012{bottom:551.973333pt;}
.y4_c00012{bottom:570.506667pt;}
.y3_c00012{bottom:588.240000pt;}
.y2_c00012{bottom:606.240000pt;}
.y1_c00012{bottom:624.240000pt;}
.h6_c00012{height:11.733399pt;}
.h7_c00012{height:38.937500pt;}
.h5_c00012{height:47.085938pt;}
.h4_c00012{height:62.781250pt;}
.h2_c00012{height:62.812500pt;}
.h3_c00012{height:69.875000pt;}
.h1_c00012{height:686.000000pt;}
.h0_c00012{height:686.133333pt;}
.w2_c00012{width:93.222667pt;}
.w0_c00012{width:457.666667pt;}
.w1_c00012{width:458.000000pt;}
.x0_c00012{left:0.000000pt;}
.x2_c00012{left:11.200000pt;}
.x3_c00012{left:12.400000pt;}
.x4_c00012{left:13.600000pt;}
.x1_c00012{left:38.133333pt;}
.x5_c00012{left:144.400000pt;}
.x6_c00012{left:186.001546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ee5ba191ff3a90aa58471416.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.568848;font-style:normal;font-weight:normal;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_f1c5f837ebd975d43cbf7099.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00013;src:url('chunks/assets/font_761a37066af2544bc73f3a8b.woff2')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00013;src:url('chunks/assets/font_758dd774dbcae7bb3fc7b8d7.woff2')format("woff");}.ff4_c00013{font-family:ff4_c00013;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00013;src:url('chunks/assets/font_5f24f41c9bd1868068ebb1cd.woff2')format("woff");}.ff5_c00013{font-family:ff5_c00013;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00013;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00013{font-family:ff6_c00013;line-height:1.219238;font-style: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;}
.v1_c00013{vertical-align:6.600000px;}
.ls6_c00013{letter-spacing:-6.000000px;}
.ls5_c00013{letter-spacing:0.000000px;}
.ls2_c00013{letter-spacing:0.675000px;}
.ls3_c00013{letter-spacing:2.400000px;}
.ls0_c00013{letter-spacing:2.709000px;}
.ls4_c00013{letter-spacing:3.000000px;}
.ls1_c00013{letter-spacing:4.860000px;}
.ls7_c00013{letter-spacing:18.000000px;}
.sc__c00013{text-shadow:none;}
.sc0_c00013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00013{-webkit-text-stroke:0px transparent;}
.sc0_c00013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00013{word-spacing:-79.512000px;}
.ws4_c00013{word-spacing:-30.291000px;}
.ws5_c00013{word-spacing:-27.000000px;}
.ws1_c00013{word-spacing:-19.500000px;}
.ws2_c00013{word-spacing:-12.291000px;}
.ws3_c00013{word-spacing:-7.500000px;}
.ws6_c00013{word-spacing:0.000000px;}
._4_c00013{margin-left:-16.146000px;}
._1c_c00013{margin-left:-13.872000px;}
._5_c00013{margin-left:-12.480000px;}
._3_c00013{margin-left:-11.076000px;}
._8_c00013{margin-left:-9.516000px;}
._7_c00013{margin-left:-7.644000px;}
._6_c00013{margin-left:-6.084000px;}
._19_c00013{margin-left:-4.518000px;}
._15_c00013{margin-left:-3.399000px;}
._a_c00013{margin-left:-1.887000px;}
._0_c00013{width:1.440000px;}
._2_c00013{width:2.496000px;}
._1_c00013{width:3.552000px;}
._11_c00013{width:4.998000px;}
._10_c00013{width:6.936000px;}
._13_c00013{width:8.451000px;}
._14_c00013{width:9.651000px;}
._18_c00013{width:10.794000px;}
._1e_c00013{width:12.096000px;}
._9_c00013{width:13.593000px;}
._1d_c00013{width:14.757000px;}
._17_c00013{width:15.858000px;}
._16_c00013{width:17.136000px;}
._d_c00013{width:18.513000px;}
._b_c00013{width:20.451000px;}
._c_c00013{width:21.471000px;}
._21_c00013{width:22.653000px;}
._22_c00013{width:24.165000px;}
._f_c00013{width:26.982000px;}
._e_c00013{width:30.651000px;}
._12_c00013{width:38.403000px;}
._1a_c00013{width:107.802000px;}
._1f_c00013{width:176.562000px;}
._20_c00013{width:212.364000px;}
._23_c00013{width:342.063000px;}
._1b_c00013{width:1354.041000px;}
.fc2_c00013{color:transparent;}
.fc1_c00013{color:rgb(128,128,128);}
.fc0_c00013{color:rgb(0,0,0);}
.fs5_c00013{font-size:24.000000px;}
.fs7_c00013{font-size:48.000000px;}
.fs2_c00013{font-size:51.000000px;}
.fs4_c00013{font-size:54.000000px;}
.fs6_c00013{font-size:60.000000px;}
.fs3_c00013{font-size:63.000000px;}
.fs1_c00013{font-size:78.000000px;}
.fs0_c00013{font-size:96.000000px;}
.y0_c00013{bottom:0.000000px;}
.y2a_c00013{bottom:3.105000px;}
.y29_c00013{bottom:7.228371px;}
.y28_c00013{bottom:40.215000px;}
.y27_c00013{bottom:57.165000px;}
.y26_c00013{bottom:75.015000px;}
.y25_c00013{bottom:93.465000px;}
.y24_c00013{bottom:111.465000px;}
.y23_c00013{bottom:128.715000px;}
.y22_c00013{bottom:145.215000px;}
.y21_c00013{bottom:164.415000px;}
.y20_c00013{bottom:183.015000px;}
.y1f_c00013{bottom:202.815000px;}
.y1e_c00013{bottom:219.015000px;}
.y1d_c00013{bottom:236.565000px;}
.y1c_c00013{bottom:251.565000px;}
.y1b_c00013{bottom:272.415000px;}
.y1a_c00013{bottom:289.965000px;}
.y19_c00013{bottom:307.215000px;}
.y18_c00013{bottom:325.065000px;}
.y17_c00013{bottom:342.315000px;}
.y16_c00013{bottom:360.915000px;}
.y15_c00013{bottom:378.765000px;}
.y14_c00013{bottom:396.915000px;}
.y13_c00013{bottom:414.465000px;}
.y12_c00013{bottom:432.465000px;}
.y11_c00013{bottom:450.315000px;}
.y10_c00013{bottom:468.165000px;}
.yf_c00013{bottom:485.715000px;}
.ye_c00013{bottom:504.615000px;}
.yd_c00013{bottom:521.865000px;}
.y4_c00013{bottom:537.765000px;}
.yc_c00013{bottom:539.115000px;}
.y3_c00013{bottom:552.165000px;}
.yb_c00013{bottom:556.665000px;}
.y2_c00013{bottom:566.115000px;}
.ya_c00013{bottom:574.515000px;}
.y9_c00013{bottom:591.765000px;}
.y8_c00013{bottom:609.915000px;}
.y7_c00013{bottom:627.765000px;}
.y6_c00013{bottom:645.615000px;}
.y5_c00013{bottom:663.165000px;}
.y1_c00013{bottom:703.815000px;}
.h6_c00013{height:13.200074px;}
.h7_c00013{height:43.804688px;}
.h4_c00013{height:64.571777px;}
.h5_c00013{height:75.966797px;}
.h3_c00013{height:78.609375px;}
.h2_c00013{height:121.546875px;}
.h1_c00013{height:797.250000px;}
.h0_c00013{height:797.325000px;}
.w2_c00013{width:104.875500px;}
.w0_c00013{width:492.450000px;}
.w1_c00013{width:492.750000px;}
.x0_c00013{left:0.000000px;}
.xd_c00013{left:39.600000px;}
.xe_c00013{left:40.800000px;}
.x2_c00013{left:45.300000px;}
.xf_c00013{left:64.500000px;}
.xb_c00013{left:112.350000px;}
.xc_c00013{left:115.200000px;}
.xa_c00013{left:116.400000px;}
.x9_c00013{left:117.900000px;}
.x8_c00013{left:119.100000px;}
.x11_c00013{left:198.039230px;}
.x1_c00013{left:225.450000px;}
.x10_c00013{left:239.550000px;}
.x7_c00013{left:264.900000px;}
.x3_c00013{left:265.950000px;}
.x5_c00013{left:270.000000px;}
.x6_c00013{left:271.950000px;}
.x4_c00013{left:274.800000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.v1_c00013{vertical-align:5.866667pt;}
.ls6_c00013{letter-spacing:-5.333333pt;}
.ls5_c00013{letter-spacing:0.000000pt;}
.ls2_c00013{letter-spacing:0.600000pt;}
.ls3_c00013{letter-spacing:2.133333pt;}
.ls0_c00013{letter-spacing:2.408000pt;}
.ls4_c00013{letter-spacing:2.666667pt;}
.ls1_c00013{letter-spacing:4.320000pt;}
.ls7_c00013{letter-spacing:16.000000pt;}
.ws0_c00013{word-spacing:-70.677333pt;}
.ws4_c00013{word-spacing:-26.925333pt;}
.ws5_c00013{word-spacing:-24.000000pt;}
.ws1_c00013{word-spacing:-17.333333pt;}
.ws2_c00013{word-spacing:-10.925333pt;}
.ws3_c00013{word-spacing:-6.666667pt;}
.ws6_c00013{word-spacing:0.000000pt;}
._4_c00013{margin-left:-14.352000pt;}
._1c_c00013{margin-left:-12.330667pt;}
._5_c00013{margin-left:-11.093333pt;}
._3_c00013{margin-left:-9.845333pt;}
._8_c00013{margin-left:-8.458667pt;}
._7_c00013{margin-left:-6.794667pt;}
._6_c00013{margin-left:-5.408000pt;}
._19_c00013{margin-left:-4.016000pt;}
._15_c00013{margin-left:-3.021333pt;}
._a_c00013{margin-left:-1.677333pt;}
._0_c00013{width:1.280000pt;}
._2_c00013{width:2.218667pt;}
._1_c00013{width:3.157333pt;}
._11_c00013{width:4.442667pt;}
._10_c00013{width:6.165333pt;}
._13_c00013{width:7.512000pt;}
._14_c00013{width:8.578667pt;}
._18_c00013{width:9.594667pt;}
._1e_c00013{width:10.752000pt;}
._9_c00013{width:12.082667pt;}
._1d_c00013{width:13.117333pt;}
._17_c00013{width:14.096000pt;}
._16_c00013{width:15.232000pt;}
._d_c00013{width:16.456000pt;}
._b_c00013{width:18.178667pt;}
._c_c00013{width:19.085333pt;}
._21_c00013{width:20.136000pt;}
._22_c00013{width:21.480000pt;}
._f_c00013{width:23.984000pt;}
._e_c00013{width:27.245333pt;}
._12_c00013{width:34.136000pt;}
._1a_c00013{width:95.824000pt;}
._1f_c00013{width:156.944000pt;}
._20_c00013{width:188.768000pt;}
._23_c00013{width:304.056000pt;}
._1b_c00013{width:1203.592000pt;}
.fs5_c00013{font-size:21.333333pt;}
.fs7_c00013{font-size:42.666667pt;}
.fs2_c00013{font-size:45.333333pt;}
.fs4_c00013{font-size:48.000000pt;}
.fs6_c00013{font-size:53.333333pt;}
.fs3_c00013{font-size:56.000000pt;}
.fs1_c00013{font-size:69.333333pt;}
.fs0_c00013{font-size:85.333333pt;}
.y0_c00013{bottom:0.000000pt;}
.y2a_c00013{bottom:2.760000pt;}
.y29_c00013{bottom:6.425219pt;}
.y28_c00013{bottom:35.746667pt;}
.y27_c00013{bottom:50.813333pt;}
.y26_c00013{bottom:66.680000pt;}
.y25_c00013{bottom:83.080000pt;}
.y24_c00013{bottom:99.080000pt;}
.y23_c00013{bottom:114.413333pt;}
.y22_c00013{bottom:129.080000pt;}
.y21_c00013{bottom:146.146667pt;}
.y20_c00013{bottom:162.680000pt;}
.y1f_c00013{bottom:180.280000pt;}
.y1e_c00013{bottom:194.680000pt;}
.y1d_c00013{bottom:210.280000pt;}
.y1c_c00013{bottom:223.613333pt;}
.y1b_c00013{bottom:242.146667pt;}
.y1a_c00013{bottom:257.746667pt;}
.y19_c00013{bottom:273.080000pt;}
.y18_c00013{bottom:288.946667pt;}
.y17_c00013{bottom:304.280000pt;}
.y16_c00013{bottom:320.813333pt;}
.y15_c00013{bottom:336.680000pt;}
.y14_c00013{bottom:352.813333pt;}
.y13_c00013{bottom:368.413333pt;}
.y12_c00013{bottom:384.413333pt;}
.y11_c00013{bottom:400.280000pt;}
.y10_c00013{bottom:416.146667pt;}
.yf_c00013{bottom:431.746667pt;}
.ye_c00013{bottom:448.546667pt;}
.yd_c00013{bottom:463.880000pt;}
.y4_c00013{bottom:478.013333pt;}
.yc_c00013{bottom:479.213333pt;}
.y3_c00013{bottom:490.813333pt;}
.yb_c00013{bottom:494.813333pt;}
.y2_c00013{bottom:503.213333pt;}
.ya_c00013{bottom:510.680000pt;}
.y9_c00013{bottom:526.013333pt;}
.y8_c00013{bottom:542.146667pt;}
.y7_c00013{bottom:558.013333pt;}
.y6_c00013{bottom:573.880000pt;}
.y5_c00013{bottom:589.480000pt;}
.y1_c00013{bottom:625.613333pt;}
.h6_c00013{height:11.733399pt;}
.h7_c00013{height:38.937500pt;}
.h4_c00013{height:57.397135pt;}
.h5_c00013{height:67.526042pt;}
.h3_c00013{height:69.875000pt;}
.h2_c00013{height:108.041667pt;}
.h1_c00013{height:708.666667pt;}
.h0_c00013{height:708.733333pt;}
.w2_c00013{width:93.222667pt;}
.w0_c00013{width:437.733333pt;}
.w1_c00013{width:438.000000pt;}
.x0_c00013{left:0.000000pt;}
.xd_c00013{left:35.200000pt;}
.xe_c00013{left:36.266667pt;}
.x2_c00013{left:40.266667pt;}
.xf_c00013{left:57.333333pt;}
.xb_c00013{left:99.866667pt;}
.xc_c00013{left:102.400000pt;}
.xa_c00013{left:103.466667pt;}
.x9_c00013{left:104.800000pt;}
.x8_c00013{left:105.866667pt;}
.x11_c00013{left:176.034871pt;}
.x1_c00013{left:200.400000pt;}
.x10_c00013{left:212.933333pt;}
.x7_c00013{left:235.466667pt;}
.x3_c00013{left:236.400000pt;}
.x5_c00013{left:240.000000pt;}
.x6_c00013{left:241.733333pt;}
.x4_c00013{left:244.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4cb55bf7a67469119f13b0fd.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.568848;font-style:normal;font-weight:normal;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_a9eb27f85ef2c89e9f0d800c.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00014;src:url('chunks/assets/font_da12db9d6923686dbbebc175.woff2')format("woff");}.ff3_c00014{font-family:ff3_c00014;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00014;src:url('chunks/assets/font_f82d22151302e8392ee83479.woff2')format("woff");}.ff4_c00014{font-family:ff4_c00014;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00014;src:url('chunks/assets/font_3e7c8eff68a74e2ee095d5c7.woff2')format("woff");}.ff5_c00014{font-family:ff5_c00014;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00014;src:url('chunks/assets/font_d7c881bd6e4efeac72b0142e.woff2')format("woff");}.ff6_c00014{font-family:ff6_c00014;line-height:1.568848;font-style:normal;font-weight: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_c00014;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00014{font-family:ff7_c00014;line-height:1.219238;font-style: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;}
.ls5_c00014{letter-spacing:-6.000000px;}
.ls4_c00014{letter-spacing:0.000000px;}
.ls3_c00014{letter-spacing:1.800000px;}
.ls2_c00014{letter-spacing:4.500000px;}
.ls1_c00014{letter-spacing:8.006400px;}
.ls0_c00014{letter-spacing:9.624000px;}
.sc__c00014{text-shadow:none;}
.sc0_c00014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00014{-webkit-text-stroke:0px transparent;}
.sc0_c00014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00014{word-spacing:-51.984000px;}
.ws2_c00014{word-spacing:-24.643200px;}
.ws0_c00014{word-spacing:-21.000000px;}
.ws3_c00014{word-spacing:-12.291000px;}
.ws4_c00014{word-spacing:-9.882000px;}
.ws5_c00014{word-spacing:0.000000px;}
._1d_c00014{margin-left:-19.482000px;}
._12_c00014{margin-left:-16.755000px;}
._1e_c00014{margin-left:-13.056000px;}
._10_c00014{margin-left:-11.121000px;}
._11_c00014{margin-left:-9.129000px;}
._c_c00014{margin-left:-7.752000px;}
._a_c00014{margin-left:-6.273000px;}
._e_c00014{margin-left:-4.788000px;}
._8_c00014{margin-left:-3.009000px;}
._16_c00014{margin-left:-1.275000px;}
._4_c00014{width:1.173000px;}
._1_c00014{width:2.499000px;}
._0_c00014{width:3.825000px;}
._2_c00014{width:5.712000px;}
._3_c00014{width:7.140000px;}
._5_c00014{width:8.721000px;}
._d_c00014{width:10.098000px;}
._6_c00014{width:11.169000px;}
._17_c00014{width:13.311000px;}
._13_c00014{width:14.586000px;}
._9_c00014{width:15.861000px;}
._b_c00014{width:17.187000px;}
._1c_c00014{width:18.666000px;}
._15_c00014{width:20.643000px;}
._18_c00014{width:22.029000px;}
._1a_c00014{width:25.865400px;}
._f_c00014{width:28.782000px;}
._7_c00014{width:31.569000px;}
._14_c00014{width:34.782000px;}
._19_c00014{width:211.293000px;}
._1b_c00014{width:217.872000px;}
.fc2_c00014{color:transparent;}
.fc1_c00014{color:rgb(128,128,128);}
.fc0_c00014{color:rgb(0,0,0);}
.fs5_c00014{font-size:40.800000px;}
.fs6_c00014{font-size:48.000000px;}
.fs0_c00014{font-size:51.000000px;}
.fs1_c00014{font-size:54.000000px;}
.fs2_c00014{font-size:57.600000px;}
.fs3_c00014{font-size:72.000000px;}
.fs4_c00014{font-size:78.000000px;}
.y0_c00014{bottom:0.000000px;}
.y28_c00014{bottom:3.105000px;}
.y27_c00014{bottom:7.228363px;}
.y26_c00014{bottom:44.550000px;}
.y25_c00014{bottom:64.200000px;}
.y24_c00014{bottom:81.750000px;}
.y23_c00014{bottom:100.200000px;}
.y22_c00014{bottom:117.900000px;}
.y21_c00014{bottom:136.650000px;}
.y20_c00014{bottom:154.650000px;}
.y1f_c00014{bottom:172.200000px;}
.y1e_c00014{bottom:190.650000px;}
.y1d_c00014{bottom:208.950000px;}
.y1c_c00014{bottom:226.500000px;}
.y1b_c00014{bottom:244.050000px;}
.y1a_c00014{bottom:261.900000px;}
.y19_c00014{bottom:280.200000px;}
.y18_c00014{bottom:296.700000px;}
.y17_c00014{bottom:314.550000px;}
.y16_c00014{bottom:331.800000px;}
.y15_c00014{bottom:349.950000px;}
.y14_c00014{bottom:367.500000px;}
.y13_c00014{bottom:385.500000px;}
.y12_c00014{bottom:404.100000px;}
.y11_c00014{bottom:421.200000px;}
.y10_c00014{bottom:439.500000px;}
.yf_c00014{bottom:457.350000px;}
.ye_c00014{bottom:475.200000px;}
.yd_c00014{bottom:492.450000px;}
.yc_c00014{bottom:511.350000px;}
.yb_c00014{bottom:528.900000px;}
.ya_c00014{bottom:546.450000px;}
.y9_c00014{bottom:564.300000px;}
.y8_c00014{bottom:582.900000px;}
.y7_c00014{bottom:600.150000px;}
.y6_c00014{bottom:617.250000px;}
.y5_c00014{bottom:635.850000px;}
.y4_c00014{bottom:653.700000px;}
.y3_c00014{bottom:671.400000px;}
.y2_c00014{bottom:688.800000px;}
.y1_c00014{bottom:706.500000px;}
.h4_c00014{height:13.200074px;}
.h5_c00014{height:43.804688px;}
.h2_c00014{height:64.571777px;}
.h3_c00014{height:78.609375px;}
.h0_c00014{height:777.600000px;}
.h1_c00014{height:777.750000px;}
.w2_c00014{width:104.875500px;}
.w1_c00014{width:513.000000px;}
.w0_c00014{width:513.300000px;}
.x0_c00014{left:0.000000px;}
.x7_c00014{left:3.600000px;}
.x6_c00014{left:5.100000px;}
.x8_c00014{left:6.150000px;}
.x5_c00014{left:7.350000px;}
.x4_c00014{left:8.550000px;}
.x3_c00014{left:9.750000px;}
.x2_c00014{left:11.100000px;}
.x1_c00014{left:12.900000px;}
.x9_c00014{left:78.600000px;}
.xa_c00014{left:208.464249px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls5_c00014{letter-spacing:-5.333333pt;}
.ls4_c00014{letter-spacing:0.000000pt;}
.ls3_c00014{letter-spacing:1.600000pt;}
.ls2_c00014{letter-spacing:4.000000pt;}
.ls1_c00014{letter-spacing:7.116800pt;}
.ls0_c00014{letter-spacing:8.554667pt;}
.ws1_c00014{word-spacing:-46.208000pt;}
.ws2_c00014{word-spacing:-21.905067pt;}
.ws0_c00014{word-spacing:-18.666667pt;}
.ws3_c00014{word-spacing:-10.925333pt;}
.ws4_c00014{word-spacing:-8.784000pt;}
.ws5_c00014{word-spacing:0.000000pt;}
._1d_c00014{margin-left:-17.317333pt;}
._12_c00014{margin-left:-14.893333pt;}
._1e_c00014{margin-left:-11.605333pt;}
._10_c00014{margin-left:-9.885333pt;}
._11_c00014{margin-left:-8.114667pt;}
._c_c00014{margin-left:-6.890667pt;}
._a_c00014{margin-left:-5.576000pt;}
._e_c00014{margin-left:-4.256000pt;}
._8_c00014{margin-left:-2.674667pt;}
._16_c00014{margin-left:-1.133333pt;}
._4_c00014{width:1.042667pt;}
._1_c00014{width:2.221333pt;}
._0_c00014{width:3.400000pt;}
._2_c00014{width:5.077333pt;}
._3_c00014{width:6.346667pt;}
._5_c00014{width:7.752000pt;}
._d_c00014{width:8.976000pt;}
._6_c00014{width:9.928000pt;}
._17_c00014{width:11.832000pt;}
._13_c00014{width:12.965333pt;}
._9_c00014{width:14.098667pt;}
._b_c00014{width:15.277333pt;}
._1c_c00014{width:16.592000pt;}
._15_c00014{width:18.349333pt;}
._18_c00014{width:19.581333pt;}
._1a_c00014{width:22.991467pt;}
._f_c00014{width:25.584000pt;}
._7_c00014{width:28.061333pt;}
._14_c00014{width:30.917333pt;}
._19_c00014{width:187.816000pt;}
._1b_c00014{width:193.664000pt;}
.fs5_c00014{font-size:36.266667pt;}
.fs6_c00014{font-size:42.666667pt;}
.fs0_c00014{font-size:45.333333pt;}
.fs1_c00014{font-size:48.000000pt;}
.fs2_c00014{font-size:51.200000pt;}
.fs3_c00014{font-size:64.000000pt;}
.fs4_c00014{font-size:69.333333pt;}
.y0_c00014{bottom:0.000000pt;}
.y28_c00014{bottom:2.760000pt;}
.y27_c00014{bottom:6.425212pt;}
.y26_c00014{bottom:39.600000pt;}
.y25_c00014{bottom:57.066667pt;}
.y24_c00014{bottom:72.666667pt;}
.y23_c00014{bottom:89.066667pt;}
.y22_c00014{bottom:104.800000pt;}
.y21_c00014{bottom:121.466667pt;}
.y20_c00014{bottom:137.466667pt;}
.y1f_c00014{bottom:153.066667pt;}
.y1e_c00014{bottom:169.466667pt;}
.y1d_c00014{bottom:185.733333pt;}
.y1c_c00014{bottom:201.333333pt;}
.y1b_c00014{bottom:216.933333pt;}
.y1a_c00014{bottom:232.800000pt;}
.y19_c00014{bottom:249.066667pt;}
.y18_c00014{bottom:263.733333pt;}
.y17_c00014{bottom:279.600000pt;}
.y16_c00014{bottom:294.933333pt;}
.y15_c00014{bottom:311.066667pt;}
.y14_c00014{bottom:326.666667pt;}
.y13_c00014{bottom:342.666667pt;}
.y12_c00014{bottom:359.200000pt;}
.y11_c00014{bottom:374.400000pt;}
.y10_c00014{bottom:390.666667pt;}
.yf_c00014{bottom:406.533333pt;}
.ye_c00014{bottom:422.400000pt;}
.yd_c00014{bottom:437.733333pt;}
.yc_c00014{bottom:454.533333pt;}
.yb_c00014{bottom:470.133333pt;}
.ya_c00014{bottom:485.733333pt;}
.y9_c00014{bottom:501.600000pt;}
.y8_c00014{bottom:518.133333pt;}
.y7_c00014{bottom:533.466667pt;}
.y6_c00014{bottom:548.666667pt;}
.y5_c00014{bottom:565.200000pt;}
.y4_c00014{bottom:581.066667pt;}
.y3_c00014{bottom:596.800000pt;}
.y2_c00014{bottom:612.266667pt;}
.y1_c00014{bottom:628.000000pt;}
.h4_c00014{height:11.733399pt;}
.h5_c00014{height:38.937500pt;}
.h2_c00014{height:57.397135pt;}
.h3_c00014{height:69.875000pt;}
.h0_c00014{height:691.200000pt;}
.h1_c00014{height:691.333333pt;}
.w2_c00014{width:93.222667pt;}
.w1_c00014{width:456.000000pt;}
.w0_c00014{width:456.266667pt;}
.x0_c00014{left:0.000000pt;}
.x7_c00014{left:3.200000pt;}
.x6_c00014{left:4.533333pt;}
.x8_c00014{left:5.466667pt;}
.x5_c00014{left:6.533333pt;}
.x4_c00014{left:7.600000pt;}
.x3_c00014{left:8.666667pt;}
.x2_c00014{left:9.866667pt;}
.x1_c00014{left:11.466667pt;}
.x9_c00014{left:69.866667pt;}
.xa_c00014{left:185.301554pt;}
}





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

.ir_c00015:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00015{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00015;src:url('chunks/assets/font_eedd4bb41fedb5a543e3664c.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00015;src:url('chunks/assets/font_c6036d9777181f098473293c.woff2')format("woff");}.ff2_c00015{font-family:ff2_c00015;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00015;src:url('chunks/assets/font_d42c0312cc0c919635f55908.woff2')format("woff");}.ff3_c00015{font-family:ff3_c00015;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00015;src:url('chunks/assets/font_b0ebec70d0e806a275dfb908.woff2')format("woff");}.ff4_c00015{font-family:ff4_c00015;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00015;src:url('chunks/assets/font_d4f5f2609e7db3278c8bc0ba.woff2')format("woff");}.ff5_c00015{font-family:ff5_c00015;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00015;src:url('chunks/assets/font_e85f589097e9bbfe0270a9e3.woff2')format("woff");}.ff6_c00015{font-family:ff6_c00015;line-height:1.480469;font-style:normal;font-weight: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_c00015;src:url('chunks/assets/font_76b8ad2bfe5d7d77a5397789.woff2')format("woff");}.ff7_c00015{font-family:ff7_c00015;line-height:1.568848;font-style:normal;font-weight: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_c00015;src:url('chunks/assets/font_b4a5a46d28c827e82b959b6e.woff2')format("woff");}.ff8_c00015{font-family:ff8_c00015;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00015;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff9_c00015{font-family:ff9_c00015;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00015{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00015{vertical-align:0.000000px;}
.lsd_c00015{letter-spacing:-6.000000px;}
.lsb_c00015{letter-spacing:0.000000px;}
.ls8_c00015{letter-spacing:0.600000px;}
.ls6_c00015{letter-spacing:1.200000px;}
.ls3_c00015{letter-spacing:1.755000px;}
.ls1_c00015{letter-spacing:2.985000px;}
.ls2_c00015{letter-spacing:3.600000px;}
.ls9_c00015{letter-spacing:7.224000px;}
.lsa_c00015{letter-spacing:9.309000px;}
.ls5_c00015{letter-spacing:10.992000px;}
.ls7_c00015{letter-spacing:13.824000px;}
.ls4_c00015{letter-spacing:16.086000px;}
.lsc_c00015{letter-spacing:30.000000px;}
.ls0_c00015{letter-spacing:37.509000px;}
.sc__c00015{text-shadow:none;}
.sc0_c00015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00015{-webkit-text-stroke:0px transparent;}
.sc0_c00015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00015{word-spacing:-43.500000px;}
.ws2_c00015{word-spacing:-13.500000px;}
.ws6_c00015{word-spacing:-12.291000px;}
.ws3_c00015{word-spacing:-8.676000px;}
.ws4_c00015{word-spacing:-7.500000px;}
.ws5_c00015{word-spacing:-2.700000px;}
.ws0_c00015{word-spacing:-1.836000px;}
.ws8_c00015{word-spacing:0.000000px;}
.ws7_c00015{word-spacing:2.016000px;}
._8_c00015{margin-left:-30.930000px;}
._10_c00015{margin-left:-18.174000px;}
._f_c00015{margin-left:-14.934000px;}
._11_c00015{margin-left:-12.636000px;}
._c_c00015{margin-left:-8.430000px;}
._12_c00015{margin-left:-6.318000px;}
._1b_c00015{margin-left:-4.332000px;}
._e_c00015{margin-left:-3.060000px;}
._4_c00015{margin-left:-1.620000px;}
._14_c00015{width:1.266000px;}
._0_c00015{width:2.430000px;}
._1_c00015{width:3.780000px;}
._2_c00015{width:5.400000px;}
._a_c00015{width:6.870000px;}
._7_c00015{width:8.424000px;}
._3_c00015{width:9.558000px;}
._b_c00015{width:11.328000px;}
._1f_c00015{width:12.492000px;}
._d_c00015{width:14.400000px;}
._5_c00015{width:16.062000px;}
._13_c00015{width:17.670000px;}
._1e_c00015{width:18.990000px;}
._1a_c00015{width:20.550000px;}
._21_c00015{width:22.626000px;}
._9_c00015{width:24.300000px;}
._1d_c00015{width:25.614000px;}
._15_c00015{width:26.784000px;}
._6_c00015{width:28.800000px;}
._16_c00015{width:38.148000px;}
._20_c00015{width:62.172000px;}
._17_c00015{width:64.287000px;}
._1c_c00015{width:180.504000px;}
._19_c00015{width:184.524000px;}
._18_c00015{width:212.715000px;}
.fc2_c00015{color:transparent;}
.fc1_c00015{color:rgb(128,128,128);}
.fc0_c00015{color:rgb(0,0,0);}
.fs4_c00015{font-size:36.000000px;}
.fs6_c00015{font-size:42.000000px;}
.fs5_c00015{font-size:45.000000px;}
.fs8_c00015{font-size:48.000000px;}
.fs1_c00015{font-size:51.000000px;}
.fs0_c00015{font-size:54.000000px;}
.fs7_c00015{font-size:57.000000px;}
.fs2_c00015{font-size:72.000000px;}
.fs3_c00015{font-size:78.000000px;}
.y0_c00015{bottom:0.000000px;}
.y27_c00015{bottom:3.105000px;}
.y26_c00015{bottom:7.228369px;}
.y25_c00015{bottom:45.120000px;}
.y24_c00015{bottom:63.120000px;}
.y23_c00015{bottom:81.570000px;}
.y22_c00015{bottom:100.170000px;}
.y21_c00015{bottom:117.720000px;}
.y20_c00015{bottom:135.720000px;}
.y1f_c00015{bottom:153.570000px;}
.y1e_c00015{bottom:172.170000px;}
.y1d_c00015{bottom:191.070000px;}
.y1c_c00015{bottom:208.620000px;}
.y1b_c00015{bottom:226.020000px;}
.y1a_c00015{bottom:244.620000px;}
.y19_c00015{bottom:262.470000px;}
.y18_c00015{bottom:279.720000px;}
.y17_c00015{bottom:298.020000px;}
.y16_c00015{bottom:315.870000px;}
.y15_c00015{bottom:334.020000px;}
.y14_c00015{bottom:351.720000px;}
.y13_c00015{bottom:369.570000px;}
.y12_c00015{bottom:388.020000px;}
.y11_c00015{bottom:405.270000px;}
.y10_c00015{bottom:423.570000px;}
.yf_c00015{bottom:441.120000px;}
.ye_c00015{bottom:459.570000px;}
.yd_c00015{bottom:477.120000px;}
.yc_c00015{bottom:494.670000px;}
.yb_c00015{bottom:512.370000px;}
.ya_c00015{bottom:530.220000px;}
.y9_c00015{bottom:547.770000px;}
.y8_c00015{bottom:565.620000px;}
.y7_c00015{bottom:583.170000px;}
.y6_c00015{bottom:600.720000px;}
.y5_c00015{bottom:618.870000px;}
.y4_c00015{bottom:636.420000px;}
.y3_c00015{bottom:655.320000px;}
.y2_c00015{bottom:672.870000px;}
.y1_c00015{bottom:690.120000px;}
.h8_c00015{height:13.200073px;}
.h9_c00015{height:43.804688px;}
.h5_c00015{height:52.998047px;}
.h6_c00015{height:53.176758px;}
.h7_c00015{height:55.942383px;}
.h4_c00015{height:59.690918px;}
.h2_c00015{height:64.571777px;}
.h3_c00015{height:78.609375px;}
.h1_c00015{height:770.250000px;}
.h0_c00015{height:770.550000px;}
.w2_c00015{width:104.875500px;}
.w0_c00015{width:515.175000px;}
.w1_c00015{width:515.250000px;}
.x0_c00015{left:0.000000px;}
.x1_c00015{left:124.500000px;}
.x8_c00015{left:125.550000px;}
.x2_c00015{left:126.900000px;}
.x3_c00015{left:128.250000px;}
.x5_c00015{left:129.900000px;}
.x4_c00015{left:130.950000px;}
.x6_c00015{left:132.000000px;}
.x7_c00015{left:133.950000px;}
.x9_c00015{left:135.450000px;}
.xa_c00015{left:209.401749px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.lsd_c00015{letter-spacing:-5.333333pt;}
.lsb_c00015{letter-spacing:0.000000pt;}
.ls8_c00015{letter-spacing:0.533333pt;}
.ls6_c00015{letter-spacing:1.066667pt;}
.ls3_c00015{letter-spacing:1.560000pt;}
.ls1_c00015{letter-spacing:2.653333pt;}
.ls2_c00015{letter-spacing:3.200000pt;}
.ls9_c00015{letter-spacing:6.421333pt;}
.lsa_c00015{letter-spacing:8.274667pt;}
.ls5_c00015{letter-spacing:9.770667pt;}
.ls7_c00015{letter-spacing:12.288000pt;}
.ls4_c00015{letter-spacing:14.298667pt;}
.lsc_c00015{letter-spacing:26.666667pt;}
.ls0_c00015{letter-spacing:33.341333pt;}
.ws1_c00015{word-spacing:-38.666667pt;}
.ws2_c00015{word-spacing:-12.000000pt;}
.ws6_c00015{word-spacing:-10.925333pt;}
.ws3_c00015{word-spacing:-7.712000pt;}
.ws4_c00015{word-spacing:-6.666667pt;}
.ws5_c00015{word-spacing:-2.400000pt;}
.ws0_c00015{word-spacing:-1.632000pt;}
.ws8_c00015{word-spacing:0.000000pt;}
.ws7_c00015{word-spacing:1.792000pt;}
._8_c00015{margin-left:-27.493333pt;}
._10_c00015{margin-left:-16.154667pt;}
._f_c00015{margin-left:-13.274667pt;}
._11_c00015{margin-left:-11.232000pt;}
._c_c00015{margin-left:-7.493333pt;}
._12_c00015{margin-left:-5.616000pt;}
._1b_c00015{margin-left:-3.850667pt;}
._e_c00015{margin-left:-2.720000pt;}
._4_c00015{margin-left:-1.440000pt;}
._14_c00015{width:1.125333pt;}
._0_c00015{width:2.160000pt;}
._1_c00015{width:3.360000pt;}
._2_c00015{width:4.800000pt;}
._a_c00015{width:6.106667pt;}
._7_c00015{width:7.488000pt;}
._3_c00015{width:8.496000pt;}
._b_c00015{width:10.069333pt;}
._1f_c00015{width:11.104000pt;}
._d_c00015{width:12.800000pt;}
._5_c00015{width:14.277333pt;}
._13_c00015{width:15.706667pt;}
._1e_c00015{width:16.880000pt;}
._1a_c00015{width:18.266667pt;}
._21_c00015{width:20.112000pt;}
._9_c00015{width:21.600000pt;}
._1d_c00015{width:22.768000pt;}
._15_c00015{width:23.808000pt;}
._6_c00015{width:25.600000pt;}
._16_c00015{width:33.909333pt;}
._20_c00015{width:55.264000pt;}
._17_c00015{width:57.144000pt;}
._1c_c00015{width:160.448000pt;}
._19_c00015{width:164.021333pt;}
._18_c00015{width:189.080000pt;}
.fs4_c00015{font-size:32.000000pt;}
.fs6_c00015{font-size:37.333333pt;}
.fs5_c00015{font-size:40.000000pt;}
.fs8_c00015{font-size:42.666667pt;}
.fs1_c00015{font-size:45.333333pt;}
.fs0_c00015{font-size:48.000000pt;}
.fs7_c00015{font-size:50.666667pt;}
.fs2_c00015{font-size:64.000000pt;}
.fs3_c00015{font-size:69.333333pt;}
.y0_c00015{bottom:0.000000pt;}
.y27_c00015{bottom:2.760000pt;}
.y26_c00015{bottom:6.425217pt;}
.y25_c00015{bottom:40.106667pt;}
.y24_c00015{bottom:56.106667pt;}
.y23_c00015{bottom:72.506667pt;}
.y22_c00015{bottom:89.040000pt;}
.y21_c00015{bottom:104.640000pt;}
.y20_c00015{bottom:120.640000pt;}
.y1f_c00015{bottom:136.506667pt;}
.y1e_c00015{bottom:153.040000pt;}
.y1d_c00015{bottom:169.840000pt;}
.y1c_c00015{bottom:185.440000pt;}
.y1b_c00015{bottom:200.906667pt;}
.y1a_c00015{bottom:217.440000pt;}
.y19_c00015{bottom:233.306667pt;}
.y18_c00015{bottom:248.640000pt;}
.y17_c00015{bottom:264.906667pt;}
.y16_c00015{bottom:280.773333pt;}
.y15_c00015{bottom:296.906667pt;}
.y14_c00015{bottom:312.640000pt;}
.y13_c00015{bottom:328.506667pt;}
.y12_c00015{bottom:344.906667pt;}
.y11_c00015{bottom:360.240000pt;}
.y10_c00015{bottom:376.506667pt;}
.yf_c00015{bottom:392.106667pt;}
.ye_c00015{bottom:408.506667pt;}
.yd_c00015{bottom:424.106667pt;}
.yc_c00015{bottom:439.706667pt;}
.yb_c00015{bottom:455.440000pt;}
.ya_c00015{bottom:471.306667pt;}
.y9_c00015{bottom:486.906667pt;}
.y8_c00015{bottom:502.773333pt;}
.y7_c00015{bottom:518.373333pt;}
.y6_c00015{bottom:533.973333pt;}
.y5_c00015{bottom:550.106667pt;}
.y4_c00015{bottom:565.706667pt;}
.y3_c00015{bottom:582.506667pt;}
.y2_c00015{bottom:598.106667pt;}
.y1_c00015{bottom:613.440000pt;}
.h8_c00015{height:11.733399pt;}
.h9_c00015{height:38.937500pt;}
.h5_c00015{height:47.109375pt;}
.h6_c00015{height:47.268229pt;}
.h7_c00015{height:49.726562pt;}
.h4_c00015{height:53.058594pt;}
.h2_c00015{height:57.397135pt;}
.h3_c00015{height:69.875000pt;}
.h1_c00015{height:684.666667pt;}
.h0_c00015{height:684.933333pt;}
.w2_c00015{width:93.222667pt;}
.w0_c00015{width:457.933333pt;}
.w1_c00015{width:458.000000pt;}
.x0_c00015{left:0.000000pt;}
.x1_c00015{left:110.666667pt;}
.x8_c00015{left:111.600000pt;}
.x2_c00015{left:112.800000pt;}
.x3_c00015{left:114.000000pt;}
.x5_c00015{left:115.466667pt;}
.x4_c00015{left:116.400000pt;}
.x6_c00015{left:117.333333pt;}
.x7_c00015{left:119.066667pt;}
.x9_c00015{left:120.400000pt;}
.xa_c00015{left:186.134888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0edc324db090d66683149a0c.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.568848;font-style:normal;font-weight:normal;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_b62d15035d58e9d62ceb2db8.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00016;src:url('chunks/assets/font_586d234132cab4388339b6b3.woff2')format("woff");}.ff3_c00016{font-family:ff3_c00016;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00016;src:url('chunks/assets/font_a01ff7c6a578e04fa503d10f.woff2')format("woff");}.ff4_c00016{font-family:ff4_c00016;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00016;src:url('chunks/assets/font_d1faf1d1a1ff4aec4ab42f91.woff2')format("woff");}.ff5_c00016{font-family:ff5_c00016;line-height:1.592000;font-style:normal;font-weight:normal;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_fb1639c49ff41d7ba5f83665.woff2')format("woff");}.ff6_c00016{font-family:ff6_c00016;line-height:1.575000;font-style:normal;font-weight: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_c00016;src:url('chunks/assets/font_534cf51bd241625cf2d10843.woff2')format("woff");}.ff7_c00016{font-family:ff7_c00016;line-height:1.480469;font-style:normal;font-weight: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_c00016;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff8_c00016{font-family:ff8_c00016;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00016{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00016{vertical-align:0.000000px;}
.ls2_c00016{letter-spacing:-6.000000px;}
.ls1_c00016{letter-spacing:0.000000px;}
.ls0_c00016{letter-spacing:4.200000px;}
.ls3_c00016{letter-spacing:9.000000px;}
.sc__c00016{text-shadow:none;}
.sc0_c00016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00016{-webkit-text-stroke:0px transparent;}
.sc0_c00016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00016{word-spacing:-36.660000px;}
.ws1_c00016{word-spacing:-27.000000px;}
.ws3_c00016{word-spacing:-19.818000px;}
.ws2_c00016{word-spacing:-11.706000px;}
.ws0_c00016{word-spacing:-7.500000px;}
.ws5_c00016{word-spacing:0.000000px;}
._1b_c00016{margin-left:-16.266000px;}
._1f_c00016{margin-left:-13.920000px;}
._f_c00016{margin-left:-10.797000px;}
._e_c00016{margin-left:-8.694000px;}
._d_c00016{margin-left:-6.912000px;}
._11_c00016{margin-left:-5.559000px;}
._18_c00016{margin-left:-3.876000px;}
._8_c00016{margin-left:-2.805000px;}
._5_c00016{margin-left:-1.173000px;}
._2_c00016{width:1.275000px;}
._4_c00016{width:2.499000px;}
._3_c00016{width:4.131000px;}
._1_c00016{width:5.661000px;}
._0_c00016{width:7.395000px;}
._b_c00016{width:8.466000px;}
._6_c00016{width:9.690000px;}
._a_c00016{width:11.016000px;}
._14_c00016{width:13.821000px;}
._9_c00016{width:15.300000px;}
._19_c00016{width:16.320000px;}
._1d_c00016{width:18.051000px;}
._15_c00016{width:19.227000px;}
._17_c00016{width:22.746000px;}
._c_c00016{width:24.885000px;}
._1e_c00016{width:26.673000px;}
._12_c00016{width:32.283000px;}
._1c_c00016{width:34.173000px;}
._13_c00016{width:36.006000px;}
._7_c00016{width:51.306000px;}
._1a_c00016{width:53.754000px;}
._10_c00016{width:82.212000px;}
._16_c00016{width:1057.332000px;}
.fc2_c00016{color:transparent;}
.fc1_c00016{color:rgb(128,128,128);}
.fc0_c00016{color:rgb(0,0,0);}
.fs3_c00016{font-size:48.000000px;}
.fs0_c00016{font-size:51.000000px;}
.fs1_c00016{font-size:54.000000px;}
.fs2_c00016{font-size:60.000000px;}
.y0_c00016{bottom:0.000000px;}
.y29_c00016{bottom:3.105000px;}
.y28_c00016{bottom:7.228369px;}
.y27_c00016{bottom:18.270000px;}
.y26_c00016{bottom:35.670000px;}
.y25_c00016{bottom:55.620000px;}
.y24_c00016{bottom:73.470000px;}
.y23_c00016{bottom:91.020000px;}
.y22_c00016{bottom:109.320000px;}
.y21_c00016{bottom:126.270000px;}
.y20_c00016{bottom:145.470000px;}
.y1f_c00016{bottom:163.920000px;}
.y1e_c00016{bottom:180.870000px;}
.y1d_c00016{bottom:199.170000px;}
.y1c_c00016{bottom:217.620000px;}
.y1b_c00016{bottom:234.870000px;}
.y1a_c00016{bottom:253.020000px;}
.y19_c00016{bottom:270.270000px;}
.y18_c00016{bottom:288.570000px;}
.y17_c00016{bottom:304.470000px;}
.y16_c00016{bottom:322.020000px;}
.y15_c00016{bottom:340.170000px;}
.y14_c00016{bottom:357.420000px;}
.y13_c00016{bottom:375.720000px;}
.y12_c00016{bottom:393.420000px;}
.y11_c00016{bottom:411.120000px;}
.y10_c00016{bottom:428.970000px;}
.yf_c00016{bottom:447.420000px;}
.ye_c00016{bottom:464.970000px;}
.yd_c00016{bottom:482.970000px;}
.yc_c00016{bottom:500.820000px;}
.yb_c00016{bottom:518.370000px;}
.ya_c00016{bottom:537.270000px;}
.y9_c00016{bottom:554.520000px;}
.y8_c00016{bottom:572.370000px;}
.y7_c00016{bottom:590.220000px;}
.y6_c00016{bottom:607.770000px;}
.y5_c00016{bottom:626.070000px;}
.y4_c00016{bottom:644.670000px;}
.y3_c00016{bottom:662.820000px;}
.y2_c00016{bottom:680.370000px;}
.y1_c00016{bottom:698.220000px;}
.h4_c00016{height:13.200073px;}
.h5_c00016{height:43.804688px;}
.h2_c00016{height:64.571777px;}
.h3_c00016{height:70.224609px;}
.h1_c00016{height:765.000000px;}
.h0_c00016{height:765.150000px;}
.w2_c00016{width:104.875500px;}
.w0_c00016{width:528.675000px;}
.w1_c00016{width:528.750000px;}
.x0_c00016{left:0.000000px;}
.x3_c00016{left:16.200000px;}
.x2_c00016{left:17.250000px;}
.x5_c00016{left:18.450000px;}
.x6_c00016{left:19.500000px;}
.x1_c00016{left:21.150000px;}
.x4_c00016{left:42.750000px;}
.x8_c00016{left:216.151749px;}
.x7_c00016{left:369.450000px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls2_c00016{letter-spacing:-5.333333pt;}
.ls1_c00016{letter-spacing:0.000000pt;}
.ls0_c00016{letter-spacing:3.733333pt;}
.ls3_c00016{letter-spacing:8.000000pt;}
.ws4_c00016{word-spacing:-32.586667pt;}
.ws1_c00016{word-spacing:-24.000000pt;}
.ws3_c00016{word-spacing:-17.616000pt;}
.ws2_c00016{word-spacing:-10.405333pt;}
.ws0_c00016{word-spacing:-6.666667pt;}
.ws5_c00016{word-spacing:0.000000pt;}
._1b_c00016{margin-left:-14.458667pt;}
._1f_c00016{margin-left:-12.373333pt;}
._f_c00016{margin-left:-9.597333pt;}
._e_c00016{margin-left:-7.728000pt;}
._d_c00016{margin-left:-6.144000pt;}
._11_c00016{margin-left:-4.941333pt;}
._18_c00016{margin-left:-3.445333pt;}
._8_c00016{margin-left:-2.493333pt;}
._5_c00016{margin-left:-1.042667pt;}
._2_c00016{width:1.133333pt;}
._4_c00016{width:2.221333pt;}
._3_c00016{width:3.672000pt;}
._1_c00016{width:5.032000pt;}
._0_c00016{width:6.573333pt;}
._b_c00016{width:7.525333pt;}
._6_c00016{width:8.613333pt;}
._a_c00016{width:9.792000pt;}
._14_c00016{width:12.285333pt;}
._9_c00016{width:13.600000pt;}
._19_c00016{width:14.506667pt;}
._1d_c00016{width:16.045333pt;}
._15_c00016{width:17.090667pt;}
._17_c00016{width:20.218667pt;}
._c_c00016{width:22.120000pt;}
._1e_c00016{width:23.709333pt;}
._12_c00016{width:28.696000pt;}
._1c_c00016{width:30.376000pt;}
._13_c00016{width:32.005333pt;}
._7_c00016{width:45.605333pt;}
._1a_c00016{width:47.781333pt;}
._10_c00016{width:73.077333pt;}
._16_c00016{width:939.850667pt;}
.fs3_c00016{font-size:42.666667pt;}
.fs0_c00016{font-size:45.333333pt;}
.fs1_c00016{font-size:48.000000pt;}
.fs2_c00016{font-size:53.333333pt;}
.y0_c00016{bottom:0.000000pt;}
.y29_c00016{bottom:2.760000pt;}
.y28_c00016{bottom:6.425217pt;}
.y27_c00016{bottom:16.240000pt;}
.y26_c00016{bottom:31.706667pt;}
.y25_c00016{bottom:49.440000pt;}
.y24_c00016{bottom:65.306667pt;}
.y23_c00016{bottom:80.906667pt;}
.y22_c00016{bottom:97.173333pt;}
.y21_c00016{bottom:112.240000pt;}
.y20_c00016{bottom:129.306667pt;}
.y1f_c00016{bottom:145.706667pt;}
.y1e_c00016{bottom:160.773333pt;}
.y1d_c00016{bottom:177.040000pt;}
.y1c_c00016{bottom:193.440000pt;}
.y1b_c00016{bottom:208.773333pt;}
.y1a_c00016{bottom:224.906667pt;}
.y19_c00016{bottom:240.240000pt;}
.y18_c00016{bottom:256.506667pt;}
.y17_c00016{bottom:270.640000pt;}
.y16_c00016{bottom:286.240000pt;}
.y15_c00016{bottom:302.373333pt;}
.y14_c00016{bottom:317.706667pt;}
.y13_c00016{bottom:333.973333pt;}
.y12_c00016{bottom:349.706667pt;}
.y11_c00016{bottom:365.440000pt;}
.y10_c00016{bottom:381.306667pt;}
.yf_c00016{bottom:397.706667pt;}
.ye_c00016{bottom:413.306667pt;}
.yd_c00016{bottom:429.306667pt;}
.yc_c00016{bottom:445.173333pt;}
.yb_c00016{bottom:460.773333pt;}
.ya_c00016{bottom:477.573333pt;}
.y9_c00016{bottom:492.906667pt;}
.y8_c00016{bottom:508.773333pt;}
.y7_c00016{bottom:524.640000pt;}
.y6_c00016{bottom:540.240000pt;}
.y5_c00016{bottom:556.506667pt;}
.y4_c00016{bottom:573.040000pt;}
.y3_c00016{bottom:589.173333pt;}
.y2_c00016{bottom:604.773333pt;}
.y1_c00016{bottom:620.640000pt;}
.h4_c00016{height:11.733399pt;}
.h5_c00016{height:38.937500pt;}
.h2_c00016{height:57.397135pt;}
.h3_c00016{height:62.421875pt;}
.h1_c00016{height:680.000000pt;}
.h0_c00016{height:680.133333pt;}
.w2_c00016{width:93.222667pt;}
.w0_c00016{width:469.933333pt;}
.w1_c00016{width:470.000000pt;}
.x0_c00016{left:0.000000pt;}
.x3_c00016{left:14.400000pt;}
.x2_c00016{left:15.333333pt;}
.x5_c00016{left:16.400000pt;}
.x6_c00016{left:17.333333pt;}
.x1_c00016{left:18.800000pt;}
.x4_c00016{left:38.000000pt;}
.x8_c00016{left:192.134888pt;}
.x7_c00016{left:328.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_581592913c883898596e8e34.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00017;src:url('chunks/assets/font_c171833579de15775b88e5de.woff2')format("woff");}.ff2_c00017{font-family:ff2_c00017;line-height:1.568848;font-style:normal;font-weight:normal;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_caa8306166e0b6038eb06e1f.woff2')format("woff");}.ff3_c00017{font-family:ff3_c00017;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00017;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00017{font-family:ff4_c00017;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00017{vertical-align:0.000000px;}
.ls1_c00017{letter-spacing:-6.000000px;}
.ls0_c00017{letter-spacing:0.000000px;}
.sc__c00017{text-shadow:none;}
.sc0_c00017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00017{-webkit-text-stroke:0px transparent;}
.sc0_c00017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00017{word-spacing:-27.000000px;}
.ws3_c00017{word-spacing:-15.750000px;}
.ws2_c00017{word-spacing:-12.291000px;}
.ws0_c00017{word-spacing:-7.500000px;}
.ws4_c00017{word-spacing:0.000000px;}
._19_c00017{margin-left:-43.908000px;}
._15_c00017{margin-left:-22.548000px;}
._14_c00017{margin-left:-18.126000px;}
._18_c00017{margin-left:-11.499000px;}
._d_c00017{margin-left:-8.997000px;}
._9_c00017{margin-left:-6.915000px;}
._8_c00017{margin-left:-5.142000px;}
._10_c00017{margin-left:-4.038000px;}
._12_c00017{margin-left:-2.562000px;}
._3_c00017{margin-left:-1.449000px;}
._2_c00017{width:1.512000px;}
._0_c00017{width:3.339000px;}
._1_c00017{width:4.410000px;}
._4_c00017{width:5.859000px;}
._7_c00017{width:7.395000px;}
._5_c00017{width:8.463000px;}
._b_c00017{width:9.477000px;}
._f_c00017{width:11.166000px;}
._6_c00017{width:14.226000px;}
._c_c00017{width:15.771000px;}
._a_c00017{width:19.230000px;}
._17_c00017{width:24.492000px;}
._13_c00017{width:30.525000px;}
._e_c00017{width:32.079000px;}
._11_c00017{width:49.320000px;}
._16_c00017{width:54.522000px;}
._1a_c00017{width:106.515000px;}
._1b_c00017{width:198.033000px;}
.fc2_c00017{color:transparent;}
.fc1_c00017{color:rgb(128,128,128);}
.fc0_c00017{color:rgb(0,0,0);}
.fs4_c00017{font-size:48.000000px;}
.fs1_c00017{font-size:51.000000px;}
.fs2_c00017{font-size:54.000000px;}
.fs3_c00017{font-size:57.000000px;}
.fs0_c00017{font-size:63.000000px;}
.y0_c00017{bottom:0.000000px;}
.y21_c00017{bottom:3.105000px;}
.y20_c00017{bottom:7.228357px;}
.y1f_c00017{bottom:139.380000px;}
.y1e_c00017{bottom:155.880000px;}
.y1d_c00017{bottom:173.880000px;}
.y1c_c00017{bottom:194.130000px;}
.y1b_c00017{bottom:213.330000px;}
.y1a_c00017{bottom:231.180000px;}
.y19_c00017{bottom:247.680000px;}
.y18_c00017{bottom:264.330000px;}
.y17_c00017{bottom:283.230000px;}
.y16_c00017{bottom:301.080000px;}
.y15_c00017{bottom:319.230000px;}
.y14_c00017{bottom:337.530000px;}
.y13_c00017{bottom:355.380000px;}
.y12_c00017{bottom:373.230000px;}
.y11_c00017{bottom:390.930000px;}
.y10_c00017{bottom:409.080000px;}
.yf_c00017{bottom:427.680000px;}
.ye_c00017{bottom:445.530000px;}
.yd_c00017{bottom:463.080000px;}
.yc_c00017{bottom:481.380000px;}
.yb_c00017{bottom:498.480000px;}
.ya_c00017{bottom:516.330000px;}
.y9_c00017{bottom:534.330000px;}
.y8_c00017{bottom:552.180000px;}
.y7_c00017{bottom:570.030000px;}
.y6_c00017{bottom:588.030000px;}
.y5_c00017{bottom:606.180000px;}
.y4_c00017{bottom:623.430000px;}
.y3_c00017{bottom:641.280000px;}
.y2_c00017{bottom:659.130000px;}
.y1_c00017{bottom:677.130000px;}
.h5_c00017{height:13.200074px;}
.h6_c00017{height:43.804688px;}
.h4_c00017{height:55.942383px;}
.h2_c00017{height:61.831055px;}
.h3_c00017{height:64.571777px;}
.h1_c00017{height:756.000000px;}
.h0_c00017{height:756.300000px;}
.w2_c00017{width:104.875500px;}
.w0_c00017{width:510.600000px;}
.w1_c00017{width:510.750000px;}
.x0_c00017{left:0.000000px;}
.xd_c00017{left:46.500000px;}
.xc_c00017{left:48.300000px;}
.xb_c00017{left:49.500000px;}
.xa_c00017{left:50.850000px;}
.x9_c00017{left:130.650000px;}
.x7_c00017{left:132.000000px;}
.x6_c00017{left:133.350000px;}
.x5_c00017{left:134.700000px;}
.x4_c00017{left:136.050000px;}
.x3_c00017{left:138.150000px;}
.x2_c00017{left:139.500000px;}
.x1_c00017{left:141.450000px;}
.x8_c00017{left:161.550000px;}
.xf_c00017{left:207.114258px;}
.xe_c00017{left:277.650000px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.ls1_c00017{letter-spacing:-5.333333pt;}
.ls0_c00017{letter-spacing:0.000000pt;}
.ws1_c00017{word-spacing:-24.000000pt;}
.ws3_c00017{word-spacing:-14.000000pt;}
.ws2_c00017{word-spacing:-10.925333pt;}
.ws0_c00017{word-spacing:-6.666667pt;}
.ws4_c00017{word-spacing:0.000000pt;}
._19_c00017{margin-left:-39.029333pt;}
._15_c00017{margin-left:-20.042667pt;}
._14_c00017{margin-left:-16.112000pt;}
._18_c00017{margin-left:-10.221333pt;}
._d_c00017{margin-left:-7.997333pt;}
._9_c00017{margin-left:-6.146667pt;}
._8_c00017{margin-left:-4.570667pt;}
._10_c00017{margin-left:-3.589333pt;}
._12_c00017{margin-left:-2.277333pt;}
._3_c00017{margin-left:-1.288000pt;}
._2_c00017{width:1.344000pt;}
._0_c00017{width:2.968000pt;}
._1_c00017{width:3.920000pt;}
._4_c00017{width:5.208000pt;}
._7_c00017{width:6.573333pt;}
._5_c00017{width:7.522667pt;}
._b_c00017{width:8.424000pt;}
._f_c00017{width:9.925333pt;}
._6_c00017{width:12.645333pt;}
._c_c00017{width:14.018667pt;}
._a_c00017{width:17.093333pt;}
._17_c00017{width:21.770667pt;}
._13_c00017{width:27.133333pt;}
._e_c00017{width:28.514667pt;}
._11_c00017{width:43.840000pt;}
._16_c00017{width:48.464000pt;}
._1a_c00017{width:94.680000pt;}
._1b_c00017{width:176.029333pt;}
.fs4_c00017{font-size:42.666667pt;}
.fs1_c00017{font-size:45.333333pt;}
.fs2_c00017{font-size:48.000000pt;}
.fs3_c00017{font-size:50.666667pt;}
.fs0_c00017{font-size:56.000000pt;}
.y0_c00017{bottom:0.000000pt;}
.y21_c00017{bottom:2.760000pt;}
.y20_c00017{bottom:6.425206pt;}
.y1f_c00017{bottom:123.893333pt;}
.y1e_c00017{bottom:138.560000pt;}
.y1d_c00017{bottom:154.560000pt;}
.y1c_c00017{bottom:172.560000pt;}
.y1b_c00017{bottom:189.626667pt;}
.y1a_c00017{bottom:205.493333pt;}
.y19_c00017{bottom:220.160000pt;}
.y18_c00017{bottom:234.960000pt;}
.y17_c00017{bottom:251.760000pt;}
.y16_c00017{bottom:267.626667pt;}
.y15_c00017{bottom:283.760000pt;}
.y14_c00017{bottom:300.026667pt;}
.y13_c00017{bottom:315.893333pt;}
.y12_c00017{bottom:331.760000pt;}
.y11_c00017{bottom:347.493333pt;}
.y10_c00017{bottom:363.626667pt;}
.yf_c00017{bottom:380.160000pt;}
.ye_c00017{bottom:396.026667pt;}
.yd_c00017{bottom:411.626667pt;}
.yc_c00017{bottom:427.893333pt;}
.yb_c00017{bottom:443.093333pt;}
.ya_c00017{bottom:458.960000pt;}
.y9_c00017{bottom:474.960000pt;}
.y8_c00017{bottom:490.826667pt;}
.y7_c00017{bottom:506.693333pt;}
.y6_c00017{bottom:522.693333pt;}
.y5_c00017{bottom:538.826667pt;}
.y4_c00017{bottom:554.160000pt;}
.y3_c00017{bottom:570.026667pt;}
.y2_c00017{bottom:585.893333pt;}
.y1_c00017{bottom:601.893333pt;}
.h5_c00017{height:11.733399pt;}
.h6_c00017{height:38.937500pt;}
.h4_c00017{height:49.726562pt;}
.h2_c00017{height:54.960938pt;}
.h3_c00017{height:57.397135pt;}
.h1_c00017{height:672.000000pt;}
.h0_c00017{height:672.266667pt;}
.w2_c00017{width:93.222667pt;}
.w0_c00017{width:453.866667pt;}
.w1_c00017{width:454.000000pt;}
.x0_c00017{left:0.000000pt;}
.xd_c00017{left:41.333333pt;}
.xc_c00017{left:42.933333pt;}
.xb_c00017{left:44.000000pt;}
.xa_c00017{left:45.200000pt;}
.x9_c00017{left:116.133333pt;}
.x7_c00017{left:117.333333pt;}
.x6_c00017{left:118.533333pt;}
.x5_c00017{left:119.733333pt;}
.x4_c00017{left:120.933333pt;}
.x3_c00017{left:122.800000pt;}
.x2_c00017{left:124.000000pt;}
.x1_c00017{left:125.733333pt;}
.x8_c00017{left:143.600000pt;}
.xf_c00017{left:184.101563pt;}
.xe_c00017{left:246.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_69239b37128cdbe076912f3a.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.568848;font-style:normal;font-weight:normal;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_eb3b153fcc5e12756c8cd469.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00018;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00018;src:url('chunks/assets/font_99ac81b2a8b05c2ae040444a.woff2')format("woff");}.ff4_c00018{font-family:ff4_c00018;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00018;src:url('chunks/assets/font_ff0ceebe12d10f78260c2aef.woff2')format("woff");}.ff5_c00018{font-family:ff5_c00018;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00018;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00018{font-family:ff6_c00018;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00018{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00018{vertical-align:0.000000px;}
.ls1_c00018{letter-spacing:0.000000px;}
.ls0_c00018{letter-spacing:3.000000px;}
.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:-16.629000px;}
.ws1_c00018{word-spacing:0.000000px;}
._19_c00018{margin-left:-19.656000px;}
._1c_c00018{margin-left:-18.576000px;}
._15_c00018{margin-left:-16.602000px;}
._c_c00018{margin-left:-15.048000px;}
._f_c00018{margin-left:-12.600000px;}
._13_c00018{margin-left:-11.448000px;}
._e_c00018{margin-left:-9.648000px;}
._d_c00018{margin-left:-8.280000px;}
._17_c00018{margin-left:-7.086000px;}
._7_c00018{margin-left:-5.904000px;}
._6_c00018{margin-left:-4.752000px;}
._8_c00018{margin-left:-3.168000px;}
._3_c00018{margin-left:-2.088000px;}
._10_c00018{margin-left:-1.080000px;}
._4_c00018{width:1.152000px;}
._2_c00018{width:2.520000px;}
._1_c00018{width:3.960000px;}
._18_c00018{width:4.968000px;}
._0_c00018{width:6.048000px;}
._9_c00018{width:7.752000px;}
._b_c00018{width:9.648000px;}
._14_c00018{width:11.304000px;}
._1a_c00018{width:12.792000px;}
._11_c00018{width:14.328000px;}
._5_c00018{width:15.984000px;}
._12_c00018{width:16.992000px;}
._1d_c00018{width:20.664000px;}
._a_c00018{width:28.296000px;}
._1e_c00018{width:35.208000px;}
._1b_c00018{width:52.560000px;}
._16_c00018{width:77.280000px;}
._1f_c00018{width:293.112000px;}
.fc2_c00018{color:transparent;}
.fc1_c00018{color:rgb(128,128,128);}
.fc0_c00018{color:rgb(0,0,0);}
.fs4_c00018{font-size:48.000000px;}
.fs3_c00018{font-size:54.000000px;}
.fs1_c00018{font-size:69.000000px;}
.fs0_c00018{font-size:72.000000px;}
.fs2_c00018{font-size:78.000000px;}
.y0_c00018{bottom:0.000000px;}
.y1d_c00018{bottom:3.105000px;}
.y1c_c00018{bottom:7.228357px;}
.y1b_c00018{bottom:15.630000px;}
.y1a_c00018{bottom:40.230000px;}
.y19_c00018{bottom:66.780000px;}
.y18_c00018{bottom:92.130000px;}
.y17_c00018{bottom:116.730000px;}
.y16_c00018{bottom:142.080000px;}
.y15_c00018{bottom:167.430000px;}
.y14_c00018{bottom:192.030000px;}
.y13_c00018{bottom:217.080000px;}
.y12_c00018{bottom:241.980000px;}
.y11_c00018{bottom:291.630000px;}
.y10_c00018{bottom:315.930000px;}
.yf_c00018{bottom:341.280000px;}
.ye_c00018{bottom:366.480000px;}
.yd_c00018{bottom:391.530000px;}
.yc_c00018{bottom:416.430000px;}
.yb_c00018{bottom:441.480000px;}
.ya_c00018{bottom:467.130000px;}
.y9_c00018{bottom:491.430000px;}
.y8_c00018{bottom:516.030000px;}
.y7_c00018{bottom:540.780000px;}
.y6_c00018{bottom:565.980000px;}
.y5_c00018{bottom:591.030000px;}
.y4_c00018{bottom:615.930000px;}
.y3_c00018{bottom:641.580000px;}
.y2_c00018{bottom:665.280000px;}
.y1_c00018{bottom:690.180000px;}
.h8_c00018{height:13.200074px;}
.h9_c00018{height:43.804688px;}
.h7_c00018{height:52.971680px;}
.h5_c00018{height:70.628906px;}
.h4_c00018{height:70.664062px;}
.h6_c00018{height:78.609375px;}
.h3_c00018{height:87.361816px;}
.h2_c00018{height:91.160156px;}
.h0_c00018{height:760.350000px;}
.h1_c00018{height:760.500000px;}
.w2_c00018{width:104.875500px;}
.w0_c00018{width:509.775000px;}
.w1_c00018{width:510.000000px;}
.x0_c00018{left:0.000000px;}
.xc_c00018{left:15.750000px;}
.xb_c00018{left:17.550000px;}
.x6_c00018{left:18.900000px;}
.xa_c00018{left:19.950000px;}
.x8_c00018{left:21.600000px;}
.x1_c00018{left:22.950000px;}
.xd_c00018{left:25.350000px;}
.x10_c00018{left:44.550000px;}
.x9_c00018{left:45.900000px;}
.x7_c00018{left:46.950000px;}
.x5_c00018{left:60.450000px;}
.xf_c00018{left:63.450000px;}
.x4_c00018{left:68.850000px;}
.x2_c00018{left:112.350000px;}
.xe_c00018{left:130.950000px;}
.x11_c00018{left:163.350000px;}
.x3_c00018{left:178.200000px;}
.x12_c00018{left:206.701767px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls1_c00018{letter-spacing:0.000000pt;}
.ls0_c00018{letter-spacing:2.666667pt;}
.ws0_c00018{word-spacing:-14.781333pt;}
.ws1_c00018{word-spacing:0.000000pt;}
._19_c00018{margin-left:-17.472000pt;}
._1c_c00018{margin-left:-16.512000pt;}
._15_c00018{margin-left:-14.757333pt;}
._c_c00018{margin-left:-13.376000pt;}
._f_c00018{margin-left:-11.200000pt;}
._13_c00018{margin-left:-10.176000pt;}
._e_c00018{margin-left:-8.576000pt;}
._d_c00018{margin-left:-7.360000pt;}
._17_c00018{margin-left:-6.298667pt;}
._7_c00018{margin-left:-5.248000pt;}
._6_c00018{margin-left:-4.224000pt;}
._8_c00018{margin-left:-2.816000pt;}
._3_c00018{margin-left:-1.856000pt;}
._10_c00018{margin-left:-0.960000pt;}
._4_c00018{width:1.024000pt;}
._2_c00018{width:2.240000pt;}
._1_c00018{width:3.520000pt;}
._18_c00018{width:4.416000pt;}
._0_c00018{width:5.376000pt;}
._9_c00018{width:6.890667pt;}
._b_c00018{width:8.576000pt;}
._14_c00018{width:10.048000pt;}
._1a_c00018{width:11.370667pt;}
._11_c00018{width:12.736000pt;}
._5_c00018{width:14.208000pt;}
._12_c00018{width:15.104000pt;}
._1d_c00018{width:18.368000pt;}
._a_c00018{width:25.152000pt;}
._1e_c00018{width:31.296000pt;}
._1b_c00018{width:46.720000pt;}
._16_c00018{width:68.693333pt;}
._1f_c00018{width:260.544000pt;}
.fs4_c00018{font-size:42.666667pt;}
.fs3_c00018{font-size:48.000000pt;}
.fs1_c00018{font-size:61.333333pt;}
.fs0_c00018{font-size:64.000000pt;}
.fs2_c00018{font-size:69.333333pt;}
.y0_c00018{bottom:0.000000pt;}
.y1d_c00018{bottom:2.760000pt;}
.y1c_c00018{bottom:6.425206pt;}
.y1b_c00018{bottom:13.893333pt;}
.y1a_c00018{bottom:35.760000pt;}
.y19_c00018{bottom:59.360000pt;}
.y18_c00018{bottom:81.893333pt;}
.y17_c00018{bottom:103.760000pt;}
.y16_c00018{bottom:126.293333pt;}
.y15_c00018{bottom:148.826667pt;}
.y14_c00018{bottom:170.693333pt;}
.y13_c00018{bottom:192.960000pt;}
.y12_c00018{bottom:215.093333pt;}
.y11_c00018{bottom:259.226667pt;}
.y10_c00018{bottom:280.826667pt;}
.yf_c00018{bottom:303.360000pt;}
.ye_c00018{bottom:325.760000pt;}
.yd_c00018{bottom:348.026667pt;}
.yc_c00018{bottom:370.160000pt;}
.yb_c00018{bottom:392.426667pt;}
.ya_c00018{bottom:415.226667pt;}
.y9_c00018{bottom:436.826667pt;}
.y8_c00018{bottom:458.693333pt;}
.y7_c00018{bottom:480.693333pt;}
.y6_c00018{bottom:503.093333pt;}
.y5_c00018{bottom:525.360000pt;}
.y4_c00018{bottom:547.493333pt;}
.y3_c00018{bottom:570.293333pt;}
.y2_c00018{bottom:591.360000pt;}
.y1_c00018{bottom:613.493333pt;}
.h8_c00018{height:11.733399pt;}
.h9_c00018{height:38.937500pt;}
.h7_c00018{height:47.085938pt;}
.h5_c00018{height:62.781250pt;}
.h4_c00018{height:62.812500pt;}
.h6_c00018{height:69.875000pt;}
.h3_c00018{height:77.654948pt;}
.h2_c00018{height:81.031250pt;}
.h0_c00018{height:675.866667pt;}
.h1_c00018{height:676.000000pt;}
.w2_c00018{width:93.222667pt;}
.w0_c00018{width:453.133333pt;}
.w1_c00018{width:453.333333pt;}
.x0_c00018{left:0.000000pt;}
.xc_c00018{left:14.000000pt;}
.xb_c00018{left:15.600000pt;}
.x6_c00018{left:16.800000pt;}
.xa_c00018{left:17.733333pt;}
.x8_c00018{left:19.200000pt;}
.x1_c00018{left:20.400000pt;}
.xd_c00018{left:22.533333pt;}
.x10_c00018{left:39.600000pt;}
.x9_c00018{left:40.800000pt;}
.x7_c00018{left:41.733333pt;}
.x5_c00018{left:53.733333pt;}
.xf_c00018{left:56.400000pt;}
.x4_c00018{left:61.200000pt;}
.x2_c00018{left:99.866667pt;}
.xe_c00018{left:116.400000pt;}
.x11_c00018{left:145.200000pt;}
.x3_c00018{left:158.400000pt;}
.x12_c00018{left:183.734904pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8fea6f837023f617e4f8f925.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00019;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00019;src:url('chunks/assets/font_4983af2081b6af94b97e2d84.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:1.568848;font-style:normal;font-weight:normal;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_e171d0be49bda9852567663b.woff2')format("woff");}.ff4_c00019{font-family:ff4_c00019;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00019;src:url('chunks/assets/font_6885a517561a2338c7f5b492.woff2')format("woff");}.ff5_c00019{font-family:ff5_c00019;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00019;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00019{font-family:ff6_c00019;line-height:1.219238;font-style: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;}
.v1_c00019{vertical-align:128.400000px;}
.ls5_c00019{letter-spacing:-3.000000px;}
.ls3_c00019{letter-spacing:0.000000px;}
.ls4_c00019{letter-spacing:3.000000px;}
.ls0_c00019{letter-spacing:12.816000px;}
.ls2_c00019{letter-spacing:13.323000px;}
.ls1_c00019{letter-spacing:31.323000px;}
.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;}
}
.ws2_c00019{word-spacing:-27.000000px;}
.ws0_c00019{word-spacing:-18.000000px;}
.ws3_c00019{word-spacing:0.000000px;}
.ws1_c00019{word-spacing:6.426000px;}
._10_c00019{margin-left:-17.280000px;}
._f_c00019{margin-left:-14.544000px;}
._11_c00019{margin-left:-11.652000px;}
._d_c00019{margin-left:-10.296000px;}
._13_c00019{margin-left:-8.868000px;}
._a_c00019{margin-left:-7.128000px;}
._b_c00019{margin-left:-5.688000px;}
._3_c00019{margin-left:-3.888000px;}
._7_c00019{margin-left:-2.448000px;}
._8_c00019{margin-left:-1.008000px;}
._c_c00019{width:1.008000px;}
._6_c00019{width:2.016000px;}
._0_c00019{width:3.312000px;}
._4_c00019{width:4.608000px;}
._1_c00019{width:5.904000px;}
._5_c00019{width:7.056000px;}
._e_c00019{width:8.640000px;}
._12_c00019{width:10.068000px;}
._14_c00019{width:11.592000px;}
._16_c00019{width:12.672000px;}
._2_c00019{width:14.472000px;}
._19_c00019{width:15.828000px;}
._18_c00019{width:17.241000px;}
._15_c00019{width:20.448000px;}
._1a_c00019{width:30.756000px;}
._17_c00019{width:127.512000px;}
._9_c00019{width:165.672000px;}
.fc2_c00019{color:transparent;}
.fc1_c00019{color:rgb(128,128,128);}
.fc0_c00019{color:rgb(0,0,0);}
.fs5_c00019{font-size:48.000000px;}
.fs3_c00019{font-size:51.000000px;}
.fs4_c00019{font-size:54.000000px;}
.fs2_c00019{font-size:60.000000px;}
.fs0_c00019{font-size:72.000000px;}
.fs1_c00019{font-size:231.000000px;}
.y0_c00019{bottom:0.000000px;}
.y1c_c00019{bottom:3.105000px;}
.y1b_c00019{bottom:7.228369px;}
.y1a_c00019{bottom:15.570000px;}
.y19_c00019{bottom:40.770000px;}
.y18_c00019{bottom:66.720000px;}
.y17_c00019{bottom:91.770000px;}
.y15_c00019{bottom:110.670000px;}
.y16_c00019{bottom:117.120000px;}
.y14_c00019{bottom:167.970000px;}
.y13_c00019{bottom:192.720000px;}
.y12_c00019{bottom:217.920000px;}
.y11_c00019{bottom:242.670000px;}
.y10_c00019{bottom:268.320000px;}
.yf_c00019{bottom:292.620000px;}
.ye_c00019{bottom:317.820000px;}
.yd_c00019{bottom:343.170000px;}
.yc_c00019{bottom:368.520000px;}
.ya_c00019{bottom:385.620000px;}
.yb_c00019{bottom:392.820000px;}
.y9_c00019{bottom:467.820000px;}
.y8_c00019{bottom:518.070000px;}
.y7_c00019{bottom:542.970000px;}
.y6_c00019{bottom:567.720000px;}
.y5_c00019{bottom:590.670000px;}
.y4_c00019{bottom:617.520000px;}
.y3_c00019{bottom:641.820000px;}
.y2_c00019{bottom:666.870000px;}
.y1_c00019{bottom:691.920000px;}
.ha_c00019{height:13.200073px;}
.hb_c00019{height:43.804688px;}
.h9_c00019{height:52.971680px;}
.h8_c00019{height:64.571777px;}
.h7_c00019{height:70.224609px;}
.h3_c00019{height:70.628906px;}
.h2_c00019{height:70.664062px;}
.h6_c00019{height:75.966797px;}
.h4_c00019{height:91.160156px;}
.h5_c00019{height:226.601074px;}
.h1_c00019{height:778.500000px;}
.h0_c00019{height:778.650000px;}
.w2_c00019{width:104.875500px;}
.w1_c00019{width:472.500000px;}
.w0_c00019{width:472.800000px;}
.x0_c00019{left:0.000000px;}
.x5_c00019{left:87.450000px;}
.x3_c00019{left:92.850000px;}
.x1_c00019{left:94.050000px;}
.xa_c00019{left:97.200000px;}
.x4_c00019{left:114.150000px;}
.x2_c00019{left:116.850000px;}
.x7_c00019{left:121.950000px;}
.x6_c00019{left:134.400000px;}
.xb_c00019{left:139.350000px;}
.x8_c00019{left:176.250000px;}
.xd_c00019{left:188.214271px;}
.x9_c00019{left:198.900000px;}
.xc_c00019{left:364.500000px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.v1_c00019{vertical-align:114.133333pt;}
.ls5_c00019{letter-spacing:-2.666667pt;}
.ls3_c00019{letter-spacing:0.000000pt;}
.ls4_c00019{letter-spacing:2.666667pt;}
.ls0_c00019{letter-spacing:11.392000pt;}
.ls2_c00019{letter-spacing:11.842667pt;}
.ls1_c00019{letter-spacing:27.842667pt;}
.ws2_c00019{word-spacing:-24.000000pt;}
.ws0_c00019{word-spacing:-16.000000pt;}
.ws3_c00019{word-spacing:0.000000pt;}
.ws1_c00019{word-spacing:5.712000pt;}
._10_c00019{margin-left:-15.360000pt;}
._f_c00019{margin-left:-12.928000pt;}
._11_c00019{margin-left:-10.357333pt;}
._d_c00019{margin-left:-9.152000pt;}
._13_c00019{margin-left:-7.882667pt;}
._a_c00019{margin-left:-6.336000pt;}
._b_c00019{margin-left:-5.056000pt;}
._3_c00019{margin-left:-3.456000pt;}
._7_c00019{margin-left:-2.176000pt;}
._8_c00019{margin-left:-0.896000pt;}
._c_c00019{width:0.896000pt;}
._6_c00019{width:1.792000pt;}
._0_c00019{width:2.944000pt;}
._4_c00019{width:4.096000pt;}
._1_c00019{width:5.248000pt;}
._5_c00019{width:6.272000pt;}
._e_c00019{width:7.680000pt;}
._12_c00019{width:8.949333pt;}
._14_c00019{width:10.304000pt;}
._16_c00019{width:11.264000pt;}
._2_c00019{width:12.864000pt;}
._19_c00019{width:14.069333pt;}
._18_c00019{width:15.325333pt;}
._15_c00019{width:18.176000pt;}
._1a_c00019{width:27.338667pt;}
._17_c00019{width:113.344000pt;}
._9_c00019{width:147.264000pt;}
.fs5_c00019{font-size:42.666667pt;}
.fs3_c00019{font-size:45.333333pt;}
.fs4_c00019{font-size:48.000000pt;}
.fs2_c00019{font-size:53.333333pt;}
.fs0_c00019{font-size:64.000000pt;}
.fs1_c00019{font-size:205.333333pt;}
.y0_c00019{bottom:0.000000pt;}
.y1c_c00019{bottom:2.760000pt;}
.y1b_c00019{bottom:6.425217pt;}
.y1a_c00019{bottom:13.840000pt;}
.y19_c00019{bottom:36.240000pt;}
.y18_c00019{bottom:59.306667pt;}
.y17_c00019{bottom:81.573333pt;}
.y15_c00019{bottom:98.373333pt;}
.y16_c00019{bottom:104.106667pt;}
.y14_c00019{bottom:149.306667pt;}
.y13_c00019{bottom:171.306667pt;}
.y12_c00019{bottom:193.706667pt;}
.y11_c00019{bottom:215.706667pt;}
.y10_c00019{bottom:238.506667pt;}
.yf_c00019{bottom:260.106667pt;}
.ye_c00019{bottom:282.506667pt;}
.yd_c00019{bottom:305.040000pt;}
.yc_c00019{bottom:327.573333pt;}
.ya_c00019{bottom:342.773333pt;}
.yb_c00019{bottom:349.173333pt;}
.y9_c00019{bottom:415.840000pt;}
.y8_c00019{bottom:460.506667pt;}
.y7_c00019{bottom:482.640000pt;}
.y6_c00019{bottom:504.640000pt;}
.y5_c00019{bottom:525.040000pt;}
.y4_c00019{bottom:548.906667pt;}
.y3_c00019{bottom:570.506667pt;}
.y2_c00019{bottom:592.773333pt;}
.y1_c00019{bottom:615.040000pt;}
.ha_c00019{height:11.733399pt;}
.hb_c00019{height:38.937500pt;}
.h9_c00019{height:47.085938pt;}
.h8_c00019{height:57.397135pt;}
.h7_c00019{height:62.421875pt;}
.h3_c00019{height:62.781250pt;}
.h2_c00019{height:62.812500pt;}
.h6_c00019{height:67.526042pt;}
.h4_c00019{height:81.031250pt;}
.h5_c00019{height:201.423177pt;}
.h1_c00019{height:692.000000pt;}
.h0_c00019{height:692.133333pt;}
.w2_c00019{width:93.222667pt;}
.w1_c00019{width:420.000000pt;}
.w0_c00019{width:420.266667pt;}
.x0_c00019{left:0.000000pt;}
.x5_c00019{left:77.733333pt;}
.x3_c00019{left:82.533333pt;}
.x1_c00019{left:83.600000pt;}
.xa_c00019{left:86.400000pt;}
.x4_c00019{left:101.466667pt;}
.x2_c00019{left:103.866667pt;}
.x7_c00019{left:108.400000pt;}
.x6_c00019{left:119.466667pt;}
.xb_c00019{left:123.866667pt;}
.x8_c00019{left:156.666667pt;}
.xd_c00019{left:167.301575pt;}
.x9_c00019{left:176.800000pt;}
.xc_c00019{left:324.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_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_ad6c36acb69fee6d5bbb9641.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00020;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00020;src:url('chunks/assets/font_7a3c4400c55ffd16e1abb576.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00020;src:url('chunks/assets/font_36f2d5a1d91ca1f12c4b33fe.woff2')format("woff");}.ff4_c00020{font-family:ff4_c00020;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00020;src:url('chunks/assets/font_ddf883d4ea652f105f2a9841.woff2')format("woff");}.ff5_c00020{font-family:ff5_c00020;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00020;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00020{font-family:ff6_c00020;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00020{vertical-align:0.000000px;}
.ls1_c00020{letter-spacing:0.000000px;}
.ls0_c00020{letter-spacing:3.000000px;}
.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:-31.809000px;}
.ws2_c00020{word-spacing:-20.352000px;}
.ws1_c00020{word-spacing:-18.000000px;}
.ws3_c00020{word-spacing:0.000000px;}
._1a_c00020{margin-left:-41.448000px;}
._16_c00020{margin-left:-19.728000px;}
._e_c00020{margin-left:-18.288000px;}
._19_c00020{margin-left:-16.704000px;}
._9_c00020{margin-left:-15.552000px;}
._a_c00020{margin-left:-14.328000px;}
._18_c00020{margin-left:-12.462000px;}
._d_c00020{margin-left:-10.080000px;}
._3_c00020{margin-left:-8.208000px;}
._1_c00020{margin-left:-7.200000px;}
._8_c00020{margin-left:-5.976000px;}
._17_c00020{margin-left:-4.896000px;}
._7_c00020{margin-left:-3.888000px;}
._2_c00020{margin-left:-2.880000px;}
._4_c00020{margin-left:-1.368000px;}
._0_c00020{width:1.584000px;}
._5_c00020{width:3.168000px;}
._c_c00020{width:4.320000px;}
._6_c00020{width:5.400000px;}
._15_c00020{width:6.912000px;}
._b_c00020{width:8.280000px;}
._13_c00020{width:9.288000px;}
._12_c00020{width:11.376000px;}
._10_c00020{width:12.600000px;}
._14_c00020{width:14.544000px;}
._f_c00020{width:20.736000px;}
._11_c00020{width:30.528000px;}
.fc2_c00020{color:transparent;}
.fc1_c00020{color:rgb(128,128,128);}
.fc0_c00020{color:rgb(0,0,0);}
.fs3_c00020{font-size:48.000000px;}
.fs1_c00020{font-size:69.000000px;}
.fs0_c00020{font-size:72.000000px;}
.fs2_c00020{font-size:78.000000px;}
.y0_c00020{bottom:0.000000px;}
.y1b_c00020{bottom:3.105000px;}
.y1a_c00020{bottom:7.228369px;}
.y19_c00020{bottom:30.720000px;}
.y18_c00020{bottom:55.920000px;}
.y17_c00020{bottom:81.570000px;}
.y16_c00020{bottom:107.220000px;}
.y15_c00020{bottom:131.970000px;}
.y14_c00020{bottom:157.620000px;}
.y13_c00020{bottom:181.920000px;}
.y12_c00020{bottom:207.870000px;}
.y11_c00020{bottom:232.920000px;}
.y10_c00020{bottom:258.420000px;}
.yf_c00020{bottom:275.370000px;}
.ye_c00020{bottom:329.970000px;}
.yd_c00020{bottom:353.670000px;}
.yc_c00020{bottom:378.570000px;}
.yb_c00020{bottom:405.570000px;}
.ya_c00020{bottom:454.620000px;}
.y9_c00020{bottom:504.870000px;}
.y8_c00020{bottom:528.870000px;}
.y7_c00020{bottom:553.770000px;}
.y6_c00020{bottom:578.820000px;}
.y5_c00020{bottom:603.420000px;}
.y4_c00020{bottom:628.470000px;}
.y3_c00020{bottom:652.770000px;}
.y2_c00020{bottom:677.370000px;}
.y1_c00020{bottom:701.970000px;}
.h7_c00020{height:13.200073px;}
.h8_c00020{height:43.804688px;}
.h3_c00020{height:70.628906px;}
.h2_c00020{height:70.664062px;}
.h6_c00020{height:78.609375px;}
.h5_c00020{height:80.758301px;}
.h4_c00020{height:91.160156px;}
.h1_c00020{height:777.000000px;}
.h0_c00020{height:777.300000px;}
.w2_c00020{width:104.875500px;}
.w0_c00020{width:537.600000px;}
.w1_c00020{width:537.750000px;}
.x0_c00020{left:0.000000px;}
.xf_c00020{left:31.500000px;}
.x8_c00020{left:33.150000px;}
.xd_c00020{left:34.800000px;}
.x4_c00020{left:36.150000px;}
.x1_c00020{left:37.500000px;}
.xc_c00020{left:55.800000px;}
.xb_c00020{left:57.150000px;}
.xe_c00020{left:58.500000px;}
.x3_c00020{left:61.050000px;}
.x2_c00020{left:63.450000px;}
.x6_c00020{left:66.150000px;}
.x5_c00020{left:75.900000px;}
.x7_c00020{left:81.900000px;}
.x9_c00020{left:87.150000px;}
.xa_c00020{left:193.500000px;}
.x11_c00020{left:220.614258px;}
.x10_c00020{left:271.800000px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls1_c00020{letter-spacing:0.000000pt;}
.ls0_c00020{letter-spacing:2.666667pt;}
.ws0_c00020{word-spacing:-28.274667pt;}
.ws2_c00020{word-spacing:-18.090667pt;}
.ws1_c00020{word-spacing:-16.000000pt;}
.ws3_c00020{word-spacing:0.000000pt;}
._1a_c00020{margin-left:-36.842667pt;}
._16_c00020{margin-left:-17.536000pt;}
._e_c00020{margin-left:-16.256000pt;}
._19_c00020{margin-left:-14.848000pt;}
._9_c00020{margin-left:-13.824000pt;}
._a_c00020{margin-left:-12.736000pt;}
._18_c00020{margin-left:-11.077333pt;}
._d_c00020{margin-left:-8.960000pt;}
._3_c00020{margin-left:-7.296000pt;}
._1_c00020{margin-left:-6.400000pt;}
._8_c00020{margin-left:-5.312000pt;}
._17_c00020{margin-left:-4.352000pt;}
._7_c00020{margin-left:-3.456000pt;}
._2_c00020{margin-left:-2.560000pt;}
._4_c00020{margin-left:-1.216000pt;}
._0_c00020{width:1.408000pt;}
._5_c00020{width:2.816000pt;}
._c_c00020{width:3.840000pt;}
._6_c00020{width:4.800000pt;}
._15_c00020{width:6.144000pt;}
._b_c00020{width:7.360000pt;}
._13_c00020{width:8.256000pt;}
._12_c00020{width:10.112000pt;}
._10_c00020{width:11.200000pt;}
._14_c00020{width:12.928000pt;}
._f_c00020{width:18.432000pt;}
._11_c00020{width:27.136000pt;}
.fs3_c00020{font-size:42.666667pt;}
.fs1_c00020{font-size:61.333333pt;}
.fs0_c00020{font-size:64.000000pt;}
.fs2_c00020{font-size:69.333333pt;}
.y0_c00020{bottom:0.000000pt;}
.y1b_c00020{bottom:2.760000pt;}
.y1a_c00020{bottom:6.425217pt;}
.y19_c00020{bottom:27.306667pt;}
.y18_c00020{bottom:49.706667pt;}
.y17_c00020{bottom:72.506667pt;}
.y16_c00020{bottom:95.306667pt;}
.y15_c00020{bottom:117.306667pt;}
.y14_c00020{bottom:140.106667pt;}
.y13_c00020{bottom:161.706667pt;}
.y12_c00020{bottom:184.773333pt;}
.y11_c00020{bottom:207.040000pt;}
.y10_c00020{bottom:229.706667pt;}
.yf_c00020{bottom:244.773333pt;}
.ye_c00020{bottom:293.306667pt;}
.yd_c00020{bottom:314.373333pt;}
.yc_c00020{bottom:336.506667pt;}
.yb_c00020{bottom:360.506667pt;}
.ya_c00020{bottom:404.106667pt;}
.y9_c00020{bottom:448.773333pt;}
.y8_c00020{bottom:470.106667pt;}
.y7_c00020{bottom:492.240000pt;}
.y6_c00020{bottom:514.506667pt;}
.y5_c00020{bottom:536.373333pt;}
.y4_c00020{bottom:558.640000pt;}
.y3_c00020{bottom:580.240000pt;}
.y2_c00020{bottom:602.106667pt;}
.y1_c00020{bottom:623.973333pt;}
.h7_c00020{height:11.733399pt;}
.h8_c00020{height:38.937500pt;}
.h3_c00020{height:62.781250pt;}
.h2_c00020{height:62.812500pt;}
.h6_c00020{height:69.875000pt;}
.h5_c00020{height:71.785156pt;}
.h4_c00020{height:81.031250pt;}
.h1_c00020{height:690.666667pt;}
.h0_c00020{height:690.933333pt;}
.w2_c00020{width:93.222667pt;}
.w0_c00020{width:477.866667pt;}
.w1_c00020{width:478.000000pt;}
.x0_c00020{left:0.000000pt;}
.xf_c00020{left:28.000000pt;}
.x8_c00020{left:29.466667pt;}
.xd_c00020{left:30.933333pt;}
.x4_c00020{left:32.133333pt;}
.x1_c00020{left:33.333333pt;}
.xc_c00020{left:49.600000pt;}
.xb_c00020{left:50.800000pt;}
.xe_c00020{left:52.000000pt;}
.x3_c00020{left:54.266667pt;}
.x2_c00020{left:56.400000pt;}
.x6_c00020{left:58.800000pt;}
.x5_c00020{left:67.466667pt;}
.x7_c00020{left:72.800000pt;}
.x9_c00020{left:77.466667pt;}
.xa_c00020{left:172.000000pt;}
.x11_c00020{left:196.101563pt;}
.x10_c00020{left:241.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ffd74b7aec3e616693ffaa2.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00021;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00021;src:url('chunks/assets/font_2a7c9f402870a693abfb576f.woff2')format("woff");}.ff3_c00021{font-family:ff3_c00021;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00021;src:url('chunks/assets/font_904fc82452338d1c2f12f1b6.woff2')format("woff");}.ff4_c00021{font-family:ff4_c00021;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00021;src:url('chunks/assets/font_c94f7a0cc29c784dd0344a47.woff2')format("woff");}.ff5_c00021{font-family:ff5_c00021;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00021;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00021{font-family:ff6_c00021;line-height:1.219238;font-style: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;}
.ls2_c00021{letter-spacing:0.000000px;}
.ls3_c00021{letter-spacing:3.000000px;}
.ls1_c00021{letter-spacing:3.615000px;}
.ls0_c00021{letter-spacing:166.140000px;}
.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:-18.000000px;}
.ws1_c00021{word-spacing:0.000000px;}
._13_c00021{margin-left:-23.790000px;}
._1e_c00021{margin-left:-19.668000px;}
._c_c00021{margin-left:-18.144000px;}
._11_c00021{margin-left:-15.912000px;}
._4_c00021{margin-left:-14.760000px;}
._10_c00021{margin-left:-12.600000px;}
._a_c00021{margin-left:-10.584000px;}
._8_c00021{margin-left:-9.306000px;}
._1_c00021{margin-left:-7.200000px;}
._12_c00021{margin-left:-5.832000px;}
._18_c00021{margin-left:-4.824000px;}
._b_c00021{margin-left:-3.600000px;}
._5_c00021{margin-left:-2.592000px;}
._0_c00021{margin-left:-1.296000px;}
._2_c00021{width:1.008000px;}
._3_c00021{width:2.520000px;}
._6_c00021{width:4.104000px;}
._7_c00021{width:5.976000px;}
._f_c00021{width:7.272000px;}
._9_c00021{width:8.664000px;}
._15_c00021{width:10.296000px;}
._d_c00021{width:12.456000px;}
._1a_c00021{width:14.976000px;}
._e_c00021{width:16.416000px;}
._1c_c00021{width:19.656000px;}
._17_c00021{width:31.752000px;}
._16_c00021{width:37.290000px;}
._14_c00021{width:63.504000px;}
._1f_c00021{width:114.768000px;}
._19_c00021{width:158.490000px;}
._20_c00021{width:213.324000px;}
._1d_c00021{width:217.572000px;}
._1b_c00021{width:378.000000px;}
._21_c00021{width:462.768000px;}
.fc2_c00021{color:transparent;}
.fc1_c00021{color:rgb(128,128,128);}
.fc0_c00021{color:rgb(0,0,0);}
.fs4_c00021{font-size:48.000000px;}
.fs2_c00021{font-size:60.000000px;}
.fs3_c00021{font-size:69.000000px;}
.fs0_c00021{font-size:72.000000px;}
.fs1_c00021{font-size:78.000000px;}
.y0_c00021{bottom:0.000000px;}
.y1b_c00021{bottom:3.105000px;}
.y1a_c00021{bottom:7.228371px;}
.y19_c00021{bottom:31.815000px;}
.y18_c00021{bottom:56.715000px;}
.y17_c00021{bottom:81.765000px;}
.y16_c00021{bottom:106.965000px;}
.y15_c00021{bottom:132.615000px;}
.y14_c00021{bottom:157.965000px;}
.y13_c00021{bottom:182.265000px;}
.y12_c00021{bottom:207.615000px;}
.y11_c00021{bottom:232.965000px;}
.y10_c00021{bottom:258.315000px;}
.yf_c00021{bottom:308.115000px;}
.ye_c00021{bottom:333.465000px;}
.yd_c00021{bottom:357.765000px;}
.yc_c00021{bottom:383.415000px;}
.yb_c00021{bottom:408.165000px;}
.ya_c00021{bottom:433.815000px;}
.y9_c00021{bottom:457.365000px;}
.y8_c00021{bottom:483.765000px;}
.y7_c00021{bottom:529.965000px;}
.y6_c00021{bottom:582.315000px;}
.y5_c00021{bottom:607.815000px;}
.y4_c00021{bottom:631.515000px;}
.y3_c00021{bottom:657.465000px;}
.y2_c00021{bottom:681.765000px;}
.y1_c00021{bottom:705.765000px;}
.h8_c00021{height:13.200074px;}
.h9_c00021{height:43.804688px;}
.h6_c00021{height:70.224609px;}
.h4_c00021{height:70.628906px;}
.h2_c00021{height:70.664062px;}
.h3_c00021{height:78.609375px;}
.h7_c00021{height:87.361816px;}
.h5_c00021{height:91.160156px;}
.h0_c00021{height:787.875000px;}
.h1_c00021{height:788.250000px;}
.w2_c00021{width:104.875500px;}
.w0_c00021{width:519.450000px;}
.w1_c00021{width:519.750000px;}
.x0_c00021{left:0.000000px;}
.x7_c00021{left:100.950000px;}
.xf_c00021{left:105.000000px;}
.xb_c00021{left:108.000000px;}
.xa_c00021{left:111.000000px;}
.x9_c00021{left:112.350000px;}
.x4_c00021{left:113.850000px;}
.x3_c00021{left:115.200000px;}
.x2_c00021{left:116.850000px;}
.x10_c00021{left:131.400000px;}
.x5_c00021{left:136.050000px;}
.x1_c00021{left:141.750000px;}
.xe_c00021{left:148.500000px;}
.x8_c00021{left:151.950000px;}
.x6_c00021{left:191.700000px;}
.x11_c00021{left:199.800000px;}
.xc_c00021{left:201.900000px;}
.x12_c00021{left:211.539230px;}
.xd_c00021{left:230.850000px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls2_c00021{letter-spacing:0.000000pt;}
.ls3_c00021{letter-spacing:2.666667pt;}
.ls1_c00021{letter-spacing:3.213333pt;}
.ls0_c00021{letter-spacing:147.680000pt;}
.ws0_c00021{word-spacing:-16.000000pt;}
.ws1_c00021{word-spacing:0.000000pt;}
._13_c00021{margin-left:-21.146667pt;}
._1e_c00021{margin-left:-17.482667pt;}
._c_c00021{margin-left:-16.128000pt;}
._11_c00021{margin-left:-14.144000pt;}
._4_c00021{margin-left:-13.120000pt;}
._10_c00021{margin-left:-11.200000pt;}
._a_c00021{margin-left:-9.408000pt;}
._8_c00021{margin-left:-8.272000pt;}
._1_c00021{margin-left:-6.400000pt;}
._12_c00021{margin-left:-5.184000pt;}
._18_c00021{margin-left:-4.288000pt;}
._b_c00021{margin-left:-3.200000pt;}
._5_c00021{margin-left:-2.304000pt;}
._0_c00021{margin-left:-1.152000pt;}
._2_c00021{width:0.896000pt;}
._3_c00021{width:2.240000pt;}
._6_c00021{width:3.648000pt;}
._7_c00021{width:5.312000pt;}
._f_c00021{width:6.464000pt;}
._9_c00021{width:7.701333pt;}
._15_c00021{width:9.152000pt;}
._d_c00021{width:11.072000pt;}
._1a_c00021{width:13.312000pt;}
._e_c00021{width:14.592000pt;}
._1c_c00021{width:17.472000pt;}
._17_c00021{width:28.224000pt;}
._16_c00021{width:33.146667pt;}
._14_c00021{width:56.448000pt;}
._1f_c00021{width:102.016000pt;}
._19_c00021{width:140.880000pt;}
._20_c00021{width:189.621333pt;}
._1d_c00021{width:193.397333pt;}
._1b_c00021{width:336.000000pt;}
._21_c00021{width:411.349333pt;}
.fs4_c00021{font-size:42.666667pt;}
.fs2_c00021{font-size:53.333333pt;}
.fs3_c00021{font-size:61.333333pt;}
.fs0_c00021{font-size:64.000000pt;}
.fs1_c00021{font-size:69.333333pt;}
.y0_c00021{bottom:0.000000pt;}
.y1b_c00021{bottom:2.760000pt;}
.y1a_c00021{bottom:6.425219pt;}
.y19_c00021{bottom:28.280000pt;}
.y18_c00021{bottom:50.413333pt;}
.y17_c00021{bottom:72.680000pt;}
.y16_c00021{bottom:95.080000pt;}
.y15_c00021{bottom:117.880000pt;}
.y14_c00021{bottom:140.413333pt;}
.y13_c00021{bottom:162.013333pt;}
.y12_c00021{bottom:184.546667pt;}
.y11_c00021{bottom:207.080000pt;}
.y10_c00021{bottom:229.613333pt;}
.yf_c00021{bottom:273.880000pt;}
.ye_c00021{bottom:296.413333pt;}
.yd_c00021{bottom:318.013333pt;}
.yc_c00021{bottom:340.813333pt;}
.yb_c00021{bottom:362.813333pt;}
.ya_c00021{bottom:385.613333pt;}
.y9_c00021{bottom:406.546667pt;}
.y8_c00021{bottom:430.013333pt;}
.y7_c00021{bottom:471.080000pt;}
.y6_c00021{bottom:517.613333pt;}
.y5_c00021{bottom:540.280000pt;}
.y4_c00021{bottom:561.346667pt;}
.y3_c00021{bottom:584.413333pt;}
.y2_c00021{bottom:606.013333pt;}
.y1_c00021{bottom:627.346667pt;}
.h8_c00021{height:11.733399pt;}
.h9_c00021{height:38.937500pt;}
.h6_c00021{height:62.421875pt;}
.h4_c00021{height:62.781250pt;}
.h2_c00021{height:62.812500pt;}
.h3_c00021{height:69.875000pt;}
.h7_c00021{height:77.654948pt;}
.h5_c00021{height:81.031250pt;}
.h0_c00021{height:700.333333pt;}
.h1_c00021{height:700.666667pt;}
.w2_c00021{width:93.222667pt;}
.w0_c00021{width:461.733333pt;}
.w1_c00021{width:462.000000pt;}
.x0_c00021{left:0.000000pt;}
.x7_c00021{left:89.733333pt;}
.xf_c00021{left:93.333333pt;}
.xb_c00021{left:96.000000pt;}
.xa_c00021{left:98.666667pt;}
.x9_c00021{left:99.866667pt;}
.x4_c00021{left:101.200000pt;}
.x3_c00021{left:102.400000pt;}
.x2_c00021{left:103.866667pt;}
.x10_c00021{left:116.800000pt;}
.x5_c00021{left:120.933333pt;}
.x1_c00021{left:126.000000pt;}
.xe_c00021{left:132.000000pt;}
.x8_c00021{left:135.066667pt;}
.x6_c00021{left:170.400000pt;}
.x11_c00021{left:177.600000pt;}
.xc_c00021{left:179.466667pt;}
.x12_c00021{left:188.034871pt;}
.xd_c00021{left:205.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c9fc4d998ca106ccc9e94ad5.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00022;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00022;src:url('chunks/assets/font_b231fee3a140823b97dd3a31.woff2')format("woff");}.ff3_c00022{font-family:ff3_c00022;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00022;src:url('chunks/assets/font_696d8827ee265102ca8697da.woff2')format("woff");}.ff4_c00022{font-family:ff4_c00022;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00022;src:url('chunks/assets/font_b4761148de264e6fd94e8cf0.woff2')format("woff");}.ff5_c00022{font-family:ff5_c00022;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00022;src:url('chunks/assets/font_8fe19a5417b5ced28773f6cd.woff2')format("woff");}.ff6_c00022{font-family:ff6_c00022;line-height:1.480469;font-style:normal;font-weight: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_c00022;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00022{font-family:ff7_c00022;line-height:1.219238;font-style: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);}
.v2_c00022{vertical-align:-7.800000px;}
.v1_c00022{vertical-align:-3.000000px;}
.v0_c00022{vertical-align:0.000000px;}
.ls4_c00022{letter-spacing:-9.000000px;}
.ls5_c00022{letter-spacing:-3.000000px;}
.ls2_c00022{letter-spacing:0.000000px;}
.ls3_c00022{letter-spacing:3.000000px;}
.ls6_c00022{letter-spacing:30.000000px;}
.ls0_c00022{letter-spacing:111.960000px;}
.ls1_c00022{letter-spacing:145.560000px;}
.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;}
}
.ws4_c00022{word-spacing:-32.424000px;}
.ws0_c00022{word-spacing:-18.000000px;}
.ws2_c00022{word-spacing:-17.250000px;}
.ws3_c00022{word-spacing:-2.106000px;}
.ws5_c00022{word-spacing:0.000000px;}
.ws1_c00022{word-spacing:20.124000px;}
._11_c00022{margin-left:-18.144000px;}
._16_c00022{margin-left:-16.848000px;}
._7_c00022{margin-left:-15.474000px;}
._4_c00022{margin-left:-14.112000px;}
._c_c00022{margin-left:-12.024000px;}
._8_c00022{margin-left:-8.208000px;}
._19_c00022{margin-left:-6.768000px;}
._5_c00022{margin-left:-5.544000px;}
._6_c00022{margin-left:-4.392000px;}
._2_c00022{margin-left:-3.240000px;}
._1_c00022{margin-left:-1.800000px;}
._0_c00022{width:1.296000px;}
._9_c00022{width:2.520000px;}
._b_c00022{width:4.392000px;}
._a_c00022{width:5.400000px;}
._d_c00022{width:6.696000px;}
._17_c00022{width:7.704000px;}
._10_c00022{width:8.856000px;}
._e_c00022{width:10.512000px;}
._f_c00022{width:12.312000px;}
._1a_c00022{width:14.112000px;}
._3_c00022{width:16.560000px;}
._1b_c00022{width:19.170000px;}
._1d_c00022{width:20.916000px;}
._1c_c00022{width:23.004000px;}
._14_c00022{width:28.782000px;}
._13_c00022{width:30.078000px;}
._12_c00022{width:45.240000px;}
._15_c00022{width:74.349000px;}
._1f_c00022{width:83.232000px;}
._1e_c00022{width:129.348000px;}
._20_c00022{width:146.124000px;}
._18_c00022{width:232.920000px;}
.fc2_c00022{color:transparent;}
.fc1_c00022{color:rgb(128,128,128);}
.fc0_c00022{color:rgb(0,0,0);}
.fs6_c00022{font-size:48.000000px;}
.fs4_c00022{font-size:51.000000px;}
.fs2_c00022{font-size:54.000000px;}
.fs3_c00022{font-size:60.000000px;}
.fs0_c00022{font-size:72.000000px;}
.fs1_c00022{font-size:78.000000px;}
.fs5_c00022{font-size:81.000000px;}
.y0_c00022{bottom:0.000000px;}
.y1c_c00022{bottom:3.105000px;}
.y1b_c00022{bottom:7.228363px;}
.y19_c00022{bottom:22.500000px;}
.y1a_c00022{bottom:45.600000px;}
.y18_c00022{bottom:49.500000px;}
.y17_c00022{bottom:75.900000px;}
.y16_c00022{bottom:103.800000px;}
.y15_c00022{bottom:152.100000px;}
.y14_c00022{bottom:203.250000px;}
.y13_c00022{bottom:228.900000px;}
.y12_c00022{bottom:254.250000px;}
.y11_c00022{bottom:279.000000px;}
.y10_c00022{bottom:326.250000px;}
.yf_c00022{bottom:351.600000px;}
.ye_c00022{bottom:376.950000px;}
.yd_c00022{bottom:401.250000px;}
.yc_c00022{bottom:426.000000px;}
.yb_c00022{bottom:450.900000px;}
.ya_c00022{bottom:483.000000px;}
.y9_c00022{bottom:502.200000px;}
.y8_c00022{bottom:527.250000px;}
.y7_c00022{bottom:551.100000px;}
.y6_c00022{bottom:576.150000px;}
.y5_c00022{bottom:601.200000px;}
.y4_c00022{bottom:626.100000px;}
.y3_c00022{bottom:651.450000px;}
.y2_c00022{bottom:676.650000px;}
.y1_c00022{bottom:700.350000px;}
.h8_c00022{height:13.200074px;}
.h9_c00022{height:43.804688px;}
.h4_c00022{height:52.971680px;}
.h6_c00022{height:64.571777px;}
.h7_c00022{height:70.224609px;}
.h3_c00022{height:70.628906px;}
.h1_c00022{height:70.664062px;}
.h2_c00022{height:78.609375px;}
.h5_c00022{height:91.160156px;}
.h0_c00022{height:789.750000px;}
.w1_c00022{width:104.875500px;}
.w0_c00022{width:556.500000px;}
.x0_c00022{left:0.000000px;}
.xc_c00022{left:16.500000px;}
.x8_c00022{left:22.650000px;}
.x5_c00022{left:27.300000px;}
.xb_c00022{left:28.350000px;}
.x1_c00022{left:29.400000px;}
.x3_c00022{left:31.050000px;}
.xa_c00022{left:32.100000px;}
.x4_c00022{left:55.950000px;}
.xd_c00022{left:61.650000px;}
.x9_c00022{left:68.400000px;}
.x2_c00022{left:86.400000px;}
.x7_c00022{left:107.700000px;}
.x10_c00022{left:230.064240px;}
.xe_c00022{left:234.150000px;}
.x6_c00022{left:294.300000px;}
.xf_c00022{left:365.100000px;}
@media print{
.v2_c00022{vertical-align:-6.933333pt;}
.v1_c00022{vertical-align:-2.666667pt;}
.v0_c00022{vertical-align:0.000000pt;}
.ls4_c00022{letter-spacing:-8.000000pt;}
.ls5_c00022{letter-spacing:-2.666667pt;}
.ls2_c00022{letter-spacing:0.000000pt;}
.ls3_c00022{letter-spacing:2.666667pt;}
.ls6_c00022{letter-spacing:26.666667pt;}
.ls0_c00022{letter-spacing:99.520000pt;}
.ls1_c00022{letter-spacing:129.386667pt;}
.ws4_c00022{word-spacing:-28.821333pt;}
.ws0_c00022{word-spacing:-16.000000pt;}
.ws2_c00022{word-spacing:-15.333333pt;}
.ws3_c00022{word-spacing:-1.872000pt;}
.ws5_c00022{word-spacing:0.000000pt;}
.ws1_c00022{word-spacing:17.888000pt;}
._11_c00022{margin-left:-16.128000pt;}
._16_c00022{margin-left:-14.976000pt;}
._7_c00022{margin-left:-13.754667pt;}
._4_c00022{margin-left:-12.544000pt;}
._c_c00022{margin-left:-10.688000pt;}
._8_c00022{margin-left:-7.296000pt;}
._19_c00022{margin-left:-6.016000pt;}
._5_c00022{margin-left:-4.928000pt;}
._6_c00022{margin-left:-3.904000pt;}
._2_c00022{margin-left:-2.880000pt;}
._1_c00022{margin-left:-1.600000pt;}
._0_c00022{width:1.152000pt;}
._9_c00022{width:2.240000pt;}
._b_c00022{width:3.904000pt;}
._a_c00022{width:4.800000pt;}
._d_c00022{width:5.952000pt;}
._17_c00022{width:6.848000pt;}
._10_c00022{width:7.872000pt;}
._e_c00022{width:9.344000pt;}
._f_c00022{width:10.944000pt;}
._1a_c00022{width:12.544000pt;}
._3_c00022{width:14.720000pt;}
._1b_c00022{width:17.040000pt;}
._1d_c00022{width:18.592000pt;}
._1c_c00022{width:20.448000pt;}
._14_c00022{width:25.584000pt;}
._13_c00022{width:26.736000pt;}
._12_c00022{width:40.213333pt;}
._15_c00022{width:66.088000pt;}
._1f_c00022{width:73.984000pt;}
._1e_c00022{width:114.976000pt;}
._20_c00022{width:129.888000pt;}
._18_c00022{width:207.040000pt;}
.fs6_c00022{font-size:42.666667pt;}
.fs4_c00022{font-size:45.333333pt;}
.fs2_c00022{font-size:48.000000pt;}
.fs3_c00022{font-size:53.333333pt;}
.fs0_c00022{font-size:64.000000pt;}
.fs1_c00022{font-size:69.333333pt;}
.fs5_c00022{font-size:72.000000pt;}
.y0_c00022{bottom:0.000000pt;}
.y1c_c00022{bottom:2.760000pt;}
.y1b_c00022{bottom:6.425212pt;}
.y19_c00022{bottom:20.000000pt;}
.y1a_c00022{bottom:40.533333pt;}
.y18_c00022{bottom:44.000000pt;}
.y17_c00022{bottom:67.466667pt;}
.y16_c00022{bottom:92.266667pt;}
.y15_c00022{bottom:135.200000pt;}
.y14_c00022{bottom:180.666667pt;}
.y13_c00022{bottom:203.466667pt;}
.y12_c00022{bottom:226.000000pt;}
.y11_c00022{bottom:248.000000pt;}
.y10_c00022{bottom:290.000000pt;}
.yf_c00022{bottom:312.533333pt;}
.ye_c00022{bottom:335.066667pt;}
.yd_c00022{bottom:356.666667pt;}
.yc_c00022{bottom:378.666667pt;}
.yb_c00022{bottom:400.800000pt;}
.ya_c00022{bottom:429.333333pt;}
.y9_c00022{bottom:446.400000pt;}
.y8_c00022{bottom:468.666667pt;}
.y7_c00022{bottom:489.866667pt;}
.y6_c00022{bottom:512.133333pt;}
.y5_c00022{bottom:534.400000pt;}
.y4_c00022{bottom:556.533333pt;}
.y3_c00022{bottom:579.066667pt;}
.y2_c00022{bottom:601.466667pt;}
.y1_c00022{bottom:622.533333pt;}
.h8_c00022{height:11.733399pt;}
.h9_c00022{height:38.937500pt;}
.h4_c00022{height:47.085938pt;}
.h6_c00022{height:57.397135pt;}
.h7_c00022{height:62.421875pt;}
.h3_c00022{height:62.781250pt;}
.h1_c00022{height:62.812500pt;}
.h2_c00022{height:69.875000pt;}
.h5_c00022{height:81.031250pt;}
.h0_c00022{height:702.000000pt;}
.w1_c00022{width:93.222667pt;}
.w0_c00022{width:494.666667pt;}
.x0_c00022{left:0.000000pt;}
.xc_c00022{left:14.666667pt;}
.x8_c00022{left:20.133333pt;}
.x5_c00022{left:24.266667pt;}
.xb_c00022{left:25.200000pt;}
.x1_c00022{left:26.133333pt;}
.x3_c00022{left:27.600000pt;}
.xa_c00022{left:28.533333pt;}
.x4_c00022{left:49.733333pt;}
.xd_c00022{left:54.800000pt;}
.x9_c00022{left:60.800000pt;}
.x2_c00022{left:76.800000pt;}
.x7_c00022{left:95.733333pt;}
.x10_c00022{left:204.501546pt;}
.xe_c00022{left:208.133333pt;}
.x6_c00022{left:261.600000pt;}
.xf_c00022{left:324.533333pt;}
}





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

.ir_c00023:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00023{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00023;src:url('chunks/assets/font_af65df96d4c5271c887cd4d7.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00023;src:url('chunks/assets/font_aca6d91e548fd86fb7a740a0.woff2')format("woff");}.ff2_c00023{font-family:ff2_c00023;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00023;src:url('chunks/assets/font_3e5c15c6bc462e519218d4e8.woff2')format("woff");}.ff3_c00023{font-family:ff3_c00023;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00023;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00023{font-family:ff4_c00023;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00023;src:url('chunks/assets/font_62b011185c82eee4be11840c.woff2')format("woff");}.ff5_c00023{font-family:ff5_c00023;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00023;src:url('chunks/assets/font_ef6364730e813d9588a101fb.woff2')format("woff");}.ff6_c00023{font-family:ff6_c00023;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00023;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00023{font-family:ff7_c00023;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00023{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00023{vertical-align:0.000000px;}
.v1_c00023{vertical-align:72.000000px;}
.ls2_c00023{letter-spacing:0.000000px;}
.ls1_c00023{letter-spacing:3.000000px;}
.ls0_c00023{letter-spacing:166.140000px;}
.sc__c00023{text-shadow:none;}
.sc0_c00023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00023{-webkit-text-stroke:0px transparent;}
.sc0_c00023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00023{word-spacing:-20.352000px;}
.ws1_c00023{word-spacing:-19.500000px;}
.ws2_c00023{word-spacing:-18.000000px;}
.ws3_c00023{word-spacing:0.000000px;}
._1c_c00023{margin-left:-41.730000px;}
._13_c00023{margin-left:-18.072000px;}
._a_c00023{margin-left:-17.064000px;}
._18_c00023{margin-left:-15.552000px;}
._2_c00023{margin-left:-14.256000px;}
._4_c00023{margin-left:-12.312000px;}
._11_c00023{margin-left:-10.386000px;}
._12_c00023{margin-left:-8.352000px;}
._9_c00023{margin-left:-7.344000px;}
._5_c00023{margin-left:-5.400000px;}
._8_c00023{margin-left:-4.176000px;}
._7_c00023{margin-left:-2.520000px;}
._6_c00023{margin-left:-1.440000px;}
._3_c00023{width:1.008000px;}
._1_c00023{width:2.736000px;}
._c_c00023{width:3.744000px;}
._0_c00023{width:5.112000px;}
._10_c00023{width:7.056000px;}
._b_c00023{width:8.784000px;}
._d_c00023{width:9.936000px;}
._14_c00023{width:11.088000px;}
._21_c00023{width:12.090000px;}
._e_c00023{width:13.824000px;}
._15_c00023{width:15.768000px;}
._17_c00023{width:16.992000px;}
._16_c00023{width:20.448000px;}
._1e_c00023{width:21.576000px;}
._19_c00023{width:23.184000px;}
._f_c00023{width:51.048000px;}
._1f_c00023{width:169.092000px;}
._20_c00023{width:223.770000px;}
._1d_c00023{width:238.494000px;}
._1a_c00023{width:310.440000px;}
._1b_c00023{width:441.972000px;}
.fc2_c00023{color:transparent;}
.fc1_c00023{color:rgb(128,128,128);}
.fc0_c00023{color:rgb(0,0,0);}
.fs4_c00023{font-size:48.000000px;}
.fs3_c00023{font-size:54.000000px;}
.fs1_c00023{font-size:60.000000px;}
.fs0_c00023{font-size:72.000000px;}
.fs2_c00023{font-size:78.000000px;}
.y0_c00023{bottom:0.000000px;}
.y1b_c00023{bottom:3.105000px;}
.y1a_c00023{bottom:7.228363px;}
.y19_c00023{bottom:38.400000px;}
.y18_c00023{bottom:65.100000px;}
.y17_c00023{bottom:89.100000px;}
.y16_c00023{bottom:115.050000px;}
.y15_c00023{bottom:140.100000px;}
.y14_c00023{bottom:165.750000px;}
.y13_c00023{bottom:190.800000px;}
.y12_c00023{bottom:215.250000px;}
.y11_c00023{bottom:266.400000px;}
.y10_c00023{bottom:291.150000px;}
.yf_c00023{bottom:316.200000px;}
.ye_c00023{bottom:341.550000px;}
.yd_c00023{bottom:366.150000px;}
.yc_c00023{bottom:391.200000px;}
.yb_c00023{bottom:416.400000px;}
.ya_c00023{bottom:440.400000px;}
.y9_c00023{bottom:466.050000px;}
.y8_c00023{bottom:490.950000px;}
.y7_c00023{bottom:514.950000px;}
.y6_c00023{bottom:539.700000px;}
.y5_c00023{bottom:564.750000px;}
.y4_c00023{bottom:589.350000px;}
.y3_c00023{bottom:614.850000px;}
.y2_c00023{bottom:639.000000px;}
.y1_c00023{bottom:688.800000px;}
.h8_c00023{height:13.200074px;}
.h9_c00023{height:43.804688px;}
.h4_c00023{height:70.224609px;}
.h2_c00023{height:70.628906px;}
.h5_c00023{height:70.664062px;}
.h6_c00023{height:78.609375px;}
.h3_c00023{height:91.160156px;}
.h7_c00023{height:124.971680px;}
.h1_c00023{height:774.750000px;}
.h0_c00023{height:774.900000px;}
.w2_c00023{width:104.875500px;}
.w1_c00023{width:526.500000px;}
.w0_c00023{width:526.800000px;}
.x0_c00023{left:0.000000px;}
.x4_c00023{left:120.900000px;}
.x13_c00023{left:122.250000px;}
.xd_c00023{left:124.200000px;}
.xc_c00023{left:126.900000px;}
.x9_c00023{left:129.300000px;}
.xb_c00023{left:130.350000px;}
.x7_c00023{left:131.400000px;}
.x6_c00023{left:133.050000px;}
.x2_c00023{left:135.450000px;}
.x1_c00023{left:137.400000px;}
.x12_c00023{left:149.100000px;}
.xa_c00023{left:153.600000px;}
.x8_c00023{left:156.900000px;}
.x11_c00023{left:163.050000px;}
.x10_c00023{left:167.400000px;}
.x5_c00023{left:170.850000px;}
.xe_c00023{left:185.250000px;}
.x14_c00023{left:215.214249px;}
.xf_c00023{left:238.350000px;}
.x3_c00023{left:239.400000px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.v1_c00023{vertical-align:64.000000pt;}
.ls2_c00023{letter-spacing:0.000000pt;}
.ls1_c00023{letter-spacing:2.666667pt;}
.ls0_c00023{letter-spacing:147.680000pt;}
.ws0_c00023{word-spacing:-18.090667pt;}
.ws1_c00023{word-spacing:-17.333333pt;}
.ws2_c00023{word-spacing:-16.000000pt;}
.ws3_c00023{word-spacing:0.000000pt;}
._1c_c00023{margin-left:-37.093333pt;}
._13_c00023{margin-left:-16.064000pt;}
._a_c00023{margin-left:-15.168000pt;}
._18_c00023{margin-left:-13.824000pt;}
._2_c00023{margin-left:-12.672000pt;}
._4_c00023{margin-left:-10.944000pt;}
._11_c00023{margin-left:-9.232000pt;}
._12_c00023{margin-left:-7.424000pt;}
._9_c00023{margin-left:-6.528000pt;}
._5_c00023{margin-left:-4.800000pt;}
._8_c00023{margin-left:-3.712000pt;}
._7_c00023{margin-left:-2.240000pt;}
._6_c00023{margin-left:-1.280000pt;}
._3_c00023{width:0.896000pt;}
._1_c00023{width:2.432000pt;}
._c_c00023{width:3.328000pt;}
._0_c00023{width:4.544000pt;}
._10_c00023{width:6.272000pt;}
._b_c00023{width:7.808000pt;}
._d_c00023{width:8.832000pt;}
._14_c00023{width:9.856000pt;}
._21_c00023{width:10.746667pt;}
._e_c00023{width:12.288000pt;}
._15_c00023{width:14.016000pt;}
._17_c00023{width:15.104000pt;}
._16_c00023{width:18.176000pt;}
._1e_c00023{width:19.178667pt;}
._19_c00023{width:20.608000pt;}
._f_c00023{width:45.376000pt;}
._1f_c00023{width:150.304000pt;}
._20_c00023{width:198.906667pt;}
._1d_c00023{width:211.994667pt;}
._1a_c00023{width:275.946667pt;}
._1b_c00023{width:392.864000pt;}
.fs4_c00023{font-size:42.666667pt;}
.fs3_c00023{font-size:48.000000pt;}
.fs1_c00023{font-size:53.333333pt;}
.fs0_c00023{font-size:64.000000pt;}
.fs2_c00023{font-size:69.333333pt;}
.y0_c00023{bottom:0.000000pt;}
.y1b_c00023{bottom:2.760000pt;}
.y1a_c00023{bottom:6.425212pt;}
.y19_c00023{bottom:34.133333pt;}
.y18_c00023{bottom:57.866667pt;}
.y17_c00023{bottom:79.200000pt;}
.y16_c00023{bottom:102.266667pt;}
.y15_c00023{bottom:124.533333pt;}
.y14_c00023{bottom:147.333333pt;}
.y13_c00023{bottom:169.600000pt;}
.y12_c00023{bottom:191.333333pt;}
.y11_c00023{bottom:236.800000pt;}
.y10_c00023{bottom:258.800000pt;}
.yf_c00023{bottom:281.066667pt;}
.ye_c00023{bottom:303.600000pt;}
.yd_c00023{bottom:325.466667pt;}
.yc_c00023{bottom:347.733333pt;}
.yb_c00023{bottom:370.133333pt;}
.ya_c00023{bottom:391.466667pt;}
.y9_c00023{bottom:414.266667pt;}
.y8_c00023{bottom:436.400000pt;}
.y7_c00023{bottom:457.733333pt;}
.y6_c00023{bottom:479.733333pt;}
.y5_c00023{bottom:502.000000pt;}
.y4_c00023{bottom:523.866667pt;}
.y3_c00023{bottom:546.533333pt;}
.y2_c00023{bottom:568.000000pt;}
.y1_c00023{bottom:612.266667pt;}
.h8_c00023{height:11.733399pt;}
.h9_c00023{height:38.937500pt;}
.h4_c00023{height:62.421875pt;}
.h2_c00023{height:62.781250pt;}
.h5_c00023{height:62.812500pt;}
.h6_c00023{height:69.875000pt;}
.h3_c00023{height:81.031250pt;}
.h7_c00023{height:111.085938pt;}
.h1_c00023{height:688.666667pt;}
.h0_c00023{height:688.800000pt;}
.w2_c00023{width:93.222667pt;}
.w1_c00023{width:468.000000pt;}
.w0_c00023{width:468.266667pt;}
.x0_c00023{left:0.000000pt;}
.x4_c00023{left:107.466667pt;}
.x13_c00023{left:108.666667pt;}
.xd_c00023{left:110.400000pt;}
.xc_c00023{left:112.800000pt;}
.x9_c00023{left:114.933333pt;}
.xb_c00023{left:115.866667pt;}
.x7_c00023{left:116.800000pt;}
.x6_c00023{left:118.266667pt;}
.x2_c00023{left:120.400000pt;}
.x1_c00023{left:122.133333pt;}
.x12_c00023{left:132.533333pt;}
.xa_c00023{left:136.533333pt;}
.x8_c00023{left:139.466667pt;}
.x11_c00023{left:144.933333pt;}
.x10_c00023{left:148.800000pt;}
.x5_c00023{left:151.866667pt;}
.xe_c00023{left:164.666667pt;}
.x14_c00023{left:191.301554pt;}
.xf_c00023{left:211.866667pt;}
.x3_c00023{left:212.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ceea477189a47fb25281d929.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.284180;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:1.284668;font-style:normal;font-weight:normal;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_abcca7335cd882f0f11d6354.woff2')format("woff");}.ff3_c00024{font-family:ff3_c00024;line-height:1.568848;font-style:normal;font-weight:normal;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_8fa4cbe436d9c9221d421ab6.woff2')format("woff");}.ff4_c00024{font-family:ff4_c00024;line-height:1.284180;font-style:normal;font-weight:normal;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_3bc1e0c61ca852cd9a1277ef.woff2')format("woff");}.ff5_c00024{font-family:ff5_c00024;line-height:1.480469;font-style:normal;font-weight:normal;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_c0342dcf831d5e1e2b88d391.woff2')format("woff");}.ff6_c00024{font-family:ff6_c00024;line-height:1.592000;font-style:normal;font-weight: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_c00024;src:url('chunks/assets/font_1c1a8ce0c46d7810a702c218.woff2')format("woff");}.ff7_c00024{font-family:ff7_c00024;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00024;src:url('chunks/assets/font_f461d2531cfb9368b5edb294.woff2')format("woff");}.ff8_c00024{font-family:ff8_c00024;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00024;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff9_c00024{font-family:ff9_c00024;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00024{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00024{vertical-align:0.000000px;}
.v1_c00024{vertical-align:159.000000px;}
.ls3_c00024{letter-spacing:0.000000px;}
.ls1_c00024{letter-spacing:14.424000px;}
.ls2_c00024{letter-spacing:14.808000px;}
.ls0_c00024{letter-spacing:33.252000px;}
.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;}
}
.ws3_c00024{word-spacing:-41.587200px;}
.ws1_c00024{word-spacing:-18.798000px;}
.ws0_c00024{word-spacing:-18.000000px;}
.ws4_c00024{word-spacing:0.000000px;}
.ws2_c00024{word-spacing:11.352000px;}
._25_c00024{margin-left:-19.476000px;}
._10_c00024{margin-left:-17.496000px;}
._3_c00024{margin-left:-15.912000px;}
._26_c00024{margin-left:-14.184000px;}
._27_c00024{margin-left:-12.244800px;}
._4_c00024{margin-left:-11.088000px;}
._8_c00024{margin-left:-9.216000px;}
._1_c00024{margin-left:-7.560000px;}
._5_c00024{margin-left:-6.192000px;}
._b_c00024{margin-left:-4.968000px;}
._6_c00024{margin-left:-3.456000px;}
._7_c00024{margin-left:-1.800000px;}
._2_c00024{width:1.152000px;}
._0_c00024{width:3.096000px;}
._e_c00024{width:4.320000px;}
._c_c00024{width:5.616000px;}
._f_c00024{width:6.840000px;}
._9_c00024{width:7.848000px;}
._12_c00024{width:9.126000px;}
._13_c00024{width:10.842000px;}
._a_c00024{width:12.048000px;}
._1e_c00024{width:13.182000px;}
._11_c00024{width:14.256000px;}
._19_c00024{width:16.176000px;}
._15_c00024{width:17.976000px;}
._17_c00024{width:19.368000px;}
._20_c00024{width:20.376000px;}
._16_c00024{width:21.600000px;}
._18_c00024{width:22.920000px;}
._1a_c00024{width:24.048000px;}
._1d_c00024{width:25.152000px;}
._1b_c00024{width:26.910000px;}
._14_c00024{width:28.944000px;}
._1c_c00024{width:30.672000px;}
._22_c00024{width:32.568000px;}
._21_c00024{width:36.168000px;}
._24_c00024{width:38.490000px;}
._1f_c00024{width:50.160000px;}
._23_c00024{width:51.786000px;}
._d_c00024{width:72.432000px;}
.fc2_c00024{color:transparent;}
.fc1_c00024{color:rgb(128,128,128);}
.fc0_c00024{color:rgb(0,0,0);}
.fs3_c00024{font-size:24.000000px;}
.fs5_c00024{font-size:48.000000px;}
.fs4_c00024{font-size:57.600000px;}
.fs0_c00024{font-size:72.000000px;}
.fs1_c00024{font-size:78.000000px;}
.fs2_c00024{font-size:234.000000px;}
.y0_c00024{bottom:0.000000px;}
.y1c_c00024{bottom:3.105000px;}
.y1b_c00024{bottom:7.228369px;}
.y1a_c00024{bottom:34.020000px;}
.y19_c00024{bottom:58.620000px;}
.y18_c00024{bottom:84.270000px;}
.y17_c00024{bottom:109.920000px;}
.y16_c00024{bottom:134.970000px;}
.y15_c00024{bottom:160.620000px;}
.y14_c00024{bottom:185.670000px;}
.y13_c00024{bottom:210.870000px;}
.y12_c00024{bottom:236.220000px;}
.y11_c00024{bottom:260.520000px;}
.y10_c00024{bottom:283.770000px;}
.yf_c00024{bottom:308.070000px;}
.ye_c00024{bottom:333.720000px;}
.yc_c00024{bottom:343.920000px;}
.yd_c00024{bottom:359.070000px;}
.yb_c00024{bottom:408.270000px;}
.ya_c00024{bottom:433.620000px;}
.y9_c00024{bottom:458.370000px;}
.y8_c00024{bottom:507.870000px;}
.y7_c00024{bottom:532.470000px;}
.y6_c00024{bottom:556.770000px;}
.y5_c00024{bottom:582.570000px;}
.y4_c00024{bottom:608.070000px;}
.y3_c00024{bottom:632.520000px;}
.y2_c00024{bottom:656.820000px;}
.y1_c00024{bottom:681.720000px;}
.h9_c00024{height:13.200073px;}
.h7_c00024{height:28.089844px;}
.h6_c00024{height:30.386719px;}
.ha_c00024{height:43.804688px;}
.h3_c00024{height:70.628906px;}
.h2_c00024{height:70.664062px;}
.h8_c00024{height:78.609375px;}
.h4_c00024{height:98.756836px;}
.h5_c00024{height:229.543945px;}
.h1_c00024{height:777.000000px;}
.h0_c00024{height:777.300000px;}
.w2_c00024{width:104.875500px;}
.w0_c00024{width:546.450000px;}
.w1_c00024{width:546.750000px;}
.x0_c00024{left:0.000000px;}
.x1_c00024{left:35.400000px;}
.x2_c00024{left:36.900000px;}
.x4_c00024{left:38.850000px;}
.xb_c00024{left:40.200000px;}
.xc_c00024{left:41.400000px;}
.x6_c00024{left:55.050000px;}
.x5_c00024{left:61.350000px;}
.x3_c00024{left:62.550000px;}
.xa_c00024{left:63.750000px;}
.xd_c00024{left:66.150000px;}
.xe_c00024{left:69.900000px;}
.x9_c00024{left:87.750000px;}
.x7_c00024{left:90.150000px;}
.x8_c00024{left:151.200000px;}
.x10_c00024{left:225.039230px;}
.xf_c00024{left:292.200000px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.v1_c00024{vertical-align:141.333333pt;}
.ls3_c00024{letter-spacing:0.000000pt;}
.ls1_c00024{letter-spacing:12.821333pt;}
.ls2_c00024{letter-spacing:13.162667pt;}
.ls0_c00024{letter-spacing:29.557333pt;}
.ws3_c00024{word-spacing:-36.966400pt;}
.ws1_c00024{word-spacing:-16.709333pt;}
.ws0_c00024{word-spacing:-16.000000pt;}
.ws4_c00024{word-spacing:0.000000pt;}
.ws2_c00024{word-spacing:10.090667pt;}
._25_c00024{margin-left:-17.312000pt;}
._10_c00024{margin-left:-15.552000pt;}
._3_c00024{margin-left:-14.144000pt;}
._26_c00024{margin-left:-12.608000pt;}
._27_c00024{margin-left:-10.884267pt;}
._4_c00024{margin-left:-9.856000pt;}
._8_c00024{margin-left:-8.192000pt;}
._1_c00024{margin-left:-6.720000pt;}
._5_c00024{margin-left:-5.504000pt;}
._b_c00024{margin-left:-4.416000pt;}
._6_c00024{margin-left:-3.072000pt;}
._7_c00024{margin-left:-1.600000pt;}
._2_c00024{width:1.024000pt;}
._0_c00024{width:2.752000pt;}
._e_c00024{width:3.840000pt;}
._c_c00024{width:4.992000pt;}
._f_c00024{width:6.080000pt;}
._9_c00024{width:6.976000pt;}
._12_c00024{width:8.112000pt;}
._13_c00024{width:9.637333pt;}
._a_c00024{width:10.709333pt;}
._1e_c00024{width:11.717333pt;}
._11_c00024{width:12.672000pt;}
._19_c00024{width:14.378667pt;}
._15_c00024{width:15.978667pt;}
._17_c00024{width:17.216000pt;}
._20_c00024{width:18.112000pt;}
._16_c00024{width:19.200000pt;}
._18_c00024{width:20.373333pt;}
._1a_c00024{width:21.376000pt;}
._1d_c00024{width:22.357333pt;}
._1b_c00024{width:23.920000pt;}
._14_c00024{width:25.728000pt;}
._1c_c00024{width:27.264000pt;}
._22_c00024{width:28.949333pt;}
._21_c00024{width:32.149333pt;}
._24_c00024{width:34.213333pt;}
._1f_c00024{width:44.586667pt;}
._23_c00024{width:46.032000pt;}
._d_c00024{width:64.384000pt;}
.fs3_c00024{font-size:21.333333pt;}
.fs5_c00024{font-size:42.666667pt;}
.fs4_c00024{font-size:51.200000pt;}
.fs0_c00024{font-size:64.000000pt;}
.fs1_c00024{font-size:69.333333pt;}
.fs2_c00024{font-size:208.000000pt;}
.y0_c00024{bottom:0.000000pt;}
.y1c_c00024{bottom:2.760000pt;}
.y1b_c00024{bottom:6.425217pt;}
.y1a_c00024{bottom:30.240000pt;}
.y19_c00024{bottom:52.106667pt;}
.y18_c00024{bottom:74.906667pt;}
.y17_c00024{bottom:97.706667pt;}
.y16_c00024{bottom:119.973333pt;}
.y15_c00024{bottom:142.773333pt;}
.y14_c00024{bottom:165.040000pt;}
.y13_c00024{bottom:187.440000pt;}
.y12_c00024{bottom:209.973333pt;}
.y11_c00024{bottom:231.573333pt;}
.y10_c00024{bottom:252.240000pt;}
.yf_c00024{bottom:273.840000pt;}
.ye_c00024{bottom:296.640000pt;}
.yc_c00024{bottom:305.706667pt;}
.yd_c00024{bottom:319.173333pt;}
.yb_c00024{bottom:362.906667pt;}
.ya_c00024{bottom:385.440000pt;}
.y9_c00024{bottom:407.440000pt;}
.y8_c00024{bottom:451.440000pt;}
.y7_c00024{bottom:473.306667pt;}
.y6_c00024{bottom:494.906667pt;}
.y5_c00024{bottom:517.840000pt;}
.y4_c00024{bottom:540.506667pt;}
.y3_c00024{bottom:562.240000pt;}
.y2_c00024{bottom:583.840000pt;}
.y1_c00024{bottom:605.973333pt;}
.h9_c00024{height:11.733399pt;}
.h7_c00024{height:24.968750pt;}
.h6_c00024{height:27.010417pt;}
.ha_c00024{height:38.937500pt;}
.h3_c00024{height:62.781250pt;}
.h2_c00024{height:62.812500pt;}
.h8_c00024{height:69.875000pt;}
.h4_c00024{height:87.783854pt;}
.h5_c00024{height:204.039062pt;}
.h1_c00024{height:690.666667pt;}
.h0_c00024{height:690.933333pt;}
.w2_c00024{width:93.222667pt;}
.w0_c00024{width:485.733333pt;}
.w1_c00024{width:486.000000pt;}
.x0_c00024{left:0.000000pt;}
.x1_c00024{left:31.466667pt;}
.x2_c00024{left:32.800000pt;}
.x4_c00024{left:34.533333pt;}
.xb_c00024{left:35.733333pt;}
.xc_c00024{left:36.800000pt;}
.x6_c00024{left:48.933333pt;}
.x5_c00024{left:54.533333pt;}
.x3_c00024{left:55.600000pt;}
.xa_c00024{left:56.666667pt;}
.xd_c00024{left:58.800000pt;}
.xe_c00024{left:62.133333pt;}
.x9_c00024{left:78.000000pt;}
.x7_c00024{left:80.133333pt;}
.x8_c00024{left:134.400000pt;}
.x10_c00024{left:200.034871pt;}
.xf_c00024{left:259.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8a72462e4655c51a9fc01732.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00025;src:url('chunks/assets/font_08340692931c966b83558896.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:1.568848;font-style:normal;font-weight:normal;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_f60bd9d6ee46127684027bd7.woff2')format("woff");}.ff3_c00025{font-family:ff3_c00025;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00025;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00025{font-family:ff4_c00025;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00025;src:url('chunks/assets/font_2acdb89ddfbf50159067bd38.woff2')format("woff");}.ff5_c00025{font-family:ff5_c00025;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00025;src:url('chunks/assets/font_9e13fbd4b35c27657bc0fef4.woff2')format("woff");}.ff6_c00025{font-family:ff6_c00025;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00025;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00025{font-family:ff7_c00025;line-height:1.219238;font-style: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;}
.ls1_c00025{letter-spacing:0.000000px;}
.ls2_c00025{letter-spacing:3.000000px;}
.ls3_c00025{letter-spacing:9.000000px;}
.ls0_c00025{letter-spacing:306.900000px;}
.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;}
}
.ws2_c00025{word-spacing:-24.894000px;}
.ws1_c00025{word-spacing:-23.250000px;}
.ws0_c00025{word-spacing:-20.352000px;}
.ws3_c00025{word-spacing:-18.000000px;}
.ws4_c00025{word-spacing:-14.250000px;}
.ws5_c00025{word-spacing:0.000000px;}
._12_c00025{margin-left:-28.815000px;}
._4_c00025{margin-left:-19.368000px;}
._19_c00025{margin-left:-17.154000px;}
._14_c00025{margin-left:-13.542000px;}
._3_c00025{margin-left:-12.384000px;}
._13_c00025{margin-left:-10.740000px;}
._10_c00025{margin-left:-9.423000px;}
._f_c00025{margin-left:-8.280000px;}
._8_c00025{margin-left:-6.768000px;}
._6_c00025{margin-left:-4.896000px;}
._e_c00025{margin-left:-3.528000px;}
._a_c00025{margin-left:-2.304000px;}
._d_c00025{margin-left:-1.143000px;}
._b_c00025{width:1.044000px;}
._5_c00025{width:2.088000px;}
._7_c00025{width:3.888000px;}
._2_c00025{width:5.100000px;}
._c_c00025{width:6.270000px;}
._1_c00025{width:7.560000px;}
._0_c00025{width:9.540000px;}
._1a_c00025{width:10.548000px;}
._11_c00025{width:11.703000px;}
._9_c00025{width:13.836000px;}
._16_c00025{width:20.097000px;}
._15_c00025{width:23.085000px;}
._17_c00025{width:27.702000px;}
._18_c00025{width:69.390000px;}
._1b_c00025{width:116.115000px;}
.fc2_c00025{color:transparent;}
.fc1_c00025{color:rgb(128,128,128);}
.fc0_c00025{color:rgb(0,0,0);}
.fs5_c00025{font-size:24.000000px;}
.fs6_c00025{font-size:48.000000px;}
.fs3_c00025{font-size:54.000000px;}
.fs2_c00025{font-size:57.000000px;}
.fs0_c00025{font-size:60.000000px;}
.fs1_c00025{font-size:72.000000px;}
.fs4_c00025{font-size:78.000000px;}
.y0_c00025{bottom:0.000000px;}
.y20_c00025{bottom:3.105000px;}
.y1f_c00025{bottom:7.228369px;}
.y10_c00025{bottom:345.870000px;}
.y1e_c00025{bottom:349.320000px;}
.yf_c00025{bottom:367.470000px;}
.y1d_c00025{bottom:371.520000px;}
.ye_c00025{bottom:389.070000px;}
.y1c_c00025{bottom:393.570000px;}
.yd_c00025{bottom:409.320000px;}
.y1b_c00025{bottom:415.020000px;}
.yc_c00025{bottom:430.920000px;}
.y1a_c00025{bottom:433.320000px;}
.yb_c00025{bottom:451.470000px;}
.y19_c00025{bottom:455.970000px;}
.ya_c00025{bottom:471.870000px;}
.y18_c00025{bottom:476.820000px;}
.y9_c00025{bottom:492.120000px;}
.y17_c00025{bottom:496.770000px;}
.y8_c00025{bottom:512.970000px;}
.y16_c00025{bottom:518.670000px;}
.y7_c00025{bottom:533.820000px;}
.y15_c00025{bottom:538.620000px;}
.y6_c00025{bottom:554.220000px;}
.y14_c00025{bottom:558.570000px;}
.y5_c00025{bottom:575.370000px;}
.y13_c00025{bottom:580.470000px;}
.y4_c00025{bottom:595.320000px;}
.y12_c00025{bottom:600.120000px;}
.y3_c00025{bottom:617.670000px;}
.y11_c00025{bottom:620.670000px;}
.y2_c00025{bottom:661.770000px;}
.y1_c00025{bottom:687.720000px;}
.h8_c00025{height:13.200073px;}
.h9_c00025{height:43.804688px;}
.h7_c00025{height:52.998047px;}
.h6_c00025{height:55.914551px;}
.h2_c00025{height:55.942383px;}
.h4_c00025{height:63.202148px;}
.h3_c00025{height:70.664062px;}
.h5_c00025{height:78.609375px;}
.h1_c00025{height:91.160156px;}
.h0_c00025{height:793.500000px;}
.w2_c00025{width:104.875500px;}
.w1_c00025{width:535.500000px;}
.w0_c00025{width:535.650000px;}
.x0_c00025{left:0.000000px;}
.x5_c00025{left:115.800000px;}
.x7_c00025{left:116.850000px;}
.x4_c00025{left:118.500000px;}
.x1_c00025{left:119.700000px;}
.x8_c00025{left:124.500000px;}
.x6_c00025{left:127.950000px;}
.x3_c00025{left:148.200000px;}
.x10_c00025{left:219.639267px;}
.x2_c00025{left:262.950000px;}
.xf_c00025{left:310.800000px;}
.xd_c00025{left:313.650000px;}
.x9_c00025{left:317.250000px;}
.xb_c00025{left:318.900000px;}
.xe_c00025{left:324.000000px;}
.xa_c00025{left:328.350000px;}
.xc_c00025{left:350.400000px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls1_c00025{letter-spacing:0.000000pt;}
.ls2_c00025{letter-spacing:2.666667pt;}
.ls3_c00025{letter-spacing:8.000000pt;}
.ls0_c00025{letter-spacing:272.800000pt;}
.ws2_c00025{word-spacing:-22.128000pt;}
.ws1_c00025{word-spacing:-20.666667pt;}
.ws0_c00025{word-spacing:-18.090667pt;}
.ws3_c00025{word-spacing:-16.000000pt;}
.ws4_c00025{word-spacing:-12.666667pt;}
.ws5_c00025{word-spacing:0.000000pt;}
._12_c00025{margin-left:-25.613333pt;}
._4_c00025{margin-left:-17.216000pt;}
._19_c00025{margin-left:-15.248000pt;}
._14_c00025{margin-left:-12.037333pt;}
._3_c00025{margin-left:-11.008000pt;}
._13_c00025{margin-left:-9.546667pt;}
._10_c00025{margin-left:-8.376000pt;}
._f_c00025{margin-left:-7.360000pt;}
._8_c00025{margin-left:-6.016000pt;}
._6_c00025{margin-left:-4.352000pt;}
._e_c00025{margin-left:-3.136000pt;}
._a_c00025{margin-left:-2.048000pt;}
._d_c00025{margin-left:-1.016000pt;}
._b_c00025{width:0.928000pt;}
._5_c00025{width:1.856000pt;}
._7_c00025{width:3.456000pt;}
._2_c00025{width:4.533333pt;}
._c_c00025{width:5.573333pt;}
._1_c00025{width:6.720000pt;}
._0_c00025{width:8.480000pt;}
._1a_c00025{width:9.376000pt;}
._11_c00025{width:10.402667pt;}
._9_c00025{width:12.298667pt;}
._16_c00025{width:17.864000pt;}
._15_c00025{width:20.520000pt;}
._17_c00025{width:24.624000pt;}
._18_c00025{width:61.680000pt;}
._1b_c00025{width:103.213333pt;}
.fs5_c00025{font-size:21.333333pt;}
.fs6_c00025{font-size:42.666667pt;}
.fs3_c00025{font-size:48.000000pt;}
.fs2_c00025{font-size:50.666667pt;}
.fs0_c00025{font-size:53.333333pt;}
.fs1_c00025{font-size:64.000000pt;}
.fs4_c00025{font-size:69.333333pt;}
.y0_c00025{bottom:0.000000pt;}
.y20_c00025{bottom:2.760000pt;}
.y1f_c00025{bottom:6.425217pt;}
.y10_c00025{bottom:307.440000pt;}
.y1e_c00025{bottom:310.506667pt;}
.yf_c00025{bottom:326.640000pt;}
.y1d_c00025{bottom:330.240000pt;}
.ye_c00025{bottom:345.840000pt;}
.y1c_c00025{bottom:349.840000pt;}
.yd_c00025{bottom:363.840000pt;}
.y1b_c00025{bottom:368.906667pt;}
.yc_c00025{bottom:383.040000pt;}
.y1a_c00025{bottom:385.173333pt;}
.yb_c00025{bottom:401.306667pt;}
.y19_c00025{bottom:405.306667pt;}
.ya_c00025{bottom:419.440000pt;}
.y18_c00025{bottom:423.840000pt;}
.y9_c00025{bottom:437.440000pt;}
.y17_c00025{bottom:441.573333pt;}
.y8_c00025{bottom:455.973333pt;}
.y16_c00025{bottom:461.040000pt;}
.y7_c00025{bottom:474.506667pt;}
.y15_c00025{bottom:478.773333pt;}
.y6_c00025{bottom:492.640000pt;}
.y14_c00025{bottom:496.506667pt;}
.y5_c00025{bottom:511.440000pt;}
.y13_c00025{bottom:515.973333pt;}
.y4_c00025{bottom:529.173333pt;}
.y12_c00025{bottom:533.440000pt;}
.y3_c00025{bottom:549.040000pt;}
.y11_c00025{bottom:551.706667pt;}
.y2_c00025{bottom:588.240000pt;}
.y1_c00025{bottom:611.306667pt;}
.h8_c00025{height:11.733399pt;}
.h9_c00025{height:38.937500pt;}
.h7_c00025{height:47.109375pt;}
.h6_c00025{height:49.701823pt;}
.h2_c00025{height:49.726562pt;}
.h4_c00025{height:56.179688pt;}
.h3_c00025{height:62.812500pt;}
.h5_c00025{height:69.875000pt;}
.h1_c00025{height:81.031250pt;}
.h0_c00025{height:705.333333pt;}
.w2_c00025{width:93.222667pt;}
.w1_c00025{width:476.000000pt;}
.w0_c00025{width:476.133333pt;}
.x0_c00025{left:0.000000pt;}
.x5_c00025{left:102.933333pt;}
.x7_c00025{left:103.866667pt;}
.x4_c00025{left:105.333333pt;}
.x1_c00025{left:106.400000pt;}
.x8_c00025{left:110.666667pt;}
.x6_c00025{left:113.733333pt;}
.x3_c00025{left:131.733333pt;}
.x10_c00025{left:195.234904pt;}
.x2_c00025{left:233.733333pt;}
.xf_c00025{left:276.266667pt;}
.xd_c00025{left:278.800000pt;}
.x9_c00025{left:282.000000pt;}
.xb_c00025{left:283.466667pt;}
.xe_c00025{left:288.000000pt;}
.xa_c00025{left:291.866667pt;}
.xc_c00025{left:311.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2ed52bb5d3a3613ede19d7c0.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00026;src:url('chunks/assets/font_49f28697d18cff9ff6e9c407.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.568848;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00026{font-family:ff3_c00026;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00026;src:url('chunks/assets/font_ec1cbafe5de7cf80b7a0312e.woff2')format("woff");}.ff4_c00026{font-family:ff4_c00026;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00026;src:url('chunks/assets/font_0559fe7d955e99a3699e5843.woff2')format("woff");}.ff5_c00026{font-family:ff5_c00026;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00026;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00026{font-family:ff6_c00026;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00026{vertical-align:0.000000px;}
.ls7_c00026{letter-spacing:-12.000000px;}
.ls2_c00026{letter-spacing:0.000000px;}
.ls8_c00026{letter-spacing:3.000000px;}
.ls1_c00026{letter-spacing:12.171000px;}
.ls0_c00026{letter-spacing:18.048000px;}
.ls4_c00026{letter-spacing:24.000000px;}
.ls6_c00026{letter-spacing:33.000000px;}
.ls5_c00026{letter-spacing:51.000000px;}
.ls3_c00026{letter-spacing:87.000000px;}
.sc__c00026{text-shadow:none;}
.sc0_c00026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00026{-webkit-text-stroke:0px transparent;}
.sc0_c00026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00026{word-spacing:-72.000000px;}
.ws2_c00026{word-spacing:-61.596000px;}
.ws1_c00026{word-spacing:-25.260000px;}
.ws4_c00026{word-spacing:-21.000000px;}
.ws0_c00026{word-spacing:-18.000000px;}
.ws6_c00026{word-spacing:-17.352000px;}
.ws5_c00026{word-spacing:-11.394000px;}
.ws7_c00026{word-spacing:0.000000px;}
._b_c00026{margin-left:-25.860000px;}
._c_c00026{margin-left:-16.212000px;}
._a_c00026{margin-left:-10.392000px;}
._1c_c00026{margin-left:-7.164000px;}
._15_c00026{margin-left:-5.964000px;}
._8_c00026{margin-left:-4.212000px;}
._7_c00026{margin-left:-2.496000px;}
._11_c00026{margin-left:-1.032000px;}
._13_c00026{width:1.932000px;}
._f_c00026{width:3.276000px;}
._e_c00026{width:5.040000px;}
._2_c00026{width:6.120000px;}
._1b_c00026{width:7.293000px;}
._10_c00026{width:8.472000px;}
._9_c00026{width:10.164000px;}
._1_c00026{width:11.376000px;}
._18_c00026{width:12.456000px;}
._0_c00026{width:13.608000px;}
._d_c00026{width:15.456000px;}
._12_c00026{width:18.312000px;}
._16_c00026{width:22.296000px;}
._17_c00026{width:24.384000px;}
._14_c00026{width:28.332000px;}
._19_c00026{width:30.984000px;}
._1a_c00026{width:38.520000px;}
._5_c00026{width:85.260000px;}
._4_c00026{width:87.840000px;}
._6_c00026{width:89.700000px;}
._3_c00026{width:91.260000px;}
._1d_c00026{width:159.600000px;}
.fc2_c00026{color:transparent;}
.fc1_c00026{color:rgb(128,128,128);}
.fc0_c00026{color:rgb(0,0,0);}
.fs6_c00026{font-size:48.000000px;}
.fs4_c00026{font-size:54.000000px;}
.fs1_c00026{font-size:60.000000px;}
.fs5_c00026{font-size:69.000000px;}
.fs0_c00026{font-size:72.000000px;}
.fs3_c00026{font-size:84.000000px;}
.fs2_c00026{font-size:156.000000px;}
.y0_c00026{bottom:0.000000px;}
.y18_c00026{bottom:3.105000px;}
.y17_c00026{bottom:7.228357px;}
.y16_c00026{bottom:35.130000px;}
.y15_c00026{bottom:59.430000px;}
.y14_c00026{bottom:84.780000px;}
.y13_c00026{bottom:109.980000px;}
.y12_c00026{bottom:135.030000px;}
.y11_c00026{bottom:159.930000px;}
.y10_c00026{bottom:184.380000px;}
.yf_c00026{bottom:209.580000px;}
.ye_c00026{bottom:234.330000px;}
.yd_c00026{bottom:259.230000px;}
.yc_c00026{bottom:282.480000px;}
.yb_c00026{bottom:305.880000px;}
.ya_c00026{bottom:332.130000px;}
.y9_c00026{bottom:356.430000px;}
.y8_c00026{bottom:385.380000px;}
.y7_c00026{bottom:413.430000px;}
.y6_c00026{bottom:441.180000px;}
.y5_c00026{bottom:468.780000px;}
.y4_c00026{bottom:495.480000px;}
.y3_c00026{bottom:537.930000px;}
.y2_c00026{bottom:587.580000px;}
.y1_c00026{bottom:726.930000px;}
.h8_c00026{height:13.200074px;}
.h9_c00026{height:43.804688px;}
.h6_c00026{height:52.971680px;}
.h1_c00026{height:70.628906px;}
.h2_c00026{height:75.966797px;}
.h4_c00026{height:82.400391px;}
.h5_c00026{height:82.441406px;}
.h7_c00026{height:91.160156px;}
.h3_c00026{height:197.513672px;}
.h0_c00026{height:765.750000px;}
.w2_c00026{width:104.875500px;}
.w0_c00026{width:533.775000px;}
.w1_c00026{width:534.000000px;}
.x0_c00026{left:0.000000px;}
.x7_c00026{left:26.700000px;}
.x2_c00026{left:30.750000px;}
.xb_c00026{left:32.100000px;}
.xc_c00026{left:33.450000px;}
.x8_c00026{left:35.400000px;}
.x4_c00026{left:57.750000px;}
.x3_c00026{left:98.850000px;}
.x5_c00026{left:126.900000px;}
.x6_c00026{left:180.600000px;}
.x9_c00026{left:183.900000px;}
.xa_c00026{left:185.250000px;}
.xe_c00026{left:218.701767px;}
.xd_c00026{left:319.350000px;}
.x1_c00026{left:341.100000px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls7_c00026{letter-spacing:-10.666667pt;}
.ls2_c00026{letter-spacing:0.000000pt;}
.ls8_c00026{letter-spacing:2.666667pt;}
.ls1_c00026{letter-spacing:10.818667pt;}
.ls0_c00026{letter-spacing:16.042667pt;}
.ls4_c00026{letter-spacing:21.333333pt;}
.ls6_c00026{letter-spacing:29.333333pt;}
.ls5_c00026{letter-spacing:45.333333pt;}
.ls3_c00026{letter-spacing:77.333333pt;}
.ws3_c00026{word-spacing:-64.000000pt;}
.ws2_c00026{word-spacing:-54.752000pt;}
.ws1_c00026{word-spacing:-22.453333pt;}
.ws4_c00026{word-spacing:-18.666667pt;}
.ws0_c00026{word-spacing:-16.000000pt;}
.ws6_c00026{word-spacing:-15.424000pt;}
.ws5_c00026{word-spacing:-10.128000pt;}
.ws7_c00026{word-spacing:0.000000pt;}
._b_c00026{margin-left:-22.986667pt;}
._c_c00026{margin-left:-14.410667pt;}
._a_c00026{margin-left:-9.237333pt;}
._1c_c00026{margin-left:-6.368000pt;}
._15_c00026{margin-left:-5.301333pt;}
._8_c00026{margin-left:-3.744000pt;}
._7_c00026{margin-left:-2.218667pt;}
._11_c00026{margin-left:-0.917333pt;}
._13_c00026{width:1.717333pt;}
._f_c00026{width:2.912000pt;}
._e_c00026{width:4.480000pt;}
._2_c00026{width:5.440000pt;}
._1b_c00026{width:6.482667pt;}
._10_c00026{width:7.530667pt;}
._9_c00026{width:9.034667pt;}
._1_c00026{width:10.112000pt;}
._18_c00026{width:11.072000pt;}
._0_c00026{width:12.096000pt;}
._d_c00026{width:13.738667pt;}
._12_c00026{width:16.277333pt;}
._16_c00026{width:19.818667pt;}
._17_c00026{width:21.674667pt;}
._14_c00026{width:25.184000pt;}
._19_c00026{width:27.541333pt;}
._1a_c00026{width:34.240000pt;}
._5_c00026{width:75.786667pt;}
._4_c00026{width:78.080000pt;}
._6_c00026{width:79.733333pt;}
._3_c00026{width:81.120000pt;}
._1d_c00026{width:141.866667pt;}
.fs6_c00026{font-size:42.666667pt;}
.fs4_c00026{font-size:48.000000pt;}
.fs1_c00026{font-size:53.333333pt;}
.fs5_c00026{font-size:61.333333pt;}
.fs0_c00026{font-size:64.000000pt;}
.fs3_c00026{font-size:74.666667pt;}
.fs2_c00026{font-size:138.666667pt;}
.y0_c00026{bottom:0.000000pt;}
.y18_c00026{bottom:2.760000pt;}
.y17_c00026{bottom:6.425206pt;}
.y16_c00026{bottom:31.226667pt;}
.y15_c00026{bottom:52.826667pt;}
.y14_c00026{bottom:75.360000pt;}
.y13_c00026{bottom:97.760000pt;}
.y12_c00026{bottom:120.026667pt;}
.y11_c00026{bottom:142.160000pt;}
.y10_c00026{bottom:163.893333pt;}
.yf_c00026{bottom:186.293333pt;}
.ye_c00026{bottom:208.293333pt;}
.yd_c00026{bottom:230.426667pt;}
.yc_c00026{bottom:251.093333pt;}
.yb_c00026{bottom:271.893333pt;}
.ya_c00026{bottom:295.226667pt;}
.y9_c00026{bottom:316.826667pt;}
.y8_c00026{bottom:342.560000pt;}
.y7_c00026{bottom:367.493333pt;}
.y6_c00026{bottom:392.160000pt;}
.y5_c00026{bottom:416.693333pt;}
.y4_c00026{bottom:440.426667pt;}
.y3_c00026{bottom:478.160000pt;}
.y2_c00026{bottom:522.293333pt;}
.y1_c00026{bottom:646.160000pt;}
.h8_c00026{height:11.733399pt;}
.h9_c00026{height:38.937500pt;}
.h6_c00026{height:47.085938pt;}
.h1_c00026{height:62.781250pt;}
.h2_c00026{height:67.526042pt;}
.h4_c00026{height:73.244792pt;}
.h5_c00026{height:73.281250pt;}
.h7_c00026{height:81.031250pt;}
.h3_c00026{height:175.567708pt;}
.h0_c00026{height:680.666667pt;}
.w2_c00026{width:93.222667pt;}
.w0_c00026{width:474.466667pt;}
.w1_c00026{width:474.666667pt;}
.x0_c00026{left:0.000000pt;}
.x7_c00026{left:23.733333pt;}
.x2_c00026{left:27.333333pt;}
.xb_c00026{left:28.533333pt;}
.xc_c00026{left:29.733333pt;}
.x8_c00026{left:31.466667pt;}
.x4_c00026{left:51.333333pt;}
.x3_c00026{left:87.866667pt;}
.x5_c00026{left:112.800000pt;}
.x6_c00026{left:160.533333pt;}
.x9_c00026{left:163.466667pt;}
.xa_c00026{left:164.666667pt;}
.xe_c00026{left:194.401571pt;}
.xd_c00026{left:283.866667pt;}
.x1_c00026{left:303.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dd04db45b44e66e2271f19b1.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00027;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00027;src:url('chunks/assets/font_5354aff3eca1967759d2e907.woff2')format("woff");}.ff3_c00027{font-family:ff3_c00027;line-height:1.568848;font-style:normal;font-weight:normal;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_fc87b9a7fd15ed7c9f2a9858.woff2')format("woff");}.ff4_c00027{font-family:ff4_c00027;line-height:1.480469;font-style:normal;font-weight:normal;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_77bc65af788c8a0250496952.woff2')format("woff");}.ff5_c00027{font-family:ff5_c00027;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00027;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00027{font-family:ff6_c00027;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00027{vertical-align:0.000000px;}
.ls1_c00027{letter-spacing:0.000000px;}
.ls0_c00027{letter-spacing:3.000000px;}
.sc__c00027{text-shadow:none;}
.sc0_c00027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00027{-webkit-text-stroke:0px transparent;}
.sc0_c00027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00027{word-spacing:-33.192000px;}
.ws1_c00027{word-spacing:-20.352000px;}
.ws2_c00027{word-spacing:0.000000px;}
._d_c00027{margin-left:-8.544000px;}
._b_c00027{margin-left:-6.972000px;}
._a_c00027{margin-left:-5.556000px;}
._2_c00027{margin-left:-3.948000px;}
._3_c00027{margin-left:-2.628000px;}
._5_c00027{margin-left:-1.608000px;}
._1_c00027{width:1.848000px;}
._4_c00027{width:2.964000px;}
._0_c00027{width:4.116000px;}
._6_c00027{width:6.036000px;}
._9_c00027{width:7.632000px;}
._c_c00027{width:9.252000px;}
._7_c00027{width:11.004000px;}
._8_c00027{width:12.408000px;}
.fc2_c00027{color:transparent;}
.fc1_c00027{color:rgb(128,128,128);}
.fc0_c00027{color:rgb(0,0,0);}
.fs3_c00027{font-size:48.000000px;}
.fs2_c00027{font-size:60.000000px;}
.fs1_c00027{font-size:72.000000px;}
.fs0_c00027{font-size:84.000000px;}
.y0_c00027{bottom:0.000000px;}
.y1f_c00027{bottom:3.105000px;}
.y1e_c00027{bottom:7.228363px;}
.y1d_c00027{bottom:33.000000px;}
.y1c_c00027{bottom:55.650000px;}
.y1b_c00027{bottom:81.300000px;}
.y1a_c00027{bottom:105.600000px;}
.y19_c00027{bottom:131.850000px;}
.y18_c00027{bottom:156.300000px;}
.y17_c00027{bottom:181.200000px;}
.y16_c00027{bottom:206.100000px;}
.y15_c00027{bottom:230.850000px;}
.y14_c00027{bottom:255.450000px;}
.y13_c00027{bottom:279.450000px;}
.y12_c00027{bottom:304.350000px;}
.y11_c00027{bottom:328.950000px;}
.y10_c00027{bottom:353.400000px;}
.yf_c00027{bottom:378.300000px;}
.ye_c00027{bottom:403.200000px;}
.yd_c00027{bottom:427.650000px;}
.yc_c00027{bottom:451.950000px;}
.yb_c00027{bottom:477.600000px;}
.ya_c00027{bottom:501.900000px;}
.y9_c00027{bottom:526.200000px;}
.y8_c00027{bottom:550.200000px;}
.y7_c00027{bottom:574.800000px;}
.y6_c00027{bottom:599.400000px;}
.y5_c00027{bottom:623.550000px;}
.y4_c00027{bottom:648.300000px;}
.y3_c00027{bottom:673.050000px;}
.y2_c00027{bottom:697.350000px;}
.y1_c00027{bottom:723.300000px;}
.h4_c00027{height:13.200074px;}
.h5_c00027{height:43.804688px;}
.h2_c00027{height:82.441406px;}
.h3_c00027{height:91.160156px;}
.h1_c00027{height:793.500000px;}
.h0_c00027{height:793.800000px;}
.w2_c00027{width:104.875500px;}
.w0_c00027{width:544.350000px;}
.w1_c00027{width:544.500000px;}
.x0_c00027{left:0.000000px;}
.x2_c00027{left:117.150000px;}
.x3_c00027{left:119.100000px;}
.x4_c00027{left:120.150000px;}
.x5_c00027{left:121.200000px;}
.x6_c00027{left:122.400000px;}
.x7_c00027{left:123.900000px;}
.x8_c00027{left:124.950000px;}
.x9_c00027{left:126.000000px;}
.xa_c00027{left:127.800000px;}
.xb_c00027{left:128.850000px;}
.xc_c00027{left:130.200000px;}
.xd_c00027{left:131.400000px;}
.xf_c00027{left:223.989258px;}
.x1_c00027{left:233.550000px;}
.xe_c00027{left:492.450000px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.ls1_c00027{letter-spacing:0.000000pt;}
.ls0_c00027{letter-spacing:2.666667pt;}
.ws0_c00027{word-spacing:-29.504000pt;}
.ws1_c00027{word-spacing:-18.090667pt;}
.ws2_c00027{word-spacing:0.000000pt;}
._d_c00027{margin-left:-7.594667pt;}
._b_c00027{margin-left:-6.197333pt;}
._a_c00027{margin-left:-4.938667pt;}
._2_c00027{margin-left:-3.509333pt;}
._3_c00027{margin-left:-2.336000pt;}
._5_c00027{margin-left:-1.429333pt;}
._1_c00027{width:1.642667pt;}
._4_c00027{width:2.634667pt;}
._0_c00027{width:3.658667pt;}
._6_c00027{width:5.365333pt;}
._9_c00027{width:6.784000pt;}
._c_c00027{width:8.224000pt;}
._7_c00027{width:9.781333pt;}
._8_c00027{width:11.029333pt;}
.fs3_c00027{font-size:42.666667pt;}
.fs2_c00027{font-size:53.333333pt;}
.fs1_c00027{font-size:64.000000pt;}
.fs0_c00027{font-size:74.666667pt;}
.y0_c00027{bottom:0.000000pt;}
.y1f_c00027{bottom:2.760000pt;}
.y1e_c00027{bottom:6.425212pt;}
.y1d_c00027{bottom:29.333333pt;}
.y1c_c00027{bottom:49.466667pt;}
.y1b_c00027{bottom:72.266667pt;}
.y1a_c00027{bottom:93.866667pt;}
.y19_c00027{bottom:117.200000pt;}
.y18_c00027{bottom:138.933333pt;}
.y17_c00027{bottom:161.066667pt;}
.y16_c00027{bottom:183.200000pt;}
.y15_c00027{bottom:205.200000pt;}
.y14_c00027{bottom:227.066667pt;}
.y13_c00027{bottom:248.400000pt;}
.y12_c00027{bottom:270.533333pt;}
.y11_c00027{bottom:292.400000pt;}
.y10_c00027{bottom:314.133333pt;}
.yf_c00027{bottom:336.266667pt;}
.ye_c00027{bottom:358.400000pt;}
.yd_c00027{bottom:380.133333pt;}
.yc_c00027{bottom:401.733333pt;}
.yb_c00027{bottom:424.533333pt;}
.ya_c00027{bottom:446.133333pt;}
.y9_c00027{bottom:467.733333pt;}
.y8_c00027{bottom:489.066667pt;}
.y7_c00027{bottom:510.933333pt;}
.y6_c00027{bottom:532.800000pt;}
.y5_c00027{bottom:554.266667pt;}
.y4_c00027{bottom:576.266667pt;}
.y3_c00027{bottom:598.266667pt;}
.y2_c00027{bottom:619.866667pt;}
.y1_c00027{bottom:642.933333pt;}
.h4_c00027{height:11.733399pt;}
.h5_c00027{height:38.937500pt;}
.h2_c00027{height:73.281250pt;}
.h3_c00027{height:81.031250pt;}
.h1_c00027{height:705.333333pt;}
.h0_c00027{height:705.600000pt;}
.w2_c00027{width:93.222667pt;}
.w0_c00027{width:483.866667pt;}
.w1_c00027{width:484.000000pt;}
.x0_c00027{left:0.000000pt;}
.x2_c00027{left:104.133333pt;}
.x3_c00027{left:105.866667pt;}
.x4_c00027{left:106.800000pt;}
.x5_c00027{left:107.733333pt;}
.x6_c00027{left:108.800000pt;}
.x7_c00027{left:110.133333pt;}
.x8_c00027{left:111.066667pt;}
.x9_c00027{left:112.000000pt;}
.xa_c00027{left:113.600000pt;}
.xb_c00027{left:114.533333pt;}
.xc_c00027{left:115.733333pt;}
.xd_c00027{left:116.800000pt;}
.xf_c00027{left:199.101563pt;}
.x1_c00027{left:207.600000pt;}
.xe_c00027{left:437.733333pt;}
}





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

.ir_c00028:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00028{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00028;src:url('chunks/assets/font_644342f80c1290e194a76ec4.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00028;src:url('chunks/assets/font_4226620237f6ea9ff84642fc.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:1.480469;font-style:normal;font-weight:normal;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_4d1bf111bdfa25a11b862ce8.woff2')format("woff");}.ff3_c00028{font-family:ff3_c00028;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00028{font-family:ff4_c00028;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00028{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00028{vertical-align:0.000000px;}
.ls1_c00028{letter-spacing:0.000000px;}
.ls0_c00028{letter-spacing:3.000000px;}
.sc__c00028{text-shadow:none;}
.sc0_c00028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00028{-webkit-text-stroke:0px transparent;}
.sc0_c00028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00028{word-spacing:-33.192000px;}
.ws1_c00028{word-spacing:0.000000px;}
._15_c00028{margin-left:-19.224000px;}
._d_c00028{margin-left:-9.576000px;}
._11_c00028{margin-left:-7.488000px;}
._9_c00028{margin-left:-5.616000px;}
._a_c00028{margin-left:-3.816000px;}
._4_c00028{margin-left:-2.664000px;}
._8_c00028{margin-left:-1.152000px;}
._b_c00028{width:1.728000px;}
._c_c00028{width:3.024000px;}
._f_c00028{width:4.464000px;}
._6_c00028{width:6.048000px;}
._2_c00028{width:8.136000px;}
._13_c00028{width:9.144000px;}
._5_c00028{width:10.512000px;}
._10_c00028{width:11.664000px;}
._1_c00028{width:13.032000px;}
._3_c00028{width:14.400000px;}
._12_c00028{width:17.208000px;}
._0_c00028{width:20.952000px;}
._e_c00028{width:28.392000px;}
._14_c00028{width:37.800000px;}
._16_c00028{width:192.096000px;}
._7_c00028{width:372.912000px;}
.fc2_c00028{color:transparent;}
.fc1_c00028{color:rgb(128,128,128);}
.fc0_c00028{color:rgb(0,0,0);}
.fs2_c00028{font-size:48.000000px;}
.fs1_c00028{font-size:69.000000px;}
.fs0_c00028{font-size:72.000000px;}
.y0_c00028{bottom:0.000000px;}
.y1f_c00028{bottom:3.105000px;}
.y1e_c00028{bottom:7.228355px;}
.y1d_c00028{bottom:39.735000px;}
.y1c_c00028{bottom:65.385000px;}
.y1b_c00028{bottom:91.035000px;}
.y1a_c00028{bottom:116.385000px;}
.y19_c00028{bottom:141.285000px;}
.y18_c00028{bottom:166.635000px;}
.y17_c00028{bottom:191.235000px;}
.y16_c00028{bottom:215.985000px;}
.y15_c00028{bottom:241.185000px;}
.y14_c00028{bottom:265.635000px;}
.y13_c00028{bottom:288.885000px;}
.y12_c00028{bottom:312.135000px;}
.y11_c00028{bottom:337.185000px;}
.y10_c00028{bottom:361.785000px;}
.yf_c00028{bottom:386.685000px;}
.ye_c00028{bottom:411.285000px;}
.yd_c00028{bottom:435.735000px;}
.yc_c00028{bottom:461.235000px;}
.yb_c00028{bottom:485.685000px;}
.ya_c00028{bottom:510.285000px;}
.y9_c00028{bottom:534.585000px;}
.y8_c00028{bottom:559.185000px;}
.y7_c00028{bottom:582.885000px;}
.y6_c00028{bottom:607.485000px;}
.y5_c00028{bottom:631.485000px;}
.y4_c00028{bottom:656.685000px;}
.y3_c00028{bottom:680.985000px;}
.y2_c00028{bottom:706.635000px;}
.y1_c00028{bottom:731.235000px;}
.h4_c00028{height:13.200074px;}
.h5_c00028{height:43.804688px;}
.h2_c00028{height:80.758301px;}
.h3_c00028{height:91.160156px;}
.h0_c00028{height:782.175000px;}
.h1_c00028{height:782.250000px;}
.w2_c00028{width:104.875500px;}
.w1_c00028{width:543.750000px;}
.w0_c00028{width:544.050000px;}
.x0_c00028{left:0.000000px;}
.x9_c00028{left:37.050000px;}
.x8_c00028{left:38.100000px;}
.x7_c00028{left:39.750000px;}
.x6_c00028{left:40.800000px;}
.x5_c00028{left:41.850000px;}
.x4_c00028{left:43.200000px;}
.x3_c00028{left:44.850000px;}
.x2_c00028{left:45.900000px;}
.x1_c00028{left:145.800000px;}
.xb_c00028{left:223.839249px;}
.xa_c00028{left:292.200000px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.ls1_c00028{letter-spacing:0.000000pt;}
.ls0_c00028{letter-spacing:2.666667pt;}
.ws0_c00028{word-spacing:-29.504000pt;}
.ws1_c00028{word-spacing:0.000000pt;}
._15_c00028{margin-left:-17.088000pt;}
._d_c00028{margin-left:-8.512000pt;}
._11_c00028{margin-left:-6.656000pt;}
._9_c00028{margin-left:-4.992000pt;}
._a_c00028{margin-left:-3.392000pt;}
._4_c00028{margin-left:-2.368000pt;}
._8_c00028{margin-left:-1.024000pt;}
._b_c00028{width:1.536000pt;}
._c_c00028{width:2.688000pt;}
._f_c00028{width:3.968000pt;}
._6_c00028{width:5.376000pt;}
._2_c00028{width:7.232000pt;}
._13_c00028{width:8.128000pt;}
._5_c00028{width:9.344000pt;}
._10_c00028{width:10.368000pt;}
._1_c00028{width:11.584000pt;}
._3_c00028{width:12.800000pt;}
._12_c00028{width:15.296000pt;}
._0_c00028{width:18.624000pt;}
._e_c00028{width:25.237333pt;}
._14_c00028{width:33.600000pt;}
._16_c00028{width:170.752000pt;}
._7_c00028{width:331.477333pt;}
.fs2_c00028{font-size:42.666667pt;}
.fs1_c00028{font-size:61.333333pt;}
.fs0_c00028{font-size:64.000000pt;}
.y0_c00028{bottom:0.000000pt;}
.y1f_c00028{bottom:2.760000pt;}
.y1e_c00028{bottom:6.425204pt;}
.y1d_c00028{bottom:35.320000pt;}
.y1c_c00028{bottom:58.120000pt;}
.y1b_c00028{bottom:80.920000pt;}
.y1a_c00028{bottom:103.453333pt;}
.y19_c00028{bottom:125.586667pt;}
.y18_c00028{bottom:148.120000pt;}
.y17_c00028{bottom:169.986667pt;}
.y16_c00028{bottom:191.986667pt;}
.y15_c00028{bottom:214.386667pt;}
.y14_c00028{bottom:236.120000pt;}
.y13_c00028{bottom:256.786667pt;}
.y12_c00028{bottom:277.453333pt;}
.y11_c00028{bottom:299.720000pt;}
.y10_c00028{bottom:321.586667pt;}
.yf_c00028{bottom:343.720000pt;}
.ye_c00028{bottom:365.586667pt;}
.yd_c00028{bottom:387.320000pt;}
.yc_c00028{bottom:409.986667pt;}
.yb_c00028{bottom:431.720000pt;}
.ya_c00028{bottom:453.586667pt;}
.y9_c00028{bottom:475.186667pt;}
.y8_c00028{bottom:497.053333pt;}
.y7_c00028{bottom:518.120000pt;}
.y6_c00028{bottom:539.986667pt;}
.y5_c00028{bottom:561.320000pt;}
.y4_c00028{bottom:583.720000pt;}
.y3_c00028{bottom:605.320000pt;}
.y2_c00028{bottom:628.120000pt;}
.y1_c00028{bottom:649.986667pt;}
.h4_c00028{height:11.733399pt;}
.h5_c00028{height:38.937500pt;}
.h2_c00028{height:71.785156pt;}
.h3_c00028{height:81.031250pt;}
.h0_c00028{height:695.266667pt;}
.h1_c00028{height:695.333333pt;}
.w2_c00028{width:93.222667pt;}
.w1_c00028{width:483.333333pt;}
.w0_c00028{width:483.600000pt;}
.x0_c00028{left:0.000000pt;}
.x9_c00028{left:32.933333pt;}
.x8_c00028{left:33.866667pt;}
.x7_c00028{left:35.333333pt;}
.x6_c00028{left:36.266667pt;}
.x5_c00028{left:37.200000pt;}
.x4_c00028{left:38.400000pt;}
.x3_c00028{left:39.866667pt;}
.x2_c00028{left:40.800000pt;}
.x1_c00028{left:129.600000pt;}
.xb_c00028{left:198.968221pt;}
.xa_c00028{left:259.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0a34a7efff76497822d25b3f.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00029;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00029;src:url('chunks/assets/font_0d69a6228c3153f3d4c8ff50.woff2')format("woff");}.ff3_c00029{font-family:ff3_c00029;line-height:1.568848;font-style:normal;font-weight:normal;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_2dbf0d9972d68b041cb69e28.woff2')format("woff");}.ff4_c00029{font-family:ff4_c00029;line-height:1.480469;font-style:normal;font-weight:normal;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_8b3bdbcc37957823ccdd0eb3.woff2')format("woff");}.ff5_c00029{font-family:ff5_c00029;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00029;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00029{font-family:ff6_c00029;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00029{vertical-align:0.000000px;}
.ls1_c00029{letter-spacing:0.000000px;}
.ls0_c00029{letter-spacing:3.000000px;}
.sc__c00029{text-shadow:none;}
.sc0_c00029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00029{-webkit-text-stroke:0px transparent;}
.sc0_c00029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00029{word-spacing:-33.192000px;}
.ws2_c00029{word-spacing:-18.000000px;}
.ws1_c00029{word-spacing:-0.660000px;}
.ws3_c00029{word-spacing:0.000000px;}
._4_c00029{margin-left:-16.800000px;}
._12_c00029{margin-left:-13.416000px;}
._14_c00029{margin-left:-11.808000px;}
._8_c00029{margin-left:-7.560000px;}
._f_c00029{margin-left:-5.832000px;}
._6_c00029{margin-left:-4.512000px;}
._7_c00029{margin-left:-2.808000px;}
._9_c00029{margin-left:-1.584000px;}
._5_c00029{width:1.848000px;}
._2_c00029{width:3.024000px;}
._1_c00029{width:4.452000px;}
._3_c00029{width:6.048000px;}
._0_c00029{width:7.308000px;}
._13_c00029{width:8.448000px;}
._a_c00029{width:9.528000px;}
._b_c00029{width:10.872000px;}
._c_c00029{width:12.960000px;}
._e_c00029{width:14.280000px;}
._d_c00029{width:15.624000px;}
._11_c00029{width:18.300000px;}
._15_c00029{width:22.368000px;}
._10_c00029{width:25.980000px;}
.fc2_c00029{color:transparent;}
.fc1_c00029{color:rgb(128,128,128);}
.fc0_c00029{color:rgb(0,0,0);}
.fs5_c00029{font-size:48.000000px;}
.fs3_c00029{font-size:60.000000px;}
.fs2_c00029{font-size:69.000000px;}
.fs1_c00029{font-size:72.000000px;}
.fs0_c00029{font-size:84.000000px;}
.fs4_c00029{font-size:87.000000px;}
.y0_c00029{bottom:0.000000px;}
.y1e_c00029{bottom:3.105000px;}
.y1d_c00029{bottom:7.228363px;}
.y1c_c00029{bottom:61.500000px;}
.y1b_c00029{bottom:86.400000px;}
.y1a_c00029{bottom:110.700000px;}
.y19_c00029{bottom:135.750000px;}
.y18_c00029{bottom:160.350000px;}
.y17_c00029{bottom:186.000000px;}
.y16_c00029{bottom:210.300000px;}
.y15_c00029{bottom:235.650000px;}
.y14_c00029{bottom:259.950000px;}
.y13_c00029{bottom:284.250000px;}
.y12_c00029{bottom:308.850000px;}
.y11_c00029{bottom:335.100000px;}
.y10_c00029{bottom:359.100000px;}
.yf_c00029{bottom:383.850000px;}
.ye_c00029{bottom:408.000000px;}
.yd_c00029{bottom:432.450000px;}
.yc_c00029{bottom:457.650000px;}
.yb_c00029{bottom:481.350000px;}
.ya_c00029{bottom:505.800000px;}
.y9_c00029{bottom:531.150000px;}
.y8_c00029{bottom:554.550000px;}
.y7_c00029{bottom:579.450000px;}
.y6_c00029{bottom:603.450000px;}
.y5_c00029{bottom:628.500000px;}
.y4_c00029{bottom:652.050000px;}
.y3_c00029{bottom:677.400000px;}
.y2_c00029{bottom:701.250000px;}
.y1_c00029{bottom:726.750000px;}
.h6_c00029{height:13.200074px;}
.h7_c00029{height:43.804688px;}
.h5_c00029{height:60.468750px;}
.h2_c00029{height:82.441406px;}
.h3_c00029{height:91.160156px;}
.h4_c00029{height:110.151855px;}
.h0_c00029{height:792.450000px;}
.h1_c00029{height:792.750000px;}
.w2_c00029{width:104.875500px;}
.w0_c00029{width:522.450000px;}
.w1_c00029{width:522.750000px;}
.x0_c00029{left:0.000000px;}
.x3_c00029{left:108.300000px;}
.x2_c00029{left:109.350000px;}
.x4_c00029{left:111.300000px;}
.x5_c00029{left:112.650000px;}
.x6_c00029{left:113.700000px;}
.x7_c00029{left:114.750000px;}
.x8_c00029{left:115.800000px;}
.x9_c00029{left:117.150000px;}
.xa_c00029{left:118.350000px;}
.xb_c00029{left:119.850000px;}
.xc_c00029{left:213.039230px;}
.x1_c00029{left:219.000000px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls1_c00029{letter-spacing:0.000000pt;}
.ls0_c00029{letter-spacing:2.666667pt;}
.ws0_c00029{word-spacing:-29.504000pt;}
.ws2_c00029{word-spacing:-16.000000pt;}
.ws1_c00029{word-spacing:-0.586667pt;}
.ws3_c00029{word-spacing:0.000000pt;}
._4_c00029{margin-left:-14.933333pt;}
._12_c00029{margin-left:-11.925333pt;}
._14_c00029{margin-left:-10.496000pt;}
._8_c00029{margin-left:-6.720000pt;}
._f_c00029{margin-left:-5.184000pt;}
._6_c00029{margin-left:-4.010667pt;}
._7_c00029{margin-left:-2.496000pt;}
._9_c00029{margin-left:-1.408000pt;}
._5_c00029{width:1.642667pt;}
._2_c00029{width:2.688000pt;}
._1_c00029{width:3.957333pt;}
._3_c00029{width:5.376000pt;}
._0_c00029{width:6.496000pt;}
._13_c00029{width:7.509333pt;}
._a_c00029{width:8.469333pt;}
._b_c00029{width:9.664000pt;}
._c_c00029{width:11.520000pt;}
._e_c00029{width:12.693333pt;}
._d_c00029{width:13.888000pt;}
._11_c00029{width:16.266667pt;}
._15_c00029{width:19.882667pt;}
._10_c00029{width:23.093333pt;}
.fs5_c00029{font-size:42.666667pt;}
.fs3_c00029{font-size:53.333333pt;}
.fs2_c00029{font-size:61.333333pt;}
.fs1_c00029{font-size:64.000000pt;}
.fs0_c00029{font-size:74.666667pt;}
.fs4_c00029{font-size:77.333333pt;}
.y0_c00029{bottom:0.000000pt;}
.y1e_c00029{bottom:2.760000pt;}
.y1d_c00029{bottom:6.425212pt;}
.y1c_c00029{bottom:54.666667pt;}
.y1b_c00029{bottom:76.800000pt;}
.y1a_c00029{bottom:98.400000pt;}
.y19_c00029{bottom:120.666667pt;}
.y18_c00029{bottom:142.533333pt;}
.y17_c00029{bottom:165.333333pt;}
.y16_c00029{bottom:186.933333pt;}
.y15_c00029{bottom:209.466667pt;}
.y14_c00029{bottom:231.066667pt;}
.y13_c00029{bottom:252.666667pt;}
.y12_c00029{bottom:274.533333pt;}
.y11_c00029{bottom:297.866667pt;}
.y10_c00029{bottom:319.200000pt;}
.yf_c00029{bottom:341.200000pt;}
.ye_c00029{bottom:362.666667pt;}
.yd_c00029{bottom:384.400000pt;}
.yc_c00029{bottom:406.800000pt;}
.yb_c00029{bottom:427.866667pt;}
.ya_c00029{bottom:449.600000pt;}
.y9_c00029{bottom:472.133333pt;}
.y8_c00029{bottom:492.933333pt;}
.y7_c00029{bottom:515.066667pt;}
.y6_c00029{bottom:536.400000pt;}
.y5_c00029{bottom:558.666667pt;}
.y4_c00029{bottom:579.600000pt;}
.y3_c00029{bottom:602.133333pt;}
.y2_c00029{bottom:623.333333pt;}
.y1_c00029{bottom:646.000000pt;}
.h6_c00029{height:11.733399pt;}
.h7_c00029{height:38.937500pt;}
.h5_c00029{height:53.750000pt;}
.h2_c00029{height:73.281250pt;}
.h3_c00029{height:81.031250pt;}
.h4_c00029{height:97.912760pt;}
.h0_c00029{height:704.400000pt;}
.h1_c00029{height:704.666667pt;}
.w2_c00029{width:93.222667pt;}
.w0_c00029{width:464.400000pt;}
.w1_c00029{width:464.666667pt;}
.x0_c00029{left:0.000000pt;}
.x3_c00029{left:96.266667pt;}
.x2_c00029{left:97.200000pt;}
.x4_c00029{left:98.933333pt;}
.x5_c00029{left:100.133333pt;}
.x6_c00029{left:101.066667pt;}
.x7_c00029{left:102.000000pt;}
.x8_c00029{left:102.933333pt;}
.x9_c00029{left:104.133333pt;}
.xa_c00029{left:105.200000pt;}
.xb_c00029{left:106.533333pt;}
.xc_c00029{left:189.368205pt;}
.x1_c00029{left:194.666667pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00030 {
      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_c00030 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00030 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00030 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_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_dd04db45b44e66e2271f19b1.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00031;src:url('chunks/assets/font_a5409db2c933076bd97e2192.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00031;src:url('chunks/assets/font_2b08d4a9827f464922ae0b02.woff2')format("woff");}.ff3_c00031{font-family:ff3_c00031;line-height:1.568848;font-style:normal;font-weight:normal;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_f0a28ed7eb3d56a4e0324ee4.woff2')format("woff");}.ff4_c00031{font-family:ff4_c00031;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00031;src:url('chunks/assets/font_9b56414737dd8abb3454c1f6.woff2')format("woff");}.ff5_c00031{font-family:ff5_c00031;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00031;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00031{font-family:ff6_c00031;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00031{vertical-align:0.000000px;}
.ls1_c00031{letter-spacing:0.000000px;}
.ls0_c00031{letter-spacing:3.000000px;}
.sc__c00031{text-shadow:none;}
.sc0_c00031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00031{-webkit-text-stroke:0px transparent;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00031{word-spacing:-19.500000px;}
.ws0_c00031{word-spacing:-17.352000px;}
.ws3_c00031{word-spacing:0.000000px;}
.ws1_c00031{word-spacing:6.300000px;}
._d_c00031{margin-left:-18.978000px;}
._9_c00031{margin-left:-13.722000px;}
._2_c00031{margin-left:-10.920000px;}
._10_c00031{margin-left:-9.792000px;}
._b_c00031{margin-left:-7.506000px;}
._a_c00031{margin-left:-5.748000px;}
._e_c00031{margin-left:-4.506000px;}
._4_c00031{margin-left:-3.426000px;}
._3_c00031{margin-left:-2.118000px;}
._7_c00031{margin-left:-1.056000px;}
._1_c00031{width:1.596000px;}
._0_c00031{width:3.528000px;}
._6_c00031{width:5.058000px;}
._5_c00031{width:6.318000px;}
._c_c00031{width:7.356000px;}
._8_c00031{width:9.366000px;}
._f_c00031{width:11.652000px;}
._11_c00031{width:13.002000px;}
._12_c00031{width:87.072000px;}
._14_c00031{width:262.860000px;}
._15_c00031{width:270.318000px;}
._13_c00031{width:675.468000px;}
.fc2_c00031{color:transparent;}
.fc1_c00031{color:rgb(128,128,128);}
.fc0_c00031{color:rgb(0,0,0);}
.fs5_c00031{font-size:42.000000px;}
.fs6_c00031{font-size:48.000000px;}
.fs3_c00031{font-size:69.000000px;}
.fs1_c00031{font-size:72.000000px;}
.fs2_c00031{font-size:78.000000px;}
.fs4_c00031{font-size:81.000000px;}
.fs0_c00031{font-size:84.000000px;}
.y0_c00031{bottom:0.000000px;}
.y1f_c00031{bottom:3.105000px;}
.y1e_c00031{bottom:7.228371px;}
.y1d_c00031{bottom:43.665000px;}
.y1c_c00031{bottom:67.215000px;}
.y1b_c00031{bottom:94.515000px;}
.y1a_c00031{bottom:116.865000px;}
.y19_c00031{bottom:143.415000px;}
.y18_c00031{bottom:167.715000px;}
.y17_c00031{bottom:192.165000px;}
.y16_c00031{bottom:218.715000px;}
.y15_c00031{bottom:241.965000px;}
.y14_c00031{bottom:267.765000px;}
.y13_c00031{bottom:290.715000px;}
.y12_c00031{bottom:315.315000px;}
.y11_c00031{bottom:340.515000px;}
.y10_c00031{bottom:363.465000px;}
.yf_c00031{bottom:389.115000px;}
.ye_c00031{bottom:413.415000px;}
.yd_c00031{bottom:438.465000px;}
.yc_c00031{bottom:462.765000px;}
.yb_c00031{bottom:488.115000px;}
.ya_c00031{bottom:511.665000px;}
.y9_c00031{bottom:537.315000px;}
.y8_c00031{bottom:561.015000px;}
.y7_c00031{bottom:585.615000px;}
.y6_c00031{bottom:609.915000px;}
.y5_c00031{bottom:634.965000px;}
.y4_c00031{bottom:659.115000px;}
.y3_c00031{bottom:683.865000px;}
.y2_c00031{bottom:708.465000px;}
.y1_c00031{bottom:733.365000px;}
.h6_c00031{height:13.200074px;}
.h7_c00031{height:43.804688px;}
.h5_c00031{height:78.609375px;}
.h4_c00031{height:82.400391px;}
.h2_c00031{height:82.441406px;}
.h3_c00031{height:91.160156px;}
.h0_c00031{height:798.675000px;}
.h1_c00031{height:798.750000px;}
.w2_c00031{width:104.875500px;}
.w0_c00031{width:538.125000px;}
.w1_c00031{width:538.500000px;}
.x0_c00031{left:0.000000px;}
.x5_c00031{left:119.100000px;}
.x4_c00031{left:120.450000px;}
.x3_c00031{left:121.500000px;}
.x2_c00031{left:122.850000px;}
.x6_c00031{left:126.900000px;}
.x7_c00031{left:220.876740px;}
.x1_c00031{left:238.650000px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.ls1_c00031{letter-spacing:0.000000pt;}
.ls0_c00031{letter-spacing:2.666667pt;}
.ws2_c00031{word-spacing:-17.333333pt;}
.ws0_c00031{word-spacing:-15.424000pt;}
.ws3_c00031{word-spacing:0.000000pt;}
.ws1_c00031{word-spacing:5.600000pt;}
._d_c00031{margin-left:-16.869333pt;}
._9_c00031{margin-left:-12.197333pt;}
._2_c00031{margin-left:-9.706667pt;}
._10_c00031{margin-left:-8.704000pt;}
._b_c00031{margin-left:-6.672000pt;}
._a_c00031{margin-left:-5.109333pt;}
._e_c00031{margin-left:-4.005333pt;}
._4_c00031{margin-left:-3.045333pt;}
._3_c00031{margin-left:-1.882667pt;}
._7_c00031{margin-left:-0.938667pt;}
._1_c00031{width:1.418667pt;}
._0_c00031{width:3.136000pt;}
._6_c00031{width:4.496000pt;}
._5_c00031{width:5.616000pt;}
._c_c00031{width:6.538667pt;}
._8_c00031{width:8.325333pt;}
._f_c00031{width:10.357333pt;}
._11_c00031{width:11.557333pt;}
._12_c00031{width:77.397333pt;}
._14_c00031{width:233.653333pt;}
._15_c00031{width:240.282667pt;}
._13_c00031{width:600.416000pt;}
.fs5_c00031{font-size:37.333333pt;}
.fs6_c00031{font-size:42.666667pt;}
.fs3_c00031{font-size:61.333333pt;}
.fs1_c00031{font-size:64.000000pt;}
.fs2_c00031{font-size:69.333333pt;}
.fs4_c00031{font-size:72.000000pt;}
.fs0_c00031{font-size:74.666667pt;}
.y0_c00031{bottom:0.000000pt;}
.y1f_c00031{bottom:2.760000pt;}
.y1e_c00031{bottom:6.425219pt;}
.y1d_c00031{bottom:38.813333pt;}
.y1c_c00031{bottom:59.746667pt;}
.y1b_c00031{bottom:84.013333pt;}
.y1a_c00031{bottom:103.880000pt;}
.y19_c00031{bottom:127.480000pt;}
.y18_c00031{bottom:149.080000pt;}
.y17_c00031{bottom:170.813333pt;}
.y16_c00031{bottom:194.413333pt;}
.y15_c00031{bottom:215.080000pt;}
.y14_c00031{bottom:238.013333pt;}
.y13_c00031{bottom:258.413333pt;}
.y12_c00031{bottom:280.280000pt;}
.y11_c00031{bottom:302.680000pt;}
.y10_c00031{bottom:323.080000pt;}
.yf_c00031{bottom:345.880000pt;}
.ye_c00031{bottom:367.480000pt;}
.yd_c00031{bottom:389.746667pt;}
.yc_c00031{bottom:411.346667pt;}
.yb_c00031{bottom:433.880000pt;}
.ya_c00031{bottom:454.813333pt;}
.y9_c00031{bottom:477.613333pt;}
.y8_c00031{bottom:498.680000pt;}
.y7_c00031{bottom:520.546667pt;}
.y6_c00031{bottom:542.146667pt;}
.y5_c00031{bottom:564.413333pt;}
.y4_c00031{bottom:585.880000pt;}
.y3_c00031{bottom:607.880000pt;}
.y2_c00031{bottom:629.746667pt;}
.y1_c00031{bottom:651.880000pt;}
.h6_c00031{height:11.733399pt;}
.h7_c00031{height:38.937500pt;}
.h5_c00031{height:69.875000pt;}
.h4_c00031{height:73.244792pt;}
.h2_c00031{height:73.281250pt;}
.h3_c00031{height:81.031250pt;}
.h0_c00031{height:709.933333pt;}
.h1_c00031{height:710.000000pt;}
.w2_c00031{width:93.222667pt;}
.w0_c00031{width:478.333333pt;}
.w1_c00031{width:478.666667pt;}
.x0_c00031{left:0.000000pt;}
.x5_c00031{left:105.866667pt;}
.x4_c00031{left:107.066667pt;}
.x3_c00031{left:108.000000pt;}
.x2_c00031{left:109.200000pt;}
.x6_c00031{left:112.800000pt;}
.x7_c00031{left:196.334880pt;}
.x1_c00031{left:212.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_79010f8d18217de355723f0b.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.480469;font-style:normal;font-weight:normal;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_d3db690d30218f1b2343bfb3.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:1.568848;font-style:normal;font-weight:normal;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_d069739086829a3caa68aef9.woff2')format("woff");}.ff3_c00032{font-family:ff3_c00032;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00032;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00032{font-family:ff4_c00032;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00032{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00032{vertical-align:0.000000px;}
.ls4_c00032{letter-spacing:-6.000000px;}
.ls3_c00032{letter-spacing:-3.000000px;}
.ls1_c00032{letter-spacing:0.000000px;}
.ls2_c00032{letter-spacing:3.000000px;}
.ls0_c00032{letter-spacing:8.817000px;}
.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:-23.973000px;}
.ws1_c00032{word-spacing:-17.352000px;}
.ws3_c00032{word-spacing:-15.183000px;}
.ws4_c00032{word-spacing:0.000000px;}
.ws2_c00032{word-spacing:0.252000px;}
._a_c00032{margin-left:-15.984000px;}
._17_c00032{margin-left:-9.186000px;}
._8_c00032{margin-left:-8.136000px;}
._9_c00032{margin-left:-6.336000px;}
._7_c00032{margin-left:-4.464000px;}
._f_c00032{margin-left:-3.384000px;}
._3_c00032{margin-left:-2.376000px;}
._c_c00032{margin-left:-1.368000px;}
._1_c00032{width:1.944000px;}
._5_c00032{width:3.312000px;}
._2_c00032{width:4.392000px;}
._4_c00032{width:5.760000px;}
._0_c00032{width:6.984000px;}
._11_c00032{width:8.148000px;}
._d_c00032{width:9.936000px;}
._13_c00032{width:11.718000px;}
._14_c00032{width:13.419000px;}
._e_c00032{width:15.624000px;}
._b_c00032{width:16.992000px;}
._18_c00032{width:18.936000px;}
._12_c00032{width:20.706000px;}
._19_c00032{width:29.370000px;}
._10_c00032{width:34.920000px;}
._15_c00032{width:48.960000px;}
._1a_c00032{width:188.490000px;}
._16_c00032{width:258.972000px;}
._6_c00032{width:357.096000px;}
.fc2_c00032{color:transparent;}
.fc1_c00032{color:rgb(128,128,128);}
.fc0_c00032{color:rgb(0,0,0);}
.fs4_c00032{font-size:48.000000px;}
.fs2_c00032{font-size:63.000000px;}
.fs0_c00032{font-size:72.000000px;}
.fs3_c00032{font-size:78.000000px;}
.fs1_c00032{font-size:81.000000px;}
.y0_c00032{bottom:0.000000px;}
.y1f_c00032{bottom:3.105000px;}
.y1e_c00032{bottom:7.228355px;}
.y1d_c00032{bottom:52.935000px;}
.y1c_c00032{bottom:78.585000px;}
.y1b_c00032{bottom:104.535000px;}
.y1a_c00032{bottom:129.285000px;}
.y19_c00032{bottom:154.185000px;}
.y18_c00032{bottom:179.085000px;}
.y17_c00032{bottom:204.435000px;}
.y16_c00032{bottom:229.035000px;}
.y15_c00032{bottom:253.485000px;}
.y14_c00032{bottom:279.135000px;}
.y13_c00032{bottom:302.085000px;}
.y12_c00032{bottom:325.635000px;}
.y11_c00032{bottom:352.035000px;}
.y10_c00032{bottom:374.985000px;}
.yf_c00032{bottom:401.235000px;}
.ye_c00032{bottom:425.235000px;}
.yd_c00032{bottom:450.135000px;}
.yc_c00032{bottom:476.085000px;}
.yb_c00032{bottom:500.535000px;}
.ya_c00032{bottom:523.785000px;}
.y9_c00032{bottom:548.385000px;}
.y8_c00032{bottom:572.685000px;}
.y7_c00032{bottom:598.035000px;}
.y6_c00032{bottom:622.635000px;}
.y5_c00032{bottom:646.935000px;}
.y4_c00032{bottom:671.835000px;}
.y3_c00032{bottom:695.535000px;}
.y2_c00032{bottom:721.185000px;}
.y1_c00032{bottom:745.485000px;}
.h4_c00032{height:13.200074px;}
.h5_c00032{height:43.804688px;}
.h2_c00032{height:91.160156px;}
.h3_c00032{height:98.756836px;}
.h1_c00032{height:794.250000px;}
.h0_c00032{height:794.325000px;}
.w1_c00032{width:104.875500px;}
.w0_c00032{width:557.250000px;}
.x0_c00032{left:0.000000px;}
.x3_c00032{left:48.150000px;}
.x2_c00032{left:49.950000px;}
.x4_c00032{left:51.000000px;}
.x1_c00032{left:149.850000px;}
.x6_c00032{left:230.439240px;}
.x5_c00032{left:292.650000px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls4_c00032{letter-spacing:-5.333333pt;}
.ls3_c00032{letter-spacing:-2.666667pt;}
.ls1_c00032{letter-spacing:0.000000pt;}
.ls2_c00032{letter-spacing:2.666667pt;}
.ls0_c00032{letter-spacing:7.837333pt;}
.ws0_c00032{word-spacing:-21.309333pt;}
.ws1_c00032{word-spacing:-15.424000pt;}
.ws3_c00032{word-spacing:-13.496000pt;}
.ws4_c00032{word-spacing:0.000000pt;}
.ws2_c00032{word-spacing:0.224000pt;}
._a_c00032{margin-left:-14.208000pt;}
._17_c00032{margin-left:-8.165333pt;}
._8_c00032{margin-left:-7.232000pt;}
._9_c00032{margin-left:-5.632000pt;}
._7_c00032{margin-left:-3.968000pt;}
._f_c00032{margin-left:-3.008000pt;}
._3_c00032{margin-left:-2.112000pt;}
._c_c00032{margin-left:-1.216000pt;}
._1_c00032{width:1.728000pt;}
._5_c00032{width:2.944000pt;}
._2_c00032{width:3.904000pt;}
._4_c00032{width:5.120000pt;}
._0_c00032{width:6.208000pt;}
._11_c00032{width:7.242667pt;}
._d_c00032{width:8.832000pt;}
._13_c00032{width:10.416000pt;}
._14_c00032{width:11.928000pt;}
._e_c00032{width:13.888000pt;}
._b_c00032{width:15.104000pt;}
._18_c00032{width:16.832000pt;}
._12_c00032{width:18.405333pt;}
._19_c00032{width:26.106667pt;}
._10_c00032{width:31.040000pt;}
._15_c00032{width:43.520000pt;}
._1a_c00032{width:167.546667pt;}
._16_c00032{width:230.197333pt;}
._6_c00032{width:317.418667pt;}
.fs4_c00032{font-size:42.666667pt;}
.fs2_c00032{font-size:56.000000pt;}
.fs0_c00032{font-size:64.000000pt;}
.fs3_c00032{font-size:69.333333pt;}
.fs1_c00032{font-size:72.000000pt;}
.y0_c00032{bottom:0.000000pt;}
.y1f_c00032{bottom:2.760000pt;}
.y1e_c00032{bottom:6.425204pt;}
.y1d_c00032{bottom:47.053333pt;}
.y1c_c00032{bottom:69.853333pt;}
.y1b_c00032{bottom:92.920000pt;}
.y1a_c00032{bottom:114.920000pt;}
.y19_c00032{bottom:137.053333pt;}
.y18_c00032{bottom:159.186667pt;}
.y17_c00032{bottom:181.720000pt;}
.y16_c00032{bottom:203.586667pt;}
.y15_c00032{bottom:225.320000pt;}
.y14_c00032{bottom:248.120000pt;}
.y13_c00032{bottom:268.520000pt;}
.y12_c00032{bottom:289.453333pt;}
.y11_c00032{bottom:312.920000pt;}
.y10_c00032{bottom:333.320000pt;}
.yf_c00032{bottom:356.653333pt;}
.ye_c00032{bottom:377.986667pt;}
.yd_c00032{bottom:400.120000pt;}
.yc_c00032{bottom:423.186667pt;}
.yb_c00032{bottom:444.920000pt;}
.ya_c00032{bottom:465.586667pt;}
.y9_c00032{bottom:487.453333pt;}
.y8_c00032{bottom:509.053333pt;}
.y7_c00032{bottom:531.586667pt;}
.y6_c00032{bottom:553.453333pt;}
.y5_c00032{bottom:575.053333pt;}
.y4_c00032{bottom:597.186667pt;}
.y3_c00032{bottom:618.253333pt;}
.y2_c00032{bottom:641.053333pt;}
.y1_c00032{bottom:662.653333pt;}
.h4_c00032{height:11.733399pt;}
.h5_c00032{height:38.937500pt;}
.h2_c00032{height:81.031250pt;}
.h3_c00032{height:87.783854pt;}
.h1_c00032{height:706.000000pt;}
.h0_c00032{height:706.066667pt;}
.w1_c00032{width:93.222667pt;}
.w0_c00032{width:495.333333pt;}
.x0_c00032{left:0.000000pt;}
.x3_c00032{left:42.800000pt;}
.x2_c00032{left:44.400000pt;}
.x4_c00032{left:45.333333pt;}
.x1_c00032{left:133.200000pt;}
.x6_c00032{left:204.834880pt;}
.x5_c00032{left:260.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_929447969453b181d1a49540.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.568848;font-style:normal;font-weight:normal;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_ee271de89c3e12f9eeb8b501.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00033;src:url('chunks/assets/font_40ff8c6ef45154bfbb744ddf.woff2')format("woff");}.ff3_c00033{font-family:ff3_c00033;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00033;src:url('chunks/assets/font_d17ca8a78aa78ea03750b1d5.woff2')format("woff");}.ff4_c00033{font-family:ff4_c00033;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00033{font-family:ff5_c00033;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00033{vertical-align:0.000000px;}
.ls5_c00033{letter-spacing:-9.000000px;}
.ls4_c00033{letter-spacing:-6.000000px;}
.ls2_c00033{letter-spacing:0.000000px;}
.ls1_c00033{letter-spacing:3.000000px;}
.ls3_c00033{letter-spacing:6.000000px;}
.ls0_c00033{letter-spacing:30.900000px;}
.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:-36.000000px;}
.ws4_c00033{word-spacing:-31.809000px;}
.ws1_c00033{word-spacing:-24.426000px;}
.ws6_c00033{word-spacing:-20.352000px;}
.ws5_c00033{word-spacing:-18.750000px;}
.ws3_c00033{word-spacing:-16.629000px;}
.ws7_c00033{word-spacing:0.000000px;}
.ws2_c00033{word-spacing:7.716000px;}
._11_c00033{margin-left:-24.156000px;}
._12_c00033{margin-left:-19.470000px;}
._19_c00033{margin-left:-18.246000px;}
._f_c00033{margin-left:-12.672000px;}
._13_c00033{margin-left:-10.758000px;}
._a_c00033{margin-left:-9.042000px;}
._b_c00033{margin-left:-7.458000px;}
._8_c00033{margin-left:-5.808000px;}
._16_c00033{margin-left:-4.719000px;}
._4_c00033{margin-left:-3.696000px;}
._3_c00033{margin-left:-2.640000px;}
._2_c00033{margin-left:-1.254000px;}
._5_c00033{width:1.188000px;}
._0_c00033{width:2.376000px;}
._10_c00033{width:3.498000px;}
._6_c00033{width:4.554000px;}
._d_c00033{width:5.808000px;}
._14_c00033{width:7.002000px;}
._c_c00033{width:8.694000px;}
._17_c00033{width:9.831000px;}
._1_c00033{width:11.286000px;}
._18_c00033{width:13.266000px;}
._e_c00033{width:15.348000px;}
._1a_c00033{width:17.931000px;}
._1d_c00033{width:20.817000px;}
._9_c00033{width:22.920000px;}
._15_c00033{width:25.395000px;}
._1c_c00033{width:30.324000px;}
._7_c00033{width:33.918000px;}
._1b_c00033{width:92.442000px;}
._1e_c00033{width:123.207000px;}
.fc2_c00033{color:transparent;}
.fc1_c00033{color:rgb(128,128,128);}
.fc0_c00033{color:rgb(0,0,0);}
.fs4_c00033{font-size:48.000000px;}
.fs0_c00033{font-size:66.000000px;}
.fs2_c00033{font-size:69.000000px;}
.fs1_c00033{font-size:72.000000px;}
.fs3_c00033{font-size:75.000000px;}
.y0_c00033{bottom:0.000000px;}
.y1e_c00033{bottom:3.105000px;}
.y1d_c00033{bottom:7.228369px;}
.y1c_c00033{bottom:37.020000px;}
.y1b_c00033{bottom:60.120000px;}
.y1a_c00033{bottom:87.420000px;}
.y19_c00033{bottom:111.270000px;}
.y18_c00033{bottom:136.020000px;}
.y17_c00033{bottom:162.270000px;}
.y16_c00033{bottom:185.520000px;}
.y15_c00033{bottom:210.570000px;}
.y14_c00033{bottom:235.620000px;}
.y13_c00033{bottom:260.820000px;}
.y12_c00033{bottom:284.070000px;}
.y11_c00033{bottom:309.120000px;}
.y10_c00033{bottom:333.720000px;}
.yf_c00033{bottom:358.320000px;}
.ye_c00033{bottom:382.770000px;}
.yd_c00033{bottom:407.370000px;}
.yc_c00033{bottom:431.970000px;}
.yb_c00033{bottom:456.870000px;}
.ya_c00033{bottom:480.870000px;}
.y9_c00033{bottom:505.920000px;}
.y8_c00033{bottom:530.220000px;}
.y7_c00033{bottom:554.820000px;}
.y6_c00033{bottom:579.870000px;}
.y5_c00033{bottom:603.720000px;}
.y4_c00033{bottom:628.770000px;}
.y3_c00033{bottom:652.620000px;}
.y2_c00033{bottom:677.670000px;}
.y1_c00033{bottom:701.970000px;}
.h5_c00033{height:13.200073px;}
.h6_c00033{height:43.804688px;}
.h2_c00033{height:83.563477px;}
.h3_c00033{height:87.361816px;}
.h4_c00033{height:91.160156px;}
.h1_c00033{height:777.000000px;}
.h0_c00033{height:777.300000px;}
.w2_c00033{width:104.875500px;}
.w1_c00033{width:501.000000px;}
.w0_c00033{width:501.150000px;}
.x0_c00033{left:0.000000px;}
.x6_c00033{left:75.900000px;}
.x3_c00033{left:85.650000px;}
.x2_c00033{left:86.700000px;}
.x7_c00033{left:87.750000px;}
.x4_c00033{left:89.100000px;}
.x5_c00033{left:90.450000px;}
.x8_c00033{left:92.700000px;}
.x9_c00033{left:110.400000px;}
.x1_c00033{left:189.300000px;}
.xb_c00033{left:202.389267px;}
.xa_c00033{left:450.600000px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls5_c00033{letter-spacing:-8.000000pt;}
.ls4_c00033{letter-spacing:-5.333333pt;}
.ls2_c00033{letter-spacing:0.000000pt;}
.ls1_c00033{letter-spacing:2.666667pt;}
.ls3_c00033{letter-spacing:5.333333pt;}
.ls0_c00033{letter-spacing:27.466667pt;}
.ws0_c00033{word-spacing:-32.000000pt;}
.ws4_c00033{word-spacing:-28.274667pt;}
.ws1_c00033{word-spacing:-21.712000pt;}
.ws6_c00033{word-spacing:-18.090667pt;}
.ws5_c00033{word-spacing:-16.666667pt;}
.ws3_c00033{word-spacing:-14.781333pt;}
.ws7_c00033{word-spacing:0.000000pt;}
.ws2_c00033{word-spacing:6.858667pt;}
._11_c00033{margin-left:-21.472000pt;}
._12_c00033{margin-left:-17.306667pt;}
._19_c00033{margin-left:-16.218667pt;}
._f_c00033{margin-left:-11.264000pt;}
._13_c00033{margin-left:-9.562667pt;}
._a_c00033{margin-left:-8.037333pt;}
._b_c00033{margin-left:-6.629333pt;}
._8_c00033{margin-left:-5.162667pt;}
._16_c00033{margin-left:-4.194667pt;}
._4_c00033{margin-left:-3.285333pt;}
._3_c00033{margin-left:-2.346667pt;}
._2_c00033{margin-left:-1.114667pt;}
._5_c00033{width:1.056000pt;}
._0_c00033{width:2.112000pt;}
._10_c00033{width:3.109333pt;}
._6_c00033{width:4.048000pt;}
._d_c00033{width:5.162667pt;}
._14_c00033{width:6.224000pt;}
._c_c00033{width:7.728000pt;}
._17_c00033{width:8.738667pt;}
._1_c00033{width:10.032000pt;}
._18_c00033{width:11.792000pt;}
._e_c00033{width:13.642667pt;}
._1a_c00033{width:15.938667pt;}
._1d_c00033{width:18.504000pt;}
._9_c00033{width:20.373333pt;}
._15_c00033{width:22.573333pt;}
._1c_c00033{width:26.954667pt;}
._7_c00033{width:30.149333pt;}
._1b_c00033{width:82.170667pt;}
._1e_c00033{width:109.517333pt;}
.fs4_c00033{font-size:42.666667pt;}
.fs0_c00033{font-size:58.666667pt;}
.fs2_c00033{font-size:61.333333pt;}
.fs1_c00033{font-size:64.000000pt;}
.fs3_c00033{font-size:66.666667pt;}
.y0_c00033{bottom:0.000000pt;}
.y1e_c00033{bottom:2.760000pt;}
.y1d_c00033{bottom:6.425217pt;}
.y1c_c00033{bottom:32.906667pt;}
.y1b_c00033{bottom:53.440000pt;}
.y1a_c00033{bottom:77.706667pt;}
.y19_c00033{bottom:98.906667pt;}
.y18_c00033{bottom:120.906667pt;}
.y17_c00033{bottom:144.240000pt;}
.y16_c00033{bottom:164.906667pt;}
.y15_c00033{bottom:187.173333pt;}
.y14_c00033{bottom:209.440000pt;}
.y13_c00033{bottom:231.840000pt;}
.y12_c00033{bottom:252.506667pt;}
.y11_c00033{bottom:274.773333pt;}
.y10_c00033{bottom:296.640000pt;}
.yf_c00033{bottom:318.506667pt;}
.ye_c00033{bottom:340.240000pt;}
.yd_c00033{bottom:362.106667pt;}
.yc_c00033{bottom:383.973333pt;}
.yb_c00033{bottom:406.106667pt;}
.ya_c00033{bottom:427.440000pt;}
.y9_c00033{bottom:449.706667pt;}
.y8_c00033{bottom:471.306667pt;}
.y7_c00033{bottom:493.173333pt;}
.y6_c00033{bottom:515.440000pt;}
.y5_c00033{bottom:536.640000pt;}
.y4_c00033{bottom:558.906667pt;}
.y3_c00033{bottom:580.106667pt;}
.y2_c00033{bottom:602.373333pt;}
.y1_c00033{bottom:623.973333pt;}
.h5_c00033{height:11.733399pt;}
.h6_c00033{height:38.937500pt;}
.h2_c00033{height:74.278646pt;}
.h3_c00033{height:77.654948pt;}
.h4_c00033{height:81.031250pt;}
.h1_c00033{height:690.666667pt;}
.h0_c00033{height:690.933333pt;}
.w2_c00033{width:93.222667pt;}
.w1_c00033{width:445.333333pt;}
.w0_c00033{width:445.466667pt;}
.x0_c00033{left:0.000000pt;}
.x6_c00033{left:67.466667pt;}
.x3_c00033{left:76.133333pt;}
.x2_c00033{left:77.066667pt;}
.x7_c00033{left:78.000000pt;}
.x4_c00033{left:79.200000pt;}
.x5_c00033{left:80.400000pt;}
.x8_c00033{left:82.400000pt;}
.x9_c00033{left:98.133333pt;}
.x1_c00033{left:168.266667pt;}
.xb_c00033{left:179.901571pt;}
.xa_c00033{left:400.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aed86f69b97292a9dbf4bbe0.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00034;src:url('chunks/assets/font_35c8e97c0b1632fb41aec161.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00034;src:url('chunks/assets/font_0b02a7f0d94a556b729a1169.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;line-height:1.568848;font-style:normal;font-weight:normal;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_26d96b7565af4c393b5bd3c5.woff2')format("woff");}.ff4_c00034{font-family:ff4_c00034;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00034{font-family:ff5_c00034;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00034{vertical-align:0.000000px;}
.ls2_c00034{letter-spacing:-3.000000px;}
.ls1_c00034{letter-spacing:0.000000px;}
.ls0_c00034{letter-spacing:3.000000px;}
.sc__c00034{text-shadow:none;}
.sc0_c00034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00034{-webkit-text-stroke:0px transparent;}
.sc0_c00034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00034{word-spacing:-17.352000px;}
.ws1_c00034{word-spacing:-17.250000px;}
.ws2_c00034{word-spacing:0.000000px;}
._25_c00034{margin-left:-67.464000px;}
._22_c00034{margin-left:-24.480000px;}
._11_c00034{margin-left:-22.896000px;}
._24_c00034{margin-left:-21.336000px;}
._1c_c00034{margin-left:-19.416000px;}
._1b_c00034{margin-left:-15.864000px;}
._18_c00034{margin-left:-14.328000px;}
._15_c00034{margin-left:-13.104000px;}
._16_c00034{margin-left:-11.952000px;}
._17_c00034{margin-left:-10.080000px;}
._19_c00034{margin-left:-8.568000px;}
._a_c00034{margin-left:-7.488000px;}
._21_c00034{margin-left:-6.336000px;}
._c_c00034{margin-left:-5.328000px;}
._3_c00034{margin-left:-3.888000px;}
._f_c00034{margin-left:-2.592000px;}
._e_c00034{margin-left:-1.440000px;}
._d_c00034{width:1.584000px;}
._b_c00034{width:2.736000px;}
._13_c00034{width:3.744000px;}
._12_c00034{width:4.824000px;}
._5_c00034{width:6.120000px;}
._8_c00034{width:7.176000px;}
._1f_c00034{width:8.640000px;}
._10_c00034{width:9.936000px;}
._6_c00034{width:12.240000px;}
._4_c00034{width:14.112000px;}
._7_c00034{width:15.192000px;}
._14_c00034{width:16.272000px;}
._20_c00034{width:17.448000px;}
._1a_c00034{width:18.648000px;}
._0_c00034{width:21.528000px;}
._1_c00034{width:23.256000px;}
._1d_c00034{width:25.128000px;}
._1e_c00034{width:35.424000px;}
._2_c00034{width:37.080000px;}
._28_c00034{width:41.688000px;}
._26_c00034{width:48.600000px;}
._23_c00034{width:71.424000px;}
._29_c00034{width:143.136000px;}
._9_c00034{width:399.594000px;}
._27_c00034{width:852.624000px;}
.fc2_c00034{color:transparent;}
.fc1_c00034{color:rgb(128,128,128);}
.fc0_c00034{color:rgb(0,0,0);}
.fs3_c00034{font-size:48.000000px;}
.fs0_c00034{font-size:72.000000px;}
.fs1_c00034{font-size:78.000000px;}
.fs2_c00034{font-size:81.000000px;}
.y0_c00034{bottom:0.000000px;}
.y1f_c00034{bottom:3.105000px;}
.y1e_c00034{bottom:7.228355px;}
.y1d_c00034{bottom:18.585000px;}
.y1c_c00034{bottom:44.085000px;}
.y1b_c00034{bottom:69.435000px;}
.y1a_c00034{bottom:94.485000px;}
.y19_c00034{bottom:119.685000px;}
.y18_c00034{bottom:145.035000px;}
.y17_c00034{bottom:169.335000px;}
.y16_c00034{bottom:194.685000px;}
.y15_c00034{bottom:219.585000px;}
.y14_c00034{bottom:245.235000px;}
.y13_c00034{bottom:268.635000px;}
.y12_c00034{bottom:292.635000px;}
.y11_c00034{bottom:316.485000px;}
.y10_c00034{bottom:341.835000px;}
.yf_c00034{bottom:366.735000px;}
.ye_c00034{bottom:391.785000px;}
.yd_c00034{bottom:416.685000px;}
.yc_c00034{bottom:440.985000px;}
.yb_c00034{bottom:466.035000px;}
.ya_c00034{bottom:491.085000px;}
.y9_c00034{bottom:515.235000px;}
.y8_c00034{bottom:539.685000px;}
.y7_c00034{bottom:563.535000px;}
.y6_c00034{bottom:588.285000px;}
.y5_c00034{bottom:613.185000px;}
.y4_c00034{bottom:640.185000px;}
.y3_c00034{bottom:662.085000px;}
.y2_c00034{bottom:686.685000px;}
.y1_c00034{bottom:712.485000px;}
.h4_c00034{height:13.200074px;}
.h5_c00034{height:43.804688px;}
.h2_c00034{height:78.609375px;}
.h3_c00034{height:91.160156px;}
.h0_c00034{height:763.275000px;}
.h1_c00034{height:763.500000px;}
.w2_c00034{width:104.875500px;}
.w0_c00034{width:535.425000px;}
.w1_c00034{width:535.500000px;}
.x0_c00034{left:0.000000px;}
.x4_c00034{left:13.050000px;}
.x7_c00034{left:17.100000px;}
.x2_c00034{left:18.450000px;}
.x3_c00034{left:19.950000px;}
.x5_c00034{left:21.600000px;}
.x6_c00034{left:22.950000px;}
.x8_c00034{left:24.600000px;}
.x9_c00034{left:26.250000px;}
.xa_c00034{left:28.050000px;}
.xd_c00034{left:29.250000px;}
.xb_c00034{left:30.300000px;}
.xc_c00034{left:31.350000px;}
.x1_c00034{left:114.300000px;}
.xe_c00034{left:219.526749px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls2_c00034{letter-spacing:-2.666667pt;}
.ls1_c00034{letter-spacing:0.000000pt;}
.ls0_c00034{letter-spacing:2.666667pt;}
.ws0_c00034{word-spacing:-15.424000pt;}
.ws1_c00034{word-spacing:-15.333333pt;}
.ws2_c00034{word-spacing:0.000000pt;}
._25_c00034{margin-left:-59.968000pt;}
._22_c00034{margin-left:-21.760000pt;}
._11_c00034{margin-left:-20.352000pt;}
._24_c00034{margin-left:-18.965333pt;}
._1c_c00034{margin-left:-17.258667pt;}
._1b_c00034{margin-left:-14.101333pt;}
._18_c00034{margin-left:-12.736000pt;}
._15_c00034{margin-left:-11.648000pt;}
._16_c00034{margin-left:-10.624000pt;}
._17_c00034{margin-left:-8.960000pt;}
._19_c00034{margin-left:-7.616000pt;}
._a_c00034{margin-left:-6.656000pt;}
._21_c00034{margin-left:-5.632000pt;}
._c_c00034{margin-left:-4.736000pt;}
._3_c00034{margin-left:-3.456000pt;}
._f_c00034{margin-left:-2.304000pt;}
._e_c00034{margin-left:-1.280000pt;}
._d_c00034{width:1.408000pt;}
._b_c00034{width:2.432000pt;}
._13_c00034{width:3.328000pt;}
._12_c00034{width:4.288000pt;}
._5_c00034{width:5.440000pt;}
._8_c00034{width:6.378667pt;}
._1f_c00034{width:7.680000pt;}
._10_c00034{width:8.832000pt;}
._6_c00034{width:10.880000pt;}
._4_c00034{width:12.544000pt;}
._7_c00034{width:13.504000pt;}
._14_c00034{width:14.464000pt;}
._20_c00034{width:15.509333pt;}
._1a_c00034{width:16.576000pt;}
._0_c00034{width:19.136000pt;}
._1_c00034{width:20.672000pt;}
._1d_c00034{width:22.336000pt;}
._1e_c00034{width:31.488000pt;}
._2_c00034{width:32.960000pt;}
._28_c00034{width:37.056000pt;}
._26_c00034{width:43.200000pt;}
._23_c00034{width:63.488000pt;}
._29_c00034{width:127.232000pt;}
._9_c00034{width:355.194667pt;}
._27_c00034{width:757.888000pt;}
.fs3_c00034{font-size:42.666667pt;}
.fs0_c00034{font-size:64.000000pt;}
.fs1_c00034{font-size:69.333333pt;}
.fs2_c00034{font-size:72.000000pt;}
.y0_c00034{bottom:0.000000pt;}
.y1f_c00034{bottom:2.760000pt;}
.y1e_c00034{bottom:6.425204pt;}
.y1d_c00034{bottom:16.520000pt;}
.y1c_c00034{bottom:39.186667pt;}
.y1b_c00034{bottom:61.720000pt;}
.y1a_c00034{bottom:83.986667pt;}
.y19_c00034{bottom:106.386667pt;}
.y18_c00034{bottom:128.920000pt;}
.y17_c00034{bottom:150.520000pt;}
.y16_c00034{bottom:173.053333pt;}
.y15_c00034{bottom:195.186667pt;}
.y14_c00034{bottom:217.986667pt;}
.y13_c00034{bottom:238.786667pt;}
.y12_c00034{bottom:260.120000pt;}
.y11_c00034{bottom:281.320000pt;}
.y10_c00034{bottom:303.853333pt;}
.yf_c00034{bottom:325.986667pt;}
.ye_c00034{bottom:348.253333pt;}
.yd_c00034{bottom:370.386667pt;}
.yc_c00034{bottom:391.986667pt;}
.yb_c00034{bottom:414.253333pt;}
.ya_c00034{bottom:436.520000pt;}
.y9_c00034{bottom:457.986667pt;}
.y8_c00034{bottom:479.720000pt;}
.y7_c00034{bottom:500.920000pt;}
.y6_c00034{bottom:522.920000pt;}
.y5_c00034{bottom:545.053333pt;}
.y4_c00034{bottom:569.053333pt;}
.y3_c00034{bottom:588.520000pt;}
.y2_c00034{bottom:610.386667pt;}
.y1_c00034{bottom:633.320000pt;}
.h4_c00034{height:11.733399pt;}
.h5_c00034{height:38.937500pt;}
.h2_c00034{height:69.875000pt;}
.h3_c00034{height:81.031250pt;}
.h0_c00034{height:678.466667pt;}
.h1_c00034{height:678.666667pt;}
.w2_c00034{width:93.222667pt;}
.w0_c00034{width:475.933333pt;}
.w1_c00034{width:476.000000pt;}
.x0_c00034{left:0.000000pt;}
.x4_c00034{left:11.600000pt;}
.x7_c00034{left:15.200000pt;}
.x2_c00034{left:16.400000pt;}
.x3_c00034{left:17.733333pt;}
.x5_c00034{left:19.200000pt;}
.x6_c00034{left:20.400000pt;}
.x8_c00034{left:21.866667pt;}
.x9_c00034{left:23.333333pt;}
.xa_c00034{left:24.933333pt;}
.xd_c00034{left:26.000000pt;}
.xb_c00034{left:26.933333pt;}
.xc_c00034{left:27.866667pt;}
.x1_c00034{left:101.600000pt;}
.xe_c00034{left:195.134888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_37bfe5d4458a00b7280d6305.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00035;src:url('chunks/assets/font_647e1b31b25f0902e428fe6b.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.568848;font-style:normal;font-weight:normal;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_8c5f535353dc6d5119eb5d4c.woff2')format("woff");}.ff3_c00035{font-family:ff3_c00035;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00035;src:url('chunks/assets/font_335a4e27f43156659b3f632b.woff2')format("woff");}.ff4_c00035{font-family:ff4_c00035;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00035{font-family:ff5_c00035;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00035{vertical-align:0.000000px;}
.ls3_c00035{letter-spacing:-3.000000px;}
.ls2_c00035{letter-spacing:0.000000px;}
.ls0_c00035{letter-spacing:1.950000px;}
.ls1_c00035{letter-spacing:3.000000px;}
.sc__c00035{text-shadow:none;}
.sc0_c00035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00035{-webkit-text-stroke:0px transparent;}
.sc0_c00035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00035{word-spacing:-33.192000px;}
.ws2_c00035{word-spacing:-20.352000px;}
.ws1_c00035{word-spacing:-17.250000px;}
.ws3_c00035{word-spacing:0.000000px;}
._14_c00035{margin-left:-30.954000px;}
._13_c00035{margin-left:-11.724000px;}
._c_c00035{margin-left:-9.612000px;}
._d_c00035{margin-left:-7.920000px;}
._e_c00035{margin-left:-6.660000px;}
._7_c00035{margin-left:-5.454000px;}
._2_c00035{margin-left:-4.200000px;}
._a_c00035{margin-left:-3.060000px;}
._8_c00035{margin-left:-1.380000px;}
._1_c00035{width:1.848000px;}
._12_c00035{width:2.856000px;}
._0_c00035{width:3.864000px;}
._b_c00035{width:5.256000px;}
._3_c00035{width:6.636000px;}
._4_c00035{width:8.736000px;}
._15_c00035{width:10.098000px;}
._6_c00035{width:11.172000px;}
._10_c00035{width:12.768000px;}
._f_c00035{width:14.076000px;}
._5_c00035{width:15.792000px;}
._11_c00035{width:17.220000px;}
._9_c00035{width:18.642000px;}
._16_c00035{width:30.996000px;}
.fc2_c00035{color:transparent;}
.fc1_c00035{color:rgb(128,128,128);}
.fc0_c00035{color:rgb(0,0,0);}
.fs4_c00035{font-size:48.000000px;}
.fs1_c00035{font-size:72.000000px;}
.fs2_c00035{font-size:78.000000px;}
.fs3_c00035{font-size:81.000000px;}
.fs0_c00035{font-size:84.000000px;}
.y0_c00035{bottom:0.000000px;}
.y1f_c00035{bottom:3.105000px;}
.y1e_c00035{bottom:7.228355px;}
.y1d_c00035{bottom:25.185000px;}
.y1c_c00035{bottom:50.835000px;}
.y1b_c00035{bottom:75.135000px;}
.y1a_c00035{bottom:100.785000px;}
.y19_c00035{bottom:125.235000px;}
.y18_c00035{bottom:150.135000px;}
.y17_c00035{bottom:175.035000px;}
.y16_c00035{bottom:200.085000px;}
.y15_c00035{bottom:224.085000px;}
.y14_c00035{bottom:248.985000px;}
.y13_c00035{bottom:274.335000px;}
.y12_c00035{bottom:298.935000px;}
.y11_c00035{bottom:322.635000px;}
.y10_c00035{bottom:346.935000px;}
.yf_c00035{bottom:371.535000px;}
.ye_c00035{bottom:396.135000px;}
.yd_c00035{bottom:421.185000px;}
.yc_c00035{bottom:445.485000px;}
.yb_c00035{bottom:470.685000px;}
.ya_c00035{bottom:494.985000px;}
.y9_c00035{bottom:519.285000px;}
.y8_c00035{bottom:543.735000px;}
.y7_c00035{bottom:568.335000px;}
.y6_c00035{bottom:592.935000px;}
.y5_c00035{bottom:617.535000px;}
.y4_c00035{bottom:642.285000px;}
.y3_c00035{bottom:666.435000px;}
.y2_c00035{bottom:691.485000px;}
.y1_c00035{bottom:715.785000px;}
.h4_c00035{height:13.200074px;}
.h5_c00035{height:43.804688px;}
.h2_c00035{height:82.400391px;}
.h3_c00035{height:91.160156px;}
.h1_c00035{height:779.250000px;}
.h0_c00035{height:779.475000px;}
.w2_c00035{width:104.875500px;}
.w0_c00035{width:503.850000px;}
.w1_c00035{width:504.000000px;}
.x0_c00035{left:0.000000px;}
.x9_c00035{left:101.700000px;}
.x8_c00035{left:102.900000px;}
.x7_c00035{left:105.600000px;}
.x5_c00035{left:106.650000px;}
.x6_c00035{left:108.450000px;}
.x4_c00035{left:109.650000px;}
.x3_c00035{left:111.150000px;}
.x2_c00035{left:113.400000px;}
.xb_c00035{left:203.739258px;}
.x1_c00035{left:228.150000px;}
.xa_c00035{left:451.950000px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls3_c00035{letter-spacing:-2.666667pt;}
.ls2_c00035{letter-spacing:0.000000pt;}
.ls0_c00035{letter-spacing:1.733333pt;}
.ls1_c00035{letter-spacing:2.666667pt;}
.ws0_c00035{word-spacing:-29.504000pt;}
.ws2_c00035{word-spacing:-18.090667pt;}
.ws1_c00035{word-spacing:-15.333333pt;}
.ws3_c00035{word-spacing:0.000000pt;}
._14_c00035{margin-left:-27.514667pt;}
._13_c00035{margin-left:-10.421333pt;}
._c_c00035{margin-left:-8.544000pt;}
._d_c00035{margin-left:-7.040000pt;}
._e_c00035{margin-left:-5.920000pt;}
._7_c00035{margin-left:-4.848000pt;}
._2_c00035{margin-left:-3.733333pt;}
._a_c00035{margin-left:-2.720000pt;}
._8_c00035{margin-left:-1.226667pt;}
._1_c00035{width:1.642667pt;}
._12_c00035{width:2.538667pt;}
._0_c00035{width:3.434667pt;}
._b_c00035{width:4.672000pt;}
._3_c00035{width:5.898667pt;}
._4_c00035{width:7.765333pt;}
._15_c00035{width:8.976000pt;}
._6_c00035{width:9.930667pt;}
._10_c00035{width:11.349333pt;}
._f_c00035{width:12.512000pt;}
._5_c00035{width:14.037333pt;}
._11_c00035{width:15.306667pt;}
._9_c00035{width:16.570667pt;}
._16_c00035{width:27.552000pt;}
.fs4_c00035{font-size:42.666667pt;}
.fs1_c00035{font-size:64.000000pt;}
.fs2_c00035{font-size:69.333333pt;}
.fs3_c00035{font-size:72.000000pt;}
.fs0_c00035{font-size:74.666667pt;}
.y0_c00035{bottom:0.000000pt;}
.y1f_c00035{bottom:2.760000pt;}
.y1e_c00035{bottom:6.425204pt;}
.y1d_c00035{bottom:22.386667pt;}
.y1c_c00035{bottom:45.186667pt;}
.y1b_c00035{bottom:66.786667pt;}
.y1a_c00035{bottom:89.586667pt;}
.y19_c00035{bottom:111.320000pt;}
.y18_c00035{bottom:133.453333pt;}
.y17_c00035{bottom:155.586667pt;}
.y16_c00035{bottom:177.853333pt;}
.y15_c00035{bottom:199.186667pt;}
.y14_c00035{bottom:221.320000pt;}
.y13_c00035{bottom:243.853333pt;}
.y12_c00035{bottom:265.720000pt;}
.y11_c00035{bottom:286.786667pt;}
.y10_c00035{bottom:308.386667pt;}
.yf_c00035{bottom:330.253333pt;}
.ye_c00035{bottom:352.120000pt;}
.yd_c00035{bottom:374.386667pt;}
.yc_c00035{bottom:395.986667pt;}
.yb_c00035{bottom:418.386667pt;}
.ya_c00035{bottom:439.986667pt;}
.y9_c00035{bottom:461.586667pt;}
.y8_c00035{bottom:483.320000pt;}
.y7_c00035{bottom:505.186667pt;}
.y6_c00035{bottom:527.053333pt;}
.y5_c00035{bottom:548.920000pt;}
.y4_c00035{bottom:570.920000pt;}
.y3_c00035{bottom:592.386667pt;}
.y2_c00035{bottom:614.653333pt;}
.y1_c00035{bottom:636.253333pt;}
.h4_c00035{height:11.733399pt;}
.h5_c00035{height:38.937500pt;}
.h2_c00035{height:73.244792pt;}
.h3_c00035{height:81.031250pt;}
.h1_c00035{height:692.666667pt;}
.h0_c00035{height:692.866667pt;}
.w2_c00035{width:93.222667pt;}
.w0_c00035{width:447.866667pt;}
.w1_c00035{width:448.000000pt;}
.x0_c00035{left:0.000000pt;}
.x9_c00035{left:90.400000pt;}
.x8_c00035{left:91.466667pt;}
.x7_c00035{left:93.866667pt;}
.x5_c00035{left:94.800000pt;}
.x6_c00035{left:96.400000pt;}
.x4_c00035{left:97.466667pt;}
.x3_c00035{left:98.800000pt;}
.x2_c00035{left:100.800000pt;}
.xb_c00035{left:181.101563pt;}
.x1_c00035{left:202.800000pt;}
.xa_c00035{left:401.733333pt;}
}





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

.ir_c00036:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00036{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00036;src:url('chunks/assets/font_4559ea1a1db0c5240fa91b0d.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00036;src:url('chunks/assets/font_b052793a85cd910438afb8b9.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.568848;font-style:normal;font-weight:normal;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_5ef4c277fd37011c61a408c1.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;line-height:1.480469;font-style:normal;font-weight:normal;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_ecd29140692c7ebd23887c2c.woff2')format("woff");}.ff4_c00036{font-family:ff4_c00036;line-height:1.480469;font-style:normal;font-weight:normal;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_fba91e135be20b30307fa275.woff2')format("woff");}.ff5_c00036{font-family:ff5_c00036;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00036;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00036{font-family:ff6_c00036;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00036{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00036{vertical-align:0.000000px;}
.ls5_c00036{letter-spacing:-3.000000px;}
.ls1_c00036{letter-spacing:0.000000px;}
.ls2_c00036{letter-spacing:3.000000px;}
.ls0_c00036{letter-spacing:4.752000px;}
.ls4_c00036{letter-spacing:45.000000px;}
.ls3_c00036{letter-spacing:93.000000px;}
.sc__c00036{text-shadow:none;}
.sc0_c00036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00036{-webkit-text-stroke:0px transparent;}
.sc0_c00036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00036{word-spacing:-110.352000px;}
.ws4_c00036{word-spacing:-62.352000px;}
.ws3_c00036{word-spacing:-33.192000px;}
.ws2_c00036{word-spacing:-28.080000px;}
.ws6_c00036{word-spacing:-23.973000px;}
.ws1_c00036{word-spacing:-22.464000px;}
.ws5_c00036{word-spacing:-20.352000px;}
.ws8_c00036{word-spacing:0.000000px;}
.ws7_c00036{word-spacing:0.576000px;}
._18_c00036{margin-left:-39.456000px;}
._14_c00036{margin-left:-37.200000px;}
._16_c00036{margin-left:-34.488000px;}
._15_c00036{margin-left:-33.048000px;}
._17_c00036{margin-left:-31.560000px;}
._a_c00036{margin-left:-16.524000px;}
._12_c00036{margin-left:-15.372000px;}
._11_c00036{margin-left:-14.220000px;}
._e_c00036{margin-left:-12.816000px;}
._f_c00036{margin-left:-11.160000px;}
._9_c00036{margin-left:-9.432000px;}
._4_c00036{margin-left:-8.064000px;}
._c_c00036{margin-left:-6.192000px;}
._2_c00036{margin-left:-4.788000px;}
._b_c00036{margin-left:-3.168000px;}
._10_c00036{margin-left:-2.088000px;}
._13_c00036{margin-left:-1.008000px;}
._d_c00036{width:1.368000px;}
._6_c00036{width:2.856000px;}
._5_c00036{width:3.864000px;}
._7_c00036{width:5.124000px;}
._1_c00036{width:7.140000px;}
._20_c00036{width:8.232000px;}
._3_c00036{width:9.492000px;}
._1f_c00036{width:10.776000px;}
._0_c00036{width:11.928000px;}
._22_c00036{width:13.476000px;}
._1a_c00036{width:14.479200px;}
._1e_c00036{width:16.156800px;}
._19_c00036{width:17.712000px;}
._1c_c00036{width:19.260000px;}
._1d_c00036{width:23.904000px;}
._1b_c00036{width:30.996000px;}
._21_c00036{width:331.555200px;}
._8_c00036{width:359.856000px;}
.fc2_c00036{color:transparent;}
.fc1_c00036{color:rgb(128,128,128);}
.fc0_c00036{color:rgb(0,0,0);}
.fs4_c00036{font-size:48.000000px;}
.fs2_c00036{font-size:57.600000px;}
.fs1_c00036{font-size:72.000000px;}
.fs3_c00036{font-size:81.000000px;}
.fs0_c00036{font-size:84.000000px;}
.y0_c00036{bottom:0.000000px;}
.y1f_c00036{bottom:3.105000px;}
.y1e_c00036{bottom:7.228355px;}
.y1d_c00036{bottom:31.635000px;}
.y1c_c00036{bottom:56.685000px;}
.y1b_c00036{bottom:82.035000px;}
.y1a_c00036{bottom:107.685000px;}
.y19_c00036{bottom:132.585000px;}
.y18_c00036{bottom:158.235000px;}
.y17_c00036{bottom:183.285000px;}
.y16_c00036{bottom:208.185000px;}
.y15_c00036{bottom:232.785000px;}
.y14_c00036{bottom:257.535000px;}
.y13_c00036{bottom:281.685000px;}
.y12_c00036{bottom:305.385000px;}
.y11_c00036{bottom:329.985000px;}
.y10_c00036{bottom:354.285000px;}
.yf_c00036{bottom:379.635000px;}
.ye_c00036{bottom:403.935000px;}
.yd_c00036{bottom:428.835000px;}
.yc_c00036{bottom:453.285000px;}
.yb_c00036{bottom:478.185000px;}
.ya_c00036{bottom:502.785000px;}
.y9_c00036{bottom:527.385000px;}
.y8_c00036{bottom:551.685000px;}
.y7_c00036{bottom:576.135000px;}
.y6_c00036{bottom:601.335000px;}
.y5_c00036{bottom:625.035000px;}
.y4_c00036{bottom:649.635000px;}
.y3_c00036{bottom:674.685000px;}
.y2_c00036{bottom:698.985000px;}
.y1_c00036{bottom:723.585000px;}
.h5_c00036{height:13.200074px;}
.h6_c00036{height:43.804688px;}
.h4_c00036{height:70.628906px;}
.h2_c00036{height:82.400391px;}
.h3_c00036{height:91.160156px;}
.h0_c00036{height:776.775000px;}
.h1_c00036{height:777.000000px;}
.w2_c00036{width:104.875500px;}
.w1_c00036{width:561.750000px;}
.w0_c00036{width:561.900000px;}
.x0_c00036{left:0.000000px;}
.x6_c00036{left:30.750000px;}
.x2_c00036{left:39.900000px;}
.x3_c00036{left:41.550000px;}
.x4_c00036{left:42.900000px;}
.x5_c00036{left:44.250000px;}
.x7_c00036{left:45.600000px;}
.x8_c00036{left:47.550000px;}
.x9_c00036{left:48.900000px;}
.x1_c00036{left:142.200000px;}
.xb_c00036{left:232.764267px;}
.xa_c00036{left:417.450000px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls5_c00036{letter-spacing:-2.666667pt;}
.ls1_c00036{letter-spacing:0.000000pt;}
.ls2_c00036{letter-spacing:2.666667pt;}
.ls0_c00036{letter-spacing:4.224000pt;}
.ls4_c00036{letter-spacing:40.000000pt;}
.ls3_c00036{letter-spacing:82.666667pt;}
.ws0_c00036{word-spacing:-98.090667pt;}
.ws4_c00036{word-spacing:-55.424000pt;}
.ws3_c00036{word-spacing:-29.504000pt;}
.ws2_c00036{word-spacing:-24.960000pt;}
.ws6_c00036{word-spacing:-21.309333pt;}
.ws1_c00036{word-spacing:-19.968000pt;}
.ws5_c00036{word-spacing:-18.090667pt;}
.ws8_c00036{word-spacing:0.000000pt;}
.ws7_c00036{word-spacing:0.512000pt;}
._18_c00036{margin-left:-35.072000pt;}
._14_c00036{margin-left:-33.066667pt;}
._16_c00036{margin-left:-30.656000pt;}
._15_c00036{margin-left:-29.376000pt;}
._17_c00036{margin-left:-28.053333pt;}
._a_c00036{margin-left:-14.688000pt;}
._12_c00036{margin-left:-13.664000pt;}
._11_c00036{margin-left:-12.640000pt;}
._e_c00036{margin-left:-11.392000pt;}
._f_c00036{margin-left:-9.920000pt;}
._9_c00036{margin-left:-8.384000pt;}
._4_c00036{margin-left:-7.168000pt;}
._c_c00036{margin-left:-5.504000pt;}
._2_c00036{margin-left:-4.256000pt;}
._b_c00036{margin-left:-2.816000pt;}
._10_c00036{margin-left:-1.856000pt;}
._13_c00036{margin-left:-0.896000pt;}
._d_c00036{width:1.216000pt;}
._6_c00036{width:2.538667pt;}
._5_c00036{width:3.434667pt;}
._7_c00036{width:4.554667pt;}
._1_c00036{width:6.346667pt;}
._20_c00036{width:7.317333pt;}
._3_c00036{width:8.437333pt;}
._1f_c00036{width:9.578667pt;}
._0_c00036{width:10.602667pt;}
._22_c00036{width:11.978667pt;}
._1a_c00036{width:12.870400pt;}
._1e_c00036{width:14.361600pt;}
._19_c00036{width:15.744000pt;}
._1c_c00036{width:17.120000pt;}
._1d_c00036{width:21.248000pt;}
._1b_c00036{width:27.552000pt;}
._21_c00036{width:294.715733pt;}
._8_c00036{width:319.872000pt;}
.fs4_c00036{font-size:42.666667pt;}
.fs2_c00036{font-size:51.200000pt;}
.fs1_c00036{font-size:64.000000pt;}
.fs3_c00036{font-size:72.000000pt;}
.fs0_c00036{font-size:74.666667pt;}
.y0_c00036{bottom:0.000000pt;}
.y1f_c00036{bottom:2.760000pt;}
.y1e_c00036{bottom:6.425204pt;}
.y1d_c00036{bottom:28.120000pt;}
.y1c_c00036{bottom:50.386667pt;}
.y1b_c00036{bottom:72.920000pt;}
.y1a_c00036{bottom:95.720000pt;}
.y19_c00036{bottom:117.853333pt;}
.y18_c00036{bottom:140.653333pt;}
.y17_c00036{bottom:162.920000pt;}
.y16_c00036{bottom:185.053333pt;}
.y15_c00036{bottom:206.920000pt;}
.y14_c00036{bottom:228.920000pt;}
.y13_c00036{bottom:250.386667pt;}
.y12_c00036{bottom:271.453333pt;}
.y11_c00036{bottom:293.320000pt;}
.y10_c00036{bottom:314.920000pt;}
.yf_c00036{bottom:337.453333pt;}
.ye_c00036{bottom:359.053333pt;}
.yd_c00036{bottom:381.186667pt;}
.yc_c00036{bottom:402.920000pt;}
.yb_c00036{bottom:425.053333pt;}
.ya_c00036{bottom:446.920000pt;}
.y9_c00036{bottom:468.786667pt;}
.y8_c00036{bottom:490.386667pt;}
.y7_c00036{bottom:512.120000pt;}
.y6_c00036{bottom:534.520000pt;}
.y5_c00036{bottom:555.586667pt;}
.y4_c00036{bottom:577.453333pt;}
.y3_c00036{bottom:599.720000pt;}
.y2_c00036{bottom:621.320000pt;}
.y1_c00036{bottom:643.186667pt;}
.h5_c00036{height:11.733399pt;}
.h6_c00036{height:38.937500pt;}
.h4_c00036{height:62.781250pt;}
.h2_c00036{height:73.244792pt;}
.h3_c00036{height:81.031250pt;}
.h0_c00036{height:690.466667pt;}
.h1_c00036{height:690.666667pt;}
.w2_c00036{width:93.222667pt;}
.w1_c00036{width:499.333333pt;}
.w0_c00036{width:499.466667pt;}
.x0_c00036{left:0.000000pt;}
.x6_c00036{left:27.333333pt;}
.x2_c00036{left:35.466667pt;}
.x3_c00036{left:36.933333pt;}
.x4_c00036{left:38.133333pt;}
.x5_c00036{left:39.333333pt;}
.x7_c00036{left:40.533333pt;}
.x8_c00036{left:42.266667pt;}
.x9_c00036{left:43.466667pt;}
.x1_c00036{left:126.400000pt;}
.xb_c00036{left:206.901571pt;}
.xa_c00036{left:371.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aede82df83eda002a0b53444.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00037;src:url('chunks/assets/font_aa09ee278e4bcb4965c429dc.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00037;src:url('chunks/assets/font_11aa3a5ad1dcbdbdb91a71d8.woff2')format("woff");}.ff3_c00037{font-family:ff3_c00037;line-height:1.568848;font-style:normal;font-weight:normal;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_eba96dba5071ff95e9eb92b0.woff2')format("woff");}.ff4_c00037{font-family:ff4_c00037;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00037;src:url('chunks/assets/font_78c2e98c148520c1bfbd4d84.woff2')format("woff");}.ff5_c00037{font-family:ff5_c00037;line-height:1.480469;font-style:normal;font-weight:normal;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_3ba9b78b253f6b68ebb1a232.woff2')format("woff");}.ff6_c00037{font-family:ff6_c00037;line-height:1.592000;font-style:normal;font-weight: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_c00037;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00037{font-family:ff7_c00037;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00037{vertical-align:0.000000px;}
.ls6_c00037{letter-spacing:-9.000000px;}
.ls5_c00037{letter-spacing:-3.000000px;}
.ls3_c00037{letter-spacing:0.000000px;}
.ls1_c00037{letter-spacing:0.900000px;}
.ls4_c00037{letter-spacing:3.000000px;}
.ls0_c00037{letter-spacing:15.150000px;}
.ls2_c00037{letter-spacing:18.750000px;}
.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;}
}
.ws3_c00037{word-spacing:-18.750000px;}
.ws5_c00037{word-spacing:-17.460000px;}
.ws2_c00037{word-spacing:-17.352000px;}
.ws0_c00037{word-spacing:-17.250000px;}
.ws6_c00037{word-spacing:-16.629000px;}
.ws1_c00037{word-spacing:-14.250000px;}
.ws4_c00037{word-spacing:-7.629000px;}
.ws7_c00037{word-spacing:0.000000px;}
._25_c00037{margin-left:-22.932000px;}
._14_c00037{margin-left:-20.520000px;}
._19_c00037{margin-left:-19.152000px;}
._18_c00037{margin-left:-17.523000px;}
._1f_c00037{margin-left:-15.435000px;}
._1d_c00037{margin-left:-12.978000px;}
._13_c00037{margin-left:-11.652000px;}
._e_c00037{margin-left:-10.248000px;}
._4_c00037{margin-left:-8.988000px;}
._17_c00037{margin-left:-7.932000px;}
._1_c00037{margin-left:-6.888000px;}
._0_c00037{margin-left:-5.628000px;}
._2_c00037{margin-left:-4.200000px;}
._3_c00037{margin-left:-2.352000px;}
._b_c00037{margin-left:-1.224000px;}
._6_c00037{width:1.596000px;}
._8_c00037{width:2.604000px;}
._5_c00037{width:3.612000px;}
._7_c00037{width:5.292000px;}
._10_c00037{width:6.648000px;}
._c_c00037{width:7.932000px;}
._a_c00037{width:9.444000px;}
._11_c00037{width:10.668000px;}
._9_c00037{width:11.856000px;}
._d_c00037{width:13.488000px;}
._1a_c00037{width:14.640000px;}
._16_c00037{width:16.080000px;}
._f_c00037{width:17.268000px;}
._27_c00037{width:23.124000px;}
._12_c00037{width:26.856000px;}
._28_c00037{width:32.472000px;}
._1c_c00037{width:38.829000px;}
._15_c00037{width:51.852000px;}
._26_c00037{width:63.744000px;}
._23_c00037{width:88.200000px;}
._20_c00037{width:93.747000px;}
._21_c00037{width:111.216000px;}
._1e_c00037{width:128.835000px;}
._24_c00037{width:141.834000px;}
._22_c00037{width:259.203000px;}
._29_c00037{width:430.056000px;}
._1b_c00037{width:506.616000px;}
._2a_c00037{width:746.523000px;}
.fc2_c00037{color:transparent;}
.fc1_c00037{color:rgb(128,128,128);}
.fc0_c00037{color:rgb(0,0,0);}
.fsa_c00037{font-size:48.000000px;}
.fs9_c00037{font-size:54.000000px;}
.fs3_c00037{font-size:57.000000px;}
.fs7_c00037{font-size:60.000000px;}
.fs8_c00037{font-size:63.000000px;}
.fs4_c00037{font-size:69.000000px;}
.fs1_c00037{font-size:72.000000px;}
.fs5_c00037{font-size:75.000000px;}
.fs6_c00037{font-size:78.000000px;}
.fs2_c00037{font-size:81.000000px;}
.fs0_c00037{font-size:84.000000px;}
.y0_c00037{bottom:0.000000px;}
.y1f_c00037{bottom:3.105000px;}
.y1e_c00037{bottom:7.228357px;}
.y1d_c00037{bottom:40.230000px;}
.y1c_c00037{bottom:90.780000px;}
.y1b_c00037{bottom:116.130000px;}
.y1a_c00037{bottom:141.180000px;}
.y19_c00037{bottom:166.830000px;}
.y18_c00037{bottom:191.130000px;}
.y17_c00037{bottom:214.680000px;}
.y16_c00037{bottom:239.730000px;}
.y15_c00037{bottom:253.230000px;}
.y14_c00037{bottom:268.680000px;}
.y13_c00037{bottom:289.980000px;}
.y12_c00037{bottom:313.980000px;}
.y11_c00037{bottom:341.280000px;}
.y10_c00037{bottom:363.180000px;}
.yf_c00037{bottom:388.080000px;}
.ye_c00037{bottom:412.830000px;}
.yd_c00037{bottom:439.380000px;}
.yc_c00037{bottom:462.480000px;}
.yb_c00037{bottom:486.780000px;}
.ya_c00037{bottom:512.280000px;}
.y9_c00037{bottom:535.980000px;}
.y8_c00037{bottom:561.330000px;}
.y7_c00037{bottom:585.330000px;}
.y6_c00037{bottom:610.230000px;}
.y5_c00037{bottom:635.280000px;}
.y4_c00037{bottom:659.580000px;}
.y3_c00037{bottom:683.880000px;}
.y2_c00037{bottom:709.080000px;}
.y1_c00037{bottom:734.430000px;}
.h6_c00037{height:13.200074px;}
.h7_c00037{height:43.804688px;}
.h5_c00037{height:60.468750px;}
.h4_c00037{height:70.224609px;}
.h1_c00037{height:82.441406px;}
.h3_c00037{height:87.361816px;}
.h2_c00037{height:91.160156px;}
.h0_c00037{height:786.000000px;}
.w2_c00037{width:104.875500px;}
.w1_c00037{width:534.000000px;}
.w0_c00037{width:534.300000px;}
.x0_c00037{left:0.000000px;}
.xa_c00037{left:36.750000px;}
.xb_c00037{left:39.900000px;}
.x9_c00037{left:41.250000px;}
.x7_c00037{left:44.250000px;}
.x6_c00037{left:45.600000px;}
.x8_c00037{left:118.500000px;}
.x5_c00037{left:119.550000px;}
.x4_c00037{left:122.550000px;}
.x3_c00037{left:124.200000px;}
.x2_c00037{left:125.850000px;}
.xc_c00037{left:164.700000px;}
.xd_c00037{left:218.964249px;}
.x1_c00037{left:237.300000px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls6_c00037{letter-spacing:-8.000000pt;}
.ls5_c00037{letter-spacing:-2.666667pt;}
.ls3_c00037{letter-spacing:0.000000pt;}
.ls1_c00037{letter-spacing:0.800000pt;}
.ls4_c00037{letter-spacing:2.666667pt;}
.ls0_c00037{letter-spacing:13.466667pt;}
.ls2_c00037{letter-spacing:16.666667pt;}
.ws3_c00037{word-spacing:-16.666667pt;}
.ws5_c00037{word-spacing:-15.520000pt;}
.ws2_c00037{word-spacing:-15.424000pt;}
.ws0_c00037{word-spacing:-15.333333pt;}
.ws6_c00037{word-spacing:-14.781333pt;}
.ws1_c00037{word-spacing:-12.666667pt;}
.ws4_c00037{word-spacing:-6.781333pt;}
.ws7_c00037{word-spacing:0.000000pt;}
._25_c00037{margin-left:-20.384000pt;}
._14_c00037{margin-left:-18.240000pt;}
._19_c00037{margin-left:-17.024000pt;}
._18_c00037{margin-left:-15.576000pt;}
._1f_c00037{margin-left:-13.720000pt;}
._1d_c00037{margin-left:-11.536000pt;}
._13_c00037{margin-left:-10.357333pt;}
._e_c00037{margin-left:-9.109333pt;}
._4_c00037{margin-left:-7.989333pt;}
._17_c00037{margin-left:-7.050667pt;}
._1_c00037{margin-left:-6.122667pt;}
._0_c00037{margin-left:-5.002667pt;}
._2_c00037{margin-left:-3.733333pt;}
._3_c00037{margin-left:-2.090667pt;}
._b_c00037{margin-left:-1.088000pt;}
._6_c00037{width:1.418667pt;}
._8_c00037{width:2.314667pt;}
._5_c00037{width:3.210667pt;}
._7_c00037{width:4.704000pt;}
._10_c00037{width:5.909333pt;}
._c_c00037{width:7.050667pt;}
._a_c00037{width:8.394667pt;}
._11_c00037{width:9.482667pt;}
._9_c00037{width:10.538667pt;}
._d_c00037{width:11.989333pt;}
._1a_c00037{width:13.013333pt;}
._16_c00037{width:14.293333pt;}
._f_c00037{width:15.349333pt;}
._27_c00037{width:20.554667pt;}
._12_c00037{width:23.872000pt;}
._28_c00037{width:28.864000pt;}
._1c_c00037{width:34.514667pt;}
._15_c00037{width:46.090667pt;}
._26_c00037{width:56.661333pt;}
._23_c00037{width:78.400000pt;}
._20_c00037{width:83.330667pt;}
._21_c00037{width:98.858667pt;}
._1e_c00037{width:114.520000pt;}
._24_c00037{width:126.074667pt;}
._22_c00037{width:230.402667pt;}
._29_c00037{width:382.272000pt;}
._1b_c00037{width:450.325333pt;}
._2a_c00037{width:663.576000pt;}
.fsa_c00037{font-size:42.666667pt;}
.fs9_c00037{font-size:48.000000pt;}
.fs3_c00037{font-size:50.666667pt;}
.fs7_c00037{font-size:53.333333pt;}
.fs8_c00037{font-size:56.000000pt;}
.fs4_c00037{font-size:61.333333pt;}
.fs1_c00037{font-size:64.000000pt;}
.fs5_c00037{font-size:66.666667pt;}
.fs6_c00037{font-size:69.333333pt;}
.fs2_c00037{font-size:72.000000pt;}
.fs0_c00037{font-size:74.666667pt;}
.y0_c00037{bottom:0.000000pt;}
.y1f_c00037{bottom:2.760000pt;}
.y1e_c00037{bottom:6.425206pt;}
.y1d_c00037{bottom:35.760000pt;}
.y1c_c00037{bottom:80.693333pt;}
.y1b_c00037{bottom:103.226667pt;}
.y1a_c00037{bottom:125.493333pt;}
.y19_c00037{bottom:148.293333pt;}
.y18_c00037{bottom:169.893333pt;}
.y17_c00037{bottom:190.826667pt;}
.y16_c00037{bottom:213.093333pt;}
.y15_c00037{bottom:225.093333pt;}
.y14_c00037{bottom:238.826667pt;}
.y13_c00037{bottom:257.760000pt;}
.y12_c00037{bottom:279.093333pt;}
.y11_c00037{bottom:303.360000pt;}
.y10_c00037{bottom:322.826667pt;}
.yf_c00037{bottom:344.960000pt;}
.ye_c00037{bottom:366.960000pt;}
.yd_c00037{bottom:390.560000pt;}
.yc_c00037{bottom:411.093333pt;}
.yb_c00037{bottom:432.693333pt;}
.ya_c00037{bottom:455.360000pt;}
.y9_c00037{bottom:476.426667pt;}
.y8_c00037{bottom:498.960000pt;}
.y7_c00037{bottom:520.293333pt;}
.y6_c00037{bottom:542.426667pt;}
.y5_c00037{bottom:564.693333pt;}
.y4_c00037{bottom:586.293333pt;}
.y3_c00037{bottom:607.893333pt;}
.y2_c00037{bottom:630.293333pt;}
.y1_c00037{bottom:652.826667pt;}
.h6_c00037{height:11.733399pt;}
.h7_c00037{height:38.937500pt;}
.h5_c00037{height:53.750000pt;}
.h4_c00037{height:62.421875pt;}
.h1_c00037{height:73.281250pt;}
.h3_c00037{height:77.654948pt;}
.h2_c00037{height:81.031250pt;}
.h0_c00037{height:698.666667pt;}
.w2_c00037{width:93.222667pt;}
.w1_c00037{width:474.666667pt;}
.w0_c00037{width:474.933333pt;}
.x0_c00037{left:0.000000pt;}
.xa_c00037{left:32.666667pt;}
.xb_c00037{left:35.466667pt;}
.x9_c00037{left:36.666667pt;}
.x7_c00037{left:39.333333pt;}
.x6_c00037{left:40.533333pt;}
.x8_c00037{left:105.333333pt;}
.x5_c00037{left:106.266667pt;}
.x4_c00037{left:108.933333pt;}
.x3_c00037{left:110.400000pt;}
.x2_c00037{left:111.866667pt;}
.xc_c00037{left:146.400000pt;}
.xd_c00037{left:194.634888pt;}
.x1_c00037{left:210.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c1225262179076e65af550db.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.568848;font-style:normal;font-weight:normal;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_2778c9dc0dc3f397bd07df26.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.480469;font-style:normal;font-weight:normal;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_1b7127b8f93aa4d37a985f28.woff2')format("woff");}.ff3_c00038{font-family:ff3_c00038;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00038;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00038{font-family:ff4_c00038;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00038;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00038{font-family:ff5_c00038;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00038{vertical-align:0.000000px;}
.ls2_c00038{letter-spacing:-3.000000px;}
.ls1_c00038{letter-spacing:0.000000px;}
.ls3_c00038{letter-spacing:3.000000px;}
.ls0_c00038{letter-spacing:9.000000px;}
.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:-36.000000px;}
.ws3_c00038{word-spacing:-26.352000px;}
.ws0_c00038{word-spacing:-20.352000px;}
.ws2_c00038{word-spacing:-17.352000px;}
.ws4_c00038{word-spacing:0.000000px;}
._0_c00038{margin-left:-40.629000px;}
._1c_c00038{margin-left:-26.325000px;}
._15_c00038{margin-left:-15.264000px;}
._10_c00038{margin-left:-12.960000px;}
._11_c00038{margin-left:-10.764000px;}
._12_c00038{margin-left:-9.612000px;}
._13_c00038{margin-left:-8.496000px;}
._d_c00038{margin-left:-7.020000px;}
._14_c00038{margin-left:-5.976000px;}
._a_c00038{margin-left:-4.896000px;}
._b_c00038{margin-left:-2.961000px;}
._4_c00038{margin-left:-1.740000px;}
._5_c00038{width:1.305000px;}
._6_c00038{width:2.349000px;}
._8_c00038{width:3.708000px;}
._18_c00038{width:4.911000px;}
._9_c00038{width:5.928000px;}
._3_c00038{width:7.482000px;}
._f_c00038{width:8.802000px;}
._c_c00038{width:10.008000px;}
._e_c00038{width:11.088000px;}
._2_c00038{width:12.267000px;}
._17_c00038{width:14.031000px;}
._1b_c00038{width:15.777000px;}
._16_c00038{width:17.718000px;}
._1a_c00038{width:25.929000px;}
._19_c00038{width:33.357000px;}
._1_c00038{width:77.121000px;}
._7_c00038{width:332.157000px;}
.fc2_c00038{color:transparent;}
.fc1_c00038{color:rgb(128,128,128);}
.fc0_c00038{color:rgb(0,0,0);}
.fs3_c00038{font-size:48.000000px;}
.fs1_c00038{font-size:72.000000px;}
.fs2_c00038{font-size:78.000000px;}
.fs0_c00038{font-size:87.000000px;}
.y0_c00038{bottom:0.000000px;}
.y1f_c00038{bottom:3.105000px;}
.y1e_c00038{bottom:7.228355px;}
.y1d_c00038{bottom:47.535000px;}
.y1c_c00038{bottom:74.535000px;}
.y1b_c00038{bottom:99.885000px;}
.y1a_c00038{bottom:125.085000px;}
.y19_c00038{bottom:149.535000px;}
.y18_c00038{bottom:174.435000px;}
.y17_c00038{bottom:199.785000px;}
.y16_c00038{bottom:224.085000px;}
.y15_c00038{bottom:248.985000px;}
.y14_c00038{bottom:273.735000px;}
.y13_c00038{bottom:298.935000px;}
.y12_c00038{bottom:323.535000px;}
.y11_c00038{bottom:348.285000px;}
.y10_c00038{bottom:372.585000px;}
.yf_c00038{bottom:397.485000px;}
.ye_c00038{bottom:421.785000px;}
.yd_c00038{bottom:446.385000px;}
.yc_c00038{bottom:471.135000px;}
.yb_c00038{bottom:495.435000px;}
.ya_c00038{bottom:519.735000px;}
.y9_c00038{bottom:544.035000px;}
.y8_c00038{bottom:568.335000px;}
.y7_c00038{bottom:592.635000px;}
.y6_c00038{bottom:617.535000px;}
.y5_c00038{bottom:641.535000px;}
.y4_c00038{bottom:666.135000px;}
.y3_c00038{bottom:690.435000px;}
.y2_c00038{bottom:715.035000px;}
.y1_c00038{bottom:739.785000px;}
.h4_c00038{height:13.200074px;}
.h5_c00038{height:43.804688px;}
.h3_c00038{height:91.160156px;}
.h2_c00038{height:110.151855px;}
.h0_c00038{height:791.625000px;}
.h1_c00038{height:792.000000px;}
.w2_c00038{width:104.875500px;}
.w0_c00038{width:559.950000px;}
.w1_c00038{width:560.250000px;}
.x0_c00038{left:0.000000px;}
.x2_c00038{left:34.800000px;}
.x3_c00038{left:35.850000px;}
.x5_c00038{left:36.900000px;}
.x4_c00038{left:38.100000px;}
.x6_c00038{left:39.600000px;}
.x8_c00038{left:46.200000px;}
.x7_c00038{left:55.650000px;}
.x1_c00038{left:109.200000px;}
.xa_c00038{left:231.789230px;}
.x9_c00038{left:402.600000px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls2_c00038{letter-spacing:-2.666667pt;}
.ls1_c00038{letter-spacing:0.000000pt;}
.ls3_c00038{letter-spacing:2.666667pt;}
.ls0_c00038{letter-spacing:8.000000pt;}
.ws1_c00038{word-spacing:-32.000000pt;}
.ws3_c00038{word-spacing:-23.424000pt;}
.ws0_c00038{word-spacing:-18.090667pt;}
.ws2_c00038{word-spacing:-15.424000pt;}
.ws4_c00038{word-spacing:0.000000pt;}
._0_c00038{margin-left:-36.114667pt;}
._1c_c00038{margin-left:-23.400000pt;}
._15_c00038{margin-left:-13.568000pt;}
._10_c00038{margin-left:-11.520000pt;}
._11_c00038{margin-left:-9.568000pt;}
._12_c00038{margin-left:-8.544000pt;}
._13_c00038{margin-left:-7.552000pt;}
._d_c00038{margin-left:-6.240000pt;}
._14_c00038{margin-left:-5.312000pt;}
._a_c00038{margin-left:-4.352000pt;}
._b_c00038{margin-left:-2.632000pt;}
._4_c00038{margin-left:-1.546667pt;}
._5_c00038{width:1.160000pt;}
._6_c00038{width:2.088000pt;}
._8_c00038{width:3.296000pt;}
._18_c00038{width:4.365333pt;}
._9_c00038{width:5.269333pt;}
._3_c00038{width:6.650667pt;}
._f_c00038{width:7.824000pt;}
._c_c00038{width:8.896000pt;}
._e_c00038{width:9.856000pt;}
._2_c00038{width:10.904000pt;}
._17_c00038{width:12.472000pt;}
._1b_c00038{width:14.024000pt;}
._16_c00038{width:15.749333pt;}
._1a_c00038{width:23.048000pt;}
._19_c00038{width:29.650667pt;}
._1_c00038{width:68.552000pt;}
._7_c00038{width:295.250667pt;}
.fs3_c00038{font-size:42.666667pt;}
.fs1_c00038{font-size:64.000000pt;}
.fs2_c00038{font-size:69.333333pt;}
.fs0_c00038{font-size:77.333333pt;}
.y0_c00038{bottom:0.000000pt;}
.y1f_c00038{bottom:2.760000pt;}
.y1e_c00038{bottom:6.425204pt;}
.y1d_c00038{bottom:42.253333pt;}
.y1c_c00038{bottom:66.253333pt;}
.y1b_c00038{bottom:88.786667pt;}
.y1a_c00038{bottom:111.186667pt;}
.y19_c00038{bottom:132.920000pt;}
.y18_c00038{bottom:155.053333pt;}
.y17_c00038{bottom:177.586667pt;}
.y16_c00038{bottom:199.186667pt;}
.y15_c00038{bottom:221.320000pt;}
.y14_c00038{bottom:243.320000pt;}
.y13_c00038{bottom:265.720000pt;}
.y12_c00038{bottom:287.586667pt;}
.y11_c00038{bottom:309.586667pt;}
.y10_c00038{bottom:331.186667pt;}
.yf_c00038{bottom:353.320000pt;}
.ye_c00038{bottom:374.920000pt;}
.yd_c00038{bottom:396.786667pt;}
.yc_c00038{bottom:418.786667pt;}
.yb_c00038{bottom:440.386667pt;}
.ya_c00038{bottom:461.986667pt;}
.y9_c00038{bottom:483.586667pt;}
.y8_c00038{bottom:505.186667pt;}
.y7_c00038{bottom:526.786667pt;}
.y6_c00038{bottom:548.920000pt;}
.y5_c00038{bottom:570.253333pt;}
.y4_c00038{bottom:592.120000pt;}
.y3_c00038{bottom:613.720000pt;}
.y2_c00038{bottom:635.586667pt;}
.y1_c00038{bottom:657.586667pt;}
.h4_c00038{height:11.733399pt;}
.h5_c00038{height:38.937500pt;}
.h3_c00038{height:81.031250pt;}
.h2_c00038{height:97.912760pt;}
.h0_c00038{height:703.666667pt;}
.h1_c00038{height:704.000000pt;}
.w2_c00038{width:93.222667pt;}
.w0_c00038{width:497.733333pt;}
.w1_c00038{width:498.000000pt;}
.x0_c00038{left:0.000000pt;}
.x2_c00038{left:30.933333pt;}
.x3_c00038{left:31.866667pt;}
.x5_c00038{left:32.800000pt;}
.x4_c00038{left:33.866667pt;}
.x6_c00038{left:35.200000pt;}
.x8_c00038{left:41.066667pt;}
.x7_c00038{left:49.466667pt;}
.x1_c00038{left:97.066667pt;}
.xa_c00038{left:206.034871pt;}
.x9_c00038{left:357.866667pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00039 {
      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_c00039 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00039 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00039 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_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_f158cfb9a5c82d0d82a6f21b.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00040;src:url('chunks/assets/font_f2e66511de1a02410346b96c.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:1.568848;font-style:normal;font-weight:normal;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_a6ee35abdcc65e6f9383ef39.woff2')format("woff");}.ff3_c00040{font-family:ff3_c00040;line-height:1.480469;font-style:normal;font-weight:normal;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_26b3beefb1b8e1b53c05d4cc.woff2')format("woff");}.ff4_c00040{font-family:ff4_c00040;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00040;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00040{font-family:ff5_c00040;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00040{vertical-align:0.000000px;}
.ls0_c00040{letter-spacing:0.000000px;}
.ls1_c00040{letter-spacing:3.000000px;}
.sc__c00040{text-shadow:none;}
.sc0_c00040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00040{-webkit-text-stroke:0px transparent;}
.sc0_c00040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00040{word-spacing:-33.192000px;}
.ws1_c00040{word-spacing:-25.974000px;}
.ws2_c00040{word-spacing:0.000000px;}
._f_c00040{margin-left:-13.188000px;}
._c_c00040{margin-left:-7.692000px;}
._2_c00040{margin-left:-6.552000px;}
._9_c00040{margin-left:-4.572000px;}
._a_c00040{margin-left:-2.592000px;}
._7_c00040{margin-left:-1.500000px;}
._4_c00040{width:1.344000px;}
._3_c00040{width:3.276000px;}
._5_c00040{width:4.536000px;}
._b_c00040{width:6.480000px;}
._8_c00040{width:8.100000px;}
._11_c00040{width:9.528000px;}
._1_c00040{width:10.668000px;}
._d_c00040{width:11.988000px;}
._12_c00040{width:13.476000px;}
._e_c00040{width:14.544000px;}
._10_c00040{width:16.020000px;}
._0_c00040{width:17.052000px;}
._6_c00040{width:372.792000px;}
.fc2_c00040{color:transparent;}
.fc1_c00040{color:rgb(128,128,128);}
.fc0_c00040{color:rgb(0,0,0);}
.fs3_c00040{font-size:48.000000px;}
.fs1_c00040{font-size:72.000000px;}
.fs2_c00040{font-size:78.000000px;}
.fs0_c00040{font-size:84.000000px;}
.y0_c00040{bottom:0.000000px;}
.y1f_c00040{bottom:3.105000px;}
.y1e_c00040{bottom:7.228357px;}
.y1d_c00040{bottom:36.780000px;}
.y1c_c00040{bottom:62.880000px;}
.y1b_c00040{bottom:88.080000px;}
.y1a_c00040{bottom:113.130000px;}
.y19_c00040{bottom:138.480000px;}
.y18_c00040{bottom:163.380000px;}
.y17_c00040{bottom:188.430000px;}
.y16_c00040{bottom:213.630000px;}
.y15_c00040{bottom:237.930000px;}
.y14_c00040{bottom:263.280000px;}
.y13_c00040{bottom:285.630000px;}
.y12_c00040{bottom:309.930000px;}
.y11_c00040{bottom:334.530000px;}
.y10_c00040{bottom:358.380000px;}
.yf_c00040{bottom:384.480000px;}
.ye_c00040{bottom:409.230000px;}
.yd_c00040{bottom:433.980000px;}
.yc_c00040{bottom:458.730000px;}
.yb_c00040{bottom:482.580000px;}
.ya_c00040{bottom:507.330000px;}
.y9_c00040{bottom:531.630000px;}
.y8_c00040{bottom:556.530000px;}
.y7_c00040{bottom:581.280000px;}
.y6_c00040{bottom:605.880000px;}
.y5_c00040{bottom:630.180000px;}
.y4_c00040{bottom:655.080000px;}
.y3_c00040{bottom:679.830000px;}
.y2_c00040{bottom:705.030000px;}
.y1_c00040{bottom:729.780000px;}
.h5_c00040{height:13.200074px;}
.h6_c00040{height:43.804688px;}
.h4_c00040{height:78.609375px;}
.h2_c00040{height:82.400391px;}
.h3_c00040{height:91.160156px;}
.h0_c00040{height:781.950000px;}
.h1_c00040{height:782.250000px;}
.w2_c00040{width:104.875500px;}
.w0_c00040{width:562.125000px;}
.w1_c00040{width:562.500000px;}
.x0_c00040{left:0.000000px;}
.x6_c00040{left:27.450000px;}
.x5_c00040{left:30.000000px;}
.x2_c00040{left:31.050000px;}
.x3_c00040{left:32.100000px;}
.x4_c00040{left:33.150000px;}
.x1_c00040{left:133.200000px;}
.x8_c00040{left:232.876740px;}
.x7_c00040{left:364.200000px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls0_c00040{letter-spacing:0.000000pt;}
.ls1_c00040{letter-spacing:2.666667pt;}
.ws0_c00040{word-spacing:-29.504000pt;}
.ws1_c00040{word-spacing:-23.088000pt;}
.ws2_c00040{word-spacing:0.000000pt;}
._f_c00040{margin-left:-11.722667pt;}
._c_c00040{margin-left:-6.837333pt;}
._2_c00040{margin-left:-5.824000pt;}
._9_c00040{margin-left:-4.064000pt;}
._a_c00040{margin-left:-2.304000pt;}
._7_c00040{margin-left:-1.333333pt;}
._4_c00040{width:1.194667pt;}
._3_c00040{width:2.912000pt;}
._5_c00040{width:4.032000pt;}
._b_c00040{width:5.760000pt;}
._8_c00040{width:7.200000pt;}
._11_c00040{width:8.469333pt;}
._1_c00040{width:9.482667pt;}
._d_c00040{width:10.656000pt;}
._12_c00040{width:11.978667pt;}
._e_c00040{width:12.928000pt;}
._10_c00040{width:14.240000pt;}
._0_c00040{width:15.157333pt;}
._6_c00040{width:331.370667pt;}
.fs3_c00040{font-size:42.666667pt;}
.fs1_c00040{font-size:64.000000pt;}
.fs2_c00040{font-size:69.333333pt;}
.fs0_c00040{font-size:74.666667pt;}
.y0_c00040{bottom:0.000000pt;}
.y1f_c00040{bottom:2.760000pt;}
.y1e_c00040{bottom:6.425206pt;}
.y1d_c00040{bottom:32.693333pt;}
.y1c_c00040{bottom:55.893333pt;}
.y1b_c00040{bottom:78.293333pt;}
.y1a_c00040{bottom:100.560000pt;}
.y19_c00040{bottom:123.093333pt;}
.y18_c00040{bottom:145.226667pt;}
.y17_c00040{bottom:167.493333pt;}
.y16_c00040{bottom:189.893333pt;}
.y15_c00040{bottom:211.493333pt;}
.y14_c00040{bottom:234.026667pt;}
.y13_c00040{bottom:253.893333pt;}
.y12_c00040{bottom:275.493333pt;}
.y11_c00040{bottom:297.360000pt;}
.y10_c00040{bottom:318.560000pt;}
.yf_c00040{bottom:341.760000pt;}
.ye_c00040{bottom:363.760000pt;}
.yd_c00040{bottom:385.760000pt;}
.yc_c00040{bottom:407.760000pt;}
.yb_c00040{bottom:428.960000pt;}
.ya_c00040{bottom:450.960000pt;}
.y9_c00040{bottom:472.560000pt;}
.y8_c00040{bottom:494.693333pt;}
.y7_c00040{bottom:516.693333pt;}
.y6_c00040{bottom:538.560000pt;}
.y5_c00040{bottom:560.160000pt;}
.y4_c00040{bottom:582.293333pt;}
.y3_c00040{bottom:604.293333pt;}
.y2_c00040{bottom:626.693333pt;}
.y1_c00040{bottom:648.693333pt;}
.h5_c00040{height:11.733399pt;}
.h6_c00040{height:38.937500pt;}
.h4_c00040{height:69.875000pt;}
.h2_c00040{height:73.244792pt;}
.h3_c00040{height:81.031250pt;}
.h0_c00040{height:695.066667pt;}
.h1_c00040{height:695.333333pt;}
.w2_c00040{width:93.222667pt;}
.w0_c00040{width:499.666667pt;}
.w1_c00040{width:500.000000pt;}
.x0_c00040{left:0.000000pt;}
.x6_c00040{left:24.400000pt;}
.x5_c00040{left:26.666667pt;}
.x2_c00040{left:27.600000pt;}
.x3_c00040{left:28.533333pt;}
.x4_c00040{left:29.466667pt;}
.x1_c00040{left:118.400000pt;}
.x8_c00040{left:207.001546pt;}
.x7_c00040{left:323.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4d8ef0bbc986d8724a334792.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00041;src:url('chunks/assets/font_8c4d349c6da017e54abc945e.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.568848;font-style:normal;font-weight:normal;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_b90dbbfff7da6cd8ec714989.woff2')format("woff");}.ff3_c00041{font-family:ff3_c00041;line-height:1.480469;font-style:normal;font-weight:normal;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_1713ff3cef9fa910b9b586dd.woff2')format("woff");}.ff4_c00041{font-family:ff4_c00041;line-height:1.592000;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00041{font-family:ff5_c00041;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00041;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6_c00041{font-family:ff6_c00041;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00041;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00041{font-family:ff7_c00041;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00041{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00041{vertical-align:0.000000px;}
.ls3_c00041{letter-spacing:0.000000px;}
.ls2_c00041{letter-spacing:1.629000px;}
.ls1_c00041{letter-spacing:3.000000px;}
.ls0_c00041{letter-spacing:11.400000px;}
.sc__c00041{text-shadow:none;}
.sc0_c00041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00041{-webkit-text-stroke:0px transparent;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00041{word-spacing:-33.192000px;}
.ws1_c00041{word-spacing:-18.798000px;}
.ws2_c00041{word-spacing:0.000000px;}
._13_c00041{margin-left:-12.384000px;}
._c_c00041{margin-left:-9.648000px;}
._2_c00041{margin-left:-7.560000px;}
._a_c00041{margin-left:-6.480000px;}
._16_c00041{margin-left:-5.400000px;}
._8_c00041{margin-left:-4.392000px;}
._14_c00041{margin-left:-3.312000px;}
._9_c00041{margin-left:-2.088000px;}
._b_c00041{margin-left:-1.080000px;}
._6_c00041{width:1.224000px;}
._7_c00041{width:3.024000px;}
._4_c00041{width:4.608000px;}
._3_c00041{width:6.408000px;}
._1_c00041{width:7.560000px;}
._e_c00041{width:9.216000px;}
._5_c00041{width:11.304000px;}
._17_c00041{width:12.600000px;}
._0_c00041{width:13.824000px;}
._18_c00041{width:15.624000px;}
._d_c00041{width:17.136000px;}
._f_c00041{width:21.240000px;}
._11_c00041{width:53.568000px;}
._15_c00041{width:93.528000px;}
._10_c00041{width:95.160000px;}
._12_c00041{width:278.136000px;}
.fc2_c00041{color:transparent;}
.fc1_c00041{color:rgb(128,128,128);}
.fc0_c00041{color:rgb(0,0,0);}
.fs5_c00041{font-size:48.000000px;}
.fs1_c00041{font-size:54.000000px;}
.fs2_c00041{font-size:60.000000px;}
.fs3_c00041{font-size:69.000000px;}
.fs0_c00041{font-size:72.000000px;}
.fs4_c00041{font-size:78.000000px;}
.y0_c00041{bottom:0.000000px;}
.y1f_c00041{bottom:3.105000px;}
.y1e_c00041{bottom:7.228371px;}
.y1d_c00041{bottom:41.565000px;}
.y1c_c00041{bottom:64.515000px;}
.y1b_c00041{bottom:90.465000px;}
.y1a_c00041{bottom:114.765000px;}
.y19_c00041{bottom:139.365000px;}
.y18_c00041{bottom:165.165000px;}
.y17_c00041{bottom:189.315000px;}
.y16_c00041{bottom:215.115000px;}
.y15_c00041{bottom:239.715000px;}
.y14_c00041{bottom:262.665000px;}
.y13_c00041{bottom:287.265000px;}
.y12_c00041{bottom:311.265000px;}
.y11_c00041{bottom:337.215000px;}
.y10_c00041{bottom:360.465000px;}
.yf_c00041{bottom:386.565000px;}
.ye_c00041{bottom:410.115000px;}
.yd_c00041{bottom:435.015000px;}
.yc_c00041{bottom:460.065000px;}
.yb_c00041{bottom:485.715000px;}
.ya_c00041{bottom:509.415000px;}
.y9_c00041{bottom:535.065000px;}
.y8_c00041{bottom:560.715000px;}
.y7_c00041{bottom:583.665000px;}
.y6_c00041{bottom:607.215000px;}
.y5_c00041{bottom:631.215000px;}
.y4_c00041{bottom:655.815000px;}
.y3_c00041{bottom:680.715000px;}
.y2_c00041{bottom:706.365000px;}
.y1_c00041{bottom:730.365000px;}
.h7_c00041{height:13.200074px;}
.h8_c00041{height:43.804688px;}
.h2_c00041{height:70.628906px;}
.h5_c00041{height:70.664062px;}
.h4_c00041{height:80.758301px;}
.h3_c00041{height:91.160156px;}
.h6_c00041{height:98.756836px;}
.h1_c00041{height:790.500000px;}
.h0_c00041{height:790.575000px;}
.w2_c00041{width:104.875500px;}
.w1_c00041{width:538.500000px;}
.w0_c00041{width:538.650000px;}
.x0_c00041{left:0.000000px;}
.x4_c00041{left:61.050000px;}
.x3_c00041{left:70.800000px;}
.x2_c00041{left:137.400000px;}
.x5_c00041{left:138.750000px;}
.x6_c00041{left:139.800000px;}
.x7_c00041{left:140.850000px;}
.x8_c00041{left:142.200000px;}
.x9_c00041{left:143.550000px;}
.xb_c00041{left:221.139267px;}
.x1_c00041{left:248.850000px;}
.xa_c00041{left:480.900000px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls3_c00041{letter-spacing:0.000000pt;}
.ls2_c00041{letter-spacing:1.448000pt;}
.ls1_c00041{letter-spacing:2.666667pt;}
.ls0_c00041{letter-spacing:10.133333pt;}
.ws0_c00041{word-spacing:-29.504000pt;}
.ws1_c00041{word-spacing:-16.709333pt;}
.ws2_c00041{word-spacing:0.000000pt;}
._13_c00041{margin-left:-11.008000pt;}
._c_c00041{margin-left:-8.576000pt;}
._2_c00041{margin-left:-6.720000pt;}
._a_c00041{margin-left:-5.760000pt;}
._16_c00041{margin-left:-4.800000pt;}
._8_c00041{margin-left:-3.904000pt;}
._14_c00041{margin-left:-2.944000pt;}
._9_c00041{margin-left:-1.856000pt;}
._b_c00041{margin-left:-0.960000pt;}
._6_c00041{width:1.088000pt;}
._7_c00041{width:2.688000pt;}
._4_c00041{width:4.096000pt;}
._3_c00041{width:5.696000pt;}
._1_c00041{width:6.720000pt;}
._e_c00041{width:8.192000pt;}
._5_c00041{width:10.048000pt;}
._17_c00041{width:11.200000pt;}
._0_c00041{width:12.288000pt;}
._18_c00041{width:13.888000pt;}
._d_c00041{width:15.232000pt;}
._f_c00041{width:18.880000pt;}
._11_c00041{width:47.616000pt;}
._15_c00041{width:83.136000pt;}
._10_c00041{width:84.586667pt;}
._12_c00041{width:247.232000pt;}
.fs5_c00041{font-size:42.666667pt;}
.fs1_c00041{font-size:48.000000pt;}
.fs2_c00041{font-size:53.333333pt;}
.fs3_c00041{font-size:61.333333pt;}
.fs0_c00041{font-size:64.000000pt;}
.fs4_c00041{font-size:69.333333pt;}
.y0_c00041{bottom:0.000000pt;}
.y1f_c00041{bottom:2.760000pt;}
.y1e_c00041{bottom:6.425219pt;}
.y1d_c00041{bottom:36.946667pt;}
.y1c_c00041{bottom:57.346667pt;}
.y1b_c00041{bottom:80.413333pt;}
.y1a_c00041{bottom:102.013333pt;}
.y19_c00041{bottom:123.880000pt;}
.y18_c00041{bottom:146.813333pt;}
.y17_c00041{bottom:168.280000pt;}
.y16_c00041{bottom:191.213333pt;}
.y15_c00041{bottom:213.080000pt;}
.y14_c00041{bottom:233.480000pt;}
.y13_c00041{bottom:255.346667pt;}
.y12_c00041{bottom:276.680000pt;}
.y11_c00041{bottom:299.746667pt;}
.y10_c00041{bottom:320.413333pt;}
.yf_c00041{bottom:343.613333pt;}
.ye_c00041{bottom:364.546667pt;}
.yd_c00041{bottom:386.680000pt;}
.yc_c00041{bottom:408.946667pt;}
.yb_c00041{bottom:431.746667pt;}
.ya_c00041{bottom:452.813333pt;}
.y9_c00041{bottom:475.613333pt;}
.y8_c00041{bottom:498.413333pt;}
.y7_c00041{bottom:518.813333pt;}
.y6_c00041{bottom:539.746667pt;}
.y5_c00041{bottom:561.080000pt;}
.y4_c00041{bottom:582.946667pt;}
.y3_c00041{bottom:605.080000pt;}
.y2_c00041{bottom:627.880000pt;}
.y1_c00041{bottom:649.213333pt;}
.h7_c00041{height:11.733399pt;}
.h8_c00041{height:38.937500pt;}
.h2_c00041{height:62.781250pt;}
.h5_c00041{height:62.812500pt;}
.h4_c00041{height:71.785156pt;}
.h3_c00041{height:81.031250pt;}
.h6_c00041{height:87.783854pt;}
.h1_c00041{height:702.666667pt;}
.h0_c00041{height:702.733333pt;}
.w2_c00041{width:93.222667pt;}
.w1_c00041{width:478.666667pt;}
.w0_c00041{width:478.800000pt;}
.x0_c00041{left:0.000000pt;}
.x4_c00041{left:54.266667pt;}
.x3_c00041{left:62.933333pt;}
.x2_c00041{left:122.133333pt;}
.x5_c00041{left:123.333333pt;}
.x6_c00041{left:124.266667pt;}
.x7_c00041{left:125.200000pt;}
.x8_c00041{left:126.400000pt;}
.x9_c00041{left:127.600000pt;}
.xb_c00041{left:196.568237pt;}
.x1_c00041{left:221.200000pt;}
.xa_c00041{left:427.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7ed5b9d32bb37460a52eddd8.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.480469;font-style:normal;font-weight:normal;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_6e5e3f57a6b4721f387c4ba4.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:1.568848;font-style:normal;font-weight:normal;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_3123423bc5b99fb833db650b.woff2')format("woff");}.ff3_c00042{font-family:ff3_c00042;line-height:1.592000;font-style:normal;font-weight:normal;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_99c95d59e3f44723ae4bf171.woff2')format("woff");}.ff4_c00042{font-family:ff4_c00042;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00042;src:url('chunks/assets/font_1ee555df48ea7bff2ed1c3c1.woff2')format("woff");}.ff5_c00042{font-family:ff5_c00042;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00042;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6_c00042{font-family:ff6_c00042;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00042;src:url('chunks/assets/font_fb1639c49ff41d7ba5f83665.woff2')format("woff");}.ff7_c00042{font-family:ff7_c00042;line-height:1.575000;font-style:normal;font-weight: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_c00042;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff8_c00042{font-family:ff8_c00042;line-height:1.219238;font-style: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);}
.v1_c00042{vertical-align:-5.400000px;}
.v0_c00042{vertical-align:0.000000px;}
.ls2_c00042{letter-spacing:0.000000px;}
.ls0_c00042{letter-spacing:3.000000px;}
.ls3_c00042{letter-spacing:6.000000px;}
.ls1_c00042{letter-spacing:8.550000px;}
.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;}
}
.ws1_c00042{word-spacing:-17.352000px;}
.ws4_c00042{word-spacing:-16.254000px;}
.ws2_c00042{word-spacing:-13.821000px;}
.ws6_c00042{word-spacing:0.000000px;}
.ws5_c00042{word-spacing:7.278000px;}
.ws3_c00042{word-spacing:9.480000px;}
.ws0_c00042{word-spacing:14.880000px;}
._15_c00042{margin-left:-15.912000px;}
._10_c00042{margin-left:-13.530000px;}
._14_c00042{margin-left:-10.584000px;}
._13_c00042{margin-left:-8.784000px;}
._f_c00042{margin-left:-7.344000px;}
._16_c00042{margin-left:-6.120000px;}
._8_c00042{margin-left:-4.968000px;}
._9_c00042{margin-left:-3.888000px;}
._7_c00042{margin-left:-2.304000px;}
._4_c00042{margin-left:-1.152000px;}
._2_c00042{width:1.008000px;}
._5_c00042{width:2.088000px;}
._18_c00042{width:3.096000px;}
._3_c00042{width:4.104000px;}
._11_c00042{width:5.250000px;}
._b_c00042{width:6.480000px;}
._d_c00042{width:8.100000px;}
._1_c00042{width:9.504000px;}
._c_c00042{width:10.584000px;}
._12_c00042{width:12.024000px;}
._a_c00042{width:13.248000px;}
._0_c00042{width:14.760000px;}
._e_c00042{width:16.704000px;}
._19_c00042{width:18.312000px;}
._1a_c00042{width:19.356000px;}
._1c_c00042{width:20.652000px;}
._1d_c00042{width:21.726000px;}
._1b_c00042{width:23.106000px;}
._17_c00042{width:34.278000px;}
._1f_c00042{width:37.098000px;}
._1e_c00042{width:251.916000px;}
._6_c00042{width:318.816000px;}
._20_c00042{width:350.148000px;}
.fc2_c00042{color:transparent;}
.fc1_c00042{color:rgb(128,128,128);}
.fc0_c00042{color:rgb(0,0,0);}
.fs6_c00042{font-size:48.000000px;}
.fs3_c00042{font-size:51.000000px;}
.fs1_c00042{font-size:54.000000px;}
.fs4_c00042{font-size:60.000000px;}
.fs2_c00042{font-size:66.000000px;}
.fs5_c00042{font-size:69.000000px;}
.fs0_c00042{font-size:72.000000px;}
.y0_c00042{bottom:0.000000px;}
.y1f_c00042{bottom:3.105000px;}
.y1e_c00042{bottom:7.228363px;}
.y1d_c00042{bottom:42.450000px;}
.y1c_c00042{bottom:65.850000px;}
.y1b_c00042{bottom:91.650000px;}
.y1a_c00042{bottom:115.800000px;}
.y19_c00042{bottom:141.150000px;}
.y18_c00042{bottom:166.350000px;}
.y17_c00042{bottom:190.650000px;}
.y16_c00042{bottom:215.550000px;}
.y15_c00042{bottom:240.900000px;}
.y14_c00042{bottom:264.300000px;}
.y13_c00042{bottom:287.850000px;}
.y12_c00042{bottom:311.550000px;}
.y11_c00042{bottom:336.150000px;}
.y10_c00042{bottom:361.200000px;}
.yf_c00042{bottom:387.000000px;}
.ye_c00042{bottom:410.400000px;}
.yd_c00042{bottom:436.650000px;}
.yc_c00042{bottom:459.000000px;}
.yb_c00042{bottom:484.950000px;}
.ya_c00042{bottom:508.950000px;}
.y9_c00042{bottom:532.800000px;}
.y8_c00042{bottom:558.450000px;}
.y7_c00042{bottom:583.200000px;}
.y6_c00042{bottom:606.450000px;}
.y5_c00042{bottom:630.750000px;}
.y4_c00042{bottom:657.900000px;}
.y3_c00042{bottom:682.350000px;}
.y2_c00042{bottom:706.500000px;}
.y1_c00042{bottom:729.750000px;}
.h7_c00042{height:13.200074px;}
.h8_c00042{height:43.804688px;}
.h5_c00042{height:60.468750px;}
.h4_c00042{height:83.563477px;}
.h2_c00042{height:84.269531px;}
.h6_c00042{height:87.361816px;}
.h3_c00042{height:91.160156px;}
.h1_c00042{height:780.000000px;}
.h0_c00042{height:780.300000px;}
.w2_c00042{width:104.875500px;}
.w0_c00042{width:555.375000px;}
.w1_c00042{width:555.750000px;}
.x0_c00042{left:0.000000px;}
.x5_c00042{left:34.500000px;}
.x4_c00042{left:35.850000px;}
.x3_c00042{left:37.350000px;}
.x2_c00042{left:40.500000px;}
.x1_c00042{left:146.400000px;}
.x7_c00042{left:229.501740px;}
.x6_c00042{left:283.500000px;}
@media print{
.v1_c00042{vertical-align:-4.800000pt;}
.v0_c00042{vertical-align:0.000000pt;}
.ls2_c00042{letter-spacing:0.000000pt;}
.ls0_c00042{letter-spacing:2.666667pt;}
.ls3_c00042{letter-spacing:5.333333pt;}
.ls1_c00042{letter-spacing:7.600000pt;}
.ws1_c00042{word-spacing:-15.424000pt;}
.ws4_c00042{word-spacing:-14.448000pt;}
.ws2_c00042{word-spacing:-12.285333pt;}
.ws6_c00042{word-spacing:0.000000pt;}
.ws5_c00042{word-spacing:6.469333pt;}
.ws3_c00042{word-spacing:8.426667pt;}
.ws0_c00042{word-spacing:13.226667pt;}
._15_c00042{margin-left:-14.144000pt;}
._10_c00042{margin-left:-12.026667pt;}
._14_c00042{margin-left:-9.408000pt;}
._13_c00042{margin-left:-7.808000pt;}
._f_c00042{margin-left:-6.528000pt;}
._16_c00042{margin-left:-5.440000pt;}
._8_c00042{margin-left:-4.416000pt;}
._9_c00042{margin-left:-3.456000pt;}
._7_c00042{margin-left:-2.048000pt;}
._4_c00042{margin-left:-1.024000pt;}
._2_c00042{width:0.896000pt;}
._5_c00042{width:1.856000pt;}
._18_c00042{width:2.752000pt;}
._3_c00042{width:3.648000pt;}
._11_c00042{width:4.666667pt;}
._b_c00042{width:5.760000pt;}
._d_c00042{width:7.200000pt;}
._1_c00042{width:8.448000pt;}
._c_c00042{width:9.408000pt;}
._12_c00042{width:10.688000pt;}
._a_c00042{width:11.776000pt;}
._0_c00042{width:13.120000pt;}
._e_c00042{width:14.848000pt;}
._19_c00042{width:16.277333pt;}
._1a_c00042{width:17.205333pt;}
._1c_c00042{width:18.357333pt;}
._1d_c00042{width:19.312000pt;}
._1b_c00042{width:20.538667pt;}
._17_c00042{width:30.469333pt;}
._1f_c00042{width:32.976000pt;}
._1e_c00042{width:223.925333pt;}
._6_c00042{width:283.392000pt;}
._20_c00042{width:311.242667pt;}
.fs6_c00042{font-size:42.666667pt;}
.fs3_c00042{font-size:45.333333pt;}
.fs1_c00042{font-size:48.000000pt;}
.fs4_c00042{font-size:53.333333pt;}
.fs2_c00042{font-size:58.666667pt;}
.fs5_c00042{font-size:61.333333pt;}
.fs0_c00042{font-size:64.000000pt;}
.y0_c00042{bottom:0.000000pt;}
.y1f_c00042{bottom:2.760000pt;}
.y1e_c00042{bottom:6.425212pt;}
.y1d_c00042{bottom:37.733333pt;}
.y1c_c00042{bottom:58.533333pt;}
.y1b_c00042{bottom:81.466667pt;}
.y1a_c00042{bottom:102.933333pt;}
.y19_c00042{bottom:125.466667pt;}
.y18_c00042{bottom:147.866667pt;}
.y17_c00042{bottom:169.466667pt;}
.y16_c00042{bottom:191.600000pt;}
.y15_c00042{bottom:214.133333pt;}
.y14_c00042{bottom:234.933333pt;}
.y13_c00042{bottom:255.866667pt;}
.y12_c00042{bottom:276.933333pt;}
.y11_c00042{bottom:298.800000pt;}
.y10_c00042{bottom:321.066667pt;}
.yf_c00042{bottom:344.000000pt;}
.ye_c00042{bottom:364.800000pt;}
.yd_c00042{bottom:388.133333pt;}
.yc_c00042{bottom:408.000000pt;}
.yb_c00042{bottom:431.066667pt;}
.ya_c00042{bottom:452.400000pt;}
.y9_c00042{bottom:473.600000pt;}
.y8_c00042{bottom:496.400000pt;}
.y7_c00042{bottom:518.400000pt;}
.y6_c00042{bottom:539.066667pt;}
.y5_c00042{bottom:560.666667pt;}
.y4_c00042{bottom:584.800000pt;}
.y3_c00042{bottom:606.533333pt;}
.y2_c00042{bottom:628.000000pt;}
.y1_c00042{bottom:648.666667pt;}
.h7_c00042{height:11.733399pt;}
.h8_c00042{height:38.937500pt;}
.h5_c00042{height:53.750000pt;}
.h4_c00042{height:74.278646pt;}
.h2_c00042{height:74.906250pt;}
.h6_c00042{height:77.654948pt;}
.h3_c00042{height:81.031250pt;}
.h1_c00042{height:693.333333pt;}
.h0_c00042{height:693.600000pt;}
.w2_c00042{width:93.222667pt;}
.w0_c00042{width:493.666667pt;}
.w1_c00042{width:494.000000pt;}
.x0_c00042{left:0.000000pt;}
.x5_c00042{left:30.666667pt;}
.x4_c00042{left:31.866667pt;}
.x3_c00042{left:33.200000pt;}
.x2_c00042{left:36.000000pt;}
.x1_c00042{left:130.133333pt;}
.x7_c00042{left:204.001546pt;}
.x6_c00042{left:252.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_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_2ab06e18c1d2b24daa58b111.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00043;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00043;src:url('chunks/assets/font_35ec648c9d1b36497298a899.woff2')format("woff");}.ff3_c00043{font-family:ff3_c00043;line-height:1.568848;font-style:normal;font-weight:normal;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_df2a8b25b3d8b040d4909254.woff2')format("woff");}.ff4_c00043{font-family:ff4_c00043;line-height:1.480469;font-style:normal;font-weight:normal;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_dc8e385f93084f228101aa0c.woff2')format("woff");}.ff5_c00043{font-family:ff5_c00043;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00043;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00043{font-family:ff6_c00043;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00043{vertical-align:0.000000px;}
.ls4_c00043{letter-spacing:-6.000000px;}
.ls3_c00043{letter-spacing:0.000000px;}
.ls2_c00043{letter-spacing:3.000000px;}
.ls1_c00043{letter-spacing:3.417000px;}
.ls0_c00043{letter-spacing:20.886000px;}
.sc__c00043{text-shadow:none;}
.sc0_c00043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00043{-webkit-text-stroke:0px transparent;}
.sc0_c00043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00043{word-spacing:-29.043000px;}
.ws1_c00043{word-spacing:-25.974000px;}
.ws2_c00043{word-spacing:0.000000px;}
._5_c00043{margin-left:-17.640000px;}
._2_c00043{margin-left:-10.920000px;}
._13_c00043{margin-left:-8.352000px;}
._12_c00043{margin-left:-7.068000px;}
._14_c00043{margin-left:-5.712000px;}
._9_c00043{margin-left:-4.422000px;}
._11_c00043{margin-left:-3.204000px;}
._8_c00043{margin-left:-2.178000px;}
._d_c00043{margin-left:-1.092000px;}
._1_c00043{width:1.260000px;}
._10_c00043{width:2.268000px;}
._0_c00043{width:3.276000px;}
._c_c00043{width:4.710000px;}
._7_c00043{width:5.964000px;}
._b_c00043{width:7.740000px;}
._6_c00043{width:9.492000px;}
._3_c00043{width:10.584000px;}
._15_c00043{width:11.694000px;}
._a_c00043{width:12.978000px;}
._4_c00043{width:14.364000px;}
._f_c00043{width:15.654000px;}
._e_c00043{width:18.468000px;}
.fc2_c00043{color:transparent;}
.fc1_c00043{color:rgb(128,128,128);}
.fc0_c00043{color:rgb(0,0,0);}
.fs5_c00043{font-size:48.000000px;}
.fs2_c00043{font-size:63.000000px;}
.fs1_c00043{font-size:66.000000px;}
.fs3_c00043{font-size:72.000000px;}
.fs4_c00043{font-size:78.000000px;}
.fs0_c00043{font-size:84.000000px;}
.y0_c00043{bottom:0.000000px;}
.y1f_c00043{bottom:3.105000px;}
.y1e_c00043{bottom:7.228371px;}
.y1d_c00043{bottom:49.365000px;}
.y1c_c00043{bottom:73.365000px;}
.y1b_c00043{bottom:98.565000px;}
.y1a_c00043{bottom:124.665000px;}
.y19_c00043{bottom:148.515000px;}
.y18_c00043{bottom:175.965000px;}
.y17_c00043{bottom:199.515000px;}
.y16_c00043{bottom:223.215000px;}
.y15_c00043{bottom:248.865000px;}
.y14_c00043{bottom:272.415000px;}
.y13_c00043{bottom:297.015000px;}
.y12_c00043{bottom:321.615000px;}
.y11_c00043{bottom:346.065000px;}
.y10_c00043{bottom:370.365000px;}
.yf_c00043{bottom:394.965000px;}
.ye_c00043{bottom:419.865000px;}
.yd_c00043{bottom:444.165000px;}
.yc_c00043{bottom:468.915000px;}
.yb_c00043{bottom:493.065000px;}
.ya_c00043{bottom:516.165000px;}
.y9_c00043{bottom:542.115000px;}
.y8_c00043{bottom:565.965000px;}
.y7_c00043{bottom:590.415000px;}
.y6_c00043{bottom:614.715000px;}
.y5_c00043{bottom:639.915000px;}
.y4_c00043{bottom:663.165000px;}
.y3_c00043{bottom:688.515000px;}
.y2_c00043{bottom:712.815000px;}
.y1_c00043{bottom:737.865000px;}
.h6_c00043{height:13.200074px;}
.h7_c00043{height:43.804688px;}
.h5_c00043{height:78.609375px;}
.h2_c00043{height:82.441406px;}
.h3_c00043{height:83.563477px;}
.h4_c00043{height:91.160156px;}
.h0_c00043{height:791.925000px;}
.h1_c00043{height:792.000000px;}
.w2_c00043{width:104.875500px;}
.w0_c00043{width:540.525000px;}
.w1_c00043{width:540.750000px;}
.x0_c00043{left:0.000000px;}
.x4_c00043{left:132.000000px;}
.x2_c00043{left:133.200000px;}
.x3_c00043{left:134.400000px;}
.x5_c00043{left:136.050000px;}
.x7_c00043{left:222.076767px;}
.x1_c00043{left:248.100000px;}
.x6_c00043{left:500.550000px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls4_c00043{letter-spacing:-5.333333pt;}
.ls3_c00043{letter-spacing:0.000000pt;}
.ls2_c00043{letter-spacing:2.666667pt;}
.ls1_c00043{letter-spacing:3.037333pt;}
.ls0_c00043{letter-spacing:18.565333pt;}
.ws0_c00043{word-spacing:-25.816000pt;}
.ws1_c00043{word-spacing:-23.088000pt;}
.ws2_c00043{word-spacing:0.000000pt;}
._5_c00043{margin-left:-15.680000pt;}
._2_c00043{margin-left:-9.706667pt;}
._13_c00043{margin-left:-7.424000pt;}
._12_c00043{margin-left:-6.282667pt;}
._14_c00043{margin-left:-5.077333pt;}
._9_c00043{margin-left:-3.930667pt;}
._11_c00043{margin-left:-2.848000pt;}
._8_c00043{margin-left:-1.936000pt;}
._d_c00043{margin-left:-0.970667pt;}
._1_c00043{width:1.120000pt;}
._10_c00043{width:2.016000pt;}
._0_c00043{width:2.912000pt;}
._c_c00043{width:4.186667pt;}
._7_c00043{width:5.301333pt;}
._b_c00043{width:6.880000pt;}
._6_c00043{width:8.437333pt;}
._3_c00043{width:9.408000pt;}
._15_c00043{width:10.394667pt;}
._a_c00043{width:11.536000pt;}
._4_c00043{width:12.768000pt;}
._f_c00043{width:13.914667pt;}
._e_c00043{width:16.416000pt;}
.fs5_c00043{font-size:42.666667pt;}
.fs2_c00043{font-size:56.000000pt;}
.fs1_c00043{font-size:58.666667pt;}
.fs3_c00043{font-size:64.000000pt;}
.fs4_c00043{font-size:69.333333pt;}
.fs0_c00043{font-size:74.666667pt;}
.y0_c00043{bottom:0.000000pt;}
.y1f_c00043{bottom:2.760000pt;}
.y1e_c00043{bottom:6.425219pt;}
.y1d_c00043{bottom:43.880000pt;}
.y1c_c00043{bottom:65.213333pt;}
.y1b_c00043{bottom:87.613333pt;}
.y1a_c00043{bottom:110.813333pt;}
.y19_c00043{bottom:132.013333pt;}
.y18_c00043{bottom:156.413333pt;}
.y17_c00043{bottom:177.346667pt;}
.y16_c00043{bottom:198.413333pt;}
.y15_c00043{bottom:221.213333pt;}
.y14_c00043{bottom:242.146667pt;}
.y13_c00043{bottom:264.013333pt;}
.y12_c00043{bottom:285.880000pt;}
.y11_c00043{bottom:307.613333pt;}
.y10_c00043{bottom:329.213333pt;}
.yf_c00043{bottom:351.080000pt;}
.ye_c00043{bottom:373.213333pt;}
.yd_c00043{bottom:394.813333pt;}
.yc_c00043{bottom:416.813333pt;}
.yb_c00043{bottom:438.280000pt;}
.ya_c00043{bottom:458.813333pt;}
.y9_c00043{bottom:481.880000pt;}
.y8_c00043{bottom:503.080000pt;}
.y7_c00043{bottom:524.813333pt;}
.y6_c00043{bottom:546.413333pt;}
.y5_c00043{bottom:568.813333pt;}
.y4_c00043{bottom:589.480000pt;}
.y3_c00043{bottom:612.013333pt;}
.y2_c00043{bottom:633.613333pt;}
.y1_c00043{bottom:655.880000pt;}
.h6_c00043{height:11.733399pt;}
.h7_c00043{height:38.937500pt;}
.h5_c00043{height:69.875000pt;}
.h2_c00043{height:73.281250pt;}
.h3_c00043{height:74.278646pt;}
.h4_c00043{height:81.031250pt;}
.h0_c00043{height:703.933333pt;}
.h1_c00043{height:704.000000pt;}
.w2_c00043{width:93.222667pt;}
.w0_c00043{width:480.466667pt;}
.w1_c00043{width:480.666667pt;}
.x0_c00043{left:0.000000pt;}
.x4_c00043{left:117.333333pt;}
.x2_c00043{left:118.400000pt;}
.x3_c00043{left:119.466667pt;}
.x5_c00043{left:120.933333pt;}
.x7_c00043{left:197.401571pt;}
.x1_c00043{left:220.533333pt;}
.x6_c00043{left:444.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9454157229d6ad652ac02e7c.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.480469;font-style:normal;font-weight:normal;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_7ffe08c8fb2073e2bd02a8dc.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:1.568848;font-style:normal;font-weight:normal;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_87df5df234ef3c24c12d40bb.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00044;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00044{font-family:ff4_c00044;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00044;src:url('chunks/assets/font_bbf63ae64099b50cb310c5ad.woff2')format("woff");}.ff5_c00044{font-family:ff5_c00044;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00044;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00044{font-family:ff6_c00044;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00044{vertical-align:0.000000px;}
.ls7_c00044{letter-spacing:0.000000px;}
.ls3_c00044{letter-spacing:2.022000px;}
.ls5_c00044{letter-spacing:3.000000px;}
.ls2_c00044{letter-spacing:5.128800px;}
.ls8_c00044{letter-spacing:6.000000px;}
.ls6_c00044{letter-spacing:7.032000px;}
.ls1_c00044{letter-spacing:14.100000px;}
.ls0_c00044{letter-spacing:21.386400px;}
.ls4_c00044{letter-spacing:35.976000px;}
.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;}
}
.ws2_c00044{word-spacing:-19.500000px;}
.ws1_c00044{word-spacing:-0.051000px;}
.ws0_c00044{word-spacing:-0.040800px;}
.ws3_c00044{word-spacing:0.000000px;}
._10_c00044{margin-left:-11.808000px;}
._e_c00044{margin-left:-7.392000px;}
._b_c00044{margin-left:-6.030000px;}
._a_c00044{margin-left:-4.836000px;}
._8_c00044{margin-left:-3.672000px;}
._4_c00044{margin-left:-2.376000px;}
._d_c00044{margin-left:-1.014000px;}
._9_c00044{width:1.872000px;}
._5_c00044{width:3.168000px;}
._2_c00044{width:4.968000px;}
._6_c00044{width:6.480000px;}
._1_c00044{width:8.280000px;}
._3_c00044{width:10.080000px;}
._f_c00044{width:12.108000px;}
._0_c00044{width:13.608000px;}
._c_c00044{width:15.726000px;}
._11_c00044{width:35.688000px;}
._12_c00044{width:244.512000px;}
._7_c00044{width:334.824000px;}
.fc2_c00044{color:transparent;}
.fc1_c00044{color:rgb(128,128,128);}
.fc0_c00044{color:rgb(0,0,0);}
.fs2_c00044{font-size:40.800000px;}
.fs6_c00044{font-size:48.000000px;}
.fs3_c00044{font-size:51.000000px;}
.fs1_c00044{font-size:66.000000px;}
.fs0_c00044{font-size:72.000000px;}
.fs4_c00044{font-size:78.000000px;}
.fs5_c00044{font-size:81.000000px;}
.y0_c00044{bottom:0.000000px;}
.y1f_c00044{bottom:3.105000px;}
.y1e_c00044{bottom:7.228355px;}
.y1d_c00044{bottom:39.135000px;}
.y1c_c00044{bottom:67.035000px;}
.y1b_c00044{bottom:89.985000px;}
.y1a_c00044{bottom:115.635000px;}
.y19_c00044{bottom:140.985000px;}
.y18_c00044{bottom:163.035000px;}
.y17_c00044{bottom:188.235000px;}
.y16_c00044{bottom:215.235000px;}
.y15_c00044{bottom:237.585000px;}
.y14_c00044{bottom:266.235000px;}
.y13_c00044{bottom:289.935000px;}
.y12_c00044{bottom:311.535000px;}
.y11_c00044{bottom:336.735000px;}
.y10_c00044{bottom:361.335000px;}
.yf_c00044{bottom:386.385000px;}
.ye_c00044{bottom:410.685000px;}
.yd_c00044{bottom:435.585000px;}
.yc_c00044{bottom:460.635000px;}
.yb_c00044{bottom:484.935000px;}
.ya_c00044{bottom:509.535000px;}
.y9_c00044{bottom:533.835000px;}
.y8_c00044{bottom:557.535000px;}
.y7_c00044{bottom:582.135000px;}
.y6_c00044{bottom:607.035000px;}
.y5_c00044{bottom:631.335000px;}
.y4_c00044{bottom:656.085000px;}
.y3_c00044{bottom:680.385000px;}
.y2_c00044{bottom:704.685000px;}
.y1_c00044{bottom:730.035000px;}
.h4_c00044{height:13.200074px;}
.h5_c00044{height:43.804688px;}
.h3_c00044{height:78.609375px;}
.h2_c00044{height:91.160156px;}
.h1_c00044{height:786.000000px;}
.h0_c00044{height:786.225000px;}
.w2_c00044{width:104.875500px;}
.w1_c00044{width:566.250000px;}
.w0_c00044{width:566.475000px;}
.x0_c00044{left:0.000000px;}
.x6_c00044{left:33.750000px;}
.x7_c00044{left:37.800000px;}
.x5_c00044{left:39.450000px;}
.x3_c00044{left:40.950000px;}
.x2_c00044{left:42.150000px;}
.x1_c00044{left:145.950000px;}
.x9_c00044{left:235.051758px;}
.x8_c00044{left:271.800000px;}
.x4_c00044{left:406.350000px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.ls7_c00044{letter-spacing:0.000000pt;}
.ls3_c00044{letter-spacing:1.797333pt;}
.ls5_c00044{letter-spacing:2.666667pt;}
.ls2_c00044{letter-spacing:4.558933pt;}
.ls8_c00044{letter-spacing:5.333333pt;}
.ls6_c00044{letter-spacing:6.250667pt;}
.ls1_c00044{letter-spacing:12.533333pt;}
.ls0_c00044{letter-spacing:19.010133pt;}
.ls4_c00044{letter-spacing:31.978667pt;}
.ws2_c00044{word-spacing:-17.333333pt;}
.ws1_c00044{word-spacing:-0.045333pt;}
.ws0_c00044{word-spacing:-0.036267pt;}
.ws3_c00044{word-spacing:0.000000pt;}
._10_c00044{margin-left:-10.496000pt;}
._e_c00044{margin-left:-6.570667pt;}
._b_c00044{margin-left:-5.360000pt;}
._a_c00044{margin-left:-4.298667pt;}
._8_c00044{margin-left:-3.264000pt;}
._4_c00044{margin-left:-2.112000pt;}
._d_c00044{margin-left:-0.901333pt;}
._9_c00044{width:1.664000pt;}
._5_c00044{width:2.816000pt;}
._2_c00044{width:4.416000pt;}
._6_c00044{width:5.760000pt;}
._1_c00044{width:7.360000pt;}
._3_c00044{width:8.960000pt;}
._f_c00044{width:10.762667pt;}
._0_c00044{width:12.096000pt;}
._c_c00044{width:13.978667pt;}
._11_c00044{width:31.722667pt;}
._12_c00044{width:217.344000pt;}
._7_c00044{width:297.621333pt;}
.fs2_c00044{font-size:36.266667pt;}
.fs6_c00044{font-size:42.666667pt;}
.fs3_c00044{font-size:45.333333pt;}
.fs1_c00044{font-size:58.666667pt;}
.fs0_c00044{font-size:64.000000pt;}
.fs4_c00044{font-size:69.333333pt;}
.fs5_c00044{font-size:72.000000pt;}
.y0_c00044{bottom:0.000000pt;}
.y1f_c00044{bottom:2.760000pt;}
.y1e_c00044{bottom:6.425204pt;}
.y1d_c00044{bottom:34.786667pt;}
.y1c_c00044{bottom:59.586667pt;}
.y1b_c00044{bottom:79.986667pt;}
.y1a_c00044{bottom:102.786667pt;}
.y19_c00044{bottom:125.320000pt;}
.y18_c00044{bottom:144.920000pt;}
.y17_c00044{bottom:167.320000pt;}
.y16_c00044{bottom:191.320000pt;}
.y15_c00044{bottom:211.186667pt;}
.y14_c00044{bottom:236.653333pt;}
.y13_c00044{bottom:257.720000pt;}
.y12_c00044{bottom:276.920000pt;}
.y11_c00044{bottom:299.320000pt;}
.y10_c00044{bottom:321.186667pt;}
.yf_c00044{bottom:343.453333pt;}
.ye_c00044{bottom:365.053333pt;}
.yd_c00044{bottom:387.186667pt;}
.yc_c00044{bottom:409.453333pt;}
.yb_c00044{bottom:431.053333pt;}
.ya_c00044{bottom:452.920000pt;}
.y9_c00044{bottom:474.520000pt;}
.y8_c00044{bottom:495.586667pt;}
.y7_c00044{bottom:517.453333pt;}
.y6_c00044{bottom:539.586667pt;}
.y5_c00044{bottom:561.186667pt;}
.y4_c00044{bottom:583.186667pt;}
.y3_c00044{bottom:604.786667pt;}
.y2_c00044{bottom:626.386667pt;}
.y1_c00044{bottom:648.920000pt;}
.h4_c00044{height:11.733399pt;}
.h5_c00044{height:38.937500pt;}
.h3_c00044{height:69.875000pt;}
.h2_c00044{height:81.031250pt;}
.h1_c00044{height:698.666667pt;}
.h0_c00044{height:698.866667pt;}
.w2_c00044{width:93.222667pt;}
.w1_c00044{width:503.333333pt;}
.w0_c00044{width:503.533333pt;}
.x0_c00044{left:0.000000pt;}
.x6_c00044{left:30.000000pt;}
.x7_c00044{left:33.600000pt;}
.x5_c00044{left:35.066667pt;}
.x3_c00044{left:36.400000pt;}
.x2_c00044{left:37.466667pt;}
.x1_c00044{left:129.733333pt;}
.x9_c00044{left:208.934896pt;}
.x8_c00044{left:241.600000pt;}
.x4_c00044{left:361.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_519443f9f74fc474f4ce1f48.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00045;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00045;src:url('chunks/assets/font_2562d55e70907e4e15597c0e.woff2')format("woff");}.ff3_c00045{font-family:ff3_c00045;line-height:1.568848;font-style:normal;font-weight:normal;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_8a7f3f65db8aac4a5867f7ea.woff2')format("woff");}.ff4_c00045{font-family:ff4_c00045;line-height:1.480469;font-style:normal;font-weight:normal;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_fba91e135be20b30307fa275.woff2')format("woff");}.ff5_c00045{font-family:ff5_c00045;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00045;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00045{font-family:ff6_c00045;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00045{vertical-align:0.000000px;}
.ls5_c00045{letter-spacing:-3.000000px;}
.ls3_c00045{letter-spacing:0.000000px;}
.ls1_c00045{letter-spacing:0.900000px;}
.ls4_c00045{letter-spacing:3.000000px;}
.ls0_c00045{letter-spacing:9.000000px;}
.ls2_c00045{letter-spacing:11.550000px;}
.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:-42.192000px;}
.ws2_c00045{word-spacing:-33.192000px;}
.ws1_c00045{word-spacing:-14.250000px;}
.ws3_c00045{word-spacing:0.000000px;}
._11_c00045{margin-left:-11.952000px;}
._f_c00045{margin-left:-10.656000px;}
._d_c00045{margin-left:-8.712000px;}
._5_c00045{margin-left:-7.200000px;}
._c_c00045{margin-left:-5.400000px;}
._b_c00045{margin-left:-3.816000px;}
._a_c00045{margin-left:-1.944000px;}
._9_c00045{width:1.224000px;}
._7_c00045{width:2.952000px;}
._8_c00045{width:4.536000px;}
._10_c00045{width:5.832000px;}
._2_c00045{width:7.632000px;}
._6_c00045{width:9.144000px;}
._4_c00045{width:10.152000px;}
._1_c00045{width:12.168000px;}
._3_c00045{width:14.112000px;}
._0_c00045{width:15.480000px;}
._14_c00045{width:29.592000px;}
._16_c00045{width:33.855000px;}
._e_c00045{width:69.768000px;}
._12_c00045{width:94.896000px;}
._13_c00045{width:104.832000px;}
._15_c00045{width:185.760000px;}
._17_c00045{width:850.353000px;}
.fc2_c00045{color:transparent;}
.fc1_c00045{color:rgb(128,128,128);}
.fc0_c00045{color:rgb(0,0,0);}
.fs4_c00045{font-size:48.000000px;}
.fs2_c00045{font-size:57.000000px;}
.fs0_c00045{font-size:72.000000px;}
.fs1_c00045{font-size:81.000000px;}
.fs3_c00045{font-size:87.000000px;}
.y0_c00045{bottom:0.000000px;}
.y1f_c00045{bottom:3.105000px;}
.y1e_c00045{bottom:7.228357px;}
.y1d_c00045{bottom:52.380000px;}
.y1c_c00045{bottom:77.580000px;}
.y1b_c00045{bottom:102.930000px;}
.y1a_c00045{bottom:126.930000px;}
.y19_c00045{bottom:153.630000px;}
.y18_c00045{bottom:177.930000px;}
.y17_c00045{bottom:201.930000px;}
.y16_c00045{bottom:226.830000px;}
.y15_c00045{bottom:250.380000px;}
.y14_c00045{bottom:275.430000px;}
.y13_c00045{bottom:299.730000px;}
.y12_c00045{bottom:324.780000px;}
.y11_c00045{bottom:349.080000px;}
.y10_c00045{bottom:373.680000px;}
.yf_c00045{bottom:398.280000px;}
.ye_c00045{bottom:422.280000px;}
.yd_c00045{bottom:446.280000px;}
.yc_c00045{bottom:471.480000px;}
.yb_c00045{bottom:496.530000px;}
.ya_c00045{bottom:520.830000px;}
.y9_c00045{bottom:544.680000px;}
.y8_c00045{bottom:569.430000px;}
.y7_c00045{bottom:593.730000px;}
.y6_c00045{bottom:617.280000px;}
.y5_c00045{bottom:642.930000px;}
.y4_c00045{bottom:666.930000px;}
.y3_c00045{bottom:691.530000px;}
.y2_c00045{bottom:716.280000px;}
.y1_c00045{bottom:741.930000px;}
.h5_c00045{height:13.200074px;}
.h6_c00045{height:43.804688px;}
.h2_c00045{height:70.664062px;}
.h3_c00045{height:91.160156px;}
.h4_c00045{height:110.151855px;}
.h1_c00045{height:796.500000px;}
.h0_c00045{height:796.800000px;}
.w2_c00045{width:104.875500px;}
.w0_c00045{width:528.375000px;}
.w1_c00045{width:528.750000px;}
.x0_c00045{left:0.000000px;}
.x8_c00045{left:49.050000px;}
.x9_c00045{left:50.700000px;}
.x7_c00045{left:53.100000px;}
.xa_c00045{left:56.100000px;}
.x5_c00045{left:116.850000px;}
.x4_c00045{left:120.150000px;}
.x6_c00045{left:127.350000px;}
.x2_c00045{left:128.700000px;}
.x3_c00045{left:130.350000px;}
.xb_c00045{left:132.600000px;}
.xd_c00045{left:216.001740px;}
.x1_c00045{left:240.900000px;}
.xc_c00045{left:242.100000px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls5_c00045{letter-spacing:-2.666667pt;}
.ls3_c00045{letter-spacing:0.000000pt;}
.ls1_c00045{letter-spacing:0.800000pt;}
.ls4_c00045{letter-spacing:2.666667pt;}
.ls0_c00045{letter-spacing:8.000000pt;}
.ls2_c00045{letter-spacing:10.266667pt;}
.ws0_c00045{word-spacing:-37.504000pt;}
.ws2_c00045{word-spacing:-29.504000pt;}
.ws1_c00045{word-spacing:-12.666667pt;}
.ws3_c00045{word-spacing:0.000000pt;}
._11_c00045{margin-left:-10.624000pt;}
._f_c00045{margin-left:-9.472000pt;}
._d_c00045{margin-left:-7.744000pt;}
._5_c00045{margin-left:-6.400000pt;}
._c_c00045{margin-left:-4.800000pt;}
._b_c00045{margin-left:-3.392000pt;}
._a_c00045{margin-left:-1.728000pt;}
._9_c00045{width:1.088000pt;}
._7_c00045{width:2.624000pt;}
._8_c00045{width:4.032000pt;}
._10_c00045{width:5.184000pt;}
._2_c00045{width:6.784000pt;}
._6_c00045{width:8.128000pt;}
._4_c00045{width:9.024000pt;}
._1_c00045{width:10.816000pt;}
._3_c00045{width:12.544000pt;}
._0_c00045{width:13.760000pt;}
._14_c00045{width:26.304000pt;}
._16_c00045{width:30.093333pt;}
._e_c00045{width:62.016000pt;}
._12_c00045{width:84.352000pt;}
._13_c00045{width:93.184000pt;}
._15_c00045{width:165.120000pt;}
._17_c00045{width:755.869333pt;}
.fs4_c00045{font-size:42.666667pt;}
.fs2_c00045{font-size:50.666667pt;}
.fs0_c00045{font-size:64.000000pt;}
.fs1_c00045{font-size:72.000000pt;}
.fs3_c00045{font-size:77.333333pt;}
.y0_c00045{bottom:0.000000pt;}
.y1f_c00045{bottom:2.760000pt;}
.y1e_c00045{bottom:6.425206pt;}
.y1d_c00045{bottom:46.560000pt;}
.y1c_c00045{bottom:68.960000pt;}
.y1b_c00045{bottom:91.493333pt;}
.y1a_c00045{bottom:112.826667pt;}
.y19_c00045{bottom:136.560000pt;}
.y18_c00045{bottom:158.160000pt;}
.y17_c00045{bottom:179.493333pt;}
.y16_c00045{bottom:201.626667pt;}
.y15_c00045{bottom:222.560000pt;}
.y14_c00045{bottom:244.826667pt;}
.y13_c00045{bottom:266.426667pt;}
.y12_c00045{bottom:288.693333pt;}
.y11_c00045{bottom:310.293333pt;}
.y10_c00045{bottom:332.160000pt;}
.yf_c00045{bottom:354.026667pt;}
.ye_c00045{bottom:375.360000pt;}
.yd_c00045{bottom:396.693333pt;}
.yc_c00045{bottom:419.093333pt;}
.yb_c00045{bottom:441.360000pt;}
.ya_c00045{bottom:462.960000pt;}
.y9_c00045{bottom:484.160000pt;}
.y8_c00045{bottom:506.160000pt;}
.y7_c00045{bottom:527.760000pt;}
.y6_c00045{bottom:548.693333pt;}
.y5_c00045{bottom:571.493333pt;}
.y4_c00045{bottom:592.826667pt;}
.y3_c00045{bottom:614.693333pt;}
.y2_c00045{bottom:636.693333pt;}
.y1_c00045{bottom:659.493333pt;}
.h5_c00045{height:11.733399pt;}
.h6_c00045{height:38.937500pt;}
.h2_c00045{height:62.812500pt;}
.h3_c00045{height:81.031250pt;}
.h4_c00045{height:97.912760pt;}
.h1_c00045{height:708.000000pt;}
.h0_c00045{height:708.266667pt;}
.w2_c00045{width:93.222667pt;}
.w0_c00045{width:469.666667pt;}
.w1_c00045{width:470.000000pt;}
.x0_c00045{left:0.000000pt;}
.x8_c00045{left:43.600000pt;}
.x9_c00045{left:45.066667pt;}
.x7_c00045{left:47.200000pt;}
.xa_c00045{left:49.866667pt;}
.x5_c00045{left:103.866667pt;}
.x4_c00045{left:106.800000pt;}
.x6_c00045{left:113.200000pt;}
.x2_c00045{left:114.400000pt;}
.x3_c00045{left:115.866667pt;}
.xb_c00045{left:117.866667pt;}
.xd_c00045{left:192.001546pt;}
.x1_c00045{left:214.133333pt;}
.xc_c00045{left:215.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_55926198f4a27c1afac5216c.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.568848;font-style:normal;font-weight:normal;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_5f2314b78ac5db14ad51b433.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00046;src:url('chunks/assets/font_919d8b962ede21255ed2fa6c.woff2')format("woff");}.ff3_c00046{font-family:ff3_c00046;line-height:1.480469;font-style:normal;font-weight:normal;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_ccbd9fda22bd3bb353593170.woff2')format("woff");}.ff4_c00046{font-family:ff4_c00046;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00046;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00046{font-family:ff5_c00046;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00046;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00046{font-family:ff6_c00046;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00046{vertical-align:0.000000px;}
.ls1_c00046{letter-spacing:0.000000px;}
.ls2_c00046{letter-spacing:3.000000px;}
.ls0_c00046{letter-spacing:15.312000px;}
.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:-33.192000px;}
.ws1_c00046{word-spacing:0.000000px;}
._11_c00046{margin-left:-26.496000px;}
._16_c00046{margin-left:-17.712000px;}
._1a_c00046{margin-left:-16.056000px;}
._14_c00046{margin-left:-12.960000px;}
._15_c00046{margin-left:-11.880000px;}
._10_c00046{margin-left:-9.936000px;}
._19_c00046{margin-left:-8.544000px;}
._f_c00046{margin-left:-7.356000px;}
._18_c00046{margin-left:-6.264000px;}
._a_c00046{margin-left:-4.944000px;}
._2_c00046{margin-left:-3.864000px;}
._8_c00046{margin-left:-2.832000px;}
._7_c00046{margin-left:-1.512000px;}
._4_c00046{width:1.260000px;}
._3_c00046{width:2.520000px;}
._1_c00046{width:3.948000px;}
._d_c00046{width:5.196000px;}
._0_c00046{width:6.468000px;}
._e_c00046{width:7.488000px;}
._6_c00046{width:9.072000px;}
._9_c00046{width:10.596000px;}
._b_c00046{width:11.784000px;}
._c_c00046{width:13.848000px;}
._13_c00046{width:25.488000px;}
._1b_c00046{width:43.560000px;}
._1c_c00046{width:194.040000px;}
._5_c00046{width:294.756000px;}
._17_c00046{width:391.248000px;}
._12_c00046{width:968.760000px;}
.fc2_c00046{color:transparent;}
.fc1_c00046{color:rgb(128,128,128);}
.fc0_c00046{color:rgb(0,0,0);}
.fs4_c00046{font-size:48.000000px;}
.fs0_c00046{font-size:51.000000px;}
.fs2_c00046{font-size:72.000000px;}
.fs3_c00046{font-size:78.000000px;}
.fs1_c00046{font-size:84.000000px;}
.y0_c00046{bottom:0.000000px;}
.y20_c00046{bottom:3.105000px;}
.y1f_c00046{bottom:7.228369px;}
.y1e_c00046{bottom:62.070000px;}
.y1d_c00046{bottom:86.070000px;}
.y1c_c00046{bottom:111.270000px;}
.y1b_c00046{bottom:136.320000px;}
.y1a_c00046{bottom:161.970000px;}
.y19_c00046{bottom:186.270000px;}
.y18_c00046{bottom:211.320000px;}
.y17_c00046{bottom:237.270000px;}
.y16_c00046{bottom:261.270000px;}
.y15_c00046{bottom:287.220000px;}
.y14_c00046{bottom:309.420000px;}
.y13_c00046{bottom:332.820000px;}
.y12_c00046{bottom:356.670000px;}
.y11_c00046{bottom:381.720000px;}
.y10_c00046{bottom:406.020000px;}
.yf_c00046{bottom:432.270000px;}
.ye_c00046{bottom:455.670000px;}
.yd_c00046{bottom:480.570000px;}
.yc_c00046{bottom:505.170000px;}
.yb_c00046{bottom:528.870000px;}
.ya_c00046{bottom:554.070000px;}
.y9_c00046{bottom:578.070000px;}
.y8_c00046{bottom:603.720000px;}
.y7_c00046{bottom:628.320000px;}
.y6_c00046{bottom:650.670000px;}
.y5_c00046{bottom:674.970000px;}
.y4_c00046{bottom:700.920000px;}
.y3_c00046{bottom:725.970000px;}
.y2_c00046{bottom:748.620000px;}
.y1_c00046{bottom:771.570000px;}
.h6_c00046{height:13.200073px;}
.h7_c00046{height:43.804688px;}
.h2_c00046{height:64.571777px;}
.h5_c00046{height:78.609375px;}
.h3_c00046{height:82.400391px;}
.h4_c00046{height:91.160156px;}
.h1_c00046{height:792.000000px;}
.h0_c00046{height:792.150000px;}
.w2_c00046{width:104.875500px;}
.w0_c00046{width:552.675000px;}
.w1_c00046{width:552.750000px;}
.x0_c00046{left:0.000000px;}
.x6_c00046{left:22.650000px;}
.x9_c00046{left:35.700000px;}
.x8_c00046{left:37.350000px;}
.x5_c00046{left:38.400000px;}
.x4_c00046{left:39.450000px;}
.x3_c00046{left:40.500000px;}
.x2_c00046{left:145.500000px;}
.x7_c00046{left:166.350000px;}
.xb_c00046{left:228.151749px;}
.x1_c00046{left:277.650000px;}
.xa_c00046{left:292.500000px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls1_c00046{letter-spacing:0.000000pt;}
.ls2_c00046{letter-spacing:2.666667pt;}
.ls0_c00046{letter-spacing:13.610667pt;}
.ws0_c00046{word-spacing:-29.504000pt;}
.ws1_c00046{word-spacing:0.000000pt;}
._11_c00046{margin-left:-23.552000pt;}
._16_c00046{margin-left:-15.744000pt;}
._1a_c00046{margin-left:-14.272000pt;}
._14_c00046{margin-left:-11.520000pt;}
._15_c00046{margin-left:-10.560000pt;}
._10_c00046{margin-left:-8.832000pt;}
._19_c00046{margin-left:-7.594667pt;}
._f_c00046{margin-left:-6.538667pt;}
._18_c00046{margin-left:-5.568000pt;}
._a_c00046{margin-left:-4.394667pt;}
._2_c00046{margin-left:-3.434667pt;}
._8_c00046{margin-left:-2.517333pt;}
._7_c00046{margin-left:-1.344000pt;}
._4_c00046{width:1.120000pt;}
._3_c00046{width:2.240000pt;}
._1_c00046{width:3.509333pt;}
._d_c00046{width:4.618667pt;}
._0_c00046{width:5.749333pt;}
._e_c00046{width:6.656000pt;}
._6_c00046{width:8.064000pt;}
._9_c00046{width:9.418667pt;}
._b_c00046{width:10.474667pt;}
._c_c00046{width:12.309333pt;}
._13_c00046{width:22.656000pt;}
._1b_c00046{width:38.720000pt;}
._1c_c00046{width:172.480000pt;}
._5_c00046{width:262.005333pt;}
._17_c00046{width:347.776000pt;}
._12_c00046{width:861.120000pt;}
.fs4_c00046{font-size:42.666667pt;}
.fs0_c00046{font-size:45.333333pt;}
.fs2_c00046{font-size:64.000000pt;}
.fs3_c00046{font-size:69.333333pt;}
.fs1_c00046{font-size:74.666667pt;}
.y0_c00046{bottom:0.000000pt;}
.y20_c00046{bottom:2.760000pt;}
.y1f_c00046{bottom:6.425217pt;}
.y1e_c00046{bottom:55.173333pt;}
.y1d_c00046{bottom:76.506667pt;}
.y1c_c00046{bottom:98.906667pt;}
.y1b_c00046{bottom:121.173333pt;}
.y1a_c00046{bottom:143.973333pt;}
.y19_c00046{bottom:165.573333pt;}
.y18_c00046{bottom:187.840000pt;}
.y17_c00046{bottom:210.906667pt;}
.y16_c00046{bottom:232.240000pt;}
.y15_c00046{bottom:255.306667pt;}
.y14_c00046{bottom:275.040000pt;}
.y13_c00046{bottom:295.840000pt;}
.y12_c00046{bottom:317.040000pt;}
.y11_c00046{bottom:339.306667pt;}
.y10_c00046{bottom:360.906667pt;}
.yf_c00046{bottom:384.240000pt;}
.ye_c00046{bottom:405.040000pt;}
.yd_c00046{bottom:427.173333pt;}
.yc_c00046{bottom:449.040000pt;}
.yb_c00046{bottom:470.106667pt;}
.ya_c00046{bottom:492.506667pt;}
.y9_c00046{bottom:513.840000pt;}
.y8_c00046{bottom:536.640000pt;}
.y7_c00046{bottom:558.506667pt;}
.y6_c00046{bottom:578.373333pt;}
.y5_c00046{bottom:599.973333pt;}
.y4_c00046{bottom:623.040000pt;}
.y3_c00046{bottom:645.306667pt;}
.y2_c00046{bottom:665.440000pt;}
.y1_c00046{bottom:685.840000pt;}
.h6_c00046{height:11.733399pt;}
.h7_c00046{height:38.937500pt;}
.h2_c00046{height:57.397135pt;}
.h5_c00046{height:69.875000pt;}
.h3_c00046{height:73.244792pt;}
.h4_c00046{height:81.031250pt;}
.h1_c00046{height:704.000000pt;}
.h0_c00046{height:704.133333pt;}
.w2_c00046{width:93.222667pt;}
.w0_c00046{width:491.266667pt;}
.w1_c00046{width:491.333333pt;}
.x0_c00046{left:0.000000pt;}
.x6_c00046{left:20.133333pt;}
.x9_c00046{left:31.733333pt;}
.x8_c00046{left:33.200000pt;}
.x5_c00046{left:34.133333pt;}
.x4_c00046{left:35.066667pt;}
.x3_c00046{left:36.000000pt;}
.x2_c00046{left:129.333333pt;}
.x7_c00046{left:147.866667pt;}
.xb_c00046{left:202.801554pt;}
.x1_c00046{left:246.800000pt;}
.xa_c00046{left:260.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_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_86926f2ca6a5646b904556f7.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00047;src:url('chunks/assets/font_848ab0aba93f4583212ddd99.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:1.568848;font-style:normal;font-weight:normal;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_3e26a655af0e0bb602bf90f6.woff2')format("woff");}.ff3_c00047{font-family:ff3_c00047;line-height:1.480469;font-style:normal;font-weight:normal;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_a6f1dede527b4d8ae6a0cb55.woff2')format("woff");}.ff4_c00047{font-family:ff4_c00047;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00047;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00047{font-family:ff5_c00047;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00047{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00047{vertical-align:0.000000px;}
.ls5_c00047{letter-spacing:-3.000000px;}
.ls3_c00047{letter-spacing:0.000000px;}
.ls0_c00047{letter-spacing:3.000000px;}
.ls2_c00047{letter-spacing:4.704000px;}
.ls4_c00047{letter-spacing:6.000000px;}
.ls1_c00047{letter-spacing:6.900000px;}
.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;}
}
.ws3_c00047{word-spacing:-33.192000px;}
.ws0_c00047{word-spacing:-29.043000px;}
.ws2_c00047{word-spacing:-23.973000px;}
.ws4_c00047{word-spacing:-20.352000px;}
.ws5_c00047{word-spacing:0.000000px;}
.ws1_c00047{word-spacing:0.450000px;}
._20_c00047{margin-left:-30.528000px;}
._1e_c00047{margin-left:-17.181000px;}
._1c_c00047{margin-left:-16.014000px;}
._1d_c00047{margin-left:-13.176000px;}
._3_c00047{margin-left:-11.928000px;}
._16_c00047{margin-left:-10.431000px;}
._1a_c00047{margin-left:-8.859000px;}
._8_c00047{margin-left:-7.689000px;}
._7_c00047{margin-left:-6.576000px;}
._5_c00047{margin-left:-4.800000px;}
._d_c00047{margin-left:-3.171000px;}
._6_c00047{margin-left:-1.896000px;}
._4_c00047{width:1.104000px;}
._1_c00047{width:2.184000px;}
._2_c00047{width:3.948000px;}
._0_c00047{width:5.628000px;}
._b_c00047{width:7.272000px;}
._9_c00047{width:8.442000px;}
._a_c00047{width:9.639000px;}
._13_c00047{width:10.983000px;}
._c_c00047{width:12.843000px;}
._1f_c00047{width:14.613000px;}
._17_c00047{width:15.744000px;}
._14_c00047{width:16.839000px;}
._e_c00047{width:18.522000px;}
._10_c00047{width:20.217000px;}
._f_c00047{width:22.734000px;}
._18_c00047{width:32.868000px;}
._15_c00047{width:43.047000px;}
._12_c00047{width:57.672000px;}
._21_c00047{width:81.000000px;}
._11_c00047{width:83.976000px;}
._1b_c00047{width:147.864000px;}
._19_c00047{width:152.064000px;}
.fc2_c00047{color:transparent;}
.fc1_c00047{color:rgb(128,128,128);}
.fc0_c00047{color:rgb(0,0,0);}
.fs6_c00047{font-size:48.000000px;}
.fs2_c00047{font-size:63.000000px;}
.fs3_c00047{font-size:66.000000px;}
.fs1_c00047{font-size:72.000000px;}
.fs5_c00047{font-size:78.000000px;}
.fs4_c00047{font-size:81.000000px;}
.fs0_c00047{font-size:84.000000px;}
.y0_c00047{bottom:0.000000px;}
.y1f_c00047{bottom:3.105000px;}
.y1e_c00047{bottom:7.228363px;}
.y1d_c00047{bottom:68.850000px;}
.y1c_c00047{bottom:90.150000px;}
.y1b_c00047{bottom:115.200000px;}
.y1a_c00047{bottom:140.400000px;}
.y19_c00047{bottom:165.450000px;}
.y18_c00047{bottom:190.350000px;}
.y17_c00047{bottom:215.400000px;}
.y16_c00047{bottom:241.350000px;}
.y15_c00047{bottom:265.650000px;}
.y14_c00047{bottom:288.300000px;}
.y13_c00047{bottom:313.650000px;}
.y12_c00047{bottom:338.550000px;}
.y11_c00047{bottom:363.150000px;}
.y10_c00047{bottom:387.450000px;}
.yf_c00047{bottom:414.150000px;}
.ye_c00047{bottom:436.350000px;}
.yd_c00047{bottom:461.250000px;}
.yc_c00047{bottom:486.750000px;}
.yb_c00047{bottom:511.350000px;}
.ya_c00047{bottom:534.300000px;}
.y9_c00047{bottom:558.600000px;}
.y8_c00047{bottom:584.100000px;}
.y7_c00047{bottom:607.500000px;}
.y6_c00047{bottom:632.100000px;}
.y5_c00047{bottom:657.000000px;}
.y4_c00047{bottom:681.450000px;}
.y3_c00047{bottom:705.750000px;}
.y2_c00047{bottom:729.750000px;}
.y1_c00047{bottom:755.250000px;}
.h5_c00047{height:13.200074px;}
.h6_c00047{height:43.804688px;}
.h4_c00047{height:78.609375px;}
.h2_c00047{height:82.400391px;}
.h3_c00047{height:91.160156px;}
.h1_c00047{height:801.750000px;}
.h0_c00047{height:801.900000px;}
.w2_c00047{width:104.875500px;}
.w1_c00047{width:537.000000px;}
.w0_c00047{width:537.300000px;}
.x0_c00047{left:0.000000px;}
.x4_c00047{left:53.700000px;}
.x8_c00047{left:55.800000px;}
.x6_c00047{left:64.800000px;}
.xc_c00047{left:96.150000px;}
.x2_c00047{left:116.700000px;}
.x3_c00047{left:117.750000px;}
.x5_c00047{left:118.800000px;}
.x7_c00047{left:120.150000px;}
.x9_c00047{left:121.500000px;}
.xa_c00047{left:123.600000px;}
.xb_c00047{left:126.000000px;}
.xe_c00047{left:220.464249px;}
.x1_c00047{left:230.550000px;}
.xd_c00047{left:481.050000px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls5_c00047{letter-spacing:-2.666667pt;}
.ls3_c00047{letter-spacing:0.000000pt;}
.ls0_c00047{letter-spacing:2.666667pt;}
.ls2_c00047{letter-spacing:4.181333pt;}
.ls4_c00047{letter-spacing:5.333333pt;}
.ls1_c00047{letter-spacing:6.133333pt;}
.ws3_c00047{word-spacing:-29.504000pt;}
.ws0_c00047{word-spacing:-25.816000pt;}
.ws2_c00047{word-spacing:-21.309333pt;}
.ws4_c00047{word-spacing:-18.090667pt;}
.ws5_c00047{word-spacing:0.000000pt;}
.ws1_c00047{word-spacing:0.400000pt;}
._20_c00047{margin-left:-27.136000pt;}
._1e_c00047{margin-left:-15.272000pt;}
._1c_c00047{margin-left:-14.234667pt;}
._1d_c00047{margin-left:-11.712000pt;}
._3_c00047{margin-left:-10.602667pt;}
._16_c00047{margin-left:-9.272000pt;}
._1a_c00047{margin-left:-7.874667pt;}
._8_c00047{margin-left:-6.834667pt;}
._7_c00047{margin-left:-5.845333pt;}
._5_c00047{margin-left:-4.266667pt;}
._d_c00047{margin-left:-2.818667pt;}
._6_c00047{margin-left:-1.685333pt;}
._4_c00047{width:0.981333pt;}
._1_c00047{width:1.941333pt;}
._2_c00047{width:3.509333pt;}
._0_c00047{width:5.002667pt;}
._b_c00047{width:6.464000pt;}
._9_c00047{width:7.504000pt;}
._a_c00047{width:8.568000pt;}
._13_c00047{width:9.762667pt;}
._c_c00047{width:11.416000pt;}
._1f_c00047{width:12.989333pt;}
._17_c00047{width:13.994667pt;}
._14_c00047{width:14.968000pt;}
._e_c00047{width:16.464000pt;}
._10_c00047{width:17.970667pt;}
._f_c00047{width:20.208000pt;}
._18_c00047{width:29.216000pt;}
._15_c00047{width:38.264000pt;}
._12_c00047{width:51.264000pt;}
._21_c00047{width:72.000000pt;}
._11_c00047{width:74.645333pt;}
._1b_c00047{width:131.434667pt;}
._19_c00047{width:135.168000pt;}
.fs6_c00047{font-size:42.666667pt;}
.fs2_c00047{font-size:56.000000pt;}
.fs3_c00047{font-size:58.666667pt;}
.fs1_c00047{font-size:64.000000pt;}
.fs5_c00047{font-size:69.333333pt;}
.fs4_c00047{font-size:72.000000pt;}
.fs0_c00047{font-size:74.666667pt;}
.y0_c00047{bottom:0.000000pt;}
.y1f_c00047{bottom:2.760000pt;}
.y1e_c00047{bottom:6.425212pt;}
.y1d_c00047{bottom:61.200000pt;}
.y1c_c00047{bottom:80.133333pt;}
.y1b_c00047{bottom:102.400000pt;}
.y1a_c00047{bottom:124.800000pt;}
.y19_c00047{bottom:147.066667pt;}
.y18_c00047{bottom:169.200000pt;}
.y17_c00047{bottom:191.466667pt;}
.y16_c00047{bottom:214.533333pt;}
.y15_c00047{bottom:236.133333pt;}
.y14_c00047{bottom:256.266667pt;}
.y13_c00047{bottom:278.800000pt;}
.y12_c00047{bottom:300.933333pt;}
.y11_c00047{bottom:322.800000pt;}
.y10_c00047{bottom:344.400000pt;}
.yf_c00047{bottom:368.133333pt;}
.ye_c00047{bottom:387.866667pt;}
.yd_c00047{bottom:410.000000pt;}
.yc_c00047{bottom:432.666667pt;}
.yb_c00047{bottom:454.533333pt;}
.ya_c00047{bottom:474.933333pt;}
.y9_c00047{bottom:496.533333pt;}
.y8_c00047{bottom:519.200000pt;}
.y7_c00047{bottom:540.000000pt;}
.y6_c00047{bottom:561.866667pt;}
.y5_c00047{bottom:584.000000pt;}
.y4_c00047{bottom:605.733333pt;}
.y3_c00047{bottom:627.333333pt;}
.y2_c00047{bottom:648.666667pt;}
.y1_c00047{bottom:671.333333pt;}
.h5_c00047{height:11.733399pt;}
.h6_c00047{height:38.937500pt;}
.h4_c00047{height:69.875000pt;}
.h2_c00047{height:73.244792pt;}
.h3_c00047{height:81.031250pt;}
.h1_c00047{height:712.666667pt;}
.h0_c00047{height:712.800000pt;}
.w2_c00047{width:93.222667pt;}
.w1_c00047{width:477.333333pt;}
.w0_c00047{width:477.600000pt;}
.x0_c00047{left:0.000000pt;}
.x4_c00047{left:47.733333pt;}
.x8_c00047{left:49.600000pt;}
.x6_c00047{left:57.600000pt;}
.xc_c00047{left:85.466667pt;}
.x2_c00047{left:103.733333pt;}
.x3_c00047{left:104.666667pt;}
.x5_c00047{left:105.600000pt;}
.x7_c00047{left:106.800000pt;}
.x9_c00047{left:108.000000pt;}
.xa_c00047{left:109.866667pt;}
.xb_c00047{left:112.000000pt;}
.xe_c00047{left:195.968221pt;}
.x1_c00047{left:204.933333pt;}
.xd_c00047{left:427.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_67651786658b0cda38209433.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.480469;font-style:normal;font-weight:normal;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_87ffc77881f0f255391f3b54.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:1.568848;font-style:normal;font-weight:normal;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_dd9761a275f706099fae59d9.woff2')format("woff");}.ff3_c00048{font-family:ff3_c00048;line-height:1.592000;font-style:normal;font-weight:normal;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_f7ce9045bfca6c5ce3f56325.woff2')format("woff");}.ff4_c00048{font-family:ff4_c00048;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00048;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00048{font-family:ff5_c00048;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.ls2_c00048{letter-spacing:-6.000000px;}
.ls0_c00048{letter-spacing:0.000000px;}
.ls1_c00048{letter-spacing:3.000000px;}
.sc__c00048{text-shadow:none;}
.sc0_c00048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00048{-webkit-text-stroke:0px transparent;}
.sc0_c00048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00048{word-spacing:-36.000000px;}
.ws0_c00048{word-spacing:-11.616000px;}
.ws2_c00048{word-spacing:0.000000px;}
._15_c00048{margin-left:-12.744000px;}
._10_c00048{margin-left:-10.758000px;}
._17_c00048{margin-left:-9.072000px;}
._11_c00048{margin-left:-7.776000px;}
._12_c00048{margin-left:-6.768000px;}
._b_c00048{margin-left:-5.472000px;}
._c_c00048{margin-left:-4.104000px;}
._4_c00048{margin-left:-2.376000px;}
._a_c00048{margin-left:-1.152000px;}
._6_c00048{width:1.152000px;}
._5_c00048{width:2.880000px;}
._7_c00048{width:3.960000px;}
._d_c00048{width:5.451000px;}
._2_c00048{width:6.480000px;}
._9_c00048{width:7.560000px;}
._14_c00048{width:8.640000px;}
._1_c00048{width:10.080000px;}
._3_c00048{width:12.168000px;}
._0_c00048{width:14.400000px;}
._e_c00048{width:16.134000px;}
._16_c00048{width:17.496000px;}
._f_c00048{width:21.363000px;}
._1a_c00048{width:26.856000px;}
._19_c00048{width:29.592000px;}
._1b_c00048{width:31.590000px;}
._13_c00048{width:33.480000px;}
._1c_c00048{width:182.844000px;}
._18_c00048{width:323.856000px;}
._8_c00048{width:333.528000px;}
.fc2_c00048{color:transparent;}
.fc1_c00048{color:rgb(128,128,128);}
.fc0_c00048{color:rgb(0,0,0);}
.fs3_c00048{font-size:48.000000px;}
.fs1_c00048{font-size:69.000000px;}
.fs0_c00048{font-size:72.000000px;}
.fs2_c00048{font-size:78.000000px;}
.y0_c00048{bottom:0.000000px;}
.y21_c00048{bottom:3.105000px;}
.y20_c00048{bottom:7.228369px;}
.y1d_c00048{bottom:43.920000px;}
.y1c_c00048{bottom:69.570000px;}
.y1b_c00048{bottom:95.220000px;}
.y1a_c00048{bottom:119.820000px;}
.y19_c00048{bottom:144.720000px;}
.y18_c00048{bottom:168.120000px;}
.y1f_c00048{bottom:182.220000px;}
.y17_c00048{bottom:193.320000px;}
.y1e_c00048{bottom:194.670000px;}
.y16_c00048{bottom:219.420000px;}
.y15_c00048{bottom:243.570000px;}
.y14_c00048{bottom:268.620000px;}
.y13_c00048{bottom:291.870000px;}
.y12_c00048{bottom:315.270000px;}
.y11_c00048{bottom:339.870000px;}
.y10_c00048{bottom:363.870000px;}
.yf_c00048{bottom:389.370000px;}
.ye_c00048{bottom:414.120000px;}
.yd_c00048{bottom:438.720000px;}
.yc_c00048{bottom:463.320000px;}
.yb_c00048{bottom:487.620000px;}
.ya_c00048{bottom:511.920000px;}
.y9_c00048{bottom:536.520000px;}
.y8_c00048{bottom:560.820000px;}
.y7_c00048{bottom:585.270000px;}
.y6_c00048{bottom:609.870000px;}
.y5_c00048{bottom:633.870000px;}
.y4_c00048{bottom:658.170000px;}
.y3_c00048{bottom:682.770000px;}
.y2_c00048{bottom:706.770000px;}
.y1_c00048{bottom:732.270000px;}
.h6_c00048{height:13.200073px;}
.h7_c00048{height:43.804688px;}
.h4_c00048{height:52.032000px;}
.h5_c00048{height:70.628906px;}
.h2_c00048{height:91.160156px;}
.h3_c00048{height:98.756836px;}
.h0_c00048{height:788.100000px;}
.h1_c00048{height:788.250000px;}
.w2_c00048{width:104.875500px;}
.w0_c00048{width:545.925000px;}
.w1_c00048{width:546.000000px;}
.x0_c00048{left:0.000000px;}
.x2_c00048{left:38.100000px;}
.x3_c00048{left:39.900000px;}
.x4_c00048{left:41.250000px;}
.x5_c00048{left:42.300000px;}
.x1_c00048{left:141.450000px;}
.x9_c00048{left:224.776749px;}
.x6_c00048{left:303.750000px;}
.x8_c00048{left:490.050000px;}
.x7_c00048{left:494.550000px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls2_c00048{letter-spacing:-5.333333pt;}
.ls0_c00048{letter-spacing:0.000000pt;}
.ls1_c00048{letter-spacing:2.666667pt;}
.ws1_c00048{word-spacing:-32.000000pt;}
.ws0_c00048{word-spacing:-10.325333pt;}
.ws2_c00048{word-spacing:0.000000pt;}
._15_c00048{margin-left:-11.328000pt;}
._10_c00048{margin-left:-9.562667pt;}
._17_c00048{margin-left:-8.064000pt;}
._11_c00048{margin-left:-6.912000pt;}
._12_c00048{margin-left:-6.016000pt;}
._b_c00048{margin-left:-4.864000pt;}
._c_c00048{margin-left:-3.648000pt;}
._4_c00048{margin-left:-2.112000pt;}
._a_c00048{margin-left:-1.024000pt;}
._6_c00048{width:1.024000pt;}
._5_c00048{width:2.560000pt;}
._7_c00048{width:3.520000pt;}
._d_c00048{width:4.845333pt;}
._2_c00048{width:5.760000pt;}
._9_c00048{width:6.720000pt;}
._14_c00048{width:7.680000pt;}
._1_c00048{width:8.960000pt;}
._3_c00048{width:10.816000pt;}
._0_c00048{width:12.800000pt;}
._e_c00048{width:14.341333pt;}
._16_c00048{width:15.552000pt;}
._f_c00048{width:18.989333pt;}
._1a_c00048{width:23.872000pt;}
._19_c00048{width:26.304000pt;}
._1b_c00048{width:28.080000pt;}
._13_c00048{width:29.760000pt;}
._1c_c00048{width:162.528000pt;}
._18_c00048{width:287.872000pt;}
._8_c00048{width:296.469333pt;}
.fs3_c00048{font-size:42.666667pt;}
.fs1_c00048{font-size:61.333333pt;}
.fs0_c00048{font-size:64.000000pt;}
.fs2_c00048{font-size:69.333333pt;}
.y0_c00048{bottom:0.000000pt;}
.y21_c00048{bottom:2.760000pt;}
.y20_c00048{bottom:6.425217pt;}
.y1d_c00048{bottom:39.040000pt;}
.y1c_c00048{bottom:61.840000pt;}
.y1b_c00048{bottom:84.640000pt;}
.y1a_c00048{bottom:106.506667pt;}
.y19_c00048{bottom:128.640000pt;}
.y18_c00048{bottom:149.440000pt;}
.y1f_c00048{bottom:161.973333pt;}
.y17_c00048{bottom:171.840000pt;}
.y1e_c00048{bottom:173.040000pt;}
.y16_c00048{bottom:195.040000pt;}
.y15_c00048{bottom:216.506667pt;}
.y14_c00048{bottom:238.773333pt;}
.y13_c00048{bottom:259.440000pt;}
.y12_c00048{bottom:280.240000pt;}
.y11_c00048{bottom:302.106667pt;}
.y10_c00048{bottom:323.440000pt;}
.yf_c00048{bottom:346.106667pt;}
.ye_c00048{bottom:368.106667pt;}
.yd_c00048{bottom:389.973333pt;}
.yc_c00048{bottom:411.840000pt;}
.yb_c00048{bottom:433.440000pt;}
.ya_c00048{bottom:455.040000pt;}
.y9_c00048{bottom:476.906667pt;}
.y8_c00048{bottom:498.506667pt;}
.y7_c00048{bottom:520.240000pt;}
.y6_c00048{bottom:542.106667pt;}
.y5_c00048{bottom:563.440000pt;}
.y4_c00048{bottom:585.040000pt;}
.y3_c00048{bottom:606.906667pt;}
.y2_c00048{bottom:628.240000pt;}
.y1_c00048{bottom:650.906667pt;}
.h6_c00048{height:11.733399pt;}
.h7_c00048{height:38.937500pt;}
.h4_c00048{height:46.250667pt;}
.h5_c00048{height:62.781250pt;}
.h2_c00048{height:81.031250pt;}
.h3_c00048{height:87.783854pt;}
.h0_c00048{height:700.533333pt;}
.h1_c00048{height:700.666667pt;}
.w2_c00048{width:93.222667pt;}
.w0_c00048{width:485.266667pt;}
.w1_c00048{width:485.333333pt;}
.x0_c00048{left:0.000000pt;}
.x2_c00048{left:33.866667pt;}
.x3_c00048{left:35.466667pt;}
.x4_c00048{left:36.666667pt;}
.x5_c00048{left:37.600000pt;}
.x1_c00048{left:125.733333pt;}
.x9_c00048{left:199.801554pt;}
.x6_c00048{left:270.000000pt;}
.x8_c00048{left:435.600000pt;}
.x7_c00048{left:439.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7cefad93376e5ffd40cf3fd8.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.480469;font-style:normal;font-weight:normal;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_c5fd9d440bdb63903652e0bd.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:1.568848;font-style:normal;font-weight:normal;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_eeefb84124b443a25fd63e25.woff2')format("woff");}.ff3_c00049{font-family:ff3_c00049;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00049;src:url('chunks/assets/font_41ec1ebee593c95de16fee49.woff2')format("woff");}.ff4_c00049{font-family:ff4_c00049;line-height:1.592000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00049{font-family:ff5_c00049;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00049{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00049{vertical-align:0.000000px;}
.ls4_c00049{letter-spacing:-3.000000px;}
.ls3_c00049{letter-spacing:0.000000px;}
.ls0_c00049{letter-spacing:3.000000px;}
.ls1_c00049{letter-spacing:12.960000px;}
.ls2_c00049{letter-spacing:15.417000px;}
.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:-23.973000px;}
.ws3_c00049{word-spacing:-20.967000px;}
.ws2_c00049{word-spacing:-17.352000px;}
.ws1_c00049{word-spacing:-15.183000px;}
.ws4_c00049{word-spacing:0.000000px;}
._1a_c00049{margin-left:-70.776000px;}
._1c_c00049{margin-left:-65.448000px;}
._17_c00049{margin-left:-21.720000px;}
._11_c00049{margin-left:-18.300000px;}
._1d_c00049{margin-left:-16.056000px;}
._d_c00049{margin-left:-14.832000px;}
._c_c00049{margin-left:-11.664000px;}
._e_c00049{margin-left:-10.440000px;}
._b_c00049{margin-left:-8.640000px;}
._f_c00049{margin-left:-7.488000px;}
._4_c00049{margin-left:-5.760000px;}
._10_c00049{margin-left:-4.608000px;}
._9_c00049{margin-left:-3.384000px;}
._7_c00049{margin-left:-2.376000px;}
._a_c00049{margin-left:-1.296000px;}
._8_c00049{width:1.080000px;}
._5_c00049{width:2.376000px;}
._1_c00049{width:4.104000px;}
._6_c00049{width:5.400000px;}
._3_c00049{width:7.200000px;}
._2_c00049{width:8.208000px;}
._0_c00049{width:10.296000px;}
._12_c00049{width:11.772000px;}
._13_c00049{width:13.200000px;}
._14_c00049{width:15.480000px;}
._15_c00049{width:18.360000px;}
._16_c00049{width:20.952000px;}
._18_c00049{width:30.048000px;}
._1e_c00049{width:41.112000px;}
._19_c00049{width:56.112000px;}
._1b_c00049{width:239.760000px;}
.fc2_c00049{color:transparent;}
.fc1_c00049{color:rgb(128,128,128);}
.fc0_c00049{color:rgb(0,0,0);}
.fs5_c00049{font-size:48.000000px;}
.fs3_c00049{font-size:60.000000px;}
.fs2_c00049{font-size:63.000000px;}
.fs0_c00049{font-size:72.000000px;}
.fs1_c00049{font-size:81.000000px;}
.fs4_c00049{font-size:87.000000px;}
.y0_c00049{bottom:0.000000px;}
.y1f_c00049{bottom:3.105000px;}
.y1e_c00049{bottom:7.228363px;}
.y1d_c00049{bottom:38.250000px;}
.y1c_c00049{bottom:62.400000px;}
.y1b_c00049{bottom:87.300000px;}
.y1a_c00049{bottom:112.950000px;}
.y19_c00049{bottom:137.700000px;}
.y18_c00049{bottom:162.450000px;}
.y17_c00049{bottom:186.000000px;}
.y16_c00049{bottom:211.950000px;}
.y15_c00049{bottom:237.600000px;}
.y14_c00049{bottom:260.850000px;}
.y13_c00049{bottom:285.450000px;}
.y12_c00049{bottom:311.250000px;}
.y11_c00049{bottom:334.200000px;}
.y10_c00049{bottom:357.450000px;}
.yf_c00049{bottom:383.400000px;}
.ye_c00049{bottom:408.150000px;}
.yd_c00049{bottom:432.300000px;}
.yc_c00049{bottom:457.050000px;}
.yb_c00049{bottom:481.650000px;}
.ya_c00049{bottom:506.250000px;}
.y9_c00049{bottom:531.300000px;}
.y8_c00049{bottom:555.150000px;}
.y7_c00049{bottom:579.900000px;}
.y6_c00049{bottom:603.900000px;}
.y5_c00049{bottom:628.050000px;}
.y4_c00049{bottom:653.100000px;}
.y3_c00049{bottom:676.800000px;}
.y2_c00049{bottom:701.400000px;}
.y1_c00049{bottom:727.350000px;}
.h4_c00049{height:13.200074px;}
.h5_c00049{height:43.804688px;}
.h2_c00049{height:91.160156px;}
.h3_c00049{height:110.151855px;}
.h0_c00049{height:792.450000px;}
.h1_c00049{height:792.750000px;}
.w1_c00049{width:104.875500px;}
.w0_c00049{width:536.250000px;}
.x0_c00049{left:0.000000px;}
.x6_c00049{left:55.050000px;}
.x5_c00049{left:59.700000px;}
.x4_c00049{left:86.400000px;}
.x3_c00049{left:134.100000px;}
.x2_c00049{left:135.450000px;}
.x8_c00049{left:219.939240px;}
.x1_c00049{left:245.400000px;}
.x7_c00049{left:412.350000px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls4_c00049{letter-spacing:-2.666667pt;}
.ls3_c00049{letter-spacing:0.000000pt;}
.ls0_c00049{letter-spacing:2.666667pt;}
.ls1_c00049{letter-spacing:11.520000pt;}
.ls2_c00049{letter-spacing:13.704000pt;}
.ws0_c00049{word-spacing:-21.309333pt;}
.ws3_c00049{word-spacing:-18.637333pt;}
.ws2_c00049{word-spacing:-15.424000pt;}
.ws1_c00049{word-spacing:-13.496000pt;}
.ws4_c00049{word-spacing:0.000000pt;}
._1a_c00049{margin-left:-62.912000pt;}
._1c_c00049{margin-left:-58.176000pt;}
._17_c00049{margin-left:-19.306667pt;}
._11_c00049{margin-left:-16.266667pt;}
._1d_c00049{margin-left:-14.272000pt;}
._d_c00049{margin-left:-13.184000pt;}
._c_c00049{margin-left:-10.368000pt;}
._e_c00049{margin-left:-9.280000pt;}
._b_c00049{margin-left:-7.680000pt;}
._f_c00049{margin-left:-6.656000pt;}
._4_c00049{margin-left:-5.120000pt;}
._10_c00049{margin-left:-4.096000pt;}
._9_c00049{margin-left:-3.008000pt;}
._7_c00049{margin-left:-2.112000pt;}
._a_c00049{margin-left:-1.152000pt;}
._8_c00049{width:0.960000pt;}
._5_c00049{width:2.112000pt;}
._1_c00049{width:3.648000pt;}
._6_c00049{width:4.800000pt;}
._3_c00049{width:6.400000pt;}
._2_c00049{width:7.296000pt;}
._0_c00049{width:9.152000pt;}
._12_c00049{width:10.464000pt;}
._13_c00049{width:11.733333pt;}
._14_c00049{width:13.760000pt;}
._15_c00049{width:16.320000pt;}
._16_c00049{width:18.624000pt;}
._18_c00049{width:26.709333pt;}
._1e_c00049{width:36.544000pt;}
._19_c00049{width:49.877333pt;}
._1b_c00049{width:213.120000pt;}
.fs5_c00049{font-size:42.666667pt;}
.fs3_c00049{font-size:53.333333pt;}
.fs2_c00049{font-size:56.000000pt;}
.fs0_c00049{font-size:64.000000pt;}
.fs1_c00049{font-size:72.000000pt;}
.fs4_c00049{font-size:77.333333pt;}
.y0_c00049{bottom:0.000000pt;}
.y1f_c00049{bottom:2.760000pt;}
.y1e_c00049{bottom:6.425212pt;}
.y1d_c00049{bottom:34.000000pt;}
.y1c_c00049{bottom:55.466667pt;}
.y1b_c00049{bottom:77.600000pt;}
.y1a_c00049{bottom:100.400000pt;}
.y19_c00049{bottom:122.400000pt;}
.y18_c00049{bottom:144.400000pt;}
.y17_c00049{bottom:165.333333pt;}
.y16_c00049{bottom:188.400000pt;}
.y15_c00049{bottom:211.200000pt;}
.y14_c00049{bottom:231.866667pt;}
.y13_c00049{bottom:253.733333pt;}
.y12_c00049{bottom:276.666667pt;}
.y11_c00049{bottom:297.066667pt;}
.y10_c00049{bottom:317.733333pt;}
.yf_c00049{bottom:340.800000pt;}
.ye_c00049{bottom:362.800000pt;}
.yd_c00049{bottom:384.266667pt;}
.yc_c00049{bottom:406.266667pt;}
.yb_c00049{bottom:428.133333pt;}
.ya_c00049{bottom:450.000000pt;}
.y9_c00049{bottom:472.266667pt;}
.y8_c00049{bottom:493.466667pt;}
.y7_c00049{bottom:515.466667pt;}
.y6_c00049{bottom:536.800000pt;}
.y5_c00049{bottom:558.266667pt;}
.y4_c00049{bottom:580.533333pt;}
.y3_c00049{bottom:601.600000pt;}
.y2_c00049{bottom:623.466667pt;}
.y1_c00049{bottom:646.533333pt;}
.h4_c00049{height:11.733399pt;}
.h5_c00049{height:38.937500pt;}
.h2_c00049{height:81.031250pt;}
.h3_c00049{height:97.912760pt;}
.h0_c00049{height:704.400000pt;}
.h1_c00049{height:704.666667pt;}
.w1_c00049{width:93.222667pt;}
.w0_c00049{width:476.666667pt;}
.x0_c00049{left:0.000000pt;}
.x6_c00049{left:48.933333pt;}
.x5_c00049{left:53.066667pt;}
.x4_c00049{left:76.800000pt;}
.x3_c00049{left:119.200000pt;}
.x2_c00049{left:120.400000pt;}
.x8_c00049{left:195.501546pt;}
.x1_c00049{left:218.133333pt;}
.x7_c00049{left:366.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c2025dcf6611c0d77088c1e4.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.284180;font-style:normal;font-weight:normal;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_05803e7930466fff1135e7e9.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:1.284180;font-style:normal;font-weight:normal;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_0c9aa39dfe1dba30cfb9a407.woff2')format("woff");}.ff3_c00050{font-family:ff3_c00050;line-height:1.568848;font-style:normal;font-weight:normal;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_67bfd4ba821231bf1fc84057.woff2')format("woff");}.ff4_c00050{font-family:ff4_c00050;line-height:1.284668;font-style:normal;font-weight:normal;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_de7bffaab790bead37a0fc56.woff2')format("woff");}.ff5_c00050{font-family:ff5_c00050;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00050;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00050{font-family:ff6_c00050;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00050{vertical-align:0.000000px;}
.ls0_c00050{letter-spacing:0.000000px;}
.ls1_c00050{letter-spacing:3.000000px;}
.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;}
}
.ws1_c00050{word-spacing:-21.000000px;}
.ws0_c00050{word-spacing:-20.966400px;}
.ws2_c00050{word-spacing:0.000000px;}
._16_c00050{margin-left:-31.572000px;}
._f_c00050{margin-left:-20.088000px;}
._1a_c00050{margin-left:-17.280000px;}
._15_c00050{margin-left:-15.480000px;}
._17_c00050{margin-left:-13.248000px;}
._11_c00050{margin-left:-11.952000px;}
._10_c00050{margin-left:-10.152000px;}
._14_c00050{margin-left:-8.928000px;}
._a_c00050{margin-left:-7.344000px;}
._9_c00050{margin-left:-5.328000px;}
._7_c00050{margin-left:-4.104000px;}
._e_c00050{margin-left:-3.024000px;}
._6_c00050{margin-left:-1.872000px;}
._8_c00050{width:1.368000px;}
._b_c00050{width:2.508000px;}
._c_c00050{width:3.612000px;}
._4_c00050{width:5.184000px;}
._3_c00050{width:7.128000px;}
._2_c00050{width:8.784000px;}
._0_c00050{width:10.944000px;}
._13_c00050{width:11.952000px;}
._1_c00050{width:12.960000px;}
._12_c00050{width:14.868000px;}
._d_c00050{width:18.036000px;}
._19_c00050{width:40.392000px;}
._1b_c00050{width:251.712000px;}
._5_c00050{width:347.736000px;}
._18_c00050{width:773.172000px;}
.fc2_c00050{color:transparent;}
.fc1_c00050{color:rgb(128,128,128);}
.fc0_c00050{color:rgb(0,0,0);}
.fs5_c00050{font-size:48.000000px;}
.fs1_c00050{font-size:57.600000px;}
.fs4_c00050{font-size:60.000000px;}
.fs0_c00050{font-size:72.000000px;}
.fs3_c00050{font-size:81.000000px;}
.fs2_c00050{font-size:84.000000px;}
.y0_c00050{bottom:0.000000px;}
.y1f_c00050{bottom:3.105000px;}
.y1e_c00050{bottom:7.228357px;}
.y1d_c00050{bottom:50.730000px;}
.y1c_c00050{bottom:76.230000px;}
.y1b_c00050{bottom:98.580000px;}
.y1a_c00050{bottom:125.580000px;}
.y19_c00050{bottom:151.230000px;}
.y18_c00050{bottom:175.530000px;}
.y17_c00050{bottom:200.130000px;}
.y16_c00050{bottom:225.180000px;}
.y15_c00050{bottom:250.080000px;}
.y14_c00050{bottom:274.380000px;}
.y13_c00050{bottom:298.080000px;}
.y12_c00050{bottom:321.630000px;}
.y11_c00050{bottom:346.380000px;}
.y10_c00050{bottom:370.980000px;}
.yf_c00050{bottom:395.880000px;}
.ye_c00050{bottom:420.480000px;}
.yd_c00050{bottom:444.780000px;}
.yc_c00050{bottom:469.830000px;}
.yb_c00050{bottom:494.430000px;}
.ya_c00050{bottom:519.180000px;}
.y9_c00050{bottom:543.480000px;}
.y8_c00050{bottom:568.380000px;}
.y7_c00050{bottom:591.930000px;}
.y6_c00050{bottom:616.380000px;}
.y5_c00050{bottom:640.980000px;}
.y4_c00050{bottom:666.330000px;}
.y3_c00050{bottom:690.930000px;}
.y2_c00050{bottom:713.880000px;}
.y1_c00050{bottom:739.530000px;}
.h4_c00050{height:13.200074px;}
.h5_c00050{height:43.804688px;}
.h2_c00050{height:70.628906px;}
.h3_c00050{height:91.160156px;}
.h1_c00050{height:796.500000px;}
.h0_c00050{height:796.800000px;}
.w2_c00050{width:104.875500px;}
.w1_c00050{width:545.250000px;}
.w0_c00050{width:545.400000px;}
.x0_c00050{left:0.000000px;}
.x7_c00050{left:28.350000px;}
.x6_c00050{left:31.050000px;}
.x4_c00050{left:32.400000px;}
.x3_c00050{left:33.450000px;}
.x8_c00050{left:34.800000px;}
.x2_c00050{left:35.850000px;}
.x5_c00050{left:37.500000px;}
.x9_c00050{left:61.350000px;}
.x1_c00050{left:130.950000px;}
.xa_c00050{left:224.514267px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls0_c00050{letter-spacing:0.000000pt;}
.ls1_c00050{letter-spacing:2.666667pt;}
.ws1_c00050{word-spacing:-18.666667pt;}
.ws0_c00050{word-spacing:-18.636800pt;}
.ws2_c00050{word-spacing:0.000000pt;}
._16_c00050{margin-left:-28.064000pt;}
._f_c00050{margin-left:-17.856000pt;}
._1a_c00050{margin-left:-15.360000pt;}
._15_c00050{margin-left:-13.760000pt;}
._17_c00050{margin-left:-11.776000pt;}
._11_c00050{margin-left:-10.624000pt;}
._10_c00050{margin-left:-9.024000pt;}
._14_c00050{margin-left:-7.936000pt;}
._a_c00050{margin-left:-6.528000pt;}
._9_c00050{margin-left:-4.736000pt;}
._7_c00050{margin-left:-3.648000pt;}
._e_c00050{margin-left:-2.688000pt;}
._6_c00050{margin-left:-1.664000pt;}
._8_c00050{width:1.216000pt;}
._b_c00050{width:2.229333pt;}
._c_c00050{width:3.210667pt;}
._4_c00050{width:4.608000pt;}
._3_c00050{width:6.336000pt;}
._2_c00050{width:7.808000pt;}
._0_c00050{width:9.728000pt;}
._13_c00050{width:10.624000pt;}
._1_c00050{width:11.520000pt;}
._12_c00050{width:13.216000pt;}
._d_c00050{width:16.032000pt;}
._19_c00050{width:35.904000pt;}
._1b_c00050{width:223.744000pt;}
._5_c00050{width:309.098667pt;}
._18_c00050{width:687.264000pt;}
.fs5_c00050{font-size:42.666667pt;}
.fs1_c00050{font-size:51.200000pt;}
.fs4_c00050{font-size:53.333333pt;}
.fs0_c00050{font-size:64.000000pt;}
.fs3_c00050{font-size:72.000000pt;}
.fs2_c00050{font-size:74.666667pt;}
.y0_c00050{bottom:0.000000pt;}
.y1f_c00050{bottom:2.760000pt;}
.y1e_c00050{bottom:6.425206pt;}
.y1d_c00050{bottom:45.093333pt;}
.y1c_c00050{bottom:67.760000pt;}
.y1b_c00050{bottom:87.626667pt;}
.y1a_c00050{bottom:111.626667pt;}
.y19_c00050{bottom:134.426667pt;}
.y18_c00050{bottom:156.026667pt;}
.y17_c00050{bottom:177.893333pt;}
.y16_c00050{bottom:200.160000pt;}
.y15_c00050{bottom:222.293333pt;}
.y14_c00050{bottom:243.893333pt;}
.y13_c00050{bottom:264.960000pt;}
.y12_c00050{bottom:285.893333pt;}
.y11_c00050{bottom:307.893333pt;}
.y10_c00050{bottom:329.760000pt;}
.yf_c00050{bottom:351.893333pt;}
.ye_c00050{bottom:373.760000pt;}
.yd_c00050{bottom:395.360000pt;}
.yc_c00050{bottom:417.626667pt;}
.yb_c00050{bottom:439.493333pt;}
.ya_c00050{bottom:461.493333pt;}
.y9_c00050{bottom:483.093333pt;}
.y8_c00050{bottom:505.226667pt;}
.y7_c00050{bottom:526.160000pt;}
.y6_c00050{bottom:547.893333pt;}
.y5_c00050{bottom:569.760000pt;}
.y4_c00050{bottom:592.293333pt;}
.y3_c00050{bottom:614.160000pt;}
.y2_c00050{bottom:634.560000pt;}
.y1_c00050{bottom:657.360000pt;}
.h4_c00050{height:11.733399pt;}
.h5_c00050{height:38.937500pt;}
.h2_c00050{height:62.781250pt;}
.h3_c00050{height:81.031250pt;}
.h1_c00050{height:708.000000pt;}
.h0_c00050{height:708.266667pt;}
.w2_c00050{width:93.222667pt;}
.w1_c00050{width:484.666667pt;}
.w0_c00050{width:484.800000pt;}
.x0_c00050{left:0.000000pt;}
.x7_c00050{left:25.200000pt;}
.x6_c00050{left:27.600000pt;}
.x4_c00050{left:28.800000pt;}
.x3_c00050{left:29.733333pt;}
.x8_c00050{left:30.933333pt;}
.x2_c00050{left:31.866667pt;}
.x5_c00050{left:33.333333pt;}
.x9_c00050{left:54.533333pt;}
.x1_c00050{left:116.400000pt;}
.xa_c00050{left:199.568237pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b05965abda9bb4c627570e69.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00051;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00051;src:url('chunks/assets/font_3bdbf0a935e060540cf2f0ea.woff2')format("woff");}.ff3_c00051{font-family:ff3_c00051;line-height:1.568848;font-style:normal;font-weight:normal;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_97756d446888c85b4617030a.woff2')format("woff");}.ff4_c00051{font-family:ff4_c00051;line-height:1.480469;font-style:normal;font-weight:normal;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_dee97eadf5e2ef9a3c7e56b0.woff2')format("woff");}.ff5_c00051{font-family:ff5_c00051;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00051;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00051{font-family:ff6_c00051;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00051{vertical-align:0.000000px;}
.ls0_c00051{letter-spacing:0.000000px;}
.ls1_c00051{letter-spacing:3.000000px;}
.sc__c00051{text-shadow:none;}
.sc0_c00051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00051{-webkit-text-stroke:0px transparent;}
.sc0_c00051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00051{word-spacing:-19.500000px;}
.ws2_c00051{word-spacing:-18.798000px;}
.ws0_c00051{word-spacing:-17.352000px;}
.ws3_c00051{word-spacing:0.000000px;}
._17_c00051{margin-left:-17.394000px;}
._14_c00051{margin-left:-12.048000px;}
._13_c00051{margin-left:-10.404000px;}
._a_c00051{margin-left:-8.208000px;}
._3_c00051{margin-left:-6.804000px;}
._9_c00051{margin-left:-5.493000px;}
._b_c00051{margin-left:-4.299000px;}
._7_c00051{margin-left:-2.571000px;}
._8_c00051{margin-left:-1.338000px;}
._6_c00051{width:1.092000px;}
._4_c00051{width:2.100000px;}
._5_c00051{width:3.612000px;}
._d_c00051{width:4.632000px;}
._2_c00051{width:5.712000px;}
._10_c00051{width:7.248000px;}
._f_c00051{width:8.268000px;}
._11_c00051{width:9.411000px;}
._1_c00051{width:10.500000px;}
._e_c00051{width:11.958000px;}
._c_c00051{width:13.140000px;}
._0_c00051{width:14.952000px;}
._15_c00051{width:16.563000px;}
._18_c00051{width:56.082000px;}
._12_c00051{width:139.386000px;}
._16_c00051{width:183.462000px;}
._19_c00051{width:785.070000px;}
.fc2_c00051{color:transparent;}
.fc1_c00051{color:rgb(128,128,128);}
.fc0_c00051{color:rgb(0,0,0);}
.fs4_c00051{font-size:48.000000px;}
.fs2_c00051{font-size:63.000000px;}
.fs1_c00051{font-size:72.000000px;}
.fs3_c00051{font-size:78.000000px;}
.fs0_c00051{font-size:84.000000px;}
.y0_c00051{bottom:0.000000px;}
.y1f_c00051{bottom:3.105000px;}
.y1e_c00051{bottom:7.228355px;}
.y1d_c00051{bottom:43.485000px;}
.y1c_c00051{bottom:65.385000px;}
.y1b_c00051{bottom:91.785000px;}
.y1a_c00051{bottom:118.035000px;}
.y19_c00051{bottom:142.635000px;}
.y18_c00051{bottom:165.585000px;}
.y17_c00051{bottom:192.285000px;}
.y16_c00051{bottom:216.585000px;}
.y15_c00051{bottom:241.185000px;}
.y14_c00051{bottom:265.185000px;}
.y13_c00051{bottom:290.085000px;}
.y12_c00051{bottom:315.135000px;}
.y11_c00051{bottom:340.185000px;}
.y10_c00051{bottom:364.035000px;}
.yf_c00051{bottom:388.785000px;}
.ye_c00051{bottom:413.385000px;}
.yd_c00051{bottom:438.435000px;}
.yc_c00051{bottom:462.735000px;}
.yb_c00051{bottom:487.635000px;}
.ya_c00051{bottom:511.935000px;}
.y9_c00051{bottom:536.535000px;}
.y8_c00051{bottom:560.835000px;}
.y7_c00051{bottom:585.135000px;}
.y6_c00051{bottom:609.735000px;}
.y5_c00051{bottom:634.035000px;}
.y4_c00051{bottom:657.585000px;}
.y3_c00051{bottom:682.635000px;}
.y2_c00051{bottom:707.685000px;}
.y1_c00051{bottom:733.935000px;}
.h6_c00051{height:13.200074px;}
.h7_c00051{height:43.804688px;}
.h5_c00051{height:78.609375px;}
.h2_c00051{height:82.441406px;}
.h3_c00051{height:91.160156px;}
.h4_c00051{height:98.756836px;}
.h0_c00051{height:791.625000px;}
.h1_c00051{height:792.000000px;}
.w2_c00051{width:104.875500px;}
.w1_c00051{width:552.750000px;}
.w0_c00051{width:552.975000px;}
.x0_c00051{left:0.000000px;}
.x6_c00051{left:65.100000px;}
.x4_c00051{left:138.750000px;}
.x5_c00051{left:140.700000px;}
.x2_c00051{left:142.350000px;}
.x3_c00051{left:144.450000px;}
.x8_c00051{left:228.301758px;}
.x7_c00051{left:254.850000px;}
.x1_c00051{left:257.400000px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls0_c00051{letter-spacing:0.000000pt;}
.ls1_c00051{letter-spacing:2.666667pt;}
.ws1_c00051{word-spacing:-17.333333pt;}
.ws2_c00051{word-spacing:-16.709333pt;}
.ws0_c00051{word-spacing:-15.424000pt;}
.ws3_c00051{word-spacing:0.000000pt;}
._17_c00051{margin-left:-15.461333pt;}
._14_c00051{margin-left:-10.709333pt;}
._13_c00051{margin-left:-9.248000pt;}
._a_c00051{margin-left:-7.296000pt;}
._3_c00051{margin-left:-6.048000pt;}
._9_c00051{margin-left:-4.882667pt;}
._b_c00051{margin-left:-3.821333pt;}
._7_c00051{margin-left:-2.285333pt;}
._8_c00051{margin-left:-1.189333pt;}
._6_c00051{width:0.970667pt;}
._4_c00051{width:1.866667pt;}
._5_c00051{width:3.210667pt;}
._d_c00051{width:4.117333pt;}
._2_c00051{width:5.077333pt;}
._10_c00051{width:6.442667pt;}
._f_c00051{width:7.349333pt;}
._11_c00051{width:8.365333pt;}
._1_c00051{width:9.333333pt;}
._e_c00051{width:10.629333pt;}
._c_c00051{width:11.680000pt;}
._0_c00051{width:13.290667pt;}
._15_c00051{width:14.722667pt;}
._18_c00051{width:49.850667pt;}
._12_c00051{width:123.898667pt;}
._16_c00051{width:163.077333pt;}
._19_c00051{width:697.840000pt;}
.fs4_c00051{font-size:42.666667pt;}
.fs2_c00051{font-size:56.000000pt;}
.fs1_c00051{font-size:64.000000pt;}
.fs3_c00051{font-size:69.333333pt;}
.fs0_c00051{font-size:74.666667pt;}
.y0_c00051{bottom:0.000000pt;}
.y1f_c00051{bottom:2.760000pt;}
.y1e_c00051{bottom:6.425204pt;}
.y1d_c00051{bottom:38.653333pt;}
.y1c_c00051{bottom:58.120000pt;}
.y1b_c00051{bottom:81.586667pt;}
.y1a_c00051{bottom:104.920000pt;}
.y19_c00051{bottom:126.786667pt;}
.y18_c00051{bottom:147.186667pt;}
.y17_c00051{bottom:170.920000pt;}
.y16_c00051{bottom:192.520000pt;}
.y15_c00051{bottom:214.386667pt;}
.y14_c00051{bottom:235.720000pt;}
.y13_c00051{bottom:257.853333pt;}
.y12_c00051{bottom:280.120000pt;}
.y11_c00051{bottom:302.386667pt;}
.y10_c00051{bottom:323.586667pt;}
.yf_c00051{bottom:345.586667pt;}
.ye_c00051{bottom:367.453333pt;}
.yd_c00051{bottom:389.720000pt;}
.yc_c00051{bottom:411.320000pt;}
.yb_c00051{bottom:433.453333pt;}
.ya_c00051{bottom:455.053333pt;}
.y9_c00051{bottom:476.920000pt;}
.y8_c00051{bottom:498.520000pt;}
.y7_c00051{bottom:520.120000pt;}
.y6_c00051{bottom:541.986667pt;}
.y5_c00051{bottom:563.586667pt;}
.y4_c00051{bottom:584.520000pt;}
.y3_c00051{bottom:606.786667pt;}
.y2_c00051{bottom:629.053333pt;}
.y1_c00051{bottom:652.386667pt;}
.h6_c00051{height:11.733399pt;}
.h7_c00051{height:38.937500pt;}
.h5_c00051{height:69.875000pt;}
.h2_c00051{height:73.281250pt;}
.h3_c00051{height:81.031250pt;}
.h4_c00051{height:87.783854pt;}
.h0_c00051{height:703.666667pt;}
.h1_c00051{height:704.000000pt;}
.w2_c00051{width:93.222667pt;}
.w1_c00051{width:491.333333pt;}
.w0_c00051{width:491.533333pt;}
.x0_c00051{left:0.000000pt;}
.x6_c00051{left:57.866667pt;}
.x4_c00051{left:123.333333pt;}
.x5_c00051{left:125.066667pt;}
.x2_c00051{left:126.533333pt;}
.x3_c00051{left:128.400000pt;}
.x8_c00051{left:202.934896pt;}
.x7_c00051{left:226.533333pt;}
.x1_c00051{left:228.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cdcefc61c4f8f5809eeadc74.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.480469;font-style:normal;font-weight:normal;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_0493d67dfaad1a0cbba97de3.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.568848;font-style:normal;font-weight:normal;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_f70beb5247c94b4046151b82.woff2')format("woff");}.ff3_c00052{font-family:ff3_c00052;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00052;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00052{font-family:ff4_c00052;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00052{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m0_c00052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00052{vertical-align:0.000000px;}
.ls2_c00052{letter-spacing:-3.000000px;}
.ls1_c00052{letter-spacing:0.000000px;}
.ls0_c00052{letter-spacing:3.000000px;}
.sc__c00052{text-shadow:none;}
.sc0_c00052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00052{-webkit-text-stroke:0px transparent;}
.sc0_c00052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00052{word-spacing:-33.192000px;}
.ws4_c00052{word-spacing:-25.974000px;}
.ws2_c00052{word-spacing:-23.973000px;}
.ws1_c00052{word-spacing:-20.352000px;}
.ws0_c00052{word-spacing:-16.632000px;}
.ws5_c00052{word-spacing:0.000000px;}
._4_c00052{margin-left:-16.992000px;}
._11_c00052{margin-left:-14.616000px;}
._d_c00052{margin-left:-13.176000px;}
._12_c00052{margin-left:-12.168000px;}
._e_c00052{margin-left:-11.160000px;}
._10_c00052{margin-left:-8.712000px;}
._b_c00052{margin-left:-7.128000px;}
._6_c00052{margin-left:-5.976000px;}
._a_c00052{margin-left:-4.320000px;}
._7_c00052{margin-left:-3.096000px;}
._5_c00052{margin-left:-1.296000px;}
._8_c00052{width:1.944000px;}
._c_c00052{width:3.384000px;}
._13_c00052{width:4.968000px;}
._1_c00052{width:6.192000px;}
._3_c00052{width:7.632000px;}
._15_c00052{width:8.856000px;}
._0_c00052{width:10.440000px;}
._f_c00052{width:11.736000px;}
._2_c00052{width:12.744000px;}
._9_c00052{width:15.624000px;}
._16_c00052{width:23.844000px;}
._14_c00052{width:48.828000px;}
.fc2_c00052{color:transparent;}
.fc1_c00052{color:rgb(128,128,128);}
.fc0_c00052{color:rgb(0,0,0);}
.fs6_c00052{font-size:48.000000px;}
.fs4_c00052{font-size:60.000000px;}
.fs0_c00052{font-size:72.000000px;}
.fs5_c00052{font-size:78.000000px;}
.fs1_c00052{font-size:81.000000px;}
.fs2_c00052{font-size:87.000000px;}
.fs3_c00052{font-size:219.000000px;}
.y0_c00052{bottom:0.000000px;}
.y20_c00052{bottom:3.105000px;}
.y1f_c00052{bottom:7.228369px;}
.y1e_c00052{bottom:54.720000px;}
.y1d_c00052{bottom:78.570000px;}
.y1a_c00052{bottom:99.720000px;}
.y1c_c00052{bottom:104.670000px;}
.y1b_c00052{bottom:129.570000px;}
.y19_c00052{bottom:154.470000px;}
.y18_c00052{bottom:179.820000px;}
.y17_c00052{bottom:204.570000px;}
.y16_c00052{bottom:229.170000px;}
.y15_c00052{bottom:255.120000px;}
.y14_c00052{bottom:278.370000px;}
.y13_c00052{bottom:301.770000px;}
.y12_c00052{bottom:326.670000px;}
.y11_c00052{bottom:352.320000px;}
.y10_c00052{bottom:375.870000px;}
.yf_c00052{bottom:401.220000px;}
.ye_c00052{bottom:425.970000px;}
.yd_c00052{bottom:450.570000px;}
.yc_c00052{bottom:476.520000px;}
.yb_c00052{bottom:501.120000px;}
.ya_c00052{bottom:525.870000px;}
.y9_c00052{bottom:548.820000px;}
.y8_c00052{bottom:575.370000px;}
.y7_c00052{bottom:598.620000px;}
.y6_c00052{bottom:623.370000px;}
.y5_c00052{bottom:647.970000px;}
.y4_c00052{bottom:672.270000px;}
.y3_c00052{bottom:696.870000px;}
.y2_c00052{bottom:720.870000px;}
.y1_c00052{bottom:745.770000px;}
.h7_c00052{height:13.200073px;}
.h8_c00052{height:43.804688px;}
.h5_c00052{height:75.966797px;}
.h6_c00052{height:78.609375px;}
.h2_c00052{height:91.160156px;}
.h3_c00052{height:110.151855px;}
.h4_c00052{height:220.710938px;}
.h0_c00052{height:789.450000px;}
.h1_c00052{height:789.750000px;}
.w2_c00052{width:104.875500px;}
.w1_c00052{width:546.750000px;}
.w0_c00052{width:547.050000px;}
.x0_c00052{left:0.000000px;}
.x2_c00052{left:37.800000px;}
.x3_c00052{left:39.450000px;}
.xa_c00052{left:40.500000px;}
.x4_c00052{left:41.550000px;}
.x5_c00052{left:42.600000px;}
.x6_c00052{left:43.650000px;}
.x7_c00052{left:45.000000px;}
.x9_c00052{left:46.200000px;}
.x8_c00052{left:47.550000px;}
.xb_c00052{left:56.400000px;}
.x1_c00052{left:133.350000px;}
.xd_c00052{left:225.339249px;}
.xc_c00052{left:380.400000px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls2_c00052{letter-spacing:-2.666667pt;}
.ls1_c00052{letter-spacing:0.000000pt;}
.ls0_c00052{letter-spacing:2.666667pt;}
.ws3_c00052{word-spacing:-29.504000pt;}
.ws4_c00052{word-spacing:-23.088000pt;}
.ws2_c00052{word-spacing:-21.309333pt;}
.ws1_c00052{word-spacing:-18.090667pt;}
.ws0_c00052{word-spacing:-14.784000pt;}
.ws5_c00052{word-spacing:0.000000pt;}
._4_c00052{margin-left:-15.104000pt;}
._11_c00052{margin-left:-12.992000pt;}
._d_c00052{margin-left:-11.712000pt;}
._12_c00052{margin-left:-10.816000pt;}
._e_c00052{margin-left:-9.920000pt;}
._10_c00052{margin-left:-7.744000pt;}
._b_c00052{margin-left:-6.336000pt;}
._6_c00052{margin-left:-5.312000pt;}
._a_c00052{margin-left:-3.840000pt;}
._7_c00052{margin-left:-2.752000pt;}
._5_c00052{margin-left:-1.152000pt;}
._8_c00052{width:1.728000pt;}
._c_c00052{width:3.008000pt;}
._13_c00052{width:4.416000pt;}
._1_c00052{width:5.504000pt;}
._3_c00052{width:6.784000pt;}
._15_c00052{width:7.872000pt;}
._0_c00052{width:9.280000pt;}
._f_c00052{width:10.432000pt;}
._2_c00052{width:11.328000pt;}
._9_c00052{width:13.888000pt;}
._16_c00052{width:21.194667pt;}
._14_c00052{width:43.402667pt;}
.fs6_c00052{font-size:42.666667pt;}
.fs4_c00052{font-size:53.333333pt;}
.fs0_c00052{font-size:64.000000pt;}
.fs5_c00052{font-size:69.333333pt;}
.fs1_c00052{font-size:72.000000pt;}
.fs2_c00052{font-size:77.333333pt;}
.fs3_c00052{font-size:194.666667pt;}
.y0_c00052{bottom:0.000000pt;}
.y20_c00052{bottom:2.760000pt;}
.y1f_c00052{bottom:6.425217pt;}
.y1e_c00052{bottom:48.640000pt;}
.y1d_c00052{bottom:69.840000pt;}
.y1a_c00052{bottom:88.640000pt;}
.y1c_c00052{bottom:93.040000pt;}
.y1b_c00052{bottom:115.173333pt;}
.y19_c00052{bottom:137.306667pt;}
.y18_c00052{bottom:159.840000pt;}
.y17_c00052{bottom:181.840000pt;}
.y16_c00052{bottom:203.706667pt;}
.y15_c00052{bottom:226.773333pt;}
.y14_c00052{bottom:247.440000pt;}
.y13_c00052{bottom:268.240000pt;}
.y12_c00052{bottom:290.373333pt;}
.y11_c00052{bottom:313.173333pt;}
.y10_c00052{bottom:334.106667pt;}
.yf_c00052{bottom:356.640000pt;}
.ye_c00052{bottom:378.640000pt;}
.yd_c00052{bottom:400.506667pt;}
.yc_c00052{bottom:423.573333pt;}
.yb_c00052{bottom:445.440000pt;}
.ya_c00052{bottom:467.440000pt;}
.y9_c00052{bottom:487.840000pt;}
.y8_c00052{bottom:511.440000pt;}
.y7_c00052{bottom:532.106667pt;}
.y6_c00052{bottom:554.106667pt;}
.y5_c00052{bottom:575.973333pt;}
.y4_c00052{bottom:597.573333pt;}
.y3_c00052{bottom:619.440000pt;}
.y2_c00052{bottom:640.773333pt;}
.y1_c00052{bottom:662.906667pt;}
.h7_c00052{height:11.733399pt;}
.h8_c00052{height:38.937500pt;}
.h5_c00052{height:67.526042pt;}
.h6_c00052{height:69.875000pt;}
.h2_c00052{height:81.031250pt;}
.h3_c00052{height:97.912760pt;}
.h4_c00052{height:196.187500pt;}
.h0_c00052{height:701.733333pt;}
.h1_c00052{height:702.000000pt;}
.w2_c00052{width:93.222667pt;}
.w1_c00052{width:486.000000pt;}
.w0_c00052{width:486.266667pt;}
.x0_c00052{left:0.000000pt;}
.x2_c00052{left:33.600000pt;}
.x3_c00052{left:35.066667pt;}
.xa_c00052{left:36.000000pt;}
.x4_c00052{left:36.933333pt;}
.x5_c00052{left:37.866667pt;}
.x6_c00052{left:38.800000pt;}
.x7_c00052{left:40.000000pt;}
.x9_c00052{left:41.066667pt;}
.x8_c00052{left:42.266667pt;}
.xb_c00052{left:50.133333pt;}
.x1_c00052{left:118.533333pt;}
.xd_c00052{left:200.301554pt;}
.xc_c00052{left:338.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fa7fa4415595af14cbc4fcb2.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00053;src:url('chunks/assets/font_ad53ad2ea18dacbab26491a3.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:1.568848;font-style:normal;font-weight:normal;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_55bd1a423a348757fa7f49b0.woff2')format("woff");}.ff3_c00053{font-family:ff3_c00053;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00053;src:url('chunks/assets/font_c77923d8f6a5061be7b77136.woff2')format("woff");}.ff4_c00053{font-family:ff4_c00053;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00053{font-family:ff5_c00053;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00053{vertical-align:0.000000px;}
.ls2_c00053{letter-spacing:-3.000000px;}
.ls0_c00053{letter-spacing:0.000000px;}
.ls1_c00053{letter-spacing:3.000000px;}
.sc__c00053{text-shadow:none;}
.sc0_c00053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00053{-webkit-text-stroke:0px transparent;}
.sc0_c00053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00053{word-spacing:-42.000000px;}
.ws4_c00053{word-spacing:-39.000000px;}
.ws3_c00053{word-spacing:-33.192000px;}
.ws5_c00053{word-spacing:-25.974000px;}
.ws1_c00053{word-spacing:-23.973000px;}
.ws2_c00053{word-spacing:-20.352000px;}
.ws6_c00053{word-spacing:0.000000px;}
._1e_c00053{margin-left:-32.184000px;}
._c_c00053{margin-left:-23.892000px;}
._1d_c00053{margin-left:-20.808000px;}
._10_c00053{margin-left:-19.092000px;}
._1f_c00053{margin-left:-16.488000px;}
._13_c00053{margin-left:-14.952000px;}
._f_c00053{margin-left:-13.776000px;}
._a_c00053{margin-left:-12.024000px;}
._d_c00053{margin-left:-10.728000px;}
._b_c00053{margin-left:-9.504000px;}
._14_c00053{margin-left:-7.416000px;}
._7_c00053{margin-left:-6.192000px;}
._4_c00053{margin-left:-4.608000px;}
._e_c00053{margin-left:-3.312000px;}
._2_c00053{margin-left:-2.232000px;}
._3_c00053{margin-left:-1.008000px;}
._0_c00053{width:1.176000px;}
._1_c00053{width:2.184000px;}
._11_c00053{width:3.924000px;}
._6_c00053{width:5.688000px;}
._16_c00053{width:7.596000px;}
._8_c00053{width:9.000000px;}
._17_c00053{width:10.584000px;}
._12_c00053{width:12.264000px;}
._18_c00053{width:14.496000px;}
._5_c00053{width:16.224000px;}
._19_c00053{width:18.012000px;}
._9_c00053{width:24.540000px;}
._15_c00053{width:58.200000px;}
._1b_c00053{width:76.560000px;}
._1c_c00053{width:90.591000px;}
._20_c00053{width:94.476000px;}
._1a_c00053{width:218.256000px;}
.fc2_c00053{color:transparent;}
.fc1_c00053{color:rgb(128,128,128);}
.fc0_c00053{color:rgb(0,0,0);}
.fs2_c00053{font-size:45.000000px;}
.fs5_c00053{font-size:48.000000px;}
.fs1_c00053{font-size:72.000000px;}
.fs4_c00053{font-size:78.000000px;}
.fs3_c00053{font-size:81.000000px;}
.fs0_c00053{font-size:84.000000px;}
.y0_c00053{bottom:0.000000px;}
.y1f_c00053{bottom:3.105000px;}
.y1e_c00053{bottom:7.228363px;}
.y1d_c00053{bottom:48.600000px;}
.y1c_c00053{bottom:71.850000px;}
.y1b_c00053{bottom:96.450000px;}
.y1a_c00053{bottom:124.200000px;}
.y19_c00053{bottom:147.600000px;}
.y18_c00053{bottom:172.200000px;}
.y17_c00053{bottom:197.400000px;}
.y16_c00053{bottom:223.050000px;}
.y15_c00053{bottom:247.500000px;}
.y14_c00053{bottom:271.800000px;}
.y13_c00053{bottom:296.700000px;}
.y12_c00053{bottom:321.000000px;}
.y11_c00053{bottom:346.050000px;}
.y10_c00053{bottom:370.200000px;}
.yf_c00053{bottom:394.950000px;}
.ye_c00053{bottom:419.850000px;}
.yd_c00053{bottom:443.850000px;}
.yc_c00053{bottom:468.450000px;}
.yb_c00053{bottom:493.050000px;}
.ya_c00053{bottom:518.700000px;}
.y9_c00053{bottom:541.800000px;}
.y8_c00053{bottom:566.400000px;}
.y7_c00053{bottom:591.300000px;}
.y6_c00053{bottom:615.900000px;}
.y5_c00053{bottom:639.900000px;}
.y4_c00053{bottom:664.650000px;}
.y3_c00053{bottom:688.950000px;}
.y2_c00053{bottom:713.550000px;}
.y1_c00053{bottom:738.900000px;}
.h6_c00053{height:13.200074px;}
.h7_c00053{height:43.804688px;}
.h5_c00053{height:78.609375px;}
.h2_c00053{height:82.400391px;}
.h3_c00053{height:91.160156px;}
.h4_c00053{height:91.760156px;}
.h0_c00053{height:785.700000px;}
.h1_c00053{height:786.000000px;}
.w2_c00053{width:104.875500px;}
.w0_c00053{width:537.600000px;}
.w1_c00053{width:537.750000px;}
.x0_c00053{left:0.000000px;}
.x6_c00053{left:129.150000px;}
.x5_c00053{left:130.350000px;}
.x4_c00053{left:132.300000px;}
.x3_c00053{left:134.250000px;}
.x2_c00053{left:135.300000px;}
.x8_c00053{left:220.614258px;}
.x1_c00053{left:325.650000px;}
.x7_c00053{left:453.600000px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls2_c00053{letter-spacing:-2.666667pt;}
.ls0_c00053{letter-spacing:0.000000pt;}
.ls1_c00053{letter-spacing:2.666667pt;}
.ws0_c00053{word-spacing:-37.333333pt;}
.ws4_c00053{word-spacing:-34.666667pt;}
.ws3_c00053{word-spacing:-29.504000pt;}
.ws5_c00053{word-spacing:-23.088000pt;}
.ws1_c00053{word-spacing:-21.309333pt;}
.ws2_c00053{word-spacing:-18.090667pt;}
.ws6_c00053{word-spacing:0.000000pt;}
._1e_c00053{margin-left:-28.608000pt;}
._c_c00053{margin-left:-21.237333pt;}
._1d_c00053{margin-left:-18.496000pt;}
._10_c00053{margin-left:-16.970667pt;}
._1f_c00053{margin-left:-14.656000pt;}
._13_c00053{margin-left:-13.290667pt;}
._f_c00053{margin-left:-12.245333pt;}
._a_c00053{margin-left:-10.688000pt;}
._d_c00053{margin-left:-9.536000pt;}
._b_c00053{margin-left:-8.448000pt;}
._14_c00053{margin-left:-6.592000pt;}
._7_c00053{margin-left:-5.504000pt;}
._4_c00053{margin-left:-4.096000pt;}
._e_c00053{margin-left:-2.944000pt;}
._2_c00053{margin-left:-1.984000pt;}
._3_c00053{margin-left:-0.896000pt;}
._0_c00053{width:1.045333pt;}
._1_c00053{width:1.941333pt;}
._11_c00053{width:3.488000pt;}
._6_c00053{width:5.056000pt;}
._16_c00053{width:6.752000pt;}
._8_c00053{width:8.000000pt;}
._17_c00053{width:9.408000pt;}
._12_c00053{width:10.901333pt;}
._18_c00053{width:12.885333pt;}
._5_c00053{width:14.421333pt;}
._19_c00053{width:16.010667pt;}
._9_c00053{width:21.813333pt;}
._15_c00053{width:51.733333pt;}
._1b_c00053{width:68.053333pt;}
._1c_c00053{width:80.525333pt;}
._20_c00053{width:83.978667pt;}
._1a_c00053{width:194.005333pt;}
.fs2_c00053{font-size:40.000000pt;}
.fs5_c00053{font-size:42.666667pt;}
.fs1_c00053{font-size:64.000000pt;}
.fs4_c00053{font-size:69.333333pt;}
.fs3_c00053{font-size:72.000000pt;}
.fs0_c00053{font-size:74.666667pt;}
.y0_c00053{bottom:0.000000pt;}
.y1f_c00053{bottom:2.760000pt;}
.y1e_c00053{bottom:6.425212pt;}
.y1d_c00053{bottom:43.200000pt;}
.y1c_c00053{bottom:63.866667pt;}
.y1b_c00053{bottom:85.733333pt;}
.y1a_c00053{bottom:110.400000pt;}
.y19_c00053{bottom:131.200000pt;}
.y18_c00053{bottom:153.066667pt;}
.y17_c00053{bottom:175.466667pt;}
.y16_c00053{bottom:198.266667pt;}
.y15_c00053{bottom:220.000000pt;}
.y14_c00053{bottom:241.600000pt;}
.y13_c00053{bottom:263.733333pt;}
.y12_c00053{bottom:285.333333pt;}
.y11_c00053{bottom:307.600000pt;}
.y10_c00053{bottom:329.066667pt;}
.yf_c00053{bottom:351.066667pt;}
.ye_c00053{bottom:373.200000pt;}
.yd_c00053{bottom:394.533333pt;}
.yc_c00053{bottom:416.400000pt;}
.yb_c00053{bottom:438.266667pt;}
.ya_c00053{bottom:461.066667pt;}
.y9_c00053{bottom:481.600000pt;}
.y8_c00053{bottom:503.466667pt;}
.y7_c00053{bottom:525.600000pt;}
.y6_c00053{bottom:547.466667pt;}
.y5_c00053{bottom:568.800000pt;}
.y4_c00053{bottom:590.800000pt;}
.y3_c00053{bottom:612.400000pt;}
.y2_c00053{bottom:634.266667pt;}
.y1_c00053{bottom:656.800000pt;}
.h6_c00053{height:11.733399pt;}
.h7_c00053{height:38.937500pt;}
.h5_c00053{height:69.875000pt;}
.h2_c00053{height:73.244792pt;}
.h3_c00053{height:81.031250pt;}
.h4_c00053{height:81.564583pt;}
.h0_c00053{height:698.400000pt;}
.h1_c00053{height:698.666667pt;}
.w2_c00053{width:93.222667pt;}
.w0_c00053{width:477.866667pt;}
.w1_c00053{width:478.000000pt;}
.x0_c00053{left:0.000000pt;}
.x6_c00053{left:114.800000pt;}
.x5_c00053{left:115.866667pt;}
.x4_c00053{left:117.600000pt;}
.x3_c00053{left:119.333333pt;}
.x2_c00053{left:120.266667pt;}
.x8_c00053{left:196.101563pt;}
.x1_c00053{left:289.466667pt;}
.x7_c00053{left:403.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a85c06a212a30e6bba58da78.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00054;src:url('chunks/assets/font_c31ecc457b4ceb7f9bb87984.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00054;src:url('chunks/assets/font_4d1be93f5831d284c25a1f59.woff2')format("woff");}.ff3_c00054{font-family:ff3_c00054;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00054;src:url('chunks/assets/font_28958882ebca53c80229e661.woff2')format("woff");}.ff4_c00054{font-family:ff4_c00054;line-height:1.568848;font-style:normal;font-weight:normal;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_fba91e135be20b30307fa275.woff2')format("woff");}.ff5_c00054{font-family:ff5_c00054;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00054;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00054{font-family:ff6_c00054;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00054{vertical-align:0.000000px;}
.ls3_c00054{letter-spacing:-3.000000px;}
.ls2_c00054{letter-spacing:0.000000px;}
.ls1_c00054{letter-spacing:3.000000px;}
.ls0_c00054{letter-spacing:6.000000px;}
.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:-42.000000px;}
.ws3_c00054{word-spacing:-23.973000px;}
.ws2_c00054{word-spacing:-20.352000px;}
.ws1_c00054{word-spacing:-16.800000px;}
.ws4_c00054{word-spacing:0.000000px;}
._14_c00054{margin-left:-27.720000px;}
._13_c00054{margin-left:-18.066000px;}
._f_c00054{margin-left:-10.170000px;}
._11_c00054{margin-left:-9.054000px;}
._9_c00054{margin-left:-7.698000px;}
._8_c00054{margin-left:-5.676000px;}
._b_c00054{margin-left:-4.266000px;}
._7_c00054{margin-left:-3.102000px;}
._3_c00054{margin-left:-1.260000px;}
._6_c00054{width:1.848000px;}
._1_c00054{width:3.780000px;}
._2_c00054{width:5.040000px;}
._0_c00054{width:6.720000px;}
._a_c00054{width:8.502000px;}
._5_c00054{width:10.491000px;}
._c_c00054{width:12.564000px;}
._12_c00054{width:13.896000px;}
._d_c00054{width:15.810000px;}
._e_c00054{width:36.144000px;}
._4_c00054{width:276.912000px;}
._10_c00054{width:693.570000px;}
._15_c00054{width:1169.784000px;}
.fc2_c00054{color:transparent;}
.fc1_c00054{color:rgb(128,128,128);}
.fc0_c00054{color:rgb(0,0,0);}
.fs5_c00054{font-size:48.000000px;}
.fs3_c00054{font-size:66.000000px;}
.fs2_c00054{font-size:67.200000px;}
.fs4_c00054{font-size:72.000000px;}
.fs1_c00054{font-size:81.000000px;}
.fs0_c00054{font-size:84.000000px;}
.y0_c00054{bottom:0.000000px;}
.y1f_c00054{bottom:3.105000px;}
.y1e_c00054{bottom:7.228357px;}
.y1d_c00054{bottom:43.830000px;}
.y1c_c00054{bottom:68.580000px;}
.y1b_c00054{bottom:93.780000px;}
.y1a_c00054{bottom:118.530000px;}
.y19_c00054{bottom:143.730000px;}
.y18_c00054{bottom:168.180000px;}
.y17_c00054{bottom:193.080000px;}
.y16_c00054{bottom:217.980000px;}
.y15_c00054{bottom:242.430000px;}
.y14_c00054{bottom:266.580000px;}
.y13_c00054{bottom:290.280000px;}
.y12_c00054{bottom:313.230000px;}
.y11_c00054{bottom:338.280000px;}
.y10_c00054{bottom:363.480000px;}
.yf_c00054{bottom:388.530000px;}
.ye_c00054{bottom:413.430000px;}
.yd_c00054{bottom:437.430000px;}
.yc_c00054{bottom:462.780000px;}
.yb_c00054{bottom:486.630000px;}
.ya_c00054{bottom:511.980000px;}
.y9_c00054{bottom:536.580000px;}
.y8_c00054{bottom:561.030000px;}
.y7_c00054{bottom:585.930000px;}
.y6_c00054{bottom:609.630000px;}
.y5_c00054{bottom:633.930000px;}
.y4_c00054{bottom:658.080000px;}
.y3_c00054{bottom:682.830000px;}
.y2_c00054{bottom:707.430000px;}
.y1_c00054{bottom:732.330000px;}
.h4_c00054{height:13.200074px;}
.h5_c00054{height:43.804688px;}
.h1_c00054{height:82.400391px;}
.h2_c00054{height:83.563477px;}
.h3_c00054{height:91.160156px;}
.h0_c00054{height:779.250000px;}
.w2_c00054{width:104.875500px;}
.w0_c00054{width:529.200000px;}
.w1_c00054{width:529.500000px;}
.x0_c00054{left:0.000000px;}
.x2_c00054{left:38.550000px;}
.x3_c00054{left:40.200000px;}
.x4_c00054{left:41.250000px;}
.x6_c00054{left:42.600000px;}
.x5_c00054{left:66.450000px;}
.x8_c00054{left:79.650000px;}
.x1_c00054{left:135.000000px;}
.x9_c00054{left:216.414230px;}
.x7_c00054{left:234.900000px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls3_c00054{letter-spacing:-2.666667pt;}
.ls2_c00054{letter-spacing:0.000000pt;}
.ls1_c00054{letter-spacing:2.666667pt;}
.ls0_c00054{letter-spacing:5.333333pt;}
.ws0_c00054{word-spacing:-37.333333pt;}
.ws3_c00054{word-spacing:-21.309333pt;}
.ws2_c00054{word-spacing:-18.090667pt;}
.ws1_c00054{word-spacing:-14.933333pt;}
.ws4_c00054{word-spacing:0.000000pt;}
._14_c00054{margin-left:-24.640000pt;}
._13_c00054{margin-left:-16.058667pt;}
._f_c00054{margin-left:-9.040000pt;}
._11_c00054{margin-left:-8.048000pt;}
._9_c00054{margin-left:-6.842667pt;}
._8_c00054{margin-left:-5.045333pt;}
._b_c00054{margin-left:-3.792000pt;}
._7_c00054{margin-left:-2.757333pt;}
._3_c00054{margin-left:-1.120000pt;}
._6_c00054{width:1.642667pt;}
._1_c00054{width:3.360000pt;}
._2_c00054{width:4.480000pt;}
._0_c00054{width:5.973333pt;}
._a_c00054{width:7.557333pt;}
._5_c00054{width:9.325333pt;}
._c_c00054{width:11.168000pt;}
._12_c00054{width:12.352000pt;}
._d_c00054{width:14.053333pt;}
._e_c00054{width:32.128000pt;}
._4_c00054{width:246.144000pt;}
._10_c00054{width:616.506667pt;}
._15_c00054{width:1039.808000pt;}
.fs5_c00054{font-size:42.666667pt;}
.fs3_c00054{font-size:58.666667pt;}
.fs2_c00054{font-size:59.733333pt;}
.fs4_c00054{font-size:64.000000pt;}
.fs1_c00054{font-size:72.000000pt;}
.fs0_c00054{font-size:74.666667pt;}
.y0_c00054{bottom:0.000000pt;}
.y1f_c00054{bottom:2.760000pt;}
.y1e_c00054{bottom:6.425206pt;}
.y1d_c00054{bottom:38.960000pt;}
.y1c_c00054{bottom:60.960000pt;}
.y1b_c00054{bottom:83.360000pt;}
.y1a_c00054{bottom:105.360000pt;}
.y19_c00054{bottom:127.760000pt;}
.y18_c00054{bottom:149.493333pt;}
.y17_c00054{bottom:171.626667pt;}
.y16_c00054{bottom:193.760000pt;}
.y15_c00054{bottom:215.493333pt;}
.y14_c00054{bottom:236.960000pt;}
.y13_c00054{bottom:258.026667pt;}
.y12_c00054{bottom:278.426667pt;}
.y11_c00054{bottom:300.693333pt;}
.y10_c00054{bottom:323.093333pt;}
.yf_c00054{bottom:345.360000pt;}
.ye_c00054{bottom:367.493333pt;}
.yd_c00054{bottom:388.826667pt;}
.yc_c00054{bottom:411.360000pt;}
.yb_c00054{bottom:432.560000pt;}
.ya_c00054{bottom:455.093333pt;}
.y9_c00054{bottom:476.960000pt;}
.y8_c00054{bottom:498.693333pt;}
.y7_c00054{bottom:520.826667pt;}
.y6_c00054{bottom:541.893333pt;}
.y5_c00054{bottom:563.493333pt;}
.y4_c00054{bottom:584.960000pt;}
.y3_c00054{bottom:606.960000pt;}
.y2_c00054{bottom:628.826667pt;}
.y1_c00054{bottom:650.960000pt;}
.h4_c00054{height:11.733399pt;}
.h5_c00054{height:38.937500pt;}
.h1_c00054{height:73.244792pt;}
.h2_c00054{height:74.278646pt;}
.h3_c00054{height:81.031250pt;}
.h0_c00054{height:692.666667pt;}
.w2_c00054{width:93.222667pt;}
.w0_c00054{width:470.400000pt;}
.w1_c00054{width:470.666667pt;}
.x0_c00054{left:0.000000pt;}
.x2_c00054{left:34.266667pt;}
.x3_c00054{left:35.733333pt;}
.x4_c00054{left:36.666667pt;}
.x6_c00054{left:37.866667pt;}
.x5_c00054{left:59.066667pt;}
.x8_c00054{left:70.800000pt;}
.x1_c00054{left:120.000000pt;}
.x9_c00054{left:192.368205pt;}
.x7_c00054{left:208.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7e0e700fe0bddb77a9c627cf.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00055;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00055;src:url('chunks/assets/font_f10f5e077e1053e22d205756.woff2')format("woff");}.ff3_c00055{font-family:ff3_c00055;line-height:1.568848;font-style:normal;font-weight:normal;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_5bf8e8bf890220ce3f3a4052.woff2')format("woff");}.ff4_c00055{font-family:ff4_c00055;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00055{font-family:ff5_c00055;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.ls1_c00055{letter-spacing:0.000000px;}
.ls0_c00055{letter-spacing:3.000000px;}
.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:-33.192000px;}
.ws1_c00055{word-spacing:-20.352000px;}
.ws2_c00055{word-spacing:0.000000px;}
._e_c00055{margin-left:-19.956000px;}
._d_c00055{margin-left:-13.752000px;}
._8_c00055{margin-left:-12.348000px;}
._a_c00055{margin-left:-10.728000px;}
._b_c00055{margin-left:-9.480000px;}
._9_c00055{margin-left:-7.488000px;}
._c_c00055{margin-left:-5.772000px;}
._2_c00055{margin-left:-4.200000px;}
._f_c00055{margin-left:-2.976000px;}
._3_c00055{margin-left:-1.908000px;}
._1_c00055{width:1.260000px;}
._12_c00055{width:2.268000px;}
._0_c00055{width:3.276000px;}
._4_c00055{width:4.500000px;}
._6_c00055{width:6.648000px;}
._10_c00055{width:8.112000px;}
._13_c00055{width:9.660000px;}
._5_c00055{width:10.728000px;}
._15_c00055{width:11.820000px;}
._17_c00055{width:12.876000px;}
._7_c00055{width:14.808000px;}
._11_c00055{width:18.024000px;}
._16_c00055{width:26.028000px;}
._14_c00055{width:31.632000px;}
.fc2_c00055{color:transparent;}
.fc1_c00055{color:rgb(128,128,128);}
.fc0_c00055{color:rgb(0,0,0);}
.fs2_c00055{font-size:48.000000px;}
.fs1_c00055{font-size:72.000000px;}
.fs0_c00055{font-size:84.000000px;}
.y0_c00055{bottom:0.000000px;}
.y1f_c00055{bottom:3.105000px;}
.y1e_c00055{bottom:7.228357px;}
.y1d_c00055{bottom:57.480000px;}
.y1c_c00055{bottom:80.280000px;}
.y1b_c00055{bottom:105.030000px;}
.y1a_c00055{bottom:131.730000px;}
.y19_c00055{bottom:155.280000px;}
.y18_c00055{bottom:179.580000px;}
.y17_c00055{bottom:203.880000px;}
.y16_c00055{bottom:228.480000px;}
.y15_c00055{bottom:253.530000px;}
.y14_c00055{bottom:277.830000px;}
.y13_c00055{bottom:302.430000px;}
.y12_c00055{bottom:326.430000px;}
.y11_c00055{bottom:350.730000px;}
.y10_c00055{bottom:376.080000px;}
.yf_c00055{bottom:400.380000px;}
.ye_c00055{bottom:424.680000px;}
.yd_c00055{bottom:449.280000px;}
.yc_c00055{bottom:474.180000px;}
.yb_c00055{bottom:498.780000px;}
.ya_c00055{bottom:523.530000px;}
.y9_c00055{bottom:547.530000px;}
.y8_c00055{bottom:572.130000px;}
.y7_c00055{bottom:596.430000px;}
.y6_c00055{bottom:621.030000px;}
.y5_c00055{bottom:645.630000px;}
.y4_c00055{bottom:669.930000px;}
.y3_c00055{bottom:694.230000px;}
.y2_c00055{bottom:718.830000px;}
.y1_c00055{bottom:744.630000px;}
.h3_c00055{height:13.200074px;}
.h4_c00055{height:43.804688px;}
.h1_c00055{height:82.441406px;}
.h2_c00055{height:91.160156px;}
.h0_c00055{height:799.500000px;}
.w2_c00055{width:104.875500px;}
.w1_c00055{width:549.750000px;}
.w0_c00055{width:549.975000px;}
.x0_c00055{left:0.000000px;}
.x3_c00055{left:134.100000px;}
.x2_c00055{left:135.300000px;}
.x4_c00055{left:136.350000px;}
.x5_c00055{left:137.400000px;}
.x6_c00055{left:138.600000px;}
.x7_c00055{left:140.400000px;}
.x9_c00055{left:226.801758px;}
.x1_c00055{left:250.800000px;}
.x8_c00055{left:476.250000px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls1_c00055{letter-spacing:0.000000pt;}
.ls0_c00055{letter-spacing:2.666667pt;}
.ws0_c00055{word-spacing:-29.504000pt;}
.ws1_c00055{word-spacing:-18.090667pt;}
.ws2_c00055{word-spacing:0.000000pt;}
._e_c00055{margin-left:-17.738667pt;}
._d_c00055{margin-left:-12.224000pt;}
._8_c00055{margin-left:-10.976000pt;}
._a_c00055{margin-left:-9.536000pt;}
._b_c00055{margin-left:-8.426667pt;}
._9_c00055{margin-left:-6.656000pt;}
._c_c00055{margin-left:-5.130667pt;}
._2_c00055{margin-left:-3.733333pt;}
._f_c00055{margin-left:-2.645333pt;}
._3_c00055{margin-left:-1.696000pt;}
._1_c00055{width:1.120000pt;}
._12_c00055{width:2.016000pt;}
._0_c00055{width:2.912000pt;}
._4_c00055{width:4.000000pt;}
._6_c00055{width:5.909333pt;}
._10_c00055{width:7.210667pt;}
._13_c00055{width:8.586667pt;}
._5_c00055{width:9.536000pt;}
._15_c00055{width:10.506667pt;}
._17_c00055{width:11.445333pt;}
._7_c00055{width:13.162667pt;}
._11_c00055{width:16.021333pt;}
._16_c00055{width:23.136000pt;}
._14_c00055{width:28.117333pt;}
.fs2_c00055{font-size:42.666667pt;}
.fs1_c00055{font-size:64.000000pt;}
.fs0_c00055{font-size:74.666667pt;}
.y0_c00055{bottom:0.000000pt;}
.y1f_c00055{bottom:2.760000pt;}
.y1e_c00055{bottom:6.425206pt;}
.y1d_c00055{bottom:51.093333pt;}
.y1c_c00055{bottom:71.360000pt;}
.y1b_c00055{bottom:93.360000pt;}
.y1a_c00055{bottom:117.093333pt;}
.y19_c00055{bottom:138.026667pt;}
.y18_c00055{bottom:159.626667pt;}
.y17_c00055{bottom:181.226667pt;}
.y16_c00055{bottom:203.093333pt;}
.y15_c00055{bottom:225.360000pt;}
.y14_c00055{bottom:246.960000pt;}
.y13_c00055{bottom:268.826667pt;}
.y12_c00055{bottom:290.160000pt;}
.y11_c00055{bottom:311.760000pt;}
.y10_c00055{bottom:334.293333pt;}
.yf_c00055{bottom:355.893333pt;}
.ye_c00055{bottom:377.493333pt;}
.yd_c00055{bottom:399.360000pt;}
.yc_c00055{bottom:421.493333pt;}
.yb_c00055{bottom:443.360000pt;}
.ya_c00055{bottom:465.360000pt;}
.y9_c00055{bottom:486.693333pt;}
.y8_c00055{bottom:508.560000pt;}
.y7_c00055{bottom:530.160000pt;}
.y6_c00055{bottom:552.026667pt;}
.y5_c00055{bottom:573.893333pt;}
.y4_c00055{bottom:595.493333pt;}
.y3_c00055{bottom:617.093333pt;}
.y2_c00055{bottom:638.960000pt;}
.y1_c00055{bottom:661.893333pt;}
.h3_c00055{height:11.733399pt;}
.h4_c00055{height:38.937500pt;}
.h1_c00055{height:73.281250pt;}
.h2_c00055{height:81.031250pt;}
.h0_c00055{height:710.666667pt;}
.w2_c00055{width:93.222667pt;}
.w1_c00055{width:488.666667pt;}
.w0_c00055{width:488.866667pt;}
.x0_c00055{left:0.000000pt;}
.x3_c00055{left:119.200000pt;}
.x2_c00055{left:120.266667pt;}
.x4_c00055{left:121.200000pt;}
.x5_c00055{left:122.133333pt;}
.x6_c00055{left:123.200000pt;}
.x7_c00055{left:124.800000pt;}
.x9_c00055{left:201.601563pt;}
.x1_c00055{left:222.933333pt;}
.x8_c00055{left:423.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_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_693b319073db34601dda2523.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00056;src:url('chunks/assets/font_399d3043a848bf80148bf858.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:1.568848;font-style:normal;font-weight:normal;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_096f3dfb09743efe28d1109c.woff2')format("woff");}.ff3_c00056{font-family:ff3_c00056;line-height:1.480469;font-style:normal;font-weight:normal;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_808db09066fd9f6ec0a7c053.woff2')format("woff");}.ff4_c00056{font-family:ff4_c00056;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00056;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00056{font-family:ff5_c00056;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.ls0_c00056{letter-spacing:0.000000px;}
.ls1_c00056{letter-spacing:3.000000px;}
.sc__c00056{text-shadow:none;}
.sc0_c00056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00056{-webkit-text-stroke:0px transparent;}
.sc0_c00056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00056{word-spacing:-33.192000px;}
.ws1_c00056{word-spacing:-25.974000px;}
.ws2_c00056{word-spacing:0.000000px;}
._8_c00056{margin-left:-14.112000px;}
._16_c00056{margin-left:-12.600000px;}
._15_c00056{margin-left:-11.580000px;}
._e_c00056{margin-left:-9.816000px;}
._f_c00056{margin-left:-8.016000px;}
._d_c00056{margin-left:-6.912000px;}
._2_c00056{margin-left:-5.880000px;}
._1_c00056{margin-left:-4.536000px;}
._0_c00056{margin-left:-2.940000px;}
._9_c00056{margin-left:-1.368000px;}
._b_c00056{width:1.668000px;}
._4_c00056{width:3.192000px;}
._6_c00056{width:4.200000px;}
._5_c00056{width:6.216000px;}
._3_c00056{width:7.560000px;}
._11_c00056{width:9.012000px;}
._c_c00056{width:10.644000px;}
._12_c00056{width:11.844000px;}
._13_c00056{width:15.372000px;}
._10_c00056{width:16.872000px;}
._a_c00056{width:18.324000px;}
._14_c00056{width:38.796000px;}
._7_c00056{width:339.948000px;}
.fc2_c00056{color:transparent;}
.fc1_c00056{color:rgb(128,128,128);}
.fc0_c00056{color:rgb(0,0,0);}
.fs3_c00056{font-size:48.000000px;}
.fs1_c00056{font-size:72.000000px;}
.fs2_c00056{font-size:78.000000px;}
.fs0_c00056{font-size:84.000000px;}
.y0_c00056{bottom:0.000000px;}
.y1f_c00056{bottom:3.105000px;}
.y1e_c00056{bottom:7.228371px;}
.y1d_c00056{bottom:48.915000px;}
.y1c_c00056{bottom:76.065000px;}
.y1b_c00056{bottom:100.365000px;}
.y1a_c00056{bottom:126.315000px;}
.y19_c00056{bottom:150.315000px;}
.y18_c00056{bottom:175.815000px;}
.y17_c00056{bottom:200.115000px;}
.y16_c00056{bottom:225.915000px;}
.y15_c00056{bottom:250.515000px;}
.y14_c00056{bottom:274.815000px;}
.y13_c00056{bottom:298.065000px;}
.y12_c00056{bottom:322.065000px;}
.y11_c00056{bottom:346.665000px;}
.y10_c00056{bottom:371.565000px;}
.yf_c00056{bottom:396.615000px;}
.ye_c00056{bottom:420.915000px;}
.yd_c00056{bottom:445.515000px;}
.yc_c00056{bottom:470.565000px;}
.yb_c00056{bottom:495.165000px;}
.ya_c00056{bottom:518.865000px;}
.y9_c00056{bottom:543.465000px;}
.y8_c00056{bottom:568.365000px;}
.y7_c00056{bottom:592.665000px;}
.y6_c00056{bottom:617.265000px;}
.y5_c00056{bottom:641.565000px;}
.y4_c00056{bottom:666.615000px;}
.y3_c00056{bottom:690.915000px;}
.y2_c00056{bottom:715.215000px;}
.y1_c00056{bottom:740.115000px;}
.h5_c00056{height:13.200074px;}
.h6_c00056{height:43.804688px;}
.h4_c00056{height:78.609375px;}
.h2_c00056{height:82.400391px;}
.h3_c00056{height:91.160156px;}
.h1_c00056{height:797.250000px;}
.h0_c00056{height:797.325000px;}
.w2_c00056{width:104.875500px;}
.w0_c00056{width:550.275000px;}
.w1_c00056{width:550.500000px;}
.x0_c00056{left:0.000000px;}
.x6_c00056{left:36.150000px;}
.x2_c00056{left:41.550000px;}
.x3_c00056{left:42.900000px;}
.x4_c00056{left:44.250000px;}
.x5_c00056{left:45.900000px;}
.x1_c00056{left:138.300000px;}
.x8_c00056{left:226.951767px;}
.x7_c00056{left:376.950000px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls0_c00056{letter-spacing:0.000000pt;}
.ls1_c00056{letter-spacing:2.666667pt;}
.ws0_c00056{word-spacing:-29.504000pt;}
.ws1_c00056{word-spacing:-23.088000pt;}
.ws2_c00056{word-spacing:0.000000pt;}
._8_c00056{margin-left:-12.544000pt;}
._16_c00056{margin-left:-11.200000pt;}
._15_c00056{margin-left:-10.293333pt;}
._e_c00056{margin-left:-8.725333pt;}
._f_c00056{margin-left:-7.125333pt;}
._d_c00056{margin-left:-6.144000pt;}
._2_c00056{margin-left:-5.226667pt;}
._1_c00056{margin-left:-4.032000pt;}
._0_c00056{margin-left:-2.613333pt;}
._9_c00056{margin-left:-1.216000pt;}
._b_c00056{width:1.482667pt;}
._4_c00056{width:2.837333pt;}
._6_c00056{width:3.733333pt;}
._5_c00056{width:5.525333pt;}
._3_c00056{width:6.720000pt;}
._11_c00056{width:8.010667pt;}
._c_c00056{width:9.461333pt;}
._12_c00056{width:10.528000pt;}
._13_c00056{width:13.664000pt;}
._10_c00056{width:14.997333pt;}
._a_c00056{width:16.288000pt;}
._14_c00056{width:34.485333pt;}
._7_c00056{width:302.176000pt;}
.fs3_c00056{font-size:42.666667pt;}
.fs1_c00056{font-size:64.000000pt;}
.fs2_c00056{font-size:69.333333pt;}
.fs0_c00056{font-size:74.666667pt;}
.y0_c00056{bottom:0.000000pt;}
.y1f_c00056{bottom:2.760000pt;}
.y1e_c00056{bottom:6.425219pt;}
.y1d_c00056{bottom:43.480000pt;}
.y1c_c00056{bottom:67.613333pt;}
.y1b_c00056{bottom:89.213333pt;}
.y1a_c00056{bottom:112.280000pt;}
.y19_c00056{bottom:133.613333pt;}
.y18_c00056{bottom:156.280000pt;}
.y17_c00056{bottom:177.880000pt;}
.y16_c00056{bottom:200.813333pt;}
.y15_c00056{bottom:222.680000pt;}
.y14_c00056{bottom:244.280000pt;}
.y13_c00056{bottom:264.946667pt;}
.y12_c00056{bottom:286.280000pt;}
.y11_c00056{bottom:308.146667pt;}
.y10_c00056{bottom:330.280000pt;}
.yf_c00056{bottom:352.546667pt;}
.ye_c00056{bottom:374.146667pt;}
.yd_c00056{bottom:396.013333pt;}
.yc_c00056{bottom:418.280000pt;}
.yb_c00056{bottom:440.146667pt;}
.ya_c00056{bottom:461.213333pt;}
.y9_c00056{bottom:483.080000pt;}
.y8_c00056{bottom:505.213333pt;}
.y7_c00056{bottom:526.813333pt;}
.y6_c00056{bottom:548.680000pt;}
.y5_c00056{bottom:570.280000pt;}
.y4_c00056{bottom:592.546667pt;}
.y3_c00056{bottom:614.146667pt;}
.y2_c00056{bottom:635.746667pt;}
.y1_c00056{bottom:657.880000pt;}
.h5_c00056{height:11.733399pt;}
.h6_c00056{height:38.937500pt;}
.h4_c00056{height:69.875000pt;}
.h2_c00056{height:73.244792pt;}
.h3_c00056{height:81.031250pt;}
.h1_c00056{height:708.666667pt;}
.h0_c00056{height:708.733333pt;}
.w2_c00056{width:93.222667pt;}
.w0_c00056{width:489.133333pt;}
.w1_c00056{width:489.333333pt;}
.x0_c00056{left:0.000000pt;}
.x6_c00056{left:32.133333pt;}
.x2_c00056{left:36.933333pt;}
.x3_c00056{left:38.133333pt;}
.x4_c00056{left:39.333333pt;}
.x5_c00056{left:40.800000pt;}
.x1_c00056{left:122.933333pt;}
.x8_c00056{left:201.734904pt;}
.x7_c00056{left:335.066667pt;}
}





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

.ir_c00057:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00057{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00057;src:url('chunks/assets/font_a62ecb103efa6e60e6714967.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00057;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00057;src:url('chunks/assets/font_443f486776ffb8589299a1f1.woff2')format("woff");}.ff3_c00057{font-family:ff3_c00057;line-height:1.568848;font-style:normal;font-weight:normal;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_f592fc991d1c6284eba77382.woff2')format("woff");}.ff4_c00057{font-family:ff4_c00057;line-height:1.480469;font-style:normal;font-weight:normal;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_fba91e135be20b30307fa275.woff2')format("woff");}.ff5_c00057{font-family:ff5_c00057;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00057;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00057{font-family:ff6_c00057;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00057{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00057{vertical-align:0.000000px;}
.ls2_c00057{letter-spacing:-3.000000px;}
.ls1_c00057{letter-spacing:0.000000px;}
.ls0_c00057{letter-spacing:3.000000px;}
.sc__c00057{text-shadow:none;}
.sc0_c00057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00057{-webkit-text-stroke:0px transparent;}
.sc0_c00057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00057{word-spacing:-33.192000px;}
.ws1_c00057{word-spacing:-23.973000px;}
.ws2_c00057{word-spacing:0.000000px;}
._13_c00057{margin-left:-18.936000px;}
._14_c00057{margin-left:-17.064000px;}
._18_c00057{margin-left:-15.840000px;}
._15_c00057{margin-left:-13.896000px;}
._e_c00057{margin-left:-12.888000px;}
._19_c00057{margin-left:-11.664000px;}
._c_c00057{margin-left:-10.368000px;}
._1c_c00057{margin-left:-9.348000px;}
._2_c00057{margin-left:-7.992000px;}
._17_c00057{margin-left:-6.840000px;}
._8_c00057{margin-left:-5.832000px;}
._9_c00057{margin-left:-4.392000px;}
._b_c00057{margin-left:-2.952000px;}
._a_c00057{margin-left:-1.728000px;}
._0_c00057{width:1.512000px;}
._1_c00057{width:2.592000px;}
._5_c00057{width:4.248000px;}
._4_c00057{width:5.904000px;}
._7_c00057{width:7.056000px;}
._3_c00057{width:8.136000px;}
._d_c00057{width:9.288000px;}
._6_c00057{width:11.016000px;}
._11_c00057{width:12.024000px;}
._12_c00057{width:14.472000px;}
._16_c00057{width:15.480000px;}
._10_c00057{width:17.568000px;}
._1d_c00057{width:28.944000px;}
._f_c00057{width:40.968000px;}
._1a_c00057{width:108.072000px;}
._1b_c00057{width:331.200000px;}
._1e_c00057{width:1123.632000px;}
.fc2_c00057{color:transparent;}
.fc1_c00057{color:rgb(128,128,128);}
.fc0_c00057{color:rgb(0,0,0);}
.fs2_c00057{font-size:48.000000px;}
.fs0_c00057{font-size:72.000000px;}
.fs1_c00057{font-size:81.000000px;}
.y0_c00057{bottom:0.000000px;}
.y1f_c00057{bottom:3.105000px;}
.y1e_c00057{bottom:7.228369px;}
.y1d_c00057{bottom:38.370000px;}
.y1c_c00057{bottom:62.670000px;}
.y1b_c00057{bottom:87.870000px;}
.y1a_c00057{bottom:113.070000px;}
.y19_c00057{bottom:138.270000px;}
.y18_c00057{bottom:162.570000px;}
.y17_c00057{bottom:187.620000px;}
.y16_c00057{bottom:212.220000px;}
.y15_c00057{bottom:238.170000px;}
.y14_c00057{bottom:261.570000px;}
.y13_c00057{bottom:285.870000px;}
.y12_c00057{bottom:310.770000px;}
.y11_c00057{bottom:335.070000px;}
.y10_c00057{bottom:359.670000px;}
.yf_c00057{bottom:383.970000px;}
.ye_c00057{bottom:408.420000px;}
.yd_c00057{bottom:432.720000px;}
.yc_c00057{bottom:457.620000px;}
.yb_c00057{bottom:482.220000px;}
.ya_c00057{bottom:506.520000px;}
.y9_c00057{bottom:531.120000px;}
.y8_c00057{bottom:555.420000px;}
.y7_c00057{bottom:579.870000px;}
.y6_c00057{bottom:603.720000px;}
.y5_c00057{bottom:629.670000px;}
.y4_c00057{bottom:653.670000px;}
.y3_c00057{bottom:678.270000px;}
.y2_c00057{bottom:702.570000px;}
.y1_c00057{bottom:727.920000px;}
.h5_c00057{height:13.200073px;}
.h6_c00057{height:43.804688px;}
.h2_c00057{height:70.664062px;}
.h3_c00057{height:91.160156px;}
.h4_c00057{height:91.760156px;}
.h1_c00057{height:783.750000px;}
.h0_c00057{height:784.050000px;}
.w2_c00057{width:104.875500px;}
.w0_c00057{width:532.425000px;}
.w1_c00057{width:532.500000px;}
.x0_c00057{left:0.000000px;}
.x6_c00057{left:128.700000px;}
.x7_c00057{left:132.000000px;}
.x5_c00057{left:134.400000px;}
.x4_c00057{left:135.450000px;}
.x3_c00057{left:136.650000px;}
.x2_c00057{left:138.150000px;}
.x8_c00057{left:161.700000px;}
.x9_c00057{left:218.026749px;}
.x1_c00057{left:249.150000px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls2_c00057{letter-spacing:-2.666667pt;}
.ls1_c00057{letter-spacing:0.000000pt;}
.ls0_c00057{letter-spacing:2.666667pt;}
.ws0_c00057{word-spacing:-29.504000pt;}
.ws1_c00057{word-spacing:-21.309333pt;}
.ws2_c00057{word-spacing:0.000000pt;}
._13_c00057{margin-left:-16.832000pt;}
._14_c00057{margin-left:-15.168000pt;}
._18_c00057{margin-left:-14.080000pt;}
._15_c00057{margin-left:-12.352000pt;}
._e_c00057{margin-left:-11.456000pt;}
._19_c00057{margin-left:-10.368000pt;}
._c_c00057{margin-left:-9.216000pt;}
._1c_c00057{margin-left:-8.309333pt;}
._2_c00057{margin-left:-7.104000pt;}
._17_c00057{margin-left:-6.080000pt;}
._8_c00057{margin-left:-5.184000pt;}
._9_c00057{margin-left:-3.904000pt;}
._b_c00057{margin-left:-2.624000pt;}
._a_c00057{margin-left:-1.536000pt;}
._0_c00057{width:1.344000pt;}
._1_c00057{width:2.304000pt;}
._5_c00057{width:3.776000pt;}
._4_c00057{width:5.248000pt;}
._7_c00057{width:6.272000pt;}
._3_c00057{width:7.232000pt;}
._d_c00057{width:8.256000pt;}
._6_c00057{width:9.792000pt;}
._11_c00057{width:10.688000pt;}
._12_c00057{width:12.864000pt;}
._16_c00057{width:13.760000pt;}
._10_c00057{width:15.616000pt;}
._1d_c00057{width:25.728000pt;}
._f_c00057{width:36.416000pt;}
._1a_c00057{width:96.064000pt;}
._1b_c00057{width:294.400000pt;}
._1e_c00057{width:998.784000pt;}
.fs2_c00057{font-size:42.666667pt;}
.fs0_c00057{font-size:64.000000pt;}
.fs1_c00057{font-size:72.000000pt;}
.y0_c00057{bottom:0.000000pt;}
.y1f_c00057{bottom:2.760000pt;}
.y1e_c00057{bottom:6.425217pt;}
.y1d_c00057{bottom:34.106667pt;}
.y1c_c00057{bottom:55.706667pt;}
.y1b_c00057{bottom:78.106667pt;}
.y1a_c00057{bottom:100.506667pt;}
.y19_c00057{bottom:122.906667pt;}
.y18_c00057{bottom:144.506667pt;}
.y17_c00057{bottom:166.773333pt;}
.y16_c00057{bottom:188.640000pt;}
.y15_c00057{bottom:211.706667pt;}
.y14_c00057{bottom:232.506667pt;}
.y13_c00057{bottom:254.106667pt;}
.y12_c00057{bottom:276.240000pt;}
.y11_c00057{bottom:297.840000pt;}
.y10_c00057{bottom:319.706667pt;}
.yf_c00057{bottom:341.306667pt;}
.ye_c00057{bottom:363.040000pt;}
.yd_c00057{bottom:384.640000pt;}
.yc_c00057{bottom:406.773333pt;}
.yb_c00057{bottom:428.640000pt;}
.ya_c00057{bottom:450.240000pt;}
.y9_c00057{bottom:472.106667pt;}
.y8_c00057{bottom:493.706667pt;}
.y7_c00057{bottom:515.440000pt;}
.y6_c00057{bottom:536.640000pt;}
.y5_c00057{bottom:559.706667pt;}
.y4_c00057{bottom:581.040000pt;}
.y3_c00057{bottom:602.906667pt;}
.y2_c00057{bottom:624.506667pt;}
.y1_c00057{bottom:647.040000pt;}
.h5_c00057{height:11.733399pt;}
.h6_c00057{height:38.937500pt;}
.h2_c00057{height:62.812500pt;}
.h3_c00057{height:81.031250pt;}
.h4_c00057{height:81.564583pt;}
.h1_c00057{height:696.666667pt;}
.h0_c00057{height:696.933333pt;}
.w2_c00057{width:93.222667pt;}
.w0_c00057{width:473.266667pt;}
.w1_c00057{width:473.333333pt;}
.x0_c00057{left:0.000000pt;}
.x6_c00057{left:114.400000pt;}
.x7_c00057{left:117.333333pt;}
.x5_c00057{left:119.466667pt;}
.x4_c00057{left:120.400000pt;}
.x3_c00057{left:121.466667pt;}
.x2_c00057{left:122.800000pt;}
.x8_c00057{left:143.733333pt;}
.x9_c00057{left:193.801554pt;}
.x1_c00057{left:221.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_179cab49887bcb2cf7ee4735.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00058;src:url('chunks/assets/font_53f29e3d2aaa372722b797f8.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:1.568848;font-style:normal;font-weight:normal;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_88c8817112e4eb9878713340.woff2')format("woff");}.ff3_c00058{font-family:ff3_c00058;line-height:1.480469;font-style:normal;font-weight:normal;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_cd2691365dd5f6855d217746.woff2')format("woff");}.ff4_c00058{font-family:ff4_c00058;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00058;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00058{font-family:ff5_c00058;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00058{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00058{vertical-align:0.000000px;}
.ls1_c00058{letter-spacing:0.000000px;}
.ls2_c00058{letter-spacing:3.000000px;}
.ls0_c00058{letter-spacing:34.617000px;}
.ls3_c00058{letter-spacing:36.000000px;}
.sc__c00058{text-shadow:none;}
.sc0_c00058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00058{-webkit-text-stroke:0px transparent;}
.sc0_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00058{word-spacing:-49.014000px;}
.ws1_c00058{word-spacing:-17.352000px;}
.ws0_c00058{word-spacing:-15.183000px;}
.ws3_c00058{word-spacing:0.000000px;}
._20_c00058{margin-left:-43.620000px;}
._25_c00058{margin-left:-14.184000px;}
._1b_c00058{margin-left:-12.681000px;}
._1a_c00058{margin-left:-10.824000px;}
._11_c00058{margin-left:-9.390000px;}
._f_c00058{margin-left:-8.322000px;}
._d_c00058{margin-left:-7.104000px;}
._2_c00058{margin-left:-6.048000px;}
._a_c00058{margin-left:-4.752000px;}
._c_c00058{margin-left:-3.336000px;}
._8_c00058{margin-left:-2.088000px;}
._e_c00058{margin-left:-1.002000px;}
._4_c00058{width:1.848000px;}
._5_c00058{width:3.192000px;}
._3_c00058{width:4.200000px;}
._23_c00058{width:5.319000px;}
._10_c00058{width:6.384000px;}
._14_c00058{width:7.434000px;}
._b_c00058{width:8.712000px;}
._9_c00058{width:10.944000px;}
._7_c00058{width:12.348000px;}
._16_c00058{width:14.160000px;}
._27_c00058{width:15.264000px;}
._12_c00058{width:16.464000px;}
._15_c00058{width:18.570000px;}
._13_c00058{width:22.680000px;}
._26_c00058{width:32.361000px;}
._0_c00058{width:36.876000px;}
._1_c00058{width:43.512000px;}
._1f_c00058{width:97.773000px;}
._1c_c00058{width:112.950000px;}
._24_c00058{width:123.960000px;}
._21_c00058{width:163.647000px;}
._18_c00058{width:208.104000px;}
._17_c00058{width:212.808000px;}
._19_c00058{width:223.008000px;}
._22_c00058{width:251.568000px;}
._28_c00058{width:310.248000px;}
._1d_c00058{width:333.540000px;}
._6_c00058{width:339.948000px;}
._1e_c00058{width:359.349000px;}
.fc2_c00058{color:transparent;}
.fc1_c00058{color:rgb(128,128,128);}
.fc0_c00058{color:rgb(0,0,0);}
.fs6_c00058{font-size:48.000000px;}
.fs5_c00058{font-size:54.000000px;}
.fs4_c00058{font-size:57.000000px;}
.fs3_c00058{font-size:63.000000px;}
.fs2_c00058{font-size:66.000000px;}
.fs1_c00058{font-size:72.000000px;}
.fs0_c00058{font-size:84.000000px;}
.y0_c00058{bottom:0.000000px;}
.y20_c00058{bottom:3.105000px;}
.y1f_c00058{bottom:7.228369px;}
.y1e_c00058{bottom:40.770000px;}
.y1d_c00058{bottom:65.820000px;}
.y1c_c00058{bottom:91.170000px;}
.y1b_c00058{bottom:116.070000px;}
.y1a_c00058{bottom:141.120000px;}
.y19_c00058{bottom:165.420000px;}
.y18_c00058{bottom:189.720000px;}
.y17_c00058{bottom:202.170000px;}
.y16_c00058{bottom:215.670000px;}
.y15_c00058{bottom:241.320000px;}
.y14_c00058{bottom:265.620000px;}
.y13_c00058{bottom:288.270000px;}
.y12_c00058{bottom:311.820000px;}
.y11_c00058{bottom:336.120000px;}
.y10_c00058{bottom:361.020000px;}
.yf_c00058{bottom:386.370000px;}
.ye_c00058{bottom:410.070000px;}
.yd_c00058{bottom:435.420000px;}
.yc_c00058{bottom:459.720000px;}
.yb_c00058{bottom:483.870000px;}
.ya_c00058{bottom:508.620000px;}
.y9_c00058{bottom:533.820000px;}
.y8_c00058{bottom:557.520000px;}
.y7_c00058{bottom:582.120000px;}
.y6_c00058{bottom:606.720000px;}
.y5_c00058{bottom:631.020000px;}
.y4_c00058{bottom:655.470000px;}
.y3_c00058{bottom:680.070000px;}
.y2_c00058{bottom:704.370000px;}
.y1_c00058{bottom:730.320000px;}
.h5_c00058{height:13.200073px;}
.h6_c00058{height:43.804688px;}
.h4_c00058{height:68.370117px;}
.h2_c00058{height:82.400391px;}
.h3_c00058{height:91.160156px;}
.h0_c00058{height:775.950000px;}
.h1_c00058{height:776.250000px;}
.w2_c00058{width:104.875500px;}
.w0_c00058{width:548.925000px;}
.w1_c00058{width:549.000000px;}
.x0_c00058{left:0.000000px;}
.x9_c00058{left:26.700000px;}
.x8_c00058{left:27.750000px;}
.x7_c00058{left:28.800000px;}
.x6_c00058{left:30.150000px;}
.x4_c00058{left:31.350000px;}
.x5_c00058{left:32.400000px;}
.x3_c00058{left:33.750000px;}
.x2_c00058{left:34.800000px;}
.x1_c00058{left:119.700000px;}
.xb_c00058{left:226.276749px;}
.xa_c00058{left:261.450000px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls1_c00058{letter-spacing:0.000000pt;}
.ls2_c00058{letter-spacing:2.666667pt;}
.ls0_c00058{letter-spacing:30.770667pt;}
.ls3_c00058{letter-spacing:32.000000pt;}
.ws2_c00058{word-spacing:-43.568000pt;}
.ws1_c00058{word-spacing:-15.424000pt;}
.ws0_c00058{word-spacing:-13.496000pt;}
.ws3_c00058{word-spacing:0.000000pt;}
._20_c00058{margin-left:-38.773333pt;}
._25_c00058{margin-left:-12.608000pt;}
._1b_c00058{margin-left:-11.272000pt;}
._1a_c00058{margin-left:-9.621333pt;}
._11_c00058{margin-left:-8.346667pt;}
._f_c00058{margin-left:-7.397333pt;}
._d_c00058{margin-left:-6.314667pt;}
._2_c00058{margin-left:-5.376000pt;}
._a_c00058{margin-left:-4.224000pt;}
._c_c00058{margin-left:-2.965333pt;}
._8_c00058{margin-left:-1.856000pt;}
._e_c00058{margin-left:-0.890667pt;}
._4_c00058{width:1.642667pt;}
._5_c00058{width:2.837333pt;}
._3_c00058{width:3.733333pt;}
._23_c00058{width:4.728000pt;}
._10_c00058{width:5.674667pt;}
._14_c00058{width:6.608000pt;}
._b_c00058{width:7.744000pt;}
._9_c00058{width:9.728000pt;}
._7_c00058{width:10.976000pt;}
._16_c00058{width:12.586667pt;}
._27_c00058{width:13.568000pt;}
._12_c00058{width:14.634667pt;}
._15_c00058{width:16.506667pt;}
._13_c00058{width:20.160000pt;}
._26_c00058{width:28.765333pt;}
._0_c00058{width:32.778667pt;}
._1_c00058{width:38.677333pt;}
._1f_c00058{width:86.909333pt;}
._1c_c00058{width:100.400000pt;}
._24_c00058{width:110.186667pt;}
._21_c00058{width:145.464000pt;}
._18_c00058{width:184.981333pt;}
._17_c00058{width:189.162667pt;}
._19_c00058{width:198.229333pt;}
._22_c00058{width:223.616000pt;}
._28_c00058{width:275.776000pt;}
._1d_c00058{width:296.480000pt;}
._6_c00058{width:302.176000pt;}
._1e_c00058{width:319.421333pt;}
.fs6_c00058{font-size:42.666667pt;}
.fs5_c00058{font-size:48.000000pt;}
.fs4_c00058{font-size:50.666667pt;}
.fs3_c00058{font-size:56.000000pt;}
.fs2_c00058{font-size:58.666667pt;}
.fs1_c00058{font-size:64.000000pt;}
.fs0_c00058{font-size:74.666667pt;}
.y0_c00058{bottom:0.000000pt;}
.y20_c00058{bottom:2.760000pt;}
.y1f_c00058{bottom:6.425217pt;}
.y1e_c00058{bottom:36.240000pt;}
.y1d_c00058{bottom:58.506667pt;}
.y1c_c00058{bottom:81.040000pt;}
.y1b_c00058{bottom:103.173333pt;}
.y1a_c00058{bottom:125.440000pt;}
.y19_c00058{bottom:147.040000pt;}
.y18_c00058{bottom:168.640000pt;}
.y17_c00058{bottom:179.706667pt;}
.y16_c00058{bottom:191.706667pt;}
.y15_c00058{bottom:214.506667pt;}
.y14_c00058{bottom:236.106667pt;}
.y13_c00058{bottom:256.240000pt;}
.y12_c00058{bottom:277.173333pt;}
.y11_c00058{bottom:298.773333pt;}
.y10_c00058{bottom:320.906667pt;}
.yf_c00058{bottom:343.440000pt;}
.ye_c00058{bottom:364.506667pt;}
.yd_c00058{bottom:387.040000pt;}
.yc_c00058{bottom:408.640000pt;}
.yb_c00058{bottom:430.106667pt;}
.ya_c00058{bottom:452.106667pt;}
.y9_c00058{bottom:474.506667pt;}
.y8_c00058{bottom:495.573333pt;}
.y7_c00058{bottom:517.440000pt;}
.y6_c00058{bottom:539.306667pt;}
.y5_c00058{bottom:560.906667pt;}
.y4_c00058{bottom:582.640000pt;}
.y3_c00058{bottom:604.506667pt;}
.y2_c00058{bottom:626.106667pt;}
.y1_c00058{bottom:649.173333pt;}
.h5_c00058{height:11.733399pt;}
.h6_c00058{height:38.937500pt;}
.h4_c00058{height:60.773438pt;}
.h2_c00058{height:73.244792pt;}
.h3_c00058{height:81.031250pt;}
.h0_c00058{height:689.733333pt;}
.h1_c00058{height:690.000000pt;}
.w2_c00058{width:93.222667pt;}
.w0_c00058{width:487.933333pt;}
.w1_c00058{width:488.000000pt;}
.x0_c00058{left:0.000000pt;}
.x9_c00058{left:23.733333pt;}
.x8_c00058{left:24.666667pt;}
.x7_c00058{left:25.600000pt;}
.x6_c00058{left:26.800000pt;}
.x4_c00058{left:27.866667pt;}
.x5_c00058{left:28.800000pt;}
.x3_c00058{left:30.000000pt;}
.x2_c00058{left:30.933333pt;}
.x1_c00058{left:106.400000pt;}
.xb_c00058{left:201.134888pt;}
.xa_c00058{left:232.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7e0e700fe0bddb77a9c627cf.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00059;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00059;src:url('chunks/assets/font_eaaf9b43c22c321607557808.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;line-height:1.568848;font-style:normal;font-weight:normal;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_6f424787d181b6181e9f9be8.woff2')format("woff");}.ff4_c00059{font-family:ff4_c00059;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00059{font-family:ff5_c00059;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.ls5_c00059{letter-spacing:-9.000000px;}
.ls3_c00059{letter-spacing:0.000000px;}
.ls0_c00059{letter-spacing:3.000000px;}
.ls2_c00059{letter-spacing:6.000000px;}
.ls4_c00059{letter-spacing:9.000000px;}
.ls1_c00059{letter-spacing:10.740000px;}
.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:-24.906000px;}
.ws4_c00059{word-spacing:-20.352000px;}
.ws2_c00059{word-spacing:-16.629000px;}
.ws0_c00059{word-spacing:-15.906000px;}
.ws3_c00059{word-spacing:-7.629000px;}
.ws5_c00059{word-spacing:0.000000px;}
._13_c00059{margin-left:-36.516000px;}
._2_c00059{margin-left:-15.372000px;}
._a_c00059{margin-left:-11.712000px;}
._b_c00059{margin-left:-9.816000px;}
._9_c00059{margin-left:-7.512000px;}
._6_c00059{margin-left:-5.568000px;}
._5_c00059{margin-left:-3.912000px;}
._3_c00059{margin-left:-2.688000px;}
._4_c00059{margin-left:-1.272000px;}
._1_c00059{width:1.848000px;}
._0_c00059{width:3.864000px;}
._7_c00059{width:5.352000px;}
._8_c00059{width:6.384000px;}
._f_c00059{width:8.424000px;}
._d_c00059{width:9.480000px;}
._c_c00059{width:10.752000px;}
._11_c00059{width:12.240000px;}
._e_c00059{width:14.040000px;}
._12_c00059{width:15.942000px;}
._16_c00059{width:24.174000px;}
._17_c00059{width:34.029000px;}
._10_c00059{width:117.348000px;}
._15_c00059{width:239.130000px;}
._14_c00059{width:310.512000px;}
._18_c00059{width:466.506000px;}
.fc2_c00059{color:transparent;}
.fc1_c00059{color:rgb(128,128,128);}
.fc0_c00059{color:rgb(0,0,0);}
.fs4_c00059{font-size:48.000000px;}
.fs2_c00059{font-size:66.000000px;}
.fs3_c00059{font-size:69.000000px;}
.fs1_c00059{font-size:72.000000px;}
.fs0_c00059{font-size:84.000000px;}
.y0_c00059{bottom:0.000000px;}
.y1f_c00059{bottom:3.105000px;}
.y1e_c00059{bottom:7.228369px;}
.y1d_c00059{bottom:38.370000px;}
.y1c_c00059{bottom:61.470000px;}
.y1b_c00059{bottom:85.320000px;}
.y1a_c00059{bottom:114.720000px;}
.y19_c00059{bottom:139.320000px;}
.y18_c00059{bottom:163.920000px;}
.y17_c00059{bottom:188.670000px;}
.y16_c00059{bottom:216.270000px;}
.y15_c00059{bottom:238.620000px;}
.y14_c00059{bottom:263.970000px;}
.y13_c00059{bottom:288.270000px;}
.y12_c00059{bottom:310.470000px;}
.y11_c00059{bottom:335.520000px;}
.y10_c00059{bottom:363.420000px;}
.yf_c00059{bottom:387.120000px;}
.ye_c00059{bottom:411.420000px;}
.yd_c00059{bottom:434.970000px;}
.yc_c00059{bottom:458.970000px;}
.yb_c00059{bottom:471.870000px;}
.ya_c00059{bottom:509.220000px;}
.y9_c00059{bottom:533.520000px;}
.y8_c00059{bottom:558.270000px;}
.y7_c00059{bottom:582.570000px;}
.y6_c00059{bottom:607.170000px;}
.y5_c00059{bottom:631.470000px;}
.y4_c00059{bottom:655.770000px;}
.y3_c00059{bottom:680.370000px;}
.y2_c00059{bottom:704.970000px;}
.y1_c00059{bottom:730.920000px;}
.h7_c00059{height:13.200073px;}
.h8_c00059{height:43.804688px;}
.h4_c00059{height:77.247070px;}
.h2_c00059{height:82.441406px;}
.h5_c00059{height:83.563477px;}
.h6_c00059{height:87.361816px;}
.h3_c00059{height:91.160156px;}
.h0_c00059{height:789.450000px;}
.h1_c00059{height:789.750000px;}
.w2_c00059{width:104.875500px;}
.w0_c00059{width:546.450000px;}
.w1_c00059{width:546.750000px;}
.x0_c00059{left:0.000000px;}
.x9_c00059{left:55.350000px;}
.x4_c00059{left:58.350000px;}
.x5_c00059{left:60.750000px;}
.xa_c00059{left:63.150000px;}
.x3_c00059{left:133.950000px;}
.x2_c00059{left:135.300000px;}
.x6_c00059{left:137.100000px;}
.x8_c00059{left:138.450000px;}
.xc_c00059{left:225.039230px;}
.x7_c00059{left:234.300000px;}
.x1_c00059{left:251.700000px;}
.xb_c00059{left:500.550000px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls5_c00059{letter-spacing:-8.000000pt;}
.ls3_c00059{letter-spacing:0.000000pt;}
.ls0_c00059{letter-spacing:2.666667pt;}
.ls2_c00059{letter-spacing:5.333333pt;}
.ls4_c00059{letter-spacing:8.000000pt;}
.ls1_c00059{letter-spacing:9.546667pt;}
.ws1_c00059{word-spacing:-22.138667pt;}
.ws4_c00059{word-spacing:-18.090667pt;}
.ws2_c00059{word-spacing:-14.781333pt;}
.ws0_c00059{word-spacing:-14.138667pt;}
.ws3_c00059{word-spacing:-6.781333pt;}
.ws5_c00059{word-spacing:0.000000pt;}
._13_c00059{margin-left:-32.458667pt;}
._2_c00059{margin-left:-13.664000pt;}
._a_c00059{margin-left:-10.410667pt;}
._b_c00059{margin-left:-8.725333pt;}
._9_c00059{margin-left:-6.677333pt;}
._6_c00059{margin-left:-4.949333pt;}
._5_c00059{margin-left:-3.477333pt;}
._3_c00059{margin-left:-2.389333pt;}
._4_c00059{margin-left:-1.130667pt;}
._1_c00059{width:1.642667pt;}
._0_c00059{width:3.434667pt;}
._7_c00059{width:4.757333pt;}
._8_c00059{width:5.674667pt;}
._f_c00059{width:7.488000pt;}
._d_c00059{width:8.426667pt;}
._c_c00059{width:9.557333pt;}
._11_c00059{width:10.880000pt;}
._e_c00059{width:12.480000pt;}
._12_c00059{width:14.170667pt;}
._16_c00059{width:21.488000pt;}
._17_c00059{width:30.248000pt;}
._10_c00059{width:104.309333pt;}
._15_c00059{width:212.560000pt;}
._14_c00059{width:276.010667pt;}
._18_c00059{width:414.672000pt;}
.fs4_c00059{font-size:42.666667pt;}
.fs2_c00059{font-size:58.666667pt;}
.fs3_c00059{font-size:61.333333pt;}
.fs1_c00059{font-size:64.000000pt;}
.fs0_c00059{font-size:74.666667pt;}
.y0_c00059{bottom:0.000000pt;}
.y1f_c00059{bottom:2.760000pt;}
.y1e_c00059{bottom:6.425217pt;}
.y1d_c00059{bottom:34.106667pt;}
.y1c_c00059{bottom:54.640000pt;}
.y1b_c00059{bottom:75.840000pt;}
.y1a_c00059{bottom:101.973333pt;}
.y19_c00059{bottom:123.840000pt;}
.y18_c00059{bottom:145.706667pt;}
.y17_c00059{bottom:167.706667pt;}
.y16_c00059{bottom:192.240000pt;}
.y15_c00059{bottom:212.106667pt;}
.y14_c00059{bottom:234.640000pt;}
.y13_c00059{bottom:256.240000pt;}
.y12_c00059{bottom:275.973333pt;}
.y11_c00059{bottom:298.240000pt;}
.y10_c00059{bottom:323.040000pt;}
.yf_c00059{bottom:344.106667pt;}
.ye_c00059{bottom:365.706667pt;}
.yd_c00059{bottom:386.640000pt;}
.yc_c00059{bottom:407.973333pt;}
.yb_c00059{bottom:419.440000pt;}
.ya_c00059{bottom:452.640000pt;}
.y9_c00059{bottom:474.240000pt;}
.y8_c00059{bottom:496.240000pt;}
.y7_c00059{bottom:517.840000pt;}
.y6_c00059{bottom:539.706667pt;}
.y5_c00059{bottom:561.306667pt;}
.y4_c00059{bottom:582.906667pt;}
.y3_c00059{bottom:604.773333pt;}
.y2_c00059{bottom:626.640000pt;}
.y1_c00059{bottom:649.706667pt;}
.h7_c00059{height:11.733399pt;}
.h8_c00059{height:38.937500pt;}
.h4_c00059{height:68.664062pt;}
.h2_c00059{height:73.281250pt;}
.h5_c00059{height:74.278646pt;}
.h6_c00059{height:77.654948pt;}
.h3_c00059{height:81.031250pt;}
.h0_c00059{height:701.733333pt;}
.h1_c00059{height:702.000000pt;}
.w2_c00059{width:93.222667pt;}
.w0_c00059{width:485.733333pt;}
.w1_c00059{width:486.000000pt;}
.x0_c00059{left:0.000000pt;}
.x9_c00059{left:49.200000pt;}
.x4_c00059{left:51.866667pt;}
.x5_c00059{left:54.000000pt;}
.xa_c00059{left:56.133333pt;}
.x3_c00059{left:119.066667pt;}
.x2_c00059{left:120.266667pt;}
.x6_c00059{left:121.866667pt;}
.x8_c00059{left:123.066667pt;}
.xc_c00059{left:200.034871pt;}
.x7_c00059{left:208.266667pt;}
.x1_c00059{left:223.733333pt;}
.xb_c00059{left:444.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d12a1624d6c79a85fc397460.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00060;src:url('chunks/assets/font_cf8de50812ba0dcece208281.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00060;src:url('chunks/assets/font_18d0430698884db91e681d4f.woff2')format("woff");}.ff3_c00060{font-family:ff3_c00060;line-height:1.568848;font-style:normal;font-weight:normal;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_1617b2bed59f762e13f53c54.woff2')format("woff");}.ff4_c00060{font-family:ff4_c00060;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00060;src:url('chunks/assets/font_94896ec366f804bd63dbdfb1.woff2')format("woff");}.ff5_c00060{font-family:ff5_c00060;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00060;src:url('chunks/assets/font_878aa04c3e801f08aa710f82.woff2')format("woff");}.ff6_c00060{font-family:ff6_c00060;line-height:1.480469;font-style:normal;font-weight: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_c00060;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00060{font-family:ff7_c00060;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.ls2_c00060{letter-spacing:0.000000px;}
.ls1_c00060{letter-spacing:3.000000px;}
.ls0_c00060{letter-spacing:36.771000px;}
.ls3_c00060{letter-spacing:93.000000px;}
.sc__c00060{text-shadow:none;}
.sc0_c00060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00060{-webkit-text-stroke:0px transparent;}
.sc0_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00060{word-spacing:-110.352000px;}
.ws5_c00060{word-spacing:-33.192000px;}
.ws0_c00060{word-spacing:-29.880000px;}
.ws2_c00060{word-spacing:-28.080000px;}
.ws3_c00060{word-spacing:-22.464000px;}
.ws1_c00060{word-spacing:-20.352000px;}
.ws6_c00060{word-spacing:0.000000px;}
._5_c00060{margin-left:-19.656000px;}
._1e_c00060{margin-left:-17.520000px;}
._15_c00060{margin-left:-13.842000px;}
._14_c00060{margin-left:-12.639600px;}
._f_c00060{margin-left:-10.800000px;}
._10_c00060{margin-left:-8.817000px;}
._2_c00060{margin-left:-7.812000px;}
._8_c00060{margin-left:-6.063000px;}
._d_c00060{margin-left:-4.752000px;}
._a_c00060{margin-left:-2.808000px;}
._b_c00060{margin-left:-1.557000px;}
._4_c00060{width:1.512000px;}
._3_c00060{width:3.024000px;}
._6_c00060{width:4.452000px;}
._12_c00060{width:5.544000px;}
._1_c00060{width:7.056000px;}
._13_c00060{width:9.159000px;}
._c_c00060{width:10.440000px;}
._0_c00060{width:11.676000px;}
._18_c00060{width:12.741000px;}
._e_c00060{width:14.472000px;}
._11_c00060{width:16.128000px;}
._16_c00060{width:19.221000px;}
._19_c00060{width:22.455000px;}
._9_c00060{width:28.068000px;}
._1a_c00060{width:29.220000px;}
._1b_c00060{width:30.825000px;}
._1c_c00060{width:32.397000px;}
._1d_c00060{width:39.603000px;}
._1f_c00060{width:193.248000px;}
._17_c00060{width:278.289000px;}
._7_c00060{width:329.949000px;}
.fc2_c00060{color:transparent;}
.fc1_c00060{color:rgb(128,128,128);}
.fc0_c00060{color:rgb(0,0,0);}
.fs6_c00060{font-size:48.000000px;}
.fs5_c00060{font-size:57.600000px;}
.fs3_c00060{font-size:60.000000px;}
.fs4_c00060{font-size:69.000000px;}
.fs2_c00060{font-size:72.000000px;}
.fs1_c00060{font-size:81.000000px;}
.fs0_c00060{font-size:84.000000px;}
.y0_c00060{bottom:0.000000px;}
.y1f_c00060{bottom:3.105000px;}
.y1e_c00060{bottom:7.228363px;}
.y1d_c00060{bottom:42.600000px;}
.y1c_c00060{bottom:68.850000px;}
.y1b_c00060{bottom:93.900000px;}
.y1a_c00060{bottom:119.100000px;}
.y19_c00060{bottom:144.450000px;}
.y18_c00060{bottom:169.800000px;}
.y17_c00060{bottom:193.800000px;}
.y16_c00060{bottom:219.150000px;}
.y15_c00060{bottom:243.450000px;}
.y14_c00060{bottom:268.650000px;}
.y13_c00060{bottom:293.700000px;}
.y12_c00060{bottom:315.600000px;}
.y11_c00060{bottom:339.600000px;}
.y10_c00060{bottom:364.800000px;}
.yf_c00060{bottom:388.800000px;}
.ye_c00060{bottom:414.000000px;}
.yd_c00060{bottom:438.750000px;}
.yc_c00060{bottom:463.500000px;}
.yb_c00060{bottom:488.400000px;}
.ya_c00060{bottom:513.000000px;}
.y9_c00060{bottom:537.000000px;}
.y8_c00060{bottom:562.050000px;}
.y7_c00060{bottom:586.500000px;}
.y6_c00060{bottom:610.200000px;}
.y5_c00060{bottom:636.450000px;}
.y4_c00060{bottom:659.850000px;}
.y3_c00060{bottom:684.900000px;}
.y2_c00060{bottom:709.500000px;}
.y1_c00060{bottom:734.100000px;}
.h5_c00060{height:13.200074px;}
.h6_c00060{height:43.804688px;}
.h2_c00060{height:82.400391px;}
.h3_c00060{height:91.160156px;}
.h4_c00060{height:91.760156px;}
.h1_c00060{height:788.250000px;}
.h0_c00060{height:788.400000px;}
.w2_c00060{width:104.875500px;}
.w0_c00060{width:550.275000px;}
.w1_c00060{width:550.500000px;}
.x0_c00060{left:0.000000px;}
.x3_c00060{left:41.850000px;}
.x2_c00060{left:42.900000px;}
.x4_c00060{left:44.250000px;}
.x5_c00060{left:45.450000px;}
.x1_c00060{left:142.800000px;}
.x7_c00060{left:226.951767px;}
.x6_c00060{left:291.900000px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls2_c00060{letter-spacing:0.000000pt;}
.ls1_c00060{letter-spacing:2.666667pt;}
.ls0_c00060{letter-spacing:32.685333pt;}
.ls3_c00060{letter-spacing:82.666667pt;}
.ws4_c00060{word-spacing:-98.090667pt;}
.ws5_c00060{word-spacing:-29.504000pt;}
.ws0_c00060{word-spacing:-26.560000pt;}
.ws2_c00060{word-spacing:-24.960000pt;}
.ws3_c00060{word-spacing:-19.968000pt;}
.ws1_c00060{word-spacing:-18.090667pt;}
.ws6_c00060{word-spacing:0.000000pt;}
._5_c00060{margin-left:-17.472000pt;}
._1e_c00060{margin-left:-15.573333pt;}
._15_c00060{margin-left:-12.304000pt;}
._14_c00060{margin-left:-11.235200pt;}
._f_c00060{margin-left:-9.600000pt;}
._10_c00060{margin-left:-7.837333pt;}
._2_c00060{margin-left:-6.944000pt;}
._8_c00060{margin-left:-5.389333pt;}
._d_c00060{margin-left:-4.224000pt;}
._a_c00060{margin-left:-2.496000pt;}
._b_c00060{margin-left:-1.384000pt;}
._4_c00060{width:1.344000pt;}
._3_c00060{width:2.688000pt;}
._6_c00060{width:3.957333pt;}
._12_c00060{width:4.928000pt;}
._1_c00060{width:6.272000pt;}
._13_c00060{width:8.141333pt;}
._c_c00060{width:9.280000pt;}
._0_c00060{width:10.378667pt;}
._18_c00060{width:11.325333pt;}
._e_c00060{width:12.864000pt;}
._11_c00060{width:14.336000pt;}
._16_c00060{width:17.085333pt;}
._19_c00060{width:19.960000pt;}
._9_c00060{width:24.949333pt;}
._1a_c00060{width:25.973333pt;}
._1b_c00060{width:27.400000pt;}
._1c_c00060{width:28.797333pt;}
._1d_c00060{width:35.202667pt;}
._1f_c00060{width:171.776000pt;}
._17_c00060{width:247.368000pt;}
._7_c00060{width:293.288000pt;}
.fs6_c00060{font-size:42.666667pt;}
.fs5_c00060{font-size:51.200000pt;}
.fs3_c00060{font-size:53.333333pt;}
.fs4_c00060{font-size:61.333333pt;}
.fs2_c00060{font-size:64.000000pt;}
.fs1_c00060{font-size:72.000000pt;}
.fs0_c00060{font-size:74.666667pt;}
.y0_c00060{bottom:0.000000pt;}
.y1f_c00060{bottom:2.760000pt;}
.y1e_c00060{bottom:6.425212pt;}
.y1d_c00060{bottom:37.866667pt;}
.y1c_c00060{bottom:61.200000pt;}
.y1b_c00060{bottom:83.466667pt;}
.y1a_c00060{bottom:105.866667pt;}
.y19_c00060{bottom:128.400000pt;}
.y18_c00060{bottom:150.933333pt;}
.y17_c00060{bottom:172.266667pt;}
.y16_c00060{bottom:194.800000pt;}
.y15_c00060{bottom:216.400000pt;}
.y14_c00060{bottom:238.800000pt;}
.y13_c00060{bottom:261.066667pt;}
.y12_c00060{bottom:280.533333pt;}
.y11_c00060{bottom:301.866667pt;}
.y10_c00060{bottom:324.266667pt;}
.yf_c00060{bottom:345.600000pt;}
.ye_c00060{bottom:368.000000pt;}
.yd_c00060{bottom:390.000000pt;}
.yc_c00060{bottom:412.000000pt;}
.yb_c00060{bottom:434.133333pt;}
.ya_c00060{bottom:456.000000pt;}
.y9_c00060{bottom:477.333333pt;}
.y8_c00060{bottom:499.600000pt;}
.y7_c00060{bottom:521.333333pt;}
.y6_c00060{bottom:542.400000pt;}
.y5_c00060{bottom:565.733333pt;}
.y4_c00060{bottom:586.533333pt;}
.y3_c00060{bottom:608.800000pt;}
.y2_c00060{bottom:630.666667pt;}
.y1_c00060{bottom:652.533333pt;}
.h5_c00060{height:11.733399pt;}
.h6_c00060{height:38.937500pt;}
.h2_c00060{height:73.244792pt;}
.h3_c00060{height:81.031250pt;}
.h4_c00060{height:81.564583pt;}
.h1_c00060{height:700.666667pt;}
.h0_c00060{height:700.800000pt;}
.w2_c00060{width:93.222667pt;}
.w0_c00060{width:489.133333pt;}
.w1_c00060{width:489.333333pt;}
.x0_c00060{left:0.000000pt;}
.x3_c00060{left:37.200000pt;}
.x2_c00060{left:38.133333pt;}
.x4_c00060{left:39.333333pt;}
.x5_c00060{left:40.400000pt;}
.x1_c00060{left:126.933333pt;}
.x7_c00060{left:201.734904pt;}
.x6_c00060{left:259.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3843cbf03f1bf4837ee9f05e.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.480469;font-style:normal;font-weight:normal;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_3e4869ab20a8259595eb8e23.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:1.568848;font-style:normal;font-weight:normal;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_4e7452ffdab690fca3944e40.woff2')format("woff");}.ff3_c00061{font-family:ff3_c00061;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00061;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00061{font-family:ff4_c00061;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls2_c00061{letter-spacing:0.000000px;}
.ls4_c00061{letter-spacing:3.000000px;}
.ls3_c00061{letter-spacing:6.000000px;}
.ls0_c00061{letter-spacing:27.444000px;}
.ls1_c00061{letter-spacing:30.120000px;}
.sc__c00061{text-shadow:none;}
.sc0_c00061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00061{-webkit-text-stroke:0px transparent;}
.sc0_c00061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00061{word-spacing:0.000000px;}
._16_c00061{margin-left:-36.852000px;}
._d_c00061{margin-left:-21.504000px;}
._1b_c00061{margin-left:-15.840000px;}
._11_c00061{margin-left:-14.550000px;}
._10_c00061{margin-left:-13.080000px;}
._e_c00061{margin-left:-11.562000px;}
._b_c00061{margin-left:-10.152000px;}
._f_c00061{margin-left:-8.640000px;}
._4_c00061{margin-left:-7.416000px;}
._5_c00061{margin-left:-5.616000px;}
._c_c00061{margin-left:-4.236000px;}
._14_c00061{margin-left:-3.228000px;}
._9_c00061{margin-left:-2.112000px;}
._15_c00061{margin-left:-1.008000px;}
._8_c00061{width:1.320000px;}
._6_c00061{width:2.376000px;}
._7_c00061{width:3.816000px;}
._a_c00061{width:5.106000px;}
._1_c00061{width:6.192000px;}
._19_c00061{width:7.860000px;}
._12_c00061{width:9.240000px;}
._1a_c00061{width:10.656000px;}
._3_c00061{width:11.736000px;}
._2_c00061{width:12.744000px;}
._17_c00061{width:13.932000px;}
._0_c00061{width:15.984000px;}
._18_c00061{width:22.662000px;}
._13_c00061{width:26.412000px;}
._1c_c00061{width:71.424000px;}
._1e_c00061{width:125.268000px;}
._1d_c00061{width:665.064000px;}
.fc2_c00061{color:transparent;}
.fc1_c00061{color:rgb(128,128,128);}
.fc0_c00061{color:rgb(0,0,0);}
.fs3_c00061{font-size:48.000000px;}
.fs2_c00061{font-size:51.000000px;}
.fs1_c00061{font-size:66.000000px;}
.fs0_c00061{font-size:72.000000px;}
.y0_c00061{bottom:0.000000px;}
.y1f_c00061{bottom:3.105000px;}
.y1e_c00061{bottom:7.228355px;}
.y1d_c00061{bottom:21.585000px;}
.y1c_c00061{bottom:46.485000px;}
.y1b_c00061{bottom:71.835000px;}
.y1a_c00061{bottom:96.885000px;}
.y19_c00061{bottom:122.085000px;}
.y18_c00061{bottom:147.135000px;}
.y17_c00061{bottom:172.035000px;}
.y16_c00061{bottom:197.085000px;}
.y15_c00061{bottom:222.435000px;}
.y14_c00061{bottom:247.035000px;}
.y13_c00061{bottom:271.035000px;}
.y12_c00061{bottom:294.885000px;}
.y11_c00061{bottom:319.635000px;}
.y10_c00061{bottom:342.885000px;}
.yf_c00061{bottom:369.135000px;}
.ye_c00061{bottom:393.885000px;}
.yd_c00061{bottom:418.185000px;}
.yc_c00061{bottom:442.035000px;}
.yb_c00061{bottom:467.085000px;}
.ya_c00061{bottom:491.985000px;}
.y9_c00061{bottom:515.685000px;}
.y8_c00061{bottom:540.885000px;}
.y7_c00061{bottom:565.185000px;}
.y6_c00061{bottom:589.485000px;}
.y5_c00061{bottom:614.835000px;}
.y4_c00061{bottom:638.235000px;}
.y3_c00061{bottom:661.185000px;}
.y2_c00061{bottom:688.485000px;}
.y1_c00061{bottom:714.435000px;}
.h4_c00061{height:13.200074px;}
.h5_c00061{height:43.804688px;}
.h3_c00061{height:83.563477px;}
.h2_c00061{height:91.160156px;}
.h0_c00061{height:784.875000px;}
.h1_c00061{height:785.250000px;}
.w2_c00061{width:104.875500px;}
.w1_c00061{width:547.500000px;}
.w0_c00061{width:547.575000px;}
.x0_c00061{left:0.000000px;}
.x3_c00061{left:135.900000px;}
.x4_c00061{left:137.250000px;}
.x5_c00061{left:138.750000px;}
.x6_c00061{left:139.950000px;}
.x7_c00061{left:142.350000px;}
.x8_c00061{left:144.450000px;}
.x2_c00061{left:159.300000px;}
.xa_c00061{left:225.601730px;}
.x9_c00061{left:233.250000px;}
.x1_c00061{left:244.950000px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls2_c00061{letter-spacing:0.000000pt;}
.ls4_c00061{letter-spacing:2.666667pt;}
.ls3_c00061{letter-spacing:5.333333pt;}
.ls0_c00061{letter-spacing:24.394667pt;}
.ls1_c00061{letter-spacing:26.773333pt;}
.ws0_c00061{word-spacing:0.000000pt;}
._16_c00061{margin-left:-32.757333pt;}
._d_c00061{margin-left:-19.114667pt;}
._1b_c00061{margin-left:-14.080000pt;}
._11_c00061{margin-left:-12.933333pt;}
._10_c00061{margin-left:-11.626667pt;}
._e_c00061{margin-left:-10.277333pt;}
._b_c00061{margin-left:-9.024000pt;}
._f_c00061{margin-left:-7.680000pt;}
._4_c00061{margin-left:-6.592000pt;}
._5_c00061{margin-left:-4.992000pt;}
._c_c00061{margin-left:-3.765333pt;}
._14_c00061{margin-left:-2.869333pt;}
._9_c00061{margin-left:-1.877333pt;}
._15_c00061{margin-left:-0.896000pt;}
._8_c00061{width:1.173333pt;}
._6_c00061{width:2.112000pt;}
._7_c00061{width:3.392000pt;}
._a_c00061{width:4.538667pt;}
._1_c00061{width:5.504000pt;}
._19_c00061{width:6.986667pt;}
._12_c00061{width:8.213333pt;}
._1a_c00061{width:9.472000pt;}
._3_c00061{width:10.432000pt;}
._2_c00061{width:11.328000pt;}
._17_c00061{width:12.384000pt;}
._0_c00061{width:14.208000pt;}
._18_c00061{width:20.144000pt;}
._13_c00061{width:23.477333pt;}
._1c_c00061{width:63.488000pt;}
._1e_c00061{width:111.349333pt;}
._1d_c00061{width:591.168000pt;}
.fs3_c00061{font-size:42.666667pt;}
.fs2_c00061{font-size:45.333333pt;}
.fs1_c00061{font-size:58.666667pt;}
.fs0_c00061{font-size:64.000000pt;}
.y0_c00061{bottom:0.000000pt;}
.y1f_c00061{bottom:2.760000pt;}
.y1e_c00061{bottom:6.425204pt;}
.y1d_c00061{bottom:19.186667pt;}
.y1c_c00061{bottom:41.320000pt;}
.y1b_c00061{bottom:63.853333pt;}
.y1a_c00061{bottom:86.120000pt;}
.y19_c00061{bottom:108.520000pt;}
.y18_c00061{bottom:130.786667pt;}
.y17_c00061{bottom:152.920000pt;}
.y16_c00061{bottom:175.186667pt;}
.y15_c00061{bottom:197.720000pt;}
.y14_c00061{bottom:219.586667pt;}
.y13_c00061{bottom:240.920000pt;}
.y12_c00061{bottom:262.120000pt;}
.y11_c00061{bottom:284.120000pt;}
.y10_c00061{bottom:304.786667pt;}
.yf_c00061{bottom:328.120000pt;}
.ye_c00061{bottom:350.120000pt;}
.yd_c00061{bottom:371.720000pt;}
.yc_c00061{bottom:392.920000pt;}
.yb_c00061{bottom:415.186667pt;}
.ya_c00061{bottom:437.320000pt;}
.y9_c00061{bottom:458.386667pt;}
.y8_c00061{bottom:480.786667pt;}
.y7_c00061{bottom:502.386667pt;}
.y6_c00061{bottom:523.986667pt;}
.y5_c00061{bottom:546.520000pt;}
.y4_c00061{bottom:567.320000pt;}
.y3_c00061{bottom:587.720000pt;}
.y2_c00061{bottom:611.986667pt;}
.y1_c00061{bottom:635.053333pt;}
.h4_c00061{height:11.733399pt;}
.h5_c00061{height:38.937500pt;}
.h3_c00061{height:74.278646pt;}
.h2_c00061{height:81.031250pt;}
.h0_c00061{height:697.666667pt;}
.h1_c00061{height:698.000000pt;}
.w2_c00061{width:93.222667pt;}
.w1_c00061{width:486.666667pt;}
.w0_c00061{width:486.733333pt;}
.x0_c00061{left:0.000000pt;}
.x3_c00061{left:120.800000pt;}
.x4_c00061{left:122.000000pt;}
.x5_c00061{left:123.333333pt;}
.x6_c00061{left:124.400000pt;}
.x7_c00061{left:126.533333pt;}
.x8_c00061{left:128.400000pt;}
.x2_c00061{left:141.600000pt;}
.xa_c00061{left:200.534871pt;}
.x9_c00061{left:207.333333pt;}
.x1_c00061{left:217.733333pt;}
}





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

.ir_c00062:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00062{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00062;src:url('chunks/assets/font_e11b2d2ec39f07ac2fe6f77d.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.480469;font-style:normal;font-weight:normal;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_76a95e0953f8cab3839f9f38.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.ls2_c00062{letter-spacing:0.000000px;}
.ls1_c00062{letter-spacing:3.000000px;}
.ls0_c00062{letter-spacing:5.112000px;}
.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;}
}
.ws2_c00062{word-spacing:-20.967000px;}
.ws0_c00062{word-spacing:-20.352000px;}
.ws1_c00062{word-spacing:-16.629000px;}
.ws3_c00062{word-spacing:0.000000px;}
._c_c00062{margin-left:-37.296000px;}
._19_c00062{margin-left:-27.435000px;}
._1c_c00062{margin-left:-24.696000px;}
._15_c00062{margin-left:-15.336000px;}
._18_c00062{margin-left:-13.440000px;}
._11_c00062{margin-left:-11.880000px;}
._17_c00062{margin-left:-10.584000px;}
._14_c00062{margin-left:-9.576000px;}
._f_c00062{margin-left:-8.424000px;}
._9_c00062{margin-left:-6.912000px;}
._e_c00062{margin-left:-5.688000px;}
._8_c00062{margin-left:-4.608000px;}
._7_c00062{margin-left:-3.528000px;}
._6_c00062{margin-left:-1.584000px;}
._a_c00062{width:1.008000px;}
._5_c00062{width:2.088000px;}
._13_c00062{width:3.168000px;}
._3_c00062{width:4.248000px;}
._10_c00062{width:5.976000px;}
._1_c00062{width:7.776000px;}
._0_c00062{width:9.144000px;}
._b_c00062{width:11.088000px;}
._2_c00062{width:13.536000px;}
._16_c00062{width:14.904000px;}
._d_c00062{width:16.272000px;}
._12_c00062{width:23.760000px;}
._1f_c00062{width:44.736000px;}
._1e_c00062{width:153.576000px;}
._1b_c00062{width:195.936000px;}
._20_c00062{width:202.656000px;}
._1a_c00062{width:282.168000px;}
._4_c00062{width:332.784000px;}
._1d_c00062{width:822.384000px;}
.fc2_c00062{color:transparent;}
.fc1_c00062{color:rgb(128,128,128);}
.fc0_c00062{color:rgb(0,0,0);}
.fs3_c00062{font-size:48.000000px;}
.fs1_c00062{font-size:69.000000px;}
.fs0_c00062{font-size:72.000000px;}
.fs2_c00062{font-size:87.000000px;}
.y0_c00062{bottom:0.000000px;}
.y1f_c00062{bottom:3.105000px;}
.y1e_c00062{bottom:7.228369px;}
.y1d_c00062{bottom:46.470000px;}
.y1c_c00062{bottom:71.820000px;}
.y1b_c00062{bottom:96.870000px;}
.y1a_c00062{bottom:122.220000px;}
.y19_c00062{bottom:145.470000px;}
.y18_c00062{bottom:172.020000px;}
.y17_c00062{bottom:196.470000px;}
.y16_c00062{bottom:221.670000px;}
.y15_c00062{bottom:245.970000px;}
.y14_c00062{bottom:269.970000px;}
.y13_c00062{bottom:292.620000px;}
.y12_c00062{bottom:316.170000px;}
.y11_c00062{bottom:340.770000px;}
.y10_c00062{bottom:365.070000px;}
.yf_c00062{bottom:389.820000px;}
.ye_c00062{bottom:414.120000px;}
.yd_c00062{bottom:438.720000px;}
.yc_c00062{bottom:463.620000px;}
.yb_c00062{bottom:487.620000px;}
.ya_c00062{bottom:512.970000px;}
.y9_c00062{bottom:536.670000px;}
.y8_c00062{bottom:560.820000px;}
.y7_c00062{bottom:584.820000px;}
.y6_c00062{bottom:609.420000px;}
.y5_c00062{bottom:633.420000px;}
.y4_c00062{bottom:657.720000px;}
.y3_c00062{bottom:683.070000px;}
.y2_c00062{bottom:707.070000px;}
.y1_c00062{bottom:732.420000px;}
.h5_c00062{height:13.200073px;}
.h6_c00062{height:43.804688px;}
.h2_c00062{height:84.269531px;}
.h3_c00062{height:91.160156px;}
.h4_c00062{height:110.151855px;}
.h1_c00062{height:783.750000px;}
.h0_c00062{height:784.050000px;}
.w2_c00062{width:104.875500px;}
.w0_c00062{width:545.100000px;}
.w1_c00062{width:545.250000px;}
.x0_c00062{left:0.000000px;}
.xb_c00062{left:1.050000px;}
.xc_c00062{left:3.000000px;}
.x6_c00062{left:27.000000px;}
.x4_c00062{left:28.050000px;}
.x3_c00062{left:30.000000px;}
.xa_c00062{left:35.400000px;}
.x8_c00062{left:36.450000px;}
.x9_c00062{left:37.500000px;}
.x5_c00062{left:39.600000px;}
.x7_c00062{left:40.800000px;}
.x2_c00062{left:42.300000px;}
.x1_c00062{left:139.200000px;}
.xd_c00062{left:224.364258px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls2_c00062{letter-spacing:0.000000pt;}
.ls1_c00062{letter-spacing:2.666667pt;}
.ls0_c00062{letter-spacing:4.544000pt;}
.ws2_c00062{word-spacing:-18.637333pt;}
.ws0_c00062{word-spacing:-18.090667pt;}
.ws1_c00062{word-spacing:-14.781333pt;}
.ws3_c00062{word-spacing:0.000000pt;}
._c_c00062{margin-left:-33.152000pt;}
._19_c00062{margin-left:-24.386667pt;}
._1c_c00062{margin-left:-21.952000pt;}
._15_c00062{margin-left:-13.632000pt;}
._18_c00062{margin-left:-11.946667pt;}
._11_c00062{margin-left:-10.560000pt;}
._17_c00062{margin-left:-9.408000pt;}
._14_c00062{margin-left:-8.512000pt;}
._f_c00062{margin-left:-7.488000pt;}
._9_c00062{margin-left:-6.144000pt;}
._e_c00062{margin-left:-5.056000pt;}
._8_c00062{margin-left:-4.096000pt;}
._7_c00062{margin-left:-3.136000pt;}
._6_c00062{margin-left:-1.408000pt;}
._a_c00062{width:0.896000pt;}
._5_c00062{width:1.856000pt;}
._13_c00062{width:2.816000pt;}
._3_c00062{width:3.776000pt;}
._10_c00062{width:5.312000pt;}
._1_c00062{width:6.912000pt;}
._0_c00062{width:8.128000pt;}
._b_c00062{width:9.856000pt;}
._2_c00062{width:12.032000pt;}
._16_c00062{width:13.248000pt;}
._d_c00062{width:14.464000pt;}
._12_c00062{width:21.120000pt;}
._1f_c00062{width:39.765333pt;}
._1e_c00062{width:136.512000pt;}
._1b_c00062{width:174.165333pt;}
._20_c00062{width:180.138667pt;}
._1a_c00062{width:250.816000pt;}
._4_c00062{width:295.808000pt;}
._1d_c00062{width:731.008000pt;}
.fs3_c00062{font-size:42.666667pt;}
.fs1_c00062{font-size:61.333333pt;}
.fs0_c00062{font-size:64.000000pt;}
.fs2_c00062{font-size:77.333333pt;}
.y0_c00062{bottom:0.000000pt;}
.y1f_c00062{bottom:2.760000pt;}
.y1e_c00062{bottom:6.425217pt;}
.y1d_c00062{bottom:41.306667pt;}
.y1c_c00062{bottom:63.840000pt;}
.y1b_c00062{bottom:86.106667pt;}
.y1a_c00062{bottom:108.640000pt;}
.y19_c00062{bottom:129.306667pt;}
.y18_c00062{bottom:152.906667pt;}
.y17_c00062{bottom:174.640000pt;}
.y16_c00062{bottom:197.040000pt;}
.y15_c00062{bottom:218.640000pt;}
.y14_c00062{bottom:239.973333pt;}
.y13_c00062{bottom:260.106667pt;}
.y12_c00062{bottom:281.040000pt;}
.y11_c00062{bottom:302.906667pt;}
.y10_c00062{bottom:324.506667pt;}
.yf_c00062{bottom:346.506667pt;}
.ye_c00062{bottom:368.106667pt;}
.yd_c00062{bottom:389.973333pt;}
.yc_c00062{bottom:412.106667pt;}
.yb_c00062{bottom:433.440000pt;}
.ya_c00062{bottom:455.973333pt;}
.y9_c00062{bottom:477.040000pt;}
.y8_c00062{bottom:498.506667pt;}
.y7_c00062{bottom:519.840000pt;}
.y6_c00062{bottom:541.706667pt;}
.y5_c00062{bottom:563.040000pt;}
.y4_c00062{bottom:584.640000pt;}
.y3_c00062{bottom:607.173333pt;}
.y2_c00062{bottom:628.506667pt;}
.y1_c00062{bottom:651.040000pt;}
.h5_c00062{height:11.733399pt;}
.h6_c00062{height:38.937500pt;}
.h2_c00062{height:74.906250pt;}
.h3_c00062{height:81.031250pt;}
.h4_c00062{height:97.912760pt;}
.h1_c00062{height:696.666667pt;}
.h0_c00062{height:696.933333pt;}
.w2_c00062{width:93.222667pt;}
.w0_c00062{width:484.533333pt;}
.w1_c00062{width:484.666667pt;}
.x0_c00062{left:0.000000pt;}
.xb_c00062{left:0.933333pt;}
.xc_c00062{left:2.666667pt;}
.x6_c00062{left:24.000000pt;}
.x4_c00062{left:24.933333pt;}
.x3_c00062{left:26.666667pt;}
.xa_c00062{left:31.466667pt;}
.x8_c00062{left:32.400000pt;}
.x9_c00062{left:33.333333pt;}
.x5_c00062{left:35.200000pt;}
.x7_c00062{left:36.266667pt;}
.x2_c00062{left:37.600000pt;}
.x1_c00062{left:123.733333pt;}
.xd_c00062{left:199.434896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ab06e18c1d2b24daa58b111.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00063;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00063;src:url('chunks/assets/font_b2afdd390bd330be34616f0d.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00063{font-family:ff4_c00063;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00063{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00063{vertical-align:0.000000px;}
.ls2_c00063{letter-spacing:0.000000px;}
.ls0_c00063{letter-spacing:3.000000px;}
.ls1_c00063{letter-spacing:4.215000px;}
.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:-20.352000px;}
.ws0_c00063{word-spacing:-16.629000px;}
.ws2_c00063{word-spacing:0.000000px;}
._4_c00063{margin-left:-15.624000px;}
._2_c00063{margin-left:-12.936000px;}
._11_c00063{margin-left:-10.983000px;}
._c_c00063{margin-left:-9.000000px;}
._e_c00063{margin-left:-6.984000px;}
._f_c00063{margin-left:-5.544000px;}
._8_c00063{margin-left:-3.879000px;}
._b_c00063{margin-left:-2.664000px;}
._9_c00063{margin-left:-1.584000px;}
._1_c00063{width:1.848000px;}
._13_c00063{width:2.856000px;}
._0_c00063{width:3.864000px;}
._6_c00063{width:4.899000px;}
._5_c00063{width:6.555000px;}
._7_c00063{width:8.487000px;}
._16_c00063{width:9.660000px;}
._d_c00063{width:11.472000px;}
._12_c00063{width:13.260000px;}
._10_c00063{width:14.385000px;}
._a_c00063{width:15.663000px;}
._15_c00063{width:18.807000px;}
._3_c00063{width:22.260000px;}
._18_c00063{width:23.643000px;}
._17_c00063{width:26.517000px;}
._14_c00063{width:31.230000px;}
.fc2_c00063{color:transparent;}
.fc1_c00063{color:rgb(128,128,128);}
.fc0_c00063{color:rgb(0,0,0);}
.fs3_c00063{font-size:48.000000px;}
.fs1_c00063{font-size:69.000000px;}
.fs2_c00063{font-size:72.000000px;}
.fs0_c00063{font-size:84.000000px;}
.y0_c00063{bottom:0.000000px;}
.y1e_c00063{bottom:3.105000px;}
.y1d_c00063{bottom:7.228357px;}
.y1c_c00063{bottom:71.880000px;}
.y1b_c00063{bottom:96.480000px;}
.y1a_c00063{bottom:122.280000px;}
.y19_c00063{bottom:146.430000px;}
.y18_c00063{bottom:171.780000px;}
.y17_c00063{bottom:200.130000px;}
.y16_c00063{bottom:223.530000px;}
.y15_c00063{bottom:246.330000px;}
.y14_c00063{bottom:270.780000px;}
.y13_c00063{bottom:297.630000px;}
.y12_c00063{bottom:319.230000px;}
.y11_c00063{bottom:344.580000px;}
.y10_c00063{bottom:368.580000px;}
.yf_c00063{bottom:393.480000px;}
.ye_c00063{bottom:417.930000px;}
.yd_c00063{bottom:442.230000px;}
.yc_c00063{bottom:467.730000px;}
.yb_c00063{bottom:491.130000px;}
.ya_c00063{bottom:516.030000px;}
.y9_c00063{bottom:540.330000px;}
.y8_c00063{bottom:565.080000px;}
.y7_c00063{bottom:589.980000px;}
.y6_c00063{bottom:613.680000px;}
.y5_c00063{bottom:638.280000px;}
.y4_c00063{bottom:662.880000px;}
.y3_c00063{bottom:687.180000px;}
.y2_c00063{bottom:711.180000px;}
.y1_c00063{bottom:737.130000px;}
.h5_c00063{height:13.200074px;}
.h6_c00063{height:43.804688px;}
.h2_c00063{height:82.441406px;}
.h4_c00063{height:87.361816px;}
.h3_c00063{height:91.160156px;}
.h0_c00063{height:795.450000px;}
.h1_c00063{height:795.750000px;}
.w2_c00063{width:104.875500px;}
.w1_c00063{width:521.250000px;}
.w0_c00063{width:521.400000px;}
.x0_c00063{left:0.000000px;}
.x3_c00063{left:108.750000px;}
.x2_c00063{left:109.800000px;}
.x4_c00063{left:111.300000px;}
.x5_c00063{left:113.400000px;}
.x6_c00063{left:114.450000px;}
.x7_c00063{left:115.650000px;}
.x8_c00063{left:212.514267px;}
.x1_c00063{left:223.800000px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls2_c00063{letter-spacing:0.000000pt;}
.ls0_c00063{letter-spacing:2.666667pt;}
.ls1_c00063{letter-spacing:3.746667pt;}
.ws1_c00063{word-spacing:-18.090667pt;}
.ws0_c00063{word-spacing:-14.781333pt;}
.ws2_c00063{word-spacing:0.000000pt;}
._4_c00063{margin-left:-13.888000pt;}
._2_c00063{margin-left:-11.498667pt;}
._11_c00063{margin-left:-9.762667pt;}
._c_c00063{margin-left:-8.000000pt;}
._e_c00063{margin-left:-6.208000pt;}
._f_c00063{margin-left:-4.928000pt;}
._8_c00063{margin-left:-3.448000pt;}
._b_c00063{margin-left:-2.368000pt;}
._9_c00063{margin-left:-1.408000pt;}
._1_c00063{width:1.642667pt;}
._13_c00063{width:2.538667pt;}
._0_c00063{width:3.434667pt;}
._6_c00063{width:4.354667pt;}
._5_c00063{width:5.826667pt;}
._7_c00063{width:7.544000pt;}
._16_c00063{width:8.586667pt;}
._d_c00063{width:10.197333pt;}
._12_c00063{width:11.786667pt;}
._10_c00063{width:12.786667pt;}
._a_c00063{width:13.922667pt;}
._15_c00063{width:16.717333pt;}
._3_c00063{width:19.786667pt;}
._18_c00063{width:21.016000pt;}
._17_c00063{width:23.570667pt;}
._14_c00063{width:27.760000pt;}
.fs3_c00063{font-size:42.666667pt;}
.fs1_c00063{font-size:61.333333pt;}
.fs2_c00063{font-size:64.000000pt;}
.fs0_c00063{font-size:74.666667pt;}
.y0_c00063{bottom:0.000000pt;}
.y1e_c00063{bottom:2.760000pt;}
.y1d_c00063{bottom:6.425206pt;}
.y1c_c00063{bottom:63.893333pt;}
.y1b_c00063{bottom:85.760000pt;}
.y1a_c00063{bottom:108.693333pt;}
.y19_c00063{bottom:130.160000pt;}
.y18_c00063{bottom:152.693333pt;}
.y17_c00063{bottom:177.893333pt;}
.y16_c00063{bottom:198.693333pt;}
.y15_c00063{bottom:218.960000pt;}
.y14_c00063{bottom:240.693333pt;}
.y13_c00063{bottom:264.560000pt;}
.y12_c00063{bottom:283.760000pt;}
.y11_c00063{bottom:306.293333pt;}
.y10_c00063{bottom:327.626667pt;}
.yf_c00063{bottom:349.760000pt;}
.ye_c00063{bottom:371.493333pt;}
.yd_c00063{bottom:393.093333pt;}
.yc_c00063{bottom:415.760000pt;}
.yb_c00063{bottom:436.560000pt;}
.ya_c00063{bottom:458.693333pt;}
.y9_c00063{bottom:480.293333pt;}
.y8_c00063{bottom:502.293333pt;}
.y7_c00063{bottom:524.426667pt;}
.y6_c00063{bottom:545.493333pt;}
.y5_c00063{bottom:567.360000pt;}
.y4_c00063{bottom:589.226667pt;}
.y3_c00063{bottom:610.826667pt;}
.y2_c00063{bottom:632.160000pt;}
.y1_c00063{bottom:655.226667pt;}
.h5_c00063{height:11.733399pt;}
.h6_c00063{height:38.937500pt;}
.h2_c00063{height:73.281250pt;}
.h4_c00063{height:77.654948pt;}
.h3_c00063{height:81.031250pt;}
.h0_c00063{height:707.066667pt;}
.h1_c00063{height:707.333333pt;}
.w2_c00063{width:93.222667pt;}
.w1_c00063{width:463.333333pt;}
.w0_c00063{width:463.466667pt;}
.x0_c00063{left:0.000000pt;}
.x3_c00063{left:96.666667pt;}
.x2_c00063{left:97.600000pt;}
.x4_c00063{left:98.933333pt;}
.x5_c00063{left:100.800000pt;}
.x6_c00063{left:101.733333pt;}
.x7_c00063{left:102.800000pt;}
.x8_c00063{left:188.901571pt;}
.x1_c00063{left:198.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_070058a026d5b8fa3a9a3c2c.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00064;src:url('chunks/assets/font_52239578b8248bb4580b3bba.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00064{font-family:ff3_c00064;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00064{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00064{vertical-align:0.000000px;}
.ls2_c00064{letter-spacing:0.000000px;}
.ls0_c00064{letter-spacing:3.000000px;}
.ls1_c00064{letter-spacing:4.815000px;}
.sc__c00064{text-shadow:none;}
.sc0_c00064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00064{-webkit-text-stroke:0px transparent;}
.sc0_c00064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00064{word-spacing:0.000000px;}
._10_c00064{margin-left:-11.376000px;}
._12_c00064{margin-left:-10.224000px;}
._13_c00064{margin-left:-8.640000px;}
._f_c00064{margin-left:-6.744000px;}
._11_c00064{margin-left:-5.400000px;}
._a_c00064{margin-left:-3.552000px;}
._7_c00064{margin-left:-2.520000px;}
._6_c00064{margin-left:-1.080000px;}
._b_c00064{width:1.272000px;}
._9_c00064{width:2.280000px;}
._2_c00064{width:3.360000px;}
._1_c00064{width:4.704000px;}
._3_c00064{width:5.712000px;}
._0_c00064{width:7.728000px;}
._c_c00064{width:9.240000px;}
._e_c00064{width:10.968000px;}
._8_c00064{width:13.008000px;}
._5_c00064{width:14.112000px;}
._d_c00064{width:16.416000px;}
._17_c00064{width:17.904000px;}
._18_c00064{width:22.656000px;}
._14_c00064{width:30.072000px;}
._15_c00064{width:32.424000px;}
._19_c00064{width:146.208000px;}
._16_c00064{width:239.328000px;}
._4_c00064{width:323.484000px;}
.fc2_c00064{color:transparent;}
.fc1_c00064{color:rgb(128,128,128);}
.fc0_c00064{color:rgb(0,0,0);}
.fs3_c00064{font-size:48.000000px;}
.fs2_c00064{font-size:69.000000px;}
.fs1_c00064{font-size:72.000000px;}
.fs0_c00064{font-size:84.000000px;}
.y0_c00064{bottom:0.000000px;}
.y1f_c00064{bottom:3.105000px;}
.y1e_c00064{bottom:7.228355px;}
.y1d_c00064{bottom:44.085000px;}
.y1c_c00064{bottom:71.235000px;}
.y1b_c00064{bottom:96.135000px;}
.y1a_c00064{bottom:121.485000px;}
.y19_c00064{bottom:145.335000px;}
.y18_c00064{bottom:170.985000px;}
.y17_c00064{bottom:195.435000px;}
.y16_c00064{bottom:219.735000px;}
.y15_c00064{bottom:244.635000px;}
.y14_c00064{bottom:269.535000px;}
.y13_c00064{bottom:291.885000px;}
.y12_c00064{bottom:315.585000px;}
.y11_c00064{bottom:339.735000px;}
.y10_c00064{bottom:364.035000px;}
.yf_c00064{bottom:389.085000px;}
.ye_c00064{bottom:413.385000px;}
.yd_c00064{bottom:437.535000px;}
.yc_c00064{bottom:462.285000px;}
.yb_c00064{bottom:487.035000px;}
.ya_c00064{bottom:511.185000px;}
.y9_c00064{bottom:535.485000px;}
.y8_c00064{bottom:560.235000px;}
.y7_c00064{bottom:584.535000px;}
.y6_c00064{bottom:609.135000px;}
.y5_c00064{bottom:633.135000px;}
.y4_c00064{bottom:657.735000px;}
.y3_c00064{bottom:682.035000px;}
.y2_c00064{bottom:706.035000px;}
.y1_c00064{bottom:730.935000px;}
.h4_c00064{height:13.200074px;}
.h5_c00064{height:43.804688px;}
.h2_c00064{height:82.400391px;}
.h3_c00064{height:91.160156px;}
.h0_c00064{height:782.175000px;}
.h1_c00064{height:782.250000px;}
.w2_c00064{width:104.875500px;}
.w1_c00064{width:558.000000px;}
.w0_c00064{width:558.075000px;}
.x0_c00064{left:0.000000px;}
.x3_c00064{left:43.950000px;}
.x4_c00064{left:45.300000px;}
.x2_c00064{left:46.950000px;}
.x5_c00064{left:48.000000px;}
.x6_c00064{left:50.250000px;}
.x8_c00064{left:51.750000px;}
.x7_c00064{left:52.950000px;}
.x9_c00064{left:54.000000px;}
.x1_c00064{left:151.200000px;}
.xb_c00064{left:230.851730px;}
.xa_c00064{left:315.300000px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls2_c00064{letter-spacing:0.000000pt;}
.ls0_c00064{letter-spacing:2.666667pt;}
.ls1_c00064{letter-spacing:4.280000pt;}
.ws0_c00064{word-spacing:0.000000pt;}
._10_c00064{margin-left:-10.112000pt;}
._12_c00064{margin-left:-9.088000pt;}
._13_c00064{margin-left:-7.680000pt;}
._f_c00064{margin-left:-5.994667pt;}
._11_c00064{margin-left:-4.800000pt;}
._a_c00064{margin-left:-3.157333pt;}
._7_c00064{margin-left:-2.240000pt;}
._6_c00064{margin-left:-0.960000pt;}
._b_c00064{width:1.130667pt;}
._9_c00064{width:2.026667pt;}
._2_c00064{width:2.986667pt;}
._1_c00064{width:4.181333pt;}
._3_c00064{width:5.077333pt;}
._0_c00064{width:6.869333pt;}
._c_c00064{width:8.213333pt;}
._e_c00064{width:9.749333pt;}
._8_c00064{width:11.562667pt;}
._5_c00064{width:12.544000pt;}
._d_c00064{width:14.592000pt;}
._17_c00064{width:15.914667pt;}
._18_c00064{width:20.138667pt;}
._14_c00064{width:26.730667pt;}
._15_c00064{width:28.821333pt;}
._19_c00064{width:129.962667pt;}
._16_c00064{width:212.736000pt;}
._4_c00064{width:287.541333pt;}
.fs3_c00064{font-size:42.666667pt;}
.fs2_c00064{font-size:61.333333pt;}
.fs1_c00064{font-size:64.000000pt;}
.fs0_c00064{font-size:74.666667pt;}
.y0_c00064{bottom:0.000000pt;}
.y1f_c00064{bottom:2.760000pt;}
.y1e_c00064{bottom:6.425204pt;}
.y1d_c00064{bottom:39.186667pt;}
.y1c_c00064{bottom:63.320000pt;}
.y1b_c00064{bottom:85.453333pt;}
.y1a_c00064{bottom:107.986667pt;}
.y19_c00064{bottom:129.186667pt;}
.y18_c00064{bottom:151.986667pt;}
.y17_c00064{bottom:173.720000pt;}
.y16_c00064{bottom:195.320000pt;}
.y15_c00064{bottom:217.453333pt;}
.y14_c00064{bottom:239.586667pt;}
.y13_c00064{bottom:259.453333pt;}
.y12_c00064{bottom:280.520000pt;}
.y11_c00064{bottom:301.986667pt;}
.y10_c00064{bottom:323.586667pt;}
.yf_c00064{bottom:345.853333pt;}
.ye_c00064{bottom:367.453333pt;}
.yd_c00064{bottom:388.920000pt;}
.yc_c00064{bottom:410.920000pt;}
.yb_c00064{bottom:432.920000pt;}
.ya_c00064{bottom:454.386667pt;}
.y9_c00064{bottom:475.986667pt;}
.y8_c00064{bottom:497.986667pt;}
.y7_c00064{bottom:519.586667pt;}
.y6_c00064{bottom:541.453333pt;}
.y5_c00064{bottom:562.786667pt;}
.y4_c00064{bottom:584.653333pt;}
.y3_c00064{bottom:606.253333pt;}
.y2_c00064{bottom:627.586667pt;}
.y1_c00064{bottom:649.720000pt;}
.h4_c00064{height:11.733399pt;}
.h5_c00064{height:38.937500pt;}
.h2_c00064{height:73.244792pt;}
.h3_c00064{height:81.031250pt;}
.h0_c00064{height:695.266667pt;}
.h1_c00064{height:695.333333pt;}
.w2_c00064{width:93.222667pt;}
.w1_c00064{width:496.000000pt;}
.w0_c00064{width:496.066667pt;}
.x0_c00064{left:0.000000pt;}
.x3_c00064{left:39.066667pt;}
.x4_c00064{left:40.266667pt;}
.x2_c00064{left:41.733333pt;}
.x5_c00064{left:42.666667pt;}
.x6_c00064{left:44.666667pt;}
.x8_c00064{left:46.000000pt;}
.x7_c00064{left:47.066667pt;}
.x9_c00064{left:48.000000pt;}
.x1_c00064{left:134.400000pt;}
.xb_c00064{left:205.201538pt;}
.xa_c00064{left:280.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b295a69e774925c47fa353e0.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00065;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00065;src:url('chunks/assets/font_af83b3fb188b7274f48af598.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:1.568848;font-style:normal;font-weight:normal;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_9c990e74b6a5d4684f3d4e15.woff2')format("woff");}.ff4_c00065{font-family:ff4_c00065;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00065{font-family:ff5_c00065;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00065{vertical-align:0.000000px;}
.ls3_c00065{letter-spacing:0.000000px;}
.ls0_c00065{letter-spacing:3.000000px;}
.ls1_c00065{letter-spacing:4.215000px;}
.ls4_c00065{letter-spacing:6.000000px;}
.ls2_c00065{letter-spacing:39.000000px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00065{word-spacing:-56.352000px;}
.ws1_c00065{word-spacing:-33.192000px;}
.ws0_c00065{word-spacing:-24.894000px;}
.ws2_c00065{word-spacing:-19.014000px;}
.ws4_c00065{word-spacing:-16.629000px;}
.ws5_c00065{word-spacing:0.000000px;}
._1e_c00065{margin-left:-31.272000px;}
._b_c00065{margin-left:-18.522000px;}
._1b_c00065{margin-left:-17.382000px;}
._7_c00065{margin-left:-15.552000px;}
._d_c00065{margin-left:-14.310000px;}
._17_c00065{margin-left:-11.916000px;}
._1c_c00065{margin-left:-10.404000px;}
._11_c00065{margin-left:-9.396000px;}
._2_c00065{margin-left:-7.980000px;}
._16_c00065{margin-left:-6.444000px;}
._12_c00065{margin-left:-4.968000px;}
._1_c00065{margin-left:-3.360000px;}
._0_c00065{margin-left:-2.268000px;}
._19_c00065{margin-left:-1.152000px;}
._4_c00065{width:1.596000px;}
._3_c00065{width:2.688000px;}
._5_c00065{width:4.200000px;}
._6_c00065{width:6.204000px;}
._8_c00065{width:7.908000px;}
._f_c00065{width:9.720000px;}
._9_c00065{width:11.376000px;}
._1f_c00065{width:12.900000px;}
._1a_c00065{width:14.568000px;}
._15_c00065{width:15.876000px;}
._1d_c00065{width:18.156000px;}
._14_c00065{width:31.386000px;}
._10_c00065{width:36.180000px;}
._c_c00065{width:85.698000px;}
._e_c00065{width:108.486000px;}
._18_c00065{width:138.528000px;}
._a_c00065{width:275.928000px;}
._13_c00065{width:283.662000px;}
.fc2_c00065{color:transparent;}
.fc1_c00065{color:rgb(128,128,128);}
.fc0_c00065{color:rgb(0,0,0);}
.fs4_c00065{font-size:48.000000px;}
.fs2_c00065{font-size:54.000000px;}
.fs3_c00065{font-size:69.000000px;}
.fs1_c00065{font-size:72.000000px;}
.fs0_c00065{font-size:84.000000px;}
.y0_c00065{bottom:0.000000px;}
.y20_c00065{bottom:3.105000px;}
.y1f_c00065{bottom:7.228369px;}
.y1e_c00065{bottom:30.720000px;}
.y1d_c00065{bottom:55.020000px;}
.y1c_c00065{bottom:79.620000px;}
.y1b_c00065{bottom:104.220000px;}
.y1a_c00065{bottom:129.870000px;}
.y19_c00065{bottom:153.570000px;}
.y18_c00065{bottom:178.170000px;}
.y17_c00065{bottom:202.770000px;}
.y16_c00065{bottom:228.120000px;}
.y15_c00065{bottom:253.470000px;}
.y14_c00065{bottom:277.470000px;}
.y13_c00065{bottom:301.620000px;}
.y12_c00065{bottom:326.370000px;}
.y11_c00065{bottom:349.920000px;}
.y10_c00065{bottom:374.220000px;}
.yf_c00065{bottom:399.570000px;}
.ye_c00065{bottom:423.270000px;}
.yd_c00065{bottom:448.170000px;}
.yc_c00065{bottom:471.870000px;}
.yb_c00065{bottom:496.170000px;}
.ya_c00065{bottom:521.070000px;}
.y9_c00065{bottom:545.070000px;}
.y8_c00065{bottom:569.970000px;}
.y7_c00065{bottom:594.270000px;}
.y6_c00065{bottom:618.270000px;}
.y5_c00065{bottom:641.970000px;}
.y4_c00065{bottom:653.670000px;}
.y3_c00065{bottom:666.870000px;}
.y2_c00065{bottom:691.770000px;}
.y1_c00065{bottom:717.570000px;}
.h5_c00065{height:13.200073px;}
.h6_c00065{height:43.804688px;}
.h3_c00065{height:68.370117px;}
.h1_c00065{height:82.441406px;}
.h4_c00065{height:87.361816px;}
.h2_c00065{height:91.160156px;}
.h0_c00065{height:780.000000px;}
.w2_c00065{width:104.875500px;}
.w1_c00065{width:514.500000px;}
.w0_c00065{width:514.650000px;}
.x0_c00065{left:0.000000px;}
.x4_c00065{left:31.950000px;}
.x3_c00065{left:95.100000px;}
.x7_c00065{left:105.000000px;}
.x5_c00065{left:106.350000px;}
.x2_c00065{left:109.050000px;}
.x6_c00065{left:111.450000px;}
.x8_c00065{left:112.650000px;}
.xa_c00065{left:209.139267px;}
.x1_c00065{left:218.100000px;}
.x9_c00065{left:477.300000px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls3_c00065{letter-spacing:0.000000pt;}
.ls0_c00065{letter-spacing:2.666667pt;}
.ls1_c00065{letter-spacing:3.746667pt;}
.ls4_c00065{letter-spacing:5.333333pt;}
.ls2_c00065{letter-spacing:34.666667pt;}
.ws3_c00065{word-spacing:-50.090667pt;}
.ws1_c00065{word-spacing:-29.504000pt;}
.ws0_c00065{word-spacing:-22.128000pt;}
.ws2_c00065{word-spacing:-16.901333pt;}
.ws4_c00065{word-spacing:-14.781333pt;}
.ws5_c00065{word-spacing:0.000000pt;}
._1e_c00065{margin-left:-27.797333pt;}
._b_c00065{margin-left:-16.464000pt;}
._1b_c00065{margin-left:-15.450667pt;}
._7_c00065{margin-left:-13.824000pt;}
._d_c00065{margin-left:-12.720000pt;}
._17_c00065{margin-left:-10.592000pt;}
._1c_c00065{margin-left:-9.248000pt;}
._11_c00065{margin-left:-8.352000pt;}
._2_c00065{margin-left:-7.093333pt;}
._16_c00065{margin-left:-5.728000pt;}
._12_c00065{margin-left:-4.416000pt;}
._1_c00065{margin-left:-2.986667pt;}
._0_c00065{margin-left:-2.016000pt;}
._19_c00065{margin-left:-1.024000pt;}
._4_c00065{width:1.418667pt;}
._3_c00065{width:2.389333pt;}
._5_c00065{width:3.733333pt;}
._6_c00065{width:5.514667pt;}
._8_c00065{width:7.029333pt;}
._f_c00065{width:8.640000pt;}
._9_c00065{width:10.112000pt;}
._1f_c00065{width:11.466667pt;}
._1a_c00065{width:12.949333pt;}
._15_c00065{width:14.112000pt;}
._1d_c00065{width:16.138667pt;}
._14_c00065{width:27.898667pt;}
._10_c00065{width:32.160000pt;}
._c_c00065{width:76.176000pt;}
._e_c00065{width:96.432000pt;}
._18_c00065{width:123.136000pt;}
._a_c00065{width:245.269333pt;}
._13_c00065{width:252.144000pt;}
.fs4_c00065{font-size:42.666667pt;}
.fs2_c00065{font-size:48.000000pt;}
.fs3_c00065{font-size:61.333333pt;}
.fs1_c00065{font-size:64.000000pt;}
.fs0_c00065{font-size:74.666667pt;}
.y0_c00065{bottom:0.000000pt;}
.y20_c00065{bottom:2.760000pt;}
.y1f_c00065{bottom:6.425217pt;}
.y1e_c00065{bottom:27.306667pt;}
.y1d_c00065{bottom:48.906667pt;}
.y1c_c00065{bottom:70.773333pt;}
.y1b_c00065{bottom:92.640000pt;}
.y1a_c00065{bottom:115.440000pt;}
.y19_c00065{bottom:136.506667pt;}
.y18_c00065{bottom:158.373333pt;}
.y17_c00065{bottom:180.240000pt;}
.y16_c00065{bottom:202.773333pt;}
.y15_c00065{bottom:225.306667pt;}
.y14_c00065{bottom:246.640000pt;}
.y13_c00065{bottom:268.106667pt;}
.y12_c00065{bottom:290.106667pt;}
.y11_c00065{bottom:311.040000pt;}
.y10_c00065{bottom:332.640000pt;}
.yf_c00065{bottom:355.173333pt;}
.ye_c00065{bottom:376.240000pt;}
.yd_c00065{bottom:398.373333pt;}
.yc_c00065{bottom:419.440000pt;}
.yb_c00065{bottom:441.040000pt;}
.ya_c00065{bottom:463.173333pt;}
.y9_c00065{bottom:484.506667pt;}
.y8_c00065{bottom:506.640000pt;}
.y7_c00065{bottom:528.240000pt;}
.y6_c00065{bottom:549.573333pt;}
.y5_c00065{bottom:570.640000pt;}
.y4_c00065{bottom:581.040000pt;}
.y3_c00065{bottom:592.773333pt;}
.y2_c00065{bottom:614.906667pt;}
.y1_c00065{bottom:637.840000pt;}
.h5_c00065{height:11.733399pt;}
.h6_c00065{height:38.937500pt;}
.h3_c00065{height:60.773438pt;}
.h1_c00065{height:73.281250pt;}
.h4_c00065{height:77.654948pt;}
.h2_c00065{height:81.031250pt;}
.h0_c00065{height:693.333333pt;}
.w2_c00065{width:93.222667pt;}
.w1_c00065{width:457.333333pt;}
.w0_c00065{width:457.466667pt;}
.x0_c00065{left:0.000000pt;}
.x4_c00065{left:28.400000pt;}
.x3_c00065{left:84.533333pt;}
.x7_c00065{left:93.333333pt;}
.x5_c00065{left:94.533333pt;}
.x2_c00065{left:96.933333pt;}
.x6_c00065{left:99.066667pt;}
.x8_c00065{left:100.133333pt;}
.xa_c00065{left:185.901571pt;}
.x1_c00065{left:193.866667pt;}
.x9_c00065{left:424.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4a83f2f2ea7e0c0c8a2c5286.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.592000;font-style:normal;font-weight:normal;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_a51480261c12432903034b30.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.ls1_c00066{letter-spacing:0.000000px;}
.ls0_c00066{letter-spacing:3.000000px;}
.sc__c00066{text-shadow:none;}
.sc0_c00066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00066{-webkit-text-stroke:0px transparent;}
.sc0_c00066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00066{word-spacing:-16.629000px;}
.ws1_c00066{word-spacing:0.000000px;}
._1b_c00066{margin-left:-13.032000px;}
._16_c00066{margin-left:-11.031000px;}
._14_c00066{margin-left:-9.432000px;}
._10_c00066{margin-left:-7.539000px;}
._9_c00066{margin-left:-6.279000px;}
._d_c00066{margin-left:-5.040000px;}
._c_c00066{margin-left:-3.312000px;}
._e_c00066{margin-left:-2.232000px;}
._b_c00066{margin-left:-1.152000px;}
._a_c00066{width:1.080000px;}
._f_c00066{width:2.319000px;}
._13_c00066{width:3.426000px;}
._8_c00066{width:5.313000px;}
._18_c00066{width:6.426000px;}
._2_c00066{width:7.680000px;}
._3_c00066{width:9.180000px;}
._12_c00066{width:10.656000px;}
._11_c00066{width:12.225000px;}
._4_c00066{width:13.680000px;}
._5_c00066{width:14.880000px;}
._1_c00066{width:16.140000px;}
._15_c00066{width:17.847000px;}
._0_c00066{width:21.120000px;}
._19_c00066{width:23.793000px;}
._1a_c00066{width:41.244000px;}
._7_c00066{width:43.194000px;}
._6_c00066{width:121.395000px;}
._1c_c00066{width:194.760000px;}
._17_c00066{width:322.890000px;}
.fc2_c00066{color:transparent;}
.fc1_c00066{color:rgb(128,128,128);}
.fc0_c00066{color:rgb(0,0,0);}
.fs3_c00066{font-size:48.000000px;}
.fs0_c00066{font-size:60.000000px;}
.fs1_c00066{font-size:69.000000px;}
.fs2_c00066{font-size:72.000000px;}
.y0_c00066{bottom:0.000000px;}
.y1f_c00066{bottom:3.105000px;}
.y1e_c00066{bottom:7.228363px;}
.y1d_c00066{bottom:40.200000px;}
.y1c_c00066{bottom:65.100000px;}
.y1b_c00066{bottom:90.150000px;}
.y1a_c00066{bottom:116.400000px;}
.y19_c00066{bottom:141.300000px;}
.y18_c00066{bottom:163.650000px;}
.y17_c00066{bottom:189.600000px;}
.y16_c00066{bottom:215.400000px;}
.y15_c00066{bottom:240.600000px;}
.y14_c00066{bottom:266.250000px;}
.y13_c00066{bottom:287.850000px;}
.y12_c00066{bottom:311.550000px;}
.y11_c00066{bottom:335.850000px;}
.y10_c00066{bottom:360.450000px;}
.yf_c00066{bottom:385.050000px;}
.ye_c00066{bottom:409.350000px;}
.yd_c00066{bottom:434.700000px;}
.yc_c00066{bottom:458.700000px;}
.yb_c00066{bottom:483.300000px;}
.ya_c00066{bottom:507.900000px;}
.y9_c00066{bottom:532.200000px;}
.y8_c00066{bottom:556.500000px;}
.y7_c00066{bottom:581.250000px;}
.y6_c00066{bottom:605.700000px;}
.y5_c00066{bottom:630.150000px;}
.y4_c00066{bottom:654.450000px;}
.y3_c00066{bottom:679.050000px;}
.y2_c00066{bottom:703.350000px;}
.y1_c00066{bottom:728.400000px;}
.h3_c00066{height:13.200074px;}
.h4_c00066{height:43.804688px;}
.h1_c00066{height:87.361816px;}
.h2_c00066{height:91.160156px;}
.h0_c00066{height:789.750000px;}
.w2_c00066{width:104.875500px;}
.w1_c00066{width:558.000000px;}
.w0_c00066{width:558.075000px;}
.x0_c00066{left:0.000000px;}
.x6_c00066{left:35.100000px;}
.x7_c00066{left:39.450000px;}
.x5_c00066{left:41.550000px;}
.x4_c00066{left:43.500000px;}
.x3_c00066{left:44.850000px;}
.x2_c00066{left:45.900000px;}
.x1_c00066{left:148.950000px;}
.x9_c00066{left:230.851730px;}
.x8_c00066{left:308.100000px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls1_c00066{letter-spacing:0.000000pt;}
.ls0_c00066{letter-spacing:2.666667pt;}
.ws0_c00066{word-spacing:-14.781333pt;}
.ws1_c00066{word-spacing:0.000000pt;}
._1b_c00066{margin-left:-11.584000pt;}
._16_c00066{margin-left:-9.805333pt;}
._14_c00066{margin-left:-8.384000pt;}
._10_c00066{margin-left:-6.701333pt;}
._9_c00066{margin-left:-5.581333pt;}
._d_c00066{margin-left:-4.480000pt;}
._c_c00066{margin-left:-2.944000pt;}
._e_c00066{margin-left:-1.984000pt;}
._b_c00066{margin-left:-1.024000pt;}
._a_c00066{width:0.960000pt;}
._f_c00066{width:2.061333pt;}
._13_c00066{width:3.045333pt;}
._8_c00066{width:4.722667pt;}
._18_c00066{width:5.712000pt;}
._2_c00066{width:6.826667pt;}
._3_c00066{width:8.160000pt;}
._12_c00066{width:9.472000pt;}
._11_c00066{width:10.866667pt;}
._4_c00066{width:12.160000pt;}
._5_c00066{width:13.226667pt;}
._1_c00066{width:14.346667pt;}
._15_c00066{width:15.864000pt;}
._0_c00066{width:18.773333pt;}
._19_c00066{width:21.149333pt;}
._1a_c00066{width:36.661333pt;}
._7_c00066{width:38.394667pt;}
._6_c00066{width:107.906667pt;}
._1c_c00066{width:173.120000pt;}
._17_c00066{width:287.013333pt;}
.fs3_c00066{font-size:42.666667pt;}
.fs0_c00066{font-size:53.333333pt;}
.fs1_c00066{font-size:61.333333pt;}
.fs2_c00066{font-size:64.000000pt;}
.y0_c00066{bottom:0.000000pt;}
.y1f_c00066{bottom:2.760000pt;}
.y1e_c00066{bottom:6.425212pt;}
.y1d_c00066{bottom:35.733333pt;}
.y1c_c00066{bottom:57.866667pt;}
.y1b_c00066{bottom:80.133333pt;}
.y1a_c00066{bottom:103.466667pt;}
.y19_c00066{bottom:125.600000pt;}
.y18_c00066{bottom:145.466667pt;}
.y17_c00066{bottom:168.533333pt;}
.y16_c00066{bottom:191.466667pt;}
.y15_c00066{bottom:213.866667pt;}
.y14_c00066{bottom:236.666667pt;}
.y13_c00066{bottom:255.866667pt;}
.y12_c00066{bottom:276.933333pt;}
.y11_c00066{bottom:298.533333pt;}
.y10_c00066{bottom:320.400000pt;}
.yf_c00066{bottom:342.266667pt;}
.ye_c00066{bottom:363.866667pt;}
.yd_c00066{bottom:386.400000pt;}
.yc_c00066{bottom:407.733333pt;}
.yb_c00066{bottom:429.600000pt;}
.ya_c00066{bottom:451.466667pt;}
.y9_c00066{bottom:473.066667pt;}
.y8_c00066{bottom:494.666667pt;}
.y7_c00066{bottom:516.666667pt;}
.y6_c00066{bottom:538.400000pt;}
.y5_c00066{bottom:560.133333pt;}
.y4_c00066{bottom:581.733333pt;}
.y3_c00066{bottom:603.600000pt;}
.y2_c00066{bottom:625.200000pt;}
.y1_c00066{bottom:647.466667pt;}
.h3_c00066{height:11.733399pt;}
.h4_c00066{height:38.937500pt;}
.h1_c00066{height:77.654948pt;}
.h2_c00066{height:81.031250pt;}
.h0_c00066{height:702.000000pt;}
.w2_c00066{width:93.222667pt;}
.w1_c00066{width:496.000000pt;}
.w0_c00066{width:496.066667pt;}
.x0_c00066{left:0.000000pt;}
.x6_c00066{left:31.200000pt;}
.x7_c00066{left:35.066667pt;}
.x5_c00066{left:36.933333pt;}
.x4_c00066{left:38.666667pt;}
.x3_c00066{left:39.866667pt;}
.x2_c00066{left:40.800000pt;}
.x1_c00066{left:132.400000pt;}
.x9_c00066{left:205.201538pt;}
.x8_c00066{left:273.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_53ca0113c28e4f9f474cf0eb.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00067;src:url('chunks/assets/font_8f266ce670c9fae483420e20.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00067;src:url('chunks/assets/font_c551335ad4df749bea838e3b.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:1.568848;font-style:normal;font-weight:normal;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_83fd740aa0dd7e9104919377.woff2')format("woff");}.ff4_c00067{font-family:ff4_c00067;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00067;src:url('chunks/assets/font_31fe4b4fda8e480182af4604.woff2')format("woff");}.ff5_c00067{font-family:ff5_c00067;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00067{font-family:ff6_c00067;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00067{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00067{vertical-align:0.000000px;}
.ls6_c00067{letter-spacing:-3.000000px;}
.ls5_c00067{letter-spacing:0.000000px;}
.ls4_c00067{letter-spacing:3.000000px;}
.ls0_c00067{letter-spacing:17.709000px;}
.ls2_c00067{letter-spacing:23.550000px;}
.ls3_c00067{letter-spacing:79.950000px;}
.ls1_c00067{letter-spacing:206.550000px;}
.sc__c00067{text-shadow:none;}
.sc0_c00067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00067{-webkit-text-stroke:0px transparent;}
.sc0_c00067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00067{word-spacing:-21.000000px;}
.ws4_c00067{word-spacing:-14.250000px;}
.ws1_c00067{word-spacing:-13.629000px;}
.ws2_c00067{word-spacing:-0.192000px;}
.ws5_c00067{word-spacing:0.000000px;}
.ws3_c00067{word-spacing:14.454000px;}
._1d_c00067{margin-left:-50.370000px;}
._2_c00067{margin-left:-17.982000px;}
._17_c00067{margin-left:-15.537000px;}
._4_c00067{margin-left:-13.932000px;}
._16_c00067{margin-left:-12.903000px;}
._14_c00067{margin-left:-10.032000px;}
._15_c00067{margin-left:-8.430000px;}
._19_c00067{margin-left:-7.176000px;}
._3_c00067{margin-left:-6.156000px;}
._c_c00067{margin-left:-4.917000px;}
._b_c00067{margin-left:-3.255000px;}
._a_c00067{margin-left:-1.857000px;}
._6_c00067{width:2.100000px;}
._7_c00067{width:3.588000px;}
._8_c00067{width:4.644000px;}
._0_c00067{width:6.642000px;}
._9_c00067{width:8.211000px;}
._d_c00067{width:9.486000px;}
._12_c00067{width:10.734000px;}
._e_c00067{width:11.748000px;}
._f_c00067{width:13.617000px;}
._10_c00067{width:14.649000px;}
._13_c00067{width:18.381000px;}
._11_c00067{width:19.596000px;}
._1e_c00067{width:21.114000px;}
._1a_c00067{width:23.751000px;}
._1_c00067{width:46.899000px;}
._1b_c00067{width:53.724000px;}
._18_c00067{width:158.232000px;}
._5_c00067{width:536.217000px;}
._1c_c00067{width:953.208000px;}
._1f_c00067{width:1347.597000px;}
.fc2_c00067{color:transparent;}
.fc1_c00067{color:rgb(128,128,128);}
.fc0_c00067{color:rgb(0,0,0);}
.fs7_c00067{font-size:48.000000px;}
.fs4_c00067{font-size:51.000000px;}
.fs3_c00067{font-size:54.000000px;}
.fs5_c00067{font-size:57.000000px;}
.fs2_c00067{font-size:69.000000px;}
.fs6_c00067{font-size:72.000000px;}
.fs0_c00067{font-size:81.000000px;}
.fs1_c00067{font-size:84.000000px;}
.y0_c00067{bottom:0.000000px;}
.y1f_c00067{bottom:3.105000px;}
.y1e_c00067{bottom:7.228369px;}
.y1d_c00067{bottom:32.670000px;}
.y1c_c00067{bottom:54.720000px;}
.y1b_c00067{bottom:83.670000px;}
.y1a_c00067{bottom:100.170000px;}
.y19_c00067{bottom:132.870000px;}
.y18_c00067{bottom:156.270000px;}
.y17_c00067{bottom:182.220000px;}
.y16_c00067{bottom:203.220000px;}
.y15_c00067{bottom:229.470000px;}
.y14_c00067{bottom:257.070000px;}
.y13_c00067{bottom:279.420000px;}
.y12_c00067{bottom:304.770000px;}
.y11_c00067{bottom:327.420000px;}
.y10_c00067{bottom:352.620000px;}
.yf_c00067{bottom:377.670000px;}
.ye_c00067{bottom:400.920000px;}
.yd_c00067{bottom:427.170000px;}
.yc_c00067{bottom:450.270000px;}
.yb_c00067{bottom:474.870000px;}
.ya_c00067{bottom:499.770000px;}
.y9_c00067{bottom:524.370000px;}
.y8_c00067{bottom:548.670000px;}
.y7_c00067{bottom:573.120000px;}
.y6_c00067{bottom:597.270000px;}
.y5_c00067{bottom:622.020000px;}
.y4_c00067{bottom:646.020000px;}
.y3_c00067{bottom:671.520000px;}
.y2_c00067{bottom:695.220000px;}
.y1_c00067{bottom:720.570000px;}
.h5_c00067{height:13.200073px;}
.h6_c00067{height:43.804688px;}
.h2_c00067{height:82.400391px;}
.h3_c00067{height:87.361816px;}
.h4_c00067{height:91.160156px;}
.h0_c00067{height:781.350000px;}
.h1_c00067{height:781.500000px;}
.w2_c00067{width:104.875500px;}
.w1_c00067{width:534.750000px;}
.w0_c00067{width:534.900000px;}
.x0_c00067{left:0.000000px;}
.x6_c00067{left:48.600000px;}
.x5_c00067{left:51.900000px;}
.x8_c00067{left:53.100000px;}
.x7_c00067{left:54.300000px;}
.xb_c00067{left:116.850000px;}
.x1_c00067{left:124.500000px;}
.x2_c00067{left:125.850000px;}
.x3_c00067{left:127.200000px;}
.x4_c00067{left:129.300000px;}
.xa_c00067{left:131.400000px;}
.x9_c00067{left:156.900000px;}
.xc_c00067{left:219.264267px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls6_c00067{letter-spacing:-2.666667pt;}
.ls5_c00067{letter-spacing:0.000000pt;}
.ls4_c00067{letter-spacing:2.666667pt;}
.ls0_c00067{letter-spacing:15.741333pt;}
.ls2_c00067{letter-spacing:20.933333pt;}
.ls3_c00067{letter-spacing:71.066667pt;}
.ls1_c00067{letter-spacing:183.600000pt;}
.ws0_c00067{word-spacing:-18.666667pt;}
.ws4_c00067{word-spacing:-12.666667pt;}
.ws1_c00067{word-spacing:-12.114667pt;}
.ws2_c00067{word-spacing:-0.170667pt;}
.ws5_c00067{word-spacing:0.000000pt;}
.ws3_c00067{word-spacing:12.848000pt;}
._1d_c00067{margin-left:-44.773333pt;}
._2_c00067{margin-left:-15.984000pt;}
._17_c00067{margin-left:-13.810667pt;}
._4_c00067{margin-left:-12.384000pt;}
._16_c00067{margin-left:-11.469333pt;}
._14_c00067{margin-left:-8.917333pt;}
._15_c00067{margin-left:-7.493333pt;}
._19_c00067{margin-left:-6.378667pt;}
._3_c00067{margin-left:-5.472000pt;}
._c_c00067{margin-left:-4.370667pt;}
._b_c00067{margin-left:-2.893333pt;}
._a_c00067{margin-left:-1.650667pt;}
._6_c00067{width:1.866667pt;}
._7_c00067{width:3.189333pt;}
._8_c00067{width:4.128000pt;}
._0_c00067{width:5.904000pt;}
._9_c00067{width:7.298667pt;}
._d_c00067{width:8.432000pt;}
._12_c00067{width:9.541333pt;}
._e_c00067{width:10.442667pt;}
._f_c00067{width:12.104000pt;}
._10_c00067{width:13.021333pt;}
._13_c00067{width:16.338667pt;}
._11_c00067{width:17.418667pt;}
._1e_c00067{width:18.768000pt;}
._1a_c00067{width:21.112000pt;}
._1_c00067{width:41.688000pt;}
._1b_c00067{width:47.754667pt;}
._18_c00067{width:140.650667pt;}
._5_c00067{width:476.637333pt;}
._1c_c00067{width:847.296000pt;}
._1f_c00067{width:1197.864000pt;}
.fs7_c00067{font-size:42.666667pt;}
.fs4_c00067{font-size:45.333333pt;}
.fs3_c00067{font-size:48.000000pt;}
.fs5_c00067{font-size:50.666667pt;}
.fs2_c00067{font-size:61.333333pt;}
.fs6_c00067{font-size:64.000000pt;}
.fs0_c00067{font-size:72.000000pt;}
.fs1_c00067{font-size:74.666667pt;}
.y0_c00067{bottom:0.000000pt;}
.y1f_c00067{bottom:2.760000pt;}
.y1e_c00067{bottom:6.425217pt;}
.y1d_c00067{bottom:29.040000pt;}
.y1c_c00067{bottom:48.640000pt;}
.y1b_c00067{bottom:74.373333pt;}
.y1a_c00067{bottom:89.040000pt;}
.y19_c00067{bottom:118.106667pt;}
.y18_c00067{bottom:138.906667pt;}
.y17_c00067{bottom:161.973333pt;}
.y16_c00067{bottom:180.640000pt;}
.y15_c00067{bottom:203.973333pt;}
.y14_c00067{bottom:228.506667pt;}
.y13_c00067{bottom:248.373333pt;}
.y12_c00067{bottom:270.906667pt;}
.y11_c00067{bottom:291.040000pt;}
.y10_c00067{bottom:313.440000pt;}
.yf_c00067{bottom:335.706667pt;}
.ye_c00067{bottom:356.373333pt;}
.yd_c00067{bottom:379.706667pt;}
.yc_c00067{bottom:400.240000pt;}
.yb_c00067{bottom:422.106667pt;}
.ya_c00067{bottom:444.240000pt;}
.y9_c00067{bottom:466.106667pt;}
.y8_c00067{bottom:487.706667pt;}
.y7_c00067{bottom:509.440000pt;}
.y6_c00067{bottom:530.906667pt;}
.y5_c00067{bottom:552.906667pt;}
.y4_c00067{bottom:574.240000pt;}
.y3_c00067{bottom:596.906667pt;}
.y2_c00067{bottom:617.973333pt;}
.y1_c00067{bottom:640.506667pt;}
.h5_c00067{height:11.733399pt;}
.h6_c00067{height:38.937500pt;}
.h2_c00067{height:73.244792pt;}
.h3_c00067{height:77.654948pt;}
.h4_c00067{height:81.031250pt;}
.h0_c00067{height:694.533333pt;}
.h1_c00067{height:694.666667pt;}
.w2_c00067{width:93.222667pt;}
.w1_c00067{width:475.333333pt;}
.w0_c00067{width:475.466667pt;}
.x0_c00067{left:0.000000pt;}
.x6_c00067{left:43.200000pt;}
.x5_c00067{left:46.133333pt;}
.x8_c00067{left:47.200000pt;}
.x7_c00067{left:48.266667pt;}
.xb_c00067{left:103.866667pt;}
.x1_c00067{left:110.666667pt;}
.x2_c00067{left:111.866667pt;}
.x3_c00067{left:113.066667pt;}
.x4_c00067{left:114.933333pt;}
.xa_c00067{left:116.800000pt;}
.x9_c00067{left:139.466667pt;}
.xc_c00067{left:194.901571pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6fb6f13a6be6764e3e87b088.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00068;src:url('chunks/assets/font_d18fd3fc5d91d83355c5bf5e.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:1.568848;font-style:normal;font-weight:normal;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_03957a51af2dfec26c198753.woff2')format("woff");}.ff3_c00068{font-family:ff3_c00068;line-height:1.480469;font-style:normal;font-weight:normal;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_436bfb924639c6ba166b41f2.woff2')format("woff");}.ff4_c00068{font-family:ff4_c00068;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00068;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00068{font-family:ff5_c00068;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00068{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00068{vertical-align:0.000000px;}
.ls1_c00068{letter-spacing:0.000000px;}
.ls2_c00068{letter-spacing:3.000000px;}
.ls0_c00068{letter-spacing:4.398000px;}
.ls3_c00068{letter-spacing:12.000000px;}
.sc__c00068{text-shadow:none;}
.sc0_c00068{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00068{-webkit-text-stroke:0px transparent;}
.sc0_c00068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00068{word-spacing:-28.002000px;}
.ws1_c00068{word-spacing:-20.967000px;}
.ws0_c00068{word-spacing:-17.352000px;}
.ws3_c00068{word-spacing:-16.629000px;}
.ws4_c00068{word-spacing:0.000000px;}
._14_c00068{margin-left:-41.496000px;}
._c_c00068{margin-left:-14.064000px;}
._6_c00068{margin-left:-12.348000px;}
._1a_c00068{margin-left:-9.216000px;}
._4_c00068{margin-left:-8.148000px;}
._e_c00068{margin-left:-6.540000px;}
._2_c00068{margin-left:-4.788000px;}
._f_c00068{margin-left:-3.684000px;}
._8_c00068{margin-left:-2.604000px;}
._7_c00068{margin-left:-1.596000px;}
._a_c00068{width:1.764000px;}
._3_c00068{width:2.772000px;}
._5_c00068{width:4.200000px;}
._15_c00068{width:5.244000px;}
._1_c00068{width:7.056000px;}
._13_c00068{width:8.904000px;}
._10_c00068{width:10.476000px;}
._0_c00068{width:11.676000px;}
._12_c00068{width:12.696000px;}
._b_c00068{width:14.340000px;}
._11_c00068{width:15.756000px;}
._18_c00068{width:22.344000px;}
._19_c00068{width:24.000000px;}
._d_c00068{width:46.872000px;}
._1b_c00068{width:132.204000px;}
._9_c00068{width:312.648000px;}
._17_c00068{width:532.296000px;}
._16_c00068{width:931.860000px;}
.fc2_c00068{color:transparent;}
.fc1_c00068{color:rgb(128,128,128);}
.fc0_c00068{color:rgb(0,0,0);}
.fs6_c00068{font-size:48.000000px;}
.fs4_c00068{font-size:63.000000px;}
.fs5_c00068{font-size:69.000000px;}
.fs1_c00068{font-size:72.000000px;}
.fs2_c00068{font-size:78.000000px;}
.fs0_c00068{font-size:84.000000px;}
.fs3_c00068{font-size:87.000000px;}
.y0_c00068{bottom:0.000000px;}
.y1f_c00068{bottom:3.105000px;}
.y1e_c00068{bottom:7.228363px;}
.y1d_c00068{bottom:43.200000px;}
.y1c_c00068{bottom:68.250000px;}
.y1b_c00068{bottom:94.950000px;}
.y1a_c00068{bottom:120.150000px;}
.y19_c00068{bottom:144.750000px;}
.y18_c00068{bottom:169.200000px;}
.y17_c00068{bottom:193.050000px;}
.y16_c00068{bottom:220.350000px;}
.y15_c00068{bottom:244.350000px;}
.y14_c00068{bottom:270.450000px;}
.y13_c00068{bottom:293.400000px;}
.y12_c00068{bottom:316.950000px;}
.y11_c00068{bottom:340.650000px;}
.y10_c00068{bottom:364.500000px;}
.yf_c00068{bottom:390.150000px;}
.ye_c00068{bottom:415.500000px;}
.yd_c00068{bottom:440.100000px;}
.yc_c00068{bottom:464.100000px;}
.yb_c00068{bottom:489.000000px;}
.ya_c00068{bottom:513.750000px;}
.y9_c00068{bottom:538.350000px;}
.y8_c00068{bottom:563.250000px;}
.y7_c00068{bottom:587.250000px;}
.y6_c00068{bottom:612.450000px;}
.y5_c00068{bottom:636.450000px;}
.y4_c00068{bottom:662.550000px;}
.y3_c00068{bottom:686.700000px;}
.y2_c00068{bottom:710.100000px;}
.y1_c00068{bottom:735.000000px;}
.h7_c00068{height:13.200074px;}
.h8_c00068{height:43.804688px;}
.h2_c00068{height:82.400391px;}
.h6_c00068{height:87.361816px;}
.h3_c00068{height:91.160156px;}
.h4_c00068{height:98.756836px;}
.h5_c00068{height:110.751855px;}
.h1_c00068{height:788.250000px;}
.h0_c00068{height:788.400000px;}
.w2_c00068{width:104.875500px;}
.w1_c00068{width:549.750000px;}
.w0_c00068{width:549.975000px;}
.x0_c00068{left:0.000000px;}
.x2_c00068{left:36.450000px;}
.x3_c00068{left:38.850000px;}
.x4_c00068{left:40.200000px;}
.x5_c00068{left:41.250000px;}
.x6_c00068{left:42.750000px;}
.x7_c00068{left:44.100000px;}
.x1_c00068{left:130.650000px;}
.x9_c00068{left:226.801758px;}
.x8_c00068{left:367.200000px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls1_c00068{letter-spacing:0.000000pt;}
.ls2_c00068{letter-spacing:2.666667pt;}
.ls0_c00068{letter-spacing:3.909333pt;}
.ls3_c00068{letter-spacing:10.666667pt;}
.ws2_c00068{word-spacing:-24.890667pt;}
.ws1_c00068{word-spacing:-18.637333pt;}
.ws0_c00068{word-spacing:-15.424000pt;}
.ws3_c00068{word-spacing:-14.781333pt;}
.ws4_c00068{word-spacing:0.000000pt;}
._14_c00068{margin-left:-36.885333pt;}
._c_c00068{margin-left:-12.501333pt;}
._6_c00068{margin-left:-10.976000pt;}
._1a_c00068{margin-left:-8.192000pt;}
._4_c00068{margin-left:-7.242667pt;}
._e_c00068{margin-left:-5.813333pt;}
._2_c00068{margin-left:-4.256000pt;}
._f_c00068{margin-left:-3.274667pt;}
._8_c00068{margin-left:-2.314667pt;}
._7_c00068{margin-left:-1.418667pt;}
._a_c00068{width:1.568000pt;}
._3_c00068{width:2.464000pt;}
._5_c00068{width:3.733333pt;}
._15_c00068{width:4.661333pt;}
._1_c00068{width:6.272000pt;}
._13_c00068{width:7.914667pt;}
._10_c00068{width:9.312000pt;}
._0_c00068{width:10.378667pt;}
._12_c00068{width:11.285333pt;}
._b_c00068{width:12.746667pt;}
._11_c00068{width:14.005333pt;}
._18_c00068{width:19.861333pt;}
._19_c00068{width:21.333333pt;}
._d_c00068{width:41.664000pt;}
._1b_c00068{width:117.514667pt;}
._9_c00068{width:277.909333pt;}
._17_c00068{width:473.152000pt;}
._16_c00068{width:828.320000pt;}
.fs6_c00068{font-size:42.666667pt;}
.fs4_c00068{font-size:56.000000pt;}
.fs5_c00068{font-size:61.333333pt;}
.fs1_c00068{font-size:64.000000pt;}
.fs2_c00068{font-size:69.333333pt;}
.fs0_c00068{font-size:74.666667pt;}
.fs3_c00068{font-size:77.333333pt;}
.y0_c00068{bottom:0.000000pt;}
.y1f_c00068{bottom:2.760000pt;}
.y1e_c00068{bottom:6.425212pt;}
.y1d_c00068{bottom:38.400000pt;}
.y1c_c00068{bottom:60.666667pt;}
.y1b_c00068{bottom:84.400000pt;}
.y1a_c00068{bottom:106.800000pt;}
.y19_c00068{bottom:128.666667pt;}
.y18_c00068{bottom:150.400000pt;}
.y17_c00068{bottom:171.600000pt;}
.y16_c00068{bottom:195.866667pt;}
.y15_c00068{bottom:217.200000pt;}
.y14_c00068{bottom:240.400000pt;}
.y13_c00068{bottom:260.800000pt;}
.y12_c00068{bottom:281.733333pt;}
.y11_c00068{bottom:302.800000pt;}
.y10_c00068{bottom:324.000000pt;}
.yf_c00068{bottom:346.800000pt;}
.ye_c00068{bottom:369.333333pt;}
.yd_c00068{bottom:391.200000pt;}
.yc_c00068{bottom:412.533333pt;}
.yb_c00068{bottom:434.666667pt;}
.ya_c00068{bottom:456.666667pt;}
.y9_c00068{bottom:478.533333pt;}
.y8_c00068{bottom:500.666667pt;}
.y7_c00068{bottom:522.000000pt;}
.y6_c00068{bottom:544.400000pt;}
.y5_c00068{bottom:565.733333pt;}
.y4_c00068{bottom:588.933333pt;}
.y3_c00068{bottom:610.400000pt;}
.y2_c00068{bottom:631.200000pt;}
.y1_c00068{bottom:653.333333pt;}
.h7_c00068{height:11.733399pt;}
.h8_c00068{height:38.937500pt;}
.h2_c00068{height:73.244792pt;}
.h6_c00068{height:77.654948pt;}
.h3_c00068{height:81.031250pt;}
.h4_c00068{height:87.783854pt;}
.h5_c00068{height:98.446094pt;}
.h1_c00068{height:700.666667pt;}
.h0_c00068{height:700.800000pt;}
.w2_c00068{width:93.222667pt;}
.w1_c00068{width:488.666667pt;}
.w0_c00068{width:488.866667pt;}
.x0_c00068{left:0.000000pt;}
.x2_c00068{left:32.400000pt;}
.x3_c00068{left:34.533333pt;}
.x4_c00068{left:35.733333pt;}
.x5_c00068{left:36.666667pt;}
.x6_c00068{left:38.000000pt;}
.x7_c00068{left:39.200000pt;}
.x1_c00068{left:116.133333pt;}
.x9_c00068{left:201.601563pt;}
.x8_c00068{left:326.400000pt;}
}





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

.ir_c00069:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00069{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00069;src:url('chunks/assets/font_971e7ac4c543a9ec2a69ce37.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00069;src:url('chunks/assets/font_f258ad8418fff4f348ffce6c.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:1.592000;font-style:normal;font-weight:normal;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_733ef4bf53d7d7056b5ad9a0.woff2')format("woff");}.ff3_c00069{font-family:ff3_c00069;line-height:1.568848;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00069{font-family:ff4_c00069;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00069;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00069{font-family:ff5_c00069;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00069;src:url('chunks/assets/font_ead9a7d6ef5b33d7b71c6d36.woff2')format("woff");}.ff6_c00069{font-family:ff6_c00069;line-height:1.480469;font-style:normal;font-weight: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_c00069;src:url('chunks/assets/font_620b820ffdc71988b82abc76.woff2')format("woff");}.ff7_c00069{font-family:ff7_c00069;line-height:1.480469;font-style:normal;font-weight: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_c00069;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff8_c00069{font-family:ff8_c00069;line-height:1.219238;font-style: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);}
.v1_c00069{vertical-align:-37.800000px;}
.v0_c00069{vertical-align:0.000000px;}
.ls8_c00069{letter-spacing:-15.000000px;}
.ls6_c00069{letter-spacing:-9.000000px;}
.ls5_c00069{letter-spacing:0.000000px;}
.ls4_c00069{letter-spacing:1.512000px;}
.ls7_c00069{letter-spacing:3.000000px;}
.ls3_c00069{letter-spacing:10.800000px;}
.ls2_c00069{letter-spacing:12.150000px;}
.ls0_c00069{letter-spacing:15.150000px;}
.ls1_c00069{letter-spacing:20.400000px;}
.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;}
}
.ws6_c00069{word-spacing:-34.320000px;}
.ws4_c00069{word-spacing:-20.352000px;}
.ws2_c00069{word-spacing:-17.352000px;}
.ws5_c00069{word-spacing:-16.629000px;}
.ws1_c00069{word-spacing:-16.254000px;}
.ws3_c00069{word-spacing:-14.250000px;}
.ws7_c00069{word-spacing:0.000000px;}
.ws0_c00069{word-spacing:14.130000px;}
._15_c00069{margin-left:-40.176000px;}
._12_c00069{margin-left:-13.032000px;}
._f_c00069{margin-left:-11.664000px;}
._7_c00069{margin-left:-9.576000px;}
._13_c00069{margin-left:-8.352000px;}
._8_c00069{margin-left:-6.912000px;}
._d_c00069{margin-left:-4.824000px;}
._9_c00069{margin-left:-3.816000px;}
._a_c00069{margin-left:-2.064000px;}
._b_c00069{margin-left:-1.032000px;}
._0_c00069{width:1.848000px;}
._2_c00069{width:3.726000px;}
._1_c00069{width:5.778000px;}
._14_c00069{width:6.822000px;}
._e_c00069{width:7.974000px;}
._4_c00069{width:9.882000px;}
._5_c00069{width:11.394000px;}
._11_c00069{width:12.858000px;}
._3_c00069{width:13.878000px;}
._c_c00069{width:17.208000px;}
._10_c00069{width:32.760000px;}
._16_c00069{width:100.296000px;}
._6_c00069{width:182.358000px;}
.fc2_c00069{color:transparent;}
.fc1_c00069{color:rgb(128,128,128);}
.fc0_c00069{color:rgb(0,0,0);}
.fs6_c00069{font-size:48.000000px;}
.fs1_c00069{font-size:54.000000px;}
.fs3_c00069{font-size:57.000000px;}
.fs4_c00069{font-size:60.000000px;}
.fs5_c00069{font-size:69.000000px;}
.fs2_c00069{font-size:72.000000px;}
.fs0_c00069{font-size:84.000000px;}
.y0_c00069{bottom:0.000000px;}
.y1f_c00069{bottom:3.105000px;}
.y1e_c00069{bottom:7.228357px;}
.y1d_c00069{bottom:32.730000px;}
.y1c_c00069{bottom:58.080000px;}
.y1b_c00069{bottom:82.380000px;}
.y1a_c00069{bottom:106.980000px;}
.y19_c00069{bottom:132.630000px;}
.y18_c00069{bottom:157.230000px;}
.y17_c00069{bottom:181.530000px;}
.y16_c00069{bottom:205.830000px;}
.y15_c00069{bottom:232.530000px;}
.y14_c00069{bottom:257.130000px;}
.y13_c00069{bottom:281.130000px;}
.y12_c00069{bottom:304.380000px;}
.y11_c00069{bottom:329.130000px;}
.y10_c00069{bottom:352.980000px;}
.yf_c00069{bottom:378.030000px;}
.ye_c00069{bottom:399.930000px;}
.yd_c00069{bottom:427.230000px;}
.yc_c00069{bottom:451.530000px;}
.yb_c00069{bottom:475.530000px;}
.ya_c00069{bottom:501.480000px;}
.y9_c00069{bottom:524.580000px;}
.y8_c00069{bottom:549.180000px;}
.y7_c00069{bottom:575.430000px;}
.y6_c00069{bottom:598.680000px;}
.y5_c00069{bottom:622.980000px;}
.y4_c00069{bottom:645.930000px;}
.y3_c00069{bottom:672.030000px;}
.y2_c00069{bottom:705.480000px;}
.y1_c00069{bottom:721.530000px;}
.h6_c00069{height:13.200074px;}
.h7_c00069{height:43.804688px;}
.h3_c00069{height:58.536000px;}
.h2_c00069{height:82.400391px;}
.h5_c00069{height:87.361816px;}
.h4_c00069{height:91.160156px;}
.h0_c00069{height:773.850000px;}
.h1_c00069{height:774.000000px;}
.w1_c00069{width:104.875500px;}
.w0_c00069{width:530.250000px;}
.x0_c00069{left:0.000000px;}
.xc_c00069{left:51.000000px;}
.x10_c00069{left:52.050000px;}
.xa_c00069{left:56.700000px;}
.x4_c00069{left:61.050000px;}
.x2_c00069{left:62.400000px;}
.x12_c00069{left:88.200000px;}
.x11_c00069{left:111.750000px;}
.xf_c00069{left:113.850000px;}
.x7_c00069{left:117.150000px;}
.xe_c00069{left:128.550000px;}
.xd_c00069{left:129.900000px;}
.xb_c00069{left:131.400000px;}
.x8_c00069{left:132.750000px;}
.x6_c00069{left:133.950000px;}
.x5_c00069{left:135.300000px;}
.x3_c00069{left:136.650000px;}
.x9_c00069{left:190.050000px;}
.x14_c00069{left:216.939240px;}
.x1_c00069{left:327.000000px;}
.x13_c00069{left:463.500000px;}
@media print{
.v1_c00069{vertical-align:-33.600000pt;}
.v0_c00069{vertical-align:0.000000pt;}
.ls8_c00069{letter-spacing:-13.333333pt;}
.ls6_c00069{letter-spacing:-8.000000pt;}
.ls5_c00069{letter-spacing:0.000000pt;}
.ls4_c00069{letter-spacing:1.344000pt;}
.ls7_c00069{letter-spacing:2.666667pt;}
.ls3_c00069{letter-spacing:9.600000pt;}
.ls2_c00069{letter-spacing:10.800000pt;}
.ls0_c00069{letter-spacing:13.466667pt;}
.ls1_c00069{letter-spacing:18.133333pt;}
.ws6_c00069{word-spacing:-30.506667pt;}
.ws4_c00069{word-spacing:-18.090667pt;}
.ws2_c00069{word-spacing:-15.424000pt;}
.ws5_c00069{word-spacing:-14.781333pt;}
.ws1_c00069{word-spacing:-14.448000pt;}
.ws3_c00069{word-spacing:-12.666667pt;}
.ws7_c00069{word-spacing:0.000000pt;}
.ws0_c00069{word-spacing:12.560000pt;}
._15_c00069{margin-left:-35.712000pt;}
._12_c00069{margin-left:-11.584000pt;}
._f_c00069{margin-left:-10.368000pt;}
._7_c00069{margin-left:-8.512000pt;}
._13_c00069{margin-left:-7.424000pt;}
._8_c00069{margin-left:-6.144000pt;}
._d_c00069{margin-left:-4.288000pt;}
._9_c00069{margin-left:-3.392000pt;}
._a_c00069{margin-left:-1.834667pt;}
._b_c00069{margin-left:-0.917333pt;}
._0_c00069{width:1.642667pt;}
._2_c00069{width:3.312000pt;}
._1_c00069{width:5.136000pt;}
._14_c00069{width:6.064000pt;}
._e_c00069{width:7.088000pt;}
._4_c00069{width:8.784000pt;}
._5_c00069{width:10.128000pt;}
._11_c00069{width:11.429333pt;}
._3_c00069{width:12.336000pt;}
._c_c00069{width:15.296000pt;}
._10_c00069{width:29.120000pt;}
._16_c00069{width:89.152000pt;}
._6_c00069{width:162.096000pt;}
.fs6_c00069{font-size:42.666667pt;}
.fs1_c00069{font-size:48.000000pt;}
.fs3_c00069{font-size:50.666667pt;}
.fs4_c00069{font-size:53.333333pt;}
.fs5_c00069{font-size:61.333333pt;}
.fs2_c00069{font-size:64.000000pt;}
.fs0_c00069{font-size:74.666667pt;}
.y0_c00069{bottom:0.000000pt;}
.y1f_c00069{bottom:2.760000pt;}
.y1e_c00069{bottom:6.425206pt;}
.y1d_c00069{bottom:29.093333pt;}
.y1c_c00069{bottom:51.626667pt;}
.y1b_c00069{bottom:73.226667pt;}
.y1a_c00069{bottom:95.093333pt;}
.y19_c00069{bottom:117.893333pt;}
.y18_c00069{bottom:139.760000pt;}
.y17_c00069{bottom:161.360000pt;}
.y16_c00069{bottom:182.960000pt;}
.y15_c00069{bottom:206.693333pt;}
.y14_c00069{bottom:228.560000pt;}
.y13_c00069{bottom:249.893333pt;}
.y12_c00069{bottom:270.560000pt;}
.y11_c00069{bottom:292.560000pt;}
.y10_c00069{bottom:313.760000pt;}
.yf_c00069{bottom:336.026667pt;}
.ye_c00069{bottom:355.493333pt;}
.yd_c00069{bottom:379.760000pt;}
.yc_c00069{bottom:401.360000pt;}
.yb_c00069{bottom:422.693333pt;}
.ya_c00069{bottom:445.760000pt;}
.y9_c00069{bottom:466.293333pt;}
.y8_c00069{bottom:488.160000pt;}
.y7_c00069{bottom:511.493333pt;}
.y6_c00069{bottom:532.160000pt;}
.y5_c00069{bottom:553.760000pt;}
.y4_c00069{bottom:574.160000pt;}
.y3_c00069{bottom:597.360000pt;}
.y2_c00069{bottom:627.093333pt;}
.y1_c00069{bottom:641.360000pt;}
.h6_c00069{height:11.733399pt;}
.h7_c00069{height:38.937500pt;}
.h3_c00069{height:52.032000pt;}
.h2_c00069{height:73.244792pt;}
.h5_c00069{height:77.654948pt;}
.h4_c00069{height:81.031250pt;}
.h0_c00069{height:687.866667pt;}
.h1_c00069{height:688.000000pt;}
.w1_c00069{width:93.222667pt;}
.w0_c00069{width:471.333333pt;}
.x0_c00069{left:0.000000pt;}
.xc_c00069{left:45.333333pt;}
.x10_c00069{left:46.266667pt;}
.xa_c00069{left:50.400000pt;}
.x4_c00069{left:54.266667pt;}
.x2_c00069{left:55.466667pt;}
.x12_c00069{left:78.400000pt;}
.x11_c00069{left:99.333333pt;}
.xf_c00069{left:101.200000pt;}
.x7_c00069{left:104.133333pt;}
.xe_c00069{left:114.266667pt;}
.xd_c00069{left:115.466667pt;}
.xb_c00069{left:116.800000pt;}
.x8_c00069{left:118.000000pt;}
.x6_c00069{left:119.066667pt;}
.x5_c00069{left:120.266667pt;}
.x3_c00069{left:121.466667pt;}
.x9_c00069{left:168.933333pt;}
.x14_c00069{left:192.834880pt;}
.x1_c00069{left:290.666667pt;}
.x13_c00069{left:412.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_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_3ee9192e9b2c8b544f506a30.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.480469;font-style:normal;font-weight:normal;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_742aba6c20cfdfbdca6fc0a6.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00070{font-family:ff3_c00070;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00070{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00070{vertical-align:0.000000px;}
.ls2_c00070{letter-spacing:0.000000px;}
.ls1_c00070{letter-spacing:3.000000px;}
.ls0_c00070{letter-spacing:3.048000px;}
.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:-20.967000px;}
.ws0_c00070{word-spacing:-17.352000px;}
.ws2_c00070{word-spacing:0.000000px;}
._14_c00070{margin-left:-11.592000px;}
._11_c00070{margin-left:-10.584000px;}
._15_c00070{margin-left:-9.576000px;}
._c_c00070{margin-left:-8.280000px;}
._12_c00070{margin-left:-7.272000px;}
._10_c00070{margin-left:-6.120000px;}
._b_c00070{margin-left:-4.752000px;}
._a_c00070{margin-left:-3.744000px;}
._9_c00070{margin-left:-2.304000px;}
._5_c00070{margin-left:-1.152000px;}
._8_c00070{width:1.008000px;}
._2_c00070{width:2.160000px;}
._3_c00070{width:3.168000px;}
._6_c00070{width:4.536000px;}
._4_c00070{width:6.480000px;}
._18_c00070{width:7.632000px;}
._17_c00070{width:8.640000px;}
._1_c00070{width:9.792000px;}
._e_c00070{width:11.448000px;}
._13_c00070{width:12.672000px;}
._f_c00070{width:14.688000px;}
._0_c00070{width:15.696000px;}
._d_c00070{width:283.248000px;}
._7_c00070{width:300.456000px;}
._16_c00070{width:345.672000px;}
.fc2_c00070{color:transparent;}
.fc1_c00070{color:rgb(128,128,128);}
.fc0_c00070{color:rgb(0,0,0);}
.fs3_c00070{font-size:48.000000px;}
.fs1_c00070{font-size:69.000000px;}
.fs0_c00070{font-size:72.000000px;}
.fs2_c00070{font-size:87.000000px;}
.y0_c00070{bottom:0.000000px;}
.y1f_c00070{bottom:3.105000px;}
.y1e_c00070{bottom:7.228357px;}
.y1d_c00070{bottom:35.730000px;}
.y1c_c00070{bottom:63.180000px;}
.y1b_c00070{bottom:88.380000px;}
.y1a_c00070{bottom:112.830000px;}
.y19_c00070{bottom:137.730000px;}
.y18_c00070{bottom:160.980000px;}
.y17_c00070{bottom:186.630000px;}
.y16_c00070{bottom:210.030000px;}
.y15_c00070{bottom:236.580000px;}
.y14_c00070{bottom:260.880000px;}
.y13_c00070{bottom:281.430000px;}
.y12_c00070{bottom:307.830000px;}
.y11_c00070{bottom:331.380000px;}
.y10_c00070{bottom:356.130000px;}
.yf_c00070{bottom:380.730000px;}
.ye_c00070{bottom:405.330000px;}
.yd_c00070{bottom:429.630000px;}
.yc_c00070{bottom:454.380000px;}
.yb_c00070{bottom:478.980000px;}
.ya_c00070{bottom:503.580000px;}
.y9_c00070{bottom:527.880000px;}
.y8_c00070{bottom:552.780000px;}
.y7_c00070{bottom:577.080000px;}
.y6_c00070{bottom:601.830000px;}
.y5_c00070{bottom:626.130000px;}
.y4_c00070{bottom:650.430000px;}
.y3_c00070{bottom:675.330000px;}
.y2_c00070{bottom:699.330000px;}
.y1_c00070{bottom:724.680000px;}
.h4_c00070{height:13.200074px;}
.h5_c00070{height:43.804688px;}
.h2_c00070{height:91.160156px;}
.h3_c00070{height:110.151855px;}
.h0_c00070{height:787.350000px;}
.h1_c00070{height:787.500000px;}
.w2_c00070{width:104.875500px;}
.w0_c00070{width:558.600000px;}
.w1_c00070{width:558.750000px;}
.x0_c00070{left:0.000000px;}
.x5_c00070{left:38.100000px;}
.x2_c00070{left:39.150000px;}
.x3_c00070{left:40.500000px;}
.x4_c00070{left:41.850000px;}
.x1_c00070{left:148.200000px;}
.x7_c00070{left:231.114258px;}
.x6_c00070{left:391.800000px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls2_c00070{letter-spacing:0.000000pt;}
.ls1_c00070{letter-spacing:2.666667pt;}
.ls0_c00070{letter-spacing:2.709333pt;}
.ws1_c00070{word-spacing:-18.637333pt;}
.ws0_c00070{word-spacing:-15.424000pt;}
.ws2_c00070{word-spacing:0.000000pt;}
._14_c00070{margin-left:-10.304000pt;}
._11_c00070{margin-left:-9.408000pt;}
._15_c00070{margin-left:-8.512000pt;}
._c_c00070{margin-left:-7.360000pt;}
._12_c00070{margin-left:-6.464000pt;}
._10_c00070{margin-left:-5.440000pt;}
._b_c00070{margin-left:-4.224000pt;}
._a_c00070{margin-left:-3.328000pt;}
._9_c00070{margin-left:-2.048000pt;}
._5_c00070{margin-left:-1.024000pt;}
._8_c00070{width:0.896000pt;}
._2_c00070{width:1.920000pt;}
._3_c00070{width:2.816000pt;}
._6_c00070{width:4.032000pt;}
._4_c00070{width:5.760000pt;}
._18_c00070{width:6.784000pt;}
._17_c00070{width:7.680000pt;}
._1_c00070{width:8.704000pt;}
._e_c00070{width:10.176000pt;}
._13_c00070{width:11.264000pt;}
._f_c00070{width:13.056000pt;}
._0_c00070{width:13.952000pt;}
._d_c00070{width:251.776000pt;}
._7_c00070{width:267.072000pt;}
._16_c00070{width:307.264000pt;}
.fs3_c00070{font-size:42.666667pt;}
.fs1_c00070{font-size:61.333333pt;}
.fs0_c00070{font-size:64.000000pt;}
.fs2_c00070{font-size:77.333333pt;}
.y0_c00070{bottom:0.000000pt;}
.y1f_c00070{bottom:2.760000pt;}
.y1e_c00070{bottom:6.425206pt;}
.y1d_c00070{bottom:31.760000pt;}
.y1c_c00070{bottom:56.160000pt;}
.y1b_c00070{bottom:78.560000pt;}
.y1a_c00070{bottom:100.293333pt;}
.y19_c00070{bottom:122.426667pt;}
.y18_c00070{bottom:143.093333pt;}
.y17_c00070{bottom:165.893333pt;}
.y16_c00070{bottom:186.693333pt;}
.y15_c00070{bottom:210.293333pt;}
.y14_c00070{bottom:231.893333pt;}
.y13_c00070{bottom:250.160000pt;}
.y12_c00070{bottom:273.626667pt;}
.y11_c00070{bottom:294.560000pt;}
.y10_c00070{bottom:316.560000pt;}
.yf_c00070{bottom:338.426667pt;}
.ye_c00070{bottom:360.293333pt;}
.yd_c00070{bottom:381.893333pt;}
.yc_c00070{bottom:403.893333pt;}
.yb_c00070{bottom:425.760000pt;}
.ya_c00070{bottom:447.626667pt;}
.y9_c00070{bottom:469.226667pt;}
.y8_c00070{bottom:491.360000pt;}
.y7_c00070{bottom:512.960000pt;}
.y6_c00070{bottom:534.960000pt;}
.y5_c00070{bottom:556.560000pt;}
.y4_c00070{bottom:578.160000pt;}
.y3_c00070{bottom:600.293333pt;}
.y2_c00070{bottom:621.626667pt;}
.y1_c00070{bottom:644.160000pt;}
.h4_c00070{height:11.733399pt;}
.h5_c00070{height:38.937500pt;}
.h2_c00070{height:81.031250pt;}
.h3_c00070{height:97.912760pt;}
.h0_c00070{height:699.866667pt;}
.h1_c00070{height:700.000000pt;}
.w2_c00070{width:93.222667pt;}
.w0_c00070{width:496.533333pt;}
.w1_c00070{width:496.666667pt;}
.x0_c00070{left:0.000000pt;}
.x5_c00070{left:33.866667pt;}
.x2_c00070{left:34.800000pt;}
.x3_c00070{left:36.000000pt;}
.x4_c00070{left:37.200000pt;}
.x1_c00070{left:131.733333pt;}
.x7_c00070{left:205.434896pt;}
.x6_c00070{left:348.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d2b5c1d6ca343ac7329c28cf.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00071;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00071;src:url('chunks/assets/font_1cfec9977c39fd37a481cc57.woff2')format("woff");}.ff3_c00071{font-family:ff3_c00071;line-height:1.568848;font-style:normal;font-weight:normal;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_74f1b04dbf1c3f52d8df3fbd.woff2')format("woff");}.ff4_c00071{font-family:ff4_c00071;line-height:1.480469;font-style:normal;font-weight:normal;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_66c1c425f1e2bddf1eeb35f6.woff2')format("woff");}.ff5_c00071{font-family:ff5_c00071;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00071;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00071{font-family:ff6_c00071;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00071{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00071{vertical-align:0.000000px;}
.ls5_c00071{letter-spacing:-15.000000px;}
.ls3_c00071{letter-spacing:0.000000px;}
.ls0_c00071{letter-spacing:3.000000px;}
.ls2_c00071{letter-spacing:3.144000px;}
.ls1_c00071{letter-spacing:6.000000px;}
.ls4_c00071{letter-spacing:39.000000px;}
.sc__c00071{text-shadow:none;}
.sc0_c00071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00071{-webkit-text-stroke:0px transparent;}
.sc0_c00071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00071{word-spacing:-56.352000px;}
.ws3_c00071{word-spacing:-34.320000px;}
.ws1_c00071{word-spacing:-33.660000px;}
.ws4_c00071{word-spacing:-33.192000px;}
.ws0_c00071{word-spacing:-21.000000px;}
.ws5_c00071{word-spacing:0.000000px;}
._d_c00071{margin-left:-33.006000px;}
._10_c00071{margin-left:-9.048000px;}
._c_c00071{margin-left:-7.434000px;}
._3_c00071{margin-left:-5.712000px;}
._a_c00071{margin-left:-4.392000px;}
._7_c00071{margin-left:-2.832000px;}
._6_c00071{margin-left:-1.368000px;}
._5_c00071{width:1.584000px;}
._1_c00071{width:3.360000px;}
._9_c00071{width:4.656000px;}
._2_c00071{width:5.712000px;}
._0_c00071{width:7.728000px;}
._8_c00071{width:9.240000px;}
._12_c00071{width:10.368000px;}
._11_c00071{width:11.376000px;}
._4_c00071{width:12.432000px;}
._f_c00071{width:13.680000px;}
._b_c00071{width:15.672000px;}
._e_c00071{width:17.160000px;}
.fc2_c00071{color:transparent;}
.fc1_c00071{color:rgb(128,128,128);}
.fc0_c00071{color:rgb(0,0,0);}
.fs5_c00071{font-size:48.000000px;}
.fs3_c00071{font-size:60.000000px;}
.fs1_c00071{font-size:72.000000px;}
.fs4_c00071{font-size:78.000000px;}
.fs2_c00071{font-size:81.000000px;}
.fs0_c00071{font-size:84.000000px;}
.y0_c00071{bottom:0.000000px;}
.y1f_c00071{bottom:3.105000px;}
.y1e_c00071{bottom:7.228355px;}
.y1d_c00071{bottom:39.435000px;}
.y1c_c00071{bottom:64.785000px;}
.y1b_c00071{bottom:90.735000px;}
.y1a_c00071{bottom:115.635000px;}
.y19_c00071{bottom:140.085000px;}
.y18_c00071{bottom:165.285000px;}
.y17_c00071{bottom:190.035000px;}
.y16_c00071{bottom:214.635000px;}
.y15_c00071{bottom:239.235000px;}
.y14_c00071{bottom:263.835000px;}
.y13_c00071{bottom:287.835000px;}
.y12_c00071{bottom:312.135000px;}
.y11_c00071{bottom:336.435000px;}
.y10_c00071{bottom:360.735000px;}
.yf_c00071{bottom:385.635000px;}
.ye_c00071{bottom:410.685000px;}
.yd_c00071{bottom:434.385000px;}
.yc_c00071{bottom:460.035000px;}
.yb_c00071{bottom:484.185000px;}
.ya_c00071{bottom:508.485000px;}
.y9_c00071{bottom:532.785000px;}
.y8_c00071{bottom:557.835000px;}
.y7_c00071{bottom:581.835000px;}
.y6_c00071{bottom:605.835000px;}
.y5_c00071{bottom:631.035000px;}
.y4_c00071{bottom:655.635000px;}
.y3_c00071{bottom:680.085000px;}
.y2_c00071{bottom:704.685000px;}
.y1_c00071{bottom:730.635000px;}
.h5_c00071{height:13.200074px;}
.h6_c00071{height:43.804688px;}
.h2_c00071{height:82.441406px;}
.h3_c00071{height:91.160156px;}
.h4_c00071{height:98.756836px;}
.h1_c00071{height:779.250000px;}
.h0_c00071{height:779.475000px;}
.w2_c00071{width:104.875500px;}
.w1_c00071{width:540.000000px;}
.w0_c00071{width:540.300000px;}
.x0_c00071{left:0.000000px;}
.x8_c00071{left:131.250000px;}
.x7_c00071{left:133.050000px;}
.x6_c00071{left:135.450000px;}
.x3_c00071{left:136.650000px;}
.x5_c00071{left:137.700000px;}
.x4_c00071{left:139.050000px;}
.x2_c00071{left:140.400000px;}
.xa_c00071{left:221.964249px;}
.x1_c00071{left:254.850000px;}
.x9_c00071{left:473.100000px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls5_c00071{letter-spacing:-13.333333pt;}
.ls3_c00071{letter-spacing:0.000000pt;}
.ls0_c00071{letter-spacing:2.666667pt;}
.ls2_c00071{letter-spacing:2.794667pt;}
.ls1_c00071{letter-spacing:5.333333pt;}
.ls4_c00071{letter-spacing:34.666667pt;}
.ws2_c00071{word-spacing:-50.090667pt;}
.ws3_c00071{word-spacing:-30.506667pt;}
.ws1_c00071{word-spacing:-29.920000pt;}
.ws4_c00071{word-spacing:-29.504000pt;}
.ws0_c00071{word-spacing:-18.666667pt;}
.ws5_c00071{word-spacing:0.000000pt;}
._d_c00071{margin-left:-29.338667pt;}
._10_c00071{margin-left:-8.042667pt;}
._c_c00071{margin-left:-6.608000pt;}
._3_c00071{margin-left:-5.077333pt;}
._a_c00071{margin-left:-3.904000pt;}
._7_c00071{margin-left:-2.517333pt;}
._6_c00071{margin-left:-1.216000pt;}
._5_c00071{width:1.408000pt;}
._1_c00071{width:2.986667pt;}
._9_c00071{width:4.138667pt;}
._2_c00071{width:5.077333pt;}
._0_c00071{width:6.869333pt;}
._8_c00071{width:8.213333pt;}
._12_c00071{width:9.216000pt;}
._11_c00071{width:10.112000pt;}
._4_c00071{width:11.050667pt;}
._f_c00071{width:12.160000pt;}
._b_c00071{width:13.930667pt;}
._e_c00071{width:15.253333pt;}
.fs5_c00071{font-size:42.666667pt;}
.fs3_c00071{font-size:53.333333pt;}
.fs1_c00071{font-size:64.000000pt;}
.fs4_c00071{font-size:69.333333pt;}
.fs2_c00071{font-size:72.000000pt;}
.fs0_c00071{font-size:74.666667pt;}
.y0_c00071{bottom:0.000000pt;}
.y1f_c00071{bottom:2.760000pt;}
.y1e_c00071{bottom:6.425204pt;}
.y1d_c00071{bottom:35.053333pt;}
.y1c_c00071{bottom:57.586667pt;}
.y1b_c00071{bottom:80.653333pt;}
.y1a_c00071{bottom:102.786667pt;}
.y19_c00071{bottom:124.520000pt;}
.y18_c00071{bottom:146.920000pt;}
.y17_c00071{bottom:168.920000pt;}
.y16_c00071{bottom:190.786667pt;}
.y15_c00071{bottom:212.653333pt;}
.y14_c00071{bottom:234.520000pt;}
.y13_c00071{bottom:255.853333pt;}
.y12_c00071{bottom:277.453333pt;}
.y11_c00071{bottom:299.053333pt;}
.y10_c00071{bottom:320.653333pt;}
.yf_c00071{bottom:342.786667pt;}
.ye_c00071{bottom:365.053333pt;}
.yd_c00071{bottom:386.120000pt;}
.yc_c00071{bottom:408.920000pt;}
.yb_c00071{bottom:430.386667pt;}
.ya_c00071{bottom:451.986667pt;}
.y9_c00071{bottom:473.586667pt;}
.y8_c00071{bottom:495.853333pt;}
.y7_c00071{bottom:517.186667pt;}
.y6_c00071{bottom:538.520000pt;}
.y5_c00071{bottom:560.920000pt;}
.y4_c00071{bottom:582.786667pt;}
.y3_c00071{bottom:604.520000pt;}
.y2_c00071{bottom:626.386667pt;}
.y1_c00071{bottom:649.453333pt;}
.h5_c00071{height:11.733399pt;}
.h6_c00071{height:38.937500pt;}
.h2_c00071{height:73.281250pt;}
.h3_c00071{height:81.031250pt;}
.h4_c00071{height:87.783854pt;}
.h1_c00071{height:692.666667pt;}
.h0_c00071{height:692.866667pt;}
.w2_c00071{width:93.222667pt;}
.w1_c00071{width:480.000000pt;}
.w0_c00071{width:480.266667pt;}
.x0_c00071{left:0.000000pt;}
.x8_c00071{left:116.666667pt;}
.x7_c00071{left:118.266667pt;}
.x6_c00071{left:120.400000pt;}
.x3_c00071{left:121.466667pt;}
.x5_c00071{left:122.400000pt;}
.x4_c00071{left:123.600000pt;}
.x2_c00071{left:124.800000pt;}
.xa_c00071{left:197.301554pt;}
.x1_c00071{left:226.533333pt;}
.x9_c00071{left:420.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ccae0a71134e634c544e5d97.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00072;src:url('chunks/assets/font_6adec57a30171a6efa0f9841.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00072;src:url('chunks/assets/font_beab86fcc63a3b60d0b651a0.woff2')format("woff");}.ff3_c00072{font-family:ff3_c00072;line-height:1.568848;font-style:normal;font-weight:normal;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_df487c3327ee6b3262670e76.woff2')format("woff");}.ff4_c00072{font-family:ff4_c00072;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00072;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00072{font-family:ff5_c00072;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00072{vertical-align:0.000000px;}
.ls4_c00072{letter-spacing:-3.000000px;}
.ls3_c00072{letter-spacing:0.000000px;}
.ls0_c00072{letter-spacing:3.000000px;}
.ls1_c00072{letter-spacing:3.676800px;}
.ls2_c00072{letter-spacing:5.415000px;}
.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:-20.352000px;}
.ws0_c00072{word-spacing:-16.629000px;}
.ws2_c00072{word-spacing:0.000000px;}
._14_c00072{margin-left:-24.696000px;}
._19_c00072{margin-left:-21.384000px;}
._18_c00072{margin-left:-17.928000px;}
._1a_c00072{margin-left:-15.156000px;}
._17_c00072{margin-left:-14.148000px;}
._12_c00072{margin-left:-13.104000px;}
._15_c00072{margin-left:-11.808000px;}
._13_c00072{margin-left:-10.224000px;}
._16_c00072{margin-left:-8.712000px;}
._10_c00072{margin-left:-7.668000px;}
._f_c00072{margin-left:-6.336000px;}
._11_c00072{margin-left:-5.040000px;}
._a_c00072{margin-left:-3.672000px;}
._7_c00072{margin-left:-2.664000px;}
._8_c00072{margin-left:-1.584000px;}
._9_c00072{width:1.512000px;}
._b_c00072{width:2.808000px;}
._e_c00072{width:4.212000px;}
._4_c00072{width:5.292000px;}
._c_c00072{width:6.444000px;}
._1_c00072{width:8.904000px;}
._2_c00072{width:10.752000px;}
._d_c00072{width:12.816000px;}
._0_c00072{width:14.364000px;}
._3_c00072{width:15.456000px;}
._6_c00072{width:16.548000px;}
._1b_c00072{width:29.232000px;}
._5_c00072{width:303.828000px;}
.fc2_c00072{color:transparent;}
.fc1_c00072{color:rgb(128,128,128);}
.fc0_c00072{color:rgb(0,0,0);}
.fs1_c00072{font-size:24.000000px;}
.fs4_c00072{font-size:45.600000px;}
.fs7_c00072{font-size:48.000000px;}
.fs5_c00072{font-size:57.000000px;}
.fs3_c00072{font-size:69.000000px;}
.fs2_c00072{font-size:72.000000px;}
.fs6_c00072{font-size:78.000000px;}
.fs0_c00072{font-size:84.000000px;}
.y0_c00072{bottom:0.000000px;}
.y20_c00072{bottom:3.105000px;}
.y1f_c00072{bottom:7.228369px;}
.y1e_c00072{bottom:38.820000px;}
.y1d_c00072{bottom:65.820000px;}
.y1c_c00072{bottom:91.770000px;}
.y1b_c00072{bottom:117.420000px;}
.y1a_c00072{bottom:141.120000px;}
.y19_c00072{bottom:167.970000px;}
.y18_c00072{bottom:192.720000px;}
.y17_c00072{bottom:216.720000px;}
.y16_c00072{bottom:241.020000px;}
.y15_c00072{bottom:269.370000px;}
.y14_c00072{bottom:287.220000px;}
.y13_c00072{bottom:311.520000px;}
.y12_c00072{bottom:338.070000px;}
.y11_c00072{bottom:362.070000px;}
.y10_c00072{bottom:386.370000px;}
.yf_c00072{bottom:411.720000px;}
.ye_c00072{bottom:436.620000px;}
.yd_c00072{bottom:460.920000px;}
.yc_c00072{bottom:485.970000px;}
.yb_c00072{bottom:510.270000px;}
.ya_c00072{bottom:534.570000px;}
.y9_c00072{bottom:558.870000px;}
.y8_c00072{bottom:583.770000px;}
.y7_c00072{bottom:608.520000px;}
.y6_c00072{bottom:633.120000px;}
.y5_c00072{bottom:657.420000px;}
.y4_c00072{bottom:682.320000px;}
.y3_c00072{bottom:706.620000px;}
.y2_c00072{bottom:725.220000px;}
.y1_c00072{bottom:731.670000px;}
.h6_c00072{height:13.200073px;}
.h3_c00072{height:24.187500px;}
.h7_c00072{height:43.804688px;}
.h2_c00072{height:82.400391px;}
.h4_c00072{height:91.160156px;}
.h5_c00072{height:98.756836px;}
.h1_c00072{height:783.750000px;}
.h0_c00072{height:784.050000px;}
.w2_c00072{width:104.875500px;}
.w1_c00072{width:540.750000px;}
.w0_c00072{width:540.825000px;}
.x0_c00072{left:0.000000px;}
.x3_c00072{left:35.100000px;}
.x5_c00072{left:37.200000px;}
.x4_c00072{left:38.250000px;}
.x6_c00072{left:39.450000px;}
.x7_c00072{left:41.250000px;}
.x9_c00072{left:42.900000px;}
.x1_c00072{left:136.950000px;}
.xb_c00072{left:222.226730px;}
.x8_c00072{left:386.100000px;}
.x2_c00072{left:398.550000px;}
.xa_c00072{left:404.100000px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls4_c00072{letter-spacing:-2.666667pt;}
.ls3_c00072{letter-spacing:0.000000pt;}
.ls0_c00072{letter-spacing:2.666667pt;}
.ls1_c00072{letter-spacing:3.268267pt;}
.ls2_c00072{letter-spacing:4.813333pt;}
.ws1_c00072{word-spacing:-18.090667pt;}
.ws0_c00072{word-spacing:-14.781333pt;}
.ws2_c00072{word-spacing:0.000000pt;}
._14_c00072{margin-left:-21.952000pt;}
._19_c00072{margin-left:-19.008000pt;}
._18_c00072{margin-left:-15.936000pt;}
._1a_c00072{margin-left:-13.472000pt;}
._17_c00072{margin-left:-12.576000pt;}
._12_c00072{margin-left:-11.648000pt;}
._15_c00072{margin-left:-10.496000pt;}
._13_c00072{margin-left:-9.088000pt;}
._16_c00072{margin-left:-7.744000pt;}
._10_c00072{margin-left:-6.816000pt;}
._f_c00072{margin-left:-5.632000pt;}
._11_c00072{margin-left:-4.480000pt;}
._a_c00072{margin-left:-3.264000pt;}
._7_c00072{margin-left:-2.368000pt;}
._8_c00072{margin-left:-1.408000pt;}
._9_c00072{width:1.344000pt;}
._b_c00072{width:2.496000pt;}
._e_c00072{width:3.744000pt;}
._4_c00072{width:4.704000pt;}
._c_c00072{width:5.728000pt;}
._1_c00072{width:7.914667pt;}
._2_c00072{width:9.557333pt;}
._d_c00072{width:11.392000pt;}
._0_c00072{width:12.768000pt;}
._3_c00072{width:13.738667pt;}
._6_c00072{width:14.709333pt;}
._1b_c00072{width:25.984000pt;}
._5_c00072{width:270.069333pt;}
.fs1_c00072{font-size:21.333333pt;}
.fs4_c00072{font-size:40.533333pt;}
.fs7_c00072{font-size:42.666667pt;}
.fs5_c00072{font-size:50.666667pt;}
.fs3_c00072{font-size:61.333333pt;}
.fs2_c00072{font-size:64.000000pt;}
.fs6_c00072{font-size:69.333333pt;}
.fs0_c00072{font-size:74.666667pt;}
.y0_c00072{bottom:0.000000pt;}
.y20_c00072{bottom:2.760000pt;}
.y1f_c00072{bottom:6.425217pt;}
.y1e_c00072{bottom:34.506667pt;}
.y1d_c00072{bottom:58.506667pt;}
.y1c_c00072{bottom:81.573333pt;}
.y1b_c00072{bottom:104.373333pt;}
.y1a_c00072{bottom:125.440000pt;}
.y19_c00072{bottom:149.306667pt;}
.y18_c00072{bottom:171.306667pt;}
.y17_c00072{bottom:192.640000pt;}
.y16_c00072{bottom:214.240000pt;}
.y15_c00072{bottom:239.440000pt;}
.y14_c00072{bottom:255.306667pt;}
.y13_c00072{bottom:276.906667pt;}
.y12_c00072{bottom:300.506667pt;}
.y11_c00072{bottom:321.840000pt;}
.y10_c00072{bottom:343.440000pt;}
.yf_c00072{bottom:365.973333pt;}
.ye_c00072{bottom:388.106667pt;}
.yd_c00072{bottom:409.706667pt;}
.yc_c00072{bottom:431.973333pt;}
.yb_c00072{bottom:453.573333pt;}
.ya_c00072{bottom:475.173333pt;}
.y9_c00072{bottom:496.773333pt;}
.y8_c00072{bottom:518.906667pt;}
.y7_c00072{bottom:540.906667pt;}
.y6_c00072{bottom:562.773333pt;}
.y5_c00072{bottom:584.373333pt;}
.y4_c00072{bottom:606.506667pt;}
.y3_c00072{bottom:628.106667pt;}
.y2_c00072{bottom:644.640000pt;}
.y1_c00072{bottom:650.373333pt;}
.h6_c00072{height:11.733399pt;}
.h3_c00072{height:21.500000pt;}
.h7_c00072{height:38.937500pt;}
.h2_c00072{height:73.244792pt;}
.h4_c00072{height:81.031250pt;}
.h5_c00072{height:87.783854pt;}
.h1_c00072{height:696.666667pt;}
.h0_c00072{height:696.933333pt;}
.w2_c00072{width:93.222667pt;}
.w1_c00072{width:480.666667pt;}
.w0_c00072{width:480.733333pt;}
.x0_c00072{left:0.000000pt;}
.x3_c00072{left:31.200000pt;}
.x5_c00072{left:33.066667pt;}
.x4_c00072{left:34.000000pt;}
.x6_c00072{left:35.066667pt;}
.x7_c00072{left:36.666667pt;}
.x9_c00072{left:38.133333pt;}
.x1_c00072{left:121.733333pt;}
.xb_c00072{left:197.534871pt;}
.x8_c00072{left:343.200000pt;}
.x2_c00072{left:354.266667pt;}
.xa_c00072{left:359.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a914541d886985dd853e8a08.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00073;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00073;src:url('chunks/assets/font_bc8267f98a077057930bfdfd.woff2')format("woff");}.ff3_c00073{font-family:ff3_c00073;line-height:1.568848;font-style:normal;font-weight:normal;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_378a9215dbc96a54d658b1ce.woff2')format("woff");}.ff4_c00073{font-family:ff4_c00073;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00073{font-family:ff5_c00073;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00073{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00073{vertical-align:0.000000px;}
.ls0_c00073{letter-spacing:0.000000px;}
.ls1_c00073{letter-spacing:3.000000px;}
.sc__c00073{text-shadow:none;}
.sc0_c00073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00073{-webkit-text-stroke:0px transparent;}
.sc0_c00073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00073{word-spacing:-33.192000px;}
.ws1_c00073{word-spacing:-20.352000px;}
.ws2_c00073{word-spacing:-16.629000px;}
.ws3_c00073{word-spacing:0.000000px;}
._10_c00073{margin-left:-16.872000px;}
._16_c00073{margin-left:-14.868000px;}
._f_c00073{margin-left:-12.864000px;}
._d_c00073{margin-left:-10.536000px;}
._1_c00073{margin-left:-8.568000px;}
._c_c00073{margin-left:-7.488000px;}
._6_c00073{margin-left:-6.096000px;}
._8_c00073{margin-left:-4.872000px;}
._9_c00073{margin-left:-3.792000px;}
._7_c00073{margin-left:-2.712000px;}
._0_c00073{margin-left:-1.680000px;}
._5_c00073{width:1.728000px;}
._a_c00073{width:3.168000px;}
._3_c00073{width:4.452000px;}
._2_c00073{width:6.048000px;}
._11_c00073{width:7.392000px;}
._4_c00073{width:8.400000px;}
._e_c00073{width:9.948000px;}
._15_c00073{width:10.956000px;}
._b_c00073{width:12.288000px;}
._13_c00073{width:13.320000px;}
._14_c00073{width:15.792000px;}
._12_c00073{width:18.492000px;}
._17_c00073{width:26.352000px;}
.fc2_c00073{color:transparent;}
.fc1_c00073{color:rgb(128,128,128);}
.fc0_c00073{color:rgb(0,0,0);}
.fs3_c00073{font-size:48.000000px;}
.fs2_c00073{font-size:69.000000px;}
.fs1_c00073{font-size:72.000000px;}
.fs0_c00073{font-size:84.000000px;}
.y0_c00073{bottom:0.000000px;}
.y1f_c00073{bottom:3.105000px;}
.y1e_c00073{bottom:7.228369px;}
.y1d_c00073{bottom:51.270000px;}
.y1c_c00073{bottom:74.970000px;}
.y1b_c00073{bottom:100.920000px;}
.y1a_c00073{bottom:126.120000px;}
.y19_c00073{bottom:150.570000px;}
.y18_c00073{bottom:176.070000px;}
.y17_c00073{bottom:201.420000px;}
.y16_c00073{bottom:226.020000px;}
.y15_c00073{bottom:250.470000px;}
.y14_c00073{bottom:274.620000px;}
.y13_c00073{bottom:299.370000px;}
.y12_c00073{bottom:324.570000px;}
.y11_c00073{bottom:350.370000px;}
.y10_c00073{bottom:372.870000px;}
.yf_c00073{bottom:397.920000px;}
.ye_c00073{bottom:423.270000px;}
.yd_c00073{bottom:446.820000px;}
.yc_c00073{bottom:471.720000px;}
.yb_c00073{bottom:496.020000px;}
.ya_c00073{bottom:520.770000px;}
.y9_c00073{bottom:544.770000px;}
.y8_c00073{bottom:569.670000px;}
.y7_c00073{bottom:593.670000px;}
.y6_c00073{bottom:619.020000px;}
.y5_c00073{bottom:643.170000px;}
.y4_c00073{bottom:666.570000px;}
.y3_c00073{bottom:690.420000px;}
.y2_c00073{bottom:716.520000px;}
.y1_c00073{bottom:742.470000px;}
.h4_c00073{height:13.200073px;}
.h5_c00073{height:43.804688px;}
.h2_c00073{height:82.441406px;}
.h3_c00073{height:91.160156px;}
.h1_c00073{height:792.000000px;}
.h0_c00073{height:792.150000px;}
.w2_c00073{width:104.875500px;}
.w0_c00073{width:525.450000px;}
.w1_c00073{width:525.750000px;}
.x0_c00073{left:0.000000px;}
.x5_c00073{left:51.300000px;}
.x3_c00073{left:52.950000px;}
.x6_c00073{left:124.500000px;}
.x4_c00073{left:126.150000px;}
.x7_c00073{left:130.200000px;}
.x2_c00073{left:146.100000px;}
.x9_c00073{left:214.539230px;}
.x1_c00073{left:241.350000px;}
.x8_c00073{left:471.150000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls0_c00073{letter-spacing:0.000000pt;}
.ls1_c00073{letter-spacing:2.666667pt;}
.ws0_c00073{word-spacing:-29.504000pt;}
.ws1_c00073{word-spacing:-18.090667pt;}
.ws2_c00073{word-spacing:-14.781333pt;}
.ws3_c00073{word-spacing:0.000000pt;}
._10_c00073{margin-left:-14.997333pt;}
._16_c00073{margin-left:-13.216000pt;}
._f_c00073{margin-left:-11.434667pt;}
._d_c00073{margin-left:-9.365333pt;}
._1_c00073{margin-left:-7.616000pt;}
._c_c00073{margin-left:-6.656000pt;}
._6_c00073{margin-left:-5.418667pt;}
._8_c00073{margin-left:-4.330667pt;}
._9_c00073{margin-left:-3.370667pt;}
._7_c00073{margin-left:-2.410667pt;}
._0_c00073{margin-left:-1.493333pt;}
._5_c00073{width:1.536000pt;}
._a_c00073{width:2.816000pt;}
._3_c00073{width:3.957333pt;}
._2_c00073{width:5.376000pt;}
._11_c00073{width:6.570667pt;}
._4_c00073{width:7.466667pt;}
._e_c00073{width:8.842667pt;}
._15_c00073{width:9.738667pt;}
._b_c00073{width:10.922667pt;}
._13_c00073{width:11.840000pt;}
._14_c00073{width:14.037333pt;}
._12_c00073{width:16.437333pt;}
._17_c00073{width:23.424000pt;}
.fs3_c00073{font-size:42.666667pt;}
.fs2_c00073{font-size:61.333333pt;}
.fs1_c00073{font-size:64.000000pt;}
.fs0_c00073{font-size:74.666667pt;}
.y0_c00073{bottom:0.000000pt;}
.y1f_c00073{bottom:2.760000pt;}
.y1e_c00073{bottom:6.425217pt;}
.y1d_c00073{bottom:45.573333pt;}
.y1c_c00073{bottom:66.640000pt;}
.y1b_c00073{bottom:89.706667pt;}
.y1a_c00073{bottom:112.106667pt;}
.y19_c00073{bottom:133.840000pt;}
.y18_c00073{bottom:156.506667pt;}
.y17_c00073{bottom:179.040000pt;}
.y16_c00073{bottom:200.906667pt;}
.y15_c00073{bottom:222.640000pt;}
.y14_c00073{bottom:244.106667pt;}
.y13_c00073{bottom:266.106667pt;}
.y12_c00073{bottom:288.506667pt;}
.y11_c00073{bottom:311.440000pt;}
.y10_c00073{bottom:331.440000pt;}
.yf_c00073{bottom:353.706667pt;}
.ye_c00073{bottom:376.240000pt;}
.yd_c00073{bottom:397.173333pt;}
.yc_c00073{bottom:419.306667pt;}
.yb_c00073{bottom:440.906667pt;}
.ya_c00073{bottom:462.906667pt;}
.y9_c00073{bottom:484.240000pt;}
.y8_c00073{bottom:506.373333pt;}
.y7_c00073{bottom:527.706667pt;}
.y6_c00073{bottom:550.240000pt;}
.y5_c00073{bottom:571.706667pt;}
.y4_c00073{bottom:592.506667pt;}
.y3_c00073{bottom:613.706667pt;}
.y2_c00073{bottom:636.906667pt;}
.y1_c00073{bottom:659.973333pt;}
.h4_c00073{height:11.733399pt;}
.h5_c00073{height:38.937500pt;}
.h2_c00073{height:73.281250pt;}
.h3_c00073{height:81.031250pt;}
.h1_c00073{height:704.000000pt;}
.h0_c00073{height:704.133333pt;}
.w2_c00073{width:93.222667pt;}
.w0_c00073{width:467.066667pt;}
.w1_c00073{width:467.333333pt;}
.x0_c00073{left:0.000000pt;}
.x5_c00073{left:45.600000pt;}
.x3_c00073{left:47.066667pt;}
.x6_c00073{left:110.666667pt;}
.x4_c00073{left:112.133333pt;}
.x7_c00073{left:115.733333pt;}
.x2_c00073{left:129.866667pt;}
.x9_c00073{left:190.701538pt;}
.x1_c00073{left:214.533333pt;}
.x8_c00073{left:418.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_603e3a73ebe04f60f6ce661f.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00074;src:url('chunks/assets/font_03c6aa27d611acbd327e9315.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00074;src:url('chunks/assets/font_e6281693993891b5d61c8134.woff2')format("woff");}.ff3_c00074{font-family:ff3_c00074;line-height:1.568848;font-style:normal;font-weight:normal;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_b08e0387bb41ab7a3d3be562.woff2')format("woff");}.ff4_c00074{font-family:ff4_c00074;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00074{font-family:ff5_c00074;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00074{vertical-align:0.000000px;}
.ls3_c00074{letter-spacing:0.000000px;}
.ls1_c00074{letter-spacing:3.000000px;}
.ls0_c00074{letter-spacing:3.234000px;}
.ls2_c00074{letter-spacing:5.112000px;}
.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:-22.464000px;}
.ws1_c00074{word-spacing:-20.352000px;}
.ws2_c00074{word-spacing:-17.352000px;}
.ws0_c00074{word-spacing:-16.629000px;}
.ws4_c00074{word-spacing:0.000000px;}
._21_c00074{margin-left:-34.695000px;}
._14_c00074{margin-left:-18.072000px;}
._1c_c00074{margin-left:-16.290000px;}
._4_c00074{margin-left:-14.700000px;}
._1d_c00074{margin-left:-13.248000px;}
._1b_c00074{margin-left:-11.808000px;}
._8_c00074{margin-left:-10.800000px;}
._c_c00074{margin-left:-9.720000px;}
._b_c00074{margin-left:-8.352000px;}
._6_c00074{margin-left:-7.047000px;}
._e_c00074{margin-left:-5.760000px;}
._d_c00074{margin-left:-4.617000px;}
._9_c00074{margin-left:-3.096000px;}
._a_c00074{margin-left:-2.016000px;}
._19_c00074{margin-left:-1.008000px;}
._10_c00074{width:1.008000px;}
._7_c00074{width:2.016000px;}
._15_c00074{width:3.528000px;}
._3_c00074{width:4.536000px;}
._1_c00074{width:5.628000px;}
._2_c00074{width:7.476000px;}
._18_c00074{width:8.568000px;}
._0_c00074{width:9.660000px;}
._12_c00074{width:11.448000px;}
._1e_c00074{width:12.936000px;}
._17_c00074{width:14.472000px;}
._11_c00074{width:15.912000px;}
._16_c00074{width:17.424000px;}
._1a_c00074{width:19.284000px;}
._1f_c00074{width:30.207000px;}
._13_c00074{width:57.384000px;}
._f_c00074{width:164.142000px;}
._24_c00074{width:190.320000px;}
._23_c00074{width:303.696000px;}
._5_c00074{width:332.976000px;}
._22_c00074{width:423.330000px;}
._20_c00074{width:1114.002000px;}
.fc2_c00074{color:transparent;}
.fc1_c00074{color:rgb(128,128,128);}
.fc0_c00074{color:rgb(0,0,0);}
.fs5_c00074{font-size:48.000000px;}
.fs3_c00074{font-size:66.000000px;}
.fs4_c00074{font-size:69.000000px;}
.fs2_c00074{font-size:72.000000px;}
.fs1_c00074{font-size:81.000000px;}
.fs0_c00074{font-size:84.000000px;}
.y0_c00074{bottom:0.000000px;}
.y1f_c00074{bottom:3.105000px;}
.y1e_c00074{bottom:7.228357px;}
.y1d_c00074{bottom:47.280000px;}
.y1c_c00074{bottom:72.180000px;}
.y1b_c00074{bottom:99.180000px;}
.y1a_c00074{bottom:124.530000px;}
.y19_c00074{bottom:147.780000px;}
.y18_c00074{bottom:173.880000px;}
.y17_c00074{bottom:198.780000px;}
.y16_c00074{bottom:223.080000px;}
.y15_c00074{bottom:248.130000px;}
.y14_c00074{bottom:273.780000px;}
.y13_c00074{bottom:295.980000px;}
.y12_c00074{bottom:319.680000px;}
.y11_c00074{bottom:343.530000px;}
.y10_c00074{bottom:368.280000px;}
.yf_c00074{bottom:392.880000px;}
.ye_c00074{bottom:417.930000px;}
.yd_c00074{bottom:441.480000px;}
.yc_c00074{bottom:466.830000px;}
.yb_c00074{bottom:490.830000px;}
.ya_c00074{bottom:516.030000px;}
.y9_c00074{bottom:540.780000px;}
.y8_c00074{bottom:564.330000px;}
.y7_c00074{bottom:589.230000px;}
.y6_c00074{bottom:613.530000px;}
.y5_c00074{bottom:637.830000px;}
.y4_c00074{bottom:662.280000px;}
.y3_c00074{bottom:686.880000px;}
.y2_c00074{bottom:711.780000px;}
.y1_c00074{bottom:737.730000px;}
.h4_c00074{height:13.200074px;}
.h5_c00074{height:43.804688px;}
.h2_c00074{height:82.400391px;}
.h3_c00074{height:91.160156px;}
.h0_c00074{height:794.100000px;}
.h1_c00074{height:794.250000px;}
.w1_c00074{width:104.875500px;}
.w0_c00074{width:567.000000px;}
.x0_c00074{left:0.000000px;}
.xa_c00074{left:26.700000px;}
.x9_c00074{left:28.350000px;}
.x8_c00074{left:29.400000px;}
.x7_c00074{left:30.600000px;}
.x6_c00074{left:33.000000px;}
.x5_c00074{left:34.350000px;}
.x4_c00074{left:35.700000px;}
.x3_c00074{left:36.750000px;}
.x2_c00074{left:39.150000px;}
.x1_c00074{left:136.800000px;}
.xc_c00074{left:235.314240px;}
.xb_c00074{left:300.600000px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls3_c00074{letter-spacing:0.000000pt;}
.ls1_c00074{letter-spacing:2.666667pt;}
.ls0_c00074{letter-spacing:2.874667pt;}
.ls2_c00074{letter-spacing:4.544000pt;}
.ws3_c00074{word-spacing:-19.968000pt;}
.ws1_c00074{word-spacing:-18.090667pt;}
.ws2_c00074{word-spacing:-15.424000pt;}
.ws0_c00074{word-spacing:-14.781333pt;}
.ws4_c00074{word-spacing:0.000000pt;}
._21_c00074{margin-left:-30.840000pt;}
._14_c00074{margin-left:-16.064000pt;}
._1c_c00074{margin-left:-14.480000pt;}
._4_c00074{margin-left:-13.066667pt;}
._1d_c00074{margin-left:-11.776000pt;}
._1b_c00074{margin-left:-10.496000pt;}
._8_c00074{margin-left:-9.600000pt;}
._c_c00074{margin-left:-8.640000pt;}
._b_c00074{margin-left:-7.424000pt;}
._6_c00074{margin-left:-6.264000pt;}
._e_c00074{margin-left:-5.120000pt;}
._d_c00074{margin-left:-4.104000pt;}
._9_c00074{margin-left:-2.752000pt;}
._a_c00074{margin-left:-1.792000pt;}
._19_c00074{margin-left:-0.896000pt;}
._10_c00074{width:0.896000pt;}
._7_c00074{width:1.792000pt;}
._15_c00074{width:3.136000pt;}
._3_c00074{width:4.032000pt;}
._1_c00074{width:5.002667pt;}
._2_c00074{width:6.645333pt;}
._18_c00074{width:7.616000pt;}
._0_c00074{width:8.586667pt;}
._12_c00074{width:10.176000pt;}
._1e_c00074{width:11.498667pt;}
._17_c00074{width:12.864000pt;}
._11_c00074{width:14.144000pt;}
._16_c00074{width:15.488000pt;}
._1a_c00074{width:17.141333pt;}
._1f_c00074{width:26.850667pt;}
._13_c00074{width:51.008000pt;}
._f_c00074{width:145.904000pt;}
._24_c00074{width:169.173333pt;}
._23_c00074{width:269.952000pt;}
._5_c00074{width:295.978667pt;}
._22_c00074{width:376.293333pt;}
._20_c00074{width:990.224000pt;}
.fs5_c00074{font-size:42.666667pt;}
.fs3_c00074{font-size:58.666667pt;}
.fs4_c00074{font-size:61.333333pt;}
.fs2_c00074{font-size:64.000000pt;}
.fs1_c00074{font-size:72.000000pt;}
.fs0_c00074{font-size:74.666667pt;}
.y0_c00074{bottom:0.000000pt;}
.y1f_c00074{bottom:2.760000pt;}
.y1e_c00074{bottom:6.425206pt;}
.y1d_c00074{bottom:42.026667pt;}
.y1c_c00074{bottom:64.160000pt;}
.y1b_c00074{bottom:88.160000pt;}
.y1a_c00074{bottom:110.693333pt;}
.y19_c00074{bottom:131.360000pt;}
.y18_c00074{bottom:154.560000pt;}
.y17_c00074{bottom:176.693333pt;}
.y16_c00074{bottom:198.293333pt;}
.y15_c00074{bottom:220.560000pt;}
.y14_c00074{bottom:243.360000pt;}
.y13_c00074{bottom:263.093333pt;}
.y12_c00074{bottom:284.160000pt;}
.y11_c00074{bottom:305.360000pt;}
.y10_c00074{bottom:327.360000pt;}
.yf_c00074{bottom:349.226667pt;}
.ye_c00074{bottom:371.493333pt;}
.yd_c00074{bottom:392.426667pt;}
.yc_c00074{bottom:414.960000pt;}
.yb_c00074{bottom:436.293333pt;}
.ya_c00074{bottom:458.693333pt;}
.y9_c00074{bottom:480.693333pt;}
.y8_c00074{bottom:501.626667pt;}
.y7_c00074{bottom:523.760000pt;}
.y6_c00074{bottom:545.360000pt;}
.y5_c00074{bottom:566.960000pt;}
.y4_c00074{bottom:588.693333pt;}
.y3_c00074{bottom:610.560000pt;}
.y2_c00074{bottom:632.693333pt;}
.y1_c00074{bottom:655.760000pt;}
.h4_c00074{height:11.733399pt;}
.h5_c00074{height:38.937500pt;}
.h2_c00074{height:73.244792pt;}
.h3_c00074{height:81.031250pt;}
.h0_c00074{height:705.866667pt;}
.h1_c00074{height:706.000000pt;}
.w1_c00074{width:93.222667pt;}
.w0_c00074{width:504.000000pt;}
.x0_c00074{left:0.000000pt;}
.xa_c00074{left:23.733333pt;}
.x9_c00074{left:25.200000pt;}
.x8_c00074{left:26.133333pt;}
.x7_c00074{left:27.200000pt;}
.x6_c00074{left:29.333333pt;}
.x5_c00074{left:30.533333pt;}
.x4_c00074{left:31.733333pt;}
.x3_c00074{left:32.666667pt;}
.x2_c00074{left:34.800000pt;}
.x1_c00074{left:121.600000pt;}
.xc_c00074{left:209.168213pt;}
.xb_c00074{left:267.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6cea80c0c02500cf877f4912.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.480469;font-style:normal;font-weight:normal;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_ee31e958f5b48bab80bc3a25.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00075{font-family:ff3_c00075;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00075{vertical-align:0.000000px;}
.ls5_c00075{letter-spacing:-3.000000px;}
.ls3_c00075{letter-spacing:0.000000px;}
.ls4_c00075{letter-spacing:3.000000px;}
.ls2_c00075{letter-spacing:5.946000px;}
.ls0_c00075{letter-spacing:12.615000px;}
.ls1_c00075{letter-spacing:20.829000px;}
.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;}
}
.ws5_c00075{word-spacing:-20.352000px;}
.ws4_c00075{word-spacing:-18.906000px;}
.ws0_c00075{word-spacing:-17.352000px;}
.ws2_c00075{word-spacing:-16.629000px;}
.ws3_c00075{word-spacing:-13.629000px;}
.ws1_c00075{word-spacing:-0.072000px;}
.ws6_c00075{word-spacing:0.000000px;}
._1d_c00075{margin-left:-20.700000px;}
._1a_c00075{margin-left:-16.776000px;}
._12_c00075{margin-left:-14.472000px;}
._15_c00075{margin-left:-12.960000px;}
._14_c00075{margin-left:-11.502000px;}
._11_c00075{margin-left:-10.170000px;}
._6_c00075{margin-left:-8.712000px;}
._13_c00075{margin-left:-6.840000px;}
._e_c00075{margin-left:-5.526000px;}
._a_c00075{margin-left:-3.600000px;}
._10_c00075{margin-left:-2.304000px;}
._9_c00075{margin-left:-1.152000px;}
._8_c00075{width:1.296000px;}
._c_c00075{width:2.376000px;}
._b_c00075{width:3.384000px;}
._1_c00075{width:4.392000px;}
._4_c00075{width:5.400000px;}
._18_c00075{width:6.840000px;}
._3_c00075{width:7.848000px;}
._2_c00075{width:9.144000px;}
._0_c00075{width:10.872000px;}
._5_c00075{width:13.248000px;}
._16_c00075{width:15.615000px;}
._1b_c00075{width:16.629000px;}
._19_c00075{width:28.224000px;}
._17_c00075{width:29.736000px;}
._d_c00075{width:33.984000px;}
._1c_c00075{width:52.158000px;}
._f_c00075{width:55.296000px;}
._7_c00075{width:80.136000px;}
.fc2_c00075{color:transparent;}
.fc1_c00075{color:rgb(128,128,128);}
.fc0_c00075{color:rgb(0,0,0);}
.fs3_c00075{font-size:48.000000px;}
.fs2_c00075{font-size:66.000000px;}
.fs1_c00075{font-size:69.000000px;}
.fs0_c00075{font-size:72.000000px;}
.y0_c00075{bottom:0.000000px;}
.y1e_c00075{bottom:3.105000px;}
.y1d_c00075{bottom:7.228371px;}
.y1c_c00075{bottom:71.565000px;}
.y1b_c00075{bottom:97.965000px;}
.y1a_c00075{bottom:122.865000px;}
.y19_c00075{bottom:148.965000px;}
.y18_c00075{bottom:172.815000px;}
.y17_c00075{bottom:197.865000px;}
.y16_c00075{bottom:223.215000px;}
.y15_c00075{bottom:248.115000px;}
.y14_c00075{bottom:273.015000px;}
.y13_c00075{bottom:296.415000px;}
.y12_c00075{bottom:319.665000px;}
.y11_c00075{bottom:346.065000px;}
.y10_c00075{bottom:371.265000px;}
.yf_c00075{bottom:397.365000px;}
.ye_c00075{bottom:419.565000px;}
.yd_c00075{bottom:444.915000px;}
.yc_c00075{bottom:468.765000px;}
.yb_c00075{bottom:494.115000px;}
.ya_c00075{bottom:517.815000px;}
.y9_c00075{bottom:542.115000px;}
.y8_c00075{bottom:566.415000px;}
.y7_c00075{bottom:591.315000px;}
.y6_c00075{bottom:615.915000px;}
.y5_c00075{bottom:639.915000px;}
.y4_c00075{bottom:664.515000px;}
.y3_c00075{bottom:689.265000px;}
.y2_c00075{bottom:713.565000px;}
.y1_c00075{bottom:738.765000px;}
.h3_c00075{height:13.200074px;}
.h4_c00075{height:43.804688px;}
.h2_c00075{height:91.160156px;}
.h0_c00075{height:786.525000px;}
.h1_c00075{height:786.750000px;}
.w1_c00075{width:104.875500px;}
.w0_c00075{width:526.500000px;}
.x0_c00075{left:0.000000px;}
.x9_c00075{left:44.550000px;}
.xa_c00075{left:48.900000px;}
.x8_c00075{left:50.850000px;}
.x3_c00075{left:60.300000px;}
.x2_c00075{left:72.450000px;}
.x5_c00075{left:125.550000px;}
.x4_c00075{left:126.600000px;}
.x6_c00075{left:128.250000px;}
.x7_c00075{left:129.600000px;}
.xb_c00075{left:131.550000px;}
.xc_c00075{left:215.064240px;}
.x1_c00075{left:244.050000px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls5_c00075{letter-spacing:-2.666667pt;}
.ls3_c00075{letter-spacing:0.000000pt;}
.ls4_c00075{letter-spacing:2.666667pt;}
.ls2_c00075{letter-spacing:5.285333pt;}
.ls0_c00075{letter-spacing:11.213333pt;}
.ls1_c00075{letter-spacing:18.514667pt;}
.ws5_c00075{word-spacing:-18.090667pt;}
.ws4_c00075{word-spacing:-16.805333pt;}
.ws0_c00075{word-spacing:-15.424000pt;}
.ws2_c00075{word-spacing:-14.781333pt;}
.ws3_c00075{word-spacing:-12.114667pt;}
.ws1_c00075{word-spacing:-0.064000pt;}
.ws6_c00075{word-spacing:0.000000pt;}
._1d_c00075{margin-left:-18.400000pt;}
._1a_c00075{margin-left:-14.912000pt;}
._12_c00075{margin-left:-12.864000pt;}
._15_c00075{margin-left:-11.520000pt;}
._14_c00075{margin-left:-10.224000pt;}
._11_c00075{margin-left:-9.040000pt;}
._6_c00075{margin-left:-7.744000pt;}
._13_c00075{margin-left:-6.080000pt;}
._e_c00075{margin-left:-4.912000pt;}
._a_c00075{margin-left:-3.200000pt;}
._10_c00075{margin-left:-2.048000pt;}
._9_c00075{margin-left:-1.024000pt;}
._8_c00075{width:1.152000pt;}
._c_c00075{width:2.112000pt;}
._b_c00075{width:3.008000pt;}
._1_c00075{width:3.904000pt;}
._4_c00075{width:4.800000pt;}
._18_c00075{width:6.080000pt;}
._3_c00075{width:6.976000pt;}
._2_c00075{width:8.128000pt;}
._0_c00075{width:9.664000pt;}
._5_c00075{width:11.776000pt;}
._16_c00075{width:13.880000pt;}
._1b_c00075{width:14.781333pt;}
._19_c00075{width:25.088000pt;}
._17_c00075{width:26.432000pt;}
._d_c00075{width:30.208000pt;}
._1c_c00075{width:46.362667pt;}
._f_c00075{width:49.152000pt;}
._7_c00075{width:71.232000pt;}
.fs3_c00075{font-size:42.666667pt;}
.fs2_c00075{font-size:58.666667pt;}
.fs1_c00075{font-size:61.333333pt;}
.fs0_c00075{font-size:64.000000pt;}
.y0_c00075{bottom:0.000000pt;}
.y1e_c00075{bottom:2.760000pt;}
.y1d_c00075{bottom:6.425219pt;}
.y1c_c00075{bottom:63.613333pt;}
.y1b_c00075{bottom:87.080000pt;}
.y1a_c00075{bottom:109.213333pt;}
.y19_c00075{bottom:132.413333pt;}
.y18_c00075{bottom:153.613333pt;}
.y17_c00075{bottom:175.880000pt;}
.y16_c00075{bottom:198.413333pt;}
.y15_c00075{bottom:220.546667pt;}
.y14_c00075{bottom:242.680000pt;}
.y13_c00075{bottom:263.480000pt;}
.y12_c00075{bottom:284.146667pt;}
.y11_c00075{bottom:307.613333pt;}
.y10_c00075{bottom:330.013333pt;}
.yf_c00075{bottom:353.213333pt;}
.ye_c00075{bottom:372.946667pt;}
.yd_c00075{bottom:395.480000pt;}
.yc_c00075{bottom:416.680000pt;}
.yb_c00075{bottom:439.213333pt;}
.ya_c00075{bottom:460.280000pt;}
.y9_c00075{bottom:481.880000pt;}
.y8_c00075{bottom:503.480000pt;}
.y7_c00075{bottom:525.613333pt;}
.y6_c00075{bottom:547.480000pt;}
.y5_c00075{bottom:568.813333pt;}
.y4_c00075{bottom:590.680000pt;}
.y3_c00075{bottom:612.680000pt;}
.y2_c00075{bottom:634.280000pt;}
.y1_c00075{bottom:656.680000pt;}
.h3_c00075{height:11.733399pt;}
.h4_c00075{height:38.937500pt;}
.h2_c00075{height:81.031250pt;}
.h0_c00075{height:699.133333pt;}
.h1_c00075{height:699.333333pt;}
.w1_c00075{width:93.222667pt;}
.w0_c00075{width:468.000000pt;}
.x0_c00075{left:0.000000pt;}
.x9_c00075{left:39.600000pt;}
.xa_c00075{left:43.466667pt;}
.x8_c00075{left:45.200000pt;}
.x3_c00075{left:53.600000pt;}
.x2_c00075{left:64.400000pt;}
.x5_c00075{left:111.600000pt;}
.x4_c00075{left:112.533333pt;}
.x6_c00075{left:114.000000pt;}
.x7_c00075{left:115.200000pt;}
.xb_c00075{left:116.933333pt;}
.xc_c00075{left:191.168213pt;}
.x1_c00075{left:216.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b113424a00c4a8b53ce5dcf9.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00076;src:url('chunks/assets/font_6ca4fc84627a66e6aa613071.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:1.568848;font-style:normal;font-weight:normal;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_ccf844ec20210be36e3a0907.woff2')format("woff");}.ff3_c00076{font-family:ff3_c00076;line-height:1.568848;font-style:normal;font-weight:normal;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_fc780b31471329762a419cea.woff2')format("woff");}.ff4_c00076{font-family:ff4_c00076;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00076;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00076{font-family:ff5_c00076;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00076{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00076{vertical-align:0.000000px;}
.ls2_c00076{letter-spacing:0.000000px;}
.ls0_c00076{letter-spacing:3.000000px;}
.ls1_c00076{letter-spacing:4.494000px;}
.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;}
}
.ws2_c00076{word-spacing:-17.352000px;}
.ws0_c00076{word-spacing:-16.629000px;}
.ws1_c00076{word-spacing:-12.724800px;}
.ws3_c00076{word-spacing:0.000000px;}
._17_c00076{margin-left:-12.621000px;}
._9_c00076{margin-left:-10.584000px;}
._16_c00076{margin-left:-9.195000px;}
._11_c00076{margin-left:-7.836000px;}
._3_c00076{margin-left:-6.216000px;}
._f_c00076{margin-left:-5.064000px;}
._10_c00076{margin-left:-3.780000px;}
._6_c00076{margin-left:-2.436000px;}
._8_c00076{margin-left:-1.380000px;}
._4_c00076{width:1.512000px;}
._2_c00076{width:3.024000px;}
._1_c00076{width:4.704000px;}
._7_c00076{width:5.832000px;}
._13_c00076{width:6.864000px;}
._0_c00076{width:8.064000px;}
._18_c00076{width:9.270000px;}
._b_c00076{width:10.428000px;}
._a_c00076{width:11.472000px;}
._e_c00076{width:13.233000px;}
._15_c00076{width:14.325000px;}
._d_c00076{width:15.816000px;}
._c_c00076{width:18.120000px;}
._14_c00076{width:23.460000px;}
._1d_c00076{width:28.842000px;}
._1a_c00076{width:30.792000px;}
._19_c00076{width:39.243000px;}
._1b_c00076{width:40.644000px;}
._1c_c00076{width:42.504000px;}
._12_c00076{width:54.900000px;}
._1e_c00076{width:225.147000px;}
._5_c00076{width:484.092000px;}
.fc2_c00076{color:transparent;}
.fc1_c00076{color:rgb(128,128,128);}
.fc0_c00076{color:rgb(0,0,0);}
.fs5_c00076{font-size:48.000000px;}
.fs3_c00076{font-size:52.800000px;}
.fs4_c00076{font-size:66.000000px;}
.fs2_c00076{font-size:69.000000px;}
.fs1_c00076{font-size:72.000000px;}
.fs0_c00076{font-size:84.000000px;}
.y0_c00076{bottom:0.000000px;}
.y1f_c00076{bottom:3.105000px;}
.y1e_c00076{bottom:7.228371px;}
.y1d_c00076{bottom:46.665000px;}
.y1c_c00076{bottom:71.865000px;}
.y1b_c00076{bottom:97.515000px;}
.y1a_c00076{bottom:122.265000px;}
.y19_c00076{bottom:147.465000px;}
.y18_c00076{bottom:172.515000px;}
.y17_c00076{bottom:197.115000px;}
.y16_c00076{bottom:221.865000px;}
.y15_c00076{bottom:247.365000px;}
.y14_c00076{bottom:271.065000px;}
.y13_c00076{bottom:294.315000px;}
.y12_c00076{bottom:317.565000px;}
.y11_c00076{bottom:342.315000px;}
.y10_c00076{bottom:367.665000px;}
.yf_c00076{bottom:392.565000px;}
.ye_c00076{bottom:416.565000px;}
.yd_c00076{bottom:440.565000px;}
.yc_c00076{bottom:465.465000px;}
.yb_c00076{bottom:491.865000px;}
.ya_c00076{bottom:514.065000px;}
.y9_c00076{bottom:538.365000px;}
.y8_c00076{bottom:562.965000px;}
.y7_c00076{bottom:586.965000px;}
.y6_c00076{bottom:612.015000px;}
.y5_c00076{bottom:636.615000px;}
.y4_c00076{bottom:661.515000px;}
.y3_c00076{bottom:685.215000px;}
.y2_c00076{bottom:709.815000px;}
.y1_c00076{bottom:734.415000px;}
.h5_c00076{height:13.200074px;}
.h6_c00076{height:43.804688px;}
.h2_c00076{height:82.400391px;}
.h4_c00076{height:87.361816px;}
.h3_c00076{height:91.160156px;}
.h1_c00076{height:783.750000px;}
.h0_c00076{height:783.825000px;}
.w1_c00076{width:104.875500px;}
.w0_c00076{width:549.750000px;}
.x0_c00076{left:0.000000px;}
.x2_c00076{left:34.050000px;}
.x3_c00076{left:35.100000px;}
.x4_c00076{left:36.450000px;}
.x1_c00076{left:139.350000px;}
.x6_c00076{left:226.689240px;}
.x5_c00076{left:290.250000px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls2_c00076{letter-spacing:0.000000pt;}
.ls0_c00076{letter-spacing:2.666667pt;}
.ls1_c00076{letter-spacing:3.994667pt;}
.ws2_c00076{word-spacing:-15.424000pt;}
.ws0_c00076{word-spacing:-14.781333pt;}
.ws1_c00076{word-spacing:-11.310933pt;}
.ws3_c00076{word-spacing:0.000000pt;}
._17_c00076{margin-left:-11.218667pt;}
._9_c00076{margin-left:-9.408000pt;}
._16_c00076{margin-left:-8.173333pt;}
._11_c00076{margin-left:-6.965333pt;}
._3_c00076{margin-left:-5.525333pt;}
._f_c00076{margin-left:-4.501333pt;}
._10_c00076{margin-left:-3.360000pt;}
._6_c00076{margin-left:-2.165333pt;}
._8_c00076{margin-left:-1.226667pt;}
._4_c00076{width:1.344000pt;}
._2_c00076{width:2.688000pt;}
._1_c00076{width:4.181333pt;}
._7_c00076{width:5.184000pt;}
._13_c00076{width:6.101333pt;}
._0_c00076{width:7.168000pt;}
._18_c00076{width:8.240000pt;}
._b_c00076{width:9.269333pt;}
._a_c00076{width:10.197333pt;}
._e_c00076{width:11.762667pt;}
._15_c00076{width:12.733333pt;}
._d_c00076{width:14.058667pt;}
._c_c00076{width:16.106667pt;}
._14_c00076{width:20.853333pt;}
._1d_c00076{width:25.637333pt;}
._1a_c00076{width:27.370667pt;}
._19_c00076{width:34.882667pt;}
._1b_c00076{width:36.128000pt;}
._1c_c00076{width:37.781333pt;}
._12_c00076{width:48.800000pt;}
._1e_c00076{width:200.130667pt;}
._5_c00076{width:430.304000pt;}
.fs5_c00076{font-size:42.666667pt;}
.fs3_c00076{font-size:46.933333pt;}
.fs4_c00076{font-size:58.666667pt;}
.fs2_c00076{font-size:61.333333pt;}
.fs1_c00076{font-size:64.000000pt;}
.fs0_c00076{font-size:74.666667pt;}
.y0_c00076{bottom:0.000000pt;}
.y1f_c00076{bottom:2.760000pt;}
.y1e_c00076{bottom:6.425219pt;}
.y1d_c00076{bottom:41.480000pt;}
.y1c_c00076{bottom:63.880000pt;}
.y1b_c00076{bottom:86.680000pt;}
.y1a_c00076{bottom:108.680000pt;}
.y19_c00076{bottom:131.080000pt;}
.y18_c00076{bottom:153.346667pt;}
.y17_c00076{bottom:175.213333pt;}
.y16_c00076{bottom:197.213333pt;}
.y15_c00076{bottom:219.880000pt;}
.y14_c00076{bottom:240.946667pt;}
.y13_c00076{bottom:261.613333pt;}
.y12_c00076{bottom:282.280000pt;}
.y11_c00076{bottom:304.280000pt;}
.y10_c00076{bottom:326.813333pt;}
.yf_c00076{bottom:348.946667pt;}
.ye_c00076{bottom:370.280000pt;}
.yd_c00076{bottom:391.613333pt;}
.yc_c00076{bottom:413.746667pt;}
.yb_c00076{bottom:437.213333pt;}
.ya_c00076{bottom:456.946667pt;}
.y9_c00076{bottom:478.546667pt;}
.y8_c00076{bottom:500.413333pt;}
.y7_c00076{bottom:521.746667pt;}
.y6_c00076{bottom:544.013333pt;}
.y5_c00076{bottom:565.880000pt;}
.y4_c00076{bottom:588.013333pt;}
.y3_c00076{bottom:609.080000pt;}
.y2_c00076{bottom:630.946667pt;}
.y1_c00076{bottom:652.813333pt;}
.h5_c00076{height:11.733399pt;}
.h6_c00076{height:38.937500pt;}
.h2_c00076{height:73.244792pt;}
.h4_c00076{height:77.654948pt;}
.h3_c00076{height:81.031250pt;}
.h1_c00076{height:696.666667pt;}
.h0_c00076{height:696.733333pt;}
.w1_c00076{width:93.222667pt;}
.w0_c00076{width:488.666667pt;}
.x0_c00076{left:0.000000pt;}
.x2_c00076{left:30.266667pt;}
.x3_c00076{left:31.200000pt;}
.x4_c00076{left:32.400000pt;}
.x1_c00076{left:123.866667pt;}
.x6_c00076{left:201.501546pt;}
.x5_c00076{left:258.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_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_0534eaac3bfd0c6c9a8fc1cc.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.568848;font-style:normal;font-weight:normal;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_d9c12e0510e22affceeda5c9.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00077{font-family:ff3_c00077;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00077{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00077{vertical-align:0.000000px;}
.ls3_c00077{letter-spacing:-15.000000px;}
.ls2_c00077{letter-spacing:0.000000px;}
.ls1_c00077{letter-spacing:3.000000px;}
.ls0_c00077{letter-spacing:6.048000px;}
.sc__c00077{text-shadow:none;}
.sc0_c00077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00077{-webkit-text-stroke:0px transparent;}
.sc0_c00077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00077{word-spacing:-33.192000px;}
.ws1_c00077{word-spacing:-20.352000px;}
.ws2_c00077{word-spacing:0.000000px;}
._2_c00077{margin-left:-23.184000px;}
._9_c00077{margin-left:-21.240000px;}
._11_c00077{margin-left:-16.608000px;}
._18_c00077{margin-left:-15.552000px;}
._12_c00077{margin-left:-14.184000px;}
._13_c00077{margin-left:-12.240000px;}
._b_c00077{margin-left:-10.800000px;}
._c_c00077{margin-left:-9.576000px;}
._19_c00077{margin-left:-8.496000px;}
._a_c00077{margin-left:-7.416000px;}
._16_c00077{margin-left:-6.408000px;}
._0_c00077{margin-left:-5.256000px;}
._f_c00077{margin-left:-4.032000px;}
._10_c00077{margin-left:-2.664000px;}
._14_c00077{margin-left:-1.368000px;}
._1b_c00077{width:1.080000px;}
._6_c00077{width:2.160000px;}
._5_c00077{width:3.312000px;}
._8_c00077{width:5.040000px;}
._4_c00077{width:6.120000px;}
._15_c00077{width:8.064000px;}
._7_c00077{width:9.576000px;}
._1c_c00077{width:11.232000px;}
._1a_c00077{width:13.176000px;}
._1d_c00077{width:15.408000px;}
._e_c00077{width:25.128000px;}
._1e_c00077{width:27.936000px;}
._1_c00077{width:31.248000px;}
._d_c00077{width:35.592000px;}
._17_c00077{width:160.704000px;}
._1f_c00077{width:300.120000px;}
._3_c00077{width:318.912000px;}
.fc2_c00077{color:transparent;}
.fc1_c00077{color:rgb(128,128,128);}
.fc0_c00077{color:rgb(0,0,0);}
.fs3_c00077{font-size:48.000000px;}
.fs1_c00077{font-size:51.000000px;}
.fs2_c00077{font-size:69.000000px;}
.fs0_c00077{font-size:72.000000px;}
.y0_c00077{bottom:0.000000px;}
.y1f_c00077{bottom:3.105000px;}
.y1e_c00077{bottom:7.228363px;}
.y1d_c00077{bottom:53.550000px;}
.y1c_c00077{bottom:76.950000px;}
.y1b_c00077{bottom:103.650000px;}
.y1a_c00077{bottom:128.250000px;}
.y19_c00077{bottom:152.250000px;}
.y18_c00077{bottom:177.900000px;}
.y17_c00077{bottom:201.750000px;}
.y16_c00077{bottom:227.400000px;}
.y15_c00077{bottom:253.800000px;}
.y14_c00077{bottom:277.200000px;}
.y13_c00077{bottom:302.400000px;}
.y12_c00077{bottom:325.650000px;}
.y11_c00077{bottom:349.650000px;}
.y10_c00077{bottom:374.700000px;}
.yf_c00077{bottom:399.600000px;}
.ye_c00077{bottom:423.900000px;}
.yd_c00077{bottom:448.500000px;}
.yc_c00077{bottom:472.800000px;}
.yb_c00077{bottom:497.850000px;}
.ya_c00077{bottom:522.150000px;}
.y9_c00077{bottom:547.500000px;}
.y8_c00077{bottom:571.350000px;}
.y7_c00077{bottom:595.800000px;}
.y6_c00077{bottom:620.400000px;}
.y5_c00077{bottom:644.250000px;}
.y4_c00077{bottom:668.850000px;}
.y3_c00077{bottom:692.850000px;}
.y2_c00077{bottom:717.900000px;}
.y1_c00077{bottom:744.750000px;}
.h5_c00077{height:13.200074px;}
.h6_c00077{height:43.804688px;}
.h4_c00077{height:87.361816px;}
.h2_c00077{height:91.160156px;}
.h3_c00077{height:91.760156px;}
.h0_c00077{height:799.200000px;}
.h1_c00077{height:799.500000px;}
.w2_c00077{width:104.875500px;}
.w0_c00077{width:545.700000px;}
.w1_c00077{width:546.000000px;}
.x0_c00077{left:0.000000px;}
.x8_c00077{left:124.800000px;}
.x1_c00077{left:130.200000px;}
.x3_c00077{left:131.250000px;}
.x4_c00077{left:132.600000px;}
.x5_c00077{left:134.100000px;}
.x6_c00077{left:135.300000px;}
.x7_c00077{left:136.650000px;}
.x9_c00077{left:137.700000px;}
.xa_c00077{left:138.750000px;}
.xb_c00077{left:140.100000px;}
.x2_c00077{left:160.650000px;}
.xd_c00077{left:224.664230px;}
.xc_c00077{left:471.750000px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls3_c00077{letter-spacing:-13.333333pt;}
.ls2_c00077{letter-spacing:0.000000pt;}
.ls1_c00077{letter-spacing:2.666667pt;}
.ls0_c00077{letter-spacing:5.376000pt;}
.ws0_c00077{word-spacing:-29.504000pt;}
.ws1_c00077{word-spacing:-18.090667pt;}
.ws2_c00077{word-spacing:0.000000pt;}
._2_c00077{margin-left:-20.608000pt;}
._9_c00077{margin-left:-18.880000pt;}
._11_c00077{margin-left:-14.762667pt;}
._18_c00077{margin-left:-13.824000pt;}
._12_c00077{margin-left:-12.608000pt;}
._13_c00077{margin-left:-10.880000pt;}
._b_c00077{margin-left:-9.600000pt;}
._c_c00077{margin-left:-8.512000pt;}
._19_c00077{margin-left:-7.552000pt;}
._a_c00077{margin-left:-6.592000pt;}
._16_c00077{margin-left:-5.696000pt;}
._0_c00077{margin-left:-4.672000pt;}
._f_c00077{margin-left:-3.584000pt;}
._10_c00077{margin-left:-2.368000pt;}
._14_c00077{margin-left:-1.216000pt;}
._1b_c00077{width:0.960000pt;}
._6_c00077{width:1.920000pt;}
._5_c00077{width:2.944000pt;}
._8_c00077{width:4.480000pt;}
._4_c00077{width:5.440000pt;}
._15_c00077{width:7.168000pt;}
._7_c00077{width:8.512000pt;}
._1c_c00077{width:9.984000pt;}
._1a_c00077{width:11.712000pt;}
._1d_c00077{width:13.696000pt;}
._e_c00077{width:22.336000pt;}
._1e_c00077{width:24.832000pt;}
._1_c00077{width:27.776000pt;}
._d_c00077{width:31.637333pt;}
._17_c00077{width:142.848000pt;}
._1f_c00077{width:266.773333pt;}
._3_c00077{width:283.477333pt;}
.fs3_c00077{font-size:42.666667pt;}
.fs1_c00077{font-size:45.333333pt;}
.fs2_c00077{font-size:61.333333pt;}
.fs0_c00077{font-size:64.000000pt;}
.y0_c00077{bottom:0.000000pt;}
.y1f_c00077{bottom:2.760000pt;}
.y1e_c00077{bottom:6.425212pt;}
.y1d_c00077{bottom:47.600000pt;}
.y1c_c00077{bottom:68.400000pt;}
.y1b_c00077{bottom:92.133333pt;}
.y1a_c00077{bottom:114.000000pt;}
.y19_c00077{bottom:135.333333pt;}
.y18_c00077{bottom:158.133333pt;}
.y17_c00077{bottom:179.333333pt;}
.y16_c00077{bottom:202.133333pt;}
.y15_c00077{bottom:225.600000pt;}
.y14_c00077{bottom:246.400000pt;}
.y13_c00077{bottom:268.800000pt;}
.y12_c00077{bottom:289.466667pt;}
.y11_c00077{bottom:310.800000pt;}
.y10_c00077{bottom:333.066667pt;}
.yf_c00077{bottom:355.200000pt;}
.ye_c00077{bottom:376.800000pt;}
.yd_c00077{bottom:398.666667pt;}
.yc_c00077{bottom:420.266667pt;}
.yb_c00077{bottom:442.533333pt;}
.ya_c00077{bottom:464.133333pt;}
.y9_c00077{bottom:486.666667pt;}
.y8_c00077{bottom:507.866667pt;}
.y7_c00077{bottom:529.600000pt;}
.y6_c00077{bottom:551.466667pt;}
.y5_c00077{bottom:572.666667pt;}
.y4_c00077{bottom:594.533333pt;}
.y3_c00077{bottom:615.866667pt;}
.y2_c00077{bottom:638.133333pt;}
.y1_c00077{bottom:662.000000pt;}
.h5_c00077{height:11.733399pt;}
.h6_c00077{height:38.937500pt;}
.h4_c00077{height:77.654948pt;}
.h2_c00077{height:81.031250pt;}
.h3_c00077{height:81.564583pt;}
.h0_c00077{height:710.400000pt;}
.h1_c00077{height:710.666667pt;}
.w2_c00077{width:93.222667pt;}
.w0_c00077{width:485.066667pt;}
.w1_c00077{width:485.333333pt;}
.x0_c00077{left:0.000000pt;}
.x8_c00077{left:110.933333pt;}
.x1_c00077{left:115.733333pt;}
.x3_c00077{left:116.666667pt;}
.x4_c00077{left:117.866667pt;}
.x5_c00077{left:119.200000pt;}
.x6_c00077{left:120.266667pt;}
.x7_c00077{left:121.466667pt;}
.x9_c00077{left:122.400000pt;}
.xa_c00077{left:123.333333pt;}
.xb_c00077{left:124.533333pt;}
.x2_c00077{left:142.800000pt;}
.xd_c00077{left:199.701538pt;}
.xc_c00077{left:419.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_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_e1460ad137185ff66a4bd9e9.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.284180;font-style:normal;font-weight:normal;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_1e57fa2242290a29dfd52a90.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:1.568848;font-style:normal;font-weight:normal;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_96df3f4cb8b7bd5db738c169.woff2')format("woff");}.ff3_c00078{font-family:ff3_c00078;line-height:1.480469;font-style:normal;font-weight:normal;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_19a1b0ff9851c901a491cd85.woff2')format("woff");}.ff4_c00078{font-family:ff4_c00078;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00078{font-family:ff5_c00078;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00078{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00078{vertical-align:0.000000px;}
.ls0_c00078{letter-spacing:0.000000px;}
.ls1_c00078{letter-spacing:3.000000px;}
.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;}
}
.ws2_c00078{word-spacing:-83.685000px;}
.ws1_c00078{word-spacing:-33.192000px;}
.ws0_c00078{word-spacing:-16.629000px;}
.ws3_c00078{word-spacing:0.000000px;}
._1a_c00078{margin-left:-35.025000px;}
._17_c00078{margin-left:-22.350000px;}
._f_c00078{margin-left:-20.796000px;}
._11_c00078{margin-left:-14.124000px;}
._10_c00078{margin-left:-12.816000px;}
._d_c00078{margin-left:-11.268000px;}
._c_c00078{margin-left:-9.864000px;}
._a_c00078{margin-left:-7.524000px;}
._e_c00078{margin-left:-5.814000px;}
._3_c00078{margin-left:-4.620000px;}
._9_c00078{margin-left:-2.868000px;}
._8_c00078{margin-left:-1.320000px;}
._7_c00078{width:1.440000px;}
._1_c00078{width:2.688000px;}
._2_c00078{width:3.780000px;}
._0_c00078{width:4.872000px;}
._4_c00078{width:6.552000px;}
._b_c00078{width:8.412000px;}
._14_c00078{width:10.038000px;}
._12_c00078{width:11.352000px;}
._18_c00078{width:12.384000px;}
._15_c00078{width:13.464000px;}
._13_c00078{width:15.186000px;}
._6_c00078{width:18.900000px;}
._19_c00078{width:38.736000px;}
._1b_c00078{width:147.960000px;}
._16_c00078{width:255.324000px;}
._5_c00078{width:329.868000px;}
.fc2_c00078{color:transparent;}
.fc1_c00078{color:rgb(128,128,128);}
.fc0_c00078{color:rgb(0,0,0);}
.fs5_c00078{font-size:48.000000px;}
.fs2_c00078{font-size:51.000000px;}
.fs3_c00078{font-size:69.000000px;}
.fs1_c00078{font-size:72.000000px;}
.fs0_c00078{font-size:84.000000px;}
.fs4_c00078{font-size:105.000000px;}
.y0_c00078{bottom:0.000000px;}
.y1f_c00078{bottom:3.105000px;}
.y1e_c00078{bottom:7.228371px;}
.y1d_c00078{bottom:55.065000px;}
.y1c_c00078{bottom:81.015000px;}
.y1b_c00078{bottom:106.965000px;}
.y1a_c00078{bottom:131.265000px;}
.y19_c00078{bottom:156.915000px;}
.y18_c00078{bottom:180.315000px;}
.y17_c00078{bottom:206.565000px;}
.y16_c00078{bottom:231.315000px;}
.y15_c00078{bottom:256.215000px;}
.y14_c00078{bottom:279.915000px;}
.y13_c00078{bottom:303.165000px;}
.y12_c00078{bottom:327.165000px;}
.y11_c00078{bottom:351.315000px;}
.y10_c00078{bottom:376.365000px;}
.yf_c00078{bottom:400.665000px;}
.ye_c00078{bottom:424.665000px;}
.yd_c00078{bottom:449.865000px;}
.yc_c00078{bottom:474.165000px;}
.yb_c00078{bottom:498.465000px;}
.ya_c00078{bottom:522.915000px;}
.y9_c00078{bottom:547.065000px;}
.y8_c00078{bottom:571.065000px;}
.y7_c00078{bottom:595.365000px;}
.y6_c00078{bottom:620.715000px;}
.y5_c00078{bottom:644.415000px;}
.y4_c00078{bottom:669.015000px;}
.y3_c00078{bottom:693.315000px;}
.y2_c00078{bottom:717.615000px;}
.y1_c00078{bottom:743.565000px;}
.h5_c00078{height:13.200074px;}
.h6_c00078{height:43.804688px;}
.h2_c00078{height:82.400391px;}
.h3_c00078{height:91.160156px;}
.h4_c00078{height:132.941895px;}
.h1_c00078{height:790.500000px;}
.h0_c00078{height:790.575000px;}
.w2_c00078{width:104.875500px;}
.w0_c00078{width:543.525000px;}
.w1_c00078{width:543.750000px;}
.x0_c00078{left:0.000000px;}
.x9_c00078{left:45.150000px;}
.x8_c00078{left:47.250000px;}
.x5_c00078{left:48.600000px;}
.x7_c00078{left:49.950000px;}
.x6_c00078{left:51.900000px;}
.x4_c00078{left:53.550000px;}
.x3_c00078{left:55.350000px;}
.x2_c00078{left:56.400000px;}
.x1_c00078{left:157.650000px;}
.xb_c00078{left:223.576767px;}
.xa_c00078{left:318.300000px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls0_c00078{letter-spacing:0.000000pt;}
.ls1_c00078{letter-spacing:2.666667pt;}
.ws2_c00078{word-spacing:-74.386667pt;}
.ws1_c00078{word-spacing:-29.504000pt;}
.ws0_c00078{word-spacing:-14.781333pt;}
.ws3_c00078{word-spacing:0.000000pt;}
._1a_c00078{margin-left:-31.133333pt;}
._17_c00078{margin-left:-19.866667pt;}
._f_c00078{margin-left:-18.485333pt;}
._11_c00078{margin-left:-12.554667pt;}
._10_c00078{margin-left:-11.392000pt;}
._d_c00078{margin-left:-10.016000pt;}
._c_c00078{margin-left:-8.768000pt;}
._a_c00078{margin-left:-6.688000pt;}
._e_c00078{margin-left:-5.168000pt;}
._3_c00078{margin-left:-4.106667pt;}
._9_c00078{margin-left:-2.549333pt;}
._8_c00078{margin-left:-1.173333pt;}
._7_c00078{width:1.280000pt;}
._1_c00078{width:2.389333pt;}
._2_c00078{width:3.360000pt;}
._0_c00078{width:4.330667pt;}
._4_c00078{width:5.824000pt;}
._b_c00078{width:7.477333pt;}
._14_c00078{width:8.922667pt;}
._12_c00078{width:10.090667pt;}
._18_c00078{width:11.008000pt;}
._15_c00078{width:11.968000pt;}
._13_c00078{width:13.498667pt;}
._6_c00078{width:16.800000pt;}
._19_c00078{width:34.432000pt;}
._1b_c00078{width:131.520000pt;}
._16_c00078{width:226.954667pt;}
._5_c00078{width:293.216000pt;}
.fs5_c00078{font-size:42.666667pt;}
.fs2_c00078{font-size:45.333333pt;}
.fs3_c00078{font-size:61.333333pt;}
.fs1_c00078{font-size:64.000000pt;}
.fs0_c00078{font-size:74.666667pt;}
.fs4_c00078{font-size:93.333333pt;}
.y0_c00078{bottom:0.000000pt;}
.y1f_c00078{bottom:2.760000pt;}
.y1e_c00078{bottom:6.425219pt;}
.y1d_c00078{bottom:48.946667pt;}
.y1c_c00078{bottom:72.013333pt;}
.y1b_c00078{bottom:95.080000pt;}
.y1a_c00078{bottom:116.680000pt;}
.y19_c00078{bottom:139.480000pt;}
.y18_c00078{bottom:160.280000pt;}
.y17_c00078{bottom:183.613333pt;}
.y16_c00078{bottom:205.613333pt;}
.y15_c00078{bottom:227.746667pt;}
.y14_c00078{bottom:248.813333pt;}
.y13_c00078{bottom:269.480000pt;}
.y12_c00078{bottom:290.813333pt;}
.y11_c00078{bottom:312.280000pt;}
.y10_c00078{bottom:334.546667pt;}
.yf_c00078{bottom:356.146667pt;}
.ye_c00078{bottom:377.480000pt;}
.yd_c00078{bottom:399.880000pt;}
.yc_c00078{bottom:421.480000pt;}
.yb_c00078{bottom:443.080000pt;}
.ya_c00078{bottom:464.813333pt;}
.y9_c00078{bottom:486.280000pt;}
.y8_c00078{bottom:507.613333pt;}
.y7_c00078{bottom:529.213333pt;}
.y6_c00078{bottom:551.746667pt;}
.y5_c00078{bottom:572.813333pt;}
.y4_c00078{bottom:594.680000pt;}
.y3_c00078{bottom:616.280000pt;}
.y2_c00078{bottom:637.880000pt;}
.y1_c00078{bottom:660.946667pt;}
.h5_c00078{height:11.733399pt;}
.h6_c00078{height:38.937500pt;}
.h2_c00078{height:73.244792pt;}
.h3_c00078{height:81.031250pt;}
.h4_c00078{height:118.170573pt;}
.h1_c00078{height:702.666667pt;}
.h0_c00078{height:702.733333pt;}
.w2_c00078{width:93.222667pt;}
.w0_c00078{width:483.133333pt;}
.w1_c00078{width:483.333333pt;}
.x0_c00078{left:0.000000pt;}
.x9_c00078{left:40.133333pt;}
.x8_c00078{left:42.000000pt;}
.x5_c00078{left:43.200000pt;}
.x7_c00078{left:44.400000pt;}
.x6_c00078{left:46.133333pt;}
.x4_c00078{left:47.600000pt;}
.x3_c00078{left:49.200000pt;}
.x2_c00078{left:50.133333pt;}
.x1_c00078{left:140.133333pt;}
.xb_c00078{left:198.734904pt;}
.xa_c00078{left:282.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_88905b6ad1dae7dc91a8fa93.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00079;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00079;src:url('chunks/assets/font_0df92d74df6991d789814431.woff2')format("woff");}.ff3_c00079{font-family:ff3_c00079;line-height:1.568848;font-style:normal;font-weight:normal;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_eb2238ba90ab7b14c84af97d.woff2')format("woff");}.ff4_c00079{font-family:ff4_c00079;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00079{font-family:ff5_c00079;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00079{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00079{vertical-align:0.000000px;}
.ls3_c00079{letter-spacing:0.000000px;}
.ls2_c00079{letter-spacing:0.429000px;}
.ls0_c00079{letter-spacing:3.000000px;}
.ls1_c00079{letter-spacing:199.002000px;}
.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;}
}
.ws3_c00079{word-spacing:-21.798000px;}
.ws1_c00079{word-spacing:-21.000000px;}
.ws4_c00079{word-spacing:-20.967000px;}
.ws2_c00079{word-spacing:-18.798000px;}
.ws0_c00079{word-spacing:-17.352000px;}
.ws5_c00079{word-spacing:0.000000px;}
._15_c00079{margin-left:-29.520000px;}
._1e_c00079{margin-left:-17.736000px;}
._1b_c00079{margin-left:-14.256000px;}
._20_c00079{margin-left:-13.074000px;}
._1f_c00079{margin-left:-11.820000px;}
._13_c00079{margin-left:-10.728000px;}
._18_c00079{margin-left:-9.720000px;}
._f_c00079{margin-left:-8.424000px;}
._3_c00079{margin-left:-7.056000px;}
._9_c00079{margin-left:-5.112000px;}
._4_c00079{margin-left:-4.104000px;}
._5_c00079{margin-left:-2.448000px;}
._8_c00079{margin-left:-1.224000px;}
._1_c00079{width:1.596000px;}
._2_c00079{width:3.024000px;}
._0_c00079{width:4.116000px;}
._d_c00079{width:5.244000px;}
._a_c00079{width:6.744000px;}
._11_c00079{width:8.280000px;}
._c_c00079{width:9.924000px;}
._e_c00079{width:11.832000px;}
._b_c00079{width:12.924000px;}
._22_c00079{width:14.040000px;}
._7_c00079{width:15.132000px;}
._6_c00079{width:18.864000px;}
._10_c00079{width:24.564000px;}
._21_c00079{width:47.304000px;}
._1c_c00079{width:52.848000px;}
._17_c00079{width:81.216000px;}
._1a_c00079{width:87.648000px;}
._12_c00079{width:109.692000px;}
._19_c00079{width:140.424000px;}
._14_c00079{width:166.968000px;}
._16_c00079{width:189.072000px;}
._1d_c00079{width:242.280000px;}
.fc2_c00079{color:transparent;}
.fc1_c00079{color:rgb(128,128,128);}
.fc0_c00079{color:rgb(0,0,0);}
.fs5_c00079{font-size:48.000000px;}
.fs3_c00079{font-size:69.000000px;}
.fs1_c00079{font-size:72.000000px;}
.fs2_c00079{font-size:78.000000px;}
.fs0_c00079{font-size:84.000000px;}
.fs4_c00079{font-size:87.000000px;}
.y0_c00079{bottom:0.000000px;}
.y20_c00079{bottom:3.105000px;}
.y1f_c00079{bottom:7.228369px;}
.y1e_c00079{bottom:47.820000px;}
.y1d_c00079{bottom:73.920000px;}
.y1c_c00079{bottom:99.270000px;}
.y1b_c00079{bottom:123.870000px;}
.y1a_c00079{bottom:149.070000px;}
.y19_c00079{bottom:174.720000px;}
.y18_c00079{bottom:199.470000px;}
.y17_c00079{bottom:224.070000px;}
.y16_c00079{bottom:248.970000px;}
.y15_c00079{bottom:273.420000px;}
.y14_c00079{bottom:296.670000px;}
.y13_c00079{bottom:310.170000px;}
.y12_c00079{bottom:324.720000px;}
.y11_c00079{bottom:348.270000px;}
.y10_c00079{bottom:372.270000px;}
.yf_c00079{bottom:396.870000px;}
.ye_c00079{bottom:421.770000px;}
.yd_c00079{bottom:446.520000px;}
.yc_c00079{bottom:471.120000px;}
.yb_c00079{bottom:495.720000px;}
.ya_c00079{bottom:520.320000px;}
.y9_c00079{bottom:544.770000px;}
.y8_c00079{bottom:568.320000px;}
.y7_c00079{bottom:593.970000px;}
.y6_c00079{bottom:618.570000px;}
.y5_c00079{bottom:642.870000px;}
.y4_c00079{bottom:667.620000px;}
.y3_c00079{bottom:692.520000px;}
.y2_c00079{bottom:717.120000px;}
.y1_c00079{bottom:743.220000px;}
.h5_c00079{height:13.200073px;}
.h6_c00079{height:43.804688px;}
.h1_c00079{height:82.441406px;}
.h2_c00079{height:91.160156px;}
.h3_c00079{height:98.756836px;}
.h4_c00079{height:110.151855px;}
.h0_c00079{height:793.500000px;}
.w2_c00079{width:104.875500px;}
.w0_c00079{width:533.775000px;}
.w1_c00079{width:534.000000px;}
.x0_c00079{left:0.000000px;}
.xc_c00079{left:55.950000px;}
.xb_c00079{left:65.100000px;}
.xa_c00079{left:118.050000px;}
.x2_c00079{left:122.550000px;}
.x3_c00079{left:124.200000px;}
.x4_c00079{left:125.250000px;}
.x5_c00079{left:126.450000px;}
.x6_c00079{left:127.800000px;}
.x7_c00079{left:128.850000px;}
.xd_c00079{left:130.650000px;}
.xe_c00079{left:133.200000px;}
.x8_c00079{left:134.550000px;}
.x9_c00079{left:136.350000px;}
.x10_c00079{left:218.701767px;}
.x1_c00079{left:236.550000px;}
.xf_c00079{left:470.850000px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls3_c00079{letter-spacing:0.000000pt;}
.ls2_c00079{letter-spacing:0.381333pt;}
.ls0_c00079{letter-spacing:2.666667pt;}
.ls1_c00079{letter-spacing:176.890667pt;}
.ws3_c00079{word-spacing:-19.376000pt;}
.ws1_c00079{word-spacing:-18.666667pt;}
.ws4_c00079{word-spacing:-18.637333pt;}
.ws2_c00079{word-spacing:-16.709333pt;}
.ws0_c00079{word-spacing:-15.424000pt;}
.ws5_c00079{word-spacing:0.000000pt;}
._15_c00079{margin-left:-26.240000pt;}
._1e_c00079{margin-left:-15.765333pt;}
._1b_c00079{margin-left:-12.672000pt;}
._20_c00079{margin-left:-11.621333pt;}
._1f_c00079{margin-left:-10.506667pt;}
._13_c00079{margin-left:-9.536000pt;}
._18_c00079{margin-left:-8.640000pt;}
._f_c00079{margin-left:-7.488000pt;}
._3_c00079{margin-left:-6.272000pt;}
._9_c00079{margin-left:-4.544000pt;}
._4_c00079{margin-left:-3.648000pt;}
._5_c00079{margin-left:-2.176000pt;}
._8_c00079{margin-left:-1.088000pt;}
._1_c00079{width:1.418667pt;}
._2_c00079{width:2.688000pt;}
._0_c00079{width:3.658667pt;}
._d_c00079{width:4.661333pt;}
._a_c00079{width:5.994667pt;}
._11_c00079{width:7.360000pt;}
._c_c00079{width:8.821333pt;}
._e_c00079{width:10.517333pt;}
._b_c00079{width:11.488000pt;}
._22_c00079{width:12.480000pt;}
._7_c00079{width:13.450667pt;}
._6_c00079{width:16.768000pt;}
._10_c00079{width:21.834667pt;}
._21_c00079{width:42.048000pt;}
._1c_c00079{width:46.976000pt;}
._17_c00079{width:72.192000pt;}
._1a_c00079{width:77.909333pt;}
._12_c00079{width:97.504000pt;}
._19_c00079{width:124.821333pt;}
._14_c00079{width:148.416000pt;}
._16_c00079{width:168.064000pt;}
._1d_c00079{width:215.360000pt;}
.fs5_c00079{font-size:42.666667pt;}
.fs3_c00079{font-size:61.333333pt;}
.fs1_c00079{font-size:64.000000pt;}
.fs2_c00079{font-size:69.333333pt;}
.fs0_c00079{font-size:74.666667pt;}
.fs4_c00079{font-size:77.333333pt;}
.y0_c00079{bottom:0.000000pt;}
.y20_c00079{bottom:2.760000pt;}
.y1f_c00079{bottom:6.425217pt;}
.y1e_c00079{bottom:42.506667pt;}
.y1d_c00079{bottom:65.706667pt;}
.y1c_c00079{bottom:88.240000pt;}
.y1b_c00079{bottom:110.106667pt;}
.y1a_c00079{bottom:132.506667pt;}
.y19_c00079{bottom:155.306667pt;}
.y18_c00079{bottom:177.306667pt;}
.y17_c00079{bottom:199.173333pt;}
.y16_c00079{bottom:221.306667pt;}
.y15_c00079{bottom:243.040000pt;}
.y14_c00079{bottom:263.706667pt;}
.y13_c00079{bottom:275.706667pt;}
.y12_c00079{bottom:288.640000pt;}
.y11_c00079{bottom:309.573333pt;}
.y10_c00079{bottom:330.906667pt;}
.yf_c00079{bottom:352.773333pt;}
.ye_c00079{bottom:374.906667pt;}
.yd_c00079{bottom:396.906667pt;}
.yc_c00079{bottom:418.773333pt;}
.yb_c00079{bottom:440.640000pt;}
.ya_c00079{bottom:462.506667pt;}
.y9_c00079{bottom:484.240000pt;}
.y8_c00079{bottom:505.173333pt;}
.y7_c00079{bottom:527.973333pt;}
.y6_c00079{bottom:549.840000pt;}
.y5_c00079{bottom:571.440000pt;}
.y4_c00079{bottom:593.440000pt;}
.y3_c00079{bottom:615.573333pt;}
.y2_c00079{bottom:637.440000pt;}
.y1_c00079{bottom:660.640000pt;}
.h5_c00079{height:11.733399pt;}
.h6_c00079{height:38.937500pt;}
.h1_c00079{height:73.281250pt;}
.h2_c00079{height:81.031250pt;}
.h3_c00079{height:87.783854pt;}
.h4_c00079{height:97.912760pt;}
.h0_c00079{height:705.333333pt;}
.w2_c00079{width:93.222667pt;}
.w0_c00079{width:474.466667pt;}
.w1_c00079{width:474.666667pt;}
.x0_c00079{left:0.000000pt;}
.xc_c00079{left:49.733333pt;}
.xb_c00079{left:57.866667pt;}
.xa_c00079{left:104.933333pt;}
.x2_c00079{left:108.933333pt;}
.x3_c00079{left:110.400000pt;}
.x4_c00079{left:111.333333pt;}
.x5_c00079{left:112.400000pt;}
.x6_c00079{left:113.600000pt;}
.x7_c00079{left:114.533333pt;}
.xd_c00079{left:116.133333pt;}
.xe_c00079{left:118.400000pt;}
.x8_c00079{left:119.600000pt;}
.x9_c00079{left:121.200000pt;}
.x10_c00079{left:194.401571pt;}
.x1_c00079{left:210.266667pt;}
.xf_c00079{left:418.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_765bcc2642a6f350120c93b6.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00080;src:url('chunks/assets/font_aff2c412e9e94c24a391a868.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00080{font-family:ff3_c00080;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00080{vertical-align:0.000000px;}
.ls2_c00080{letter-spacing:0.000000px;}
.ls1_c00080{letter-spacing:3.000000px;}
.ls0_c00080{letter-spacing:5.415000px;}
.sc__c00080{text-shadow:none;}
.sc0_c00080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00080{-webkit-text-stroke:0px transparent;}
.sc0_c00080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00080{word-spacing:0.000000px;}
._e_c00080{margin-left:-9.792000px;}
._f_c00080{margin-left:-7.896000px;}
._4_c00080{margin-left:-6.048000px;}
._9_c00080{margin-left:-4.788000px;}
._a_c00080{margin-left:-3.576000px;}
._c_c00080{margin-left:-2.040000px;}
._b_c00080{margin-left:-1.020000px;}
._7_c00080{width:1.176000px;}
._5_c00080{width:2.436000px;}
._6_c00080{width:3.612000px;}
._2_c00080{width:5.124000px;}
._d_c00080{width:6.516000px;}
._1_c00080{width:8.316000px;}
._3_c00080{width:9.324000px;}
._11_c00080{width:10.344000px;}
._12_c00080{width:12.528000px;}
._0_c00080{width:13.776000px;}
._10_c00080{width:15.312000px;}
._13_c00080{width:33.864000px;}
._14_c00080{width:187.164000px;}
._8_c00080{width:299.712000px;}
.fc2_c00080{color:transparent;}
.fc1_c00080{color:rgb(128,128,128);}
.fc0_c00080{color:rgb(0,0,0);}
.fs4_c00080{font-size:48.000000px;}
.fs3_c00080{font-size:69.000000px;}
.fs1_c00080{font-size:72.000000px;}
.fs0_c00080{font-size:84.000000px;}
.fs2_c00080{font-size:87.000000px;}
.y0_c00080{bottom:0.000000px;}
.y1f_c00080{bottom:3.105000px;}
.y1e_c00080{bottom:7.228371px;}
.y1d_c00080{bottom:40.215000px;}
.y1c_c00080{bottom:65.565000px;}
.y1b_c00080{bottom:91.215000px;}
.y1a_c00080{bottom:116.115000px;}
.y19_c00080{bottom:141.465000px;}
.y18_c00080{bottom:163.815000px;}
.y17_c00080{bottom:190.815000px;}
.y16_c00080{bottom:215.715000px;}
.y15_c00080{bottom:241.065000px;}
.y14_c00080{bottom:265.365000px;}
.y13_c00080{bottom:288.015000px;}
.y12_c00080{bottom:313.965000px;}
.y11_c00080{bottom:336.615000px;}
.y10_c00080{bottom:361.215000px;}
.yf_c00080{bottom:386.115000px;}
.ye_c00080{bottom:411.165000px;}
.yd_c00080{bottom:435.465000px;}
.yc_c00080{bottom:460.665000px;}
.yb_c00080{bottom:485.115000px;}
.ya_c00080{bottom:510.015000px;}
.y9_c00080{bottom:534.315000px;}
.y8_c00080{bottom:558.915000px;}
.y7_c00080{bottom:583.965000px;}
.y6_c00080{bottom:607.965000px;}
.y5_c00080{bottom:632.115000px;}
.y4_c00080{bottom:656.865000px;}
.y3_c00080{bottom:680.865000px;}
.y2_c00080{bottom:705.765000px;}
.y1_c00080{bottom:730.815000px;}
.h5_c00080{height:13.200074px;}
.h6_c00080{height:43.804688px;}
.h2_c00080{height:82.400391px;}
.h3_c00080{height:91.160156px;}
.h4_c00080{height:110.151855px;}
.h0_c00080{height:781.125000px;}
.h1_c00080{height:781.500000px;}
.w2_c00080{width:104.875500px;}
.w0_c00080{width:557.850000px;}
.w1_c00080{width:558.000000px;}
.x0_c00080{left:0.000000px;}
.x8_c00080{left:44.250000px;}
.x7_c00080{left:46.350000px;}
.x6_c00080{left:48.150000px;}
.x5_c00080{left:49.500000px;}
.x4_c00080{left:51.000000px;}
.x3_c00080{left:53.100000px;}
.x2_c00080{left:55.050000px;}
.x1_c00080{left:157.950000px;}
.xa_c00080{left:230.739258px;}
.x9_c00080{left:301.050000px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls2_c00080{letter-spacing:0.000000pt;}
.ls1_c00080{letter-spacing:2.666667pt;}
.ls0_c00080{letter-spacing:4.813333pt;}
.ws0_c00080{word-spacing:0.000000pt;}
._e_c00080{margin-left:-8.704000pt;}
._f_c00080{margin-left:-7.018667pt;}
._4_c00080{margin-left:-5.376000pt;}
._9_c00080{margin-left:-4.256000pt;}
._a_c00080{margin-left:-3.178667pt;}
._c_c00080{margin-left:-1.813333pt;}
._b_c00080{margin-left:-0.906667pt;}
._7_c00080{width:1.045333pt;}
._5_c00080{width:2.165333pt;}
._6_c00080{width:3.210667pt;}
._2_c00080{width:4.554667pt;}
._d_c00080{width:5.792000pt;}
._1_c00080{width:7.392000pt;}
._3_c00080{width:8.288000pt;}
._11_c00080{width:9.194667pt;}
._12_c00080{width:11.136000pt;}
._0_c00080{width:12.245333pt;}
._10_c00080{width:13.610667pt;}
._13_c00080{width:30.101333pt;}
._14_c00080{width:166.368000pt;}
._8_c00080{width:266.410667pt;}
.fs4_c00080{font-size:42.666667pt;}
.fs3_c00080{font-size:61.333333pt;}
.fs1_c00080{font-size:64.000000pt;}
.fs0_c00080{font-size:74.666667pt;}
.fs2_c00080{font-size:77.333333pt;}
.y0_c00080{bottom:0.000000pt;}
.y1f_c00080{bottom:2.760000pt;}
.y1e_c00080{bottom:6.425219pt;}
.y1d_c00080{bottom:35.746667pt;}
.y1c_c00080{bottom:58.280000pt;}
.y1b_c00080{bottom:81.080000pt;}
.y1a_c00080{bottom:103.213333pt;}
.y19_c00080{bottom:125.746667pt;}
.y18_c00080{bottom:145.613333pt;}
.y17_c00080{bottom:169.613333pt;}
.y16_c00080{bottom:191.746667pt;}
.y15_c00080{bottom:214.280000pt;}
.y14_c00080{bottom:235.880000pt;}
.y13_c00080{bottom:256.013333pt;}
.y12_c00080{bottom:279.080000pt;}
.y11_c00080{bottom:299.213333pt;}
.y10_c00080{bottom:321.080000pt;}
.yf_c00080{bottom:343.213333pt;}
.ye_c00080{bottom:365.480000pt;}
.yd_c00080{bottom:387.080000pt;}
.yc_c00080{bottom:409.480000pt;}
.yb_c00080{bottom:431.213333pt;}
.ya_c00080{bottom:453.346667pt;}
.y9_c00080{bottom:474.946667pt;}
.y8_c00080{bottom:496.813333pt;}
.y7_c00080{bottom:519.080000pt;}
.y6_c00080{bottom:540.413333pt;}
.y5_c00080{bottom:561.880000pt;}
.y4_c00080{bottom:583.880000pt;}
.y3_c00080{bottom:605.213333pt;}
.y2_c00080{bottom:627.346667pt;}
.y1_c00080{bottom:649.613333pt;}
.h5_c00080{height:11.733399pt;}
.h6_c00080{height:38.937500pt;}
.h2_c00080{height:73.244792pt;}
.h3_c00080{height:81.031250pt;}
.h4_c00080{height:97.912760pt;}
.h0_c00080{height:694.333333pt;}
.h1_c00080{height:694.666667pt;}
.w2_c00080{width:93.222667pt;}
.w0_c00080{width:495.866667pt;}
.w1_c00080{width:496.000000pt;}
.x0_c00080{left:0.000000pt;}
.x8_c00080{left:39.333333pt;}
.x7_c00080{left:41.200000pt;}
.x6_c00080{left:42.800000pt;}
.x5_c00080{left:44.000000pt;}
.x4_c00080{left:45.333333pt;}
.x3_c00080{left:47.200000pt;}
.x2_c00080{left:48.933333pt;}
.x1_c00080{left:140.400000pt;}
.xa_c00080{left:205.101563pt;}
.x9_c00080{left:267.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4417948ca98084dbb0d0338e.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00081;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00081;src:url('chunks/assets/font_0b7b12083ccb431990dc0f2a.woff2')format("woff");}.ff3_c00081{font-family:ff3_c00081;line-height:1.568848;font-style:normal;font-weight:normal;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_ac9cc1c9520c32adcf7c967c.woff2')format("woff");}.ff4_c00081{font-family:ff4_c00081;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00081{font-family:ff5_c00081;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00081{vertical-align:0.000000px;}
.ls1_c00081{letter-spacing:0.000000px;}
.ls2_c00081{letter-spacing:3.000000px;}
.ls0_c00081{letter-spacing:19.362000px;}
.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:-42.000000px;}
.ws1_c00081{word-spacing:-33.192000px;}
.ws2_c00081{word-spacing:-20.352000px;}
.ws3_c00081{word-spacing:0.000000px;}
._14_c00081{margin-left:-39.744000px;}
._12_c00081{margin-left:-12.816000px;}
._f_c00081{margin-left:-11.064000px;}
._e_c00081{margin-left:-9.144000px;}
._d_c00081{margin-left:-6.912000px;}
._6_c00081{margin-left:-5.352000px;}
._4_c00081{margin-left:-4.152000px;}
._5_c00081{margin-left:-2.172000px;}
._7_c00081{margin-left:-1.032000px;}
._2_c00081{width:1.596000px;}
._1_c00081{width:2.940000px;}
._0_c00081{width:4.872000px;}
._3_c00081{width:5.964000px;}
._c_c00081{width:7.236000px;}
._b_c00081{width:8.472000px;}
._8_c00081{width:9.876000px;}
._10_c00081{width:11.244000px;}
._a_c00081{width:12.372000px;}
._9_c00081{width:14.472000px;}
._11_c00081{width:17.244000px;}
._13_c00081{width:58.536000px;}
._15_c00081{width:804.960000px;}
.fc2_c00081{color:transparent;}
.fc1_c00081{color:rgb(128,128,128);}
.fc0_c00081{color:rgb(0,0,0);}
.fs4_c00081{font-size:48.000000px;}
.fs2_c00081{font-size:69.000000px;}
.fs1_c00081{font-size:72.000000px;}
.fs3_c00081{font-size:78.000000px;}
.fs0_c00081{font-size:84.000000px;}
.y0_c00081{bottom:0.000000px;}
.y1f_c00081{bottom:3.105000px;}
.y1e_c00081{bottom:7.228363px;}
.y1d_c00081{bottom:51.000000px;}
.y1c_c00081{bottom:75.600000px;}
.y1b_c00081{bottom:100.800000px;}
.y1a_c00081{bottom:126.450000px;}
.y19_c00081{bottom:150.900000px;}
.y18_c00081{bottom:176.400000px;}
.y17_c00081{bottom:201.750000px;}
.y16_c00081{bottom:226.800000px;}
.y15_c00081{bottom:250.800000px;}
.y14_c00081{bottom:276.000000px;}
.y13_c00081{bottom:299.700000px;}
.y12_c00081{bottom:323.550000px;}
.y11_c00081{bottom:349.200000px;}
.y10_c00081{bottom:372.150000px;}
.yf_c00081{bottom:397.800000px;}
.ye_c00081{bottom:420.900000px;}
.yd_c00081{bottom:446.100000px;}
.yc_c00081{bottom:470.850000px;}
.yb_c00081{bottom:495.750000px;}
.ya_c00081{bottom:520.350000px;}
.y9_c00081{bottom:545.100000px;}
.y8_c00081{bottom:569.400000px;}
.y7_c00081{bottom:593.700000px;}
.y6_c00081{bottom:618.600000px;}
.y5_c00081{bottom:642.900000px;}
.y4_c00081{bottom:667.650000px;}
.y3_c00081{bottom:691.950000px;}
.y2_c00081{bottom:717.150000px;}
.y1_c00081{bottom:742.500000px;}
.h5_c00081{height:13.200074px;}
.h6_c00081{height:43.804688px;}
.h2_c00081{height:82.441406px;}
.h3_c00081{height:91.160156px;}
.h4_c00081{height:98.756836px;}
.h0_c00081{height:785.700000px;}
.h1_c00081{height:786.000000px;}
.w1_c00081{width:104.875500px;}
.w0_c00081{width:530.250000px;}
.x0_c00081{left:0.000000px;}
.x2_c00081{left:108.450000px;}
.x3_c00081{left:110.100000px;}
.x4_c00081{left:111.150000px;}
.x5_c00081{left:112.500000px;}
.x6_c00081{left:113.850000px;}
.x7_c00081{left:115.050000px;}
.x8_c00081{left:209.550000px;}
.x9_c00081{left:216.939240px;}
.x1_c00081{left:219.000000px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls1_c00081{letter-spacing:0.000000pt;}
.ls2_c00081{letter-spacing:2.666667pt;}
.ls0_c00081{letter-spacing:17.210667pt;}
.ws0_c00081{word-spacing:-37.333333pt;}
.ws1_c00081{word-spacing:-29.504000pt;}
.ws2_c00081{word-spacing:-18.090667pt;}
.ws3_c00081{word-spacing:0.000000pt;}
._14_c00081{margin-left:-35.328000pt;}
._12_c00081{margin-left:-11.392000pt;}
._f_c00081{margin-left:-9.834667pt;}
._e_c00081{margin-left:-8.128000pt;}
._d_c00081{margin-left:-6.144000pt;}
._6_c00081{margin-left:-4.757333pt;}
._4_c00081{margin-left:-3.690667pt;}
._5_c00081{margin-left:-1.930667pt;}
._7_c00081{margin-left:-0.917333pt;}
._2_c00081{width:1.418667pt;}
._1_c00081{width:2.613333pt;}
._0_c00081{width:4.330667pt;}
._3_c00081{width:5.301333pt;}
._c_c00081{width:6.432000pt;}
._b_c00081{width:7.530667pt;}
._8_c00081{width:8.778667pt;}
._10_c00081{width:9.994667pt;}
._a_c00081{width:10.997333pt;}
._9_c00081{width:12.864000pt;}
._11_c00081{width:15.328000pt;}
._13_c00081{width:52.032000pt;}
._15_c00081{width:715.520000pt;}
.fs4_c00081{font-size:42.666667pt;}
.fs2_c00081{font-size:61.333333pt;}
.fs1_c00081{font-size:64.000000pt;}
.fs3_c00081{font-size:69.333333pt;}
.fs0_c00081{font-size:74.666667pt;}
.y0_c00081{bottom:0.000000pt;}
.y1f_c00081{bottom:2.760000pt;}
.y1e_c00081{bottom:6.425212pt;}
.y1d_c00081{bottom:45.333333pt;}
.y1c_c00081{bottom:67.200000pt;}
.y1b_c00081{bottom:89.600000pt;}
.y1a_c00081{bottom:112.400000pt;}
.y19_c00081{bottom:134.133333pt;}
.y18_c00081{bottom:156.800000pt;}
.y17_c00081{bottom:179.333333pt;}
.y16_c00081{bottom:201.600000pt;}
.y15_c00081{bottom:222.933333pt;}
.y14_c00081{bottom:245.333333pt;}
.y13_c00081{bottom:266.400000pt;}
.y12_c00081{bottom:287.600000pt;}
.y11_c00081{bottom:310.400000pt;}
.y10_c00081{bottom:330.800000pt;}
.yf_c00081{bottom:353.600000pt;}
.ye_c00081{bottom:374.133333pt;}
.yd_c00081{bottom:396.533333pt;}
.yc_c00081{bottom:418.533333pt;}
.yb_c00081{bottom:440.666667pt;}
.ya_c00081{bottom:462.533333pt;}
.y9_c00081{bottom:484.533333pt;}
.y8_c00081{bottom:506.133333pt;}
.y7_c00081{bottom:527.733333pt;}
.y6_c00081{bottom:549.866667pt;}
.y5_c00081{bottom:571.466667pt;}
.y4_c00081{bottom:593.466667pt;}
.y3_c00081{bottom:615.066667pt;}
.y2_c00081{bottom:637.466667pt;}
.y1_c00081{bottom:660.000000pt;}
.h5_c00081{height:11.733399pt;}
.h6_c00081{height:38.937500pt;}
.h2_c00081{height:73.281250pt;}
.h3_c00081{height:81.031250pt;}
.h4_c00081{height:87.783854pt;}
.h0_c00081{height:698.400000pt;}
.h1_c00081{height:698.666667pt;}
.w1_c00081{width:93.222667pt;}
.w0_c00081{width:471.333333pt;}
.x0_c00081{left:0.000000pt;}
.x2_c00081{left:96.400000pt;}
.x3_c00081{left:97.866667pt;}
.x4_c00081{left:98.800000pt;}
.x5_c00081{left:100.000000pt;}
.x6_c00081{left:101.200000pt;}
.x7_c00081{left:102.266667pt;}
.x8_c00081{left:186.266667pt;}
.x9_c00081{left:192.834880pt;}
.x1_c00081{left:194.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_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_cca6799c3320eb6916e5b09b.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.480469;font-style:normal;font-weight:normal;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_6840229ea5f36991f072cdba.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00082;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00082{font-family:ff3_c00082;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00082{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00082{vertical-align:0.000000px;}
.ls0_c00082{letter-spacing:0.000000px;}
.ls1_c00082{letter-spacing:3.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:-16.629000px;}
.ws1_c00082{word-spacing:0.000000px;}
._10_c00082{margin-left:-20.232000px;}
._11_c00082{margin-left:-14.904000px;}
._12_c00082{margin-left:-13.680000px;}
._18_c00082{margin-left:-11.232000px;}
._15_c00082{margin-left:-8.460000px;}
._e_c00082{margin-left:-6.852000px;}
._a_c00082{margin-left:-5.772000px;}
._f_c00082{margin-left:-4.368000px;}
._8_c00082{margin-left:-3.312000px;}
._7_c00082{margin-left:-1.440000px;}
._9_c00082{width:1.668000px;}
._c_c00082{width:2.916000px;}
._d_c00082{width:4.380000px;}
._2_c00082{width:5.700000px;}
._1_c00082{width:7.260000px;}
._5_c00082{width:8.880000px;}
._14_c00082{width:10.728000px;}
._3_c00082{width:11.820000px;}
._b_c00082{width:13.476000px;}
._4_c00082{width:15.780000px;}
._16_c00082{width:16.944000px;}
._13_c00082{width:18.348000px;}
._0_c00082{width:23.460000px;}
._17_c00082{width:42.660000px;}
._19_c00082{width:253.872000px;}
._6_c00082{width:302.580000px;}
.fc2_c00082{color:transparent;}
.fc1_c00082{color:rgb(128,128,128);}
.fc0_c00082{color:rgb(0,0,0);}
.fs4_c00082{font-size:48.000000px;}
.fs0_c00082{font-size:60.000000px;}
.fs2_c00082{font-size:66.000000px;}
.fs3_c00082{font-size:69.000000px;}
.fs1_c00082{font-size:72.000000px;}
.y0_c00082{bottom:0.000000px;}
.y1f_c00082{bottom:3.105000px;}
.y1e_c00082{bottom:7.228371px;}
.y1d_c00082{bottom:51.015000px;}
.y1c_c00082{bottom:75.015000px;}
.y1b_c00082{bottom:101.265000px;}
.y1a_c00082{bottom:128.565000px;}
.y19_c00082{bottom:152.865000px;}
.y18_c00082{bottom:177.165000px;}
.y17_c00082{bottom:200.865000px;}
.y16_c00082{bottom:227.565000px;}
.y15_c00082{bottom:251.415000px;}
.y14_c00082{bottom:276.165000px;}
.y13_c00082{bottom:298.365000px;}
.y12_c00082{bottom:323.115000px;}
.y11_c00082{bottom:347.265000px;}
.y10_c00082{bottom:371.565000px;}
.yf_c00082{bottom:396.615000px;}
.ye_c00082{bottom:420.915000px;}
.yd_c00082{bottom:445.965000px;}
.yc_c00082{bottom:470.115000px;}
.yb_c00082{bottom:494.865000px;}
.ya_c00082{bottom:519.765000px;}
.y9_c00082{bottom:544.365000px;}
.y8_c00082{bottom:569.115000px;}
.y7_c00082{bottom:593.715000px;}
.y6_c00082{bottom:618.315000px;}
.y5_c00082{bottom:642.315000px;}
.y4_c00082{bottom:666.915000px;}
.y3_c00082{bottom:691.965000px;}
.y2_c00082{bottom:716.265000px;}
.y1_c00082{bottom:741.465000px;}
.h4_c00082{height:13.200074px;}
.h5_c00082{height:43.804688px;}
.h2_c00082{height:70.224609px;}
.h3_c00082{height:91.160156px;}
.h1_c00082{height:790.500000px;}
.h0_c00082{height:790.575000px;}
.w2_c00082{width:104.875500px;}
.w1_c00082{width:558.000000px;}
.w0_c00082{width:558.075000px;}
.x0_c00082{left:0.000000px;}
.x8_c00082{left:39.150000px;}
.x7_c00082{left:40.800000px;}
.x6_c00082{left:42.150000px;}
.x5_c00082{left:43.500000px;}
.x2_c00082{left:44.850000px;}
.x3_c00082{left:46.350000px;}
.x4_c00082{left:47.550000px;}
.x1_c00082{left:147.750000px;}
.xa_c00082{left:230.851730px;}
.x9_c00082{left:280.800000px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls0_c00082{letter-spacing:0.000000pt;}
.ls1_c00082{letter-spacing:2.666667pt;}
.ws0_c00082{word-spacing:-14.781333pt;}
.ws1_c00082{word-spacing:0.000000pt;}
._10_c00082{margin-left:-17.984000pt;}
._11_c00082{margin-left:-13.248000pt;}
._12_c00082{margin-left:-12.160000pt;}
._18_c00082{margin-left:-9.984000pt;}
._15_c00082{margin-left:-7.520000pt;}
._e_c00082{margin-left:-6.090667pt;}
._a_c00082{margin-left:-5.130667pt;}
._f_c00082{margin-left:-3.882667pt;}
._8_c00082{margin-left:-2.944000pt;}
._7_c00082{margin-left:-1.280000pt;}
._9_c00082{width:1.482667pt;}
._c_c00082{width:2.592000pt;}
._d_c00082{width:3.893333pt;}
._2_c00082{width:5.066667pt;}
._1_c00082{width:6.453333pt;}
._5_c00082{width:7.893333pt;}
._14_c00082{width:9.536000pt;}
._3_c00082{width:10.506667pt;}
._b_c00082{width:11.978667pt;}
._4_c00082{width:14.026667pt;}
._16_c00082{width:15.061333pt;}
._13_c00082{width:16.309333pt;}
._0_c00082{width:20.853333pt;}
._17_c00082{width:37.920000pt;}
._19_c00082{width:225.664000pt;}
._6_c00082{width:268.960000pt;}
.fs4_c00082{font-size:42.666667pt;}
.fs0_c00082{font-size:53.333333pt;}
.fs2_c00082{font-size:58.666667pt;}
.fs3_c00082{font-size:61.333333pt;}
.fs1_c00082{font-size:64.000000pt;}
.y0_c00082{bottom:0.000000pt;}
.y1f_c00082{bottom:2.760000pt;}
.y1e_c00082{bottom:6.425219pt;}
.y1d_c00082{bottom:45.346667pt;}
.y1c_c00082{bottom:66.680000pt;}
.y1b_c00082{bottom:90.013333pt;}
.y1a_c00082{bottom:114.280000pt;}
.y19_c00082{bottom:135.880000pt;}
.y18_c00082{bottom:157.480000pt;}
.y17_c00082{bottom:178.546667pt;}
.y16_c00082{bottom:202.280000pt;}
.y15_c00082{bottom:223.480000pt;}
.y14_c00082{bottom:245.480000pt;}
.y13_c00082{bottom:265.213333pt;}
.y12_c00082{bottom:287.213333pt;}
.y11_c00082{bottom:308.680000pt;}
.y10_c00082{bottom:330.280000pt;}
.yf_c00082{bottom:352.546667pt;}
.ye_c00082{bottom:374.146667pt;}
.yd_c00082{bottom:396.413333pt;}
.yc_c00082{bottom:417.880000pt;}
.yb_c00082{bottom:439.880000pt;}
.ya_c00082{bottom:462.013333pt;}
.y9_c00082{bottom:483.880000pt;}
.y8_c00082{bottom:505.880000pt;}
.y7_c00082{bottom:527.746667pt;}
.y6_c00082{bottom:549.613333pt;}
.y5_c00082{bottom:570.946667pt;}
.y4_c00082{bottom:592.813333pt;}
.y3_c00082{bottom:615.080000pt;}
.y2_c00082{bottom:636.680000pt;}
.y1_c00082{bottom:659.080000pt;}
.h4_c00082{height:11.733399pt;}
.h5_c00082{height:38.937500pt;}
.h2_c00082{height:62.421875pt;}
.h3_c00082{height:81.031250pt;}
.h1_c00082{height:702.666667pt;}
.h0_c00082{height:702.733333pt;}
.w2_c00082{width:93.222667pt;}
.w1_c00082{width:496.000000pt;}
.w0_c00082{width:496.066667pt;}
.x0_c00082{left:0.000000pt;}
.x8_c00082{left:34.800000pt;}
.x7_c00082{left:36.266667pt;}
.x6_c00082{left:37.466667pt;}
.x5_c00082{left:38.666667pt;}
.x2_c00082{left:39.866667pt;}
.x3_c00082{left:41.200000pt;}
.x4_c00082{left:42.266667pt;}
.x1_c00082{left:131.333333pt;}
.xa_c00082{left:205.201538pt;}
.x9_c00082{left:249.600000pt;}
}





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

.ir_c00083:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00083{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00083;src:url('chunks/assets/font_16d69830ad34dbc19c5b7537.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00083;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00083;src:url('chunks/assets/font_327cb97b6b13c01c8f599cdc.woff2')format("woff");}.ff3_c00083{font-family:ff3_c00083;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00083;src:url('chunks/assets/font_3229acd55be5cc5185df9c97.woff2')format("woff");}.ff4_c00083{font-family:ff4_c00083;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00083;src:url('chunks/assets/font_61716490befa11901fdc335b.woff2')format("woff");}.ff5_c00083{font-family:ff5_c00083;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00083;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00083{font-family:ff6_c00083;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00083{vertical-align:0.000000px;}
.lsa_c00083{letter-spacing:-3.000000px;}
.ls8_c00083{letter-spacing:0.000000px;}
.ls9_c00083{letter-spacing:3.000000px;}
.ls7_c00083{letter-spacing:5.694000px;}
.lsb_c00083{letter-spacing:6.000000px;}
.ls5_c00083{letter-spacing:16.986000px;}
.ls4_c00083{letter-spacing:19.386000px;}
.ls2_c00083{letter-spacing:20.586000px;}
.ls6_c00083{letter-spacing:22.386000px;}
.ls1_c00083{letter-spacing:30.186000px;}
.ls3_c00083{letter-spacing:97.386000px;}
.ls0_c00083{letter-spacing:236.016000px;}
.sc__c00083{text-shadow:none;}
.sc0_c00083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00083{-webkit-text-stroke:0px transparent;}
.sc0_c00083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00083{word-spacing:-21.000000px;}
.ws7_c00083{word-spacing:-20.352000px;}
.ws2_c00083{word-spacing:-17.352000px;}
.ws3_c00083{word-spacing:-16.629000px;}
.ws1_c00083{word-spacing:-13.014000px;}
.ws5_c00083{word-spacing:-10.737000px;}
.ws6_c00083{word-spacing:-10.200000px;}
.ws8_c00083{word-spacing:0.000000px;}
.ws0_c00083{word-spacing:4.248000px;}
._6_c00083{margin-left:-11.160000px;}
._d_c00083{margin-left:-9.576000px;}
._2_c00083{margin-left:-7.560000px;}
._8_c00083{margin-left:-5.760000px;}
._7_c00083{margin-left:-3.984000px;}
._4_c00083{margin-left:-2.184000px;}
._5_c00083{margin-left:-1.008000px;}
._1_c00083{width:1.848000px;}
._f_c00083{width:2.850000px;}
._0_c00083{width:3.864000px;}
._b_c00083{width:4.968000px;}
._13_c00083{width:6.147000px;}
._a_c00083{width:7.176000px;}
._c_c00083{width:8.886000px;}
._10_c00083{width:9.960000px;}
._11_c00083{width:11.514000px;}
._16_c00083{width:13.350000px;}
._9_c00083{width:15.096000px;}
._17_c00083{width:17.202000px;}
._12_c00083{width:18.516000px;}
._3_c00083{width:21.192000px;}
._e_c00083{width:50.256000px;}
._14_c00083{width:83.367000px;}
._15_c00083{width:828.516000px;}
.fc2_c00083{color:transparent;}
.fc1_c00083{color:rgb(128,128,128);}
.fc0_c00083{color:rgb(0,0,0);}
.fs1_c00083{font-size:24.000000px;}
.fs8_c00083{font-size:48.000000px;}
.fs6_c00083{font-size:51.000000px;}
.fs3_c00083{font-size:54.000000px;}
.fs5_c00083{font-size:57.000000px;}
.fs7_c00083{font-size:66.000000px;}
.fs4_c00083{font-size:69.000000px;}
.fs2_c00083{font-size:72.000000px;}
.fs0_c00083{font-size:84.000000px;}
.y0_c00083{bottom:0.000000px;}
.y1f_c00083{bottom:3.105000px;}
.y1e_c00083{bottom:7.228357px;}
.y1d_c00083{bottom:46.530000px;}
.y1c_c00083{bottom:71.580000px;}
.y1b_c00083{bottom:95.880000px;}
.y1a_c00083{bottom:120.930000px;}
.y19_c00083{bottom:145.830000px;}
.y18_c00083{bottom:171.180000px;}
.y17_c00083{bottom:195.180000px;}
.y16_c00083{bottom:220.380000px;}
.y15_c00083{bottom:245.130000px;}
.y14_c00083{bottom:270.630000px;}
.y13_c00083{bottom:293.730000px;}
.y12_c00083{bottom:318.330000px;}
.y11_c00083{bottom:342.630000px;}
.y10_c00083{bottom:368.880000px;}
.yf_c00083{bottom:396.930000px;}
.ye_c00083{bottom:419.280000px;}
.yd_c00083{bottom:443.880000px;}
.yc_c00083{bottom:467.430000px;}
.yb_c00083{bottom:490.080000px;}
.ya_c00083{bottom:514.380000px;}
.y9_c00083{bottom:537.930000px;}
.y8_c00083{bottom:566.280000px;}
.y7_c00083{bottom:589.680000px;}
.y6_c00083{bottom:612.630000px;}
.y5_c00083{bottom:636.630000px;}
.y4_c00083{bottom:662.130000px;}
.y3_c00083{bottom:687.780000px;}
.y2_c00083{bottom:711.480000px;}
.y1_c00083{bottom:736.830000px;}
.h3_c00083{height:13.200074px;}
.h4_c00083{height:43.804688px;}
.h1_c00083{height:82.441406px;}
.h2_c00083{height:91.160156px;}
.h0_c00083{height:786.000000px;}
.w2_c00083{width:104.875500px;}
.w0_c00083{width:539.700000px;}
.w1_c00083{width:540.000000px;}
.x0_c00083{left:0.000000px;}
.x7_c00083{left:49.950000px;}
.x5_c00083{left:51.000000px;}
.x4_c00083{left:53.400000px;}
.x2_c00083{left:55.050000px;}
.x9_c00083{left:126.300000px;}
.x8_c00083{left:127.950000px;}
.x6_c00083{left:129.900000px;}
.x3_c00083{left:157.350000px;}
.xb_c00083{left:221.664230px;}
.x1_c00083{left:250.800000px;}
.xa_c00083{left:477.600000px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.lsa_c00083{letter-spacing:-2.666667pt;}
.ls8_c00083{letter-spacing:0.000000pt;}
.ls9_c00083{letter-spacing:2.666667pt;}
.ls7_c00083{letter-spacing:5.061333pt;}
.lsb_c00083{letter-spacing:5.333333pt;}
.ls5_c00083{letter-spacing:15.098667pt;}
.ls4_c00083{letter-spacing:17.232000pt;}
.ls2_c00083{letter-spacing:18.298667pt;}
.ls6_c00083{letter-spacing:19.898667pt;}
.ls1_c00083{letter-spacing:26.832000pt;}
.ls3_c00083{letter-spacing:86.565333pt;}
.ls0_c00083{letter-spacing:209.792000pt;}
.ws4_c00083{word-spacing:-18.666667pt;}
.ws7_c00083{word-spacing:-18.090667pt;}
.ws2_c00083{word-spacing:-15.424000pt;}
.ws3_c00083{word-spacing:-14.781333pt;}
.ws1_c00083{word-spacing:-11.568000pt;}
.ws5_c00083{word-spacing:-9.544000pt;}
.ws6_c00083{word-spacing:-9.066667pt;}
.ws8_c00083{word-spacing:0.000000pt;}
.ws0_c00083{word-spacing:3.776000pt;}
._6_c00083{margin-left:-9.920000pt;}
._d_c00083{margin-left:-8.512000pt;}
._2_c00083{margin-left:-6.720000pt;}
._8_c00083{margin-left:-5.120000pt;}
._7_c00083{margin-left:-3.541333pt;}
._4_c00083{margin-left:-1.941333pt;}
._5_c00083{margin-left:-0.896000pt;}
._1_c00083{width:1.642667pt;}
._f_c00083{width:2.533333pt;}
._0_c00083{width:3.434667pt;}
._b_c00083{width:4.416000pt;}
._13_c00083{width:5.464000pt;}
._a_c00083{width:6.378667pt;}
._c_c00083{width:7.898667pt;}
._10_c00083{width:8.853333pt;}
._11_c00083{width:10.234667pt;}
._16_c00083{width:11.866667pt;}
._9_c00083{width:13.418667pt;}
._17_c00083{width:15.290667pt;}
._12_c00083{width:16.458667pt;}
._3_c00083{width:18.837333pt;}
._e_c00083{width:44.672000pt;}
._14_c00083{width:74.104000pt;}
._15_c00083{width:736.458667pt;}
.fs1_c00083{font-size:21.333333pt;}
.fs8_c00083{font-size:42.666667pt;}
.fs6_c00083{font-size:45.333333pt;}
.fs3_c00083{font-size:48.000000pt;}
.fs5_c00083{font-size:50.666667pt;}
.fs7_c00083{font-size:58.666667pt;}
.fs4_c00083{font-size:61.333333pt;}
.fs2_c00083{font-size:64.000000pt;}
.fs0_c00083{font-size:74.666667pt;}
.y0_c00083{bottom:0.000000pt;}
.y1f_c00083{bottom:2.760000pt;}
.y1e_c00083{bottom:6.425206pt;}
.y1d_c00083{bottom:41.360000pt;}
.y1c_c00083{bottom:63.626667pt;}
.y1b_c00083{bottom:85.226667pt;}
.y1a_c00083{bottom:107.493333pt;}
.y19_c00083{bottom:129.626667pt;}
.y18_c00083{bottom:152.160000pt;}
.y17_c00083{bottom:173.493333pt;}
.y16_c00083{bottom:195.893333pt;}
.y15_c00083{bottom:217.893333pt;}
.y14_c00083{bottom:240.560000pt;}
.y13_c00083{bottom:261.093333pt;}
.y12_c00083{bottom:282.960000pt;}
.y11_c00083{bottom:304.560000pt;}
.y10_c00083{bottom:327.893333pt;}
.yf_c00083{bottom:352.826667pt;}
.ye_c00083{bottom:372.693333pt;}
.yd_c00083{bottom:394.560000pt;}
.yc_c00083{bottom:415.493333pt;}
.yb_c00083{bottom:435.626667pt;}
.ya_c00083{bottom:457.226667pt;}
.y9_c00083{bottom:478.160000pt;}
.y8_c00083{bottom:503.360000pt;}
.y7_c00083{bottom:524.160000pt;}
.y6_c00083{bottom:544.560000pt;}
.y5_c00083{bottom:565.893333pt;}
.y4_c00083{bottom:588.560000pt;}
.y3_c00083{bottom:611.360000pt;}
.y2_c00083{bottom:632.426667pt;}
.y1_c00083{bottom:654.960000pt;}
.h3_c00083{height:11.733399pt;}
.h4_c00083{height:38.937500pt;}
.h1_c00083{height:73.281250pt;}
.h2_c00083{height:81.031250pt;}
.h0_c00083{height:698.666667pt;}
.w2_c00083{width:93.222667pt;}
.w0_c00083{width:479.733333pt;}
.w1_c00083{width:480.000000pt;}
.x0_c00083{left:0.000000pt;}
.x7_c00083{left:44.400000pt;}
.x5_c00083{left:45.333333pt;}
.x4_c00083{left:47.466667pt;}
.x2_c00083{left:48.933333pt;}
.x9_c00083{left:112.266667pt;}
.x8_c00083{left:113.733333pt;}
.x6_c00083{left:115.466667pt;}
.x3_c00083{left:139.866667pt;}
.xb_c00083{left:197.034871pt;}
.x1_c00083{left:222.933333pt;}
.xa_c00083{left:424.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_24a0bc72031cf8266cff5c7b.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.480469;font-style:normal;font-weight:normal;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_ed73a327c28b70d80dc95899.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00084{font-family:ff3_c00084;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00084{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00084{vertical-align:0.000000px;}
.ls4_c00084{letter-spacing:0.000000px;}
.ls1_c00084{letter-spacing:3.000000px;}
.ls2_c00084{letter-spacing:11.400000px;}
.ls0_c00084{letter-spacing:333.387000px;}
.ls3_c00084{letter-spacing:794.571000px;}
.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;}
}
.ws2_c00084{word-spacing:-25.860000px;}
.ws3_c00084{word-spacing:-17.460000px;}
.ws1_c00084{word-spacing:-17.352000px;}
.ws0_c00084{word-spacing:-14.460000px;}
.ws4_c00084{word-spacing:0.000000px;}
._18_c00084{margin-left:-15.132000px;}
._10_c00084{margin-left:-13.392000px;}
._19_c00084{margin-left:-12.312000px;}
._12_c00084{margin-left:-9.792000px;}
._13_c00084{margin-left:-8.472000px;}
._d_c00084{margin-left:-6.936000px;}
._8_c00084{margin-left:-5.880000px;}
._f_c00084{margin-left:-4.794000px;}
._e_c00084{margin-left:-3.744000px;}
._b_c00084{margin-left:-2.544000px;}
._c_c00084{margin-left:-1.032000px;}
._4_c00084{width:1.740000px;}
._9_c00084{width:3.366000px;}
._a_c00084{width:4.554000px;}
._7_c00084{width:5.880000px;}
._6_c00084{width:7.260000px;}
._14_c00084{width:8.328000px;}
._2_c00084{width:9.900000px;}
._5_c00084{width:11.520000px;}
._15_c00084{width:12.912000px;}
._11_c00084{width:14.214000px;}
._1_c00084{width:16.380000px;}
._3_c00084{width:20.220000px;}
._0_c00084{width:26.160000px;}
._16_c00084{width:140.868000px;}
._17_c00084{width:374.994000px;}
.fc2_c00084{color:transparent;}
.fc1_c00084{color:rgb(128,128,128);}
.fc0_c00084{color:rgb(0,0,0);}
.fs5_c00084{font-size:48.000000px;}
.fs0_c00084{font-size:60.000000px;}
.fs2_c00084{font-size:66.000000px;}
.fs4_c00084{font-size:69.000000px;}
.fs3_c00084{font-size:72.000000px;}
.fs1_c00084{font-size:93.000000px;}
.y0_c00084{bottom:0.000000px;}
.y20_c00084{bottom:3.105000px;}
.y1f_c00084{bottom:7.228369px;}
.y1e_c00084{bottom:52.920000px;}
.y1d_c00084{bottom:80.370000px;}
.y1c_c00084{bottom:106.620000px;}
.y1b_c00084{bottom:130.920000px;}
.y1a_c00084{bottom:154.470000px;}
.y19_c00084{bottom:179.820000px;}
.y18_c00084{bottom:205.170000px;}
.y17_c00084{bottom:229.470000px;}
.y16_c00084{bottom:255.120000px;}
.y15_c00084{bottom:280.020000px;}
.y14_c00084{bottom:302.670000px;}
.y13_c00084{bottom:326.070000px;}
.y12_c00084{bottom:350.670000px;}
.y11_c00084{bottom:375.870000px;}
.y10_c00084{bottom:388.170000px;}
.yf_c00084{bottom:400.320000px;}
.ye_c00084{bottom:425.520000px;}
.yd_c00084{bottom:450.120000px;}
.yc_c00084{bottom:474.570000px;}
.yb_c00084{bottom:499.470000px;}
.ya_c00084{bottom:523.770000px;}
.y9_c00084{bottom:548.370000px;}
.y8_c00084{bottom:572.670000px;}
.y7_c00084{bottom:597.270000px;}
.y6_c00084{bottom:621.720000px;}
.y5_c00084{bottom:646.320000px;}
.y4_c00084{bottom:670.920000px;}
.y3_c00084{bottom:695.220000px;}
.y2_c00084{bottom:719.820000px;}
.y1_c00084{bottom:744.870000px;}
.h6_c00084{height:13.200073px;}
.h7_c00084{height:43.804688px;}
.h5_c00084{height:75.966797px;}
.h4_c00084{height:87.361816px;}
.h3_c00084{height:91.160156px;}
.h2_c00084{height:117.748535px;}
.h1_c00084{height:792.000000px;}
.h0_c00084{height:792.150000px;}
.w2_c00084{width:104.875500px;}
.w1_c00084{width:552.750000px;}
.w0_c00084{width:552.975000px;}
.x0_c00084{left:0.000000px;}
.x2_c00084{left:37.500000px;}
.x3_c00084{left:38.700000px;}
.x4_c00084{left:39.750000px;}
.x5_c00084{left:41.400000px;}
.x6_c00084{left:43.200000px;}
.x7_c00084{left:44.850000px;}
.x8_c00084{left:46.800000px;}
.xa_c00084{left:47.850000px;}
.xb_c00084{left:48.900000px;}
.xc_c00084{left:95.100000px;}
.x9_c00084{left:97.950000px;}
.x1_c00084{left:139.950000px;}
.xe_c00084{left:228.301758px;}
.xd_c00084{left:387.150000px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls4_c00084{letter-spacing:0.000000pt;}
.ls1_c00084{letter-spacing:2.666667pt;}
.ls2_c00084{letter-spacing:10.133333pt;}
.ls0_c00084{letter-spacing:296.344000pt;}
.ls3_c00084{letter-spacing:706.285333pt;}
.ws2_c00084{word-spacing:-22.986667pt;}
.ws3_c00084{word-spacing:-15.520000pt;}
.ws1_c00084{word-spacing:-15.424000pt;}
.ws0_c00084{word-spacing:-12.853333pt;}
.ws4_c00084{word-spacing:0.000000pt;}
._18_c00084{margin-left:-13.450667pt;}
._10_c00084{margin-left:-11.904000pt;}
._19_c00084{margin-left:-10.944000pt;}
._12_c00084{margin-left:-8.704000pt;}
._13_c00084{margin-left:-7.530667pt;}
._d_c00084{margin-left:-6.165333pt;}
._8_c00084{margin-left:-5.226667pt;}
._f_c00084{margin-left:-4.261333pt;}
._e_c00084{margin-left:-3.328000pt;}
._b_c00084{margin-left:-2.261333pt;}
._c_c00084{margin-left:-0.917333pt;}
._4_c00084{width:1.546667pt;}
._9_c00084{width:2.992000pt;}
._a_c00084{width:4.048000pt;}
._7_c00084{width:5.226667pt;}
._6_c00084{width:6.453333pt;}
._14_c00084{width:7.402667pt;}
._2_c00084{width:8.800000pt;}
._5_c00084{width:10.240000pt;}
._15_c00084{width:11.477333pt;}
._11_c00084{width:12.634667pt;}
._1_c00084{width:14.560000pt;}
._3_c00084{width:17.973333pt;}
._0_c00084{width:23.253333pt;}
._16_c00084{width:125.216000pt;}
._17_c00084{width:333.328000pt;}
.fs5_c00084{font-size:42.666667pt;}
.fs0_c00084{font-size:53.333333pt;}
.fs2_c00084{font-size:58.666667pt;}
.fs4_c00084{font-size:61.333333pt;}
.fs3_c00084{font-size:64.000000pt;}
.fs1_c00084{font-size:82.666667pt;}
.y0_c00084{bottom:0.000000pt;}
.y20_c00084{bottom:2.760000pt;}
.y1f_c00084{bottom:6.425217pt;}
.y1e_c00084{bottom:47.040000pt;}
.y1d_c00084{bottom:71.440000pt;}
.y1c_c00084{bottom:94.773333pt;}
.y1b_c00084{bottom:116.373333pt;}
.y1a_c00084{bottom:137.306667pt;}
.y19_c00084{bottom:159.840000pt;}
.y18_c00084{bottom:182.373333pt;}
.y17_c00084{bottom:203.973333pt;}
.y16_c00084{bottom:226.773333pt;}
.y15_c00084{bottom:248.906667pt;}
.y14_c00084{bottom:269.040000pt;}
.y13_c00084{bottom:289.840000pt;}
.y12_c00084{bottom:311.706667pt;}
.y11_c00084{bottom:334.106667pt;}
.y10_c00084{bottom:345.040000pt;}
.yf_c00084{bottom:355.840000pt;}
.ye_c00084{bottom:378.240000pt;}
.yd_c00084{bottom:400.106667pt;}
.yc_c00084{bottom:421.840000pt;}
.yb_c00084{bottom:443.973333pt;}
.ya_c00084{bottom:465.573333pt;}
.y9_c00084{bottom:487.440000pt;}
.y8_c00084{bottom:509.040000pt;}
.y7_c00084{bottom:530.906667pt;}
.y6_c00084{bottom:552.640000pt;}
.y5_c00084{bottom:574.506667pt;}
.y4_c00084{bottom:596.373333pt;}
.y3_c00084{bottom:617.973333pt;}
.y2_c00084{bottom:639.840000pt;}
.y1_c00084{bottom:662.106667pt;}
.h6_c00084{height:11.733399pt;}
.h7_c00084{height:38.937500pt;}
.h5_c00084{height:67.526042pt;}
.h4_c00084{height:77.654948pt;}
.h3_c00084{height:81.031250pt;}
.h2_c00084{height:104.665365pt;}
.h1_c00084{height:704.000000pt;}
.h0_c00084{height:704.133333pt;}
.w2_c00084{width:93.222667pt;}
.w1_c00084{width:491.333333pt;}
.w0_c00084{width:491.533333pt;}
.x0_c00084{left:0.000000pt;}
.x2_c00084{left:33.333333pt;}
.x3_c00084{left:34.400000pt;}
.x4_c00084{left:35.333333pt;}
.x5_c00084{left:36.800000pt;}
.x6_c00084{left:38.400000pt;}
.x7_c00084{left:39.866667pt;}
.x8_c00084{left:41.600000pt;}
.xa_c00084{left:42.533333pt;}
.xb_c00084{left:43.466667pt;}
.xc_c00084{left:84.533333pt;}
.x9_c00084{left:87.066667pt;}
.x1_c00084{left:124.400000pt;}
.xe_c00084{left:202.934896pt;}
.xd_c00084{left:344.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3aabf5611f0d9585b2d21225.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.592000;font-style:normal;font-weight:normal;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_42ca6a7f4ee780e6466fa4ba.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:1.575000;font-style:normal;font-weight:normal;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_b85b387359431ae72ff17331.woff2')format("woff");}.ff3_c00085{font-family:ff3_c00085;line-height:1.568848;font-style:normal;font-weight:normal;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_c20bd2fce3c376bcdc61855e.woff2')format("woff");}.ff4_c00085{font-family:ff4_c00085;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00085{font-family:ff5_c00085;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00085{vertical-align:0.000000px;}
.ls0_c00085{letter-spacing:0.000000px;}
.ls1_c00085{letter-spacing:3.000000px;}
.sc__c00085{text-shadow:none;}
.sc0_c00085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00085{-webkit-text-stroke:0px transparent;}
.sc0_c00085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00085{word-spacing:-33.192000px;}
.ws1_c00085{word-spacing:-16.629000px;}
.ws2_c00085{word-spacing:0.000000px;}
._f_c00085{margin-left:-24.120000px;}
._e_c00085{margin-left:-19.170000px;}
._15_c00085{margin-left:-11.520000px;}
._11_c00085{margin-left:-8.352000px;}
._4_c00085{margin-left:-6.660000px;}
._a_c00085{margin-left:-4.932000px;}
._c_c00085{margin-left:-3.672000px;}
._d_c00085{margin-left:-2.448000px;}
._10_c00085{margin-left:-1.296000px;}
._9_c00085{width:1.728000px;}
._b_c00085{width:3.024000px;}
._7_c00085{width:4.860000px;}
._1_c00085{width:6.660000px;}
._6_c00085{width:8.400000px;}
._14_c00085{width:9.576000px;}
._16_c00085{width:10.740000px;}
._8_c00085{width:11.760000px;}
._5_c00085{width:13.020000px;}
._12_c00085{width:14.088000px;}
._2_c00085{width:15.900000px;}
._3_c00085{width:16.920000px;}
._0_c00085{width:20.820000px;}
._13_c00085{width:59.544000px;}
.fc2_c00085{color:transparent;}
.fc1_c00085{color:rgb(128,128,128);}
.fc0_c00085{color:rgb(0,0,0);}
.fs3_c00085{font-size:48.000000px;}
.fs0_c00085{font-size:60.000000px;}
.fs2_c00085{font-size:69.000000px;}
.fs1_c00085{font-size:72.000000px;}
.y0_c00085{bottom:0.000000px;}
.y1e_c00085{bottom:3.105000px;}
.y1d_c00085{bottom:7.228355px;}
.y1c_c00085{bottom:78.285000px;}
.y1b_c00085{bottom:103.935000px;}
.y1a_c00085{bottom:129.135000px;}
.y19_c00085{bottom:153.135000px;}
.y18_c00085{bottom:179.535000px;}
.y17_c00085{bottom:204.885000px;}
.y16_c00085{bottom:229.185000px;}
.y15_c00085{bottom:253.035000px;}
.y14_c00085{bottom:277.335000px;}
.y13_c00085{bottom:303.735000px;}
.y12_c00085{bottom:326.985000px;}
.y11_c00085{bottom:351.585000px;}
.y10_c00085{bottom:376.185000px;}
.yf_c00085{bottom:401.235000px;}
.ye_c00085{bottom:424.935000px;}
.yd_c00085{bottom:449.835000px;}
.yc_c00085{bottom:474.885000px;}
.yb_c00085{bottom:499.185000px;}
.ya_c00085{bottom:523.785000px;}
.y9_c00085{bottom:548.385000px;}
.y8_c00085{bottom:572.985000px;}
.y7_c00085{bottom:597.585000px;}
.y6_c00085{bottom:622.335000px;}
.y5_c00085{bottom:646.935000px;}
.y4_c00085{bottom:670.185000px;}
.y3_c00085{bottom:693.585000px;}
.y2_c00085{bottom:720.585000px;}
.y1_c00085{bottom:746.535000px;}
.h4_c00085{height:13.200074px;}
.h5_c00085{height:43.804688px;}
.h2_c00085{height:65.040000px;}
.h3_c00085{height:91.160156px;}
.h0_c00085{height:795.675000px;}
.h1_c00085{height:795.750000px;}
.w1_c00085{width:104.875500px;}
.w0_c00085{width:523.500000px;}
.x0_c00085{left:0.000000px;}
.x3_c00085{left:49.500000px;}
.x9_c00085{left:93.600000px;}
.x4_c00085{left:115.050000px;}
.xa_c00085{left:117.150000px;}
.x8_c00085{left:118.200000px;}
.x7_c00085{left:119.550000px;}
.x6_c00085{left:121.950000px;}
.x5_c00085{left:123.750000px;}
.x2_c00085{left:125.850000px;}
.xb_c00085{left:213.564240px;}
.x1_c00085{left:240.300000px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls0_c00085{letter-spacing:0.000000pt;}
.ls1_c00085{letter-spacing:2.666667pt;}
.ws0_c00085{word-spacing:-29.504000pt;}
.ws1_c00085{word-spacing:-14.781333pt;}
.ws2_c00085{word-spacing:0.000000pt;}
._f_c00085{margin-left:-21.440000pt;}
._e_c00085{margin-left:-17.040000pt;}
._15_c00085{margin-left:-10.240000pt;}
._11_c00085{margin-left:-7.424000pt;}
._4_c00085{margin-left:-5.920000pt;}
._a_c00085{margin-left:-4.384000pt;}
._c_c00085{margin-left:-3.264000pt;}
._d_c00085{margin-left:-2.176000pt;}
._10_c00085{margin-left:-1.152000pt;}
._9_c00085{width:1.536000pt;}
._b_c00085{width:2.688000pt;}
._7_c00085{width:4.320000pt;}
._1_c00085{width:5.920000pt;}
._6_c00085{width:7.466667pt;}
._14_c00085{width:8.512000pt;}
._16_c00085{width:9.546667pt;}
._8_c00085{width:10.453333pt;}
._5_c00085{width:11.573333pt;}
._12_c00085{width:12.522667pt;}
._2_c00085{width:14.133333pt;}
._3_c00085{width:15.040000pt;}
._0_c00085{width:18.506667pt;}
._13_c00085{width:52.928000pt;}
.fs3_c00085{font-size:42.666667pt;}
.fs0_c00085{font-size:53.333333pt;}
.fs2_c00085{font-size:61.333333pt;}
.fs1_c00085{font-size:64.000000pt;}
.y0_c00085{bottom:0.000000pt;}
.y1e_c00085{bottom:2.760000pt;}
.y1d_c00085{bottom:6.425204pt;}
.y1c_c00085{bottom:69.586667pt;}
.y1b_c00085{bottom:92.386667pt;}
.y1a_c00085{bottom:114.786667pt;}
.y19_c00085{bottom:136.120000pt;}
.y18_c00085{bottom:159.586667pt;}
.y17_c00085{bottom:182.120000pt;}
.y16_c00085{bottom:203.720000pt;}
.y15_c00085{bottom:224.920000pt;}
.y14_c00085{bottom:246.520000pt;}
.y13_c00085{bottom:269.986667pt;}
.y12_c00085{bottom:290.653333pt;}
.y11_c00085{bottom:312.520000pt;}
.y10_c00085{bottom:334.386667pt;}
.yf_c00085{bottom:356.653333pt;}
.ye_c00085{bottom:377.720000pt;}
.yd_c00085{bottom:399.853333pt;}
.yc_c00085{bottom:422.120000pt;}
.yb_c00085{bottom:443.720000pt;}
.ya_c00085{bottom:465.586667pt;}
.y9_c00085{bottom:487.453333pt;}
.y8_c00085{bottom:509.320000pt;}
.y7_c00085{bottom:531.186667pt;}
.y6_c00085{bottom:553.186667pt;}
.y5_c00085{bottom:575.053333pt;}
.y4_c00085{bottom:595.720000pt;}
.y3_c00085{bottom:616.520000pt;}
.y2_c00085{bottom:640.520000pt;}
.y1_c00085{bottom:663.586667pt;}
.h4_c00085{height:11.733399pt;}
.h5_c00085{height:38.937500pt;}
.h2_c00085{height:57.813333pt;}
.h3_c00085{height:81.031250pt;}
.h0_c00085{height:707.266667pt;}
.h1_c00085{height:707.333333pt;}
.w1_c00085{width:93.222667pt;}
.w0_c00085{width:465.333333pt;}
.x0_c00085{left:0.000000pt;}
.x3_c00085{left:44.000000pt;}
.x9_c00085{left:83.200000pt;}
.x4_c00085{left:102.266667pt;}
.xa_c00085{left:104.133333pt;}
.x8_c00085{left:105.066667pt;}
.x7_c00085{left:106.266667pt;}
.x6_c00085{left:108.400000pt;}
.x5_c00085{left:110.000000pt;}
.x2_c00085{left:111.866667pt;}
.xb_c00085{left:189.834880pt;}
.x1_c00085{left:213.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_020d1b534c9a5eed3c132660.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.592000;font-style:normal;font-weight:normal;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_826bd5585d12a226c8148212.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00086;src:url('chunks/assets/font_4344e89bb39137199d38b8da.woff2')format("woff");}.ff3_c00086{font-family:ff3_c00086;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00086;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00086{font-family:ff4_c00086;line-height:1.219238;font-style: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;}
.ls1_c00086{letter-spacing:0.000000px;}
.ls0_c00086{letter-spacing:3.000000px;}
.ls2_c00086{letter-spacing:6.000000px;}
.sc__c00086{text-shadow:none;}
.sc0_c00086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00086{-webkit-text-stroke:0px transparent;}
.sc0_c00086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00086{word-spacing:-33.660000px;}
.ws1_c00086{word-spacing:-33.192000px;}
.ws0_c00086{word-spacing:-21.906000px;}
.ws3_c00086{word-spacing:0.000000px;}
._1a_c00086{margin-left:-20.232000px;}
._19_c00086{margin-left:-18.216000px;}
._1b_c00086{margin-left:-15.264000px;}
._10_c00086{margin-left:-12.216000px;}
._f_c00086{margin-left:-10.560000px;}
._e_c00086{margin-left:-8.928000px;}
._d_c00086{margin-left:-7.176000px;}
._15_c00086{margin-left:-6.072000px;}
._b_c00086{margin-left:-5.064000px;}
._14_c00086{margin-left:-3.960000px;}
._c_c00086{margin-left:-2.880000px;}
._a_c00086{margin-left:-1.224000px;}
._2_c00086{width:1.920000px;}
._9_c00086{width:3.288000px;}
._11_c00086{width:4.752000px;}
._5_c00086{width:6.120000px;}
._3_c00086{width:7.260000px;}
._18_c00086{width:9.168000px;}
._13_c00086{width:10.296000px;}
._7_c00086{width:11.640000px;}
._6_c00086{width:13.200000px;}
._1d_c00086{width:14.439000px;}
._4_c00086{width:16.500000px;}
._16_c00086{width:19.032000px;}
._1_c00086{width:23.220000px;}
._1c_c00086{width:28.920000px;}
._0_c00086{width:39.120000px;}
._12_c00086{width:60.240000px;}
._8_c00086{width:301.980000px;}
._17_c00086{width:831.252000px;}
.fc2_c00086{color:transparent;}
.fc1_c00086{color:rgb(128,128,128);}
.fc0_c00086{color:rgb(0,0,0);}
.fs4_c00086{font-size:48.000000px;}
.fs0_c00086{font-size:60.000000px;}
.fs2_c00086{font-size:66.000000px;}
.fs3_c00086{font-size:69.000000px;}
.fs1_c00086{font-size:72.000000px;}
.y0_c00086{bottom:0.000000px;}
.y1f_c00086{bottom:3.105000px;}
.y1e_c00086{bottom:7.228371px;}
.y1d_c00086{bottom:62.415000px;}
.y1c_c00086{bottom:90.465000px;}
.y1b_c00086{bottom:115.065000px;}
.y1a_c00086{bottom:140.865000px;}
.y19_c00086{bottom:164.715000px;}
.y18_c00086{bottom:189.015000px;}
.y17_c00086{bottom:213.765000px;}
.y16_c00086{bottom:239.715000px;}
.y15_c00086{bottom:264.315000px;}
.y14_c00086{bottom:290.565000px;}
.y13_c00086{bottom:311.565000px;}
.y12_c00086{bottom:334.815000px;}
.y11_c00086{bottom:359.865000px;}
.y10_c00086{bottom:383.715000px;}
.yf_c00086{bottom:409.065000px;}
.ye_c00086{bottom:433.065000px;}
.yd_c00086{bottom:457.665000px;}
.yc_c00086{bottom:482.415000px;}
.yb_c00086{bottom:506.715000px;}
.ya_c00086{bottom:531.015000px;}
.y9_c00086{bottom:555.165000px;}
.y8_c00086{bottom:579.615000px;}
.y7_c00086{bottom:604.515000px;}
.y6_c00086{bottom:629.115000px;}
.y5_c00086{bottom:653.415000px;}
.y4_c00086{bottom:677.715000px;}
.y3_c00086{bottom:702.015000px;}
.y2_c00086{bottom:726.765000px;}
.y1_c00086{bottom:751.965000px;}
.h5_c00086{height:13.200074px;}
.h6_c00086{height:43.804688px;}
.h2_c00086{height:65.040000px;}
.h4_c00086{height:70.224609px;}
.h3_c00086{height:91.160156px;}
.h1_c00086{height:797.250000px;}
.h0_c00086{height:797.325000px;}
.w2_c00086{width:104.875500px;}
.w0_c00086{width:551.100000px;}
.w1_c00086{width:551.250000px;}
.x0_c00086{left:0.000000px;}
.x6_c00086{left:37.200000px;}
.x7_c00086{left:39.450000px;}
.x3_c00086{left:40.800000px;}
.x4_c00086{left:41.850000px;}
.x2_c00086{left:43.500000px;}
.x5_c00086{left:64.800000px;}
.x1_c00086{left:146.400000px;}
.x9_c00086{left:227.364258px;}
.x8_c00086{left:386.100000px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls1_c00086{letter-spacing:0.000000pt;}
.ls0_c00086{letter-spacing:2.666667pt;}
.ls2_c00086{letter-spacing:5.333333pt;}
.ws2_c00086{word-spacing:-29.920000pt;}
.ws1_c00086{word-spacing:-29.504000pt;}
.ws0_c00086{word-spacing:-19.472000pt;}
.ws3_c00086{word-spacing:0.000000pt;}
._1a_c00086{margin-left:-17.984000pt;}
._19_c00086{margin-left:-16.192000pt;}
._1b_c00086{margin-left:-13.568000pt;}
._10_c00086{margin-left:-10.858667pt;}
._f_c00086{margin-left:-9.386667pt;}
._e_c00086{margin-left:-7.936000pt;}
._d_c00086{margin-left:-6.378667pt;}
._15_c00086{margin-left:-5.397333pt;}
._b_c00086{margin-left:-4.501333pt;}
._14_c00086{margin-left:-3.520000pt;}
._c_c00086{margin-left:-2.560000pt;}
._a_c00086{margin-left:-1.088000pt;}
._2_c00086{width:1.706667pt;}
._9_c00086{width:2.922667pt;}
._11_c00086{width:4.224000pt;}
._5_c00086{width:5.440000pt;}
._3_c00086{width:6.453333pt;}
._18_c00086{width:8.149333pt;}
._13_c00086{width:9.152000pt;}
._7_c00086{width:10.346667pt;}
._6_c00086{width:11.733333pt;}
._1d_c00086{width:12.834667pt;}
._4_c00086{width:14.666667pt;}
._16_c00086{width:16.917333pt;}
._1_c00086{width:20.640000pt;}
._1c_c00086{width:25.706667pt;}
._0_c00086{width:34.773333pt;}
._12_c00086{width:53.546667pt;}
._8_c00086{width:268.426667pt;}
._17_c00086{width:738.890667pt;}
.fs4_c00086{font-size:42.666667pt;}
.fs0_c00086{font-size:53.333333pt;}
.fs2_c00086{font-size:58.666667pt;}
.fs3_c00086{font-size:61.333333pt;}
.fs1_c00086{font-size:64.000000pt;}
.y0_c00086{bottom:0.000000pt;}
.y1f_c00086{bottom:2.760000pt;}
.y1e_c00086{bottom:6.425219pt;}
.y1d_c00086{bottom:55.480000pt;}
.y1c_c00086{bottom:80.413333pt;}
.y1b_c00086{bottom:102.280000pt;}
.y1a_c00086{bottom:125.213333pt;}
.y19_c00086{bottom:146.413333pt;}
.y18_c00086{bottom:168.013333pt;}
.y17_c00086{bottom:190.013333pt;}
.y16_c00086{bottom:213.080000pt;}
.y15_c00086{bottom:234.946667pt;}
.y14_c00086{bottom:258.280000pt;}
.y13_c00086{bottom:276.946667pt;}
.y12_c00086{bottom:297.613333pt;}
.y11_c00086{bottom:319.880000pt;}
.y10_c00086{bottom:341.080000pt;}
.yf_c00086{bottom:363.613333pt;}
.ye_c00086{bottom:384.946667pt;}
.yd_c00086{bottom:406.813333pt;}
.yc_c00086{bottom:428.813333pt;}
.yb_c00086{bottom:450.413333pt;}
.ya_c00086{bottom:472.013333pt;}
.y9_c00086{bottom:493.480000pt;}
.y8_c00086{bottom:515.213333pt;}
.y7_c00086{bottom:537.346667pt;}
.y6_c00086{bottom:559.213333pt;}
.y5_c00086{bottom:580.813333pt;}
.y4_c00086{bottom:602.413333pt;}
.y3_c00086{bottom:624.013333pt;}
.y2_c00086{bottom:646.013333pt;}
.y1_c00086{bottom:668.413333pt;}
.h5_c00086{height:11.733399pt;}
.h6_c00086{height:38.937500pt;}
.h2_c00086{height:57.813333pt;}
.h4_c00086{height:62.421875pt;}
.h3_c00086{height:81.031250pt;}
.h1_c00086{height:708.666667pt;}
.h0_c00086{height:708.733333pt;}
.w2_c00086{width:93.222667pt;}
.w0_c00086{width:489.866667pt;}
.w1_c00086{width:490.000000pt;}
.x0_c00086{left:0.000000pt;}
.x6_c00086{left:33.066667pt;}
.x7_c00086{left:35.066667pt;}
.x3_c00086{left:36.266667pt;}
.x4_c00086{left:37.200000pt;}
.x2_c00086{left:38.666667pt;}
.x5_c00086{left:57.600000pt;}
.x1_c00086{left:130.133333pt;}
.x9_c00086{left:202.101563pt;}
.x8_c00086{left:343.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7e0e700fe0bddb77a9c627cf.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00087;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00087;src:url('chunks/assets/font_2e21dc86233b5b8f0a485996.woff2')format("woff");}.ff3_c00087{font-family:ff3_c00087;line-height:1.568848;font-style:normal;font-weight:normal;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_6adde064acdc045a3c4b8440.woff2')format("woff");}.ff4_c00087{font-family:ff4_c00087;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00087{font-family:ff5_c00087;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00087{vertical-align:0.000000px;}
.ls1_c00087{letter-spacing:0.000000px;}
.ls2_c00087{letter-spacing:3.000000px;}
.ls0_c00087{letter-spacing:333.048000px;}
.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;}
}
.ws2_c00087{word-spacing:-17.460000px;}
.ws0_c00087{word-spacing:-17.352000px;}
.ws1_c00087{word-spacing:-16.629000px;}
.ws3_c00087{word-spacing:0.000000px;}
._14_c00087{margin-left:-18.900000px;}
._12_c00087{margin-left:-15.048000px;}
._16_c00087{margin-left:-12.267000px;}
._13_c00087{margin-left:-10.620000px;}
._b_c00087{margin-left:-9.540000px;}
._10_c00087{margin-left:-8.136000px;}
._7_c00087{margin-left:-6.912000px;}
._8_c00087{margin-left:-5.040000px;}
._3_c00087{margin-left:-3.780000px;}
._9_c00087{margin-left:-2.388000px;}
._a_c00087{margin-left:-1.044000px;}
._1_c00087{width:1.512000px;}
._2_c00087{width:2.688000px;}
._0_c00087{width:3.864000px;}
._6_c00087{width:5.292000px;}
._4_c00087{width:6.300000px;}
._18_c00087{width:7.356000px;}
._c_c00087{width:8.508000px;}
._5_c00087{width:9.576000px;}
._d_c00087{width:11.484000px;}
._17_c00087{width:12.804000px;}
._e_c00087{width:14.244000px;}
._15_c00087{width:15.624000px;}
._11_c00087{width:18.216000px;}
._19_c00087{width:19.896000px;}
._f_c00087{width:23.796000px;}
.fc2_c00087{color:transparent;}
.fc1_c00087{color:rgb(128,128,128);}
.fc0_c00087{color:rgb(0,0,0);}
.fs4_c00087{font-size:48.000000px;}
.fs3_c00087{font-size:60.000000px;}
.fs2_c00087{font-size:69.000000px;}
.fs1_c00087{font-size:72.000000px;}
.fs0_c00087{font-size:84.000000px;}
.y0_c00087{bottom:0.000000px;}
.y1f_c00087{bottom:3.105000px;}
.y1e_c00087{bottom:7.228357px;}
.y1d_c00087{bottom:47.880000px;}
.y1c_c00087{bottom:73.680000px;}
.y1b_c00087{bottom:99.330000px;}
.y1a_c00087{bottom:124.230000px;}
.y19_c00087{bottom:149.580000px;}
.y18_c00087{bottom:174.930000px;}
.y17_c00087{bottom:198.780000px;}
.y16_c00087{bottom:223.380000px;}
.y15_c00087{bottom:249.480000px;}
.y14_c00087{bottom:273.030000px;}
.y13_c00087{bottom:296.730000px;}
.y12_c00087{bottom:321.330000px;}
.y11_c00087{bottom:345.630000px;}
.y10_c00087{bottom:370.530000px;}
.yf_c00087{bottom:395.580000px;}
.ye_c00087{bottom:419.880000px;}
.yd_c00087{bottom:444.180000px;}
.yc_c00087{bottom:468.780000px;}
.yb_c00087{bottom:493.080000px;}
.ya_c00087{bottom:517.830000px;}
.y9_c00087{bottom:546.780000px;}
.y8_c00087{bottom:567.030000px;}
.y7_c00087{bottom:592.080000px;}
.y6_c00087{bottom:616.380000px;}
.y5_c00087{bottom:640.530000px;}
.y4_c00087{bottom:664.830000px;}
.y3_c00087{bottom:689.580000px;}
.y2_c00087{bottom:714.180000px;}
.y1_c00087{bottom:740.130000px;}
.h4_c00087{height:13.200074px;}
.h5_c00087{height:43.804688px;}
.h3_c00087{height:75.966797px;}
.h1_c00087{height:82.441406px;}
.h2_c00087{height:91.160156px;}
.h0_c00087{height:786.000000px;}
.w2_c00087{width:104.875500px;}
.w1_c00087{width:544.500000px;}
.w0_c00087{width:544.575000px;}
.x0_c00087{left:0.000000px;}
.x6_c00087{left:51.600000px;}
.x7_c00087{left:54.300000px;}
.x8_c00087{left:67.950000px;}
.x4_c00087{left:127.950000px;}
.x2_c00087{left:129.300000px;}
.x9_c00087{left:130.350000px;}
.x5_c00087{left:131.400000px;}
.x3_c00087{left:133.350000px;}
.xb_c00087{left:224.101730px;}
.x1_c00087{left:252.900000px;}
.xa_c00087{left:486.300000px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls1_c00087{letter-spacing:0.000000pt;}
.ls2_c00087{letter-spacing:2.666667pt;}
.ls0_c00087{letter-spacing:296.042667pt;}
.ws2_c00087{word-spacing:-15.520000pt;}
.ws0_c00087{word-spacing:-15.424000pt;}
.ws1_c00087{word-spacing:-14.781333pt;}
.ws3_c00087{word-spacing:0.000000pt;}
._14_c00087{margin-left:-16.800000pt;}
._12_c00087{margin-left:-13.376000pt;}
._16_c00087{margin-left:-10.904000pt;}
._13_c00087{margin-left:-9.440000pt;}
._b_c00087{margin-left:-8.480000pt;}
._10_c00087{margin-left:-7.232000pt;}
._7_c00087{margin-left:-6.144000pt;}
._8_c00087{margin-left:-4.480000pt;}
._3_c00087{margin-left:-3.360000pt;}
._9_c00087{margin-left:-2.122667pt;}
._a_c00087{margin-left:-0.928000pt;}
._1_c00087{width:1.344000pt;}
._2_c00087{width:2.389333pt;}
._0_c00087{width:3.434667pt;}
._6_c00087{width:4.704000pt;}
._4_c00087{width:5.600000pt;}
._18_c00087{width:6.538667pt;}
._c_c00087{width:7.562667pt;}
._5_c00087{width:8.512000pt;}
._d_c00087{width:10.208000pt;}
._17_c00087{width:11.381333pt;}
._e_c00087{width:12.661333pt;}
._15_c00087{width:13.888000pt;}
._11_c00087{width:16.192000pt;}
._19_c00087{width:17.685333pt;}
._f_c00087{width:21.152000pt;}
.fs4_c00087{font-size:42.666667pt;}
.fs3_c00087{font-size:53.333333pt;}
.fs2_c00087{font-size:61.333333pt;}
.fs1_c00087{font-size:64.000000pt;}
.fs0_c00087{font-size:74.666667pt;}
.y0_c00087{bottom:0.000000pt;}
.y1f_c00087{bottom:2.760000pt;}
.y1e_c00087{bottom:6.425206pt;}
.y1d_c00087{bottom:42.560000pt;}
.y1c_c00087{bottom:65.493333pt;}
.y1b_c00087{bottom:88.293333pt;}
.y1a_c00087{bottom:110.426667pt;}
.y19_c00087{bottom:132.960000pt;}
.y18_c00087{bottom:155.493333pt;}
.y17_c00087{bottom:176.693333pt;}
.y16_c00087{bottom:198.560000pt;}
.y15_c00087{bottom:221.760000pt;}
.y14_c00087{bottom:242.693333pt;}
.y13_c00087{bottom:263.760000pt;}
.y12_c00087{bottom:285.626667pt;}
.y11_c00087{bottom:307.226667pt;}
.y10_c00087{bottom:329.360000pt;}
.yf_c00087{bottom:351.626667pt;}
.ye_c00087{bottom:373.226667pt;}
.yd_c00087{bottom:394.826667pt;}
.yc_c00087{bottom:416.693333pt;}
.yb_c00087{bottom:438.293333pt;}
.ya_c00087{bottom:460.293333pt;}
.y9_c00087{bottom:486.026667pt;}
.y8_c00087{bottom:504.026667pt;}
.y7_c00087{bottom:526.293333pt;}
.y6_c00087{bottom:547.893333pt;}
.y5_c00087{bottom:569.360000pt;}
.y4_c00087{bottom:590.960000pt;}
.y3_c00087{bottom:612.960000pt;}
.y2_c00087{bottom:634.826667pt;}
.y1_c00087{bottom:657.893333pt;}
.h4_c00087{height:11.733399pt;}
.h5_c00087{height:38.937500pt;}
.h3_c00087{height:67.526042pt;}
.h1_c00087{height:73.281250pt;}
.h2_c00087{height:81.031250pt;}
.h0_c00087{height:698.666667pt;}
.w2_c00087{width:93.222667pt;}
.w1_c00087{width:484.000000pt;}
.w0_c00087{width:484.066667pt;}
.x0_c00087{left:0.000000pt;}
.x6_c00087{left:45.866667pt;}
.x7_c00087{left:48.266667pt;}
.x8_c00087{left:60.400000pt;}
.x4_c00087{left:113.733333pt;}
.x2_c00087{left:114.933333pt;}
.x9_c00087{left:115.866667pt;}
.x5_c00087{left:116.800000pt;}
.x3_c00087{left:118.533333pt;}
.xb_c00087{left:199.201538pt;}
.x1_c00087{left:224.800000pt;}
.xa_c00087{left:432.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_04c809d1cfce1331774acda4.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.480469;font-style:normal;font-weight:normal;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_e4a0fb8b61e485b075258dcd.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00088{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00088{vertical-align:0.000000px;}
.ls1_c00088{letter-spacing:0.000000px;}
.ls0_c00088{letter-spacing:0.480000px;}
.ls2_c00088{letter-spacing:3.000000px;}
.sc__c00088{text-shadow:none;}
.sc0_c00088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00088{-webkit-text-stroke:0px transparent;}
.sc0_c00088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00088{word-spacing:-20.352000px;}
.ws0_c00088{word-spacing:-17.352000px;}
.ws1_c00088{word-spacing:-16.629000px;}
.ws3_c00088{word-spacing:0.000000px;}
._1d_c00088{margin-left:-22.224000px;}
._12_c00088{margin-left:-19.872000px;}
._11_c00088{margin-left:-16.056000px;}
._14_c00088{margin-left:-14.280000px;}
._e_c00088{margin-left:-12.600000px;}
._13_c00088{margin-left:-10.728000px;}
._f_c00088{margin-left:-9.504000px;}
._10_c00088{margin-left:-8.094000px;}
._b_c00088{margin-left:-6.552000px;}
._d_c00088{margin-left:-5.328000px;}
._c_c00088{margin-left:-3.600000px;}
._a_c00088{margin-left:-1.944000px;}
._9_c00088{width:1.152000px;}
._7_c00088{width:2.376000px;}
._8_c00088{width:3.384000px;}
._2_c00088{width:4.680000px;}
._4_c00088{width:6.120000px;}
._1_c00088{width:7.704000px;}
._3_c00088{width:9.792000px;}
._16_c00088{width:11.757000px;}
._0_c00088{width:12.960000px;}
._5_c00088{width:14.328000px;}
._17_c00088{width:15.747000px;}
._15_c00088{width:17.226000px;}
._1b_c00088{width:18.288000px;}
._1c_c00088{width:23.277000px;}
._18_c00088{width:26.835000px;}
._19_c00088{width:45.648000px;}
._1a_c00088{width:49.926000px;}
._6_c00088{width:317.472000px;}
.fc2_c00088{color:transparent;}
.fc1_c00088{color:rgb(128,128,128);}
.fc0_c00088{color:rgb(0,0,0);}
.fs2_c00088{font-size:48.000000px;}
.fs1_c00088{font-size:69.000000px;}
.fs0_c00088{font-size:72.000000px;}
.y0_c00088{bottom:0.000000px;}
.y1e_c00088{bottom:3.105000px;}
.y1d_c00088{bottom:7.228357px;}
.y1c_c00088{bottom:75.930000px;}
.y1b_c00088{bottom:102.330000px;}
.y1a_c00088{bottom:126.330000px;}
.y19_c00088{bottom:151.830000px;}
.y18_c00088{bottom:172.530000px;}
.y17_c00088{bottom:200.580000px;}
.y16_c00088{bottom:226.230000px;}
.y15_c00088{bottom:248.730000px;}
.y14_c00088{bottom:276.030000px;}
.y13_c00088{bottom:299.730000px;}
.y12_c00088{bottom:322.980000px;}
.y11_c00088{bottom:348.030000px;}
.y10_c00088{bottom:371.880000px;}
.yf_c00088{bottom:397.230000px;}
.ye_c00088{bottom:422.280000px;}
.yd_c00088{bottom:446.580000px;}
.yc_c00088{bottom:470.880000px;}
.yb_c00088{bottom:494.880000px;}
.ya_c00088{bottom:520.380000px;}
.y9_c00088{bottom:544.680000px;}
.y8_c00088{bottom:568.680000px;}
.y7_c00088{bottom:594.030000px;}
.y6_c00088{bottom:617.730000px;}
.y5_c00088{bottom:642.030000px;}
.y4_c00088{bottom:666.630000px;}
.y3_c00088{bottom:690.930000px;}
.y2_c00088{bottom:715.830000px;}
.y1_c00088{bottom:740.580000px;}
.h3_c00088{height:13.200074px;}
.h4_c00088{height:43.804688px;}
.h2_c00088{height:91.160156px;}
.h1_c00088{height:791.250000px;}
.h0_c00088{height:791.400000px;}
.w2_c00088{width:104.875500px;}
.w0_c00088{width:554.025000px;}
.w1_c00088{width:554.250000px;}
.x0_c00088{left:0.000000px;}
.x2_c00088{left:36.450000px;}
.x3_c00088{left:38.250000px;}
.x4_c00088{left:39.900000px;}
.x5_c00088{left:41.100000px;}
.x1_c00088{left:136.350000px;}
.x6_c00088{left:228.826767px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls1_c00088{letter-spacing:0.000000pt;}
.ls0_c00088{letter-spacing:0.426667pt;}
.ls2_c00088{letter-spacing:2.666667pt;}
.ws2_c00088{word-spacing:-18.090667pt;}
.ws0_c00088{word-spacing:-15.424000pt;}
.ws1_c00088{word-spacing:-14.781333pt;}
.ws3_c00088{word-spacing:0.000000pt;}
._1d_c00088{margin-left:-19.754667pt;}
._12_c00088{margin-left:-17.664000pt;}
._11_c00088{margin-left:-14.272000pt;}
._14_c00088{margin-left:-12.693333pt;}
._e_c00088{margin-left:-11.200000pt;}
._13_c00088{margin-left:-9.536000pt;}
._f_c00088{margin-left:-8.448000pt;}
._10_c00088{margin-left:-7.194667pt;}
._b_c00088{margin-left:-5.824000pt;}
._d_c00088{margin-left:-4.736000pt;}
._c_c00088{margin-left:-3.200000pt;}
._a_c00088{margin-left:-1.728000pt;}
._9_c00088{width:1.024000pt;}
._7_c00088{width:2.112000pt;}
._8_c00088{width:3.008000pt;}
._2_c00088{width:4.160000pt;}
._4_c00088{width:5.440000pt;}
._1_c00088{width:6.848000pt;}
._3_c00088{width:8.704000pt;}
._16_c00088{width:10.450667pt;}
._0_c00088{width:11.520000pt;}
._5_c00088{width:12.736000pt;}
._17_c00088{width:13.997333pt;}
._15_c00088{width:15.312000pt;}
._1b_c00088{width:16.256000pt;}
._1c_c00088{width:20.690667pt;}
._18_c00088{width:23.853333pt;}
._19_c00088{width:40.576000pt;}
._1a_c00088{width:44.378667pt;}
._6_c00088{width:282.197333pt;}
.fs2_c00088{font-size:42.666667pt;}
.fs1_c00088{font-size:61.333333pt;}
.fs0_c00088{font-size:64.000000pt;}
.y0_c00088{bottom:0.000000pt;}
.y1e_c00088{bottom:2.760000pt;}
.y1d_c00088{bottom:6.425206pt;}
.y1c_c00088{bottom:67.493333pt;}
.y1b_c00088{bottom:90.960000pt;}
.y1a_c00088{bottom:112.293333pt;}
.y19_c00088{bottom:134.960000pt;}
.y18_c00088{bottom:153.360000pt;}
.y17_c00088{bottom:178.293333pt;}
.y16_c00088{bottom:201.093333pt;}
.y15_c00088{bottom:221.093333pt;}
.y14_c00088{bottom:245.360000pt;}
.y13_c00088{bottom:266.426667pt;}
.y12_c00088{bottom:287.093333pt;}
.y11_c00088{bottom:309.360000pt;}
.y10_c00088{bottom:330.560000pt;}
.yf_c00088{bottom:353.093333pt;}
.ye_c00088{bottom:375.360000pt;}
.yd_c00088{bottom:396.960000pt;}
.yc_c00088{bottom:418.560000pt;}
.yb_c00088{bottom:439.893333pt;}
.ya_c00088{bottom:462.560000pt;}
.y9_c00088{bottom:484.160000pt;}
.y8_c00088{bottom:505.493333pt;}
.y7_c00088{bottom:528.026667pt;}
.y6_c00088{bottom:549.093333pt;}
.y5_c00088{bottom:570.693333pt;}
.y4_c00088{bottom:592.560000pt;}
.y3_c00088{bottom:614.160000pt;}
.y2_c00088{bottom:636.293333pt;}
.y1_c00088{bottom:658.293333pt;}
.h3_c00088{height:11.733399pt;}
.h4_c00088{height:38.937500pt;}
.h2_c00088{height:81.031250pt;}
.h1_c00088{height:703.333333pt;}
.h0_c00088{height:703.466667pt;}
.w2_c00088{width:93.222667pt;}
.w0_c00088{width:492.466667pt;}
.w1_c00088{width:492.666667pt;}
.x0_c00088{left:0.000000pt;}
.x2_c00088{left:32.400000pt;}
.x3_c00088{left:34.000000pt;}
.x4_c00088{left:35.466667pt;}
.x5_c00088{left:36.533333pt;}
.x1_c00088{left:121.200000pt;}
.x6_c00088{left:203.401571pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cc80d3f166bb142d2a38a5ac.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00089;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00089;src:url('chunks/assets/font_073e583e7bcf3af7ad95564e.woff2')format("woff");}.ff3_c00089{font-family:ff3_c00089;line-height:1.568848;font-style:normal;font-weight:normal;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_21ddf71a22f530b6a2f8b8cf.woff2')format("woff");}.ff4_c00089{font-family:ff4_c00089;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00089{font-family:ff5_c00089;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00089{vertical-align:0.000000px;}
.lsb_c00089{letter-spacing:0.000000px;}
.lsa_c00089{letter-spacing:0.834000px;}
.ls6_c00089{letter-spacing:1.620000px;}
.ls1_c00089{letter-spacing:3.000000px;}
.ls9_c00089{letter-spacing:5.034000px;}
.ls0_c00089{letter-spacing:8.130000px;}
.lsc_c00089{letter-spacing:15.000000px;}
.ls2_c00089{letter-spacing:19.386000px;}
.ls4_c00089{letter-spacing:22.386000px;}
.ls7_c00089{letter-spacing:27.786000px;}
.ls8_c00089{letter-spacing:30.186000px;}
.ls3_c00089{letter-spacing:72.186000px;}
.ls5_c00089{letter-spacing:315.186000px;}
.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;}
}
.ws4_c00089{word-spacing:-28.014000px;}
.ws1_c00089{word-spacing:-20.352000px;}
.ws0_c00089{word-spacing:-17.352000px;}
.ws2_c00089{word-spacing:-16.629000px;}
.ws3_c00089{word-spacing:-13.014000px;}
.ws5_c00089{word-spacing:0.000000px;}
._1c_c00089{margin-left:-19.719000px;}
._19_c00089{margin-left:-13.536000px;}
._f_c00089{margin-left:-12.024000px;}
._10_c00089{margin-left:-9.936000px;}
._1_c00089{margin-left:-8.736000px;}
._11_c00089{margin-left:-7.704000px;}
._13_c00089{margin-left:-6.609000px;}
._a_c00089{margin-left:-5.328000px;}
._c_c00089{margin-left:-3.960000px;}
._3_c00089{margin-left:-2.808000px;}
._5_c00089{margin-left:-1.152000px;}
._0_c00089{width:1.008000px;}
._2_c00089{width:2.268000px;}
._b_c00089{width:3.384000px;}
._7_c00089{width:5.004000px;}
._8_c00089{width:6.912000px;}
._1d_c00089{width:8.883000px;}
._9_c00089{width:10.080000px;}
._4_c00089{width:11.304000px;}
._15_c00089{width:12.474000px;}
._d_c00089{width:13.716000px;}
._6_c00089{width:15.948000px;}
._e_c00089{width:17.856000px;}
._1e_c00089{width:21.798000px;}
._18_c00089{width:23.457000px;}
._17_c00089{width:25.344000px;}
._14_c00089{width:27.384000px;}
._1b_c00089{width:67.596000px;}
._12_c00089{width:212.256000px;}
._16_c00089{width:338.760000px;}
._1a_c00089{width:368.553000px;}
.fc2_c00089{color:transparent;}
.fc1_c00089{color:rgb(128,128,128);}
.fc0_c00089{color:rgb(0,0,0);}
.fs5_c00089{font-size:48.000000px;}
.fs3_c00089{font-size:54.000000px;}
.fs4_c00089{font-size:63.000000px;}
.fs2_c00089{font-size:69.000000px;}
.fs1_c00089{font-size:72.000000px;}
.fs0_c00089{font-size:84.000000px;}
.y0_c00089{bottom:0.000000px;}
.y1f_c00089{bottom:3.105000px;}
.y1e_c00089{bottom:7.228371px;}
.y1d_c00089{bottom:42.315000px;}
.y1c_c00089{bottom:67.515000px;}
.y1b_c00089{bottom:91.815000px;}
.y1a_c00089{bottom:116.415000px;}
.y19_c00089{bottom:144.915000px;}
.y18_c00089{bottom:169.215000px;}
.y17_c00089{bottom:192.765000px;}
.y16_c00089{bottom:217.815000px;}
.y15_c00089{bottom:241.365000px;}
.y14_c00089{bottom:265.365000px;}
.y13_c00089{bottom:292.965000px;}
.y12_c00089{bottom:316.665000px;}
.y11_c00089{bottom:340.665000px;}
.y10_c00089{bottom:365.565000px;}
.yf_c00089{bottom:387.765000px;}
.ye_c00089{bottom:414.765000px;}
.yd_c00089{bottom:438.465000px;}
.yc_c00089{bottom:463.515000px;}
.yb_c00089{bottom:487.815000px;}
.ya_c00089{bottom:511.665000px;}
.y9_c00089{bottom:537.015000px;}
.y8_c00089{bottom:561.015000px;}
.y7_c00089{bottom:585.015000px;}
.y6_c00089{bottom:610.215000px;}
.y5_c00089{bottom:634.965000px;}
.y4_c00089{bottom:659.115000px;}
.y3_c00089{bottom:683.865000px;}
.y2_c00089{bottom:708.165000px;}
.y1_c00089{bottom:734.415000px;}
.h5_c00089{height:13.200074px;}
.h6_c00089{height:43.804688px;}
.h4_c00089{height:79.765137px;}
.h2_c00089{height:82.441406px;}
.h3_c00089{height:91.160156px;}
.h0_c00089{height:779.775000px;}
.h1_c00089{height:780.000000px;}
.w2_c00089{width:104.875500px;}
.w0_c00089{width:523.275000px;}
.w1_c00089{width:523.500000px;}
.x0_c00089{left:0.000000px;}
.xa_c00089{left:44.250000px;}
.x8_c00089{left:46.350000px;}
.x7_c00089{left:48.150000px;}
.x5_c00089{left:51.000000px;}
.x6_c00089{left:125.850000px;}
.x4_c00089{left:126.900000px;}
.x3_c00089{left:129.300000px;}
.x2_c00089{left:130.950000px;}
.xb_c00089{left:144.750000px;}
.xd_c00089{left:213.451767px;}
.x1_c00089{left:245.700000px;}
.x9_c00089{left:257.850000px;}
.xc_c00089{left:488.250000px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.lsb_c00089{letter-spacing:0.000000pt;}
.lsa_c00089{letter-spacing:0.741333pt;}
.ls6_c00089{letter-spacing:1.440000pt;}
.ls1_c00089{letter-spacing:2.666667pt;}
.ls9_c00089{letter-spacing:4.474667pt;}
.ls0_c00089{letter-spacing:7.226667pt;}
.lsc_c00089{letter-spacing:13.333333pt;}
.ls2_c00089{letter-spacing:17.232000pt;}
.ls4_c00089{letter-spacing:19.898667pt;}
.ls7_c00089{letter-spacing:24.698667pt;}
.ls8_c00089{letter-spacing:26.832000pt;}
.ls3_c00089{letter-spacing:64.165333pt;}
.ls5_c00089{letter-spacing:280.165333pt;}
.ws4_c00089{word-spacing:-24.901333pt;}
.ws1_c00089{word-spacing:-18.090667pt;}
.ws0_c00089{word-spacing:-15.424000pt;}
.ws2_c00089{word-spacing:-14.781333pt;}
.ws3_c00089{word-spacing:-11.568000pt;}
.ws5_c00089{word-spacing:0.000000pt;}
._1c_c00089{margin-left:-17.528000pt;}
._19_c00089{margin-left:-12.032000pt;}
._f_c00089{margin-left:-10.688000pt;}
._10_c00089{margin-left:-8.832000pt;}
._1_c00089{margin-left:-7.765333pt;}
._11_c00089{margin-left:-6.848000pt;}
._13_c00089{margin-left:-5.874667pt;}
._a_c00089{margin-left:-4.736000pt;}
._c_c00089{margin-left:-3.520000pt;}
._3_c00089{margin-left:-2.496000pt;}
._5_c00089{margin-left:-1.024000pt;}
._0_c00089{width:0.896000pt;}
._2_c00089{width:2.016000pt;}
._b_c00089{width:3.008000pt;}
._7_c00089{width:4.448000pt;}
._8_c00089{width:6.144000pt;}
._1d_c00089{width:7.896000pt;}
._9_c00089{width:8.960000pt;}
._4_c00089{width:10.048000pt;}
._15_c00089{width:11.088000pt;}
._d_c00089{width:12.192000pt;}
._6_c00089{width:14.176000pt;}
._e_c00089{width:15.872000pt;}
._1e_c00089{width:19.376000pt;}
._18_c00089{width:20.850667pt;}
._17_c00089{width:22.528000pt;}
._14_c00089{width:24.341333pt;}
._1b_c00089{width:60.085333pt;}
._12_c00089{width:188.672000pt;}
._16_c00089{width:301.120000pt;}
._1a_c00089{width:327.602667pt;}
.fs5_c00089{font-size:42.666667pt;}
.fs3_c00089{font-size:48.000000pt;}
.fs4_c00089{font-size:56.000000pt;}
.fs2_c00089{font-size:61.333333pt;}
.fs1_c00089{font-size:64.000000pt;}
.fs0_c00089{font-size:74.666667pt;}
.y0_c00089{bottom:0.000000pt;}
.y1f_c00089{bottom:2.760000pt;}
.y1e_c00089{bottom:6.425219pt;}
.y1d_c00089{bottom:37.613333pt;}
.y1c_c00089{bottom:60.013333pt;}
.y1b_c00089{bottom:81.613333pt;}
.y1a_c00089{bottom:103.480000pt;}
.y19_c00089{bottom:128.813333pt;}
.y18_c00089{bottom:150.413333pt;}
.y17_c00089{bottom:171.346667pt;}
.y16_c00089{bottom:193.613333pt;}
.y15_c00089{bottom:214.546667pt;}
.y14_c00089{bottom:235.880000pt;}
.y13_c00089{bottom:260.413333pt;}
.y12_c00089{bottom:281.480000pt;}
.y11_c00089{bottom:302.813333pt;}
.y10_c00089{bottom:324.946667pt;}
.yf_c00089{bottom:344.680000pt;}
.ye_c00089{bottom:368.680000pt;}
.yd_c00089{bottom:389.746667pt;}
.yc_c00089{bottom:412.013333pt;}
.yb_c00089{bottom:433.613333pt;}
.ya_c00089{bottom:454.813333pt;}
.y9_c00089{bottom:477.346667pt;}
.y8_c00089{bottom:498.680000pt;}
.y7_c00089{bottom:520.013333pt;}
.y6_c00089{bottom:542.413333pt;}
.y5_c00089{bottom:564.413333pt;}
.y4_c00089{bottom:585.880000pt;}
.y3_c00089{bottom:607.880000pt;}
.y2_c00089{bottom:629.480000pt;}
.y1_c00089{bottom:652.813333pt;}
.h5_c00089{height:11.733399pt;}
.h6_c00089{height:38.937500pt;}
.h4_c00089{height:70.902344pt;}
.h2_c00089{height:73.281250pt;}
.h3_c00089{height:81.031250pt;}
.h0_c00089{height:693.133333pt;}
.h1_c00089{height:693.333333pt;}
.w2_c00089{width:93.222667pt;}
.w0_c00089{width:465.133333pt;}
.w1_c00089{width:465.333333pt;}
.x0_c00089{left:0.000000pt;}
.xa_c00089{left:39.333333pt;}
.x8_c00089{left:41.200000pt;}
.x7_c00089{left:42.800000pt;}
.x5_c00089{left:45.333333pt;}
.x6_c00089{left:111.866667pt;}
.x4_c00089{left:112.800000pt;}
.x3_c00089{left:114.933333pt;}
.x2_c00089{left:116.400000pt;}
.xb_c00089{left:128.666667pt;}
.xd_c00089{left:189.734904pt;}
.x1_c00089{left:218.400000pt;}
.x9_c00089{left:229.200000pt;}
.xc_c00089{left:434.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_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_aea1470fd7f8abbb1ff6f20c.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.480469;font-style:normal;font-weight:normal;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_7264d936a3b6db2155ffe8d5.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:1.568848;font-style:normal;font-weight:normal;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_9a9752be1d013b776eee72df.woff2')format("woff");}.ff3_c00090{font-family:ff3_c00090;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00090;src:url('chunks/assets/font_4719ba6b6dbbcd7766a4be2c.woff2')format("woff");}.ff4_c00090{font-family:ff4_c00090;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00090{font-family:ff5_c00090;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00090{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00090{vertical-align:0.000000px;}
.ls4_c00090{letter-spacing:0.000000px;}
.ls5_c00090{letter-spacing:3.000000px;}
.ls0_c00090{letter-spacing:5.217000px;}
.ls6_c00090{letter-spacing:6.000000px;}
.ls1_c00090{letter-spacing:7.215000px;}
.ls3_c00090{letter-spacing:25.200000px;}
.ls2_c00090{letter-spacing:49.986000px;}
.ls7_c00090{letter-spacing:60.000000px;}
.sc__c00090{text-shadow:none;}
.sc0_c00090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00090{-webkit-text-stroke:0px transparent;}
.sc0_c00090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00090{word-spacing:-73.014000px;}
.ws4_c00090{word-spacing:-28.080000px;}
.ws5_c00090{word-spacing:-22.464000px;}
.ws0_c00090{word-spacing:-17.352000px;}
.ws2_c00090{word-spacing:-16.629000px;}
.ws3_c00090{word-spacing:-13.014000px;}
.ws7_c00090{word-spacing:0.000000px;}
.ws6_c00090{word-spacing:9.180000px;}
._22_c00090{margin-left:-72.420000px;}
._23_c00090{margin-left:-70.620000px;}
._1f_c00090{margin-left:-37.638000px;}
._12_c00090{margin-left:-21.846000px;}
._2b_c00090{margin-left:-15.942000px;}
._11_c00090{margin-left:-14.040000px;}
._13_c00090{margin-left:-12.096000px;}
._15_c00090{margin-left:-10.575000px;}
._17_c00090{margin-left:-9.393000px;}
._10_c00090{margin-left:-8.322000px;}
._19_c00090{margin-left:-6.984000px;}
._14_c00090{margin-left:-5.337000px;}
._c_c00090{margin-left:-4.005000px;}
._9_c00090{margin-left:-2.052000px;}
._f_c00090{margin-left:-1.044000px;}
._8_c00090{width:1.863000px;}
._4_c00090{width:2.961000px;}
._2_c00090{width:4.095000px;}
._1_c00090{width:5.859000px;}
._5_c00090{width:6.867000px;}
._0_c00090{width:8.001000px;}
._28_c00090{width:9.027000px;}
._d_c00090{width:10.143000px;}
._3_c00090{width:11.781000px;}
._6_c00090{width:13.734000px;}
._e_c00090{width:15.192000px;}
._b_c00090{width:16.269000px;}
._a_c00090{width:18.117000px;}
._1b_c00090{width:19.818000px;}
._1a_c00090{width:22.320000px;}
._1d_c00090{width:24.264000px;}
._1e_c00090{width:26.298000px;}
._2a_c00090{width:27.585000px;}
._18_c00090{width:29.034000px;}
._1c_c00090{width:36.036000px;}
._25_c00090{width:68.625000px;}
._2c_c00090{width:83.088000px;}
._2f_c00090{width:89.598000px;}
._16_c00090{width:93.684000px;}
._2e_c00090{width:96.183000px;}
._24_c00090{width:101.304000px;}
._21_c00090{width:127.683000px;}
._20_c00090{width:161.004000px;}
._2d_c00090{width:163.065000px;}
._32_c00090{width:204.813000px;}
._29_c00090{width:214.929000px;}
._31_c00090{width:254.520000px;}
._26_c00090{width:300.672000px;}
._7_c00090{width:340.200000px;}
._30_c00090{width:467.097000px;}
._27_c00090{width:529.695000px;}
.fc2_c00090{color:transparent;}
.fc1_c00090{color:rgb(128,128,128);}
.fc0_c00090{color:rgb(0,0,0);}
.fs3_c00090{font-size:33.000000px;}
.fs7_c00090{font-size:48.000000px;}
.fs4_c00090{font-size:54.000000px;}
.fs6_c00090{font-size:57.600000px;}
.fs1_c00090{font-size:60.000000px;}
.fs0_c00090{font-size:63.000000px;}
.fs5_c00090{font-size:69.000000px;}
.fs2_c00090{font-size:72.000000px;}
.y0_c00090{bottom:0.000000px;}
.y21_c00090{bottom:3.105000px;}
.y20_c00090{bottom:7.228363px;}
.y1f_c00090{bottom:48.300000px;}
.y1e_c00090{bottom:60.150000px;}
.y1d_c00090{bottom:74.250000px;}
.y1c_c00090{bottom:99.300000px;}
.y1b_c00090{bottom:124.650000px;}
.y1a_c00090{bottom:147.900000px;}
.y19_c00090{bottom:173.100000px;}
.y18_c00090{bottom:194.850000px;}
.y17_c00090{bottom:224.100000px;}
.y16_c00090{bottom:249.750000px;}
.y15_c00090{bottom:274.350000px;}
.y14_c00090{bottom:293.250000px;}
.y13_c00090{bottom:308.850000px;}
.y12_c00090{bottom:320.400000px;}
.y11_c00090{bottom:345.300000px;}
.y10_c00090{bottom:371.250000px;}
.yf_c00090{bottom:394.500000px;}
.ye_c00090{bottom:418.200000px;}
.yd_c00090{bottom:444.150000px;}
.yc_c00090{bottom:468.750000px;}
.yb_c00090{bottom:493.800000px;}
.ya_c00090{bottom:517.350000px;}
.y9_c00090{bottom:541.800000px;}
.y8_c00090{bottom:567.300000px;}
.y7_c00090{bottom:590.400000px;}
.y6_c00090{bottom:616.650000px;}
.y5_c00090{bottom:639.300000px;}
.y4_c00090{bottom:663.150000px;}
.y3_c00090{bottom:689.250000px;}
.y2_c00090{bottom:712.800000px;}
.y1_c00090{bottom:735.750000px;}
.h6_c00090{height:13.200074px;}
.h7_c00090{height:43.804688px;}
.h4_c00090{height:68.370117px;}
.h2_c00090{height:79.765137px;}
.h5_c00090{height:87.361816px;}
.h3_c00090{height:91.160156px;}
.h0_c00090{height:784.350000px;}
.h1_c00090{height:784.500000px;}
.w2_c00090{width:104.875500px;}
.w0_c00090{width:551.100000px;}
.w1_c00090{width:551.250000px;}
.x0_c00090{left:0.000000px;}
.x7_c00090{left:26.400000px;}
.x6_c00090{left:27.600000px;}
.x2_c00090{left:28.950000px;}
.x3_c00090{left:30.600000px;}
.x8_c00090{left:97.200000px;}
.x4_c00090{left:123.900000px;}
.x1_c00090{left:180.600000px;}
.x5_c00090{left:225.150000px;}
.xa_c00090{left:227.364258px;}
.x9_c00090{left:286.500000px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls4_c00090{letter-spacing:0.000000pt;}
.ls5_c00090{letter-spacing:2.666667pt;}
.ls0_c00090{letter-spacing:4.637333pt;}
.ls6_c00090{letter-spacing:5.333333pt;}
.ls1_c00090{letter-spacing:6.413333pt;}
.ls3_c00090{letter-spacing:22.400000pt;}
.ls2_c00090{letter-spacing:44.432000pt;}
.ls7_c00090{letter-spacing:53.333333pt;}
.ws1_c00090{word-spacing:-64.901333pt;}
.ws4_c00090{word-spacing:-24.960000pt;}
.ws5_c00090{word-spacing:-19.968000pt;}
.ws0_c00090{word-spacing:-15.424000pt;}
.ws2_c00090{word-spacing:-14.781333pt;}
.ws3_c00090{word-spacing:-11.568000pt;}
.ws7_c00090{word-spacing:0.000000pt;}
.ws6_c00090{word-spacing:8.160000pt;}
._22_c00090{margin-left:-64.373333pt;}
._23_c00090{margin-left:-62.773333pt;}
._1f_c00090{margin-left:-33.456000pt;}
._12_c00090{margin-left:-19.418667pt;}
._2b_c00090{margin-left:-14.170667pt;}
._11_c00090{margin-left:-12.480000pt;}
._13_c00090{margin-left:-10.752000pt;}
._15_c00090{margin-left:-9.400000pt;}
._17_c00090{margin-left:-8.349333pt;}
._10_c00090{margin-left:-7.397333pt;}
._19_c00090{margin-left:-6.208000pt;}
._14_c00090{margin-left:-4.744000pt;}
._c_c00090{margin-left:-3.560000pt;}
._9_c00090{margin-left:-1.824000pt;}
._f_c00090{margin-left:-0.928000pt;}
._8_c00090{width:1.656000pt;}
._4_c00090{width:2.632000pt;}
._2_c00090{width:3.640000pt;}
._1_c00090{width:5.208000pt;}
._5_c00090{width:6.104000pt;}
._0_c00090{width:7.112000pt;}
._28_c00090{width:8.024000pt;}
._d_c00090{width:9.016000pt;}
._3_c00090{width:10.472000pt;}
._6_c00090{width:12.208000pt;}
._e_c00090{width:13.504000pt;}
._b_c00090{width:14.461333pt;}
._a_c00090{width:16.104000pt;}
._1b_c00090{width:17.616000pt;}
._1a_c00090{width:19.840000pt;}
._1d_c00090{width:21.568000pt;}
._1e_c00090{width:23.376000pt;}
._2a_c00090{width:24.520000pt;}
._18_c00090{width:25.808000pt;}
._1c_c00090{width:32.032000pt;}
._25_c00090{width:61.000000pt;}
._2c_c00090{width:73.856000pt;}
._2f_c00090{width:79.642667pt;}
._16_c00090{width:83.274667pt;}
._2e_c00090{width:85.496000pt;}
._24_c00090{width:90.048000pt;}
._21_c00090{width:113.496000pt;}
._20_c00090{width:143.114667pt;}
._2d_c00090{width:144.946667pt;}
._32_c00090{width:182.056000pt;}
._29_c00090{width:191.048000pt;}
._31_c00090{width:226.240000pt;}
._26_c00090{width:267.264000pt;}
._7_c00090{width:302.400000pt;}
._30_c00090{width:415.197333pt;}
._27_c00090{width:470.840000pt;}
.fs3_c00090{font-size:29.333333pt;}
.fs7_c00090{font-size:42.666667pt;}
.fs4_c00090{font-size:48.000000pt;}
.fs6_c00090{font-size:51.200000pt;}
.fs1_c00090{font-size:53.333333pt;}
.fs0_c00090{font-size:56.000000pt;}
.fs5_c00090{font-size:61.333333pt;}
.fs2_c00090{font-size:64.000000pt;}
.y0_c00090{bottom:0.000000pt;}
.y21_c00090{bottom:2.760000pt;}
.y20_c00090{bottom:6.425212pt;}
.y1f_c00090{bottom:42.933333pt;}
.y1e_c00090{bottom:53.466667pt;}
.y1d_c00090{bottom:66.000000pt;}
.y1c_c00090{bottom:88.266667pt;}
.y1b_c00090{bottom:110.800000pt;}
.y1a_c00090{bottom:131.466667pt;}
.y19_c00090{bottom:153.866667pt;}
.y18_c00090{bottom:173.200000pt;}
.y17_c00090{bottom:199.200000pt;}
.y16_c00090{bottom:222.000000pt;}
.y15_c00090{bottom:243.866667pt;}
.y14_c00090{bottom:260.666667pt;}
.y13_c00090{bottom:274.533333pt;}
.y12_c00090{bottom:284.800000pt;}
.y11_c00090{bottom:306.933333pt;}
.y10_c00090{bottom:330.000000pt;}
.yf_c00090{bottom:350.666667pt;}
.ye_c00090{bottom:371.733333pt;}
.yd_c00090{bottom:394.800000pt;}
.yc_c00090{bottom:416.666667pt;}
.yb_c00090{bottom:438.933333pt;}
.ya_c00090{bottom:459.866667pt;}
.y9_c00090{bottom:481.600000pt;}
.y8_c00090{bottom:504.266667pt;}
.y7_c00090{bottom:524.800000pt;}
.y6_c00090{bottom:548.133333pt;}
.y5_c00090{bottom:568.266667pt;}
.y4_c00090{bottom:589.466667pt;}
.y3_c00090{bottom:612.666667pt;}
.y2_c00090{bottom:633.600000pt;}
.y1_c00090{bottom:654.000000pt;}
.h6_c00090{height:11.733399pt;}
.h7_c00090{height:38.937500pt;}
.h4_c00090{height:60.773438pt;}
.h2_c00090{height:70.902344pt;}
.h5_c00090{height:77.654948pt;}
.h3_c00090{height:81.031250pt;}
.h0_c00090{height:697.200000pt;}
.h1_c00090{height:697.333333pt;}
.w2_c00090{width:93.222667pt;}
.w0_c00090{width:489.866667pt;}
.w1_c00090{width:490.000000pt;}
.x0_c00090{left:0.000000pt;}
.x7_c00090{left:23.466667pt;}
.x6_c00090{left:24.533333pt;}
.x2_c00090{left:25.733333pt;}
.x3_c00090{left:27.200000pt;}
.x8_c00090{left:86.400000pt;}
.x4_c00090{left:110.133333pt;}
.x1_c00090{left:160.533333pt;}
.x5_c00090{left:200.133333pt;}
.xa_c00090{left:202.101563pt;}
.x9_c00090{left:254.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_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_15d28306dbea22a39e9b4129.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00091;src:url('chunks/assets/font_8345e5b329685d54f6a65629.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00091;src:url('chunks/assets/font_e708096c6928267dee619f29.woff2')format("woff");}.ff3_c00091{font-family:ff3_c00091;line-height:1.568848;font-style:normal;font-weight:normal;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_cf7e2dfb858898155611f336.woff2')format("woff");}.ff4_c00091{font-family:ff4_c00091;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00091{font-family:ff5_c00091;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00091{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00091{vertical-align:0.000000px;}
.ls4_c00091{letter-spacing:-3.000000px;}
.ls2_c00091{letter-spacing:0.000000px;}
.ls1_c00091{letter-spacing:3.000000px;}
.ls3_c00091{letter-spacing:6.000000px;}
.ls0_c00091{letter-spacing:17.940000px;}
.sc__c00091{text-shadow:none;}
.sc0_c00091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00091{-webkit-text-stroke:0px transparent;}
.sc0_c00091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00091{word-spacing:-21.750000px;}
.ws2_c00091{word-spacing:-20.352000px;}
.ws4_c00091{word-spacing:-18.798000px;}
.ws1_c00091{word-spacing:-16.629000px;}
.ws5_c00091{word-spacing:0.000000px;}
.ws3_c00091{word-spacing:3.696000px;}
._13_c00091{margin-left:-36.036000px;}
._15_c00091{margin-left:-23.346000px;}
._d_c00091{margin-left:-17.334000px;}
._12_c00091{margin-left:-15.930000px;}
._e_c00091{margin-left:-14.232000px;}
._b_c00091{margin-left:-11.808000px;}
._11_c00091{margin-left:-10.794000px;}
._10_c00091{margin-left:-9.576000px;}
._2_c00091{margin-left:-8.484000px;}
._c_c00091{margin-left:-6.924000px;}
._f_c00091{margin-left:-5.484000px;}
._3_c00091{margin-left:-3.384000px;}
._4_c00091{margin-left:-1.872000px;}
._1_c00091{width:1.848000px;}
._0_c00091{width:3.528000px;}
._5_c00091{width:4.776000px;}
._6_c00091{width:5.904000px;}
._1c_c00091{width:7.932000px;}
._7_c00091{width:9.000000px;}
._9_c00091{width:10.440000px;}
._a_c00091{width:12.066000px;}
._16_c00091{width:13.632000px;}
._14_c00091{width:14.952000px;}
._8_c00091{width:16.008000px;}
._19_c00091{width:22.536000px;}
._1a_c00091{width:23.592000px;}
._1b_c00091{width:27.384000px;}
._17_c00091{width:31.812000px;}
._18_c00091{width:40.080000px;}
.fc2_c00091{color:transparent;}
.fc1_c00091{color:rgb(128,128,128);}
.fc0_c00091{color:rgb(0,0,0);}
.fs5_c00091{font-size:24.000000px;}
.fs8_c00091{font-size:48.000000px;}
.fs6_c00091{font-size:60.000000px;}
.fs2_c00091{font-size:63.000000px;}
.fs4_c00091{font-size:66.000000px;}
.fs3_c00091{font-size:69.000000px;}
.fs1_c00091{font-size:72.000000px;}
.fs7_c00091{font-size:78.000000px;}
.fs0_c00091{font-size:84.000000px;}
.y0_c00091{bottom:0.000000px;}
.y1f_c00091{bottom:3.105000px;}
.y1e_c00091{bottom:7.228357px;}
.y1d_c00091{bottom:44.580000px;}
.y1c_c00091{bottom:69.630000px;}
.y1b_c00091{bottom:95.880000px;}
.y1a_c00091{bottom:120.930000px;}
.y19_c00091{bottom:145.530000px;}
.y18_c00091{bottom:170.730000px;}
.y17_c00091{bottom:196.830000px;}
.y16_c00091{bottom:222.480000px;}
.y15_c00091{bottom:246.780000px;}
.y14_c00091{bottom:273.330000px;}
.y13_c00091{bottom:297.030000px;}
.y12_c00091{bottom:321.330000px;}
.y11_c00091{bottom:345.930000px;}
.y10_c00091{bottom:370.680000px;}
.yf_c00091{bottom:394.980000px;}
.ye_c00091{bottom:419.580000px;}
.yd_c00091{bottom:444.480000px;}
.yc_c00091{bottom:469.230000px;}
.yb_c00091{bottom:494.430000px;}
.ya_c00091{bottom:519.180000px;}
.y9_c00091{bottom:543.030000px;}
.y8_c00091{bottom:568.080000px;}
.y7_c00091{bottom:592.680000px;}
.y6_c00091{bottom:617.280000px;}
.y5_c00091{bottom:641.580000px;}
.y4_c00091{bottom:666.180000px;}
.y3_c00091{bottom:691.230000px;}
.y2_c00091{bottom:715.230000px;}
.y1_c00091{bottom:740.580000px;}
.h4_c00091{height:13.200074px;}
.h5_c00091{height:43.804688px;}
.h1_c00091{height:82.441406px;}
.h2_c00091{height:91.160156px;}
.h3_c00091{height:98.756836px;}
.h0_c00091{height:779.250000px;}
.w2_c00091{width:104.875500px;}
.w1_c00091{width:540.750000px;}
.w0_c00091{width:540.825000px;}
.x0_c00091{left:0.000000px;}
.xc_c00091{left:126.000000px;}
.x4_c00091{left:130.650000px;}
.x2_c00091{left:132.300000px;}
.x3_c00091{left:133.950000px;}
.x5_c00091{left:135.000000px;}
.x6_c00091{left:136.350000px;}
.x7_c00091{left:137.700000px;}
.x8_c00091{left:139.800000px;}
.xa_c00091{left:140.850000px;}
.xb_c00091{left:142.200000px;}
.x9_c00091{left:217.650000px;}
.xe_c00091{left:222.226730px;}
.x1_c00091{left:251.700000px;}
.xd_c00091{left:492.750000px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls4_c00091{letter-spacing:-2.666667pt;}
.ls2_c00091{letter-spacing:0.000000pt;}
.ls1_c00091{letter-spacing:2.666667pt;}
.ls3_c00091{letter-spacing:5.333333pt;}
.ls0_c00091{letter-spacing:15.946667pt;}
.ws0_c00091{word-spacing:-19.333333pt;}
.ws2_c00091{word-spacing:-18.090667pt;}
.ws4_c00091{word-spacing:-16.709333pt;}
.ws1_c00091{word-spacing:-14.781333pt;}
.ws5_c00091{word-spacing:0.000000pt;}
.ws3_c00091{word-spacing:3.285333pt;}
._13_c00091{margin-left:-32.032000pt;}
._15_c00091{margin-left:-20.752000pt;}
._d_c00091{margin-left:-15.408000pt;}
._12_c00091{margin-left:-14.160000pt;}
._e_c00091{margin-left:-12.650667pt;}
._b_c00091{margin-left:-10.496000pt;}
._11_c00091{margin-left:-9.594667pt;}
._10_c00091{margin-left:-8.512000pt;}
._2_c00091{margin-left:-7.541333pt;}
._c_c00091{margin-left:-6.154667pt;}
._f_c00091{margin-left:-4.874667pt;}
._3_c00091{margin-left:-3.008000pt;}
._4_c00091{margin-left:-1.664000pt;}
._1_c00091{width:1.642667pt;}
._0_c00091{width:3.136000pt;}
._5_c00091{width:4.245333pt;}
._6_c00091{width:5.248000pt;}
._1c_c00091{width:7.050667pt;}
._7_c00091{width:8.000000pt;}
._9_c00091{width:9.280000pt;}
._a_c00091{width:10.725333pt;}
._16_c00091{width:12.117333pt;}
._14_c00091{width:13.290667pt;}
._8_c00091{width:14.229333pt;}
._19_c00091{width:20.032000pt;}
._1a_c00091{width:20.970667pt;}
._1b_c00091{width:24.341333pt;}
._17_c00091{width:28.277333pt;}
._18_c00091{width:35.626667pt;}
.fs5_c00091{font-size:21.333333pt;}
.fs8_c00091{font-size:42.666667pt;}
.fs6_c00091{font-size:53.333333pt;}
.fs2_c00091{font-size:56.000000pt;}
.fs4_c00091{font-size:58.666667pt;}
.fs3_c00091{font-size:61.333333pt;}
.fs1_c00091{font-size:64.000000pt;}
.fs7_c00091{font-size:69.333333pt;}
.fs0_c00091{font-size:74.666667pt;}
.y0_c00091{bottom:0.000000pt;}
.y1f_c00091{bottom:2.760000pt;}
.y1e_c00091{bottom:6.425206pt;}
.y1d_c00091{bottom:39.626667pt;}
.y1c_c00091{bottom:61.893333pt;}
.y1b_c00091{bottom:85.226667pt;}
.y1a_c00091{bottom:107.493333pt;}
.y19_c00091{bottom:129.360000pt;}
.y18_c00091{bottom:151.760000pt;}
.y17_c00091{bottom:174.960000pt;}
.y16_c00091{bottom:197.760000pt;}
.y15_c00091{bottom:219.360000pt;}
.y14_c00091{bottom:242.960000pt;}
.y13_c00091{bottom:264.026667pt;}
.y12_c00091{bottom:285.626667pt;}
.y11_c00091{bottom:307.493333pt;}
.y10_c00091{bottom:329.493333pt;}
.yf_c00091{bottom:351.093333pt;}
.ye_c00091{bottom:372.960000pt;}
.yd_c00091{bottom:395.093333pt;}
.yc_c00091{bottom:417.093333pt;}
.yb_c00091{bottom:439.493333pt;}
.ya_c00091{bottom:461.493333pt;}
.y9_c00091{bottom:482.693333pt;}
.y8_c00091{bottom:504.960000pt;}
.y7_c00091{bottom:526.826667pt;}
.y6_c00091{bottom:548.693333pt;}
.y5_c00091{bottom:570.293333pt;}
.y4_c00091{bottom:592.160000pt;}
.y3_c00091{bottom:614.426667pt;}
.y2_c00091{bottom:635.760000pt;}
.y1_c00091{bottom:658.293333pt;}
.h4_c00091{height:11.733399pt;}
.h5_c00091{height:38.937500pt;}
.h1_c00091{height:73.281250pt;}
.h2_c00091{height:81.031250pt;}
.h3_c00091{height:87.783854pt;}
.h0_c00091{height:692.666667pt;}
.w2_c00091{width:93.222667pt;}
.w1_c00091{width:480.666667pt;}
.w0_c00091{width:480.733333pt;}
.x0_c00091{left:0.000000pt;}
.xc_c00091{left:112.000000pt;}
.x4_c00091{left:116.133333pt;}
.x2_c00091{left:117.600000pt;}
.x3_c00091{left:119.066667pt;}
.x5_c00091{left:120.000000pt;}
.x6_c00091{left:121.200000pt;}
.x7_c00091{left:122.400000pt;}
.x8_c00091{left:124.266667pt;}
.xa_c00091{left:125.200000pt;}
.xb_c00091{left:126.400000pt;}
.x9_c00091{left:193.466667pt;}
.xe_c00091{left:197.534871pt;}
.x1_c00091{left:223.733333pt;}
.xd_c00091{left:438.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_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_4ba8c7c1f827118575be96a0.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00092;src:url('chunks/assets/font_12e588d68e6d2d6cf8b3038b.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00092;src:url('chunks/assets/font_d4acf8f4aed3aba1c3373590.woff2')format("woff");}.ff3_c00092{font-family:ff3_c00092;line-height:1.568848;font-style:normal;font-weight:normal;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_4c17d65ac5609bf784114909.woff2')format("woff");}.ff4_c00092{font-family:ff4_c00092;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00092{font-family:ff5_c00092;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00092{vertical-align:0.000000px;}
.ls1_c00092{letter-spacing:0.000000px;}
.ls2_c00092{letter-spacing:3.000000px;}
.ls0_c00092{letter-spacing:7.029000px;}
.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:-16.629000px;}
.ws1_c00092{word-spacing:0.000000px;}
._6_c00092{margin-left:-13.203000px;}
._19_c00092{margin-left:-11.832000px;}
._7_c00092{margin-left:-10.368000px;}
._e_c00092{margin-left:-9.075000px;}
._f_c00092{margin-left:-7.476000px;}
._16_c00092{margin-left:-6.336000px;}
._2_c00092{margin-left:-4.788000px;}
._b_c00092{margin-left:-3.168000px;}
._9_c00092{margin-left:-1.656000px;}
._d_c00092{width:1.224000px;}
._4_c00092{width:2.772000px;}
._3_c00092{width:4.200000px;}
._12_c00092{width:5.448000px;}
._1_c00092{width:6.468000px;}
._8_c00092{width:7.992000px;}
._10_c00092{width:9.900000px;}
._0_c00092{width:11.088000px;}
._11_c00092{width:12.168000px;}
._c_c00092{width:13.752000px;}
._14_c00092{width:14.940000px;}
._a_c00092{width:17.388000px;}
._18_c00092{width:19.296000px;}
._17_c00092{width:22.020000px;}
._1a_c00092{width:23.952000px;}
._1b_c00092{width:27.300000px;}
._13_c00092{width:30.528000px;}
._1d_c00092{width:32.238000px;}
._1c_c00092{width:38.520000px;}
._1e_c00092{width:193.371000px;}
._5_c00092{width:314.040000px;}
._15_c00092{width:570.240000px;}
.fc2_c00092{color:transparent;}
.fc1_c00092{color:rgb(128,128,128);}
.fc0_c00092{color:rgb(0,0,0);}
.fs4_c00092{font-size:48.000000px;}
.fs3_c00092{font-size:69.000000px;}
.fs2_c00092{font-size:72.000000px;}
.fs1_c00092{font-size:81.000000px;}
.fs0_c00092{font-size:84.000000px;}
.y0_c00092{bottom:0.000000px;}
.y1f_c00092{bottom:3.105000px;}
.y1e_c00092{bottom:7.228363px;}
.y1d_c00092{bottom:48.600000px;}
.y1c_c00092{bottom:75.150000px;}
.y1b_c00092{bottom:100.200000px;}
.y1a_c00092{bottom:125.100000px;}
.y19_c00092{bottom:150.000000px;}
.y18_c00092{bottom:175.050000px;}
.y17_c00092{bottom:200.100000px;}
.y16_c00092{bottom:224.100000px;}
.y15_c00092{bottom:248.400000px;}
.y14_c00092{bottom:272.700000px;}
.y13_c00092{bottom:297.300000px;}
.y12_c00092{bottom:319.650000px;}
.y11_c00092{bottom:344.250000px;}
.y10_c00092{bottom:369.150000px;}
.yf_c00092{bottom:393.150000px;}
.ye_c00092{bottom:418.200000px;}
.yd_c00092{bottom:442.800000px;}
.yc_c00092{bottom:467.400000px;}
.yb_c00092{bottom:491.400000px;}
.ya_c00092{bottom:516.000000px;}
.y9_c00092{bottom:540.300000px;}
.y8_c00092{bottom:565.200000px;}
.y7_c00092{bottom:589.650000px;}
.y6_c00092{bottom:613.950000px;}
.y5_c00092{bottom:638.250000px;}
.y4_c00092{bottom:663.150000px;}
.y3_c00092{bottom:687.450000px;}
.y2_c00092{bottom:711.750000px;}
.y1_c00092{bottom:737.100000px;}
.h5_c00092{height:13.200074px;}
.h6_c00092{height:43.804688px;}
.h4_c00092{height:79.497070px;}
.h2_c00092{height:82.400391px;}
.h3_c00092{height:91.160156px;}
.h1_c00092{height:793.500000px;}
.h0_c00092{height:793.800000px;}
.w1_c00092{width:104.875500px;}
.w0_c00092{width:549.750000px;}
.x0_c00092{left:0.000000px;}
.x8_c00092{left:27.000000px;}
.x6_c00092{left:28.800000px;}
.x7_c00092{left:30.750000px;}
.x4_c00092{left:31.950000px;}
.x3_c00092{left:33.000000px;}
.x2_c00092{left:35.100000px;}
.x5_c00092{left:36.450000px;}
.x1_c00092{left:139.050000px;}
.xa_c00092{left:226.689240px;}
.x9_c00092{left:305.100000px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls1_c00092{letter-spacing:0.000000pt;}
.ls2_c00092{letter-spacing:2.666667pt;}
.ls0_c00092{letter-spacing:6.248000pt;}
.ws0_c00092{word-spacing:-14.781333pt;}
.ws1_c00092{word-spacing:0.000000pt;}
._6_c00092{margin-left:-11.736000pt;}
._19_c00092{margin-left:-10.517333pt;}
._7_c00092{margin-left:-9.216000pt;}
._e_c00092{margin-left:-8.066667pt;}
._f_c00092{margin-left:-6.645333pt;}
._16_c00092{margin-left:-5.632000pt;}
._2_c00092{margin-left:-4.256000pt;}
._b_c00092{margin-left:-2.816000pt;}
._9_c00092{margin-left:-1.472000pt;}
._d_c00092{width:1.088000pt;}
._4_c00092{width:2.464000pt;}
._3_c00092{width:3.733333pt;}
._12_c00092{width:4.842667pt;}
._1_c00092{width:5.749333pt;}
._8_c00092{width:7.104000pt;}
._10_c00092{width:8.800000pt;}
._0_c00092{width:9.856000pt;}
._11_c00092{width:10.816000pt;}
._c_c00092{width:12.224000pt;}
._14_c00092{width:13.280000pt;}
._a_c00092{width:15.456000pt;}
._18_c00092{width:17.152000pt;}
._17_c00092{width:19.573333pt;}
._1a_c00092{width:21.290667pt;}
._1b_c00092{width:24.266667pt;}
._13_c00092{width:27.136000pt;}
._1d_c00092{width:28.656000pt;}
._1c_c00092{width:34.240000pt;}
._1e_c00092{width:171.885333pt;}
._5_c00092{width:279.146667pt;}
._15_c00092{width:506.880000pt;}
.fs4_c00092{font-size:42.666667pt;}
.fs3_c00092{font-size:61.333333pt;}
.fs2_c00092{font-size:64.000000pt;}
.fs1_c00092{font-size:72.000000pt;}
.fs0_c00092{font-size:74.666667pt;}
.y0_c00092{bottom:0.000000pt;}
.y1f_c00092{bottom:2.760000pt;}
.y1e_c00092{bottom:6.425212pt;}
.y1d_c00092{bottom:43.200000pt;}
.y1c_c00092{bottom:66.800000pt;}
.y1b_c00092{bottom:89.066667pt;}
.y1a_c00092{bottom:111.200000pt;}
.y19_c00092{bottom:133.333333pt;}
.y18_c00092{bottom:155.600000pt;}
.y17_c00092{bottom:177.866667pt;}
.y16_c00092{bottom:199.200000pt;}
.y15_c00092{bottom:220.800000pt;}
.y14_c00092{bottom:242.400000pt;}
.y13_c00092{bottom:264.266667pt;}
.y12_c00092{bottom:284.133333pt;}
.y11_c00092{bottom:306.000000pt;}
.y10_c00092{bottom:328.133333pt;}
.yf_c00092{bottom:349.466667pt;}
.ye_c00092{bottom:371.733333pt;}
.yd_c00092{bottom:393.600000pt;}
.yc_c00092{bottom:415.466667pt;}
.yb_c00092{bottom:436.800000pt;}
.ya_c00092{bottom:458.666667pt;}
.y9_c00092{bottom:480.266667pt;}
.y8_c00092{bottom:502.400000pt;}
.y7_c00092{bottom:524.133333pt;}
.y6_c00092{bottom:545.733333pt;}
.y5_c00092{bottom:567.333333pt;}
.y4_c00092{bottom:589.466667pt;}
.y3_c00092{bottom:611.066667pt;}
.y2_c00092{bottom:632.666667pt;}
.y1_c00092{bottom:655.200000pt;}
.h5_c00092{height:11.733399pt;}
.h6_c00092{height:38.937500pt;}
.h4_c00092{height:70.664062pt;}
.h2_c00092{height:73.244792pt;}
.h3_c00092{height:81.031250pt;}
.h1_c00092{height:705.333333pt;}
.h0_c00092{height:705.600000pt;}
.w1_c00092{width:93.222667pt;}
.w0_c00092{width:488.666667pt;}
.x0_c00092{left:0.000000pt;}
.x8_c00092{left:24.000000pt;}
.x6_c00092{left:25.600000pt;}
.x7_c00092{left:27.333333pt;}
.x4_c00092{left:28.400000pt;}
.x3_c00092{left:29.333333pt;}
.x2_c00092{left:31.200000pt;}
.x5_c00092{left:32.400000pt;}
.x1_c00092{left:123.600000pt;}
.xa_c00092{left:201.501546pt;}
.x9_c00092{left:271.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_14d97cb597532fa4012af32b.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.480469;font-style:normal;font-weight:normal;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_35b1e9ca56615dd36652477c.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:1.568848;font-style:normal;font-weight:normal;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_0900b6685f81776542f325f9.woff2')format("woff");}.ff3_c00093{font-family:ff3_c00093;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00093{font-family:ff4_c00093;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00093{vertical-align:0.000000px;}
.ls1_c00093{letter-spacing:0.000000px;}
.ls2_c00093{letter-spacing:3.000000px;}
.ls0_c00093{letter-spacing:3.015000px;}
.ls3_c00093{letter-spacing:12.000000px;}
.sc__c00093{text-shadow:none;}
.sc0_c00093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00093{-webkit-text-stroke:0px transparent;}
.sc0_c00093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00093{word-spacing:-20.352000px;}
.ws0_c00093{word-spacing:-17.352000px;}
.ws1_c00093{word-spacing:-16.629000px;}
.ws3_c00093{word-spacing:-1.512000px;}
.ws5_c00093{word-spacing:0.000000px;}
.ws2_c00093{word-spacing:0.072000px;}
._14_c00093{margin-left:-41.832000px;}
._1c_c00093{margin-left:-36.432000px;}
._25_c00093{margin-left:-33.480000px;}
._15_c00093{margin-left:-18.384000px;}
._4_c00093{margin-left:-16.920000px;}
._12_c00093{margin-left:-15.624000px;}
._f_c00093{margin-left:-14.544000px;}
._e_c00093{margin-left:-12.384000px;}
._d_c00093{margin-left:-10.800000px;}
._5_c00093{margin-left:-9.360000px;}
._10_c00093{margin-left:-7.440000px;}
._11_c00093{margin-left:-5.616000px;}
._a_c00093{margin-left:-4.464000px;}
._c_c00093{margin-left:-2.952000px;}
._6_c00093{margin-left:-1.440000px;}
._9_c00093{width:1.728000px;}
._1_c00093{width:3.528000px;}
._16_c00093{width:5.256000px;}
._3_c00093{width:6.264000px;}
._2_c00093{width:7.344000px;}
._19_c00093{width:8.376000px;}
._0_c00093{width:9.648000px;}
._7_c00093{width:11.088000px;}
._17_c00093{width:13.248000px;}
._1b_c00093{width:14.256000px;}
._8_c00093{width:15.336000px;}
._b_c00093{width:17.280000px;}
._22_c00093{width:19.992000px;}
._18_c00093{width:22.608000px;}
._1a_c00093{width:25.488000px;}
._23_c00093{width:35.990400px;}
._20_c00093{width:37.329000px;}
._21_c00093{width:38.778000px;}
._24_c00093{width:40.250400px;}
._1f_c00093{width:41.607000px;}
._1e_c00093{width:47.886000px;}
._13_c00093{width:108.840000px;}
._1d_c00093{width:640.896000px;}
.fc2_c00093{color:transparent;}
.fc1_c00093{color:rgb(128,128,128);}
.fc0_c00093{color:rgb(0,0,0);}
.fs3_c00093{font-size:48.000000px;}
.fs2_c00093{font-size:55.200000px;}
.fs1_c00093{font-size:69.000000px;}
.fs0_c00093{font-size:72.000000px;}
.y0_c00093{bottom:0.000000px;}
.y1c_c00093{bottom:3.105000px;}
.y1b_c00093{bottom:7.228369px;}
.y1a_c00093{bottom:46.620000px;}
.y19_c00093{bottom:72.120000px;}
.y18_c00093{bottom:97.170000px;}
.y17_c00093{bottom:122.220000px;}
.y16_c00093{bottom:147.120000px;}
.y15_c00093{bottom:171.720000px;}
.y14_c00093{bottom:212.220000px;}
.y13_c00093{bottom:252.120000px;}
.y12_c00093{bottom:275.670000px;}
.y11_c00093{bottom:321.870000px;}
.y10_c00093{bottom:368.820000px;}
.yf_c00093{bottom:393.570000px;}
.ye_c00093{bottom:418.770000px;}
.yd_c00093{bottom:442.770000px;}
.yc_c00093{bottom:467.670000px;}
.yb_c00093{bottom:491.970000px;}
.ya_c00093{bottom:516.270000px;}
.y9_c00093{bottom:541.320000px;}
.y8_c00093{bottom:565.620000px;}
.y7_c00093{bottom:590.220000px;}
.y6_c00093{bottom:614.220000px;}
.y5_c00093{bottom:639.570000px;}
.y4_c00093{bottom:663.120000px;}
.y3_c00093{bottom:688.470000px;}
.y2_c00093{bottom:713.070000px;}
.y1_c00093{bottom:738.720000px;}
.h5_c00093{height:13.200073px;}
.h6_c00093{height:43.804688px;}
.h3_c00093{height:80.758301px;}
.h4_c00093{height:84.269531px;}
.h2_c00093{height:91.160156px;}
.h1_c00093{height:792.000000px;}
.h0_c00093{height:792.150000px;}
.w2_c00093{width:104.875500px;}
.w1_c00093{width:541.500000px;}
.w0_c00093{width:541.650000px;}
.x0_c00093{left:0.000000px;}
.x4_c00093{left:134.700000px;}
.x5_c00093{left:135.750000px;}
.x3_c00093{left:137.700000px;}
.x2_c00093{left:138.750000px;}
.xb_c00093{left:141.750000px;}
.x6_c00093{left:168.000000px;}
.x9_c00093{left:217.950000px;}
.xa_c00093{left:219.000000px;}
.xd_c00093{left:222.639267px;}
.x1_c00093{left:248.700000px;}
.x7_c00093{left:251.700000px;}
.x8_c00093{left:283.800000px;}
.xc_c00093{left:487.050000px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls1_c00093{letter-spacing:0.000000pt;}
.ls2_c00093{letter-spacing:2.666667pt;}
.ls0_c00093{letter-spacing:2.680000pt;}
.ls3_c00093{letter-spacing:10.666667pt;}
.ws4_c00093{word-spacing:-18.090667pt;}
.ws0_c00093{word-spacing:-15.424000pt;}
.ws1_c00093{word-spacing:-14.781333pt;}
.ws3_c00093{word-spacing:-1.344000pt;}
.ws5_c00093{word-spacing:0.000000pt;}
.ws2_c00093{word-spacing:0.064000pt;}
._14_c00093{margin-left:-37.184000pt;}
._1c_c00093{margin-left:-32.384000pt;}
._25_c00093{margin-left:-29.760000pt;}
._15_c00093{margin-left:-16.341333pt;}
._4_c00093{margin-left:-15.040000pt;}
._12_c00093{margin-left:-13.888000pt;}
._f_c00093{margin-left:-12.928000pt;}
._e_c00093{margin-left:-11.008000pt;}
._d_c00093{margin-left:-9.600000pt;}
._5_c00093{margin-left:-8.320000pt;}
._10_c00093{margin-left:-6.613333pt;}
._11_c00093{margin-left:-4.992000pt;}
._a_c00093{margin-left:-3.968000pt;}
._c_c00093{margin-left:-2.624000pt;}
._6_c00093{margin-left:-1.280000pt;}
._9_c00093{width:1.536000pt;}
._1_c00093{width:3.136000pt;}
._16_c00093{width:4.672000pt;}
._3_c00093{width:5.568000pt;}
._2_c00093{width:6.528000pt;}
._19_c00093{width:7.445333pt;}
._0_c00093{width:8.576000pt;}
._7_c00093{width:9.856000pt;}
._17_c00093{width:11.776000pt;}
._1b_c00093{width:12.672000pt;}
._8_c00093{width:13.632000pt;}
._b_c00093{width:15.360000pt;}
._22_c00093{width:17.770667pt;}
._18_c00093{width:20.096000pt;}
._1a_c00093{width:22.656000pt;}
._23_c00093{width:31.991467pt;}
._20_c00093{width:33.181333pt;}
._21_c00093{width:34.469333pt;}
._24_c00093{width:35.778133pt;}
._1f_c00093{width:36.984000pt;}
._1e_c00093{width:42.565333pt;}
._13_c00093{width:96.746667pt;}
._1d_c00093{width:569.685333pt;}
.fs3_c00093{font-size:42.666667pt;}
.fs2_c00093{font-size:49.066667pt;}
.fs1_c00093{font-size:61.333333pt;}
.fs0_c00093{font-size:64.000000pt;}
.y0_c00093{bottom:0.000000pt;}
.y1c_c00093{bottom:2.760000pt;}
.y1b_c00093{bottom:6.425217pt;}
.y1a_c00093{bottom:41.440000pt;}
.y19_c00093{bottom:64.106667pt;}
.y18_c00093{bottom:86.373333pt;}
.y17_c00093{bottom:108.640000pt;}
.y16_c00093{bottom:130.773333pt;}
.y15_c00093{bottom:152.640000pt;}
.y14_c00093{bottom:188.640000pt;}
.y13_c00093{bottom:224.106667pt;}
.y12_c00093{bottom:245.040000pt;}
.y11_c00093{bottom:286.106667pt;}
.y10_c00093{bottom:327.840000pt;}
.yf_c00093{bottom:349.840000pt;}
.ye_c00093{bottom:372.240000pt;}
.yd_c00093{bottom:393.573333pt;}
.yc_c00093{bottom:415.706667pt;}
.yb_c00093{bottom:437.306667pt;}
.ya_c00093{bottom:458.906667pt;}
.y9_c00093{bottom:481.173333pt;}
.y8_c00093{bottom:502.773333pt;}
.y7_c00093{bottom:524.640000pt;}
.y6_c00093{bottom:545.973333pt;}
.y5_c00093{bottom:568.506667pt;}
.y4_c00093{bottom:589.440000pt;}
.y3_c00093{bottom:611.973333pt;}
.y2_c00093{bottom:633.840000pt;}
.y1_c00093{bottom:656.640000pt;}
.h5_c00093{height:11.733399pt;}
.h6_c00093{height:38.937500pt;}
.h3_c00093{height:71.785156pt;}
.h4_c00093{height:74.906250pt;}
.h2_c00093{height:81.031250pt;}
.h1_c00093{height:704.000000pt;}
.h0_c00093{height:704.133333pt;}
.w2_c00093{width:93.222667pt;}
.w1_c00093{width:481.333333pt;}
.w0_c00093{width:481.466667pt;}
.x0_c00093{left:0.000000pt;}
.x4_c00093{left:119.733333pt;}
.x5_c00093{left:120.666667pt;}
.x3_c00093{left:122.400000pt;}
.x2_c00093{left:123.333333pt;}
.xb_c00093{left:126.000000pt;}
.x6_c00093{left:149.333333pt;}
.x9_c00093{left:193.733333pt;}
.xa_c00093{left:194.666667pt;}
.xd_c00093{left:197.901571pt;}
.x1_c00093{left:221.066667pt;}
.x7_c00093{left:223.733333pt;}
.x8_c00093{left:252.266667pt;}
.xc_c00093{left:432.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_43dae0b4ec672fcab93e0be3.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00094;src:url('chunks/assets/font_3ca93282f03c11393bb70569.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:1.568848;font-style:normal;font-weight:normal;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_2129746ebec0a60a91600427.woff2')format("woff");}.ff3_c00094{font-family:ff3_c00094;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00094{font-family:ff4_c00094;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00094{vertical-align:0.000000px;}
.ls2_c00094{letter-spacing:0.000000px;}
.ls1_c00094{letter-spacing:1.368000px;}
.ls0_c00094{letter-spacing:3.000000px;}
.ls3_c00094{letter-spacing:39.000000px;}
.sc__c00094{text-shadow:none;}
.sc0_c00094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00094{-webkit-text-stroke:0px transparent;}
.sc0_c00094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00094{word-spacing:-56.352000px;}
.ws0_c00094{word-spacing:-42.000000px;}
.ws2_c00094{word-spacing:-33.192000px;}
.ws3_c00094{word-spacing:-20.352000px;}
.ws4_c00094{word-spacing:-16.629000px;}
.ws5_c00094{word-spacing:0.000000px;}
._d_c00094{margin-left:-16.386000px;}
._12_c00094{margin-left:-10.476000px;}
._11_c00094{margin-left:-9.288000px;}
._15_c00094{margin-left:-8.064000px;}
._e_c00094{margin-left:-6.984000px;}
._9_c00094{margin-left:-5.472000px;}
._a_c00094{margin-left:-4.428000px;}
._8_c00094{margin-left:-3.084000px;}
._7_c00094{margin-left:-1.692000px;}
._5_c00094{width:1.188000px;}
._4_c00094{width:2.412000px;}
._2_c00094{width:4.284000px;}
._6_c00094{width:5.364000px;}
._1_c00094{width:6.804000px;}
._3_c00094{width:8.736000px;}
._0_c00094{width:10.752000px;}
._c_c00094{width:12.708000px;}
._10_c00094{width:14.544000px;}
._b_c00094{width:16.704000px;}
._16_c00094{width:31.032000px;}
._f_c00094{width:36.108000px;}
._14_c00094{width:280.548000px;}
._17_c00094{width:352.800000px;}
._13_c00094{width:604.872000px;}
.fc2_c00094{color:transparent;}
.fc1_c00094{color:rgb(128,128,128);}
.fc0_c00094{color:rgb(0,0,0);}
.fs3_c00094{font-size:48.000000px;}
.fs2_c00094{font-size:69.000000px;}
.fs1_c00094{font-size:72.000000px;}
.fs0_c00094{font-size:84.000000px;}
.y0_c00094{bottom:0.000000px;}
.y1f_c00094{bottom:3.105000px;}
.y1e_c00094{bottom:7.228355px;}
.y1d_c00094{bottom:41.835000px;}
.y1c_c00094{bottom:69.735000px;}
.y1b_c00094{bottom:93.135000px;}
.y1a_c00094{bottom:119.835000px;}
.y19_c00094{bottom:144.735000px;}
.y18_c00094{bottom:169.035000px;}
.y17_c00094{bottom:193.935000px;}
.y16_c00094{bottom:217.635000px;}
.y15_c00094{bottom:242.685000px;}
.y14_c00094{bottom:268.335000px;}
.y13_c00094{bottom:293.535000px;}
.y12_c00094{bottom:314.085000px;}
.y11_c00094{bottom:338.835000px;}
.y10_c00094{bottom:363.735000px;}
.yf_c00094{bottom:388.335000px;}
.ye_c00094{bottom:410.385000px;}
.yd_c00094{bottom:436.635000px;}
.yc_c00094{bottom:461.235000px;}
.yb_c00094{bottom:485.535000px;}
.ya_c00094{bottom:510.585000px;}
.y9_c00094{bottom:535.185000px;}
.y8_c00094{bottom:559.485000px;}
.y7_c00094{bottom:583.485000px;}
.y6_c00094{bottom:607.785000px;}
.y5_c00094{bottom:632.085000px;}
.y4_c00094{bottom:656.985000px;}
.y3_c00094{bottom:681.285000px;}
.y2_c00094{bottom:705.285000px;}
.y1_c00094{bottom:730.635000px;}
.h4_c00094{height:13.200074px;}
.h5_c00094{height:43.804688px;}
.h2_c00094{height:82.400391px;}
.h3_c00094{height:91.160156px;}
.h1_c00094{height:792.750000px;}
.h0_c00094{height:792.975000px;}
.w2_c00094{width:104.875500px;}
.w0_c00094{width:534.600000px;}
.w1_c00094{width:534.750000px;}
.x0_c00094{left:0.000000px;}
.xb_c00094{left:16.200000px;}
.xa_c00094{left:18.900000px;}
.x9_c00094{left:19.950000px;}
.x8_c00094{left:21.000000px;}
.x7_c00094{left:22.050000px;}
.x6_c00094{left:24.000000px;}
.x5_c00094{left:25.350000px;}
.x4_c00094{left:26.700000px;}
.x3_c00094{left:27.900000px;}
.x2_c00094{left:29.100000px;}
.x1_c00094{left:141.450000px;}
.xc_c00094{left:197.550000px;}
.xd_c00094{left:219.114258px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls2_c00094{letter-spacing:0.000000pt;}
.ls1_c00094{letter-spacing:1.216000pt;}
.ls0_c00094{letter-spacing:2.666667pt;}
.ls3_c00094{letter-spacing:34.666667pt;}
.ws1_c00094{word-spacing:-50.090667pt;}
.ws0_c00094{word-spacing:-37.333333pt;}
.ws2_c00094{word-spacing:-29.504000pt;}
.ws3_c00094{word-spacing:-18.090667pt;}
.ws4_c00094{word-spacing:-14.781333pt;}
.ws5_c00094{word-spacing:0.000000pt;}
._d_c00094{margin-left:-14.565333pt;}
._12_c00094{margin-left:-9.312000pt;}
._11_c00094{margin-left:-8.256000pt;}
._15_c00094{margin-left:-7.168000pt;}
._e_c00094{margin-left:-6.208000pt;}
._9_c00094{margin-left:-4.864000pt;}
._a_c00094{margin-left:-3.936000pt;}
._8_c00094{margin-left:-2.741333pt;}
._7_c00094{margin-left:-1.504000pt;}
._5_c00094{width:1.056000pt;}
._4_c00094{width:2.144000pt;}
._2_c00094{width:3.808000pt;}
._6_c00094{width:4.768000pt;}
._1_c00094{width:6.048000pt;}
._3_c00094{width:7.765333pt;}
._0_c00094{width:9.557333pt;}
._c_c00094{width:11.296000pt;}
._10_c00094{width:12.928000pt;}
._b_c00094{width:14.848000pt;}
._16_c00094{width:27.584000pt;}
._f_c00094{width:32.096000pt;}
._14_c00094{width:249.376000pt;}
._17_c00094{width:313.600000pt;}
._13_c00094{width:537.664000pt;}
.fs3_c00094{font-size:42.666667pt;}
.fs2_c00094{font-size:61.333333pt;}
.fs1_c00094{font-size:64.000000pt;}
.fs0_c00094{font-size:74.666667pt;}
.y0_c00094{bottom:0.000000pt;}
.y1f_c00094{bottom:2.760000pt;}
.y1e_c00094{bottom:6.425204pt;}
.y1d_c00094{bottom:37.186667pt;}
.y1c_c00094{bottom:61.986667pt;}
.y1b_c00094{bottom:82.786667pt;}
.y1a_c00094{bottom:106.520000pt;}
.y19_c00094{bottom:128.653333pt;}
.y18_c00094{bottom:150.253333pt;}
.y17_c00094{bottom:172.386667pt;}
.y16_c00094{bottom:193.453333pt;}
.y15_c00094{bottom:215.720000pt;}
.y14_c00094{bottom:238.520000pt;}
.y13_c00094{bottom:260.920000pt;}
.y12_c00094{bottom:279.186667pt;}
.y11_c00094{bottom:301.186667pt;}
.y10_c00094{bottom:323.320000pt;}
.yf_c00094{bottom:345.186667pt;}
.ye_c00094{bottom:364.786667pt;}
.yd_c00094{bottom:388.120000pt;}
.yc_c00094{bottom:409.986667pt;}
.yb_c00094{bottom:431.586667pt;}
.ya_c00094{bottom:453.853333pt;}
.y9_c00094{bottom:475.720000pt;}
.y8_c00094{bottom:497.320000pt;}
.y7_c00094{bottom:518.653333pt;}
.y6_c00094{bottom:540.253333pt;}
.y5_c00094{bottom:561.853333pt;}
.y4_c00094{bottom:583.986667pt;}
.y3_c00094{bottom:605.586667pt;}
.y2_c00094{bottom:626.920000pt;}
.y1_c00094{bottom:649.453333pt;}
.h4_c00094{height:11.733399pt;}
.h5_c00094{height:38.937500pt;}
.h2_c00094{height:73.244792pt;}
.h3_c00094{height:81.031250pt;}
.h1_c00094{height:704.666667pt;}
.h0_c00094{height:704.866667pt;}
.w2_c00094{width:93.222667pt;}
.w0_c00094{width:475.200000pt;}
.w1_c00094{width:475.333333pt;}
.x0_c00094{left:0.000000pt;}
.xb_c00094{left:14.400000pt;}
.xa_c00094{left:16.800000pt;}
.x9_c00094{left:17.733333pt;}
.x8_c00094{left:18.666667pt;}
.x7_c00094{left:19.600000pt;}
.x6_c00094{left:21.333333pt;}
.x5_c00094{left:22.533333pt;}
.x4_c00094{left:23.733333pt;}
.x3_c00094{left:24.800000pt;}
.x2_c00094{left:25.866667pt;}
.x1_c00094{left:125.733333pt;}
.xc_c00094{left:175.600000pt;}
.xd_c00094{left:194.768229pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c84e64462897415930efbba2.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00095;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00095;src:url('chunks/assets/font_f6821e8acbeeae1279fe4086.woff2')format("woff");}.ff3_c00095{font-family:ff3_c00095;line-height:1.568848;font-style:normal;font-weight:normal;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_556f481beecdb83238e0ae30.woff2')format("woff");}.ff4_c00095{font-family:ff4_c00095;line-height:1.480469;font-style:normal;font-weight:normal;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_c0c8515567d5d0d8ad14c786.woff2')format("woff");}.ff5_c00095{font-family:ff5_c00095;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00095;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00095{font-family:ff6_c00095;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00095{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00095{vertical-align:0.000000px;}
.ls4_c00095{letter-spacing:0.000000px;}
.ls0_c00095{letter-spacing:3.000000px;}
.ls1_c00095{letter-spacing:3.162000px;}
.ls5_c00095{letter-spacing:6.000000px;}
.ls3_c00095{letter-spacing:7.512000px;}
.ls2_c00095{letter-spacing:41.904000px;}
.sc__c00095{text-shadow:none;}
.sc0_c00095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00095{-webkit-text-stroke:0px transparent;}
.sc0_c00095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00095{word-spacing:-33.192000px;}
.ws2_c00095{word-spacing:-20.352000px;}
.ws1_c00095{word-spacing:-16.629000px;}
.ws3_c00095{word-spacing:0.000000px;}
._18_c00095{margin-left:-25.239000px;}
._20_c00095{margin-left:-21.744000px;}
._1e_c00095{margin-left:-17.790000px;}
._5_c00095{margin-left:-16.776000px;}
._14_c00095{margin-left:-14.184000px;}
._12_c00095{margin-left:-13.176000px;}
._15_c00095{margin-left:-11.952000px;}
._13_c00095{margin-left:-10.920000px;}
._16_c00095{margin-left:-9.018000px;}
._11_c00095{margin-left:-7.650000px;}
._b_c00095{margin-left:-6.588000px;}
._2_c00095{margin-left:-5.292000px;}
._4_c00095{margin-left:-4.068000px;}
._f_c00095{margin-left:-2.334000px;}
._8_c00095{margin-left:-1.296000px;}
._1_c00095{width:1.512000px;}
._0_c00095{width:3.276000px;}
._3_c00095{width:4.536000px;}
._e_c00095{width:6.372000px;}
._19_c00095{width:7.497000px;}
._10_c00095{width:8.820000px;}
._6_c00095{width:9.936000px;}
._9_c00095{width:11.088000px;}
._d_c00095{width:13.176000px;}
._a_c00095{width:14.220000px;}
._7_c00095{width:16.380000px;}
._1b_c00095{width:17.568000px;}
._c_c00095{width:18.792000px;}
._1c_c00095{width:20.274000px;}
._1d_c00095{width:26.928000px;}
._1f_c00095{width:34.020000px;}
._17_c00095{width:57.285000px;}
._21_c00095{width:60.696000px;}
._1a_c00095{width:159.288000px;}
.fc2_c00095{color:transparent;}
.fc1_c00095{color:rgb(128,128,128);}
.fc0_c00095{color:rgb(0,0,0);}
.fs7_c00095{font-size:48.000000px;}
.fs5_c00095{font-size:51.000000px;}
.fs2_c00095{font-size:54.000000px;}
.fs4_c00095{font-size:63.000000px;}
.fs3_c00095{font-size:66.000000px;}
.fs6_c00095{font-size:69.000000px;}
.fs1_c00095{font-size:72.000000px;}
.fs0_c00095{font-size:84.000000px;}
.y0_c00095{bottom:0.000000px;}
.y1f_c00095{bottom:3.105000px;}
.y1e_c00095{bottom:7.228371px;}
.y1d_c00095{bottom:42.165000px;}
.y1c_c00095{bottom:66.915000px;}
.y1b_c00095{bottom:92.265000px;}
.y1a_c00095{bottom:117.465000px;}
.y19_c00095{bottom:143.115000px;}
.y18_c00095{bottom:168.165000px;}
.y17_c00095{bottom:192.015000px;}
.y16_c00095{bottom:217.365000px;}
.y15_c00095{bottom:243.465000px;}
.y14_c00095{bottom:267.765000px;}
.y13_c00095{bottom:291.915000px;}
.y12_c00095{bottom:317.715000px;}
.y11_c00095{bottom:340.965000px;}
.y10_c00095{bottom:365.565000px;}
.yf_c00095{bottom:389.865000px;}
.ye_c00095{bottom:414.915000px;}
.yd_c00095{bottom:439.815000px;}
.yc_c00095{bottom:463.815000px;}
.yb_c00095{bottom:488.715000px;}
.ya_c00095{bottom:512.715000px;}
.y9_c00095{bottom:537.615000px;}
.y8_c00095{bottom:562.065000px;}
.y7_c00095{bottom:586.215000px;}
.y6_c00095{bottom:610.965000px;}
.y5_c00095{bottom:635.565000px;}
.y4_c00095{bottom:660.615000px;}
.y3_c00095{bottom:684.465000px;}
.y2_c00095{bottom:709.515000px;}
.y1_c00095{bottom:735.165000px;}
.h5_c00095{height:13.200074px;}
.h6_c00095{height:43.804688px;}
.h4_c00095{height:50.053711px;}
.h2_c00095{height:82.441406px;}
.h3_c00095{height:91.160156px;}
.h1_c00095{height:795.750000px;}
.h0_c00095{height:795.975000px;}
.w2_c00095{width:104.875500px;}
.w1_c00095{width:534.750000px;}
.w0_c00095{width:534.900000px;}
.x0_c00095{left:0.000000px;}
.xc_c00095{left:58.500000px;}
.xd_c00095{left:60.750000px;}
.x2_c00095{left:122.550000px;}
.x3_c00095{left:123.900000px;}
.x4_c00095{left:125.850000px;}
.x5_c00095{left:127.200000px;}
.x6_c00095{left:128.250000px;}
.x7_c00095{left:129.900000px;}
.x8_c00095{left:131.250000px;}
.x9_c00095{left:132.600000px;}
.xa_c00095{left:133.650000px;}
.xb_c00095{left:135.300000px;}
.xf_c00095{left:219.264267px;}
.x1_c00095{left:240.900000px;}
.xe_c00095{left:489.150000px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls4_c00095{letter-spacing:0.000000pt;}
.ls0_c00095{letter-spacing:2.666667pt;}
.ls1_c00095{letter-spacing:2.810667pt;}
.ls5_c00095{letter-spacing:5.333333pt;}
.ls3_c00095{letter-spacing:6.677333pt;}
.ls2_c00095{letter-spacing:37.248000pt;}
.ws0_c00095{word-spacing:-29.504000pt;}
.ws2_c00095{word-spacing:-18.090667pt;}
.ws1_c00095{word-spacing:-14.781333pt;}
.ws3_c00095{word-spacing:0.000000pt;}
._18_c00095{margin-left:-22.434667pt;}
._20_c00095{margin-left:-19.328000pt;}
._1e_c00095{margin-left:-15.813333pt;}
._5_c00095{margin-left:-14.912000pt;}
._14_c00095{margin-left:-12.608000pt;}
._12_c00095{margin-left:-11.712000pt;}
._15_c00095{margin-left:-10.624000pt;}
._13_c00095{margin-left:-9.706667pt;}
._16_c00095{margin-left:-8.016000pt;}
._11_c00095{margin-left:-6.800000pt;}
._b_c00095{margin-left:-5.856000pt;}
._2_c00095{margin-left:-4.704000pt;}
._4_c00095{margin-left:-3.616000pt;}
._f_c00095{margin-left:-2.074667pt;}
._8_c00095{margin-left:-1.152000pt;}
._1_c00095{width:1.344000pt;}
._0_c00095{width:2.912000pt;}
._3_c00095{width:4.032000pt;}
._e_c00095{width:5.664000pt;}
._19_c00095{width:6.664000pt;}
._10_c00095{width:7.840000pt;}
._6_c00095{width:8.832000pt;}
._9_c00095{width:9.856000pt;}
._d_c00095{width:11.712000pt;}
._a_c00095{width:12.640000pt;}
._7_c00095{width:14.560000pt;}
._1b_c00095{width:15.616000pt;}
._c_c00095{width:16.704000pt;}
._1c_c00095{width:18.021333pt;}
._1d_c00095{width:23.936000pt;}
._1f_c00095{width:30.240000pt;}
._17_c00095{width:50.920000pt;}
._21_c00095{width:53.952000pt;}
._1a_c00095{width:141.589333pt;}
.fs7_c00095{font-size:42.666667pt;}
.fs5_c00095{font-size:45.333333pt;}
.fs2_c00095{font-size:48.000000pt;}
.fs4_c00095{font-size:56.000000pt;}
.fs3_c00095{font-size:58.666667pt;}
.fs6_c00095{font-size:61.333333pt;}
.fs1_c00095{font-size:64.000000pt;}
.fs0_c00095{font-size:74.666667pt;}
.y0_c00095{bottom:0.000000pt;}
.y1f_c00095{bottom:2.760000pt;}
.y1e_c00095{bottom:6.425219pt;}
.y1d_c00095{bottom:37.480000pt;}
.y1c_c00095{bottom:59.480000pt;}
.y1b_c00095{bottom:82.013333pt;}
.y1a_c00095{bottom:104.413333pt;}
.y19_c00095{bottom:127.213333pt;}
.y18_c00095{bottom:149.480000pt;}
.y17_c00095{bottom:170.680000pt;}
.y16_c00095{bottom:193.213333pt;}
.y15_c00095{bottom:216.413333pt;}
.y14_c00095{bottom:238.013333pt;}
.y13_c00095{bottom:259.480000pt;}
.y12_c00095{bottom:282.413333pt;}
.y11_c00095{bottom:303.080000pt;}
.y10_c00095{bottom:324.946667pt;}
.yf_c00095{bottom:346.546667pt;}
.ye_c00095{bottom:368.813333pt;}
.yd_c00095{bottom:390.946667pt;}
.yc_c00095{bottom:412.280000pt;}
.yb_c00095{bottom:434.413333pt;}
.ya_c00095{bottom:455.746667pt;}
.y9_c00095{bottom:477.880000pt;}
.y8_c00095{bottom:499.613333pt;}
.y7_c00095{bottom:521.080000pt;}
.y6_c00095{bottom:543.080000pt;}
.y5_c00095{bottom:564.946667pt;}
.y4_c00095{bottom:587.213333pt;}
.y3_c00095{bottom:608.413333pt;}
.y2_c00095{bottom:630.680000pt;}
.y1_c00095{bottom:653.480000pt;}
.h5_c00095{height:11.733399pt;}
.h6_c00095{height:38.937500pt;}
.h4_c00095{height:44.492188pt;}
.h2_c00095{height:73.281250pt;}
.h3_c00095{height:81.031250pt;}
.h1_c00095{height:707.333333pt;}
.h0_c00095{height:707.533333pt;}
.w2_c00095{width:93.222667pt;}
.w1_c00095{width:475.333333pt;}
.w0_c00095{width:475.466667pt;}
.x0_c00095{left:0.000000pt;}
.xc_c00095{left:52.000000pt;}
.xd_c00095{left:54.000000pt;}
.x2_c00095{left:108.933333pt;}
.x3_c00095{left:110.133333pt;}
.x4_c00095{left:111.866667pt;}
.x5_c00095{left:113.066667pt;}
.x6_c00095{left:114.000000pt;}
.x7_c00095{left:115.466667pt;}
.x8_c00095{left:116.666667pt;}
.x9_c00095{left:117.866667pt;}
.xa_c00095{left:118.800000pt;}
.xb_c00095{left:120.266667pt;}
.xf_c00095{left:194.901571pt;}
.x1_c00095{left:214.133333pt;}
.xe_c00095{left:434.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bd291643ee03af5c10d4d971.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00096;src:url('chunks/assets/font_5da9d1f17a6830e09a318dc9.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;line-height:1.568848;font-style:normal;font-weight:normal;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_c4256f53fae0e7631b5c09c0.woff2')format("woff");}.ff3_c00096{font-family:ff3_c00096;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00096{font-family:ff4_c00096;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00096{vertical-align:0.000000px;}
.ls2_c00096{letter-spacing:0.000000px;}
.ls0_c00096{letter-spacing:3.000000px;}
.ls1_c00096{letter-spacing:6.615000px;}
.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:-17.352000px;}
.ws1_c00096{word-spacing:0.000000px;}
._1b_c00096{margin-left:-10.758000px;}
._d_c00096{margin-left:-8.064000px;}
._12_c00096{margin-left:-6.984000px;}
._b_c00096{margin-left:-5.616000px;}
._9_c00096{margin-left:-3.816000px;}
._c_c00096{margin-left:-2.376000px;}
._e_c00096{margin-left:-1.224000px;}
._8_c00096{width:1.512000px;}
._a_c00096{width:2.736000px;}
._f_c00096{width:4.464000px;}
._13_c00096{width:5.544000px;}
._16_c00096{width:7.056000px;}
._10_c00096{width:8.424000px;}
._14_c00096{width:10.080000px;}
._5_c00096{width:11.118000px;}
._17_c00096{width:12.672000px;}
._1_c00096{width:14.535000px;}
._1a_c00096{width:16.560000px;}
._2_c00096{width:19.635000px;}
._3_c00096{width:21.063000px;}
._1e_c00096{width:22.449000px;}
._6_c00096{width:23.919000px;}
._4_c00096{width:24.939000px;}
._18_c00096{width:25.992000px;}
._0_c00096{width:27.030000px;}
._19_c00096{width:31.464000px;}
._11_c00096{width:33.552000px;}
._1f_c00096{width:35.496000px;}
._1c_c00096{width:37.224000px;}
._1d_c00096{width:38.448000px;}
._20_c00096{width:182.016000px;}
._15_c00096{width:277.056000px;}
._7_c00096{width:367.557000px;}
.fc2_c00096{color:transparent;}
.fc1_c00096{color:rgb(128,128,128);}
.fc0_c00096{color:rgb(0,0,0);}
.fs3_c00096{font-size:48.000000px;}
.fs0_c00096{font-size:51.000000px;}
.fs2_c00096{font-size:69.000000px;}
.fs1_c00096{font-size:72.000000px;}
.y0_c00096{bottom:0.000000px;}
.y1f_c00096{bottom:3.105000px;}
.y1e_c00096{bottom:7.228369px;}
.y1d_c00096{bottom:56.070000px;}
.y1c_c00096{bottom:82.920000px;}
.y1b_c00096{bottom:107.670000px;}
.y1a_c00096{bottom:133.020000px;}
.y19_c00096{bottom:157.320000px;}
.y18_c00096{bottom:182.520000px;}
.y17_c00096{bottom:206.820000px;}
.y16_c00096{bottom:231.420000px;}
.y15_c00096{bottom:256.470000px;}
.y14_c00096{bottom:278.820000px;}
.y13_c00096{bottom:303.120000px;}
.y12_c00096{bottom:326.670000px;}
.y11_c00096{bottom:351.570000px;}
.y10_c00096{bottom:376.020000px;}
.yf_c00096{bottom:400.320000px;}
.ye_c00096{bottom:425.220000px;}
.yd_c00096{bottom:449.520000px;}
.yc_c00096{bottom:474.420000px;}
.yb_c00096{bottom:498.120000px;}
.ya_c00096{bottom:522.720000px;}
.y9_c00096{bottom:547.320000px;}
.y8_c00096{bottom:572.370000px;}
.y7_c00096{bottom:596.670000px;}
.y6_c00096{bottom:620.970000px;}
.y5_c00096{bottom:645.270000px;}
.y4_c00096{bottom:669.870000px;}
.y3_c00096{bottom:694.620000px;}
.y2_c00096{bottom:718.770000px;}
.y1_c00096{bottom:743.820000px;}
.h4_c00096{height:13.200073px;}
.h5_c00096{height:43.804688px;}
.h2_c00096{height:50.028809px;}
.h3_c00096{height:91.160156px;}
.h0_c00096{height:789.450000px;}
.h1_c00096{height:789.750000px;}
.w2_c00096{width:104.875500px;}
.w0_c00096{width:539.700000px;}
.w1_c00096{width:540.000000px;}
.x0_c00096{left:0.000000px;}
.x8_c00096{left:33.750000px;}
.x7_c00096{left:35.100000px;}
.x6_c00096{left:36.150000px;}
.x5_c00096{left:37.200000px;}
.x3_c00096{left:38.550000px;}
.x2_c00096{left:40.500000px;}
.x4_c00096{left:64.800000px;}
.x1_c00096{left:159.600000px;}
.xa_c00096{left:221.664230px;}
.x9_c00096{left:259.200000px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls2_c00096{letter-spacing:0.000000pt;}
.ls0_c00096{letter-spacing:2.666667pt;}
.ls1_c00096{letter-spacing:5.880000pt;}
.ws0_c00096{word-spacing:-15.424000pt;}
.ws1_c00096{word-spacing:0.000000pt;}
._1b_c00096{margin-left:-9.562667pt;}
._d_c00096{margin-left:-7.168000pt;}
._12_c00096{margin-left:-6.208000pt;}
._b_c00096{margin-left:-4.992000pt;}
._9_c00096{margin-left:-3.392000pt;}
._c_c00096{margin-left:-2.112000pt;}
._e_c00096{margin-left:-1.088000pt;}
._8_c00096{width:1.344000pt;}
._a_c00096{width:2.432000pt;}
._f_c00096{width:3.968000pt;}
._13_c00096{width:4.928000pt;}
._16_c00096{width:6.272000pt;}
._10_c00096{width:7.488000pt;}
._14_c00096{width:8.960000pt;}
._5_c00096{width:9.882667pt;}
._17_c00096{width:11.264000pt;}
._1_c00096{width:12.920000pt;}
._1a_c00096{width:14.720000pt;}
._2_c00096{width:17.453333pt;}
._3_c00096{width:18.722667pt;}
._1e_c00096{width:19.954667pt;}
._6_c00096{width:21.261333pt;}
._4_c00096{width:22.168000pt;}
._18_c00096{width:23.104000pt;}
._0_c00096{width:24.026667pt;}
._19_c00096{width:27.968000pt;}
._11_c00096{width:29.824000pt;}
._1f_c00096{width:31.552000pt;}
._1c_c00096{width:33.088000pt;}
._1d_c00096{width:34.176000pt;}
._20_c00096{width:161.792000pt;}
._15_c00096{width:246.272000pt;}
._7_c00096{width:326.717333pt;}
.fs3_c00096{font-size:42.666667pt;}
.fs0_c00096{font-size:45.333333pt;}
.fs2_c00096{font-size:61.333333pt;}
.fs1_c00096{font-size:64.000000pt;}
.y0_c00096{bottom:0.000000pt;}
.y1f_c00096{bottom:2.760000pt;}
.y1e_c00096{bottom:6.425217pt;}
.y1d_c00096{bottom:49.840000pt;}
.y1c_c00096{bottom:73.706667pt;}
.y1b_c00096{bottom:95.706667pt;}
.y1a_c00096{bottom:118.240000pt;}
.y19_c00096{bottom:139.840000pt;}
.y18_c00096{bottom:162.240000pt;}
.y17_c00096{bottom:183.840000pt;}
.y16_c00096{bottom:205.706667pt;}
.y15_c00096{bottom:227.973333pt;}
.y14_c00096{bottom:247.840000pt;}
.y13_c00096{bottom:269.440000pt;}
.y12_c00096{bottom:290.373333pt;}
.y11_c00096{bottom:312.506667pt;}
.y10_c00096{bottom:334.240000pt;}
.yf_c00096{bottom:355.840000pt;}
.ye_c00096{bottom:377.973333pt;}
.yd_c00096{bottom:399.573333pt;}
.yc_c00096{bottom:421.706667pt;}
.yb_c00096{bottom:442.773333pt;}
.ya_c00096{bottom:464.640000pt;}
.y9_c00096{bottom:486.506667pt;}
.y8_c00096{bottom:508.773333pt;}
.y7_c00096{bottom:530.373333pt;}
.y6_c00096{bottom:551.973333pt;}
.y5_c00096{bottom:573.573333pt;}
.y4_c00096{bottom:595.440000pt;}
.y3_c00096{bottom:617.440000pt;}
.y2_c00096{bottom:638.906667pt;}
.y1_c00096{bottom:661.173333pt;}
.h4_c00096{height:11.733399pt;}
.h5_c00096{height:38.937500pt;}
.h2_c00096{height:44.470052pt;}
.h3_c00096{height:81.031250pt;}
.h0_c00096{height:701.733333pt;}
.h1_c00096{height:702.000000pt;}
.w2_c00096{width:93.222667pt;}
.w0_c00096{width:479.733333pt;}
.w1_c00096{width:480.000000pt;}
.x0_c00096{left:0.000000pt;}
.x8_c00096{left:30.000000pt;}
.x7_c00096{left:31.200000pt;}
.x6_c00096{left:32.133333pt;}
.x5_c00096{left:33.066667pt;}
.x3_c00096{left:34.266667pt;}
.x2_c00096{left:36.000000pt;}
.x4_c00096{left:57.600000pt;}
.x1_c00096{left:141.866667pt;}
.xa_c00096{left:197.034871pt;}
.x9_c00096{left:230.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c84e64462897415930efbba2.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00097;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00097;src:url('chunks/assets/font_32385d68f6613d39deef3ed7.woff2')format("woff");}.ff3_c00097{font-family:ff3_c00097;line-height:1.568848;font-style:normal;font-weight:normal;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_3afdbe3b4241af10f65fd4fd.woff2')format("woff");}.ff4_c00097{font-family:ff4_c00097;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00097{font-family:ff5_c00097;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00097{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00097{vertical-align:0.000000px;}
.ls2_c00097{letter-spacing:0.000000px;}
.ls1_c00097{letter-spacing:3.000000px;}
.ls0_c00097{letter-spacing:5.829000px;}
.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:-20.352000px;}
.ws0_c00097{word-spacing:-17.352000px;}
.ws2_c00097{word-spacing:0.000000px;}
._3_c00097{margin-left:-11.508000px;}
._12_c00097{margin-left:-9.912000px;}
._f_c00097{margin-left:-7.668000px;}
._d_c00097{margin-left:-6.096000px;}
._11_c00097{margin-left:-5.076000px;}
._8_c00097{margin-left:-3.912000px;}
._7_c00097{margin-left:-2.760000px;}
._5_c00097{margin-left:-1.512000px;}
._c_c00097{width:1.164000px;}
._1_c00097{width:2.184000px;}
._2_c00097{width:3.612000px;}
._0_c00097{width:5.040000px;}
._a_c00097{width:6.456000px;}
._b_c00097{width:7.584000px;}
._4_c00097{width:9.564000px;}
._6_c00097{width:11.088000px;}
._e_c00097{width:12.504000px;}
._14_c00097{width:13.680000px;}
._9_c00097{width:15.120000px;}
._13_c00097{width:16.776000px;}
._10_c00097{width:22.608000px;}
._16_c00097{width:24.084000px;}
._17_c00097{width:27.780000px;}
._15_c00097{width:30.960000px;}
._19_c00097{width:32.412000px;}
._18_c00097{width:38.088000px;}
.fc2_c00097{color:transparent;}
.fc1_c00097{color:rgb(128,128,128);}
.fc0_c00097{color:rgb(0,0,0);}
.fs3_c00097{font-size:48.000000px;}
.fs2_c00097{font-size:69.000000px;}
.fs1_c00097{font-size:72.000000px;}
.fs0_c00097{font-size:84.000000px;}
.y0_c00097{bottom:0.000000px;}
.y1f_c00097{bottom:3.105000px;}
.y1e_c00097{bottom:7.228371px;}
.y1d_c00097{bottom:53.415000px;}
.y1c_c00097{bottom:77.415000px;}
.y1b_c00097{bottom:102.915000px;}
.y1a_c00097{bottom:130.065000px;}
.y19_c00097{bottom:154.365000px;}
.y18_c00097{bottom:178.665000px;}
.y17_c00097{bottom:203.265000px;}
.y16_c00097{bottom:228.615000px;}
.y15_c00097{bottom:253.515000px;}
.y14_c00097{bottom:278.415000px;}
.y13_c00097{bottom:303.465000px;}
.y12_c00097{bottom:328.665000px;}
.y11_c00097{bottom:352.815000px;}
.y10_c00097{bottom:376.965000px;}
.yf_c00097{bottom:402.315000px;}
.ye_c00097{bottom:426.615000px;}
.yd_c00097{bottom:451.215000px;}
.yc_c00097{bottom:475.065000px;}
.yb_c00097{bottom:499.965000px;}
.ya_c00097{bottom:524.865000px;}
.y9_c00097{bottom:549.765000px;}
.y8_c00097{bottom:574.215000px;}
.y7_c00097{bottom:599.115000px;}
.y6_c00097{bottom:623.415000px;}
.y5_c00097{bottom:647.715000px;}
.y4_c00097{bottom:672.615000px;}
.y3_c00097{bottom:696.315000px;}
.y2_c00097{bottom:721.365000px;}
.y1_c00097{bottom:746.865000px;}
.h4_c00097{height:13.200074px;}
.h5_c00097{height:43.804688px;}
.h2_c00097{height:82.441406px;}
.h3_c00097{height:91.160156px;}
.h0_c00097{height:785.175000px;}
.h1_c00097{height:785.250000px;}
.w2_c00097{width:104.875500px;}
.w1_c00097{width:539.250000px;}
.w0_c00097{width:539.475000px;}
.x0_c00097{left:0.000000px;}
.x9_c00097{left:60.450000px;}
.x2_c00097{left:129.600000px;}
.x3_c00097{left:130.650000px;}
.x4_c00097{left:132.300000px;}
.x5_c00097{left:133.350000px;}
.x6_c00097{left:134.700000px;}
.x7_c00097{left:135.900000px;}
.x8_c00097{left:137.700000px;}
.xa_c00097{left:141.300000px;}
.xc_c00097{left:221.551758px;}
.x1_c00097{left:240.600000px;}
.xb_c00097{left:471.150000px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls2_c00097{letter-spacing:0.000000pt;}
.ls1_c00097{letter-spacing:2.666667pt;}
.ls0_c00097{letter-spacing:5.181333pt;}
.ws1_c00097{word-spacing:-18.090667pt;}
.ws0_c00097{word-spacing:-15.424000pt;}
.ws2_c00097{word-spacing:0.000000pt;}
._3_c00097{margin-left:-10.229333pt;}
._12_c00097{margin-left:-8.810667pt;}
._f_c00097{margin-left:-6.816000pt;}
._d_c00097{margin-left:-5.418667pt;}
._11_c00097{margin-left:-4.512000pt;}
._8_c00097{margin-left:-3.477333pt;}
._7_c00097{margin-left:-2.453333pt;}
._5_c00097{margin-left:-1.344000pt;}
._c_c00097{width:1.034667pt;}
._1_c00097{width:1.941333pt;}
._2_c00097{width:3.210667pt;}
._0_c00097{width:4.480000pt;}
._a_c00097{width:5.738667pt;}
._b_c00097{width:6.741333pt;}
._4_c00097{width:8.501333pt;}
._6_c00097{width:9.856000pt;}
._e_c00097{width:11.114667pt;}
._14_c00097{width:12.160000pt;}
._9_c00097{width:13.440000pt;}
._13_c00097{width:14.912000pt;}
._10_c00097{width:20.096000pt;}
._16_c00097{width:21.408000pt;}
._17_c00097{width:24.693333pt;}
._15_c00097{width:27.520000pt;}
._19_c00097{width:28.810667pt;}
._18_c00097{width:33.856000pt;}
.fs3_c00097{font-size:42.666667pt;}
.fs2_c00097{font-size:61.333333pt;}
.fs1_c00097{font-size:64.000000pt;}
.fs0_c00097{font-size:74.666667pt;}
.y0_c00097{bottom:0.000000pt;}
.y1f_c00097{bottom:2.760000pt;}
.y1e_c00097{bottom:6.425219pt;}
.y1d_c00097{bottom:47.480000pt;}
.y1c_c00097{bottom:68.813333pt;}
.y1b_c00097{bottom:91.480000pt;}
.y1a_c00097{bottom:115.613333pt;}
.y19_c00097{bottom:137.213333pt;}
.y18_c00097{bottom:158.813333pt;}
.y17_c00097{bottom:180.680000pt;}
.y16_c00097{bottom:203.213333pt;}
.y15_c00097{bottom:225.346667pt;}
.y14_c00097{bottom:247.480000pt;}
.y13_c00097{bottom:269.746667pt;}
.y12_c00097{bottom:292.146667pt;}
.y11_c00097{bottom:313.613333pt;}
.y10_c00097{bottom:335.080000pt;}
.yf_c00097{bottom:357.613333pt;}
.ye_c00097{bottom:379.213333pt;}
.yd_c00097{bottom:401.080000pt;}
.yc_c00097{bottom:422.280000pt;}
.yb_c00097{bottom:444.413333pt;}
.ya_c00097{bottom:466.546667pt;}
.y9_c00097{bottom:488.680000pt;}
.y8_c00097{bottom:510.413333pt;}
.y7_c00097{bottom:532.546667pt;}
.y6_c00097{bottom:554.146667pt;}
.y5_c00097{bottom:575.746667pt;}
.y4_c00097{bottom:597.880000pt;}
.y3_c00097{bottom:618.946667pt;}
.y2_c00097{bottom:641.213333pt;}
.y1_c00097{bottom:663.880000pt;}
.h4_c00097{height:11.733399pt;}
.h5_c00097{height:38.937500pt;}
.h2_c00097{height:73.281250pt;}
.h3_c00097{height:81.031250pt;}
.h0_c00097{height:697.933333pt;}
.h1_c00097{height:698.000000pt;}
.w2_c00097{width:93.222667pt;}
.w1_c00097{width:479.333333pt;}
.w0_c00097{width:479.533333pt;}
.x0_c00097{left:0.000000pt;}
.x9_c00097{left:53.733333pt;}
.x2_c00097{left:115.200000pt;}
.x3_c00097{left:116.133333pt;}
.x4_c00097{left:117.600000pt;}
.x5_c00097{left:118.533333pt;}
.x6_c00097{left:119.733333pt;}
.x7_c00097{left:120.800000pt;}
.x8_c00097{left:122.400000pt;}
.xa_c00097{left:125.600000pt;}
.xc_c00097{left:196.934896pt;}
.x1_c00097{left:213.866667pt;}
.xb_c00097{left:418.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_38ff3450d503b6f2d9bc8dd9.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.480469;font-style:normal;font-weight:normal;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_e159d0c7f3b861f1ec504b49.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00098;src:url('chunks/assets/font_43daa6b4d9f52e1a541cb256.woff2')format("woff");}.ff3_c00098{font-family:ff3_c00098;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00098;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00098{font-family:ff4_c00098;line-height:1.219238;font-style: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;}
.ls3_c00098{letter-spacing:0.000000px;}
.ls1_c00098{letter-spacing:3.000000px;}
.ls2_c00098{letter-spacing:7.146000px;}
.ls0_c00098{letter-spacing:351.048000px;}
.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:-33.192000px;}
.ws2_c00098{word-spacing:-20.352000px;}
.ws1_c00098{word-spacing:-16.629000px;}
.ws3_c00098{word-spacing:0.000000px;}
._11_c00098{margin-left:-10.620000px;}
._10_c00098{margin-left:-9.600000px;}
._c_c00098{margin-left:-7.602000px;}
._12_c00098{margin-left:-6.480000px;}
._b_c00098{margin-left:-4.824000px;}
._d_c00098{margin-left:-3.816000px;}
._9_c00098{margin-left:-2.712000px;}
._7_c00098{margin-left:-1.008000px;}
._8_c00098{width:1.728000px;}
._4_c00098{width:3.456000px;}
._5_c00098{width:4.584000px;}
._1_c00098{width:5.688000px;}
._2_c00098{width:7.128000px;}
._15_c00098{width:8.136000px;}
._0_c00098{width:9.432000px;}
._3_c00098{width:10.944000px;}
._e_c00098{width:12.168000px;}
._6_c00098{width:13.218000px;}
._a_c00098{width:14.958000px;}
._f_c00098{width:17.064000px;}
._16_c00098{width:18.792000px;}
._14_c00098{width:22.824000px;}
._13_c00098{width:33.090000px;}
._17_c00098{width:34.632000px;}
._18_c00098{width:318.042000px;}
.fc2_c00098{color:transparent;}
.fc1_c00098{color:rgb(128,128,128);}
.fc0_c00098{color:rgb(0,0,0);}
.fs3_c00098{font-size:48.000000px;}
.fs1_c00098{font-size:69.000000px;}
.fs0_c00098{font-size:72.000000px;}
.fs2_c00098{font-size:81.000000px;}
.y0_c00098{bottom:0.000000px;}
.y1f_c00098{bottom:3.105000px;}
.y1e_c00098{bottom:7.228371px;}
.y1d_c00098{bottom:51.765000px;}
.y1c_c00098{bottom:76.965000px;}
.y1b_c00098{bottom:103.665000px;}
.y1a_c00098{bottom:127.965000px;}
.y19_c00098{bottom:150.315000px;}
.y18_c00098{bottom:178.515000px;}
.y17_c00098{bottom:202.965000px;}
.y16_c00098{bottom:226.215000px;}
.y15_c00098{bottom:252.465000px;}
.y14_c00098{bottom:276.165000px;}
.y13_c00098{bottom:297.765000px;}
.y12_c00098{bottom:322.965000px;}
.y11_c00098{bottom:346.965000px;}
.y10_c00098{bottom:371.715000px;}
.yf_c00098{bottom:396.615000px;}
.ye_c00098{bottom:421.215000px;}
.yd_c00098{bottom:445.515000px;}
.yc_c00098{bottom:469.815000px;}
.yb_c00098{bottom:494.565000px;}
.ya_c00098{bottom:519.165000px;}
.y9_c00098{bottom:543.015000px;}
.y8_c00098{bottom:567.765000px;}
.y7_c00098{bottom:593.115000px;}
.y6_c00098{bottom:616.965000px;}
.y5_c00098{bottom:641.265000px;}
.y4_c00098{bottom:666.015000px;}
.y3_c00098{bottom:690.615000px;}
.y2_c00098{bottom:715.215000px;}
.y1_c00098{bottom:741.165000px;}
.h3_c00098{height:13.200074px;}
.h4_c00098{height:43.804688px;}
.h2_c00098{height:91.160156px;}
.h0_c00098{height:786.525000px;}
.h1_c00098{height:786.750000px;}
.w2_c00098{width:104.875500px;}
.w1_c00098{width:536.250000px;}
.w0_c00098{width:536.475000px;}
.x0_c00098{left:0.000000px;}
.x4_c00098{left:29.100000px;}
.x2_c00098{left:31.650000px;}
.x3_c00098{left:32.700000px;}
.x5_c00098{left:34.500000px;}
.x1_c00098{left:150.600000px;}
.x7_c00098{left:220.051758px;}
.x6_c00098{left:259.650000px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls3_c00098{letter-spacing:0.000000pt;}
.ls1_c00098{letter-spacing:2.666667pt;}
.ls2_c00098{letter-spacing:6.352000pt;}
.ls0_c00098{letter-spacing:312.042667pt;}
.ws0_c00098{word-spacing:-29.504000pt;}
.ws2_c00098{word-spacing:-18.090667pt;}
.ws1_c00098{word-spacing:-14.781333pt;}
.ws3_c00098{word-spacing:0.000000pt;}
._11_c00098{margin-left:-9.440000pt;}
._10_c00098{margin-left:-8.533333pt;}
._c_c00098{margin-left:-6.757333pt;}
._12_c00098{margin-left:-5.760000pt;}
._b_c00098{margin-left:-4.288000pt;}
._d_c00098{margin-left:-3.392000pt;}
._9_c00098{margin-left:-2.410667pt;}
._7_c00098{margin-left:-0.896000pt;}
._8_c00098{width:1.536000pt;}
._4_c00098{width:3.072000pt;}
._5_c00098{width:4.074667pt;}
._1_c00098{width:5.056000pt;}
._2_c00098{width:6.336000pt;}
._15_c00098{width:7.232000pt;}
._0_c00098{width:8.384000pt;}
._3_c00098{width:9.728000pt;}
._e_c00098{width:10.816000pt;}
._6_c00098{width:11.749333pt;}
._a_c00098{width:13.296000pt;}
._f_c00098{width:15.168000pt;}
._16_c00098{width:16.704000pt;}
._14_c00098{width:20.288000pt;}
._13_c00098{width:29.413333pt;}
._17_c00098{width:30.784000pt;}
._18_c00098{width:282.704000pt;}
.fs3_c00098{font-size:42.666667pt;}
.fs1_c00098{font-size:61.333333pt;}
.fs0_c00098{font-size:64.000000pt;}
.fs2_c00098{font-size:72.000000pt;}
.y0_c00098{bottom:0.000000pt;}
.y1f_c00098{bottom:2.760000pt;}
.y1e_c00098{bottom:6.425219pt;}
.y1d_c00098{bottom:46.013333pt;}
.y1c_c00098{bottom:68.413333pt;}
.y1b_c00098{bottom:92.146667pt;}
.y1a_c00098{bottom:113.746667pt;}
.y19_c00098{bottom:133.613333pt;}
.y18_c00098{bottom:158.680000pt;}
.y17_c00098{bottom:180.413333pt;}
.y16_c00098{bottom:201.080000pt;}
.y15_c00098{bottom:224.413333pt;}
.y14_c00098{bottom:245.480000pt;}
.y13_c00098{bottom:264.680000pt;}
.y12_c00098{bottom:287.080000pt;}
.y11_c00098{bottom:308.413333pt;}
.y10_c00098{bottom:330.413333pt;}
.yf_c00098{bottom:352.546667pt;}
.ye_c00098{bottom:374.413333pt;}
.yd_c00098{bottom:396.013333pt;}
.yc_c00098{bottom:417.613333pt;}
.yb_c00098{bottom:439.613333pt;}
.ya_c00098{bottom:461.480000pt;}
.y9_c00098{bottom:482.680000pt;}
.y8_c00098{bottom:504.680000pt;}
.y7_c00098{bottom:527.213333pt;}
.y6_c00098{bottom:548.413333pt;}
.y5_c00098{bottom:570.013333pt;}
.y4_c00098{bottom:592.013333pt;}
.y3_c00098{bottom:613.880000pt;}
.y2_c00098{bottom:635.746667pt;}
.y1_c00098{bottom:658.813333pt;}
.h3_c00098{height:11.733399pt;}
.h4_c00098{height:38.937500pt;}
.h2_c00098{height:81.031250pt;}
.h0_c00098{height:699.133333pt;}
.h1_c00098{height:699.333333pt;}
.w2_c00098{width:93.222667pt;}
.w1_c00098{width:476.666667pt;}
.w0_c00098{width:476.866667pt;}
.x0_c00098{left:0.000000pt;}
.x4_c00098{left:25.866667pt;}
.x2_c00098{left:28.133333pt;}
.x3_c00098{left:29.066667pt;}
.x5_c00098{left:30.666667pt;}
.x1_c00098{left:133.866667pt;}
.x7_c00098{left:195.601563pt;}
.x6_c00098{left:230.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_91040d292fa45de96f742541.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.480469;font-style:normal;font-weight:normal;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_3bb2542bd09252797b1874dc.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00099{vertical-align:0.000000px;}
.ls1_c00099{letter-spacing:0.000000px;}
.ls0_c00099{letter-spacing:3.000000px;}
.sc__c00099{text-shadow:none;}
.sc0_c00099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00099{-webkit-text-stroke:0px transparent;}
.sc0_c00099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00099{word-spacing:-20.352000px;}
.ws0_c00099{word-spacing:-17.352000px;}
.ws1_c00099{word-spacing:-16.629000px;}
.ws3_c00099{word-spacing:0.000000px;}
._d_c00099{margin-left:-14.562000px;}
._4_c00099{margin-left:-12.606000px;}
._8_c00099{margin-left:-11.088000px;}
._b_c00099{margin-left:-9.642000px;}
._e_c00099{margin-left:-8.316000px;}
._7_c00099{margin-left:-6.264000px;}
._a_c00099{margin-left:-4.968000px;}
._c_c00099{margin-left:-3.942000px;}
._9_c00099{margin-left:-2.304000px;}
._f_c00099{margin-left:-1.296000px;}
._6_c00099{width:1.800000px;}
._10_c00099{width:2.988000px;}
._1_c00099{width:4.092000px;}
._5_c00099{width:5.940000px;}
._3_c00099{width:7.326000px;}
._2_c00099{width:8.382000px;}
._13_c00099{width:9.414000px;}
._0_c00099{width:10.890000px;}
._11_c00099{width:12.864000px;}
._12_c00099{width:14.688000px;}
._14_c00099{width:16.332000px;}
._17_c00099{width:22.824000px;}
._15_c00099{width:29.232000px;}
._18_c00099{width:48.480000px;}
._16_c00099{width:147.207000px;}
.fc2_c00099{color:transparent;}
.fc1_c00099{color:rgb(128,128,128);}
.fc0_c00099{color:rgb(0,0,0);}
.fs4_c00099{font-size:48.000000px;}
.fs2_c00099{font-size:51.000000px;}
.fs0_c00099{font-size:66.000000px;}
.fs3_c00099{font-size:69.000000px;}
.fs1_c00099{font-size:72.000000px;}
.y0_c00099{bottom:0.000000px;}
.y1f_c00099{bottom:3.105000px;}
.y1e_c00099{bottom:7.228369px;}
.y1d_c00099{bottom:52.920000px;}
.y1c_c00099{bottom:78.270000px;}
.y1b_c00099{bottom:100.920000px;}
.y1a_c00099{bottom:127.170000px;}
.y19_c00099{bottom:151.470000px;}
.y18_c00099{bottom:176.070000px;}
.y17_c00099{bottom:200.370000px;}
.y16_c00099{bottom:226.470000px;}
.y15_c00099{bottom:250.020000px;}
.y14_c00099{bottom:274.770000px;}
.y13_c00099{bottom:298.620000px;}
.y12_c00099{bottom:322.920000px;}
.y11_c00099{bottom:347.670000px;}
.y10_c00099{bottom:371.970000px;}
.yf_c00099{bottom:396.120000px;}
.ye_c00099{bottom:421.170000px;}
.yd_c00099{bottom:445.170000px;}
.yc_c00099{bottom:469.770000px;}
.yb_c00099{bottom:494.370000px;}
.ya_c00099{bottom:518.670000px;}
.y9_c00099{bottom:542.370000px;}
.y8_c00099{bottom:568.020000px;}
.y7_c00099{bottom:591.570000px;}
.y6_c00099{bottom:616.920000px;}
.y5_c00099{bottom:640.620000px;}
.y4_c00099{bottom:665.220000px;}
.y3_c00099{bottom:689.520000px;}
.y2_c00099{bottom:714.420000px;}
.y1_c00099{bottom:739.770000px;}
.h4_c00099{height:13.200073px;}
.h5_c00099{height:43.804688px;}
.h2_c00099{height:83.563477px;}
.h3_c00099{height:91.160156px;}
.h1_c00099{height:790.500000px;}
.h0_c00099{height:790.800000px;}
.w1_c00099{width:104.875500px;}
.w0_c00099{width:530.250000px;}
.x0_c00099{left:0.000000px;}
.x7_c00099{left:46.500000px;}
.x6_c00099{left:122.400000px;}
.x5_c00099{left:124.500000px;}
.x4_c00099{left:126.450000px;}
.x3_c00099{left:127.500000px;}
.x2_c00099{left:128.550000px;}
.x9_c00099{left:216.939240px;}
.x1_c00099{left:250.350000px;}
.x8_c00099{left:474.900000px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls1_c00099{letter-spacing:0.000000pt;}
.ls0_c00099{letter-spacing:2.666667pt;}
.ws2_c00099{word-spacing:-18.090667pt;}
.ws0_c00099{word-spacing:-15.424000pt;}
.ws1_c00099{word-spacing:-14.781333pt;}
.ws3_c00099{word-spacing:0.000000pt;}
._d_c00099{margin-left:-12.944000pt;}
._4_c00099{margin-left:-11.205333pt;}
._8_c00099{margin-left:-9.856000pt;}
._b_c00099{margin-left:-8.570667pt;}
._e_c00099{margin-left:-7.392000pt;}
._7_c00099{margin-left:-5.568000pt;}
._a_c00099{margin-left:-4.416000pt;}
._c_c00099{margin-left:-3.504000pt;}
._9_c00099{margin-left:-2.048000pt;}
._f_c00099{margin-left:-1.152000pt;}
._6_c00099{width:1.600000pt;}
._10_c00099{width:2.656000pt;}
._1_c00099{width:3.637333pt;}
._5_c00099{width:5.280000pt;}
._3_c00099{width:6.512000pt;}
._2_c00099{width:7.450667pt;}
._13_c00099{width:8.368000pt;}
._0_c00099{width:9.680000pt;}
._11_c00099{width:11.434667pt;}
._12_c00099{width:13.056000pt;}
._14_c00099{width:14.517333pt;}
._17_c00099{width:20.288000pt;}
._15_c00099{width:25.984000pt;}
._18_c00099{width:43.093333pt;}
._16_c00099{width:130.850667pt;}
.fs4_c00099{font-size:42.666667pt;}
.fs2_c00099{font-size:45.333333pt;}
.fs0_c00099{font-size:58.666667pt;}
.fs3_c00099{font-size:61.333333pt;}
.fs1_c00099{font-size:64.000000pt;}
.y0_c00099{bottom:0.000000pt;}
.y1f_c00099{bottom:2.760000pt;}
.y1e_c00099{bottom:6.425217pt;}
.y1d_c00099{bottom:47.040000pt;}
.y1c_c00099{bottom:69.573333pt;}
.y1b_c00099{bottom:89.706667pt;}
.y1a_c00099{bottom:113.040000pt;}
.y19_c00099{bottom:134.640000pt;}
.y18_c00099{bottom:156.506667pt;}
.y17_c00099{bottom:178.106667pt;}
.y16_c00099{bottom:201.306667pt;}
.y15_c00099{bottom:222.240000pt;}
.y14_c00099{bottom:244.240000pt;}
.y13_c00099{bottom:265.440000pt;}
.y12_c00099{bottom:287.040000pt;}
.y11_c00099{bottom:309.040000pt;}
.y10_c00099{bottom:330.640000pt;}
.yf_c00099{bottom:352.106667pt;}
.ye_c00099{bottom:374.373333pt;}
.yd_c00099{bottom:395.706667pt;}
.yc_c00099{bottom:417.573333pt;}
.yb_c00099{bottom:439.440000pt;}
.ya_c00099{bottom:461.040000pt;}
.y9_c00099{bottom:482.106667pt;}
.y8_c00099{bottom:504.906667pt;}
.y7_c00099{bottom:525.840000pt;}
.y6_c00099{bottom:548.373333pt;}
.y5_c00099{bottom:569.440000pt;}
.y4_c00099{bottom:591.306667pt;}
.y3_c00099{bottom:612.906667pt;}
.y2_c00099{bottom:635.040000pt;}
.y1_c00099{bottom:657.573333pt;}
.h4_c00099{height:11.733399pt;}
.h5_c00099{height:38.937500pt;}
.h2_c00099{height:74.278646pt;}
.h3_c00099{height:81.031250pt;}
.h1_c00099{height:702.666667pt;}
.h0_c00099{height:702.933333pt;}
.w1_c00099{width:93.222667pt;}
.w0_c00099{width:471.333333pt;}
.x0_c00099{left:0.000000pt;}
.x7_c00099{left:41.333333pt;}
.x6_c00099{left:108.800000pt;}
.x5_c00099{left:110.666667pt;}
.x4_c00099{left:112.400000pt;}
.x3_c00099{left:113.333333pt;}
.x2_c00099{left:114.266667pt;}
.x9_c00099{left:192.834880pt;}
.x1_c00099{left:222.533333pt;}
.x8_c00099{left:422.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_83dfca991b5bcee84e488fa9.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00100;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00100;src:url('chunks/assets/font_852dc3c09d2bbb42c5caff49.woff2')format("woff");}.ff3_c00100{font-family:ff3_c00100;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00100{font-family:ff4_c00100;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00100{vertical-align:0.000000px;}
.ls1_c00100{letter-spacing:0.000000px;}
.ls0_c00100{letter-spacing:3.000000px;}
.sc__c00100{text-shadow:none;}
.sc0_c00100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00100{-webkit-text-stroke:0px transparent;}
.sc0_c00100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00100{word-spacing:0.000000px;}
._10_c00100{margin-left:-8.796000px;}
._c_c00100{margin-left:-7.440000px;}
._d_c00100{margin-left:-6.168000px;}
._9_c00100{margin-left:-4.992000px;}
._a_c00100{margin-left:-3.936000px;}
._4_c00100{margin-left:-2.436000px;}
._7_c00100{margin-left:-1.392000px;}
._6_c00100{width:1.764000px;}
._5_c00100{width:3.192000px;}
._2_c00100{width:5.124000px;}
._8_c00100{width:6.336000px;}
._1_c00100{width:8.064000px;}
._3_c00100{width:9.324000px;}
._0_c00100{width:11.340000px;}
._b_c00100{width:13.692000px;}
._f_c00100{width:16.056000px;}
._e_c00100{width:17.928000px;}
.fc2_c00100{color:transparent;}
.fc1_c00100{color:rgb(128,128,128);}
.fc0_c00100{color:rgb(0,0,0);}
.fs2_c00100{font-size:48.000000px;}
.fs1_c00100{font-size:72.000000px;}
.fs0_c00100{font-size:84.000000px;}
.y0_c00100{bottom:0.000000px;}
.y1f_c00100{bottom:3.105000px;}
.y1e_c00100{bottom:7.228371px;}
.y1d_c00100{bottom:42.165000px;}
.y1c_c00100{bottom:67.965000px;}
.y1b_c00100{bottom:94.215000px;}
.y1a_c00100{bottom:118.815000px;}
.y19_c00100{bottom:143.865000px;}
.y18_c00100{bottom:167.715000px;}
.y17_c00100{bottom:193.065000px;}
.y16_c00100{bottom:218.415000px;}
.y15_c00100{bottom:243.315000px;}
.y14_c00100{bottom:268.065000px;}
.y13_c00100{bottom:290.265000px;}
.y12_c00100{bottom:313.965000px;}
.y11_c00100{bottom:337.815000px;}
.y10_c00100{bottom:362.565000px;}
.yf_c00100{bottom:386.865000px;}
.ye_c00100{bottom:412.065000px;}
.yd_c00100{bottom:436.065000px;}
.yc_c00100{bottom:461.115000px;}
.yb_c00100{bottom:485.715000px;}
.ya_c00100{bottom:510.015000px;}
.y9_c00100{bottom:534.615000px;}
.y8_c00100{bottom:558.615000px;}
.y7_c00100{bottom:583.215000px;}
.y6_c00100{bottom:607.965000px;}
.y5_c00100{bottom:633.165000px;}
.y4_c00100{bottom:657.165000px;}
.y3_c00100{bottom:681.165000px;}
.y2_c00100{bottom:705.765000px;}
.y1_c00100{bottom:730.815000px;}
.h4_c00100{height:13.200074px;}
.h5_c00100{height:43.804688px;}
.h2_c00100{height:82.441406px;}
.h3_c00100{height:91.160156px;}
.h0_c00100{height:786.525000px;}
.h1_c00100{height:786.750000px;}
.w2_c00100{width:104.875500px;}
.w0_c00100{width:545.700000px;}
.w1_c00100{width:546.000000px;}
.x0_c00100{left:0.000000px;}
.x2_c00100{left:37.350000px;}
.x3_c00100{left:39.150000px;}
.x4_c00100{left:40.200000px;}
.x1_c00100{left:153.900000px;}
.x6_c00100{left:224.664230px;}
.x5_c00100{left:365.850000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls1_c00100{letter-spacing:0.000000pt;}
.ls0_c00100{letter-spacing:2.666667pt;}
.ws0_c00100{word-spacing:0.000000pt;}
._10_c00100{margin-left:-7.818667pt;}
._c_c00100{margin-left:-6.613333pt;}
._d_c00100{margin-left:-5.482667pt;}
._9_c00100{margin-left:-4.437333pt;}
._a_c00100{margin-left:-3.498667pt;}
._4_c00100{margin-left:-2.165333pt;}
._7_c00100{margin-left:-1.237333pt;}
._6_c00100{width:1.568000pt;}
._5_c00100{width:2.837333pt;}
._2_c00100{width:4.554667pt;}
._8_c00100{width:5.632000pt;}
._1_c00100{width:7.168000pt;}
._3_c00100{width:8.288000pt;}
._0_c00100{width:10.080000pt;}
._b_c00100{width:12.170667pt;}
._f_c00100{width:14.272000pt;}
._e_c00100{width:15.936000pt;}
.fs2_c00100{font-size:42.666667pt;}
.fs1_c00100{font-size:64.000000pt;}
.fs0_c00100{font-size:74.666667pt;}
.y0_c00100{bottom:0.000000pt;}
.y1f_c00100{bottom:2.760000pt;}
.y1e_c00100{bottom:6.425219pt;}
.y1d_c00100{bottom:37.480000pt;}
.y1c_c00100{bottom:60.413333pt;}
.y1b_c00100{bottom:83.746667pt;}
.y1a_c00100{bottom:105.613333pt;}
.y19_c00100{bottom:127.880000pt;}
.y18_c00100{bottom:149.080000pt;}
.y17_c00100{bottom:171.613333pt;}
.y16_c00100{bottom:194.146667pt;}
.y15_c00100{bottom:216.280000pt;}
.y14_c00100{bottom:238.280000pt;}
.y13_c00100{bottom:258.013333pt;}
.y12_c00100{bottom:279.080000pt;}
.y11_c00100{bottom:300.280000pt;}
.y10_c00100{bottom:322.280000pt;}
.yf_c00100{bottom:343.880000pt;}
.ye_c00100{bottom:366.280000pt;}
.yd_c00100{bottom:387.613333pt;}
.yc_c00100{bottom:409.880000pt;}
.yb_c00100{bottom:431.746667pt;}
.ya_c00100{bottom:453.346667pt;}
.y9_c00100{bottom:475.213333pt;}
.y8_c00100{bottom:496.546667pt;}
.y7_c00100{bottom:518.413333pt;}
.y6_c00100{bottom:540.413333pt;}
.y5_c00100{bottom:562.813333pt;}
.y4_c00100{bottom:584.146667pt;}
.y3_c00100{bottom:605.480000pt;}
.y2_c00100{bottom:627.346667pt;}
.y1_c00100{bottom:649.613333pt;}
.h4_c00100{height:11.733399pt;}
.h5_c00100{height:38.937500pt;}
.h2_c00100{height:73.281250pt;}
.h3_c00100{height:81.031250pt;}
.h0_c00100{height:699.133333pt;}
.h1_c00100{height:699.333333pt;}
.w2_c00100{width:93.222667pt;}
.w0_c00100{width:485.066667pt;}
.w1_c00100{width:485.333333pt;}
.x0_c00100{left:0.000000pt;}
.x2_c00100{left:33.200000pt;}
.x3_c00100{left:34.800000pt;}
.x4_c00100{left:35.733333pt;}
.x1_c00100{left:136.800000pt;}
.x6_c00100{left:199.701538pt;}
.x5_c00100{left:325.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_75d1c6b0e3d35d7ea0b64b1d.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.480469;font-style:normal;font-weight:normal;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_92efb1c80acc078cbb78a147.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:1.568848;font-style:normal;font-weight:normal;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_6aac95cc543dfb4431d6f5dd.woff2')format("woff");}.ff3_c00101{font-family:ff3_c00101;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00101;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00101{font-family:ff4_c00101;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00101{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00101{vertical-align:0.000000px;}
.ls3_c00101{letter-spacing:-6.000000px;}
.ls1_c00101{letter-spacing:0.000000px;}
.ls2_c00101{letter-spacing:3.000000px;}
.ls0_c00101{letter-spacing:403.278000px;}
.sc__c00101{text-shadow:none;}
.sc0_c00101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00101{-webkit-text-stroke:0px transparent;}
.sc0_c00101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00101{word-spacing:-43.500000px;}
.ws1_c00101{word-spacing:-17.352000px;}
.ws3_c00101{word-spacing:0.000000px;}
.ws0_c00101{word-spacing:0.840000px;}
._1d_c00101{margin-left:-17.892000px;}
._3_c00101{margin-left:-15.870000px;}
._1e_c00101{margin-left:-14.844000px;}
._1a_c00101{margin-left:-13.104000px;}
._1b_c00101{margin-left:-11.376000px;}
._1c_c00101{margin-left:-10.008000px;}
._d_c00101{margin-left:-8.928000px;}
._c_c00101{margin-left:-7.488000px;}
._1f_c00101{margin-left:-6.264000px;}
._7_c00101{margin-left:-5.184000px;}
._8_c00101{margin-left:-3.816000px;}
._5_c00101{margin-left:-2.376000px;}
._9_c00101{margin-left:-1.239000px;}
._6_c00101{width:1.872000px;}
._2_c00101{width:2.967000px;}
._1_c00101{width:4.071000px;}
._f_c00101{width:5.184000px;}
._0_c00101{width:6.210000px;}
._4_c00101{width:8.211000px;}
._e_c00101{width:9.633000px;}
._b_c00101{width:11.160000px;}
._12_c00101{width:13.482000px;}
._13_c00101{width:15.525000px;}
._a_c00101{width:18.360000px;}
._11_c00101{width:21.252000px;}
._10_c00101{width:22.848000px;}
._15_c00101{width:64.425000px;}
._16_c00101{width:83.688000px;}
._19_c00101{width:92.736000px;}
._17_c00101{width:102.390000px;}
._14_c00101{width:271.866000px;}
._18_c00101{width:312.492000px;}
.fc2_c00101{color:transparent;}
.fc1_c00101{color:rgb(128,128,128);}
.fc0_c00101{color:rgb(0,0,0);}
.fs2_c00101{font-size:42.000000px;}
.fs4_c00101{font-size:48.000000px;}
.fs0_c00101{font-size:69.000000px;}
.fs1_c00101{font-size:72.000000px;}
.fs3_c00101{font-size:81.000000px;}
.y0_c00101{bottom:0.000000px;}
.y20_c00101{bottom:3.105000px;}
.y1f_c00101{bottom:7.228357px;}
.y1e_c00101{bottom:37.830000px;}
.y1d_c00101{bottom:65.430000px;}
.y1c_c00101{bottom:90.480000px;}
.y1b_c00101{bottom:115.830000px;}
.y1a_c00101{bottom:140.130000px;}
.y19_c00101{bottom:166.380000px;}
.y18_c00101{bottom:191.430000px;}
.y17_c00101{bottom:215.430000px;}
.y16_c00101{bottom:240.930000px;}
.y15_c00101{bottom:265.380000px;}
.y14_c00101{bottom:289.980000px;}
.y13_c00101{bottom:314.880000px;}
.y12_c00101{bottom:339.630000px;}
.y11_c00101{bottom:363.930000px;}
.y10_c00101{bottom:388.530000px;}
.yf_c00101{bottom:413.430000px;}
.ye_c00101{bottom:438.030000px;}
.yd_c00101{bottom:461.130000px;}
.yc_c00101{bottom:475.230000px;}
.yb_c00101{bottom:489.330000px;}
.ya_c00101{bottom:511.680000px;}
.y9_c00101{bottom:536.730000px;}
.y8_c00101{bottom:561.930000px;}
.y7_c00101{bottom:585.630000px;}
.y6_c00101{bottom:610.530000px;}
.y5_c00101{bottom:634.830000px;}
.y4_c00101{bottom:659.880000px;}
.y3_c00101{bottom:684.480000px;}
.y2_c00101{bottom:708.780000px;}
.y1_c00101{bottom:735.180000px;}
.h6_c00101{height:13.200074px;}
.h7_c00101{height:43.804688px;}
.h4_c00101{height:53.176758px;}
.h5_c00101{height:79.497070px;}
.h2_c00101{height:87.361816px;}
.h3_c00101{height:91.160156px;}
.h1_c00101{height:784.500000px;}
.h0_c00101{height:784.650000px;}
.w2_c00101{width:104.875500px;}
.w0_c00101{width:532.200000px;}
.w1_c00101{width:532.500000px;}
.x0_c00101{left:0.000000px;}
.x5_c00101{left:45.600000px;}
.x4_c00101{left:118.350000px;}
.x6_c00101{left:120.450000px;}
.x3_c00101{left:122.100000px;}
.x2_c00101{left:123.300000px;}
.x8_c00101{left:217.914230px;}
.x1_c00101{left:235.950000px;}
.x7_c00101{left:455.700000px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls3_c00101{letter-spacing:-5.333333pt;}
.ls1_c00101{letter-spacing:0.000000pt;}
.ls2_c00101{letter-spacing:2.666667pt;}
.ls0_c00101{letter-spacing:358.469333pt;}
.ws2_c00101{word-spacing:-38.666667pt;}
.ws1_c00101{word-spacing:-15.424000pt;}
.ws3_c00101{word-spacing:0.000000pt;}
.ws0_c00101{word-spacing:0.746667pt;}
._1d_c00101{margin-left:-15.904000pt;}
._3_c00101{margin-left:-14.106667pt;}
._1e_c00101{margin-left:-13.194667pt;}
._1a_c00101{margin-left:-11.648000pt;}
._1b_c00101{margin-left:-10.112000pt;}
._1c_c00101{margin-left:-8.896000pt;}
._d_c00101{margin-left:-7.936000pt;}
._c_c00101{margin-left:-6.656000pt;}
._1f_c00101{margin-left:-5.568000pt;}
._7_c00101{margin-left:-4.608000pt;}
._8_c00101{margin-left:-3.392000pt;}
._5_c00101{margin-left:-2.112000pt;}
._9_c00101{margin-left:-1.101333pt;}
._6_c00101{width:1.664000pt;}
._2_c00101{width:2.637333pt;}
._1_c00101{width:3.618667pt;}
._f_c00101{width:4.608000pt;}
._0_c00101{width:5.520000pt;}
._4_c00101{width:7.298667pt;}
._e_c00101{width:8.562667pt;}
._b_c00101{width:9.920000pt;}
._12_c00101{width:11.984000pt;}
._13_c00101{width:13.800000pt;}
._a_c00101{width:16.320000pt;}
._11_c00101{width:18.890667pt;}
._10_c00101{width:20.309333pt;}
._15_c00101{width:57.266667pt;}
._16_c00101{width:74.389333pt;}
._19_c00101{width:82.432000pt;}
._17_c00101{width:91.013333pt;}
._14_c00101{width:241.658667pt;}
._18_c00101{width:277.770667pt;}
.fs2_c00101{font-size:37.333333pt;}
.fs4_c00101{font-size:42.666667pt;}
.fs0_c00101{font-size:61.333333pt;}
.fs1_c00101{font-size:64.000000pt;}
.fs3_c00101{font-size:72.000000pt;}
.y0_c00101{bottom:0.000000pt;}
.y20_c00101{bottom:2.760000pt;}
.y1f_c00101{bottom:6.425206pt;}
.y1e_c00101{bottom:33.626667pt;}
.y1d_c00101{bottom:58.160000pt;}
.y1c_c00101{bottom:80.426667pt;}
.y1b_c00101{bottom:102.960000pt;}
.y1a_c00101{bottom:124.560000pt;}
.y19_c00101{bottom:147.893333pt;}
.y18_c00101{bottom:170.160000pt;}
.y17_c00101{bottom:191.493333pt;}
.y16_c00101{bottom:214.160000pt;}
.y15_c00101{bottom:235.893333pt;}
.y14_c00101{bottom:257.760000pt;}
.y13_c00101{bottom:279.893333pt;}
.y12_c00101{bottom:301.893333pt;}
.y11_c00101{bottom:323.493333pt;}
.y10_c00101{bottom:345.360000pt;}
.yf_c00101{bottom:367.493333pt;}
.ye_c00101{bottom:389.360000pt;}
.yd_c00101{bottom:409.893333pt;}
.yc_c00101{bottom:422.426667pt;}
.yb_c00101{bottom:434.960000pt;}
.ya_c00101{bottom:454.826667pt;}
.y9_c00101{bottom:477.093333pt;}
.y8_c00101{bottom:499.493333pt;}
.y7_c00101{bottom:520.560000pt;}
.y6_c00101{bottom:542.693333pt;}
.y5_c00101{bottom:564.293333pt;}
.y4_c00101{bottom:586.560000pt;}
.y3_c00101{bottom:608.426667pt;}
.y2_c00101{bottom:630.026667pt;}
.y1_c00101{bottom:653.493333pt;}
.h6_c00101{height:11.733399pt;}
.h7_c00101{height:38.937500pt;}
.h4_c00101{height:47.268229pt;}
.h5_c00101{height:70.664062pt;}
.h2_c00101{height:77.654948pt;}
.h3_c00101{height:81.031250pt;}
.h1_c00101{height:697.333333pt;}
.h0_c00101{height:697.466667pt;}
.w2_c00101{width:93.222667pt;}
.w0_c00101{width:473.066667pt;}
.w1_c00101{width:473.333333pt;}
.x0_c00101{left:0.000000pt;}
.x5_c00101{left:40.533333pt;}
.x4_c00101{left:105.200000pt;}
.x6_c00101{left:107.066667pt;}
.x3_c00101{left:108.533333pt;}
.x2_c00101{left:109.600000pt;}
.x8_c00101{left:193.701538pt;}
.x1_c00101{left:209.733333pt;}
.x7_c00101{left:405.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_55b90a571e7c90f944ac4d9e.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00102;src:url('chunks/assets/font_e20b7e4afdfa78b1421090fb.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:1.480469;font-style:normal;font-weight:normal;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_5a7f72ab9a544094f15ec90d.woff2')format("woff");}.ff3_c00102{font-family:ff3_c00102;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00102{font-family:ff4_c00102;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00102{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00102{vertical-align:0.000000px;}
.ls1_c00102{letter-spacing:0.000000px;}
.ls0_c00102{letter-spacing:3.000000px;}
.ls2_c00102{letter-spacing:12.000000px;}
.sc__c00102{text-shadow:none;}
.sc0_c00102{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00102{-webkit-text-stroke:0px transparent;}
.sc0_c00102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00102{word-spacing:-26.460000px;}
.ws1_c00102{word-spacing:-17.352000px;}
.ws2_c00102{word-spacing:-16.629000px;}
.ws3_c00102{word-spacing:0.000000px;}
._1c_c00102{margin-left:-19.770000px;}
._17_c00102{margin-left:-18.072000px;}
._1b_c00102{margin-left:-16.368000px;}
._15_c00102{margin-left:-14.472000px;}
._b_c00102{margin-left:-12.600000px;}
._18_c00102{margin-left:-11.073000px;}
._13_c00102{margin-left:-9.447000px;}
._16_c00102{margin-left:-8.193000px;}
._19_c00102{margin-left:-6.366000px;}
._12_c00102{margin-left:-5.328000px;}
._a_c00102{margin-left:-3.816000px;}
._10_c00102{margin-left:-2.736000px;}
._9_c00102{margin-left:-1.512000px;}
._11_c00102{width:1.008000px;}
._e_c00102{width:2.448000px;}
._f_c00102{width:3.600000px;}
._14_c00102{width:5.688000px;}
._2_c00102{width:6.783000px;}
._4_c00102{width:8.721000px;}
._3_c00102{width:10.404000px;}
._6_c00102{width:11.730000px;}
._c_c00102{width:13.104000px;}
._1a_c00102{width:14.148000px;}
._d_c00102{width:15.480000px;}
._1d_c00102{width:17.730000px;}
._1_c00102{width:19.329000px;}
._7_c00102{width:22.134000px;}
._5_c00102{width:25.041000px;}
._0_c00102{width:32.181000px;}
._1e_c00102{width:86.874000px;}
._8_c00102{width:392.934000px;}
.fc2_c00102{color:transparent;}
.fc1_c00102{color:rgb(128,128,128);}
.fc0_c00102{color:rgb(0,0,0);}
.fs4_c00102{font-size:48.000000px;}
.fs0_c00102{font-size:51.000000px;}
.fs1_c00102{font-size:60.000000px;}
.fs3_c00102{font-size:69.000000px;}
.fs2_c00102{font-size:72.000000px;}
.y0_c00102{bottom:0.000000px;}
.y1f_c00102{bottom:3.105000px;}
.y1e_c00102{bottom:7.228355px;}
.y1d_c00102{bottom:41.085000px;}
.y1c_c00102{bottom:67.485000px;}
.y1b_c00102{bottom:94.785000px;}
.y1a_c00102{bottom:117.435000px;}
.y19_c00102{bottom:141.435000px;}
.y18_c00102{bottom:166.335000px;}
.y17_c00102{bottom:193.935000px;}
.y16_c00102{bottom:219.585000px;}
.y15_c00102{bottom:241.185000px;}
.y14_c00102{bottom:269.985000px;}
.y13_c00102{bottom:292.635000px;}
.y12_c00102{bottom:316.185000px;}
.y11_c00102{bottom:341.085000px;}
.y10_c00102{bottom:365.835000px;}
.yf_c00102{bottom:391.035000px;}
.ye_c00102{bottom:415.485000px;}
.yd_c00102{bottom:440.685000px;}
.yc_c00102{bottom:465.435000px;}
.yb_c00102{bottom:490.335000px;}
.ya_c00102{bottom:514.935000px;}
.y9_c00102{bottom:539.235000px;}
.y8_c00102{bottom:563.985000px;}
.y7_c00102{bottom:589.185000px;}
.y6_c00102{bottom:613.785000px;}
.y5_c00102{bottom:638.535000px;}
.y4_c00102{bottom:662.535000px;}
.y3_c00102{bottom:687.585000px;}
.y2_c00102{bottom:712.485000px;}
.y1_c00102{bottom:737.385000px;}
.h5_c00102{height:13.200074px;}
.h6_c00102{height:43.804688px;}
.h2_c00102{height:70.224609px;}
.h4_c00102{height:87.361816px;}
.h3_c00102{height:91.160156px;}
.h1_c00102{height:794.250000px;}
.h0_c00102{height:794.325000px;}
.w2_c00102{width:104.875500px;}
.w1_c00102{width:525.750000px;}
.w0_c00102{width:525.975000px;}
.x0_c00102{left:0.000000px;}
.x4_c00102{left:30.750000px;}
.x3_c00102{left:32.700000px;}
.x8_c00102{left:33.750000px;}
.x5_c00102{left:34.800000px;}
.x2_c00102{left:35.850000px;}
.x7_c00102{left:36.900000px;}
.x6_c00102{left:38.100000px;}
.x1_c00102{left:147.450000px;}
.xb_c00102{left:214.801758px;}
.x9_c00102{left:250.800000px;}
.xa_c00102{left:337.800000px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls1_c00102{letter-spacing:0.000000pt;}
.ls0_c00102{letter-spacing:2.666667pt;}
.ls2_c00102{letter-spacing:10.666667pt;}
.ws0_c00102{word-spacing:-23.520000pt;}
.ws1_c00102{word-spacing:-15.424000pt;}
.ws2_c00102{word-spacing:-14.781333pt;}
.ws3_c00102{word-spacing:0.000000pt;}
._1c_c00102{margin-left:-17.573333pt;}
._17_c00102{margin-left:-16.064000pt;}
._1b_c00102{margin-left:-14.549333pt;}
._15_c00102{margin-left:-12.864000pt;}
._b_c00102{margin-left:-11.200000pt;}
._18_c00102{margin-left:-9.842667pt;}
._13_c00102{margin-left:-8.397333pt;}
._16_c00102{margin-left:-7.282667pt;}
._19_c00102{margin-left:-5.658667pt;}
._12_c00102{margin-left:-4.736000pt;}
._a_c00102{margin-left:-3.392000pt;}
._10_c00102{margin-left:-2.432000pt;}
._9_c00102{margin-left:-1.344000pt;}
._11_c00102{width:0.896000pt;}
._e_c00102{width:2.176000pt;}
._f_c00102{width:3.200000pt;}
._14_c00102{width:5.056000pt;}
._2_c00102{width:6.029333pt;}
._4_c00102{width:7.752000pt;}
._3_c00102{width:9.248000pt;}
._6_c00102{width:10.426667pt;}
._c_c00102{width:11.648000pt;}
._1a_c00102{width:12.576000pt;}
._d_c00102{width:13.760000pt;}
._1d_c00102{width:15.760000pt;}
._1_c00102{width:17.181333pt;}
._7_c00102{width:19.674667pt;}
._5_c00102{width:22.258667pt;}
._0_c00102{width:28.605333pt;}
._1e_c00102{width:77.221333pt;}
._8_c00102{width:349.274667pt;}
.fs4_c00102{font-size:42.666667pt;}
.fs0_c00102{font-size:45.333333pt;}
.fs1_c00102{font-size:53.333333pt;}
.fs3_c00102{font-size:61.333333pt;}
.fs2_c00102{font-size:64.000000pt;}
.y0_c00102{bottom:0.000000pt;}
.y1f_c00102{bottom:2.760000pt;}
.y1e_c00102{bottom:6.425204pt;}
.y1d_c00102{bottom:36.520000pt;}
.y1c_c00102{bottom:59.986667pt;}
.y1b_c00102{bottom:84.253333pt;}
.y1a_c00102{bottom:104.386667pt;}
.y19_c00102{bottom:125.720000pt;}
.y18_c00102{bottom:147.853333pt;}
.y17_c00102{bottom:172.386667pt;}
.y16_c00102{bottom:195.186667pt;}
.y15_c00102{bottom:214.386667pt;}
.y14_c00102{bottom:239.986667pt;}
.y13_c00102{bottom:260.120000pt;}
.y12_c00102{bottom:281.053333pt;}
.y11_c00102{bottom:303.186667pt;}
.y10_c00102{bottom:325.186667pt;}
.yf_c00102{bottom:347.586667pt;}
.ye_c00102{bottom:369.320000pt;}
.yd_c00102{bottom:391.720000pt;}
.yc_c00102{bottom:413.720000pt;}
.yb_c00102{bottom:435.853333pt;}
.ya_c00102{bottom:457.720000pt;}
.y9_c00102{bottom:479.320000pt;}
.y8_c00102{bottom:501.320000pt;}
.y7_c00102{bottom:523.720000pt;}
.y6_c00102{bottom:545.586667pt;}
.y5_c00102{bottom:567.586667pt;}
.y4_c00102{bottom:588.920000pt;}
.y3_c00102{bottom:611.186667pt;}
.y2_c00102{bottom:633.320000pt;}
.y1_c00102{bottom:655.453333pt;}
.h5_c00102{height:11.733399pt;}
.h6_c00102{height:38.937500pt;}
.h2_c00102{height:62.421875pt;}
.h4_c00102{height:77.654948pt;}
.h3_c00102{height:81.031250pt;}
.h1_c00102{height:706.000000pt;}
.h0_c00102{height:706.066667pt;}
.w2_c00102{width:93.222667pt;}
.w1_c00102{width:467.333333pt;}
.w0_c00102{width:467.533333pt;}
.x0_c00102{left:0.000000pt;}
.x4_c00102{left:27.333333pt;}
.x3_c00102{left:29.066667pt;}
.x8_c00102{left:30.000000pt;}
.x5_c00102{left:30.933333pt;}
.x2_c00102{left:31.866667pt;}
.x7_c00102{left:32.800000pt;}
.x6_c00102{left:33.866667pt;}
.x1_c00102{left:131.066667pt;}
.xb_c00102{left:190.934896pt;}
.x9_c00102{left:222.933333pt;}
.xa_c00102{left:300.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a2d4e9c02729b7e5cc2486bf.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.480469;font-style:normal;font-weight:normal;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_6cf7f8d124fc61016d982752.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00103;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00103{font-family:ff3_c00103;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00103;src:url('chunks/assets/font_253d7acaca3f4595d69753dd.woff2')format("woff");}.ff4_c00103{font-family:ff4_c00103;line-height:1.568848;font-style:normal;font-weight:normal;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_909e2abe544e20420b841459.woff2')format("woff");}.ff5_c00103{font-family:ff5_c00103;line-height:1.592000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00103{font-family:ff6_c00103;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00103{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00103{vertical-align:0.000000px;}
.ls4_c00103{letter-spacing:0.000000px;}
.ls3_c00103{letter-spacing:1.629000px;}
.ls0_c00103{letter-spacing:2.490000px;}
.ls1_c00103{letter-spacing:3.000000px;}
.ls2_c00103{letter-spacing:11.571000px;}
.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:-42.000000px;}
.ws3_c00103{word-spacing:-29.880000px;}
.ws4_c00103{word-spacing:-20.352000px;}
.ws2_c00103{word-spacing:-17.352000px;}
.ws0_c00103{word-spacing:-13.014000px;}
.ws5_c00103{word-spacing:0.000000px;}
._e_c00103{margin-left:-18.576000px;}
._16_c00103{margin-left:-16.794000px;}
._10_c00103{margin-left:-12.642000px;}
._d_c00103{margin-left:-11.310000px;}
._f_c00103{margin-left:-10.182000px;}
._8_c00103{margin-left:-8.928000px;}
._9_c00103{margin-left:-6.966000px;}
._a_c00103{margin-left:-5.328000px;}
._11_c00103{margin-left:-4.248000px;}
._7_c00103{margin-left:-2.754000px;}
._6_c00103{margin-left:-1.290000px;}
._0_c00103{width:1.458000px;}
._4_c00103{width:2.556000px;}
._3_c00103{width:3.720000px;}
._2_c00103{width:4.788000px;}
._1a_c00103{width:5.904000px;}
._5_c00103{width:7.245000px;}
._19_c00103{width:9.384000px;}
._c_c00103{width:10.710000px;}
._b_c00103{width:12.096000px;}
._15_c00103{width:13.119000px;}
._1c_c00103{width:14.172000px;}
._17_c00103{width:15.285000px;}
._18_c00103{width:18.720000px;}
._1e_c00103{width:21.846000px;}
._1b_c00103{width:29.040000px;}
._14_c00103{width:33.528000px;}
._1_c00103{width:36.864000px;}
._1d_c00103{width:193.086000px;}
._12_c00103{width:265.452000px;}
._13_c00103{width:510.378000px;}
.fc2_c00103{color:transparent;}
.fc1_c00103{color:rgb(128,128,128);}
.fc0_c00103{color:rgb(0,0,0);}
.fs6_c00103{font-size:48.000000px;}
.fs0_c00103{font-size:54.000000px;}
.fs5_c00103{font-size:60.000000px;}
.fs2_c00103{font-size:63.000000px;}
.fs4_c00103{font-size:69.000000px;}
.fs3_c00103{font-size:72.000000px;}
.fs1_c00103{font-size:84.000000px;}
.y0_c00103{bottom:0.000000px;}
.y20_c00103{bottom:3.105000px;}
.y1f_c00103{bottom:7.228371px;}
.y1e_c00103{bottom:34.215000px;}
.y1d_c00103{bottom:59.415000px;}
.y1c_c00103{bottom:84.465000px;}
.y1b_c00103{bottom:109.665000px;}
.y1a_c00103{bottom:134.715000px;}
.y19_c00103{bottom:160.065000px;}
.y18_c00103{bottom:184.065000px;}
.y17_c00103{bottom:208.965000px;}
.y16_c00103{bottom:234.015000px;}
.y15_c00103{bottom:258.915000px;}
.y14_c00103{bottom:283.215000px;}
.y13_c00103{bottom:308.265000px;}
.y12_c00103{bottom:332.865000px;}
.y11_c00103{bottom:357.465000px;}
.y10_c00103{bottom:382.365000px;}
.yf_c00103{bottom:406.665000px;}
.ye_c00103{bottom:430.965000px;}
.yd_c00103{bottom:455.715000px;}
.yc_c00103{bottom:480.315000px;}
.yb_c00103{bottom:505.965000px;}
.ya_c00103{bottom:530.265000px;}
.y9_c00103{bottom:553.965000px;}
.y8_c00103{bottom:576.915000px;}
.y7_c00103{bottom:601.815000px;}
.y1_c00103{bottom:615.615000px;}
.y6_c00103{bottom:628.065000px;}
.y5_c00103{bottom:652.065000px;}
.y4_c00103{bottom:676.815000px;}
.y3_c00103{bottom:701.115000px;}
.y2_c00103{bottom:726.765000px;}
.h5_c00103{height:13.200074px;}
.h6_c00103{height:43.804688px;}
.h2_c00103{height:63.202148px;}
.h3_c00103{height:82.441406px;}
.h4_c00103{height:91.160156px;}
.h0_c00103{height:773.025000px;}
.h1_c00103{height:773.250000px;}
.w2_c00103{width:104.875500px;}
.w0_c00103{width:515.700000px;}
.w1_c00103{width:516.000000px;}
.x0_c00103{left:0.000000px;}
.x1_c00103{left:41.550000px;}
.x6_c00103{left:43.500000px;}
.x7_c00103{left:44.550000px;}
.xd_c00103{left:45.900000px;}
.xf_c00103{left:88.800000px;}
.x12_c00103{left:106.950000px;}
.x11_c00103{left:108.000000px;}
.x10_c00103{left:109.050000px;}
.xe_c00103{left:110.700000px;}
.xb_c00103{left:111.750000px;}
.xc_c00103{left:113.100000px;}
.xa_c00103{left:114.750000px;}
.x8_c00103{left:115.800000px;}
.x9_c00103{left:117.000000px;}
.x5_c00103{left:122.850000px;}
.x4_c00103{left:124.800000px;}
.x3_c00103{left:126.300000px;}
.x14_c00103{left:209.664230px;}
.x2_c00103{left:243.600000px;}
.x13_c00103{left:429.000000px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls4_c00103{letter-spacing:0.000000pt;}
.ls3_c00103{letter-spacing:1.448000pt;}
.ls0_c00103{letter-spacing:2.213333pt;}
.ls1_c00103{letter-spacing:2.666667pt;}
.ls2_c00103{letter-spacing:10.285333pt;}
.ws1_c00103{word-spacing:-37.333333pt;}
.ws3_c00103{word-spacing:-26.560000pt;}
.ws4_c00103{word-spacing:-18.090667pt;}
.ws2_c00103{word-spacing:-15.424000pt;}
.ws0_c00103{word-spacing:-11.568000pt;}
.ws5_c00103{word-spacing:0.000000pt;}
._e_c00103{margin-left:-16.512000pt;}
._16_c00103{margin-left:-14.928000pt;}
._10_c00103{margin-left:-11.237333pt;}
._d_c00103{margin-left:-10.053333pt;}
._f_c00103{margin-left:-9.050667pt;}
._8_c00103{margin-left:-7.936000pt;}
._9_c00103{margin-left:-6.192000pt;}
._a_c00103{margin-left:-4.736000pt;}
._11_c00103{margin-left:-3.776000pt;}
._7_c00103{margin-left:-2.448000pt;}
._6_c00103{margin-left:-1.146667pt;}
._0_c00103{width:1.296000pt;}
._4_c00103{width:2.272000pt;}
._3_c00103{width:3.306667pt;}
._2_c00103{width:4.256000pt;}
._1a_c00103{width:5.248000pt;}
._5_c00103{width:6.440000pt;}
._19_c00103{width:8.341333pt;}
._c_c00103{width:9.520000pt;}
._b_c00103{width:10.752000pt;}
._15_c00103{width:11.661333pt;}
._1c_c00103{width:12.597333pt;}
._17_c00103{width:13.586667pt;}
._18_c00103{width:16.640000pt;}
._1e_c00103{width:19.418667pt;}
._1b_c00103{width:25.813333pt;}
._14_c00103{width:29.802667pt;}
._1_c00103{width:32.768000pt;}
._1d_c00103{width:171.632000pt;}
._12_c00103{width:235.957333pt;}
._13_c00103{width:453.669333pt;}
.fs6_c00103{font-size:42.666667pt;}
.fs0_c00103{font-size:48.000000pt;}
.fs5_c00103{font-size:53.333333pt;}
.fs2_c00103{font-size:56.000000pt;}
.fs4_c00103{font-size:61.333333pt;}
.fs3_c00103{font-size:64.000000pt;}
.fs1_c00103{font-size:74.666667pt;}
.y0_c00103{bottom:0.000000pt;}
.y20_c00103{bottom:2.760000pt;}
.y1f_c00103{bottom:6.425219pt;}
.y1e_c00103{bottom:30.413333pt;}
.y1d_c00103{bottom:52.813333pt;}
.y1c_c00103{bottom:75.080000pt;}
.y1b_c00103{bottom:97.480000pt;}
.y1a_c00103{bottom:119.746667pt;}
.y19_c00103{bottom:142.280000pt;}
.y18_c00103{bottom:163.613333pt;}
.y17_c00103{bottom:185.746667pt;}
.y16_c00103{bottom:208.013333pt;}
.y15_c00103{bottom:230.146667pt;}
.y14_c00103{bottom:251.746667pt;}
.y13_c00103{bottom:274.013333pt;}
.y12_c00103{bottom:295.880000pt;}
.y11_c00103{bottom:317.746667pt;}
.y10_c00103{bottom:339.880000pt;}
.yf_c00103{bottom:361.480000pt;}
.ye_c00103{bottom:383.080000pt;}
.yd_c00103{bottom:405.080000pt;}
.yc_c00103{bottom:426.946667pt;}
.yb_c00103{bottom:449.746667pt;}
.ya_c00103{bottom:471.346667pt;}
.y9_c00103{bottom:492.413333pt;}
.y8_c00103{bottom:512.813333pt;}
.y7_c00103{bottom:534.946667pt;}
.y1_c00103{bottom:547.213333pt;}
.y6_c00103{bottom:558.280000pt;}
.y5_c00103{bottom:579.613333pt;}
.y4_c00103{bottom:601.613333pt;}
.y3_c00103{bottom:623.213333pt;}
.y2_c00103{bottom:646.013333pt;}
.h5_c00103{height:11.733399pt;}
.h6_c00103{height:38.937500pt;}
.h2_c00103{height:56.179688pt;}
.h3_c00103{height:73.281250pt;}
.h4_c00103{height:81.031250pt;}
.h0_c00103{height:687.133333pt;}
.h1_c00103{height:687.333333pt;}
.w2_c00103{width:93.222667pt;}
.w0_c00103{width:458.400000pt;}
.w1_c00103{width:458.666667pt;}
.x0_c00103{left:0.000000pt;}
.x1_c00103{left:36.933333pt;}
.x6_c00103{left:38.666667pt;}
.x7_c00103{left:39.600000pt;}
.xd_c00103{left:40.800000pt;}
.xf_c00103{left:78.933333pt;}
.x12_c00103{left:95.066667pt;}
.x11_c00103{left:96.000000pt;}
.x10_c00103{left:96.933333pt;}
.xe_c00103{left:98.400000pt;}
.xb_c00103{left:99.333333pt;}
.xc_c00103{left:100.533333pt;}
.xa_c00103{left:102.000000pt;}
.x8_c00103{left:102.933333pt;}
.x9_c00103{left:104.000000pt;}
.x5_c00103{left:109.200000pt;}
.x4_c00103{left:110.933333pt;}
.x3_c00103{left:112.266667pt;}
.x14_c00103{left:186.368205pt;}
.x2_c00103{left:216.533333pt;}
.x13_c00103{left:381.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_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_826b827efb074b36a55509ba.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.480469;font-style:normal;font-weight:normal;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_df4e861991ebe14d26914ba7.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:1.568848;font-style:normal;font-weight:normal;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_7a2c5dcb058e0696b5651e06.woff2')format("woff");}.ff3_c00104{font-family:ff3_c00104;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00104;src:url('chunks/assets/font_debf38c0bdb5f9d9b5dfdf06.woff2')format("woff");}.ff4_c00104{font-family:ff4_c00104;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00104;src:url('chunks/assets/font_683027e349aa388a96205330.woff2')format("woff");}.ff5_c00104{font-family:ff5_c00104;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00104;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00104{font-family:ff6_c00104;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00104{vertical-align:0.000000px;}
.ls1_c00104{letter-spacing:-6.000000px;}
.ls2_c00104{letter-spacing:0.000000px;}
.ls0_c00104{letter-spacing:3.000000px;}
.sc__c00104{text-shadow:none;}
.sc0_c00104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00104{-webkit-text-stroke:0px transparent;}
.sc0_c00104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00104{word-spacing:-41.100000px;}
.ws2_c00104{word-spacing:-20.967000px;}
.ws0_c00104{word-spacing:-17.352000px;}
.ws3_c00104{word-spacing:0.000000px;}
._13_c00104{margin-left:-21.096000px;}
._11_c00104{margin-left:-18.051000px;}
._12_c00104{margin-left:-15.696000px;}
._7_c00104{margin-left:-11.613000px;}
._d_c00104{margin-left:-9.597000px;}
._c_c00104{margin-left:-7.833000px;}
._14_c00104{margin-left:-6.798000px;}
._9_c00104{margin-left:-5.697000px;}
._b_c00104{margin-left:-4.005000px;}
._4_c00104{margin-left:-2.784000px;}
._5_c00104{margin-left:-1.740000px;}
._a_c00104{width:1.302000px;}
._8_c00104{width:2.307000px;}
._2_c00104{width:3.741000px;}
._18_c00104{width:4.845000px;}
._e_c00104{width:5.871000px;}
._1_c00104{width:6.873000px;}
._3_c00104{width:8.613000px;}
._15_c00104{width:10.398000px;}
._0_c00104{width:11.658000px;}
._f_c00104{width:13.365000px;}
._10_c00104{width:16.197000px;}
._17_c00104{width:20.787000px;}
._19_c00104{width:23.283000px;}
._16_c00104{width:25.137000px;}
._1b_c00104{width:27.456000px;}
._1a_c00104{width:29.532000px;}
._1c_c00104{width:31.260000px;}
._1d_c00104{width:66.804000px;}
._6_c00104{width:370.272000px;}
.fc2_c00104{color:transparent;}
.fc1_c00104{color:rgb(128,128,128);}
.fc0_c00104{color:rgb(0,0,0);}
.fs5_c00104{font-size:48.000000px;}
.fs4_c00104{font-size:60.000000px;}
.fs1_c00104{font-size:72.000000px;}
.fs2_c00104{font-size:81.000000px;}
.fs3_c00104{font-size:84.000000px;}
.fs0_c00104{font-size:87.000000px;}
.y0_c00104{bottom:0.000000px;}
.y1f_c00104{bottom:3.105000px;}
.y1e_c00104{bottom:7.228369px;}
.y1d_c00104{bottom:31.620000px;}
.y1c_c00104{bottom:60.720000px;}
.y1b_c00104{bottom:85.770000px;}
.y1a_c00104{bottom:112.620000px;}
.y19_c00104{bottom:135.570000px;}
.y18_c00104{bottom:160.020000px;}
.y17_c00104{bottom:186.870000px;}
.y16_c00104{bottom:211.920000px;}
.y15_c00104{bottom:236.820000px;}
.y14_c00104{bottom:261.120000px;}
.y13_c00104{bottom:284.520000px;}
.y12_c00104{bottom:308.070000px;}
.y11_c00104{bottom:333.120000px;}
.y10_c00104{bottom:357.120000px;}
.yf_c00104{bottom:382.020000px;}
.ye_c00104{bottom:407.370000px;}
.yd_c00104{bottom:432.120000px;}
.yc_c00104{bottom:457.320000px;}
.yb_c00104{bottom:482.520000px;}
.ya_c00104{bottom:507.270000px;}
.y9_c00104{bottom:531.570000px;}
.y8_c00104{bottom:556.770000px;}
.y7_c00104{bottom:580.770000px;}
.y6_c00104{bottom:605.820000px;}
.y5_c00104{bottom:629.820000px;}
.y4_c00104{bottom:654.720000px;}
.y3_c00104{bottom:679.620000px;}
.y2_c00104{bottom:703.620000px;}
.y1_c00104{bottom:728.970000px;}
.h7_c00104{height:13.200073px;}
.h8_c00104{height:43.804688px;}
.h6_c00104{height:75.966797px;}
.h4_c00104{height:79.497070px;}
.h5_c00104{height:82.400391px;}
.h3_c00104{height:91.160156px;}
.h2_c00104{height:110.151855px;}
.h0_c00104{height:782.700000px;}
.h1_c00104{height:783.000000px;}
.w2_c00104{width:104.875500px;}
.w1_c00104{width:528.000000px;}
.w0_c00104{width:528.150000px;}
.x0_c00104{left:0.000000px;}
.x2_c00104{left:24.000000px;}
.x3_c00104{left:25.950000px;}
.x4_c00104{left:27.300000px;}
.x5_c00104{left:29.400000px;}
.x6_c00104{left:31.350000px;}
.x7_c00104{left:32.850000px;}
.x8_c00104{left:34.500000px;}
.x1_c00104{left:139.350000px;}
.xa_c00104{left:215.889267px;}
.x9_c00104{left:368.250000px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls1_c00104{letter-spacing:-5.333333pt;}
.ls2_c00104{letter-spacing:0.000000pt;}
.ls0_c00104{letter-spacing:2.666667pt;}
.ws1_c00104{word-spacing:-36.533333pt;}
.ws2_c00104{word-spacing:-18.637333pt;}
.ws0_c00104{word-spacing:-15.424000pt;}
.ws3_c00104{word-spacing:0.000000pt;}
._13_c00104{margin-left:-18.752000pt;}
._11_c00104{margin-left:-16.045333pt;}
._12_c00104{margin-left:-13.952000pt;}
._7_c00104{margin-left:-10.322667pt;}
._d_c00104{margin-left:-8.530667pt;}
._c_c00104{margin-left:-6.962667pt;}
._14_c00104{margin-left:-6.042667pt;}
._9_c00104{margin-left:-5.064000pt;}
._b_c00104{margin-left:-3.560000pt;}
._4_c00104{margin-left:-2.474667pt;}
._5_c00104{margin-left:-1.546667pt;}
._a_c00104{width:1.157333pt;}
._8_c00104{width:2.050667pt;}
._2_c00104{width:3.325333pt;}
._18_c00104{width:4.306667pt;}
._e_c00104{width:5.218667pt;}
._1_c00104{width:6.109333pt;}
._3_c00104{width:7.656000pt;}
._15_c00104{width:9.242667pt;}
._0_c00104{width:10.362667pt;}
._f_c00104{width:11.880000pt;}
._10_c00104{width:14.397333pt;}
._17_c00104{width:18.477333pt;}
._19_c00104{width:20.696000pt;}
._16_c00104{width:22.344000pt;}
._1b_c00104{width:24.405333pt;}
._1a_c00104{width:26.250667pt;}
._1c_c00104{width:27.786667pt;}
._1d_c00104{width:59.381333pt;}
._6_c00104{width:329.130667pt;}
.fs5_c00104{font-size:42.666667pt;}
.fs4_c00104{font-size:53.333333pt;}
.fs1_c00104{font-size:64.000000pt;}
.fs2_c00104{font-size:72.000000pt;}
.fs3_c00104{font-size:74.666667pt;}
.fs0_c00104{font-size:77.333333pt;}
.y0_c00104{bottom:0.000000pt;}
.y1f_c00104{bottom:2.760000pt;}
.y1e_c00104{bottom:6.425217pt;}
.y1d_c00104{bottom:28.106667pt;}
.y1c_c00104{bottom:53.973333pt;}
.y1b_c00104{bottom:76.240000pt;}
.y1a_c00104{bottom:100.106667pt;}
.y19_c00104{bottom:120.506667pt;}
.y18_c00104{bottom:142.240000pt;}
.y17_c00104{bottom:166.106667pt;}
.y16_c00104{bottom:188.373333pt;}
.y15_c00104{bottom:210.506667pt;}
.y14_c00104{bottom:232.106667pt;}
.y13_c00104{bottom:252.906667pt;}
.y12_c00104{bottom:273.840000pt;}
.y11_c00104{bottom:296.106667pt;}
.y10_c00104{bottom:317.440000pt;}
.yf_c00104{bottom:339.573333pt;}
.ye_c00104{bottom:362.106667pt;}
.yd_c00104{bottom:384.106667pt;}
.yc_c00104{bottom:406.506667pt;}
.yb_c00104{bottom:428.906667pt;}
.ya_c00104{bottom:450.906667pt;}
.y9_c00104{bottom:472.506667pt;}
.y8_c00104{bottom:494.906667pt;}
.y7_c00104{bottom:516.240000pt;}
.y6_c00104{bottom:538.506667pt;}
.y5_c00104{bottom:559.840000pt;}
.y4_c00104{bottom:581.973333pt;}
.y3_c00104{bottom:604.106667pt;}
.y2_c00104{bottom:625.440000pt;}
.y1_c00104{bottom:647.973333pt;}
.h7_c00104{height:11.733399pt;}
.h8_c00104{height:38.937500pt;}
.h6_c00104{height:67.526042pt;}
.h4_c00104{height:70.664062pt;}
.h5_c00104{height:73.244792pt;}
.h3_c00104{height:81.031250pt;}
.h2_c00104{height:97.912760pt;}
.h0_c00104{height:695.733333pt;}
.h1_c00104{height:696.000000pt;}
.w2_c00104{width:93.222667pt;}
.w1_c00104{width:469.333333pt;}
.w0_c00104{width:469.466667pt;}
.x0_c00104{left:0.000000pt;}
.x2_c00104{left:21.333333pt;}
.x3_c00104{left:23.066667pt;}
.x4_c00104{left:24.266667pt;}
.x5_c00104{left:26.133333pt;}
.x6_c00104{left:27.866667pt;}
.x7_c00104{left:29.200000pt;}
.x8_c00104{left:30.666667pt;}
.x1_c00104{left:123.866667pt;}
.xa_c00104{left:191.901571pt;}
.x9_c00104{left:327.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_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_cbe358a10f65d9c235d143c9.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.480469;font-style:normal;font-weight:normal;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_ff823938aec4a3e38e25a247.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00105{font-family:ff3_c00105;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00105{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00105{vertical-align:0.000000px;}
.ls1_c00105{letter-spacing:0.000000px;}
.ls0_c00105{letter-spacing:3.000000px;}
.sc__c00105{text-shadow:none;}
.sc0_c00105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00105{-webkit-text-stroke:0px transparent;}
.sc0_c00105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00105{word-spacing:-17.352000px;}
.ws1_c00105{word-spacing:-16.629000px;}
.ws2_c00105{word-spacing:0.000000px;}
._14_c00105{margin-left:-13.536000px;}
._11_c00105{margin-left:-11.808000px;}
._13_c00105{margin-left:-10.656000px;}
._c_c00105{margin-left:-8.784000px;}
._12_c00105{margin-left:-6.696000px;}
._10_c00105{margin-left:-5.688000px;}
._7_c00105{margin-left:-4.320000px;}
._6_c00105{margin-left:-3.312000px;}
._5_c00105{margin-left:-1.944000px;}
._3_c00105{width:1.296000px;}
._2_c00105{width:2.520000px;}
._1_c00105{width:3.600000px;}
._0_c00105{width:5.256000px;}
._b_c00105{width:6.840000px;}
._4_c00105{width:7.848000px;}
._8_c00105{width:9.504000px;}
._f_c00105{width:10.656000px;}
._9_c00105{width:11.952000px;}
._a_c00105{width:13.608000px;}
._e_c00105{width:14.832000px;}
._d_c00105{width:15.912000px;}
._15_c00105{width:129.372000px;}
.fc2_c00105{color:transparent;}
.fc1_c00105{color:rgb(128,128,128);}
.fc0_c00105{color:rgb(0,0,0);}
.fs3_c00105{font-size:48.000000px;}
.fs1_c00105{font-size:60.000000px;}
.fs2_c00105{font-size:69.000000px;}
.fs0_c00105{font-size:72.000000px;}
.y0_c00105{bottom:0.000000px;}
.y1f_c00105{bottom:3.105000px;}
.y1e_c00105{bottom:7.228357px;}
.y1d_c00105{bottom:13.230000px;}
.y1c_c00105{bottom:36.480000px;}
.y1b_c00105{bottom:61.680000px;}
.y1a_c00105{bottom:87.180000px;}
.y19_c00105{bottom:112.680000px;}
.y18_c00105{bottom:137.730000px;}
.y17_c00105{bottom:162.330000px;}
.y16_c00105{bottom:187.680000px;}
.y15_c00105{bottom:214.080000px;}
.y14_c00105{bottom:237.630000px;}
.y13_c00105{bottom:262.980000px;}
.y12_c00105{bottom:287.280000px;}
.y11_c00105{bottom:312.630000px;}
.y10_c00105{bottom:336.480000px;}
.yf_c00105{bottom:361.530000px;}
.ye_c00105{bottom:387.480000px;}
.yd_c00105{bottom:410.730000px;}
.yc_c00105{bottom:435.780000px;}
.yb_c00105{bottom:460.080000px;}
.ya_c00105{bottom:484.680000px;}
.y9_c00105{bottom:510.030000px;}
.y8_c00105{bottom:534.630000px;}
.y7_c00105{bottom:559.230000px;}
.y6_c00105{bottom:584.580000px;}
.y5_c00105{bottom:608.130000px;}
.y4_c00105{bottom:632.580000px;}
.y3_c00105{bottom:658.230000px;}
.y2_c00105{bottom:682.830000px;}
.y1_c00105{bottom:708.780000px;}
.h4_c00105{height:13.200074px;}
.h5_c00105{height:43.804688px;}
.h3_c00105{height:90.560156px;}
.h2_c00105{height:91.160156px;}
.h0_c00105{height:761.700000px;}
.h1_c00105{height:762.000000px;}
.w2_c00105{width:104.875500px;}
.w1_c00105{width:507.000000px;}
.w0_c00105{width:507.300000px;}
.x0_c00105{left:0.000000px;}
.x8_c00105{left:103.650000px;}
.x7_c00105{left:105.300000px;}
.x6_c00105{left:106.950000px;}
.x5_c00105{left:108.000000px;}
.x4_c00105{left:109.050000px;}
.x3_c00105{left:110.100000px;}
.x2_c00105{left:112.050000px;}
.xa_c00105{left:205.464249px;}
.x1_c00105{left:224.700000px;}
.x9_c00105{left:457.950000px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls1_c00105{letter-spacing:0.000000pt;}
.ls0_c00105{letter-spacing:2.666667pt;}
.ws0_c00105{word-spacing:-15.424000pt;}
.ws1_c00105{word-spacing:-14.781333pt;}
.ws2_c00105{word-spacing:0.000000pt;}
._14_c00105{margin-left:-12.032000pt;}
._11_c00105{margin-left:-10.496000pt;}
._13_c00105{margin-left:-9.472000pt;}
._c_c00105{margin-left:-7.808000pt;}
._12_c00105{margin-left:-5.952000pt;}
._10_c00105{margin-left:-5.056000pt;}
._7_c00105{margin-left:-3.840000pt;}
._6_c00105{margin-left:-2.944000pt;}
._5_c00105{margin-left:-1.728000pt;}
._3_c00105{width:1.152000pt;}
._2_c00105{width:2.240000pt;}
._1_c00105{width:3.200000pt;}
._0_c00105{width:4.672000pt;}
._b_c00105{width:6.080000pt;}
._4_c00105{width:6.976000pt;}
._8_c00105{width:8.448000pt;}
._f_c00105{width:9.472000pt;}
._9_c00105{width:10.624000pt;}
._a_c00105{width:12.096000pt;}
._e_c00105{width:13.184000pt;}
._d_c00105{width:14.144000pt;}
._15_c00105{width:114.997333pt;}
.fs3_c00105{font-size:42.666667pt;}
.fs1_c00105{font-size:53.333333pt;}
.fs2_c00105{font-size:61.333333pt;}
.fs0_c00105{font-size:64.000000pt;}
.y0_c00105{bottom:0.000000pt;}
.y1f_c00105{bottom:2.760000pt;}
.y1e_c00105{bottom:6.425206pt;}
.y1d_c00105{bottom:11.760000pt;}
.y1c_c00105{bottom:32.426667pt;}
.y1b_c00105{bottom:54.826667pt;}
.y1a_c00105{bottom:77.493333pt;}
.y19_c00105{bottom:100.160000pt;}
.y18_c00105{bottom:122.426667pt;}
.y17_c00105{bottom:144.293333pt;}
.y16_c00105{bottom:166.826667pt;}
.y15_c00105{bottom:190.293333pt;}
.y14_c00105{bottom:211.226667pt;}
.y13_c00105{bottom:233.760000pt;}
.y12_c00105{bottom:255.360000pt;}
.y11_c00105{bottom:277.893333pt;}
.y10_c00105{bottom:299.093333pt;}
.yf_c00105{bottom:321.360000pt;}
.ye_c00105{bottom:344.426667pt;}
.yd_c00105{bottom:365.093333pt;}
.yc_c00105{bottom:387.360000pt;}
.yb_c00105{bottom:408.960000pt;}
.ya_c00105{bottom:430.826667pt;}
.y9_c00105{bottom:453.360000pt;}
.y8_c00105{bottom:475.226667pt;}
.y7_c00105{bottom:497.093333pt;}
.y6_c00105{bottom:519.626667pt;}
.y5_c00105{bottom:540.560000pt;}
.y4_c00105{bottom:562.293333pt;}
.y3_c00105{bottom:585.093333pt;}
.y2_c00105{bottom:606.960000pt;}
.y1_c00105{bottom:630.026667pt;}
.h4_c00105{height:11.733399pt;}
.h5_c00105{height:38.937500pt;}
.h3_c00105{height:80.497917pt;}
.h2_c00105{height:81.031250pt;}
.h0_c00105{height:677.066667pt;}
.h1_c00105{height:677.333333pt;}
.w2_c00105{width:93.222667pt;}
.w1_c00105{width:450.666667pt;}
.w0_c00105{width:450.933333pt;}
.x0_c00105{left:0.000000pt;}
.x8_c00105{left:92.133333pt;}
.x7_c00105{left:93.600000pt;}
.x6_c00105{left:95.066667pt;}
.x5_c00105{left:96.000000pt;}
.x4_c00105{left:96.933333pt;}
.x3_c00105{left:97.866667pt;}
.x2_c00105{left:99.600000pt;}
.xa_c00105{left:182.634888pt;}
.x1_c00105{left:199.733333pt;}
.x9_c00105{left:407.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2d56296ad076ab5c315669f9.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.480469;font-style:normal;font-weight:normal;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_b2f0823f5b78ac1b55b7110a.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:1.568848;font-style:normal;font-weight:normal;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_11eb9454b265a391a85c084a.woff2')format("woff");}.ff3_c00106{font-family:ff3_c00106;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00106;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00106{font-family:ff4_c00106;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00106{vertical-align:0.000000px;}
.ls0_c00106{letter-spacing:0.000000px;}
.ls1_c00106{letter-spacing:3.000000px;}
.ls2_c00106{letter-spacing:6.000000px;}
.sc__c00106{text-shadow:none;}
.sc0_c00106{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00106{-webkit-text-stroke:0px transparent;}
.sc0_c00106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00106{word-spacing:-15.336000px;}
.ws1_c00106{word-spacing:0.000000px;}
._13_c00106{margin-left:-16.848000px;}
._11_c00106{margin-left:-13.896000px;}
._12_c00106{margin-left:-10.872000px;}
._14_c00106{margin-left:-9.576000px;}
._e_c00106{margin-left:-8.496000px;}
._f_c00106{margin-left:-6.624000px;}
._10_c00106{margin-left:-4.968000px;}
._b_c00106{margin-left:-3.960000px;}
._a_c00106{margin-left:-2.448000px;}
._c_c00106{margin-left:-1.080000px;}
._7_c00106{width:1.080000px;}
._8_c00106{width:2.088000px;}
._9_c00106{width:3.384000px;}
._6_c00106{width:4.896000px;}
._2_c00106{width:6.840000px;}
._3_c00106{width:8.064000px;}
._d_c00106{width:9.072000px;}
._1_c00106{width:11.304000px;}
._4_c00106{width:13.104000px;}
._0_c00106{width:14.616000px;}
._15_c00106{width:246.744000px;}
._5_c00106{width:337.464000px;}
.fc2_c00106{color:transparent;}
.fc1_c00106{color:rgb(128,128,128);}
.fc0_c00106{color:rgb(0,0,0);}
.fs3_c00106{font-size:48.000000px;}
.fs1_c00106{font-size:63.000000px;}
.fs0_c00106{font-size:72.000000px;}
.fs2_c00106{font-size:87.000000px;}
.y0_c00106{bottom:0.000000px;}
.y1f_c00106{bottom:3.105000px;}
.y1e_c00106{bottom:7.228357px;}
.y1d_c00106{bottom:46.530000px;}
.y1c_c00106{bottom:71.580000px;}
.y1b_c00106{bottom:97.230000px;}
.y1a_c00106{bottom:121.830000px;}
.y19_c00106{bottom:146.880000px;}
.y18_c00106{bottom:172.080000px;}
.y17_c00106{bottom:196.080000px;}
.y16_c00106{bottom:222.030000px;}
.y15_c00106{bottom:246.030000px;}
.y14_c00106{bottom:270.630000px;}
.y13_c00106{bottom:294.330000px;}
.y12_c00106{bottom:318.030000px;}
.y11_c00106{bottom:341.280000px;}
.y10_c00106{bottom:366.480000px;}
.yf_c00106{bottom:391.530000px;}
.ye_c00106{bottom:415.230000px;}
.yd_c00106{bottom:440.430000px;}
.yc_c00106{bottom:464.130000px;}
.yb_c00106{bottom:488.730000px;}
.ya_c00106{bottom:513.330000px;}
.y9_c00106{bottom:537.030000px;}
.y8_c00106{bottom:561.030000px;}
.y7_c00106{bottom:586.530000px;}
.y6_c00106{bottom:610.530000px;}
.y5_c00106{bottom:634.830000px;}
.y4_c00106{bottom:659.580000px;}
.y3_c00106{bottom:684.180000px;}
.y2_c00106{bottom:708.180000px;}
.y1_c00106{bottom:733.830000px;}
.h4_c00106{height:13.200074px;}
.h5_c00106{height:43.804688px;}
.h2_c00106{height:91.160156px;}
.h3_c00106{height:110.151855px;}
.h0_c00106{height:788.700000px;}
.h1_c00106{height:789.000000px;}
.w2_c00106{width:104.875500px;}
.w0_c00106{width:524.100000px;}
.w1_c00106{width:524.250000px;}
.x0_c00106{left:0.000000px;}
.x6_c00106{left:24.300000px;}
.x4_c00106{left:26.250000px;}
.x5_c00106{left:27.900000px;}
.x3_c00106{left:29.400000px;}
.x2_c00106{left:31.050000px;}
.x1_c00106{left:153.450000px;}
.x8_c00106{left:213.864258px;}
.x7_c00106{left:299.400000px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls0_c00106{letter-spacing:0.000000pt;}
.ls1_c00106{letter-spacing:2.666667pt;}
.ls2_c00106{letter-spacing:5.333333pt;}
.ws0_c00106{word-spacing:-13.632000pt;}
.ws1_c00106{word-spacing:0.000000pt;}
._13_c00106{margin-left:-14.976000pt;}
._11_c00106{margin-left:-12.352000pt;}
._12_c00106{margin-left:-9.664000pt;}
._14_c00106{margin-left:-8.512000pt;}
._e_c00106{margin-left:-7.552000pt;}
._f_c00106{margin-left:-5.888000pt;}
._10_c00106{margin-left:-4.416000pt;}
._b_c00106{margin-left:-3.520000pt;}
._a_c00106{margin-left:-2.176000pt;}
._c_c00106{margin-left:-0.960000pt;}
._7_c00106{width:0.960000pt;}
._8_c00106{width:1.856000pt;}
._9_c00106{width:3.008000pt;}
._6_c00106{width:4.352000pt;}
._2_c00106{width:6.080000pt;}
._3_c00106{width:7.168000pt;}
._d_c00106{width:8.064000pt;}
._1_c00106{width:10.048000pt;}
._4_c00106{width:11.648000pt;}
._0_c00106{width:12.992000pt;}
._15_c00106{width:219.328000pt;}
._5_c00106{width:299.968000pt;}
.fs3_c00106{font-size:42.666667pt;}
.fs1_c00106{font-size:56.000000pt;}
.fs0_c00106{font-size:64.000000pt;}
.fs2_c00106{font-size:77.333333pt;}
.y0_c00106{bottom:0.000000pt;}
.y1f_c00106{bottom:2.760000pt;}
.y1e_c00106{bottom:6.425206pt;}
.y1d_c00106{bottom:41.360000pt;}
.y1c_c00106{bottom:63.626667pt;}
.y1b_c00106{bottom:86.426667pt;}
.y1a_c00106{bottom:108.293333pt;}
.y19_c00106{bottom:130.560000pt;}
.y18_c00106{bottom:152.960000pt;}
.y17_c00106{bottom:174.293333pt;}
.y16_c00106{bottom:197.360000pt;}
.y15_c00106{bottom:218.693333pt;}
.y14_c00106{bottom:240.560000pt;}
.y13_c00106{bottom:261.626667pt;}
.y12_c00106{bottom:282.693333pt;}
.y11_c00106{bottom:303.360000pt;}
.y10_c00106{bottom:325.760000pt;}
.yf_c00106{bottom:348.026667pt;}
.ye_c00106{bottom:369.093333pt;}
.yd_c00106{bottom:391.493333pt;}
.yc_c00106{bottom:412.560000pt;}
.yb_c00106{bottom:434.426667pt;}
.ya_c00106{bottom:456.293333pt;}
.y9_c00106{bottom:477.360000pt;}
.y8_c00106{bottom:498.693333pt;}
.y7_c00106{bottom:521.360000pt;}
.y6_c00106{bottom:542.693333pt;}
.y5_c00106{bottom:564.293333pt;}
.y4_c00106{bottom:586.293333pt;}
.y3_c00106{bottom:608.160000pt;}
.y2_c00106{bottom:629.493333pt;}
.y1_c00106{bottom:652.293333pt;}
.h4_c00106{height:11.733399pt;}
.h5_c00106{height:38.937500pt;}
.h2_c00106{height:81.031250pt;}
.h3_c00106{height:97.912760pt;}
.h0_c00106{height:701.066667pt;}
.h1_c00106{height:701.333333pt;}
.w2_c00106{width:93.222667pt;}
.w0_c00106{width:465.866667pt;}
.w1_c00106{width:466.000000pt;}
.x0_c00106{left:0.000000pt;}
.x6_c00106{left:21.600000pt;}
.x4_c00106{left:23.333333pt;}
.x5_c00106{left:24.800000pt;}
.x3_c00106{left:26.133333pt;}
.x2_c00106{left:27.600000pt;}
.x1_c00106{left:136.400000pt;}
.x8_c00106{left:190.101563pt;}
.x7_c00106{left:266.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9d75a3fd2ea859966e8c4ca2.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.480469;font-style:normal;font-weight:normal;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_e51efb772535985c751b2070.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:1.568848;font-style:normal;font-weight:normal;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_846fe9df152d43ed18cbd064.woff2')format("woff");}.ff3_c00107{font-family:ff3_c00107;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00107;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00107{font-family:ff4_c00107;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00107{vertical-align:0.000000px;}
.ls1_c00107{letter-spacing:0.000000px;}
.ls0_c00107{letter-spacing:3.000000px;}
.ls2_c00107{letter-spacing:6.000000px;}
.sc__c00107{text-shadow:none;}
.sc0_c00107{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00107{-webkit-text-stroke:0px transparent;}
.sc0_c00107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00107{word-spacing:-20.352000px;}
.ws1_c00107{word-spacing:-17.352000px;}
.ws0_c00107{word-spacing:-16.629000px;}
.ws3_c00107{word-spacing:0.000000px;}
._14_c00107{margin-left:-20.415000px;}
._1e_c00107{margin-left:-16.692000px;}
._1d_c00107{margin-left:-14.268000px;}
._1a_c00107{margin-left:-13.176000px;}
._b_c00107{margin-left:-11.712000px;}
._16_c00107{margin-left:-10.656000px;}
._1c_c00107{margin-left:-8.796000px;}
._17_c00107{margin-left:-7.416000px;}
._10_c00107{margin-left:-5.976000px;}
._d_c00107{margin-left:-4.902000px;}
._9_c00107{margin-left:-2.952000px;}
._a_c00107{margin-left:-1.008000px;}
._12_c00107{width:1.152000px;}
._8_c00107{width:2.160000px;}
._11_c00107{width:3.396000px;}
._15_c00107{width:4.572000px;}
._f_c00107{width:5.904000px;}
._e_c00107{width:7.272000px;}
._1f_c00107{width:9.228000px;}
._4_c00107{width:10.416000px;}
._13_c00107{width:11.742000px;}
._21_c00107{width:13.014000px;}
._20_c00107{width:14.196000px;}
._19_c00107{width:15.276000px;}
._22_c00107{width:18.000000px;}
._1_c00107{width:19.296000px;}
._5_c00107{width:20.304000px;}
._c_c00107{width:23.598000px;}
._6_c00107{width:29.784000px;}
._3_c00107{width:34.584000px;}
._2_c00107{width:36.888000px;}
._0_c00107{width:47.712000px;}
._7_c00107{width:53.952000px;}
._1b_c00107{width:60.174000px;}
._18_c00107{width:149.640000px;}
.fc2_c00107{color:transparent;}
.fc1_c00107{color:rgb(128,128,128);}
.fc0_c00107{color:rgb(0,0,0);}
.fs0_c00107{font-size:24.000000px;}
.fs4_c00107{font-size:48.000000px;}
.fs2_c00107{font-size:69.000000px;}
.fs1_c00107{font-size:72.000000px;}
.fs3_c00107{font-size:78.000000px;}
.y0_c00107{bottom:0.000000px;}
.y1e_c00107{bottom:3.105000px;}
.y1d_c00107{bottom:7.228369px;}
.y1c_c00107{bottom:64.770000px;}
.y1b_c00107{bottom:90.120000px;}
.y1a_c00107{bottom:115.470000px;}
.y19_c00107{bottom:140.970000px;}
.y18_c00107{bottom:166.020000px;}
.y17_c00107{bottom:191.070000px;}
.y16_c00107{bottom:215.670000px;}
.y15_c00107{bottom:241.320000px;}
.y14_c00107{bottom:266.520000px;}
.y13_c00107{bottom:291.270000px;}
.y12_c00107{bottom:317.220000px;}
.y11_c00107{bottom:341.220000px;}
.y10_c00107{bottom:365.070000px;}
.yf_c00107{bottom:389.820000px;}
.ye_c00107{bottom:415.020000px;}
.yd_c00107{bottom:437.670000px;}
.yc_c00107{bottom:463.020000px;}
.yb_c00107{bottom:487.620000px;}
.ya_c00107{bottom:511.920000px;}
.y9_c00107{bottom:536.670000px;}
.y8_c00107{bottom:561.270000px;}
.y7_c00107{bottom:586.170000px;}
.y6_c00107{bottom:609.870000px;}
.y5_c00107{bottom:634.470000px;}
.y4_c00107{bottom:658.770000px;}
.y3_c00107{bottom:683.670000px;}
.y2_c00107{bottom:708.420000px;}
.y1_c00107{bottom:734.070000px;}
.h3_c00107{height:13.200073px;}
.h1_c00107{height:30.386719px;}
.h4_c00107{height:43.804688px;}
.h2_c00107{height:91.160156px;}
.h0_c00107{height:780.000000px;}
.w2_c00107{width:104.875500px;}
.w1_c00107{width:528.750000px;}
.w0_c00107{width:528.900000px;}
.x0_c00107{left:0.000000px;}
.x4_c00107{left:47.700000px;}
.x6_c00107{left:48.900000px;}
.x5_c00107{left:72.450000px;}
.x2_c00107{left:123.300000px;}
.x3_c00107{left:124.500000px;}
.x8_c00107{left:125.850000px;}
.x7_c00107{left:127.200000px;}
.x9_c00107{left:129.150000px;}
.xa_c00107{left:130.500000px;}
.xb_c00107{left:131.850000px;}
.xc_c00107{left:132.900000px;}
.xd_c00107{left:216.264267px;}
.x1_c00107{left:243.300000px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls1_c00107{letter-spacing:0.000000pt;}
.ls0_c00107{letter-spacing:2.666667pt;}
.ls2_c00107{letter-spacing:5.333333pt;}
.ws2_c00107{word-spacing:-18.090667pt;}
.ws1_c00107{word-spacing:-15.424000pt;}
.ws0_c00107{word-spacing:-14.781333pt;}
.ws3_c00107{word-spacing:0.000000pt;}
._14_c00107{margin-left:-18.146667pt;}
._1e_c00107{margin-left:-14.837333pt;}
._1d_c00107{margin-left:-12.682667pt;}
._1a_c00107{margin-left:-11.712000pt;}
._b_c00107{margin-left:-10.410667pt;}
._16_c00107{margin-left:-9.472000pt;}
._1c_c00107{margin-left:-7.818667pt;}
._17_c00107{margin-left:-6.592000pt;}
._10_c00107{margin-left:-5.312000pt;}
._d_c00107{margin-left:-4.357333pt;}
._9_c00107{margin-left:-2.624000pt;}
._a_c00107{margin-left:-0.896000pt;}
._12_c00107{width:1.024000pt;}
._8_c00107{width:1.920000pt;}
._11_c00107{width:3.018667pt;}
._15_c00107{width:4.064000pt;}
._f_c00107{width:5.248000pt;}
._e_c00107{width:6.464000pt;}
._1f_c00107{width:8.202667pt;}
._4_c00107{width:9.258667pt;}
._13_c00107{width:10.437333pt;}
._21_c00107{width:11.568000pt;}
._20_c00107{width:12.618667pt;}
._19_c00107{width:13.578667pt;}
._22_c00107{width:16.000000pt;}
._1_c00107{width:17.152000pt;}
._5_c00107{width:18.048000pt;}
._c_c00107{width:20.976000pt;}
._6_c00107{width:26.474667pt;}
._3_c00107{width:30.741333pt;}
._2_c00107{width:32.789333pt;}
._0_c00107{width:42.410667pt;}
._7_c00107{width:47.957333pt;}
._1b_c00107{width:53.488000pt;}
._18_c00107{width:133.013333pt;}
.fs0_c00107{font-size:21.333333pt;}
.fs4_c00107{font-size:42.666667pt;}
.fs2_c00107{font-size:61.333333pt;}
.fs1_c00107{font-size:64.000000pt;}
.fs3_c00107{font-size:69.333333pt;}
.y0_c00107{bottom:0.000000pt;}
.y1e_c00107{bottom:2.760000pt;}
.y1d_c00107{bottom:6.425217pt;}
.y1c_c00107{bottom:57.573333pt;}
.y1b_c00107{bottom:80.106667pt;}
.y1a_c00107{bottom:102.640000pt;}
.y19_c00107{bottom:125.306667pt;}
.y18_c00107{bottom:147.573333pt;}
.y17_c00107{bottom:169.840000pt;}
.y16_c00107{bottom:191.706667pt;}
.y15_c00107{bottom:214.506667pt;}
.y14_c00107{bottom:236.906667pt;}
.y13_c00107{bottom:258.906667pt;}
.y12_c00107{bottom:281.973333pt;}
.y11_c00107{bottom:303.306667pt;}
.y10_c00107{bottom:324.506667pt;}
.yf_c00107{bottom:346.506667pt;}
.ye_c00107{bottom:368.906667pt;}
.yd_c00107{bottom:389.040000pt;}
.yc_c00107{bottom:411.573333pt;}
.yb_c00107{bottom:433.440000pt;}
.ya_c00107{bottom:455.040000pt;}
.y9_c00107{bottom:477.040000pt;}
.y8_c00107{bottom:498.906667pt;}
.y7_c00107{bottom:521.040000pt;}
.y6_c00107{bottom:542.106667pt;}
.y5_c00107{bottom:563.973333pt;}
.y4_c00107{bottom:585.573333pt;}
.y3_c00107{bottom:607.706667pt;}
.y2_c00107{bottom:629.706667pt;}
.y1_c00107{bottom:652.506667pt;}
.h3_c00107{height:11.733399pt;}
.h1_c00107{height:27.010417pt;}
.h4_c00107{height:38.937500pt;}
.h2_c00107{height:81.031250pt;}
.h0_c00107{height:693.333333pt;}
.w2_c00107{width:93.222667pt;}
.w1_c00107{width:470.000000pt;}
.w0_c00107{width:470.133333pt;}
.x0_c00107{left:0.000000pt;}
.x4_c00107{left:42.400000pt;}
.x6_c00107{left:43.466667pt;}
.x5_c00107{left:64.400000pt;}
.x2_c00107{left:109.600000pt;}
.x3_c00107{left:110.666667pt;}
.x8_c00107{left:111.866667pt;}
.x7_c00107{left:113.066667pt;}
.x9_c00107{left:114.800000pt;}
.xa_c00107{left:116.000000pt;}
.xb_c00107{left:117.200000pt;}
.xc_c00107{left:118.133333pt;}
.xd_c00107{left:192.234904pt;}
.x1_c00107{left:216.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_443427074d2ea4391b243f16.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.480469;font-style:normal;font-weight:normal;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_da76a15da17e0a7f68f13903.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.568848;font-style:normal;font-weight:normal;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_912a785a2d286c6e69b55fda.woff2')format("woff");}.ff3_c00108{font-family:ff3_c00108;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00108;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00108{font-family:ff4_c00108;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00108;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00108{font-family:ff5_c00108;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.ls2_c00108{letter-spacing:0.000000px;}
.ls0_c00108{letter-spacing:3.000000px;}
.ls3_c00108{letter-spacing:6.000000px;}
.ls1_c00108{letter-spacing:35.550000px;}
.sc__c00108{text-shadow:none;}
.sc0_c00108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00108{-webkit-text-stroke:0px transparent;}
.sc0_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00108{word-spacing:-28.500000px;}
.ws0_c00108{word-spacing:-17.352000px;}
.ws2_c00108{word-spacing:0.000000px;}
._1c_c00108{margin-left:-34.272000px;}
._13_c00108{margin-left:-16.272000px;}
._11_c00108{margin-left:-13.176000px;}
._12_c00108{margin-left:-10.008000px;}
._10_c00108{margin-left:-8.928000px;}
._a_c00108{margin-left:-7.056000px;}
._b_c00108{margin-left:-6.048000px;}
._d_c00108{margin-left:-5.040000px;}
._c_c00108{margin-left:-4.032000px;}
._8_c00108{margin-left:-2.448000px;}
._9_c00108{margin-left:-1.368000px;}
._7_c00108{width:1.512000px;}
._6_c00108{width:3.168000px;}
._3_c00108{width:4.248000px;}
._14_c00108{width:5.472000px;}
._1_c00108{width:6.480000px;}
._4_c00108{width:7.848000px;}
._18_c00108{width:8.928000px;}
._0_c00108{width:9.936000px;}
._1a_c00108{width:10.944000px;}
._2_c00108{width:12.456000px;}
._e_c00108{width:13.896000px;}
._19_c00108{width:15.687000px;}
._17_c00108{width:16.863000px;}
._f_c00108{width:18.432000px;}
._15_c00108{width:36.552000px;}
._1d_c00108{width:44.262000px;}
._16_c00108{width:55.491000px;}
._1b_c00108{width:119.106000px;}
._1e_c00108{width:247.374000px;}
._5_c00108{width:358.848000px;}
.fc2_c00108{color:transparent;}
.fc1_c00108{color:rgb(128,128,128);}
.fc0_c00108{color:rgb(0,0,0);}
.fs4_c00108{font-size:48.000000px;}
.fs1_c00108{font-size:57.000000px;}
.fs2_c00108{font-size:63.000000px;}
.fs3_c00108{font-size:66.000000px;}
.fs0_c00108{font-size:72.000000px;}
.y0_c00108{bottom:0.000000px;}
.y1f_c00108{bottom:3.105000px;}
.y1e_c00108{bottom:7.228357px;}
.y1d_c00108{bottom:47.880000px;}
.y1c_c00108{bottom:73.680000px;}
.y1b_c00108{bottom:99.330000px;}
.y1a_c00108{bottom:124.980000px;}
.y19_c00108{bottom:149.880000px;}
.y18_c00108{bottom:173.880000px;}
.y17_c00108{bottom:197.880000px;}
.y16_c00108{bottom:225.480000px;}
.y15_c00108{bottom:249.780000px;}
.y14_c00108{bottom:274.830000px;}
.y13_c00108{bottom:298.080000px;}
.y12_c00108{bottom:321.630000px;}
.y11_c00108{bottom:345.630000px;}
.y10_c00108{bottom:370.980000px;}
.yf_c00108{bottom:394.980000px;}
.ye_c00108{bottom:419.280000px;}
.yd_c00108{bottom:443.880000px;}
.yc_c00108{bottom:468.480000px;}
.yb_c00108{bottom:493.080000px;}
.ya_c00108{bottom:517.380000px;}
.y9_c00108{bottom:541.980000px;}
.y8_c00108{bottom:566.430000px;}
.y7_c00108{bottom:590.580000px;}
.y6_c00108{bottom:616.380000px;}
.y5_c00108{bottom:639.630000px;}
.y4_c00108{bottom:664.230000px;}
.y3_c00108{bottom:688.830000px;}
.y2_c00108{bottom:713.580000px;}
.y1_c00108{bottom:738.480000px;}
.h5_c00108{height:13.200074px;}
.h6_c00108{height:43.804688px;}
.h4_c00108{height:79.765137px;}
.h2_c00108{height:84.269531px;}
.h3_c00108{height:91.160156px;}
.h0_c00108{height:787.350000px;}
.h1_c00108{height:787.500000px;}
.w1_c00108{width:104.875500px;}
.w0_c00108{width:556.500000px;}
.x0_c00108{left:0.000000px;}
.x7_c00108{left:36.450000px;}
.x5_c00108{left:38.250000px;}
.x3_c00108{left:40.500000px;}
.x2_c00108{left:41.850000px;}
.x4_c00108{left:43.650000px;}
.x6_c00108{left:66.900000px;}
.x1_c00108{left:161.100000px;}
.x9_c00108{left:230.064240px;}
.x8_c00108{left:295.650000px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls2_c00108{letter-spacing:0.000000pt;}
.ls0_c00108{letter-spacing:2.666667pt;}
.ls3_c00108{letter-spacing:5.333333pt;}
.ls1_c00108{letter-spacing:31.600000pt;}
.ws1_c00108{word-spacing:-25.333333pt;}
.ws0_c00108{word-spacing:-15.424000pt;}
.ws2_c00108{word-spacing:0.000000pt;}
._1c_c00108{margin-left:-30.464000pt;}
._13_c00108{margin-left:-14.464000pt;}
._11_c00108{margin-left:-11.712000pt;}
._12_c00108{margin-left:-8.896000pt;}
._10_c00108{margin-left:-7.936000pt;}
._a_c00108{margin-left:-6.272000pt;}
._b_c00108{margin-left:-5.376000pt;}
._d_c00108{margin-left:-4.480000pt;}
._c_c00108{margin-left:-3.584000pt;}
._8_c00108{margin-left:-2.176000pt;}
._9_c00108{margin-left:-1.216000pt;}
._7_c00108{width:1.344000pt;}
._6_c00108{width:2.816000pt;}
._3_c00108{width:3.776000pt;}
._14_c00108{width:4.864000pt;}
._1_c00108{width:5.760000pt;}
._4_c00108{width:6.976000pt;}
._18_c00108{width:7.936000pt;}
._0_c00108{width:8.832000pt;}
._1a_c00108{width:9.728000pt;}
._2_c00108{width:11.072000pt;}
._e_c00108{width:12.352000pt;}
._19_c00108{width:13.944000pt;}
._17_c00108{width:14.989333pt;}
._f_c00108{width:16.384000pt;}
._15_c00108{width:32.490667pt;}
._1d_c00108{width:39.344000pt;}
._16_c00108{width:49.325333pt;}
._1b_c00108{width:105.872000pt;}
._1e_c00108{width:219.888000pt;}
._5_c00108{width:318.976000pt;}
.fs4_c00108{font-size:42.666667pt;}
.fs1_c00108{font-size:50.666667pt;}
.fs2_c00108{font-size:56.000000pt;}
.fs3_c00108{font-size:58.666667pt;}
.fs0_c00108{font-size:64.000000pt;}
.y0_c00108{bottom:0.000000pt;}
.y1f_c00108{bottom:2.760000pt;}
.y1e_c00108{bottom:6.425206pt;}
.y1d_c00108{bottom:42.560000pt;}
.y1c_c00108{bottom:65.493333pt;}
.y1b_c00108{bottom:88.293333pt;}
.y1a_c00108{bottom:111.093333pt;}
.y19_c00108{bottom:133.226667pt;}
.y18_c00108{bottom:154.560000pt;}
.y17_c00108{bottom:175.893333pt;}
.y16_c00108{bottom:200.426667pt;}
.y15_c00108{bottom:222.026667pt;}
.y14_c00108{bottom:244.293333pt;}
.y13_c00108{bottom:264.960000pt;}
.y12_c00108{bottom:285.893333pt;}
.y11_c00108{bottom:307.226667pt;}
.y10_c00108{bottom:329.760000pt;}
.yf_c00108{bottom:351.093333pt;}
.ye_c00108{bottom:372.693333pt;}
.yd_c00108{bottom:394.560000pt;}
.yc_c00108{bottom:416.426667pt;}
.yb_c00108{bottom:438.293333pt;}
.ya_c00108{bottom:459.893333pt;}
.y9_c00108{bottom:481.760000pt;}
.y8_c00108{bottom:503.493333pt;}
.y7_c00108{bottom:524.960000pt;}
.y6_c00108{bottom:547.893333pt;}
.y5_c00108{bottom:568.560000pt;}
.y4_c00108{bottom:590.426667pt;}
.y3_c00108{bottom:612.293333pt;}
.y2_c00108{bottom:634.293333pt;}
.y1_c00108{bottom:656.426667pt;}
.h5_c00108{height:11.733399pt;}
.h6_c00108{height:38.937500pt;}
.h4_c00108{height:70.902344pt;}
.h2_c00108{height:74.906250pt;}
.h3_c00108{height:81.031250pt;}
.h0_c00108{height:699.866667pt;}
.h1_c00108{height:700.000000pt;}
.w1_c00108{width:93.222667pt;}
.w0_c00108{width:494.666667pt;}
.x0_c00108{left:0.000000pt;}
.x7_c00108{left:32.400000pt;}
.x5_c00108{left:34.000000pt;}
.x3_c00108{left:36.000000pt;}
.x2_c00108{left:37.200000pt;}
.x4_c00108{left:38.800000pt;}
.x6_c00108{left:59.466667pt;}
.x1_c00108{left:143.200000pt;}
.x9_c00108{left:204.501546pt;}
.x8_c00108{left:262.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_56fec170b40de69b9967dde0.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.480469;font-style:normal;font-weight:normal;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_25524c8da6dfc9d5e0138a68.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00109{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00109{vertical-align:0.000000px;}
.ls1_c00109{letter-spacing:0.000000px;}
.ls0_c00109{letter-spacing:3.000000px;}
.sc__c00109{text-shadow:none;}
.sc0_c00109{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00109{-webkit-text-stroke:0px transparent;}
.sc0_c00109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00109{word-spacing:0.000000px;}
.ws0_c00109{word-spacing:17.136000px;}
._17_c00109{margin-left:-42.624000px;}
._19_c00109{margin-left:-28.872000px;}
._13_c00109{margin-left:-21.312000px;}
._12_c00109{margin-left:-12.816000px;}
._14_c00109{margin-left:-10.872000px;}
._10_c00109{margin-left:-6.984000px;}
._d_c00109{margin-left:-5.112000px;}
._e_c00109{margin-left:-3.888000px;}
._7_c00109{margin-left:-2.592000px;}
._8_c00109{margin-left:-1.224000px;}
._a_c00109{width:1.584000px;}
._c_c00109{width:3.168000px;}
._9_c00109{width:4.176000px;}
._b_c00109{width:5.976000px;}
._11_c00109{width:8.208000px;}
._16_c00109{width:9.792000px;}
._15_c00109{width:12.240000px;}
._18_c00109{width:13.320000px;}
._2_c00109{width:16.056000px;}
._1a_c00109{width:17.424000px;}
._5_c00109{width:21.888000px;}
._3_c00109{width:24.192000px;}
._4_c00109{width:26.424000px;}
._0_c00109{width:30.744000px;}
._1_c00109{width:32.568000px;}
._6_c00109{width:39.888000px;}
._f_c00109{width:433.008000px;}
._1b_c00109{width:848.880000px;}
.fc2_c00109{color:transparent;}
.fc1_c00109{color:rgb(128,128,128);}
.fc0_c00109{color:rgb(0,0,0);}
.fs0_c00109{font-size:24.000000px;}
.fs3_c00109{font-size:48.000000px;}
.fs2_c00109{font-size:69.000000px;}
.fs1_c00109{font-size:72.000000px;}
.y0_c00109{bottom:0.000000px;}
.y1f_c00109{bottom:3.105000px;}
.y1e_c00109{bottom:7.228369px;}
.y1d_c00109{bottom:45.570000px;}
.y1c_c00109{bottom:69.870000px;}
.y1b_c00109{bottom:95.070000px;}
.y1a_c00109{bottom:120.420000px;}
.y19_c00109{bottom:146.370000px;}
.y18_c00109{bottom:171.420000px;}
.y17_c00109{bottom:197.070000px;}
.y16_c00109{bottom:222.120000px;}
.y15_c00109{bottom:246.420000px;}
.y14_c00109{bottom:270.720000px;}
.y13_c00109{bottom:295.620000px;}
.y12_c00109{bottom:320.220000px;}
.y11_c00109{bottom:344.820000px;}
.y10_c00109{bottom:369.120000px;}
.yf_c00109{bottom:394.320000px;}
.ye_c00109{bottom:418.170000px;}
.yd_c00109{bottom:442.020000px;}
.yc_c00109{bottom:467.820000px;}
.yb_c00109{bottom:492.420000px;}
.ya_c00109{bottom:516.420000px;}
.y9_c00109{bottom:541.320000px;}
.y8_c00109{bottom:565.920000px;}
.y7_c00109{bottom:590.670000px;}
.y6_c00109{bottom:614.970000px;}
.y5_c00109{bottom:639.270000px;}
.y4_c00109{bottom:664.170000px;}
.y3_c00109{bottom:688.770000px;}
.y2_c00109{bottom:713.370000px;}
.y1_c00109{bottom:739.020000px;}
.h4_c00109{height:13.200073px;}
.h2_c00109{height:30.386719px;}
.h5_c00109{height:43.804688px;}
.h3_c00109{height:91.160156px;}
.h1_c00109{height:790.500000px;}
.h0_c00109{height:790.800000px;}
.w2_c00109{width:104.875500px;}
.w0_c00109{width:533.775000px;}
.w1_c00109{width:534.000000px;}
.x0_c00109{left:0.000000px;}
.x2_c00109{left:123.300000px;}
.x3_c00109{left:124.500000px;}
.x4_c00109{left:125.550000px;}
.x6_c00109{left:126.900000px;}
.x5_c00109{left:127.950000px;}
.x7_c00109{left:129.900000px;}
.x8_c00109{left:131.250000px;}
.xb_c00109{left:133.350000px;}
.xc_c00109{left:134.700000px;}
.x9_c00109{left:137.700000px;}
.xa_c00109{left:140.100000px;}
.xe_c00109{left:218.701767px;}
.x1_c00109{left:235.650000px;}
.xd_c00109{left:248.700000px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls1_c00109{letter-spacing:0.000000pt;}
.ls0_c00109{letter-spacing:2.666667pt;}
.ws1_c00109{word-spacing:0.000000pt;}
.ws0_c00109{word-spacing:15.232000pt;}
._17_c00109{margin-left:-37.888000pt;}
._19_c00109{margin-left:-25.664000pt;}
._13_c00109{margin-left:-18.944000pt;}
._12_c00109{margin-left:-11.392000pt;}
._14_c00109{margin-left:-9.664000pt;}
._10_c00109{margin-left:-6.208000pt;}
._d_c00109{margin-left:-4.544000pt;}
._e_c00109{margin-left:-3.456000pt;}
._7_c00109{margin-left:-2.304000pt;}
._8_c00109{margin-left:-1.088000pt;}
._a_c00109{width:1.408000pt;}
._c_c00109{width:2.816000pt;}
._9_c00109{width:3.712000pt;}
._b_c00109{width:5.312000pt;}
._11_c00109{width:7.296000pt;}
._16_c00109{width:8.704000pt;}
._15_c00109{width:10.880000pt;}
._18_c00109{width:11.840000pt;}
._2_c00109{width:14.272000pt;}
._1a_c00109{width:15.488000pt;}
._5_c00109{width:19.456000pt;}
._3_c00109{width:21.504000pt;}
._4_c00109{width:23.488000pt;}
._0_c00109{width:27.328000pt;}
._1_c00109{width:28.949333pt;}
._6_c00109{width:35.456000pt;}
._f_c00109{width:384.896000pt;}
._1b_c00109{width:754.560000pt;}
.fs0_c00109{font-size:21.333333pt;}
.fs3_c00109{font-size:42.666667pt;}
.fs2_c00109{font-size:61.333333pt;}
.fs1_c00109{font-size:64.000000pt;}
.y0_c00109{bottom:0.000000pt;}
.y1f_c00109{bottom:2.760000pt;}
.y1e_c00109{bottom:6.425217pt;}
.y1d_c00109{bottom:40.506667pt;}
.y1c_c00109{bottom:62.106667pt;}
.y1b_c00109{bottom:84.506667pt;}
.y1a_c00109{bottom:107.040000pt;}
.y19_c00109{bottom:130.106667pt;}
.y18_c00109{bottom:152.373333pt;}
.y17_c00109{bottom:175.173333pt;}
.y16_c00109{bottom:197.440000pt;}
.y15_c00109{bottom:219.040000pt;}
.y14_c00109{bottom:240.640000pt;}
.y13_c00109{bottom:262.773333pt;}
.y12_c00109{bottom:284.640000pt;}
.y11_c00109{bottom:306.506667pt;}
.y10_c00109{bottom:328.106667pt;}
.yf_c00109{bottom:350.506667pt;}
.ye_c00109{bottom:371.706667pt;}
.yd_c00109{bottom:392.906667pt;}
.yc_c00109{bottom:415.840000pt;}
.yb_c00109{bottom:437.706667pt;}
.ya_c00109{bottom:459.040000pt;}
.y9_c00109{bottom:481.173333pt;}
.y8_c00109{bottom:503.040000pt;}
.y7_c00109{bottom:525.040000pt;}
.y6_c00109{bottom:546.640000pt;}
.y5_c00109{bottom:568.240000pt;}
.y4_c00109{bottom:590.373333pt;}
.y3_c00109{bottom:612.240000pt;}
.y2_c00109{bottom:634.106667pt;}
.y1_c00109{bottom:656.906667pt;}
.h4_c00109{height:11.733399pt;}
.h2_c00109{height:27.010417pt;}
.h5_c00109{height:38.937500pt;}
.h3_c00109{height:81.031250pt;}
.h1_c00109{height:702.666667pt;}
.h0_c00109{height:702.933333pt;}
.w2_c00109{width:93.222667pt;}
.w0_c00109{width:474.466667pt;}
.w1_c00109{width:474.666667pt;}
.x0_c00109{left:0.000000pt;}
.x2_c00109{left:109.600000pt;}
.x3_c00109{left:110.666667pt;}
.x4_c00109{left:111.600000pt;}
.x6_c00109{left:112.800000pt;}
.x5_c00109{left:113.733333pt;}
.x7_c00109{left:115.466667pt;}
.x8_c00109{left:116.666667pt;}
.xb_c00109{left:118.533333pt;}
.xc_c00109{left:119.733333pt;}
.x9_c00109{left:122.400000pt;}
.xa_c00109{left:124.533333pt;}
.xe_c00109{left:194.401571pt;}
.x1_c00109{left:209.466667pt;}
.xd_c00109{left:221.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_03a432b2947ca6921d313878.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.480469;font-style:normal;font-weight:normal;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_e2f2b73d0b953b7703dd096e.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:1.480469;font-style:normal;font-weight:normal;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_89f5bf73286dcccafc69a511.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00110{font-family:ff4_c00110;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00110{vertical-align:0.000000px;}
.ls3_c00110{letter-spacing:0.000000px;}
.ls0_c00110{letter-spacing:0.072000px;}
.ls2_c00110{letter-spacing:3.000000px;}
.ls1_c00110{letter-spacing:5.448000px;}
.ls4_c00110{letter-spacing:6.000000px;}
.sc__c00110{text-shadow:none;}
.sc0_c00110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00110{-webkit-text-stroke:0px transparent;}
.sc0_c00110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00110{word-spacing:-17.352000px;}
.ws2_c00110{word-spacing:-16.629000px;}
.ws1_c00110{word-spacing:-0.918000px;}
.ws3_c00110{word-spacing:0.000000px;}
._16_c00110{margin-left:-16.992000px;}
._15_c00110{margin-left:-14.328000px;}
._e_c00110{margin-left:-12.096000px;}
._f_c00110{margin-left:-10.296000px;}
._14_c00110{margin-left:-8.928000px;}
._d_c00110{margin-left:-7.776000px;}
._12_c00110{margin-left:-5.904000px;}
._a_c00110{margin-left:-4.608000px;}
._10_c00110{margin-left:-3.456000px;}
._9_c00110{margin-left:-2.304000px;}
._b_c00110{margin-left:-1.080000px;}
._5_c00110{width:1.152000px;}
._2_c00110{width:2.160000px;}
._4_c00110{width:3.312000px;}
._3_c00110{width:5.328000px;}
._7_c00110{width:6.624000px;}
._8_c00110{width:7.848000px;}
._1_c00110{width:9.792000px;}
._c_c00110{width:12.168000px;}
._11_c00110{width:13.536000px;}
._0_c00110{width:15.408000px;}
._13_c00110{width:29.784000px;}
._17_c00110{width:42.576000px;}
._18_c00110{width:244.200000px;}
._6_c00110{width:385.224000px;}
.fc2_c00110{color:transparent;}
.fc1_c00110{color:rgb(128,128,128);}
.fc0_c00110{color:rgb(0,0,0);}
.fs3_c00110{font-size:48.000000px;}
.fs2_c00110{font-size:54.000000px;}
.fs1_c00110{font-size:69.000000px;}
.fs0_c00110{font-size:72.000000px;}
.y0_c00110{bottom:0.000000px;}
.y1f_c00110{bottom:3.105000px;}
.y1e_c00110{bottom:7.228363px;}
.y1d_c00110{bottom:37.500000px;}
.y1c_c00110{bottom:62.700000px;}
.y1b_c00110{bottom:87.450000px;}
.y1a_c00110{bottom:113.700000px;}
.y19_c00110{bottom:138.750000px;}
.y18_c00110{bottom:163.950000px;}
.y17_c00110{bottom:188.550000px;}
.y16_c00110{bottom:213.900000px;}
.y15_c00110{bottom:238.500000px;}
.y14_c00110{bottom:263.850000px;}
.y13_c00110{bottom:286.800000px;}
.y12_c00110{bottom:310.500000px;}
.y11_c00110{bottom:334.350000px;}
.y10_c00110{bottom:359.100000px;}
.yf_c00110{bottom:383.700000px;}
.ye_c00110{bottom:408.750000px;}
.yd_c00110{bottom:432.900000px;}
.yc_c00110{bottom:457.950000px;}
.yb_c00110{bottom:482.550000px;}
.ya_c00110{bottom:506.250000px;}
.y9_c00110{bottom:531.150000px;}
.y8_c00110{bottom:555.450000px;}
.y7_c00110{bottom:580.200000px;}
.y6_c00110{bottom:604.500000px;}
.y5_c00110{bottom:629.700000px;}
.y4_c00110{bottom:654.750000px;}
.y3_c00110{bottom:678.750000px;}
.y2_c00110{bottom:703.050000px;}
.y1_c00110{bottom:727.350000px;}
.h3_c00110{height:13.200074px;}
.h4_c00110{height:43.804688px;}
.h2_c00110{height:91.160156px;}
.h1_c00110{height:786.750000px;}
.h0_c00110{height:787.050000px;}
.w2_c00110{width:104.875500px;}
.w0_c00110{width:551.100000px;}
.w1_c00110{width:551.250000px;}
.x0_c00110{left:0.000000px;}
.x6_c00110{left:36.450000px;}
.x2_c00110{left:38.100000px;}
.x5_c00110{left:39.450000px;}
.x3_c00110{left:43.800000px;}
.x4_c00110{left:45.600000px;}
.x1_c00110{left:152.400000px;}
.x8_c00110{left:227.364258px;}
.x7_c00110{left:289.500000px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls3_c00110{letter-spacing:0.000000pt;}
.ls0_c00110{letter-spacing:0.064000pt;}
.ls2_c00110{letter-spacing:2.666667pt;}
.ls1_c00110{letter-spacing:4.842667pt;}
.ls4_c00110{letter-spacing:5.333333pt;}
.ws0_c00110{word-spacing:-15.424000pt;}
.ws2_c00110{word-spacing:-14.781333pt;}
.ws1_c00110{word-spacing:-0.816000pt;}
.ws3_c00110{word-spacing:0.000000pt;}
._16_c00110{margin-left:-15.104000pt;}
._15_c00110{margin-left:-12.736000pt;}
._e_c00110{margin-left:-10.752000pt;}
._f_c00110{margin-left:-9.152000pt;}
._14_c00110{margin-left:-7.936000pt;}
._d_c00110{margin-left:-6.912000pt;}
._12_c00110{margin-left:-5.248000pt;}
._a_c00110{margin-left:-4.096000pt;}
._10_c00110{margin-left:-3.072000pt;}
._9_c00110{margin-left:-2.048000pt;}
._b_c00110{margin-left:-0.960000pt;}
._5_c00110{width:1.024000pt;}
._2_c00110{width:1.920000pt;}
._4_c00110{width:2.944000pt;}
._3_c00110{width:4.736000pt;}
._7_c00110{width:5.888000pt;}
._8_c00110{width:6.976000pt;}
._1_c00110{width:8.704000pt;}
._c_c00110{width:10.816000pt;}
._11_c00110{width:12.032000pt;}
._0_c00110{width:13.696000pt;}
._13_c00110{width:26.474667pt;}
._17_c00110{width:37.845333pt;}
._18_c00110{width:217.066667pt;}
._6_c00110{width:342.421333pt;}
.fs3_c00110{font-size:42.666667pt;}
.fs2_c00110{font-size:48.000000pt;}
.fs1_c00110{font-size:61.333333pt;}
.fs0_c00110{font-size:64.000000pt;}
.y0_c00110{bottom:0.000000pt;}
.y1f_c00110{bottom:2.760000pt;}
.y1e_c00110{bottom:6.425212pt;}
.y1d_c00110{bottom:33.333333pt;}
.y1c_c00110{bottom:55.733333pt;}
.y1b_c00110{bottom:77.733333pt;}
.y1a_c00110{bottom:101.066667pt;}
.y19_c00110{bottom:123.333333pt;}
.y18_c00110{bottom:145.733333pt;}
.y17_c00110{bottom:167.600000pt;}
.y16_c00110{bottom:190.133333pt;}
.y15_c00110{bottom:212.000000pt;}
.y14_c00110{bottom:234.533333pt;}
.y13_c00110{bottom:254.933333pt;}
.y12_c00110{bottom:276.000000pt;}
.y11_c00110{bottom:297.200000pt;}
.y10_c00110{bottom:319.200000pt;}
.yf_c00110{bottom:341.066667pt;}
.ye_c00110{bottom:363.333333pt;}
.yd_c00110{bottom:384.800000pt;}
.yc_c00110{bottom:407.066667pt;}
.yb_c00110{bottom:428.933333pt;}
.ya_c00110{bottom:450.000000pt;}
.y9_c00110{bottom:472.133333pt;}
.y8_c00110{bottom:493.733333pt;}
.y7_c00110{bottom:515.733333pt;}
.y6_c00110{bottom:537.333333pt;}
.y5_c00110{bottom:559.733333pt;}
.y4_c00110{bottom:582.000000pt;}
.y3_c00110{bottom:603.333333pt;}
.y2_c00110{bottom:624.933333pt;}
.y1_c00110{bottom:646.533333pt;}
.h3_c00110{height:11.733399pt;}
.h4_c00110{height:38.937500pt;}
.h2_c00110{height:81.031250pt;}
.h1_c00110{height:699.333333pt;}
.h0_c00110{height:699.600000pt;}
.w2_c00110{width:93.222667pt;}
.w0_c00110{width:489.866667pt;}
.w1_c00110{width:490.000000pt;}
.x0_c00110{left:0.000000pt;}
.x6_c00110{left:32.400000pt;}
.x2_c00110{left:33.866667pt;}
.x5_c00110{left:35.066667pt;}
.x3_c00110{left:38.933333pt;}
.x4_c00110{left:40.533333pt;}
.x1_c00110{left:135.466667pt;}
.x8_c00110{left:202.101563pt;}
.x7_c00110{left:257.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_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_6a2ada95ff6d3cd47a9b42f4.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.480469;font-style:normal;font-weight:normal;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_e50386083848be386678f8a5.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00111{font-family:ff3_c00111;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00111{vertical-align:0.000000px;}
.ls2_c00111{letter-spacing:0.000000px;}
.ls0_c00111{letter-spacing:3.000000px;}
.ls1_c00111{letter-spacing:6.000000px;}
.sc__c00111{text-shadow:none;}
.sc0_c00111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00111{-webkit-text-stroke:0px transparent;}
.sc0_c00111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00111{word-spacing:-20.352000px;}
.ws0_c00111{word-spacing:-17.352000px;}
.ws2_c00111{word-spacing:0.000000px;}
._1a_c00111{margin-left:-18.144000px;}
._17_c00111{margin-left:-13.854000px;}
._19_c00111{margin-left:-12.582000px;}
._18_c00111{margin-left:-10.812000px;}
._16_c00111{margin-left:-9.756000px;}
._15_c00111{margin-left:-8.706000px;}
._c_c00111{margin-left:-7.194000px;}
._e_c00111{margin-left:-5.958000px;}
._11_c00111{margin-left:-4.236000px;}
._9_c00111{margin-left:-2.466000px;}
._f_c00111{margin-left:-1.314000px;}
._8_c00111{width:1.296000px;}
._a_c00111{width:2.376000px;}
._13_c00111{width:3.438000px;}
._12_c00111{width:4.896000px;}
._14_c00111{width:6.264000px;}
._1b_c00111{width:7.308000px;}
._d_c00111{width:8.784000px;}
._5_c00111{width:10.440000px;}
._b_c00111{width:11.448000px;}
._1c_c00111{width:12.486000px;}
._10_c00111{width:13.578000px;}
._3_c00111{width:15.672000px;}
._1_c00111{width:17.472000px;}
._6_c00111{width:18.504000px;}
._7_c00111{width:27.384000px;}
._4_c00111{width:31.200000px;}
._2_c00111{width:33.336000px;}
._0_c00111{width:43.224000px;}
.fc2_c00111{color:transparent;}
.fc1_c00111{color:rgb(128,128,128);}
.fc0_c00111{color:rgb(0,0,0);}
.fs0_c00111{font-size:24.000000px;}
.fs3_c00111{font-size:48.000000px;}
.fs2_c00111{font-size:66.000000px;}
.fs1_c00111{font-size:72.000000px;}
.y0_c00111{bottom:0.000000px;}
.y1f_c00111{bottom:3.105000px;}
.y1e_c00111{bottom:7.228357px;}
.y1d_c00111{bottom:42.630000px;}
.y1c_c00111{bottom:68.130000px;}
.y1b_c00111{bottom:93.480000px;}
.y1a_c00111{bottom:118.230000px;}
.y19_c00111{bottom:143.730000px;}
.y18_c00111{bottom:169.080000px;}
.y17_c00111{bottom:194.730000px;}
.y16_c00111{bottom:219.030000px;}
.y15_c00111{bottom:244.380000px;}
.y14_c00111{bottom:269.280000px;}
.y13_c00111{bottom:294.330000px;}
.y12_c00111{bottom:318.630000px;}
.y11_c00111{bottom:343.230000px;}
.y10_c00111{bottom:367.980000px;}
.yf_c00111{bottom:393.180000px;}
.ye_c00111{bottom:418.530000px;}
.yd_c00111{bottom:442.080000px;}
.yc_c00111{bottom:466.380000px;}
.yb_c00111{bottom:491.130000px;}
.ya_c00111{bottom:516.480000px;}
.y9_c00111{bottom:540.630000px;}
.y8_c00111{bottom:565.380000px;}
.y7_c00111{bottom:590.280000px;}
.y6_c00111{bottom:614.880000px;}
.y5_c00111{bottom:639.180000px;}
.y4_c00111{bottom:663.630000px;}
.y3_c00111{bottom:688.230000px;}
.y2_c00111{bottom:713.130000px;}
.y1_c00111{bottom:738.180000px;}
.h4_c00111{height:13.200074px;}
.h2_c00111{height:30.386719px;}
.h5_c00111{height:43.804688px;}
.h3_c00111{height:91.160156px;}
.h0_c00111{height:795.450000px;}
.h1_c00111{height:795.750000px;}
.w1_c00111{width:104.875500px;}
.w0_c00111{width:530.250000px;}
.x0_c00111{left:0.000000px;}
.x2_c00111{left:122.550000px;}
.x3_c00111{left:123.750000px;}
.x4_c00111{left:125.100000px;}
.x5_c00111{left:126.600000px;}
.x6_c00111{left:128.250000px;}
.x7_c00111{left:129.300000px;}
.x9_c00111{left:216.939240px;}
.x1_c00111{left:242.700000px;}
.x8_c00111{left:496.350000px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls2_c00111{letter-spacing:0.000000pt;}
.ls0_c00111{letter-spacing:2.666667pt;}
.ls1_c00111{letter-spacing:5.333333pt;}
.ws1_c00111{word-spacing:-18.090667pt;}
.ws0_c00111{word-spacing:-15.424000pt;}
.ws2_c00111{word-spacing:0.000000pt;}
._1a_c00111{margin-left:-16.128000pt;}
._17_c00111{margin-left:-12.314667pt;}
._19_c00111{margin-left:-11.184000pt;}
._18_c00111{margin-left:-9.610667pt;}
._16_c00111{margin-left:-8.672000pt;}
._15_c00111{margin-left:-7.738667pt;}
._c_c00111{margin-left:-6.394667pt;}
._e_c00111{margin-left:-5.296000pt;}
._11_c00111{margin-left:-3.765333pt;}
._9_c00111{margin-left:-2.192000pt;}
._f_c00111{margin-left:-1.168000pt;}
._8_c00111{width:1.152000pt;}
._a_c00111{width:2.112000pt;}
._13_c00111{width:3.056000pt;}
._12_c00111{width:4.352000pt;}
._14_c00111{width:5.568000pt;}
._1b_c00111{width:6.496000pt;}
._d_c00111{width:7.808000pt;}
._5_c00111{width:9.280000pt;}
._b_c00111{width:10.176000pt;}
._1c_c00111{width:11.098667pt;}
._10_c00111{width:12.069333pt;}
._3_c00111{width:13.930667pt;}
._1_c00111{width:15.530667pt;}
._6_c00111{width:16.448000pt;}
._7_c00111{width:24.341333pt;}
._4_c00111{width:27.733333pt;}
._2_c00111{width:29.632000pt;}
._0_c00111{width:38.421333pt;}
.fs0_c00111{font-size:21.333333pt;}
.fs3_c00111{font-size:42.666667pt;}
.fs2_c00111{font-size:58.666667pt;}
.fs1_c00111{font-size:64.000000pt;}
.y0_c00111{bottom:0.000000pt;}
.y1f_c00111{bottom:2.760000pt;}
.y1e_c00111{bottom:6.425206pt;}
.y1d_c00111{bottom:37.893333pt;}
.y1c_c00111{bottom:60.560000pt;}
.y1b_c00111{bottom:83.093333pt;}
.y1a_c00111{bottom:105.093333pt;}
.y19_c00111{bottom:127.760000pt;}
.y18_c00111{bottom:150.293333pt;}
.y17_c00111{bottom:173.093333pt;}
.y16_c00111{bottom:194.693333pt;}
.y15_c00111{bottom:217.226667pt;}
.y14_c00111{bottom:239.360000pt;}
.y13_c00111{bottom:261.626667pt;}
.y12_c00111{bottom:283.226667pt;}
.y11_c00111{bottom:305.093333pt;}
.y10_c00111{bottom:327.093333pt;}
.yf_c00111{bottom:349.493333pt;}
.ye_c00111{bottom:372.026667pt;}
.yd_c00111{bottom:392.960000pt;}
.yc_c00111{bottom:414.560000pt;}
.yb_c00111{bottom:436.560000pt;}
.ya_c00111{bottom:459.093333pt;}
.y9_c00111{bottom:480.560000pt;}
.y8_c00111{bottom:502.560000pt;}
.y7_c00111{bottom:524.693333pt;}
.y6_c00111{bottom:546.560000pt;}
.y5_c00111{bottom:568.160000pt;}
.y4_c00111{bottom:589.893333pt;}
.y3_c00111{bottom:611.760000pt;}
.y2_c00111{bottom:633.893333pt;}
.y1_c00111{bottom:656.160000pt;}
.h4_c00111{height:11.733399pt;}
.h2_c00111{height:27.010417pt;}
.h5_c00111{height:38.937500pt;}
.h3_c00111{height:81.031250pt;}
.h0_c00111{height:707.066667pt;}
.h1_c00111{height:707.333333pt;}
.w1_c00111{width:93.222667pt;}
.w0_c00111{width:471.333333pt;}
.x0_c00111{left:0.000000pt;}
.x2_c00111{left:108.933333pt;}
.x3_c00111{left:110.000000pt;}
.x4_c00111{left:111.200000pt;}
.x5_c00111{left:112.533333pt;}
.x6_c00111{left:114.000000pt;}
.x7_c00111{left:114.933333pt;}
.x9_c00111{left:192.834880pt;}
.x1_c00111{left:215.733333pt;}
.x8_c00111{left:441.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f268edf50409f21b065312ba.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00112;src:url('chunks/assets/font_61e20f8ae1cd0510f5c4be8a.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00112;src:url('chunks/assets/font_21028da5d3cf9f0296a517d1.woff2')format("woff");}.ff3_c00112{font-family:ff3_c00112;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00112;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00112{font-family:ff4_c00112;line-height:1.219238;font-style: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;}
.ls3_c00112{letter-spacing:0.000000px;}
.ls0_c00112{letter-spacing:0.621000px;}
.ls1_c00112{letter-spacing:3.000000px;}
.ls2_c00112{letter-spacing:12.300000px;}
.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:-33.192000px;}
.ws1_c00112{word-spacing:-17.250000px;}
.ws2_c00112{word-spacing:0.000000px;}
._13_c00112{margin-left:-13.848000px;}
._14_c00112{margin-left:-10.920000px;}
._12_c00112{margin-left:-8.952000px;}
._10_c00112{margin-left:-7.128000px;}
._2_c00112{margin-left:-6.048000px;}
._3_c00112{margin-left:-4.200000px;}
._11_c00112{margin-left:-3.132000px;}
._7_c00112{margin-left:-2.088000px;}
._e_c00112{margin-left:-1.008000px;}
._5_c00112{width:1.512000px;}
._8_c00112{width:2.640000px;}
._c_c00112{width:3.768000px;}
._9_c00112{width:4.800000px;}
._1_c00112{width:6.552000px;}
._a_c00112{width:8.028000px;}
._6_c00112{width:10.152000px;}
._0_c00112{width:11.340000px;}
._d_c00112{width:13.224000px;}
._b_c00112{width:15.336000px;}
._f_c00112{width:19.188000px;}
._15_c00112{width:38.280000px;}
._16_c00112{width:187.929000px;}
._4_c00112{width:352.296000px;}
.fc2_c00112{color:transparent;}
.fc1_c00112{color:rgb(128,128,128);}
.fc0_c00112{color:rgb(0,0,0);}
.fs5_c00112{font-size:48.000000px;}
.fs4_c00112{font-size:60.000000px;}
.fs3_c00112{font-size:63.000000px;}
.fs2_c00112{font-size:69.000000px;}
.fs1_c00112{font-size:72.000000px;}
.fs0_c00112{font-size:84.000000px;}
.y0_c00112{bottom:0.000000px;}
.y1f_c00112{bottom:3.105000px;}
.y1e_c00112{bottom:7.228355px;}
.y1d_c00112{bottom:53.535000px;}
.y1c_c00112{bottom:79.185000px;}
.y1b_c00112{bottom:103.935000px;}
.y1a_c00112{bottom:128.235000px;}
.y19_c00112{bottom:153.135000px;}
.y18_c00112{bottom:179.085000px;}
.y17_c00112{bottom:202.035000px;}
.y16_c00112{bottom:228.435000px;}
.y15_c00112{bottom:253.335000px;}
.y14_c00112{bottom:277.635000px;}
.y13_c00112{bottom:301.035000px;}
.y12_c00112{bottom:323.985000px;}
.y11_c00112{bottom:347.985000px;}
.y10_c00112{bottom:372.885000px;}
.yf_c00112{bottom:397.485000px;}
.ye_c00112{bottom:421.785000px;}
.yd_c00112{bottom:446.085000px;}
.yc_c00112{bottom:470.385000px;}
.yb_c00112{bottom:494.985000px;}
.ya_c00112{bottom:518.985000px;}
.y9_c00112{bottom:544.035000px;}
.y8_c00112{bottom:567.885000px;}
.y7_c00112{bottom:592.935000px;}
.y6_c00112{bottom:616.635000px;}
.y5_c00112{bottom:641.235000px;}
.y4_c00112{bottom:665.535000px;}
.y3_c00112{bottom:689.535000px;}
.y2_c00112{bottom:713.835000px;}
.y1_c00112{bottom:738.435000px;}
.h5_c00112{height:13.200074px;}
.h6_c00112{height:43.804688px;}
.h4_c00112{height:79.765137px;}
.h2_c00112{height:82.400391px;}
.h3_c00112{height:91.160156px;}
.h0_c00112{height:791.625000px;}
.h1_c00112{height:792.000000px;}
.w1_c00112{width:104.875500px;}
.w0_c00112{width:543.750000px;}
.x0_c00112{left:0.000000px;}
.x6_c00112{left:31.650000px;}
.x4_c00112{left:33.150000px;}
.x5_c00112{left:34.350000px;}
.x2_c00112{left:35.400000px;}
.x3_c00112{left:36.750000px;}
.x1_c00112{left:157.350000px;}
.x8_c00112{left:223.689240px;}
.x7_c00112{left:261.150000px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls3_c00112{letter-spacing:0.000000pt;}
.ls0_c00112{letter-spacing:0.552000pt;}
.ls1_c00112{letter-spacing:2.666667pt;}
.ls2_c00112{letter-spacing:10.933333pt;}
.ws0_c00112{word-spacing:-29.504000pt;}
.ws1_c00112{word-spacing:-15.333333pt;}
.ws2_c00112{word-spacing:0.000000pt;}
._13_c00112{margin-left:-12.309333pt;}
._14_c00112{margin-left:-9.706667pt;}
._12_c00112{margin-left:-7.957333pt;}
._10_c00112{margin-left:-6.336000pt;}
._2_c00112{margin-left:-5.376000pt;}
._3_c00112{margin-left:-3.733333pt;}
._11_c00112{margin-left:-2.784000pt;}
._7_c00112{margin-left:-1.856000pt;}
._e_c00112{margin-left:-0.896000pt;}
._5_c00112{width:1.344000pt;}
._8_c00112{width:2.346667pt;}
._c_c00112{width:3.349333pt;}
._9_c00112{width:4.266667pt;}
._1_c00112{width:5.824000pt;}
._a_c00112{width:7.136000pt;}
._6_c00112{width:9.024000pt;}
._0_c00112{width:10.080000pt;}
._d_c00112{width:11.754667pt;}
._b_c00112{width:13.632000pt;}
._f_c00112{width:17.056000pt;}
._15_c00112{width:34.026667pt;}
._16_c00112{width:167.048000pt;}
._4_c00112{width:313.152000pt;}
.fs5_c00112{font-size:42.666667pt;}
.fs4_c00112{font-size:53.333333pt;}
.fs3_c00112{font-size:56.000000pt;}
.fs2_c00112{font-size:61.333333pt;}
.fs1_c00112{font-size:64.000000pt;}
.fs0_c00112{font-size:74.666667pt;}
.y0_c00112{bottom:0.000000pt;}
.y1f_c00112{bottom:2.760000pt;}
.y1e_c00112{bottom:6.425204pt;}
.y1d_c00112{bottom:47.586667pt;}
.y1c_c00112{bottom:70.386667pt;}
.y1b_c00112{bottom:92.386667pt;}
.y1a_c00112{bottom:113.986667pt;}
.y19_c00112{bottom:136.120000pt;}
.y18_c00112{bottom:159.186667pt;}
.y17_c00112{bottom:179.586667pt;}
.y16_c00112{bottom:203.053333pt;}
.y15_c00112{bottom:225.186667pt;}
.y14_c00112{bottom:246.786667pt;}
.y13_c00112{bottom:267.586667pt;}
.y12_c00112{bottom:287.986667pt;}
.y11_c00112{bottom:309.320000pt;}
.y10_c00112{bottom:331.453333pt;}
.yf_c00112{bottom:353.320000pt;}
.ye_c00112{bottom:374.920000pt;}
.yd_c00112{bottom:396.520000pt;}
.yc_c00112{bottom:418.120000pt;}
.yb_c00112{bottom:439.986667pt;}
.ya_c00112{bottom:461.320000pt;}
.y9_c00112{bottom:483.586667pt;}
.y8_c00112{bottom:504.786667pt;}
.y7_c00112{bottom:527.053333pt;}
.y6_c00112{bottom:548.120000pt;}
.y5_c00112{bottom:569.986667pt;}
.y4_c00112{bottom:591.586667pt;}
.y3_c00112{bottom:612.920000pt;}
.y2_c00112{bottom:634.520000pt;}
.y1_c00112{bottom:656.386667pt;}
.h5_c00112{height:11.733399pt;}
.h6_c00112{height:38.937500pt;}
.h4_c00112{height:70.902344pt;}
.h2_c00112{height:73.244792pt;}
.h3_c00112{height:81.031250pt;}
.h0_c00112{height:703.666667pt;}
.h1_c00112{height:704.000000pt;}
.w1_c00112{width:93.222667pt;}
.w0_c00112{width:483.333333pt;}
.x0_c00112{left:0.000000pt;}
.x6_c00112{left:28.133333pt;}
.x4_c00112{left:29.466667pt;}
.x5_c00112{left:30.533333pt;}
.x2_c00112{left:31.466667pt;}
.x3_c00112{left:32.666667pt;}
.x1_c00112{left:139.866667pt;}
.x8_c00112{left:198.834880pt;}
.x7_c00112{left:232.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00113;src:url('chunks/assets/font_ff1b161e69e778696fcd0583.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00113;src:url('chunks/assets/font_0173785d04c479629346eef0.woff2')format("woff");}.ff3_c00113{font-family:ff3_c00113;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00113{font-family:ff4_c00113;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00113{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00113{vertical-align:0.000000px;}
.ls1_c00113{letter-spacing:0.000000px;}
.ls0_c00113{letter-spacing:3.000000px;}
.ls2_c00113{letter-spacing:6.000000px;}
.sc__c00113{text-shadow:none;}
.sc0_c00113{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00113{-webkit-text-stroke:0px transparent;}
.sc0_c00113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00113{word-spacing:-42.000000px;}
.ws1_c00113{word-spacing:0.000000px;}
._16_c00113{margin-left:-65.376000px;}
._19_c00113{margin-left:-38.520000px;}
._14_c00113{margin-left:-15.312000px;}
._10_c00113{margin-left:-13.248000px;}
._11_c00113{margin-left:-12.144000px;}
._e_c00113{margin-left:-11.046000px;}
._12_c00113{margin-left:-9.948000px;}
._f_c00113{margin-left:-8.928000px;}
._13_c00113{margin-left:-7.776000px;}
._7_c00113{margin-left:-6.360000px;}
._d_c00113{margin-left:-4.794000px;}
._9_c00113{margin-left:-3.576000px;}
._8_c00113{margin-left:-1.950000px;}
._2_c00113{width:1.746000px;}
._6_c00113{width:2.820000px;}
._3_c00113{width:3.948000px;}
._4_c00113{width:5.058000px;}
._0_c00113{width:6.318000px;}
._5_c00113{width:8.001000px;}
._b_c00113{width:9.420000px;}
._c_c00113{width:10.758000px;}
._18_c00113{width:11.772000px;}
._a_c00113{width:13.626000px;}
._15_c00113{width:14.976000px;}
._17_c00113{width:18.648000px;}
._1a_c00113{width:29.448000px;}
._1_c00113{width:290.859000px;}
.fc2_c00113{color:transparent;}
.fc1_c00113{color:rgb(128,128,128);}
.fc0_c00113{color:rgb(0,0,0);}
.fs5_c00113{font-size:48.000000px;}
.fs4_c00113{font-size:54.000000px;}
.fs2_c00113{font-size:63.000000px;}
.fs3_c00113{font-size:72.000000px;}
.fs0_c00113{font-size:81.000000px;}
.fs1_c00113{font-size:84.000000px;}
.y0_c00113{bottom:0.000000px;}
.y1f_c00113{bottom:3.105000px;}
.y1e_c00113{bottom:7.228363px;}
.y1d_c00113{bottom:42.450000px;}
.y1c_c00113{bottom:68.850000px;}
.y1b_c00113{bottom:94.500000px;}
.y1a_c00113{bottom:120.150000px;}
.y19_c00113{bottom:146.100000px;}
.y18_c00113{bottom:169.800000px;}
.y17_c00113{bottom:195.150000px;}
.y16_c00113{bottom:219.750000px;}
.y15_c00113{bottom:244.350000px;}
.y14_c00113{bottom:269.250000px;}
.y13_c00113{bottom:294.000000px;}
.y12_c00113{bottom:318.900000px;}
.y11_c00113{bottom:344.250000px;}
.y10_c00113{bottom:367.200000px;}
.yf_c00113{bottom:391.950000px;}
.ye_c00113{bottom:415.800000px;}
.yd_c00113{bottom:441.450000px;}
.yc_c00113{bottom:465.450000px;}
.yb_c00113{bottom:490.350000px;}
.ya_c00113{bottom:515.700000px;}
.y9_c00113{bottom:540.750000px;}
.y8_c00113{bottom:564.000000px;}
.y7_c00113{bottom:589.350000px;}
.y6_c00113{bottom:613.500000px;}
.y5_c00113{bottom:637.650000px;}
.y4_c00113{bottom:662.550000px;}
.y3_c00113{bottom:686.550000px;}
.y2_c00113{bottom:711.900000px;}
.y1_c00113{bottom:736.800000px;}
.h5_c00113{height:13.200074px;}
.h6_c00113{height:43.804688px;}
.h4_c00113{height:70.628906px;}
.h2_c00113{height:82.400391px;}
.h3_c00113{height:91.160156px;}
.h0_c00113{height:792.450000px;}
.h1_c00113{height:792.750000px;}
.w2_c00113{width:104.875500px;}
.w1_c00113{width:525.000000px;}
.w0_c00113{width:525.150000px;}
.x0_c00113{left:0.000000px;}
.x9_c00113{left:113.400000px;}
.x2_c00113{left:118.800000px;}
.x3_c00113{left:120.600000px;}
.x4_c00113{left:121.800000px;}
.x5_c00113{left:123.300000px;}
.x6_c00113{left:124.650000px;}
.x7_c00113{left:126.000000px;}
.x8_c00113{left:128.550000px;}
.xa_c00113{left:129.900000px;}
.x1_c00113{left:141.300000px;}
.xc_c00113{left:214.389267px;}
.xb_c00113{left:463.350000px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls1_c00113{letter-spacing:0.000000pt;}
.ls0_c00113{letter-spacing:2.666667pt;}
.ls2_c00113{letter-spacing:5.333333pt;}
.ws0_c00113{word-spacing:-37.333333pt;}
.ws1_c00113{word-spacing:0.000000pt;}
._16_c00113{margin-left:-58.112000pt;}
._19_c00113{margin-left:-34.240000pt;}
._14_c00113{margin-left:-13.610667pt;}
._10_c00113{margin-left:-11.776000pt;}
._11_c00113{margin-left:-10.794667pt;}
._e_c00113{margin-left:-9.818667pt;}
._12_c00113{margin-left:-8.842667pt;}
._f_c00113{margin-left:-7.936000pt;}
._13_c00113{margin-left:-6.912000pt;}
._7_c00113{margin-left:-5.653333pt;}
._d_c00113{margin-left:-4.261333pt;}
._9_c00113{margin-left:-3.178667pt;}
._8_c00113{margin-left:-1.733333pt;}
._2_c00113{width:1.552000pt;}
._6_c00113{width:2.506667pt;}
._3_c00113{width:3.509333pt;}
._4_c00113{width:4.496000pt;}
._0_c00113{width:5.616000pt;}
._5_c00113{width:7.112000pt;}
._b_c00113{width:8.373333pt;}
._c_c00113{width:9.562667pt;}
._18_c00113{width:10.464000pt;}
._a_c00113{width:12.112000pt;}
._15_c00113{width:13.312000pt;}
._17_c00113{width:16.576000pt;}
._1a_c00113{width:26.176000pt;}
._1_c00113{width:258.541333pt;}
.fs5_c00113{font-size:42.666667pt;}
.fs4_c00113{font-size:48.000000pt;}
.fs2_c00113{font-size:56.000000pt;}
.fs3_c00113{font-size:64.000000pt;}
.fs0_c00113{font-size:72.000000pt;}
.fs1_c00113{font-size:74.666667pt;}
.y0_c00113{bottom:0.000000pt;}
.y1f_c00113{bottom:2.760000pt;}
.y1e_c00113{bottom:6.425212pt;}
.y1d_c00113{bottom:37.733333pt;}
.y1c_c00113{bottom:61.200000pt;}
.y1b_c00113{bottom:84.000000pt;}
.y1a_c00113{bottom:106.800000pt;}
.y19_c00113{bottom:129.866667pt;}
.y18_c00113{bottom:150.933333pt;}
.y17_c00113{bottom:173.466667pt;}
.y16_c00113{bottom:195.333333pt;}
.y15_c00113{bottom:217.200000pt;}
.y14_c00113{bottom:239.333333pt;}
.y13_c00113{bottom:261.333333pt;}
.y12_c00113{bottom:283.466667pt;}
.y11_c00113{bottom:306.000000pt;}
.y10_c00113{bottom:326.400000pt;}
.yf_c00113{bottom:348.400000pt;}
.ye_c00113{bottom:369.600000pt;}
.yd_c00113{bottom:392.400000pt;}
.yc_c00113{bottom:413.733333pt;}
.yb_c00113{bottom:435.866667pt;}
.ya_c00113{bottom:458.400000pt;}
.y9_c00113{bottom:480.666667pt;}
.y8_c00113{bottom:501.333333pt;}
.y7_c00113{bottom:523.866667pt;}
.y6_c00113{bottom:545.333333pt;}
.y5_c00113{bottom:566.800000pt;}
.y4_c00113{bottom:588.933333pt;}
.y3_c00113{bottom:610.266667pt;}
.y2_c00113{bottom:632.800000pt;}
.y1_c00113{bottom:654.933333pt;}
.h5_c00113{height:11.733399pt;}
.h6_c00113{height:38.937500pt;}
.h4_c00113{height:62.781250pt;}
.h2_c00113{height:73.244792pt;}
.h3_c00113{height:81.031250pt;}
.h0_c00113{height:704.400000pt;}
.h1_c00113{height:704.666667pt;}
.w2_c00113{width:93.222667pt;}
.w1_c00113{width:466.666667pt;}
.w0_c00113{width:466.800000pt;}
.x0_c00113{left:0.000000pt;}
.x9_c00113{left:100.800000pt;}
.x2_c00113{left:105.600000pt;}
.x3_c00113{left:107.200000pt;}
.x4_c00113{left:108.266667pt;}
.x5_c00113{left:109.600000pt;}
.x6_c00113{left:110.800000pt;}
.x7_c00113{left:112.000000pt;}
.x8_c00113{left:114.266667pt;}
.xa_c00113{left:115.466667pt;}
.x1_c00113{left:125.600000pt;}
.xc_c00113{left:190.568237pt;}
.xb_c00113{left:411.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4c0fb84f649bd051a0f329cd.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.480469;font-style:normal;font-weight:normal;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_450ec028d03939080d4911c6.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00114;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00114{font-family:ff3_c00114;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00114;src:url('chunks/assets/font_4d89b32696c8a0aa25cdd9c9.woff2')format("woff");}.ff4_c00114{font-family:ff4_c00114;line-height:1.568848;font-style:normal;font-weight:normal;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_12268a57d6b80d8447e9d9b5.woff2')format("woff");}.ff5_c00114{font-family:ff5_c00114;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00114{font-family:ff6_c00114;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00114{vertical-align:0.000000px;}
.ls4_c00114{letter-spacing:-15.000000px;}
.ls2_c00114{letter-spacing:0.000000px;}
.ls1_c00114{letter-spacing:3.000000px;}
.ls0_c00114{letter-spacing:4.032000px;}
.ls3_c00114{letter-spacing:6.000000px;}
.sc__c00114{text-shadow:none;}
.sc0_c00114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00114{-webkit-text-stroke:0px transparent;}
.sc0_c00114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00114{word-spacing:-34.320000px;}
.ws0_c00114{word-spacing:-17.352000px;}
.ws2_c00114{word-spacing:0.000000px;}
._17_c00114{margin-left:-28.224000px;}
._13_c00114{margin-left:-11.556000px;}
._12_c00114{margin-left:-9.024000px;}
._d_c00114{margin-left:-7.728000px;}
._10_c00114{margin-left:-6.000000px;}
._e_c00114{margin-left:-4.212000px;}
._8_c00114{margin-left:-2.700000px;}
._7_c00114{margin-left:-1.152000px;}
._c_c00114{width:1.464000px;}
._b_c00114{width:2.484000px;}
._a_c00114{width:3.888000px;}
._9_c00114{width:5.256000px;}
._11_c00114{width:6.528000px;}
._5_c00114{width:7.848000px;}
._4_c00114{width:9.288000px;}
._16_c00114{width:10.440000px;}
._f_c00114{width:11.604000px;}
._1_c00114{width:13.104000px;}
._2_c00114{width:15.048000px;}
._3_c00114{width:16.200000px;}
._15_c00114{width:18.780000px;}
._0_c00114{width:21.672000px;}
._14_c00114{width:113.760000px;}
._6_c00114{width:349.848000px;}
._18_c00114{width:402.732000px;}
.fc2_c00114{color:transparent;}
.fc1_c00114{color:rgb(128,128,128);}
.fc0_c00114{color:rgb(0,0,0);}
.fs4_c00114{font-size:48.000000px;}
.fs2_c00114{font-size:54.000000px;}
.fs3_c00114{font-size:69.000000px;}
.fs0_c00114{font-size:72.000000px;}
.fs1_c00114{font-size:78.000000px;}
.y0_c00114{bottom:0.000000px;}
.y1f_c00114{bottom:3.105000px;}
.y1e_c00114{bottom:7.228363px;}
.y1d_c00114{bottom:46.950000px;}
.y1c_c00114{bottom:73.950000px;}
.y1b_c00114{bottom:98.850000px;}
.y1a_c00114{bottom:122.550000px;}
.y19_c00114{bottom:147.900000px;}
.y18_c00114{bottom:173.400000px;}
.y17_c00114{bottom:199.350000px;}
.y16_c00114{bottom:224.100000px;}
.y15_c00114{bottom:248.700000px;}
.y14_c00114{bottom:272.400000px;}
.y13_c00114{bottom:295.350000px;}
.y12_c00114{bottom:319.950000px;}
.y11_c00114{bottom:343.950000px;}
.y10_c00114{bottom:368.550000px;}
.yf_c00114{bottom:393.150000px;}
.ye_c00114{bottom:418.050000px;}
.yd_c00114{bottom:442.500000px;}
.yc_c00114{bottom:467.700000px;}
.yb_c00114{bottom:492.000000px;}
.ya_c00114{bottom:515.400000px;}
.y9_c00114{bottom:541.050000px;}
.y8_c00114{bottom:567.000000px;}
.y7_c00114{bottom:590.850000px;}
.y6_c00114{bottom:616.500000px;}
.y5_c00114{bottom:639.900000px;}
.y4_c00114{bottom:664.200000px;}
.y3_c00114{bottom:689.100000px;}
.y2_c00114{bottom:712.800000px;}
.y1_c00114{bottom:738.450000px;}
.h5_c00114{height:13.200074px;}
.h6_c00114{height:43.804688px;}
.h2_c00114{height:84.269531px;}
.h4_c00114{height:87.361816px;}
.h3_c00114{height:91.160156px;}
.h1_c00114{height:788.250000px;}
.h0_c00114{height:788.400000px;}
.w2_c00114{width:104.875500px;}
.w0_c00114{width:542.175000px;}
.w1_c00114{width:542.250000px;}
.x0_c00114{left:0.000000px;}
.x5_c00114{left:37.500000px;}
.x2_c00114{left:39.150000px;}
.x3_c00114{left:40.500000px;}
.x4_c00114{left:42.150000px;}
.x1_c00114{left:158.250000px;}
.x7_c00114{left:222.901749px;}
.x6_c00114{left:285.150000px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.ls4_c00114{letter-spacing:-13.333333pt;}
.ls2_c00114{letter-spacing:0.000000pt;}
.ls1_c00114{letter-spacing:2.666667pt;}
.ls0_c00114{letter-spacing:3.584000pt;}
.ls3_c00114{letter-spacing:5.333333pt;}
.ws1_c00114{word-spacing:-30.506667pt;}
.ws0_c00114{word-spacing:-15.424000pt;}
.ws2_c00114{word-spacing:0.000000pt;}
._17_c00114{margin-left:-25.088000pt;}
._13_c00114{margin-left:-10.272000pt;}
._12_c00114{margin-left:-8.021333pt;}
._d_c00114{margin-left:-6.869333pt;}
._10_c00114{margin-left:-5.333333pt;}
._e_c00114{margin-left:-3.744000pt;}
._8_c00114{margin-left:-2.400000pt;}
._7_c00114{margin-left:-1.024000pt;}
._c_c00114{width:1.301333pt;}
._b_c00114{width:2.208000pt;}
._a_c00114{width:3.456000pt;}
._9_c00114{width:4.672000pt;}
._11_c00114{width:5.802667pt;}
._5_c00114{width:6.976000pt;}
._4_c00114{width:8.256000pt;}
._16_c00114{width:9.280000pt;}
._f_c00114{width:10.314667pt;}
._1_c00114{width:11.648000pt;}
._2_c00114{width:13.376000pt;}
._3_c00114{width:14.400000pt;}
._15_c00114{width:16.693333pt;}
._0_c00114{width:19.264000pt;}
._14_c00114{width:101.120000pt;}
._6_c00114{width:310.976000pt;}
._18_c00114{width:357.984000pt;}
.fs4_c00114{font-size:42.666667pt;}
.fs2_c00114{font-size:48.000000pt;}
.fs3_c00114{font-size:61.333333pt;}
.fs0_c00114{font-size:64.000000pt;}
.fs1_c00114{font-size:69.333333pt;}
.y0_c00114{bottom:0.000000pt;}
.y1f_c00114{bottom:2.760000pt;}
.y1e_c00114{bottom:6.425212pt;}
.y1d_c00114{bottom:41.733333pt;}
.y1c_c00114{bottom:65.733333pt;}
.y1b_c00114{bottom:87.866667pt;}
.y1a_c00114{bottom:108.933333pt;}
.y19_c00114{bottom:131.466667pt;}
.y18_c00114{bottom:154.133333pt;}
.y17_c00114{bottom:177.200000pt;}
.y16_c00114{bottom:199.200000pt;}
.y15_c00114{bottom:221.066667pt;}
.y14_c00114{bottom:242.133333pt;}
.y13_c00114{bottom:262.533333pt;}
.y12_c00114{bottom:284.400000pt;}
.y11_c00114{bottom:305.733333pt;}
.y10_c00114{bottom:327.600000pt;}
.yf_c00114{bottom:349.466667pt;}
.ye_c00114{bottom:371.600000pt;}
.yd_c00114{bottom:393.333333pt;}
.yc_c00114{bottom:415.733333pt;}
.yb_c00114{bottom:437.333333pt;}
.ya_c00114{bottom:458.133333pt;}
.y9_c00114{bottom:480.933333pt;}
.y8_c00114{bottom:504.000000pt;}
.y7_c00114{bottom:525.200000pt;}
.y6_c00114{bottom:548.000000pt;}
.y5_c00114{bottom:568.800000pt;}
.y4_c00114{bottom:590.400000pt;}
.y3_c00114{bottom:612.533333pt;}
.y2_c00114{bottom:633.600000pt;}
.y1_c00114{bottom:656.400000pt;}
.h5_c00114{height:11.733399pt;}
.h6_c00114{height:38.937500pt;}
.h2_c00114{height:74.906250pt;}
.h4_c00114{height:77.654948pt;}
.h3_c00114{height:81.031250pt;}
.h1_c00114{height:700.666667pt;}
.h0_c00114{height:700.800000pt;}
.w2_c00114{width:93.222667pt;}
.w0_c00114{width:481.933333pt;}
.w1_c00114{width:482.000000pt;}
.x0_c00114{left:0.000000pt;}
.x5_c00114{left:33.333333pt;}
.x2_c00114{left:34.800000pt;}
.x3_c00114{left:36.000000pt;}
.x4_c00114{left:37.466667pt;}
.x1_c00114{left:140.666667pt;}
.x7_c00114{left:198.134888pt;}
.x6_c00114{left:253.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_492ce4cc4777d0df513f33fb.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00115;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00115;src:url('chunks/assets/font_7a9eb5f0b5162dd6c596cfe5.woff2')format("woff");}.ff3_c00115{font-family:ff3_c00115;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00115{font-family:ff4_c00115;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00115{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00115{vertical-align:0.000000px;}
.ls3_c00115{letter-spacing:0.000000px;}
.ls2_c00115{letter-spacing:2.160000px;}
.ls0_c00115{letter-spacing:3.000000px;}
.ls1_c00115{letter-spacing:5.037000px;}
.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;}
}
.ws0_c00115{word-spacing:-21.666000px;}
.ws2_c00115{word-spacing:-20.352000px;}
.ws1_c00115{word-spacing:-16.629000px;}
.ws3_c00115{word-spacing:0.000000px;}
._2_c00115{margin-left:-16.464000px;}
._12_c00115{margin-left:-14.313000px;}
._13_c00115{margin-left:-11.826000px;}
._c_c00115{margin-left:-10.614000px;}
._11_c00115{margin-left:-9.072000px;}
._d_c00115{margin-left:-7.038000px;}
._6_c00115{margin-left:-5.784000px;}
._b_c00115{margin-left:-4.020000px;}
._8_c00115{margin-left:-2.346000px;}
._4_c00115{margin-left:-1.224000px;}
._1_c00115{width:1.428000px;}
._0_c00115{width:2.940000px;}
._3_c00115{width:4.872000px;}
._10_c00115{width:5.886000px;}
._7_c00115{width:6.888000px;}
._a_c00115{width:8.586000px;}
._9_c00115{width:10.278000px;}
._f_c00115{width:11.448000px;}
._e_c00115{width:12.966000px;}
._5_c00115{width:17.208000px;}
.fc2_c00115{color:transparent;}
.fc1_c00115{color:rgb(128,128,128);}
.fc0_c00115{color:rgb(0,0,0);}
.fs4_c00115{font-size:48.000000px;}
.fs2_c00115{font-size:63.000000px;}
.fs3_c00115{font-size:69.000000px;}
.fs1_c00115{font-size:72.000000px;}
.fs0_c00115{font-size:84.000000px;}
.y0_c00115{bottom:0.000000px;}
.y1f_c00115{bottom:3.105000px;}
.y1e_c00115{bottom:7.228357px;}
.y1d_c00115{bottom:54.330000px;}
.y1c_c00115{bottom:76.680000px;}
.y1b_c00115{bottom:102.330000px;}
.y1a_c00115{bottom:127.530000px;}
.y19_c00115{bottom:152.580000px;}
.y18_c00115{bottom:178.230000px;}
.y17_c00115{bottom:202.530000px;}
.y16_c00115{bottom:227.430000px;}
.y15_c00115{bottom:251.880000px;}
.y14_c00115{bottom:276.180000px;}
.y13_c00115{bottom:302.430000px;}
.y12_c00115{bottom:325.680000px;}
.y11_c00115{bottom:350.430000px;}
.y10_c00115{bottom:374.730000px;}
.yf_c00115{bottom:399.630000px;}
.ye_c00115{bottom:425.280000px;}
.yd_c00115{bottom:448.830000px;}
.yc_c00115{bottom:473.280000px;}
.yb_c00115{bottom:497.880000px;}
.ya_c00115{bottom:522.180000px;}
.y9_c00115{bottom:547.080000px;}
.y8_c00115{bottom:571.380000px;}
.y7_c00115{bottom:595.680000px;}
.y6_c00115{bottom:619.980000px;}
.y5_c00115{bottom:644.580000px;}
.y4_c00115{bottom:668.880000px;}
.y3_c00115{bottom:692.880000px;}
.y2_c00115{bottom:717.630000px;}
.y1_c00115{bottom:743.580000px;}
.h4_c00115{height:13.200074px;}
.h5_c00115{height:43.804688px;}
.h2_c00115{height:82.441406px;}
.h3_c00115{height:91.160156px;}
.h0_c00115{height:795.450000px;}
.h1_c00115{height:795.750000px;}
.w2_c00115{width:104.875500px;}
.w1_c00115{width:533.250000px;}
.w0_c00115{width:533.550000px;}
.x0_c00115{left:0.000000px;}
.x4_c00115{left:119.850000px;}
.x3_c00115{left:121.800000px;}
.x2_c00115{left:122.850000px;}
.x6_c00115{left:218.589249px;}
.x1_c00115{left:240.300000px;}
.x5_c00115{left:482.250000px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls3_c00115{letter-spacing:0.000000pt;}
.ls2_c00115{letter-spacing:1.920000pt;}
.ls0_c00115{letter-spacing:2.666667pt;}
.ls1_c00115{letter-spacing:4.477333pt;}
.ws0_c00115{word-spacing:-19.258667pt;}
.ws2_c00115{word-spacing:-18.090667pt;}
.ws1_c00115{word-spacing:-14.781333pt;}
.ws3_c00115{word-spacing:0.000000pt;}
._2_c00115{margin-left:-14.634667pt;}
._12_c00115{margin-left:-12.722667pt;}
._13_c00115{margin-left:-10.512000pt;}
._c_c00115{margin-left:-9.434667pt;}
._11_c00115{margin-left:-8.064000pt;}
._d_c00115{margin-left:-6.256000pt;}
._6_c00115{margin-left:-5.141333pt;}
._b_c00115{margin-left:-3.573333pt;}
._8_c00115{margin-left:-2.085333pt;}
._4_c00115{margin-left:-1.088000pt;}
._1_c00115{width:1.269333pt;}
._0_c00115{width:2.613333pt;}
._3_c00115{width:4.330667pt;}
._10_c00115{width:5.232000pt;}
._7_c00115{width:6.122667pt;}
._a_c00115{width:7.632000pt;}
._9_c00115{width:9.136000pt;}
._f_c00115{width:10.176000pt;}
._e_c00115{width:11.525333pt;}
._5_c00115{width:15.296000pt;}
.fs4_c00115{font-size:42.666667pt;}
.fs2_c00115{font-size:56.000000pt;}
.fs3_c00115{font-size:61.333333pt;}
.fs1_c00115{font-size:64.000000pt;}
.fs0_c00115{font-size:74.666667pt;}
.y0_c00115{bottom:0.000000pt;}
.y1f_c00115{bottom:2.760000pt;}
.y1e_c00115{bottom:6.425206pt;}
.y1d_c00115{bottom:48.293333pt;}
.y1c_c00115{bottom:68.160000pt;}
.y1b_c00115{bottom:90.960000pt;}
.y1a_c00115{bottom:113.360000pt;}
.y19_c00115{bottom:135.626667pt;}
.y18_c00115{bottom:158.426667pt;}
.y17_c00115{bottom:180.026667pt;}
.y16_c00115{bottom:202.160000pt;}
.y15_c00115{bottom:223.893333pt;}
.y14_c00115{bottom:245.493333pt;}
.y13_c00115{bottom:268.826667pt;}
.y12_c00115{bottom:289.493333pt;}
.y11_c00115{bottom:311.493333pt;}
.y10_c00115{bottom:333.093333pt;}
.yf_c00115{bottom:355.226667pt;}
.ye_c00115{bottom:378.026667pt;}
.yd_c00115{bottom:398.960000pt;}
.yc_c00115{bottom:420.693333pt;}
.yb_c00115{bottom:442.560000pt;}
.ya_c00115{bottom:464.160000pt;}
.y9_c00115{bottom:486.293333pt;}
.y8_c00115{bottom:507.893333pt;}
.y7_c00115{bottom:529.493333pt;}
.y6_c00115{bottom:551.093333pt;}
.y5_c00115{bottom:572.960000pt;}
.y4_c00115{bottom:594.560000pt;}
.y3_c00115{bottom:615.893333pt;}
.y2_c00115{bottom:637.893333pt;}
.y1_c00115{bottom:660.960000pt;}
.h4_c00115{height:11.733399pt;}
.h5_c00115{height:38.937500pt;}
.h2_c00115{height:73.281250pt;}
.h3_c00115{height:81.031250pt;}
.h0_c00115{height:707.066667pt;}
.h1_c00115{height:707.333333pt;}
.w2_c00115{width:93.222667pt;}
.w1_c00115{width:474.000000pt;}
.w0_c00115{width:474.266667pt;}
.x0_c00115{left:0.000000pt;}
.x4_c00115{left:106.533333pt;}
.x3_c00115{left:108.266667pt;}
.x2_c00115{left:109.200000pt;}
.x6_c00115{left:194.301554pt;}
.x1_c00115{left:213.600000pt;}
.x5_c00115{left:428.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_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_c8e0847efa4fd4613da91fd2.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.480469;font-style:normal;font-weight:normal;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_f1b1c2698da5b80a649b1e65.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:1.480469;font-style:normal;font-weight:normal;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_f22839d54d3720ae2ded2548.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;line-height:1.568848;font-style:normal;font-weight:normal;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_3a7abde25795225ef3ae550a.woff2')format("woff");}.ff4_c00116{font-family:ff4_c00116;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00116;src:url('chunks/assets/font_85b30bd70db1770f03f198d5.woff2')format("woff");}.ff5_c00116{font-family:ff5_c00116;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00116;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00116{font-family:ff6_c00116;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00116{vertical-align:0.000000px;}
.ls8_c00116{letter-spacing:-15.000000px;}
.ls7_c00116{letter-spacing:0.000000px;}
.ls0_c00116{letter-spacing:1.872000px;}
.ls6_c00116{letter-spacing:2.229000px;}
.ls2_c00116{letter-spacing:3.000000px;}
.ls1_c00116{letter-spacing:6.000000px;}
.ls5_c00116{letter-spacing:7.371000px;}
.ls4_c00116{letter-spacing:8.616000px;}
.ls3_c00116{letter-spacing:20.817000px;}
.sc__c00116{text-shadow:none;}
.sc0_c00116{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00116{-webkit-text-stroke:0px transparent;}
.sc0_c00116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00116{word-spacing:-33.000000px;}
.ws2_c00116{word-spacing:-21.183000px;}
.ws1_c00116{word-spacing:-20.352000px;}
.ws4_c00116{word-spacing:-17.352000px;}
.ws3_c00116{word-spacing:-16.629000px;}
.ws5_c00116{word-spacing:0.000000px;}
._17_c00116{margin-left:-13.806000px;}
._12_c00116{margin-left:-12.486000px;}
._16_c00116{margin-left:-10.800000px;}
._15_c00116{margin-left:-9.558000px;}
._11_c00116{margin-left:-7.710000px;}
._13_c00116{margin-left:-6.522000px;}
._b_c00116{margin-left:-5.343000px;}
._9_c00116{margin-left:-3.681000px;}
._c_c00116{margin-left:-2.664000px;}
._8_c00116{margin-left:-1.152000px;}
._10_c00116{width:1.080000px;}
._5_c00116{width:2.088000px;}
._3_c00116{width:3.096000px;}
._4_c00116{width:4.176000px;}
._6_c00116{width:5.328000px;}
._a_c00116{width:6.939000px;}
._f_c00116{width:8.937000px;}
._18_c00116{width:10.098000px;}
._14_c00116{width:11.406000px;}
._d_c00116{width:13.344000px;}
._e_c00116{width:14.433000px;}
._1_c00116{width:15.624000px;}
._2_c00116{width:19.440000px;}
._19_c00116{width:21.660000px;}
._0_c00116{width:25.560000px;}
._7_c00116{width:380.640000px;}
.fc2_c00116{color:transparent;}
.fc1_c00116{color:rgb(128,128,128);}
.fc0_c00116{color:rgb(0,0,0);}
.fs5_c00116{font-size:48.000000px;}
.fs4_c00116{font-size:60.000000px;}
.fs1_c00116{font-size:63.000000px;}
.fs2_c00116{font-size:66.000000px;}
.fs3_c00116{font-size:69.000000px;}
.fs0_c00116{font-size:72.000000px;}
.y0_c00116{bottom:0.000000px;}
.y1e_c00116{bottom:3.105000px;}
.y1d_c00116{bottom:7.228355px;}
.y1c_c00116{bottom:61.635000px;}
.y1b_c00116{bottom:86.085000px;}
.y1a_c00116{bottom:113.085000px;}
.y19_c00116{bottom:132.885000px;}
.y18_c00116{bottom:161.535000px;}
.y17_c00116{bottom:187.185000px;}
.y16_c00116{bottom:212.535000px;}
.y15_c00116{bottom:236.235000px;}
.y14_c00116{bottom:259.485000px;}
.y13_c00116{bottom:285.885000px;}
.y12_c00116{bottom:310.185000px;}
.y11_c00116{bottom:334.335000px;}
.y10_c00116{bottom:358.785000px;}
.yf_c00116{bottom:384.435000px;}
.ye_c00116{bottom:409.035000px;}
.yd_c00116{bottom:433.335000px;}
.yc_c00116{bottom:458.235000px;}
.yb_c00116{bottom:483.585000px;}
.ya_c00116{bottom:507.135000px;}
.y9_c00116{bottom:532.485000px;}
.y8_c00116{bottom:557.835000px;}
.y7_c00116{bottom:581.535000px;}
.y6_c00116{bottom:606.735000px;}
.y5_c00116{bottom:630.735000px;}
.y4_c00116{bottom:655.335000px;}
.y3_c00116{bottom:679.935000px;}
.y2_c00116{bottom:704.685000px;}
.y1_c00116{bottom:729.285000px;}
.h4_c00116{height:13.200074px;}
.h5_c00116{height:43.804688px;}
.h2_c00116{height:84.269531px;}
.h3_c00116{height:91.160156px;}
.h1_c00116{height:787.500000px;}
.h0_c00116{height:787.575000px;}
.w2_c00116{width:104.875500px;}
.w1_c00116{width:554.250000px;}
.w0_c00116{width:554.550000px;}
.x0_c00116{left:0.000000px;}
.x2_c00116{left:38.550000px;}
.x3_c00116{left:40.200000px;}
.x4_c00116{left:41.250000px;}
.x5_c00116{left:42.300000px;}
.x1_c00116{left:153.150000px;}
.x6_c00116{left:229.089249px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls8_c00116{letter-spacing:-13.333333pt;}
.ls7_c00116{letter-spacing:0.000000pt;}
.ls0_c00116{letter-spacing:1.664000pt;}
.ls6_c00116{letter-spacing:1.981333pt;}
.ls2_c00116{letter-spacing:2.666667pt;}
.ls1_c00116{letter-spacing:5.333333pt;}
.ls5_c00116{letter-spacing:6.552000pt;}
.ls4_c00116{letter-spacing:7.658667pt;}
.ls3_c00116{letter-spacing:18.504000pt;}
.ws0_c00116{word-spacing:-29.333333pt;}
.ws2_c00116{word-spacing:-18.829333pt;}
.ws1_c00116{word-spacing:-18.090667pt;}
.ws4_c00116{word-spacing:-15.424000pt;}
.ws3_c00116{word-spacing:-14.781333pt;}
.ws5_c00116{word-spacing:0.000000pt;}
._17_c00116{margin-left:-12.272000pt;}
._12_c00116{margin-left:-11.098667pt;}
._16_c00116{margin-left:-9.600000pt;}
._15_c00116{margin-left:-8.496000pt;}
._11_c00116{margin-left:-6.853333pt;}
._13_c00116{margin-left:-5.797333pt;}
._b_c00116{margin-left:-4.749333pt;}
._9_c00116{margin-left:-3.272000pt;}
._c_c00116{margin-left:-2.368000pt;}
._8_c00116{margin-left:-1.024000pt;}
._10_c00116{width:0.960000pt;}
._5_c00116{width:1.856000pt;}
._3_c00116{width:2.752000pt;}
._4_c00116{width:3.712000pt;}
._6_c00116{width:4.736000pt;}
._a_c00116{width:6.168000pt;}
._f_c00116{width:7.944000pt;}
._18_c00116{width:8.976000pt;}
._14_c00116{width:10.138667pt;}
._d_c00116{width:11.861333pt;}
._e_c00116{width:12.829333pt;}
._1_c00116{width:13.888000pt;}
._2_c00116{width:17.280000pt;}
._19_c00116{width:19.253333pt;}
._0_c00116{width:22.720000pt;}
._7_c00116{width:338.346667pt;}
.fs5_c00116{font-size:42.666667pt;}
.fs4_c00116{font-size:53.333333pt;}
.fs1_c00116{font-size:56.000000pt;}
.fs2_c00116{font-size:58.666667pt;}
.fs3_c00116{font-size:61.333333pt;}
.fs0_c00116{font-size:64.000000pt;}
.y0_c00116{bottom:0.000000pt;}
.y1e_c00116{bottom:2.760000pt;}
.y1d_c00116{bottom:6.425204pt;}
.y1c_c00116{bottom:54.786667pt;}
.y1b_c00116{bottom:76.520000pt;}
.y1a_c00116{bottom:100.520000pt;}
.y19_c00116{bottom:118.120000pt;}
.y18_c00116{bottom:143.586667pt;}
.y17_c00116{bottom:166.386667pt;}
.y16_c00116{bottom:188.920000pt;}
.y15_c00116{bottom:209.986667pt;}
.y14_c00116{bottom:230.653333pt;}
.y13_c00116{bottom:254.120000pt;}
.y12_c00116{bottom:275.720000pt;}
.y11_c00116{bottom:297.186667pt;}
.y10_c00116{bottom:318.920000pt;}
.yf_c00116{bottom:341.720000pt;}
.ye_c00116{bottom:363.586667pt;}
.yd_c00116{bottom:385.186667pt;}
.yc_c00116{bottom:407.320000pt;}
.yb_c00116{bottom:429.853333pt;}
.ya_c00116{bottom:450.786667pt;}
.y9_c00116{bottom:473.320000pt;}
.y8_c00116{bottom:495.853333pt;}
.y7_c00116{bottom:516.920000pt;}
.y6_c00116{bottom:539.320000pt;}
.y5_c00116{bottom:560.653333pt;}
.y4_c00116{bottom:582.520000pt;}
.y3_c00116{bottom:604.386667pt;}
.y2_c00116{bottom:626.386667pt;}
.y1_c00116{bottom:648.253333pt;}
.h4_c00116{height:11.733399pt;}
.h5_c00116{height:38.937500pt;}
.h2_c00116{height:74.906250pt;}
.h3_c00116{height:81.031250pt;}
.h1_c00116{height:700.000000pt;}
.h0_c00116{height:700.066667pt;}
.w2_c00116{width:93.222667pt;}
.w1_c00116{width:492.666667pt;}
.w0_c00116{width:492.933333pt;}
.x0_c00116{left:0.000000pt;}
.x2_c00116{left:34.266667pt;}
.x3_c00116{left:35.733333pt;}
.x4_c00116{left:36.666667pt;}
.x5_c00116{left:37.600000pt;}
.x1_c00116{left:136.133333pt;}
.x6_c00116{left:203.634888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6c08422885fe558eea759c76.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.480469;font-style:normal;font-weight:normal;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_792897461cd717a9c911a3fc.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:1.568848;font-style:normal;font-weight:normal;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_12268a57d6b80d8447e9d9b5.woff2')format("woff");}.ff3_c00117{font-family:ff3_c00117;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00117{font-family:ff4_c00117;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.ls3_c00117{letter-spacing:-15.000000px;}
.ls1_c00117{letter-spacing:0.000000px;}
.ls0_c00117{letter-spacing:3.000000px;}
.ls2_c00117{letter-spacing:9.000000px;}
.sc__c00117{text-shadow:none;}
.sc0_c00117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
.sc0_c00117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00117{word-spacing:-34.320000px;}
.ws0_c00117{word-spacing:-26.352000px;}
.ws3_c00117{word-spacing:-20.352000px;}
.ws2_c00117{word-spacing:-17.352000px;}
.ws4_c00117{word-spacing:-16.629000px;}
.ws5_c00117{word-spacing:0.000000px;}
._17_c00117{margin-left:-15.060000px;}
._14_c00117{margin-left:-13.740000px;}
._15_c00117{margin-left:-12.312000px;}
._12_c00117{margin-left:-10.800000px;}
._13_c00117{margin-left:-9.072000px;}
._d_c00117{margin-left:-7.632000px;}
._c_c00117{margin-left:-6.408000px;}
._10_c00117{margin-left:-5.256000px;}
._7_c00117{margin-left:-4.176000px;}
._8_c00117{margin-left:-2.592000px;}
._9_c00117{margin-left:-1.080000px;}
._3_c00117{width:1.512000px;}
._2_c00117{width:2.520000px;}
._1_c00117{width:4.464000px;}
._4_c00117{width:5.688000px;}
._0_c00117{width:7.056000px;}
._b_c00117{width:8.640000px;}
._e_c00117{width:9.864000px;}
._19_c00117{width:11.064000px;}
._f_c00117{width:12.816000px;}
._a_c00117{width:14.040000px;}
._18_c00117{width:15.120000px;}
._11_c00117{width:17.064000px;}
._16_c00117{width:18.222000px;}
._5_c00117{width:23.445000px;}
._6_c00117{width:34.920000px;}
.fc2_c00117{color:transparent;}
.fc1_c00117{color:rgb(128,128,128);}
.fc0_c00117{color:rgb(0,0,0);}
.fs1_c00117{font-size:45.000000px;}
.fs4_c00117{font-size:48.000000px;}
.fs2_c00117{font-size:51.000000px;}
.fs3_c00117{font-size:69.000000px;}
.fs0_c00117{font-size:72.000000px;}
.y0_c00117{bottom:0.000000px;}
.y20_c00117{bottom:3.105000px;}
.y1f_c00117{bottom:7.228363px;}
.y1e_c00117{bottom:35.700000px;}
.y1d_c00117{bottom:58.050000px;}
.y1c_c00117{bottom:83.700000px;}
.y1b_c00117{bottom:108.450000px;}
.y1a_c00117{bottom:135.000000px;}
.y19_c00117{bottom:159.300000px;}
.y18_c00117{bottom:183.900000px;}
.y17_c00117{bottom:209.550000px;}
.y16_c00117{bottom:234.150000px;}
.y15_c00117{bottom:258.750000px;}
.y14_c00117{bottom:283.950000px;}
.y13_c00117{bottom:308.400000px;}
.y12_c00117{bottom:332.850000px;}
.y11_c00117{bottom:357.750000px;}
.y10_c00117{bottom:382.350000px;}
.yf_c00117{bottom:407.100000px;}
.ye_c00117{bottom:431.700000px;}
.yd_c00117{bottom:456.600000px;}
.yc_c00117{bottom:480.600000px;}
.yb_c00117{bottom:505.200000px;}
.ya_c00117{bottom:530.850000px;}
.y9_c00117{bottom:554.850000px;}
.y8_c00117{bottom:579.150000px;}
.y7_c00117{bottom:603.900000px;}
.y6_c00117{bottom:628.500000px;}
.y5_c00117{bottom:653.100000px;}
.y4_c00117{bottom:678.000000px;}
.y3_c00117{bottom:702.750000px;}
.y2_c00117{bottom:720.450000px;}
.y1_c00117{bottom:728.700000px;}
.h5_c00117{height:13.200074px;}
.h6_c00117{height:43.804688px;}
.h3_c00117{height:56.975098px;}
.h2_c00117{height:84.269531px;}
.h4_c00117{height:91.160156px;}
.h0_c00117{height:785.700000px;}
.h1_c00117{height:786.000000px;}
.w2_c00117{width:104.875500px;}
.w1_c00117{width:549.750000px;}
.w0_c00117{width:549.975000px;}
.x0_c00117{left:0.000000px;}
.x3_c00117{left:140.700000px;}
.x4_c00117{left:141.750000px;}
.x5_c00117{left:142.800000px;}
.x6_c00117{left:144.150000px;}
.x8_c00117{left:226.801758px;}
.x1_c00117{left:254.700000px;}
.x2_c00117{left:311.550000px;}
.x7_c00117{left:509.550000px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls3_c00117{letter-spacing:-13.333333pt;}
.ls1_c00117{letter-spacing:0.000000pt;}
.ls0_c00117{letter-spacing:2.666667pt;}
.ls2_c00117{letter-spacing:8.000000pt;}
.ws1_c00117{word-spacing:-30.506667pt;}
.ws0_c00117{word-spacing:-23.424000pt;}
.ws3_c00117{word-spacing:-18.090667pt;}
.ws2_c00117{word-spacing:-15.424000pt;}
.ws4_c00117{word-spacing:-14.781333pt;}
.ws5_c00117{word-spacing:0.000000pt;}
._17_c00117{margin-left:-13.386667pt;}
._14_c00117{margin-left:-12.213333pt;}
._15_c00117{margin-left:-10.944000pt;}
._12_c00117{margin-left:-9.600000pt;}
._13_c00117{margin-left:-8.064000pt;}
._d_c00117{margin-left:-6.784000pt;}
._c_c00117{margin-left:-5.696000pt;}
._10_c00117{margin-left:-4.672000pt;}
._7_c00117{margin-left:-3.712000pt;}
._8_c00117{margin-left:-2.304000pt;}
._9_c00117{margin-left:-0.960000pt;}
._3_c00117{width:1.344000pt;}
._2_c00117{width:2.240000pt;}
._1_c00117{width:3.968000pt;}
._4_c00117{width:5.056000pt;}
._0_c00117{width:6.272000pt;}
._b_c00117{width:7.680000pt;}
._e_c00117{width:8.768000pt;}
._19_c00117{width:9.834667pt;}
._f_c00117{width:11.392000pt;}
._a_c00117{width:12.480000pt;}
._18_c00117{width:13.440000pt;}
._11_c00117{width:15.168000pt;}
._16_c00117{width:16.197333pt;}
._5_c00117{width:20.840000pt;}
._6_c00117{width:31.040000pt;}
.fs1_c00117{font-size:40.000000pt;}
.fs4_c00117{font-size:42.666667pt;}
.fs2_c00117{font-size:45.333333pt;}
.fs3_c00117{font-size:61.333333pt;}
.fs0_c00117{font-size:64.000000pt;}
.y0_c00117{bottom:0.000000pt;}
.y20_c00117{bottom:2.760000pt;}
.y1f_c00117{bottom:6.425212pt;}
.y1e_c00117{bottom:31.733333pt;}
.y1d_c00117{bottom:51.600000pt;}
.y1c_c00117{bottom:74.400000pt;}
.y1b_c00117{bottom:96.400000pt;}
.y1a_c00117{bottom:120.000000pt;}
.y19_c00117{bottom:141.600000pt;}
.y18_c00117{bottom:163.466667pt;}
.y17_c00117{bottom:186.266667pt;}
.y16_c00117{bottom:208.133333pt;}
.y15_c00117{bottom:230.000000pt;}
.y14_c00117{bottom:252.400000pt;}
.y13_c00117{bottom:274.133333pt;}
.y12_c00117{bottom:295.866667pt;}
.y11_c00117{bottom:318.000000pt;}
.y10_c00117{bottom:339.866667pt;}
.yf_c00117{bottom:361.866667pt;}
.ye_c00117{bottom:383.733333pt;}
.yd_c00117{bottom:405.866667pt;}
.yc_c00117{bottom:427.200000pt;}
.yb_c00117{bottom:449.066667pt;}
.ya_c00117{bottom:471.866667pt;}
.y9_c00117{bottom:493.200000pt;}
.y8_c00117{bottom:514.800000pt;}
.y7_c00117{bottom:536.800000pt;}
.y6_c00117{bottom:558.666667pt;}
.y5_c00117{bottom:580.533333pt;}
.y4_c00117{bottom:602.666667pt;}
.y3_c00117{bottom:624.666667pt;}
.y2_c00117{bottom:640.400000pt;}
.y1_c00117{bottom:647.733333pt;}
.h5_c00117{height:11.733399pt;}
.h6_c00117{height:38.937500pt;}
.h3_c00117{height:50.644531pt;}
.h2_c00117{height:74.906250pt;}
.h4_c00117{height:81.031250pt;}
.h0_c00117{height:698.400000pt;}
.h1_c00117{height:698.666667pt;}
.w2_c00117{width:93.222667pt;}
.w1_c00117{width:488.666667pt;}
.w0_c00117{width:488.866667pt;}
.x0_c00117{left:0.000000pt;}
.x3_c00117{left:125.066667pt;}
.x4_c00117{left:126.000000pt;}
.x5_c00117{left:126.933333pt;}
.x6_c00117{left:128.133333pt;}
.x8_c00117{left:201.601563pt;}
.x1_c00117{left:226.400000pt;}
.x2_c00117{left:276.933333pt;}
.x7_c00117{left:452.933333pt;}
}





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

.ir_c00118:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00118{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00118;src:url('chunks/assets/font_649a2132abf46fddaf6b0a30.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.480469;font-style:normal;font-weight:normal;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_361dac00e499624efd3f2186.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00118;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00118{font-family:ff3_c00118;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00118{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00118{vertical-align:0.000000px;}
.ls1_c00118{letter-spacing:-9.000000px;}
.ls0_c00118{letter-spacing:0.000000px;}
.ls2_c00118{letter-spacing:3.000000px;}
.sc__c00118{text-shadow:none;}
.sc0_c00118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
.sc0_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00118{word-spacing:-19.629000px;}
.ws0_c00118{word-spacing:-17.352000px;}
.ws2_c00118{word-spacing:0.000000px;}
._17_c00118{margin-left:-20.520000px;}
._14_c00118{margin-left:-15.960000px;}
._16_c00118{margin-left:-13.440000px;}
._18_c00118{margin-left:-10.452000px;}
._8_c00118{margin-left:-8.004000px;}
._10_c00118{margin-left:-6.924000px;}
._a_c00118{margin-left:-5.736000px;}
._9_c00118{margin-left:-4.176000px;}
._e_c00118{margin-left:-2.868000px;}
._b_c00118{margin-left:-1.152000px;}
._c_c00118{width:1.512000px;}
._11_c00118{width:2.616000px;}
._2_c00118{width:3.840000px;}
._d_c00118{width:5.256000px;}
._3_c00118{width:6.300000px;}
._6_c00118{width:7.740000px;}
._5_c00118{width:9.060000px;}
._12_c00118{width:10.872000px;}
._4_c00118{width:12.420000px;}
._13_c00118{width:13.644000px;}
._1_c00118{width:15.480000px;}
._15_c00118{width:16.740000px;}
._f_c00118{width:19.320000px;}
._0_c00118{width:24.660000px;}
._7_c00118{width:393.540000px;}
.fc2_c00118{color:transparent;}
.fc1_c00118{color:rgb(128,128,128);}
.fc0_c00118{color:rgb(0,0,0);}
.fs4_c00118{font-size:48.000000px;}
.fs0_c00118{font-size:60.000000px;}
.fs3_c00118{font-size:69.000000px;}
.fs2_c00118{font-size:72.000000px;}
.fs1_c00118{font-size:93.000000px;}
.y0_c00118{bottom:0.000000px;}
.y1f_c00118{bottom:3.105000px;}
.y1e_c00118{bottom:7.228363px;}
.y1d_c00118{bottom:56.100000px;}
.y1c_c00118{bottom:82.350000px;}
.y1b_c00118{bottom:106.950000px;}
.y1a_c00118{bottom:132.300000px;}
.y19_c00118{bottom:157.350000px;}
.y18_c00118{bottom:181.950000px;}
.y17_c00118{bottom:207.300000px;}
.y16_c00118{bottom:231.900000px;}
.y15_c00118{bottom:255.900000px;}
.y14_c00118{bottom:279.900000px;}
.y13_c00118{bottom:304.500000px;}
.y12_c00118{bottom:328.050000px;}
.y11_c00118{bottom:352.650000px;}
.y10_c00118{bottom:377.100000px;}
.yf_c00118{bottom:402.000000px;}
.ye_c00118{bottom:426.300000px;}
.yd_c00118{bottom:451.350000px;}
.yc_c00118{bottom:475.950000px;}
.yb_c00118{bottom:500.550000px;}
.ya_c00118{bottom:524.850000px;}
.y9_c00118{bottom:549.450000px;}
.y8_c00118{bottom:574.050000px;}
.y7_c00118{bottom:598.500000px;}
.y6_c00118{bottom:623.100000px;}
.y5_c00118{bottom:647.700000px;}
.y4_c00118{bottom:672.600000px;}
.y3_c00118{bottom:697.050000px;}
.y2_c00118{bottom:721.500000px;}
.y1_c00118{bottom:746.100000px;}
.h5_c00118{height:13.200074px;}
.h6_c00118{height:43.804688px;}
.h4_c00118{height:87.361816px;}
.h3_c00118{height:91.160156px;}
.h2_c00118{height:117.748535px;}
.h0_c00118{height:797.850000px;}
.h1_c00118{height:798.000000px;}
.w2_c00118{width:104.875500px;}
.w0_c00118{width:532.950000px;}
.w1_c00118{width:533.250000px;}
.x0_c00118{left:0.000000px;}
.x7_c00118{left:28.950000px;}
.x6_c00118{left:30.750000px;}
.x5_c00118{left:33.300000px;}
.x4_c00118{left:34.800000px;}
.x2_c00118{left:36.900000px;}
.x3_c00118{left:38.100000px;}
.x1_c00118{left:145.050000px;}
.x9_c00118{left:218.289230px;}
.x8_c00118{left:357.450000px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.ls1_c00118{letter-spacing:-8.000000pt;}
.ls0_c00118{letter-spacing:0.000000pt;}
.ls2_c00118{letter-spacing:2.666667pt;}
.ws1_c00118{word-spacing:-17.448000pt;}
.ws0_c00118{word-spacing:-15.424000pt;}
.ws2_c00118{word-spacing:0.000000pt;}
._17_c00118{margin-left:-18.240000pt;}
._14_c00118{margin-left:-14.186667pt;}
._16_c00118{margin-left:-11.946667pt;}
._18_c00118{margin-left:-9.290667pt;}
._8_c00118{margin-left:-7.114667pt;}
._10_c00118{margin-left:-6.154667pt;}
._a_c00118{margin-left:-5.098667pt;}
._9_c00118{margin-left:-3.712000pt;}
._e_c00118{margin-left:-2.549333pt;}
._b_c00118{margin-left:-1.024000pt;}
._c_c00118{width:1.344000pt;}
._11_c00118{width:2.325333pt;}
._2_c00118{width:3.413333pt;}
._d_c00118{width:4.672000pt;}
._3_c00118{width:5.600000pt;}
._6_c00118{width:6.880000pt;}
._5_c00118{width:8.053333pt;}
._12_c00118{width:9.664000pt;}
._4_c00118{width:11.040000pt;}
._13_c00118{width:12.128000pt;}
._1_c00118{width:13.760000pt;}
._15_c00118{width:14.880000pt;}
._f_c00118{width:17.173333pt;}
._0_c00118{width:21.920000pt;}
._7_c00118{width:349.813333pt;}
.fs4_c00118{font-size:42.666667pt;}
.fs0_c00118{font-size:53.333333pt;}
.fs3_c00118{font-size:61.333333pt;}
.fs2_c00118{font-size:64.000000pt;}
.fs1_c00118{font-size:82.666667pt;}
.y0_c00118{bottom:0.000000pt;}
.y1f_c00118{bottom:2.760000pt;}
.y1e_c00118{bottom:6.425212pt;}
.y1d_c00118{bottom:49.866667pt;}
.y1c_c00118{bottom:73.200000pt;}
.y1b_c00118{bottom:95.066667pt;}
.y1a_c00118{bottom:117.600000pt;}
.y19_c00118{bottom:139.866667pt;}
.y18_c00118{bottom:161.733333pt;}
.y17_c00118{bottom:184.266667pt;}
.y16_c00118{bottom:206.133333pt;}
.y15_c00118{bottom:227.466667pt;}
.y14_c00118{bottom:248.800000pt;}
.y13_c00118{bottom:270.666667pt;}
.y12_c00118{bottom:291.600000pt;}
.y11_c00118{bottom:313.466667pt;}
.y10_c00118{bottom:335.200000pt;}
.yf_c00118{bottom:357.333333pt;}
.ye_c00118{bottom:378.933333pt;}
.yd_c00118{bottom:401.200000pt;}
.yc_c00118{bottom:423.066667pt;}
.yb_c00118{bottom:444.933333pt;}
.ya_c00118{bottom:466.533333pt;}
.y9_c00118{bottom:488.400000pt;}
.y8_c00118{bottom:510.266667pt;}
.y7_c00118{bottom:532.000000pt;}
.y6_c00118{bottom:553.866667pt;}
.y5_c00118{bottom:575.733333pt;}
.y4_c00118{bottom:597.866667pt;}
.y3_c00118{bottom:619.600000pt;}
.y2_c00118{bottom:641.333333pt;}
.y1_c00118{bottom:663.200000pt;}
.h5_c00118{height:11.733399pt;}
.h6_c00118{height:38.937500pt;}
.h4_c00118{height:77.654948pt;}
.h3_c00118{height:81.031250pt;}
.h2_c00118{height:104.665365pt;}
.h0_c00118{height:709.200000pt;}
.h1_c00118{height:709.333333pt;}
.w2_c00118{width:93.222667pt;}
.w0_c00118{width:473.733333pt;}
.w1_c00118{width:474.000000pt;}
.x0_c00118{left:0.000000pt;}
.x7_c00118{left:25.733333pt;}
.x6_c00118{left:27.333333pt;}
.x5_c00118{left:29.600000pt;}
.x4_c00118{left:30.933333pt;}
.x2_c00118{left:32.800000pt;}
.x3_c00118{left:33.866667pt;}
.x1_c00118{left:128.933333pt;}
.x9_c00118{left:194.034871pt;}
.x8_c00118{left:317.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fc9b927dbba1f523395fc80a.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00119;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00119;src:url('chunks/assets/font_c9288d9352ba0cb79e2d9eb0.woff2')format("woff");}.ff3_c00119{font-family:ff3_c00119;line-height:1.568848;font-style:normal;font-weight:normal;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_3b0eed98d53187358ae5c48f.woff2')format("woff");}.ff4_c00119{font-family:ff4_c00119;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00119{font-family:ff5_c00119;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00119{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00119{vertical-align:0.000000px;}
.ls1_c00119{letter-spacing:0.000000px;}
.ls2_c00119{letter-spacing:3.000000px;}
.ls0_c00119{letter-spacing:27.894000px;}
.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:-30.426000px;}
.ws1_c00119{word-spacing:-20.352000px;}
.ws2_c00119{word-spacing:0.000000px;}
._1_c00119{margin-left:-16.968000px;}
._12_c00119{margin-left:-13.824000px;}
._13_c00119{margin-left:-11.520000px;}
._11_c00119{margin-left:-8.838000px;}
._7_c00119{margin-left:-6.693000px;}
._8_c00119{margin-left:-4.347000px;}
._9_c00119{margin-left:-2.526000px;}
._0_c00119{margin-left:-1.260000px;}
._5_c00119{width:1.320000px;}
._2_c00119{width:2.688000px;}
._3_c00119{width:4.452000px;}
._4_c00119{width:6.048000px;}
._6_c00119{width:7.842000px;}
._b_c00119{width:9.870000px;}
._d_c00119{width:11.607000px;}
._e_c00119{width:13.497000px;}
._c_c00119{width:16.425000px;}
._10_c00119{width:17.766000px;}
._f_c00119{width:44.694000px;}
._a_c00119{width:124.782000px;}
.fc2_c00119{color:transparent;}
.fc1_c00119{color:rgb(128,128,128);}
.fc0_c00119{color:rgb(0,0,0);}
.fs5_c00119{font-size:48.000000px;}
.fs2_c00119{font-size:63.000000px;}
.fs3_c00119{font-size:66.000000px;}
.fs1_c00119{font-size:69.000000px;}
.fs4_c00119{font-size:72.000000px;}
.fs0_c00119{font-size:84.000000px;}
.y0_c00119{bottom:0.000000px;}
.y1f_c00119{bottom:3.105000px;}
.y1e_c00119{bottom:7.228363px;}
.y1d_c00119{bottom:59.700000px;}
.y1c_c00119{bottom:84.600000px;}
.y1b_c00119{bottom:107.700000px;}
.y1a_c00119{bottom:132.600000px;}
.y19_c00119{bottom:158.250000px;}
.y18_c00119{bottom:183.300000px;}
.y17_c00119{bottom:207.450000px;}
.y16_c00119{bottom:232.200000px;}
.y15_c00119{bottom:256.500000px;}
.y14_c00119{bottom:281.850000px;}
.y13_c00119{bottom:306.450000px;}
.y12_c00119{bottom:330.750000px;}
.y11_c00119{bottom:355.650000px;}
.y10_c00119{bottom:379.950000px;}
.yf_c00119{bottom:405.600000px;}
.ye_c00119{bottom:429.000000px;}
.yd_c00119{bottom:454.200000px;}
.yc_c00119{bottom:478.200000px;}
.yb_c00119{bottom:502.500000px;}
.ya_c00119{bottom:527.100000px;}
.y9_c00119{bottom:551.700000px;}
.y8_c00119{bottom:576.000000px;}
.y7_c00119{bottom:600.750000px;}
.y6_c00119{bottom:625.050000px;}
.y5_c00119{bottom:649.350000px;}
.y4_c00119{bottom:673.950000px;}
.y3_c00119{bottom:698.550000px;}
.y2_c00119{bottom:723.300000px;}
.y1_c00119{bottom:748.950000px;}
.h5_c00119{height:13.200074px;}
.h6_c00119{height:43.804688px;}
.h2_c00119{height:82.441406px;}
.h3_c00119{height:87.361816px;}
.h4_c00119{height:91.160156px;}
.h0_c00119{height:792.450000px;}
.h1_c00119{height:792.750000px;}
.w1_c00119{width:104.875500px;}
.w0_c00119{width:533.250000px;}
.x0_c00119{left:0.000000px;}
.x3_c00119{left:128.250000px;}
.x2_c00119{left:129.600000px;}
.x4_c00119{left:130.950000px;}
.x5_c00119{left:132.300000px;}
.x7_c00119{left:218.439240px;}
.x1_c00119{left:247.050000px;}
.x6_c00119{left:495.900000px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls1_c00119{letter-spacing:0.000000pt;}
.ls2_c00119{letter-spacing:2.666667pt;}
.ls0_c00119{letter-spacing:24.794667pt;}
.ws0_c00119{word-spacing:-27.045333pt;}
.ws1_c00119{word-spacing:-18.090667pt;}
.ws2_c00119{word-spacing:0.000000pt;}
._1_c00119{margin-left:-15.082667pt;}
._12_c00119{margin-left:-12.288000pt;}
._13_c00119{margin-left:-10.240000pt;}
._11_c00119{margin-left:-7.856000pt;}
._7_c00119{margin-left:-5.949333pt;}
._8_c00119{margin-left:-3.864000pt;}
._9_c00119{margin-left:-2.245333pt;}
._0_c00119{margin-left:-1.120000pt;}
._5_c00119{width:1.173333pt;}
._2_c00119{width:2.389333pt;}
._3_c00119{width:3.957333pt;}
._4_c00119{width:5.376000pt;}
._6_c00119{width:6.970667pt;}
._b_c00119{width:8.773333pt;}
._d_c00119{width:10.317333pt;}
._e_c00119{width:11.997333pt;}
._c_c00119{width:14.600000pt;}
._10_c00119{width:15.792000pt;}
._f_c00119{width:39.728000pt;}
._a_c00119{width:110.917333pt;}
.fs5_c00119{font-size:42.666667pt;}
.fs2_c00119{font-size:56.000000pt;}
.fs3_c00119{font-size:58.666667pt;}
.fs1_c00119{font-size:61.333333pt;}
.fs4_c00119{font-size:64.000000pt;}
.fs0_c00119{font-size:74.666667pt;}
.y0_c00119{bottom:0.000000pt;}
.y1f_c00119{bottom:2.760000pt;}
.y1e_c00119{bottom:6.425212pt;}
.y1d_c00119{bottom:53.066667pt;}
.y1c_c00119{bottom:75.200000pt;}
.y1b_c00119{bottom:95.733333pt;}
.y1a_c00119{bottom:117.866667pt;}
.y19_c00119{bottom:140.666667pt;}
.y18_c00119{bottom:162.933333pt;}
.y17_c00119{bottom:184.400000pt;}
.y16_c00119{bottom:206.400000pt;}
.y15_c00119{bottom:228.000000pt;}
.y14_c00119{bottom:250.533333pt;}
.y13_c00119{bottom:272.400000pt;}
.y12_c00119{bottom:294.000000pt;}
.y11_c00119{bottom:316.133333pt;}
.y10_c00119{bottom:337.733333pt;}
.yf_c00119{bottom:360.533333pt;}
.ye_c00119{bottom:381.333333pt;}
.yd_c00119{bottom:403.733333pt;}
.yc_c00119{bottom:425.066667pt;}
.yb_c00119{bottom:446.666667pt;}
.ya_c00119{bottom:468.533333pt;}
.y9_c00119{bottom:490.400000pt;}
.y8_c00119{bottom:512.000000pt;}
.y7_c00119{bottom:534.000000pt;}
.y6_c00119{bottom:555.600000pt;}
.y5_c00119{bottom:577.200000pt;}
.y4_c00119{bottom:599.066667pt;}
.y3_c00119{bottom:620.933333pt;}
.y2_c00119{bottom:642.933333pt;}
.y1_c00119{bottom:665.733333pt;}
.h5_c00119{height:11.733399pt;}
.h6_c00119{height:38.937500pt;}
.h2_c00119{height:73.281250pt;}
.h3_c00119{height:77.654948pt;}
.h4_c00119{height:81.031250pt;}
.h0_c00119{height:704.400000pt;}
.h1_c00119{height:704.666667pt;}
.w1_c00119{width:93.222667pt;}
.w0_c00119{width:474.000000pt;}
.x0_c00119{left:0.000000pt;}
.x3_c00119{left:114.000000pt;}
.x2_c00119{left:115.200000pt;}
.x4_c00119{left:116.400000pt;}
.x5_c00119{left:117.600000pt;}
.x7_c00119{left:194.168213pt;}
.x1_c00119{left:219.600000pt;}
.x6_c00119{left:440.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_15e14a40c348c3528c27ad72.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00120;src:url('chunks/assets/font_ec01f34ca0e22ac092a18981.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00120;src:url('chunks/assets/font_a1b06e25c8b0b5d56dd87e84.woff2')format("woff");}.ff3_c00120{font-family:ff3_c00120;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00120;src:url('chunks/assets/font_c19a118ebc9fe563973b9af9.woff2')format("woff");}.ff4_c00120{font-family:ff4_c00120;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00120;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00120{font-family:ff5_c00120;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00120{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00120{vertical-align:0.000000px;}
.ls0_c00120{letter-spacing:0.000000px;}
.ls2_c00120{letter-spacing:3.000000px;}
.ls1_c00120{letter-spacing:9.000000px;}
.sc__c00120{text-shadow:none;}
.sc0_c00120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00120{-webkit-text-stroke:0px transparent;}
.sc0_c00120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00120{word-spacing:-53.211000px;}
.ws0_c00120{word-spacing:-16.629000px;}
.ws1_c00120{word-spacing:-14.250000px;}
.ws3_c00120{word-spacing:0.000000px;}
._b_c00120{margin-left:-14.709000px;}
._14_c00120{margin-left:-12.720000px;}
._11_c00120{margin-left:-9.471000px;}
._a_c00120{margin-left:-7.059000px;}
._5_c00120{margin-left:-5.181000px;}
._7_c00120{margin-left:-3.300000px;}
._6_c00120{margin-left:-1.404000px;}
._3_c00120{width:1.848000px;}
._2_c00120{width:3.276000px;}
._1_c00120{width:5.040000px;}
._c_c00120{width:6.321000px;}
._10_c00120{width:7.623000px;}
._0_c00120{width:8.652000px;}
._13_c00120{width:9.759000px;}
._d_c00120{width:11.133000px;}
._e_c00120{width:12.492000px;}
._9_c00120{width:14.220000px;}
._12_c00120{width:15.636000px;}
._8_c00120{width:16.926000px;}
._f_c00120{width:18.492000px;}
._17_c00120{width:28.884000px;}
._16_c00120{width:31.041000px;}
._18_c00120{width:34.740000px;}
._15_c00120{width:254.745000px;}
._4_c00120{width:386.820000px;}
.fc2_c00120{color:transparent;}
.fc1_c00120{color:rgb(128,128,128);}
.fc0_c00120{color:rgb(0,0,0);}
.fs7_c00120{font-size:48.000000px;}
.fs2_c00120{font-size:51.000000px;}
.fs5_c00120{font-size:57.000000px;}
.fs6_c00120{font-size:63.000000px;}
.fs4_c00120{font-size:66.000000px;}
.fs3_c00120{font-size:69.000000px;}
.fs1_c00120{font-size:81.000000px;}
.fs0_c00120{font-size:84.000000px;}
.y0_c00120{bottom:0.000000px;}
.y1f_c00120{bottom:3.105000px;}
.y1e_c00120{bottom:7.228369px;}
.y1d_c00120{bottom:41.070000px;}
.y1c_c00120{bottom:66.870000px;}
.y1b_c00120{bottom:91.770000px;}
.y1a_c00120{bottom:117.420000px;}
.y19_c00120{bottom:143.070000px;}
.y18_c00120{bottom:167.970000px;}
.y17_c00120{bottom:192.720000px;}
.y16_c00120{bottom:217.020000px;}
.y15_c00120{bottom:242.220000px;}
.y14_c00120{bottom:267.270000px;}
.y13_c00120{bottom:290.970000px;}
.y12_c00120{bottom:313.770000px;}
.y11_c00120{bottom:337.470000px;}
.y10_c00120{bottom:362.820000px;}
.yf_c00120{bottom:388.770000px;}
.ye_c00120{bottom:413.070000px;}
.yd_c00120{bottom:437.370000px;}
.yc_c00120{bottom:462.420000px;}
.yb_c00120{bottom:486.270000px;}
.ya_c00120{bottom:510.870000px;}
.y9_c00120{bottom:535.620000px;}
.y8_c00120{bottom:559.620000px;}
.y7_c00120{bottom:584.520000px;}
.y6_c00120{bottom:608.820000px;}
.y5_c00120{bottom:633.420000px;}
.y4_c00120{bottom:658.020000px;}
.y3_c00120{bottom:682.320000px;}
.y2_c00120{bottom:706.320000px;}
.y1_c00120{bottom:730.920000px;}
.h5_c00120{height:13.200073px;}
.h6_c00120{height:43.804688px;}
.h4_c00120{height:79.765137px;}
.h2_c00120{height:82.400391px;}
.h3_c00120{height:87.361816px;}
.h1_c00120{height:785.250000px;}
.h0_c00120{height:785.400000px;}
.w2_c00120{width:104.875500px;}
.w0_c00120{width:543.525000px;}
.w1_c00120{width:543.750000px;}
.x0_c00120{left:0.000000px;}
.x2_c00120{left:16.650000px;}
.x3_c00120{left:18.600000px;}
.x5_c00120{left:19.800000px;}
.x6_c00120{left:21.150000px;}
.x4_c00120{left:22.950000px;}
.x7_c00120{left:24.600000px;}
.x8_c00120{left:25.950000px;}
.x9_c00120{left:56.250000px;}
.x1_c00120{left:131.700000px;}
.xb_c00120{left:223.576767px;}
.xa_c00120{left:362.850000px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls0_c00120{letter-spacing:0.000000pt;}
.ls2_c00120{letter-spacing:2.666667pt;}
.ls1_c00120{letter-spacing:8.000000pt;}
.ws2_c00120{word-spacing:-47.298667pt;}
.ws0_c00120{word-spacing:-14.781333pt;}
.ws1_c00120{word-spacing:-12.666667pt;}
.ws3_c00120{word-spacing:0.000000pt;}
._b_c00120{margin-left:-13.074667pt;}
._14_c00120{margin-left:-11.306667pt;}
._11_c00120{margin-left:-8.418667pt;}
._a_c00120{margin-left:-6.274667pt;}
._5_c00120{margin-left:-4.605333pt;}
._7_c00120{margin-left:-2.933333pt;}
._6_c00120{margin-left:-1.248000pt;}
._3_c00120{width:1.642667pt;}
._2_c00120{width:2.912000pt;}
._1_c00120{width:4.480000pt;}
._c_c00120{width:5.618667pt;}
._10_c00120{width:6.776000pt;}
._0_c00120{width:7.690667pt;}
._13_c00120{width:8.674667pt;}
._d_c00120{width:9.896000pt;}
._e_c00120{width:11.104000pt;}
._9_c00120{width:12.640000pt;}
._12_c00120{width:13.898667pt;}
._8_c00120{width:15.045333pt;}
._f_c00120{width:16.437333pt;}
._17_c00120{width:25.674667pt;}
._16_c00120{width:27.592000pt;}
._18_c00120{width:30.880000pt;}
._15_c00120{width:226.440000pt;}
._4_c00120{width:343.840000pt;}
.fs7_c00120{font-size:42.666667pt;}
.fs2_c00120{font-size:45.333333pt;}
.fs5_c00120{font-size:50.666667pt;}
.fs6_c00120{font-size:56.000000pt;}
.fs4_c00120{font-size:58.666667pt;}
.fs3_c00120{font-size:61.333333pt;}
.fs1_c00120{font-size:72.000000pt;}
.fs0_c00120{font-size:74.666667pt;}
.y0_c00120{bottom:0.000000pt;}
.y1f_c00120{bottom:2.760000pt;}
.y1e_c00120{bottom:6.425217pt;}
.y1d_c00120{bottom:36.506667pt;}
.y1c_c00120{bottom:59.440000pt;}
.y1b_c00120{bottom:81.573333pt;}
.y1a_c00120{bottom:104.373333pt;}
.y19_c00120{bottom:127.173333pt;}
.y18_c00120{bottom:149.306667pt;}
.y17_c00120{bottom:171.306667pt;}
.y16_c00120{bottom:192.906667pt;}
.y15_c00120{bottom:215.306667pt;}
.y14_c00120{bottom:237.573333pt;}
.y13_c00120{bottom:258.640000pt;}
.y12_c00120{bottom:278.906667pt;}
.y11_c00120{bottom:299.973333pt;}
.y10_c00120{bottom:322.506667pt;}
.yf_c00120{bottom:345.573333pt;}
.ye_c00120{bottom:367.173333pt;}
.yd_c00120{bottom:388.773333pt;}
.yc_c00120{bottom:411.040000pt;}
.yb_c00120{bottom:432.240000pt;}
.ya_c00120{bottom:454.106667pt;}
.y9_c00120{bottom:476.106667pt;}
.y8_c00120{bottom:497.440000pt;}
.y7_c00120{bottom:519.573333pt;}
.y6_c00120{bottom:541.173333pt;}
.y5_c00120{bottom:563.040000pt;}
.y4_c00120{bottom:584.906667pt;}
.y3_c00120{bottom:606.506667pt;}
.y2_c00120{bottom:627.840000pt;}
.y1_c00120{bottom:649.706667pt;}
.h5_c00120{height:11.733399pt;}
.h6_c00120{height:38.937500pt;}
.h4_c00120{height:70.902344pt;}
.h2_c00120{height:73.244792pt;}
.h3_c00120{height:77.654948pt;}
.h1_c00120{height:698.000000pt;}
.h0_c00120{height:698.133333pt;}
.w2_c00120{width:93.222667pt;}
.w0_c00120{width:483.133333pt;}
.w1_c00120{width:483.333333pt;}
.x0_c00120{left:0.000000pt;}
.x2_c00120{left:14.800000pt;}
.x3_c00120{left:16.533333pt;}
.x5_c00120{left:17.600000pt;}
.x6_c00120{left:18.800000pt;}
.x4_c00120{left:20.400000pt;}
.x7_c00120{left:21.866667pt;}
.x8_c00120{left:23.066667pt;}
.x9_c00120{left:50.000000pt;}
.x1_c00120{left:117.066667pt;}
.xb_c00120{left:198.734904pt;}
.xa_c00120{left:322.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3d1f6183d0ba81ec73bb17c1.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.480469;font-style:normal;font-weight:normal;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_7129cd8e5557eae2be58e9fb.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00121{font-family:ff3_c00121;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00121{vertical-align:0.000000px;}
.ls1_c00121{letter-spacing:0.000000px;}
.ls2_c00121{letter-spacing:3.000000px;}
.ls0_c00121{letter-spacing:10.029000px;}
.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:-31.809000px;}
.ws1_c00121{word-spacing:-19.629000px;}
.ws2_c00121{word-spacing:0.000000px;}
._3_c00121{margin-left:-16.491000px;}
._4_c00121{margin-left:-8.418000px;}
._11_c00121{margin-left:-6.486000px;}
._5_c00121{margin-left:-5.037000px;}
._7_c00121{margin-left:-3.726000px;}
._d_c00121{margin-left:-2.484000px;}
._6_c00121{margin-left:-1.311000px;}
._9_c00121{width:1.035000px;}
._2_c00121{width:2.208000px;}
._a_c00121{width:3.864000px;}
._0_c00121{width:4.968000px;}
._1_c00121{width:6.555000px;}
._c_c00121{width:8.349000px;}
._8_c00121{width:10.695000px;}
._13_c00121{width:12.006000px;}
._e_c00121{width:13.248000px;}
._f_c00121{width:14.352000px;}
._b_c00121{width:15.663000px;}
._10_c00121{width:16.974000px;}
._12_c00121{width:17.976000px;}
.fc2_c00121{color:transparent;}
.fc1_c00121{color:rgb(128,128,128);}
.fc0_c00121{color:rgb(0,0,0);}
.fs1_c00121{font-size:48.000000px;}
.fs0_c00121{font-size:69.000000px;}
.y0_c00121{bottom:0.000000px;}
.y1f_c00121{bottom:3.105000px;}
.y1e_c00121{bottom:7.228369px;}
.y1d_c00121{bottom:48.570000px;}
.y1c_c00121{bottom:72.120000px;}
.y1b_c00121{bottom:97.770000px;}
.y1a_c00121{bottom:122.520000px;}
.y19_c00121{bottom:147.720000px;}
.y18_c00121{bottom:173.520000px;}
.y17_c00121{bottom:197.670000px;}
.y16_c00121{bottom:222.420000px;}
.y15_c00121{bottom:247.620000px;}
.y14_c00121{bottom:271.920000px;}
.y13_c00121{bottom:296.370000px;}
.y12_c00121{bottom:320.970000px;}
.y11_c00121{bottom:346.920000px;}
.y10_c00121{bottom:370.170000px;}
.yf_c00121{bottom:394.920000px;}
.ye_c00121{bottom:419.070000px;}
.yd_c00121{bottom:443.520000px;}
.yc_c00121{bottom:468.120000px;}
.yb_c00121{bottom:491.970000px;}
.ya_c00121{bottom:516.720000px;}
.y9_c00121{bottom:541.320000px;}
.y8_c00121{bottom:565.920000px;}
.y7_c00121{bottom:590.520000px;}
.y6_c00121{bottom:614.820000px;}
.y5_c00121{bottom:639.270000px;}
.y4_c00121{bottom:663.420000px;}
.y3_c00121{bottom:688.170000px;}
.y2_c00121{bottom:713.370000px;}
.y1_c00121{bottom:738.720000px;}
.h3_c00121{height:13.200073px;}
.h4_c00121{height:43.804688px;}
.h2_c00121{height:87.361816px;}
.h0_c00121{height:801.600000px;}
.h1_c00121{height:801.750000px;}
.w2_c00121{width:104.875500px;}
.w1_c00121{width:538.500000px;}
.w0_c00121{width:538.650000px;}
.x0_c00121{left:0.000000px;}
.x5_c00121{left:136.350000px;}
.x2_c00121{left:137.400000px;}
.x6_c00121{left:138.450000px;}
.x4_c00121{left:139.500000px;}
.x3_c00121{left:141.150000px;}
.x8_c00121{left:221.139267px;}
.x1_c00121{left:253.500000px;}
.x7_c00121{left:484.350000px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls1_c00121{letter-spacing:0.000000pt;}
.ls2_c00121{letter-spacing:2.666667pt;}
.ls0_c00121{letter-spacing:8.914667pt;}
.ws0_c00121{word-spacing:-28.274667pt;}
.ws1_c00121{word-spacing:-17.448000pt;}
.ws2_c00121{word-spacing:0.000000pt;}
._3_c00121{margin-left:-14.658667pt;}
._4_c00121{margin-left:-7.482667pt;}
._11_c00121{margin-left:-5.765333pt;}
._5_c00121{margin-left:-4.477333pt;}
._7_c00121{margin-left:-3.312000pt;}
._d_c00121{margin-left:-2.208000pt;}
._6_c00121{margin-left:-1.165333pt;}
._9_c00121{width:0.920000pt;}
._2_c00121{width:1.962667pt;}
._a_c00121{width:3.434667pt;}
._0_c00121{width:4.416000pt;}
._1_c00121{width:5.826667pt;}
._c_c00121{width:7.421333pt;}
._8_c00121{width:9.506667pt;}
._13_c00121{width:10.672000pt;}
._e_c00121{width:11.776000pt;}
._f_c00121{width:12.757333pt;}
._b_c00121{width:13.922667pt;}
._10_c00121{width:15.088000pt;}
._12_c00121{width:15.978667pt;}
.fs1_c00121{font-size:42.666667pt;}
.fs0_c00121{font-size:61.333333pt;}
.y0_c00121{bottom:0.000000pt;}
.y1f_c00121{bottom:2.760000pt;}
.y1e_c00121{bottom:6.425217pt;}
.y1d_c00121{bottom:43.173333pt;}
.y1c_c00121{bottom:64.106667pt;}
.y1b_c00121{bottom:86.906667pt;}
.y1a_c00121{bottom:108.906667pt;}
.y19_c00121{bottom:131.306667pt;}
.y18_c00121{bottom:154.240000pt;}
.y17_c00121{bottom:175.706667pt;}
.y16_c00121{bottom:197.706667pt;}
.y15_c00121{bottom:220.106667pt;}
.y14_c00121{bottom:241.706667pt;}
.y13_c00121{bottom:263.440000pt;}
.y12_c00121{bottom:285.306667pt;}
.y11_c00121{bottom:308.373333pt;}
.y10_c00121{bottom:329.040000pt;}
.yf_c00121{bottom:351.040000pt;}
.ye_c00121{bottom:372.506667pt;}
.yd_c00121{bottom:394.240000pt;}
.yc_c00121{bottom:416.106667pt;}
.yb_c00121{bottom:437.306667pt;}
.ya_c00121{bottom:459.306667pt;}
.y9_c00121{bottom:481.173333pt;}
.y8_c00121{bottom:503.040000pt;}
.y7_c00121{bottom:524.906667pt;}
.y6_c00121{bottom:546.506667pt;}
.y5_c00121{bottom:568.240000pt;}
.y4_c00121{bottom:589.706667pt;}
.y3_c00121{bottom:611.706667pt;}
.y2_c00121{bottom:634.106667pt;}
.y1_c00121{bottom:656.640000pt;}
.h3_c00121{height:11.733399pt;}
.h4_c00121{height:38.937500pt;}
.h2_c00121{height:77.654948pt;}
.h0_c00121{height:712.533333pt;}
.h1_c00121{height:712.666667pt;}
.w2_c00121{width:93.222667pt;}
.w1_c00121{width:478.666667pt;}
.w0_c00121{width:478.800000pt;}
.x0_c00121{left:0.000000pt;}
.x5_c00121{left:121.200000pt;}
.x2_c00121{left:122.133333pt;}
.x6_c00121{left:123.066667pt;}
.x4_c00121{left:124.000000pt;}
.x3_c00121{left:125.466667pt;}
.x8_c00121{left:196.568237pt;}
.x1_c00121{left:225.333333pt;}
.x7_c00121{left:430.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_490b7a23837f87856d53c5ba.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.480469;font-style:normal;font-weight:normal;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_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00122;src:url('chunks/assets/font_bf69d2df8c1f246b06360d75.woff2')format("woff");}.ff3_c00122{font-family:ff3_c00122;line-height:1.568848;font-style:normal;font-weight:normal;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_75f8d9b892499c24ea79fb0b.woff2')format("woff");}.ff4_c00122{font-family:ff4_c00122;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00122;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00122{font-family:ff5_c00122;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00122{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00122{vertical-align:0.000000px;}
.ls2_c00122{letter-spacing:0.000000px;}
.ls3_c00122{letter-spacing:3.000000px;}
.ls1_c00122{letter-spacing:8.202000px;}
.ls0_c00122{letter-spacing:15.000000px;}
.sc__c00122{text-shadow:none;}
.sc0_c00122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00122{-webkit-text-stroke:0px transparent;}
.sc0_c00122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00122{word-spacing:-30.000000px;}
.ws0_c00122{word-spacing:-16.629000px;}
.ws1_c00122{word-spacing:-1.020000px;}
.ws3_c00122{word-spacing:0.000000px;}
._17_c00122{margin-left:-23.184000px;}
._16_c00122{margin-left:-19.971000px;}
._11_c00122{margin-left:-13.341000px;}
._13_c00122{margin-left:-12.168000px;}
._12_c00122{margin-left:-11.109000px;}
._f_c00122{margin-left:-9.360000px;}
._14_c00122{margin-left:-7.017000px;}
._b_c00122{margin-left:-5.571000px;}
._10_c00122{margin-left:-4.470000px;}
._8_c00122{margin-left:-3.408000px;}
._5_c00122{margin-left:-2.016000px;}
._7_c00122{width:1.581000px;}
._2_c00122{width:2.592000px;}
._3_c00122{width:4.104000px;}
._1_c00122{width:5.112000px;}
._6_c00122{width:6.204000px;}
._c_c00122{width:7.737000px;}
._0_c00122{width:9.792000px;}
._9_c00122{width:11.295000px;}
._a_c00122{width:14.331000px;}
._d_c00122{width:15.729000px;}
._e_c00122{width:18.573000px;}
._18_c00122{width:97.272000px;}
._1a_c00122{width:232.023000px;}
._4_c00122{width:348.528000px;}
._19_c00122{width:899.712000px;}
._15_c00122{width:1050.114000px;}
.fc2_c00122{color:transparent;}
.fc1_c00122{color:rgb(128,128,128);}
.fc0_c00122{color:rgb(0,0,0);}
.fs4_c00122{font-size:48.000000px;}
.fs3_c00122{font-size:60.000000px;}
.fs2_c00122{font-size:69.000000px;}
.fs0_c00122{font-size:72.000000px;}
.fs1_c00122{font-size:78.000000px;}
.y0_c00122{bottom:0.000000px;}
.y1f_c00122{bottom:3.105000px;}
.y1e_c00122{bottom:7.228369px;}
.y1d_c00122{bottom:42.120000px;}
.y1c_c00122{bottom:68.220000px;}
.y1b_c00122{bottom:96.420000px;}
.y1a_c00122{bottom:118.770000px;}
.y19_c00122{bottom:141.120000px;}
.y18_c00122{bottom:168.120000px;}
.y17_c00122{bottom:190.020000px;}
.y16_c00122{bottom:218.070000px;}
.y15_c00122{bottom:240.870000px;}
.y14_c00122{bottom:267.570000px;}
.y13_c00122{bottom:291.870000px;}
.y12_c00122{bottom:314.220000px;}
.y11_c00122{bottom:338.520000px;}
.y10_c00122{bottom:362.520000px;}
.yf_c00122{bottom:387.120000px;}
.ye_c00122{bottom:411.420000px;}
.yd_c00122{bottom:436.770000px;}
.yc_c00122{bottom:461.370000px;}
.yb_c00122{bottom:485.670000px;}
.ya_c00122{bottom:510.270000px;}
.y9_c00122{bottom:534.870000px;}
.y8_c00122{bottom:559.470000px;}
.y7_c00122{bottom:583.770000px;}
.y6_c00122{bottom:607.770000px;}
.y5_c00122{bottom:632.070000px;}
.y4_c00122{bottom:656.370000px;}
.y3_c00122{bottom:680.970000px;}
.y2_c00122{bottom:705.270000px;}
.y1_c00122{bottom:731.070000px;}
.h6_c00122{height:13.200073px;}
.h7_c00122{height:43.804688px;}
.h2_c00122{height:84.269531px;}
.h3_c00122{height:87.361816px;}
.h4_c00122{height:91.160156px;}
.h5_c00122{height:98.756836px;}
.h1_c00122{height:785.250000px;}
.h0_c00122{height:785.400000px;}
.w2_c00122{width:104.875500px;}
.w0_c00122{width:546.450000px;}
.w1_c00122{width:546.750000px;}
.x0_c00122{left:0.000000px;}
.xb_c00122{left:22.500000px;}
.xa_c00122{left:25.350000px;}
.x9_c00122{left:26.550000px;}
.x8_c00122{left:28.950000px;}
.x7_c00122{left:30.000000px;}
.x6_c00122{left:31.350000px;}
.x4_c00122{left:32.400000px;}
.x5_c00122{left:33.750000px;}
.x3_c00122{left:35.400000px;}
.x2_c00122{left:36.900000px;}
.x1_c00122{left:157.350000px;}
.xc_c00122{left:225.039230px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls2_c00122{letter-spacing:0.000000pt;}
.ls3_c00122{letter-spacing:2.666667pt;}
.ls1_c00122{letter-spacing:7.290667pt;}
.ls0_c00122{letter-spacing:13.333333pt;}
.ws2_c00122{word-spacing:-26.666667pt;}
.ws0_c00122{word-spacing:-14.781333pt;}
.ws1_c00122{word-spacing:-0.906667pt;}
.ws3_c00122{word-spacing:0.000000pt;}
._17_c00122{margin-left:-20.608000pt;}
._16_c00122{margin-left:-17.752000pt;}
._11_c00122{margin-left:-11.858667pt;}
._13_c00122{margin-left:-10.816000pt;}
._12_c00122{margin-left:-9.874667pt;}
._f_c00122{margin-left:-8.320000pt;}
._14_c00122{margin-left:-6.237333pt;}
._b_c00122{margin-left:-4.952000pt;}
._10_c00122{margin-left:-3.973333pt;}
._8_c00122{margin-left:-3.029333pt;}
._5_c00122{margin-left:-1.792000pt;}
._7_c00122{width:1.405333pt;}
._2_c00122{width:2.304000pt;}
._3_c00122{width:3.648000pt;}
._1_c00122{width:4.544000pt;}
._6_c00122{width:5.514667pt;}
._c_c00122{width:6.877333pt;}
._0_c00122{width:8.704000pt;}
._9_c00122{width:10.040000pt;}
._a_c00122{width:12.738667pt;}
._d_c00122{width:13.981333pt;}
._e_c00122{width:16.509333pt;}
._18_c00122{width:86.464000pt;}
._1a_c00122{width:206.242667pt;}
._4_c00122{width:309.802667pt;}
._19_c00122{width:799.744000pt;}
._15_c00122{width:933.434667pt;}
.fs4_c00122{font-size:42.666667pt;}
.fs3_c00122{font-size:53.333333pt;}
.fs2_c00122{font-size:61.333333pt;}
.fs0_c00122{font-size:64.000000pt;}
.fs1_c00122{font-size:69.333333pt;}
.y0_c00122{bottom:0.000000pt;}
.y1f_c00122{bottom:2.760000pt;}
.y1e_c00122{bottom:6.425217pt;}
.y1d_c00122{bottom:37.440000pt;}
.y1c_c00122{bottom:60.640000pt;}
.y1b_c00122{bottom:85.706667pt;}
.y1a_c00122{bottom:105.573333pt;}
.y19_c00122{bottom:125.440000pt;}
.y18_c00122{bottom:149.440000pt;}
.y17_c00122{bottom:168.906667pt;}
.y16_c00122{bottom:193.840000pt;}
.y15_c00122{bottom:214.106667pt;}
.y14_c00122{bottom:237.840000pt;}
.y13_c00122{bottom:259.440000pt;}
.y12_c00122{bottom:279.306667pt;}
.y11_c00122{bottom:300.906667pt;}
.y10_c00122{bottom:322.240000pt;}
.yf_c00122{bottom:344.106667pt;}
.ye_c00122{bottom:365.706667pt;}
.yd_c00122{bottom:388.240000pt;}
.yc_c00122{bottom:410.106667pt;}
.yb_c00122{bottom:431.706667pt;}
.ya_c00122{bottom:453.573333pt;}
.y9_c00122{bottom:475.440000pt;}
.y8_c00122{bottom:497.306667pt;}
.y7_c00122{bottom:518.906667pt;}
.y6_c00122{bottom:540.240000pt;}
.y5_c00122{bottom:561.840000pt;}
.y4_c00122{bottom:583.440000pt;}
.y3_c00122{bottom:605.306667pt;}
.y2_c00122{bottom:626.906667pt;}
.y1_c00122{bottom:649.840000pt;}
.h6_c00122{height:11.733399pt;}
.h7_c00122{height:38.937500pt;}
.h2_c00122{height:74.906250pt;}
.h3_c00122{height:77.654948pt;}
.h4_c00122{height:81.031250pt;}
.h5_c00122{height:87.783854pt;}
.h1_c00122{height:698.000000pt;}
.h0_c00122{height:698.133333pt;}
.w2_c00122{width:93.222667pt;}
.w0_c00122{width:485.733333pt;}
.w1_c00122{width:486.000000pt;}
.x0_c00122{left:0.000000pt;}
.xb_c00122{left:20.000000pt;}
.xa_c00122{left:22.533333pt;}
.x9_c00122{left:23.600000pt;}
.x8_c00122{left:25.733333pt;}
.x7_c00122{left:26.666667pt;}
.x6_c00122{left:27.866667pt;}
.x4_c00122{left:28.800000pt;}
.x5_c00122{left:30.000000pt;}
.x3_c00122{left:31.466667pt;}
.x2_c00122{left:32.800000pt;}
.x1_c00122{left:139.866667pt;}
.xc_c00122{left:200.034871pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c84e64462897415930efbba2.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00123;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00123;src:url('chunks/assets/font_e6ba5e88c851fc9c8038f63f.woff2')format("woff");}.ff3_c00123{font-family:ff3_c00123;line-height:1.568848;font-style:normal;font-weight:normal;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_47d03d640db9600d64046e15.woff2')format("woff");}.ff4_c00123{font-family:ff4_c00123;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00123{font-family:ff5_c00123;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00123{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00123{vertical-align:0.000000px;}
.ls1_c00123{letter-spacing:0.000000px;}
.ls0_c00123{letter-spacing:3.000000px;}
.ls2_c00123{letter-spacing:6.000000px;}
.sc__c00123{text-shadow:none;}
.sc0_c00123{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00123{-webkit-text-stroke:0px transparent;}
.sc0_c00123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00123{word-spacing:-31.809000px;}
.ws2_c00123{word-spacing:-20.352000px;}
.ws1_c00123{word-spacing:-19.629000px;}
.ws3_c00123{word-spacing:0.000000px;}
._2_c00123{margin-left:-17.220000px;}
._11_c00123{margin-left:-13.344000px;}
._12_c00123{margin-left:-10.800000px;}
._b_c00123{margin-left:-6.696000px;}
._d_c00123{margin-left:-5.583000px;}
._8_c00123{margin-left:-3.933000px;}
._a_c00123{margin-left:-2.898000px;}
._7_c00123{margin-left:-1.848000px;}
._1_c00123{width:1.596000px;}
._0_c00123{width:3.528000px;}
._3_c00123{width:4.620000px;}
._4_c00123{width:6.348000px;}
._9_c00123{width:7.563000px;}
._5_c00123{width:9.375000px;}
._10_c00123{width:11.166000px;}
._f_c00123{width:12.447000px;}
._6_c00123{width:13.458000px;}
._e_c00123{width:15.180000px;}
._c_c00123{width:18.180000px;}
.fc2_c00123{color:transparent;}
.fc1_c00123{color:rgb(128,128,128);}
.fc0_c00123{color:rgb(0,0,0);}
.fs4_c00123{font-size:48.000000px;}
.fs2_c00123{font-size:63.000000px;}
.fs1_c00123{font-size:69.000000px;}
.fs3_c00123{font-size:72.000000px;}
.fs0_c00123{font-size:84.000000px;}
.y0_c00123{bottom:0.000000px;}
.y1f_c00123{bottom:3.105000px;}
.y1e_c00123{bottom:7.228363px;}
.y1d_c00123{bottom:45.150000px;}
.y1c_c00123{bottom:68.100000px;}
.y1b_c00123{bottom:94.050000px;}
.y1a_c00123{bottom:119.850000px;}
.y19_c00123{bottom:144.450000px;}
.y18_c00123{bottom:170.100000px;}
.y17_c00123{bottom:195.000000px;}
.y16_c00123{bottom:219.750000px;}
.y15_c00123{bottom:244.950000px;}
.y14_c00123{bottom:269.250000px;}
.y13_c00123{bottom:294.300000px;}
.y12_c00123{bottom:318.600000px;}
.y11_c00123{bottom:343.800000px;}
.y10_c00123{bottom:368.250000px;}
.yf_c00123{bottom:392.550000px;}
.ye_c00123{bottom:417.450000px;}
.yd_c00123{bottom:442.350000px;}
.yc_c00123{bottom:466.350000px;}
.yb_c00123{bottom:490.950000px;}
.ya_c00123{bottom:514.950000px;}
.y9_c00123{bottom:539.550000px;}
.y8_c00123{bottom:564.000000px;}
.y7_c00123{bottom:588.300000px;}
.y6_c00123{bottom:613.200000px;}
.y5_c00123{bottom:637.500000px;}
.y4_c00123{bottom:661.800000px;}
.y3_c00123{bottom:686.250000px;}
.y2_c00123{bottom:711.150000px;}
.y1_c00123{bottom:736.800000px;}
.h5_c00123{height:13.200074px;}
.h6_c00123{height:43.804688px;}
.h2_c00123{height:82.441406px;}
.h3_c00123{height:87.361816px;}
.h4_c00123{height:91.160156px;}
.h0_c00123{height:785.700000px;}
.h1_c00123{height:786.000000px;}
.w2_c00123{width:104.875500px;}
.w1_c00123{width:541.500000px;}
.w0_c00123{width:541.650000px;}
.x0_c00123{left:0.000000px;}
.x4_c00123{left:145.200000px;}
.x2_c00123{left:146.550000px;}
.x3_c00123{left:147.600000px;}
.x5_c00123{left:148.800000px;}
.x7_c00123{left:222.639267px;}
.x1_c00123{left:262.950000px;}
.x6_c00123{left:492.150000px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls1_c00123{letter-spacing:0.000000pt;}
.ls0_c00123{letter-spacing:2.666667pt;}
.ls2_c00123{letter-spacing:5.333333pt;}
.ws0_c00123{word-spacing:-28.274667pt;}
.ws2_c00123{word-spacing:-18.090667pt;}
.ws1_c00123{word-spacing:-17.448000pt;}
.ws3_c00123{word-spacing:0.000000pt;}
._2_c00123{margin-left:-15.306667pt;}
._11_c00123{margin-left:-11.861333pt;}
._12_c00123{margin-left:-9.600000pt;}
._b_c00123{margin-left:-5.952000pt;}
._d_c00123{margin-left:-4.962667pt;}
._8_c00123{margin-left:-3.496000pt;}
._a_c00123{margin-left:-2.576000pt;}
._7_c00123{margin-left:-1.642667pt;}
._1_c00123{width:1.418667pt;}
._0_c00123{width:3.136000pt;}
._3_c00123{width:4.106667pt;}
._4_c00123{width:5.642667pt;}
._9_c00123{width:6.722667pt;}
._5_c00123{width:8.333333pt;}
._10_c00123{width:9.925333pt;}
._f_c00123{width:11.064000pt;}
._6_c00123{width:11.962667pt;}
._e_c00123{width:13.493333pt;}
._c_c00123{width:16.160000pt;}
.fs4_c00123{font-size:42.666667pt;}
.fs2_c00123{font-size:56.000000pt;}
.fs1_c00123{font-size:61.333333pt;}
.fs3_c00123{font-size:64.000000pt;}
.fs0_c00123{font-size:74.666667pt;}
.y0_c00123{bottom:0.000000pt;}
.y1f_c00123{bottom:2.760000pt;}
.y1e_c00123{bottom:6.425212pt;}
.y1d_c00123{bottom:40.133333pt;}
.y1c_c00123{bottom:60.533333pt;}
.y1b_c00123{bottom:83.600000pt;}
.y1a_c00123{bottom:106.533333pt;}
.y19_c00123{bottom:128.400000pt;}
.y18_c00123{bottom:151.200000pt;}
.y17_c00123{bottom:173.333333pt;}
.y16_c00123{bottom:195.333333pt;}
.y15_c00123{bottom:217.733333pt;}
.y14_c00123{bottom:239.333333pt;}
.y13_c00123{bottom:261.600000pt;}
.y12_c00123{bottom:283.200000pt;}
.y11_c00123{bottom:305.600000pt;}
.y10_c00123{bottom:327.333333pt;}
.yf_c00123{bottom:348.933333pt;}
.ye_c00123{bottom:371.066667pt;}
.yd_c00123{bottom:393.200000pt;}
.yc_c00123{bottom:414.533333pt;}
.yb_c00123{bottom:436.400000pt;}
.ya_c00123{bottom:457.733333pt;}
.y9_c00123{bottom:479.600000pt;}
.y8_c00123{bottom:501.333333pt;}
.y7_c00123{bottom:522.933333pt;}
.y6_c00123{bottom:545.066667pt;}
.y5_c00123{bottom:566.666667pt;}
.y4_c00123{bottom:588.266667pt;}
.y3_c00123{bottom:610.000000pt;}
.y2_c00123{bottom:632.133333pt;}
.y1_c00123{bottom:654.933333pt;}
.h5_c00123{height:11.733399pt;}
.h6_c00123{height:38.937500pt;}
.h2_c00123{height:73.281250pt;}
.h3_c00123{height:77.654948pt;}
.h4_c00123{height:81.031250pt;}
.h0_c00123{height:698.400000pt;}
.h1_c00123{height:698.666667pt;}
.w2_c00123{width:93.222667pt;}
.w1_c00123{width:481.333333pt;}
.w0_c00123{width:481.466667pt;}
.x0_c00123{left:0.000000pt;}
.x4_c00123{left:129.066667pt;}
.x2_c00123{left:130.266667pt;}
.x3_c00123{left:131.200000pt;}
.x5_c00123{left:132.266667pt;}
.x7_c00123{left:197.901571pt;}
.x1_c00123{left:233.733333pt;}
.x6_c00123{left:437.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6cbb515af75785b2c241d4cc.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00124;src:url('chunks/assets/font_7ea764509e8f0d859db1f306.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00124;src:url('chunks/assets/font_41bb8458ed416131e5732ca7.woff2')format("woff");}.ff3_c00124{font-family:ff3_c00124;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00124;src:url('chunks/assets/font_0fd4c9c0889109311ca119d8.woff2')format("woff");}.ff4_c00124{font-family:ff4_c00124;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00124;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00124{font-family:ff5_c00124;line-height:1.219238;font-style: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;}
.ls3_c00124{letter-spacing:0.000000px;}
.ls2_c00124{letter-spacing:0.312000px;}
.ls1_c00124{letter-spacing:1.971000px;}
.ls4_c00124{letter-spacing:3.000000px;}
.ls0_c00124{letter-spacing:6.000000px;}
.sc__c00124{text-shadow:none;}
.sc0_c00124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00124{-webkit-text-stroke:0px transparent;}
.sc0_c00124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00124{word-spacing:-25.284000px;}
.ws1_c00124{word-spacing:-22.629000px;}
.ws2_c00124{word-spacing:-16.629000px;}
.ws3_c00124{word-spacing:0.000000px;}
._14_c00124{margin-left:-23.667000px;}
._1b_c00124{margin-left:-21.459000px;}
._10_c00124{margin-left:-12.840000px;}
._18_c00124{margin-left:-11.031000px;}
._17_c00124{margin-left:-9.351000px;}
._19_c00124{margin-left:-8.190000px;}
._f_c00124{margin-left:-6.336000px;}
._16_c00124{margin-left:-5.205000px;}
._e_c00124{margin-left:-3.519000px;}
._7_c00124{margin-left:-2.415000px;}
._b_c00124{margin-left:-1.254000px;}
._a_c00124{width:1.035000px;}
._6_c00124{width:2.139000px;}
._11_c00124{width:3.141000px;}
._9_c00124{width:4.146000px;}
._2_c00124{width:5.376000px;}
._1_c00124{width:6.972000px;}
._d_c00124{width:8.004000px;}
._0_c00124{width:9.240000px;}
._3_c00124{width:10.836000px;}
._4_c00124{width:11.928000px;}
._8_c00124{width:13.386000px;}
._12_c00124{width:15.315000px;}
._15_c00124{width:16.593000px;}
._c_c00124{width:22.149000px;}
._1d_c00124{width:27.048000px;}
._1e_c00124{width:28.770000px;}
._1c_c00124{width:61.977000px;}
._1a_c00124{width:90.174000px;}
._13_c00124{width:141.174000px;}
._1f_c00124{width:189.357000px;}
._5_c00124{width:364.662000px;}
.fc2_c00124{color:transparent;}
.fc1_c00124{color:rgb(128,128,128);}
.fc0_c00124{color:rgb(0,0,0);}
.fs4_c00124{font-size:48.000000px;}
.fs2_c00124{font-size:69.000000px;}
.fs3_c00124{font-size:78.000000px;}
.fs1_c00124{font-size:81.000000px;}
.fs0_c00124{font-size:84.000000px;}
.y0_c00124{bottom:0.000000px;}
.y1f_c00124{bottom:3.105000px;}
.y1e_c00124{bottom:7.228363px;}
.y1d_c00124{bottom:39.750000px;}
.y1c_c00124{bottom:64.500000px;}
.y1b_c00124{bottom:88.650000px;}
.y1a_c00124{bottom:114.750000px;}
.y19_c00124{bottom:140.100000px;}
.y18_c00124{bottom:165.000000px;}
.y17_c00124{bottom:188.700000px;}
.y16_c00124{bottom:213.000000px;}
.y15_c00124{bottom:238.650000px;}
.y14_c00124{bottom:263.550000px;}
.y13_c00124{bottom:286.800000px;}
.y12_c00124{bottom:309.150000px;}
.y11_c00124{bottom:332.400000px;}
.y10_c00124{bottom:356.850000px;}
.yf_c00124{bottom:381.150000px;}
.ye_c00124{bottom:405.300000px;}
.yd_c00124{bottom:431.250000px;}
.yc_c00124{bottom:454.500000px;}
.yb_c00124{bottom:478.650000px;}
.ya_c00124{bottom:502.950000px;}
.y9_c00124{bottom:528.150000px;}
.y8_c00124{bottom:552.450000px;}
.y7_c00124{bottom:576.150000px;}
.y6_c00124{bottom:600.450000px;}
.y5_c00124{bottom:625.350000px;}
.y4_c00124{bottom:651.000000px;}
.y3_c00124{bottom:673.950000px;}
.y2_c00124{bottom:698.400000px;}
.y1_c00124{bottom:723.900000px;}
.h4_c00124{height:13.200074px;}
.h5_c00124{height:43.804688px;}
.h2_c00124{height:82.400391px;}
.h3_c00124{height:87.361816px;}
.h1_c00124{height:780.000000px;}
.h0_c00124{height:780.300000px;}
.w2_c00124{width:104.875500px;}
.w1_c00124{width:542.250000px;}
.w0_c00124{width:542.400000px;}
.x0_c00124{left:0.000000px;}
.x2_c00124{left:31.950000px;}
.x3_c00124{left:33.450000px;}
.x1_c00124{left:150.150000px;}
.x5_c00124{left:223.014267px;}
.x4_c00124{left:286.200000px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls3_c00124{letter-spacing:0.000000pt;}
.ls2_c00124{letter-spacing:0.277333pt;}
.ls1_c00124{letter-spacing:1.752000pt;}
.ls4_c00124{letter-spacing:2.666667pt;}
.ls0_c00124{letter-spacing:5.333333pt;}
.ws0_c00124{word-spacing:-22.474667pt;}
.ws1_c00124{word-spacing:-20.114667pt;}
.ws2_c00124{word-spacing:-14.781333pt;}
.ws3_c00124{word-spacing:0.000000pt;}
._14_c00124{margin-left:-21.037333pt;}
._1b_c00124{margin-left:-19.074667pt;}
._10_c00124{margin-left:-11.413333pt;}
._18_c00124{margin-left:-9.805333pt;}
._17_c00124{margin-left:-8.312000pt;}
._19_c00124{margin-left:-7.280000pt;}
._f_c00124{margin-left:-5.632000pt;}
._16_c00124{margin-left:-4.626667pt;}
._e_c00124{margin-left:-3.128000pt;}
._7_c00124{margin-left:-2.146667pt;}
._b_c00124{margin-left:-1.114667pt;}
._a_c00124{width:0.920000pt;}
._6_c00124{width:1.901333pt;}
._11_c00124{width:2.792000pt;}
._9_c00124{width:3.685333pt;}
._2_c00124{width:4.778667pt;}
._1_c00124{width:6.197333pt;}
._d_c00124{width:7.114667pt;}
._0_c00124{width:8.213333pt;}
._3_c00124{width:9.632000pt;}
._4_c00124{width:10.602667pt;}
._8_c00124{width:11.898667pt;}
._12_c00124{width:13.613333pt;}
._15_c00124{width:14.749333pt;}
._c_c00124{width:19.688000pt;}
._1d_c00124{width:24.042667pt;}
._1e_c00124{width:25.573333pt;}
._1c_c00124{width:55.090667pt;}
._1a_c00124{width:80.154667pt;}
._13_c00124{width:125.488000pt;}
._1f_c00124{width:168.317333pt;}
._5_c00124{width:324.144000pt;}
.fs4_c00124{font-size:42.666667pt;}
.fs2_c00124{font-size:61.333333pt;}
.fs3_c00124{font-size:69.333333pt;}
.fs1_c00124{font-size:72.000000pt;}
.fs0_c00124{font-size:74.666667pt;}
.y0_c00124{bottom:0.000000pt;}
.y1f_c00124{bottom:2.760000pt;}
.y1e_c00124{bottom:6.425212pt;}
.y1d_c00124{bottom:35.333333pt;}
.y1c_c00124{bottom:57.333333pt;}
.y1b_c00124{bottom:78.800000pt;}
.y1a_c00124{bottom:102.000000pt;}
.y19_c00124{bottom:124.533333pt;}
.y18_c00124{bottom:146.666667pt;}
.y17_c00124{bottom:167.733333pt;}
.y16_c00124{bottom:189.333333pt;}
.y15_c00124{bottom:212.133333pt;}
.y14_c00124{bottom:234.266667pt;}
.y13_c00124{bottom:254.933333pt;}
.y12_c00124{bottom:274.800000pt;}
.y11_c00124{bottom:295.466667pt;}
.y10_c00124{bottom:317.200000pt;}
.yf_c00124{bottom:338.800000pt;}
.ye_c00124{bottom:360.266667pt;}
.yd_c00124{bottom:383.333333pt;}
.yc_c00124{bottom:404.000000pt;}
.yb_c00124{bottom:425.466667pt;}
.ya_c00124{bottom:447.066667pt;}
.y9_c00124{bottom:469.466667pt;}
.y8_c00124{bottom:491.066667pt;}
.y7_c00124{bottom:512.133333pt;}
.y6_c00124{bottom:533.733333pt;}
.y5_c00124{bottom:555.866667pt;}
.y4_c00124{bottom:578.666667pt;}
.y3_c00124{bottom:599.066667pt;}
.y2_c00124{bottom:620.800000pt;}
.y1_c00124{bottom:643.466667pt;}
.h4_c00124{height:11.733399pt;}
.h5_c00124{height:38.937500pt;}
.h2_c00124{height:73.244792pt;}
.h3_c00124{height:77.654948pt;}
.h1_c00124{height:693.333333pt;}
.h0_c00124{height:693.600000pt;}
.w2_c00124{width:93.222667pt;}
.w1_c00124{width:482.000000pt;}
.w0_c00124{width:482.133333pt;}
.x0_c00124{left:0.000000pt;}
.x2_c00124{left:28.400000pt;}
.x3_c00124{left:29.733333pt;}
.x1_c00124{left:133.466667pt;}
.x5_c00124{left:198.234904pt;}
.x4_c00124{left:254.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_47389b8c5ab07a3fab5b78eb.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.480469;font-style:normal;font-weight:normal;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_674c620e77a8165f3f20543c.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00125{font-family:ff3_c00125;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00125{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00125{vertical-align:0.000000px;}
.ls0_c00125{letter-spacing:0.000000px;}
.ls1_c00125{letter-spacing:3.000000px;}
.sc__c00125{text-shadow:none;}
.sc0_c00125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00125{-webkit-text-stroke:0px transparent;}
.sc0_c00125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00125{word-spacing:-16.629000px;}
.ws1_c00125{word-spacing:0.000000px;}
._1d_c00125{margin-left:-29.187000px;}
._20_c00125{margin-left:-28.014000px;}
._18_c00125{margin-left:-23.667000px;}
._16_c00125{margin-left:-20.079000px;}
._11_c00125{margin-left:-17.595000px;}
._3_c00125{margin-left:-15.318000px;}
._13_c00125{margin-left:-11.868000px;}
._14_c00125{margin-left:-10.695000px;}
._b_c00125{margin-left:-8.763000px;}
._12_c00125{margin-left:-7.740000px;}
._10_c00125{margin-left:-5.727000px;}
._a_c00125{margin-left:-4.209000px;}
._e_c00125{margin-left:-2.346000px;}
._9_c00125{margin-left:-1.311000px;}
._d_c00125{width:1.173000px;}
._7_c00125{width:2.277000px;}
._8_c00125{width:3.519000px;}
._f_c00125{width:4.554000px;}
._1_c00125{width:5.658000px;}
._4_c00125{width:6.693000px;}
._c_c00125{width:7.797000px;}
._2_c00125{width:9.936000px;}
._6_c00125{width:11.316000px;}
._0_c00125{width:13.386000px;}
._5_c00125{width:18.078000px;}
._1a_c00125{width:35.535000px;}
._21_c00125{width:40.071000px;}
._17_c00125{width:48.507000px;}
._1b_c00125{width:71.070000px;}
._1c_c00125{width:73.002000px;}
._19_c00125{width:77.556000px;}
._1f_c00125{width:91.218000px;}
._1e_c00125{width:224.595000px;}
._15_c00125{width:407.859000px;}
._22_c00125{width:1008.090000px;}
.fc2_c00125{color:transparent;}
.fc1_c00125{color:rgb(128,128,128);}
.fc0_c00125{color:rgb(0,0,0);}
.fs1_c00125{font-size:33.000000px;}
.fs2_c00125{font-size:48.000000px;}
.fs0_c00125{font-size:69.000000px;}
.y0_c00125{bottom:0.000000px;}
.y1f_c00125{bottom:3.105000px;}
.y1e_c00125{bottom:7.228371px;}
.y1d_c00125{bottom:47.715000px;}
.y1c_c00125{bottom:71.565000px;}
.y1b_c00125{bottom:97.515000px;}
.y1a_c00125{bottom:122.265000px;}
.y19_c00125{bottom:148.215000px;}
.y18_c00125{bottom:172.815000px;}
.y17_c00125{bottom:198.765000px;}
.y16_c00125{bottom:222.465000px;}
.y15_c00125{bottom:247.365000px;}
.y14_c00125{bottom:272.415000px;}
.y13_c00125{bottom:297.015000px;}
.y12_c00125{bottom:322.065000px;}
.y11_c00125{bottom:346.065000px;}
.y10_c00125{bottom:370.365000px;}
.yf_c00125{bottom:395.265000px;}
.ye_c00125{bottom:420.315000px;}
.yd_c00125{bottom:444.615000px;}
.yc_c00125{bottom:470.115000px;}
.yb_c00125{bottom:493.065000px;}
.ya_c00125{bottom:518.415000px;}
.y9_c00125{bottom:543.165000px;}
.y8_c00125{bottom:567.315000px;}
.y7_c00125{bottom:592.065000px;}
.y6_c00125{bottom:616.665000px;}
.y5_c00125{bottom:640.215000px;}
.y4_c00125{bottom:665.565000px;}
.y3_c00125{bottom:690.165000px;}
.y2_c00125{bottom:714.915000px;}
.y1_c00125{bottom:740.865000px;}
.h3_c00125{height:13.200074px;}
.h4_c00125{height:43.804688px;}
.h2_c00125{height:87.361816px;}
.h1_c00125{height:797.250000px;}
.h0_c00125{height:797.325000px;}
.w2_c00125{width:104.875500px;}
.w1_c00125{width:546.000000px;}
.w0_c00125{width:546.225000px;}
.x0_c00125{left:0.000000px;}
.x9_c00125{left:65.100000px;}
.xa_c00125{left:72.000000px;}
.xb_c00125{left:74.550000px;}
.xc_c00125{left:113.100000px;}
.x2_c00125{left:137.700000px;}
.x3_c00125{left:139.650000px;}
.x7_c00125{left:141.150000px;}
.x8_c00125{left:142.500000px;}
.x4_c00125{left:145.800000px;}
.x5_c00125{left:146.850000px;}
.x6_c00125{left:201.150000px;}
.xd_c00125{left:219.750000px;}
.xe_c00125{left:224.926758px;}
.x1_c00125{left:251.700000px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls0_c00125{letter-spacing:0.000000pt;}
.ls1_c00125{letter-spacing:2.666667pt;}
.ws0_c00125{word-spacing:-14.781333pt;}
.ws1_c00125{word-spacing:0.000000pt;}
._1d_c00125{margin-left:-25.944000pt;}
._20_c00125{margin-left:-24.901333pt;}
._18_c00125{margin-left:-21.037333pt;}
._16_c00125{margin-left:-17.848000pt;}
._11_c00125{margin-left:-15.640000pt;}
._3_c00125{margin-left:-13.616000pt;}
._13_c00125{margin-left:-10.549333pt;}
._14_c00125{margin-left:-9.506667pt;}
._b_c00125{margin-left:-7.789333pt;}
._12_c00125{margin-left:-6.880000pt;}
._10_c00125{margin-left:-5.090667pt;}
._a_c00125{margin-left:-3.741333pt;}
._e_c00125{margin-left:-2.085333pt;}
._9_c00125{margin-left:-1.165333pt;}
._d_c00125{width:1.042667pt;}
._7_c00125{width:2.024000pt;}
._8_c00125{width:3.128000pt;}
._f_c00125{width:4.048000pt;}
._1_c00125{width:5.029333pt;}
._4_c00125{width:5.949333pt;}
._c_c00125{width:6.930667pt;}
._2_c00125{width:8.832000pt;}
._6_c00125{width:10.058667pt;}
._0_c00125{width:11.898667pt;}
._5_c00125{width:16.069333pt;}
._1a_c00125{width:31.586667pt;}
._21_c00125{width:35.618667pt;}
._17_c00125{width:43.117333pt;}
._1b_c00125{width:63.173333pt;}
._1c_c00125{width:64.890667pt;}
._19_c00125{width:68.938667pt;}
._1f_c00125{width:81.082667pt;}
._1e_c00125{width:199.640000pt;}
._15_c00125{width:362.541333pt;}
._22_c00125{width:896.080000pt;}
.fs1_c00125{font-size:29.333333pt;}
.fs2_c00125{font-size:42.666667pt;}
.fs0_c00125{font-size:61.333333pt;}
.y0_c00125{bottom:0.000000pt;}
.y1f_c00125{bottom:2.760000pt;}
.y1e_c00125{bottom:6.425219pt;}
.y1d_c00125{bottom:42.413333pt;}
.y1c_c00125{bottom:63.613333pt;}
.y1b_c00125{bottom:86.680000pt;}
.y1a_c00125{bottom:108.680000pt;}
.y19_c00125{bottom:131.746667pt;}
.y18_c00125{bottom:153.613333pt;}
.y17_c00125{bottom:176.680000pt;}
.y16_c00125{bottom:197.746667pt;}
.y15_c00125{bottom:219.880000pt;}
.y14_c00125{bottom:242.146667pt;}
.y13_c00125{bottom:264.013333pt;}
.y12_c00125{bottom:286.280000pt;}
.y11_c00125{bottom:307.613333pt;}
.y10_c00125{bottom:329.213333pt;}
.yf_c00125{bottom:351.346667pt;}
.ye_c00125{bottom:373.613333pt;}
.yd_c00125{bottom:395.213333pt;}
.yc_c00125{bottom:417.880000pt;}
.yb_c00125{bottom:438.280000pt;}
.ya_c00125{bottom:460.813333pt;}
.y9_c00125{bottom:482.813333pt;}
.y8_c00125{bottom:504.280000pt;}
.y7_c00125{bottom:526.280000pt;}
.y6_c00125{bottom:548.146667pt;}
.y5_c00125{bottom:569.080000pt;}
.y4_c00125{bottom:591.613333pt;}
.y3_c00125{bottom:613.480000pt;}
.y2_c00125{bottom:635.480000pt;}
.y1_c00125{bottom:658.546667pt;}
.h3_c00125{height:11.733399pt;}
.h4_c00125{height:38.937500pt;}
.h2_c00125{height:77.654948pt;}
.h1_c00125{height:708.666667pt;}
.h0_c00125{height:708.733333pt;}
.w2_c00125{width:93.222667pt;}
.w1_c00125{width:485.333333pt;}
.w0_c00125{width:485.533333pt;}
.x0_c00125{left:0.000000pt;}
.x9_c00125{left:57.866667pt;}
.xa_c00125{left:64.000000pt;}
.xb_c00125{left:66.266667pt;}
.xc_c00125{left:100.533333pt;}
.x2_c00125{left:122.400000pt;}
.x3_c00125{left:124.133333pt;}
.x7_c00125{left:125.466667pt;}
.x8_c00125{left:126.666667pt;}
.x4_c00125{left:129.600000pt;}
.x5_c00125{left:130.533333pt;}
.x6_c00125{left:178.800000pt;}
.xd_c00125{left:195.333333pt;}
.xe_c00125{left:199.934896pt;}
.x1_c00125{left:223.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3fe64b7964fca92d34b661bb.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00126;src:url('chunks/assets/font_c25c87bd1c7bf0496dfa2627.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:1.568848;font-style:normal;font-weight:normal;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_b71676cdf5d35e69f9936488.woff2')format("woff");}.ff3_c00126{font-family:ff3_c00126;line-height:1.575000;font-style:normal;font-weight:normal;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_50030cdc00a4e842ef204832.woff2')format("woff");}.ff4_c00126{font-family:ff4_c00126;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00126;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00126{font-family:ff5_c00126;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00126{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00126{vertical-align:0.000000px;}
.ls2_c00126{letter-spacing:-3.000000px;}
.ls0_c00126{letter-spacing:0.000000px;}
.ls1_c00126{letter-spacing:3.000000px;}
.sc__c00126{text-shadow:none;}
.sc0_c00126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00126{-webkit-text-stroke:0px transparent;}
.sc0_c00126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00126{word-spacing:-33.192000px;}
.ws0_c00126{word-spacing:-27.051000px;}
.ws2_c00126{word-spacing:0.000000px;}
._15_c00126{margin-left:-13.644000px;}
._13_c00126{margin-left:-12.516000px;}
._11_c00126{margin-left:-10.584000px;}
._12_c00126{margin-left:-9.372000px;}
._f_c00126{margin-left:-7.212000px;}
._c_c00126{margin-left:-5.736000px;}
._2_c00126{margin-left:-3.948000px;}
._b_c00126{margin-left:-2.916000px;}
._4_c00126{margin-left:-1.764000px;}
._3_c00126{width:1.848000px;}
._6_c00126{width:2.940000px;}
._5_c00126{width:4.032000px;}
._d_c00126{width:5.148000px;}
._1_c00126{width:6.216000px;}
._7_c00126{width:7.308000px;}
._9_c00126{width:8.352000px;}
._17_c00126{width:9.516000px;}
._0_c00126{width:10.752000px;}
._e_c00126{width:12.240000px;}
._a_c00126{width:13.548000px;}
._14_c00126{width:14.580000px;}
._10_c00126{width:16.344000px;}
._18_c00126{width:33.012000px;}
._19_c00126{width:194.196000px;}
._8_c00126{width:347.172000px;}
._16_c00126{width:392.640000px;}
.fc2_c00126{color:transparent;}
.fc1_c00126{color:rgb(128,128,128);}
.fc0_c00126{color:rgb(0,0,0);}
.fs5_c00126{font-size:48.000000px;}
.fs3_c00126{font-size:63.000000px;}
.fs2_c00126{font-size:66.000000px;}
.fs1_c00126{font-size:72.000000px;}
.fs4_c00126{font-size:78.000000px;}
.fs0_c00126{font-size:84.000000px;}
.y0_c00126{bottom:0.000000px;}
.y1f_c00126{bottom:3.105000px;}
.y1e_c00126{bottom:7.228357px;}
.y1d_c00126{bottom:40.230000px;}
.y1c_c00126{bottom:65.430000px;}
.y1b_c00126{bottom:91.530000px;}
.y1a_c00126{bottom:116.130000px;}
.y19_c00126{bottom:141.180000px;}
.y18_c00126{bottom:166.680000px;}
.y17_c00126{bottom:191.730000px;}
.y16_c00126{bottom:216.030000px;}
.y15_c00126{bottom:241.080000px;}
.y14_c00126{bottom:265.380000px;}
.y13_c00126{bottom:288.930000px;}
.y12_c00126{bottom:311.280000px;}
.y11_c00126{bottom:335.430000px;}
.y10_c00126{bottom:359.430000px;}
.yf_c00126{bottom:384.480000px;}
.ye_c00126{bottom:408.480000px;}
.yd_c00126{bottom:433.380000px;}
.yc_c00126{bottom:457.680000px;}
.yb_c00126{bottom:482.280000px;}
.ya_c00126{bottom:506.880000px;}
.y9_c00126{bottom:531.180000px;}
.y8_c00126{bottom:555.930000px;}
.y7_c00126{bottom:579.780000px;}
.y6_c00126{bottom:604.080000px;}
.y5_c00126{bottom:628.380000px;}
.y4_c00126{bottom:653.430000px;}
.y3_c00126{bottom:677.430000px;}
.y2_c00126{bottom:701.730000px;}
.y1_c00126{bottom:727.380000px;}
.h5_c00126{height:13.200074px;}
.h6_c00126{height:43.804688px;}
.h2_c00126{height:82.400391px;}
.h3_c00126{height:91.160156px;}
.h4_c00126{height:98.756836px;}
.h1_c00126{height:783.000000px;}
.h0_c00126{height:783.300000px;}
.w2_c00126{width:104.875500px;}
.w1_c00126{width:544.500000px;}
.w0_c00126{width:544.575000px;}
.x0_c00126{left:0.000000px;}
.x4_c00126{left:40.500000px;}
.x2_c00126{left:42.900000px;}
.x3_c00126{left:44.550000px;}
.x1_c00126{left:162.450000px;}
.x6_c00126{left:224.101730px;}
.x5_c00126{left:299.100000px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls2_c00126{letter-spacing:-2.666667pt;}
.ls0_c00126{letter-spacing:0.000000pt;}
.ls1_c00126{letter-spacing:2.666667pt;}
.ws1_c00126{word-spacing:-29.504000pt;}
.ws0_c00126{word-spacing:-24.045333pt;}
.ws2_c00126{word-spacing:0.000000pt;}
._15_c00126{margin-left:-12.128000pt;}
._13_c00126{margin-left:-11.125333pt;}
._11_c00126{margin-left:-9.408000pt;}
._12_c00126{margin-left:-8.330667pt;}
._f_c00126{margin-left:-6.410667pt;}
._c_c00126{margin-left:-5.098667pt;}
._2_c00126{margin-left:-3.509333pt;}
._b_c00126{margin-left:-2.592000pt;}
._4_c00126{margin-left:-1.568000pt;}
._3_c00126{width:1.642667pt;}
._6_c00126{width:2.613333pt;}
._5_c00126{width:3.584000pt;}
._d_c00126{width:4.576000pt;}
._1_c00126{width:5.525333pt;}
._7_c00126{width:6.496000pt;}
._9_c00126{width:7.424000pt;}
._17_c00126{width:8.458667pt;}
._0_c00126{width:9.557333pt;}
._e_c00126{width:10.880000pt;}
._a_c00126{width:12.042667pt;}
._14_c00126{width:12.960000pt;}
._10_c00126{width:14.528000pt;}
._18_c00126{width:29.344000pt;}
._19_c00126{width:172.618667pt;}
._8_c00126{width:308.597333pt;}
._16_c00126{width:349.013333pt;}
.fs5_c00126{font-size:42.666667pt;}
.fs3_c00126{font-size:56.000000pt;}
.fs2_c00126{font-size:58.666667pt;}
.fs1_c00126{font-size:64.000000pt;}
.fs4_c00126{font-size:69.333333pt;}
.fs0_c00126{font-size:74.666667pt;}
.y0_c00126{bottom:0.000000pt;}
.y1f_c00126{bottom:2.760000pt;}
.y1e_c00126{bottom:6.425206pt;}
.y1d_c00126{bottom:35.760000pt;}
.y1c_c00126{bottom:58.160000pt;}
.y1b_c00126{bottom:81.360000pt;}
.y1a_c00126{bottom:103.226667pt;}
.y19_c00126{bottom:125.493333pt;}
.y18_c00126{bottom:148.160000pt;}
.y17_c00126{bottom:170.426667pt;}
.y16_c00126{bottom:192.026667pt;}
.y15_c00126{bottom:214.293333pt;}
.y14_c00126{bottom:235.893333pt;}
.y13_c00126{bottom:256.826667pt;}
.y12_c00126{bottom:276.693333pt;}
.y11_c00126{bottom:298.160000pt;}
.y10_c00126{bottom:319.493333pt;}
.yf_c00126{bottom:341.760000pt;}
.ye_c00126{bottom:363.093333pt;}
.yd_c00126{bottom:385.226667pt;}
.yc_c00126{bottom:406.826667pt;}
.yb_c00126{bottom:428.693333pt;}
.ya_c00126{bottom:450.560000pt;}
.y9_c00126{bottom:472.160000pt;}
.y8_c00126{bottom:494.160000pt;}
.y7_c00126{bottom:515.360000pt;}
.y6_c00126{bottom:536.960000pt;}
.y5_c00126{bottom:558.560000pt;}
.y4_c00126{bottom:580.826667pt;}
.y3_c00126{bottom:602.160000pt;}
.y2_c00126{bottom:623.760000pt;}
.y1_c00126{bottom:646.560000pt;}
.h5_c00126{height:11.733399pt;}
.h6_c00126{height:38.937500pt;}
.h2_c00126{height:73.244792pt;}
.h3_c00126{height:81.031250pt;}
.h4_c00126{height:87.783854pt;}
.h1_c00126{height:696.000000pt;}
.h0_c00126{height:696.266667pt;}
.w2_c00126{width:93.222667pt;}
.w1_c00126{width:484.000000pt;}
.w0_c00126{width:484.066667pt;}
.x0_c00126{left:0.000000pt;}
.x4_c00126{left:36.000000pt;}
.x2_c00126{left:38.133333pt;}
.x3_c00126{left:39.600000pt;}
.x1_c00126{left:144.400000pt;}
.x6_c00126{left:199.201538pt;}
.x5_c00126{left:265.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_16013c9cb2fb14a3c2e784aa.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.480469;font-style:normal;font-weight:normal;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_f07b10ac698cae7de8e40d87.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.568848;font-style:normal;font-weight:normal;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_a0f3bbdd960dfb07975b6250.woff2')format("woff");}.ff3_c00127{font-family:ff3_c00127;line-height:1.568848;font-style:normal;font-weight:normal;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_b92bd2774d07d0d04fc2ec9a.woff2')format("woff");}.ff4_c00127{font-family:ff4_c00127;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00127{font-family:ff5_c00127;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00127{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00127{vertical-align:0.000000px;}
.ls3_c00127{letter-spacing:0.000000px;}
.ls2_c00127{letter-spacing:0.588000px;}
.ls1_c00127{letter-spacing:3.000000px;}
.ls0_c00127{letter-spacing:6.000000px;}
.sc__c00127{text-shadow:none;}
.sc0_c00127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00127{-webkit-text-stroke:0px transparent;}
.sc0_c00127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00127{word-spacing:-32.092800px;}
.ws2_c00127{word-spacing:-18.798000px;}
.ws0_c00127{word-spacing:-17.352000px;}
.ws3_c00127{word-spacing:0.000000px;}
._6_c00127{margin-left:-10.440000px;}
._11_c00127{margin-left:-8.496000px;}
._10_c00127{margin-left:-7.488000px;}
._7_c00127{margin-left:-5.904000px;}
._f_c00127{margin-left:-4.680000px;}
._a_c00127{margin-left:-3.168000px;}
._8_c00127{margin-left:-1.296000px;}
._9_c00127{width:1.224000px;}
._5_c00127{width:2.232000px;}
._4_c00127{width:3.600000px;}
._3_c00127{width:5.256000px;}
._12_c00127{width:6.408000px;}
._2_c00127{width:7.416000px;}
._0_c00127{width:8.928000px;}
._c_c00127{width:9.936000px;}
._1_c00127{width:10.944000px;}
._b_c00127{width:12.672000px;}
._d_c00127{width:15.276000px;}
._e_c00127{width:140.184000px;}
.fc2_c00127{color:transparent;}
.fc1_c00127{color:rgb(128,128,128);}
.fc0_c00127{color:rgb(0,0,0);}
.fs2_c00127{font-size:43.200000px;}
.fs5_c00127{font-size:48.000000px;}
.fs1_c00127{font-size:54.000000px;}
.fs3_c00127{font-size:63.000000px;}
.fs0_c00127{font-size:72.000000px;}
.fs4_c00127{font-size:78.000000px;}
.y0_c00127{bottom:0.000000px;}
.y1f_c00127{bottom:3.105000px;}
.y1e_c00127{bottom:7.228363px;}
.y1d_c00127{bottom:47.850000px;}
.y1c_c00127{bottom:70.650000px;}
.y1b_c00127{bottom:97.200000px;}
.y1a_c00127{bottom:122.550000px;}
.y19_c00127{bottom:147.450000px;}
.y18_c00127{bottom:171.900000px;}
.y17_c00127{bottom:197.400000px;}
.y16_c00127{bottom:223.050000px;}
.y15_c00127{bottom:247.500000px;}
.y14_c00127{bottom:272.400000px;}
.y13_c00127{bottom:297.300000px;}
.y12_c00127{bottom:322.950000px;}
.y11_c00127{bottom:347.250000px;}
.y10_c00127{bottom:371.700000px;}
.yf_c00127{bottom:396.000000px;}
.ye_c00127{bottom:420.600000px;}
.yd_c00127{bottom:445.800000px;}
.yc_c00127{bottom:469.800000px;}
.yb_c00127{bottom:494.400000px;}
.ya_c00127{bottom:519.450000px;}
.y9_c00127{bottom:544.050000px;}
.y8_c00127{bottom:568.650000px;}
.y7_c00127{bottom:592.950000px;}
.y6_c00127{bottom:617.400000px;}
.y5_c00127{bottom:642.300000px;}
.y4_c00127{bottom:666.600000px;}
.y3_c00127{bottom:691.200000px;}
.y2_c00127{bottom:717.150000px;}
.y1_c00127{bottom:742.500000px;}
.h5_c00127{height:13.200074px;}
.h6_c00127{height:43.804688px;}
.h2_c00127{height:84.269531px;}
.h3_c00127{height:91.160156px;}
.h4_c00127{height:98.756836px;}
.h0_c00127{height:797.850000px;}
.h1_c00127{height:798.000000px;}
.w1_c00127{width:104.875500px;}
.w0_c00127{width:526.500000px;}
.x0_c00127{left:0.000000px;}
.x2_c00127{left:121.050000px;}
.x3_c00127{left:122.400000px;}
.x4_c00127{left:123.450000px;}
.x5_c00127{left:125.250000px;}
.x6_c00127{left:126.600000px;}
.x7_c00127{left:129.150000px;}
.x8_c00127{left:151.950000px;}
.xa_c00127{left:215.064240px;}
.x1_c00127{left:232.500000px;}
.x9_c00127{left:476.250000px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls3_c00127{letter-spacing:0.000000pt;}
.ls2_c00127{letter-spacing:0.522667pt;}
.ls1_c00127{letter-spacing:2.666667pt;}
.ls0_c00127{letter-spacing:5.333333pt;}
.ws1_c00127{word-spacing:-28.526933pt;}
.ws2_c00127{word-spacing:-16.709333pt;}
.ws0_c00127{word-spacing:-15.424000pt;}
.ws3_c00127{word-spacing:0.000000pt;}
._6_c00127{margin-left:-9.280000pt;}
._11_c00127{margin-left:-7.552000pt;}
._10_c00127{margin-left:-6.656000pt;}
._7_c00127{margin-left:-5.248000pt;}
._f_c00127{margin-left:-4.160000pt;}
._a_c00127{margin-left:-2.816000pt;}
._8_c00127{margin-left:-1.152000pt;}
._9_c00127{width:1.088000pt;}
._5_c00127{width:1.984000pt;}
._4_c00127{width:3.200000pt;}
._3_c00127{width:4.672000pt;}
._12_c00127{width:5.696000pt;}
._2_c00127{width:6.592000pt;}
._0_c00127{width:7.936000pt;}
._c_c00127{width:8.832000pt;}
._1_c00127{width:9.728000pt;}
._b_c00127{width:11.264000pt;}
._d_c00127{width:13.578667pt;}
._e_c00127{width:124.608000pt;}
.fs2_c00127{font-size:38.400000pt;}
.fs5_c00127{font-size:42.666667pt;}
.fs1_c00127{font-size:48.000000pt;}
.fs3_c00127{font-size:56.000000pt;}
.fs0_c00127{font-size:64.000000pt;}
.fs4_c00127{font-size:69.333333pt;}
.y0_c00127{bottom:0.000000pt;}
.y1f_c00127{bottom:2.760000pt;}
.y1e_c00127{bottom:6.425212pt;}
.y1d_c00127{bottom:42.533333pt;}
.y1c_c00127{bottom:62.800000pt;}
.y1b_c00127{bottom:86.400000pt;}
.y1a_c00127{bottom:108.933333pt;}
.y19_c00127{bottom:131.066667pt;}
.y18_c00127{bottom:152.800000pt;}
.y17_c00127{bottom:175.466667pt;}
.y16_c00127{bottom:198.266667pt;}
.y15_c00127{bottom:220.000000pt;}
.y14_c00127{bottom:242.133333pt;}
.y13_c00127{bottom:264.266667pt;}
.y12_c00127{bottom:287.066667pt;}
.y11_c00127{bottom:308.666667pt;}
.y10_c00127{bottom:330.400000pt;}
.yf_c00127{bottom:352.000000pt;}
.ye_c00127{bottom:373.866667pt;}
.yd_c00127{bottom:396.266667pt;}
.yc_c00127{bottom:417.600000pt;}
.yb_c00127{bottom:439.466667pt;}
.ya_c00127{bottom:461.733333pt;}
.y9_c00127{bottom:483.600000pt;}
.y8_c00127{bottom:505.466667pt;}
.y7_c00127{bottom:527.066667pt;}
.y6_c00127{bottom:548.800000pt;}
.y5_c00127{bottom:570.933333pt;}
.y4_c00127{bottom:592.533333pt;}
.y3_c00127{bottom:614.400000pt;}
.y2_c00127{bottom:637.466667pt;}
.y1_c00127{bottom:660.000000pt;}
.h5_c00127{height:11.733399pt;}
.h6_c00127{height:38.937500pt;}
.h2_c00127{height:74.906250pt;}
.h3_c00127{height:81.031250pt;}
.h4_c00127{height:87.783854pt;}
.h0_c00127{height:709.200000pt;}
.h1_c00127{height:709.333333pt;}
.w1_c00127{width:93.222667pt;}
.w0_c00127{width:468.000000pt;}
.x0_c00127{left:0.000000pt;}
.x2_c00127{left:107.600000pt;}
.x3_c00127{left:108.800000pt;}
.x4_c00127{left:109.733333pt;}
.x5_c00127{left:111.333333pt;}
.x6_c00127{left:112.533333pt;}
.x7_c00127{left:114.800000pt;}
.x8_c00127{left:135.066667pt;}
.xa_c00127{left:191.168213pt;}
.x1_c00127{left:206.666667pt;}
.x9_c00127{left:423.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_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_c25dcc90b2ef4ab601c74408.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.480469;font-style:normal;font-weight:normal;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_2de020459e4bb42019085adb.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00128;src:url('chunks/assets/font_1c2439306c4fccb8d72587c8.woff2')format("woff");}.ff3_c00128{font-family:ff3_c00128;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00128;src:url('chunks/assets/font_c43398358e69c7b071eee182.woff2')format("woff");}.ff4_c00128{font-family:ff4_c00128;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00128;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00128{font-family:ff5_c00128;line-height:1.219238;font-style: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;}
.v1_c00128{vertical-align:25.200000px;}
.ls3_c00128{letter-spacing:-3.000000px;}
.ls0_c00128{letter-spacing:0.000000px;}
.ls1_c00128{letter-spacing:3.000000px;}
.ls2_c00128{letter-spacing:21.000000px;}
.sc__c00128{text-shadow:none;}
.sc0_c00128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00128{-webkit-text-stroke:0px transparent;}
.sc0_c00128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00128{word-spacing:-28.080000px;}
.ws4_c00128{word-spacing:-27.051000px;}
.ws1_c00128{word-spacing:-22.464000px;}
.ws3_c00128{word-spacing:-20.352000px;}
.ws0_c00128{word-spacing:-17.352000px;}
.ws5_c00128{word-spacing:0.000000px;}
._1b_c00128{margin-left:-24.048000px;}
._13_c00128{margin-left:-15.840000px;}
._f_c00128{margin-left:-14.328000px;}
._15_c00128{margin-left:-11.275200px;}
._10_c00128{margin-left:-9.072000px;}
._9_c00128{margin-left:-7.992000px;}
._b_c00128{margin-left:-6.840000px;}
._7_c00128{margin-left:-5.400000px;}
._e_c00128{margin-left:-4.176000px;}
._a_c00128{margin-left:-3.024000px;}
._8_c00128{margin-left:-1.296000px;}
._4_c00128{width:1.656000px;}
._2_c00128{width:2.880000px;}
._c_c00128{width:3.888000px;}
._1_c00128{width:5.040000px;}
._3_c00128{width:6.408000px;}
._0_c00128{width:7.848000px;}
._d_c00128{width:8.856000px;}
._18_c00128{width:11.112000px;}
._5_c00128{width:12.384000px;}
._6_c00128{width:14.688000px;}
._19_c00128{width:15.696000px;}
._17_c00128{width:17.136000px;}
._12_c00128{width:18.600000px;}
._14_c00128{width:21.912000px;}
._1d_c00128{width:27.432000px;}
._16_c00128{width:31.104000px;}
._11_c00128{width:36.000000px;}
._1a_c00128{width:42.432000px;}
._1e_c00128{width:254.016000px;}
._1c_c00128{width:820.224000px;}
.fc2_c00128{color:transparent;}
.fc1_c00128{color:rgb(128,128,128);}
.fc0_c00128{color:rgb(0,0,0);}
.fs3_c00128{font-size:48.000000px;}
.fs2_c00128{font-size:57.600000px;}
.fs1_c00128{font-size:63.000000px;}
.fs0_c00128{font-size:72.000000px;}
.y0_c00128{bottom:0.000000px;}
.y1f_c00128{bottom:3.105000px;}
.y1e_c00128{bottom:7.228357px;}
.y1d_c00128{bottom:22.980000px;}
.y1c_c00128{bottom:50.280000px;}
.y1b_c00128{bottom:75.030000px;}
.y1a_c00128{bottom:102.030000px;}
.y19_c00128{bottom:130.380000px;}
.y18_c00128{bottom:155.280000px;}
.y17_c00128{bottom:179.280000px;}
.y16_c00128{bottom:203.580000px;}
.y15_c00128{bottom:229.230000px;}
.y14_c00128{bottom:253.530000px;}
.y13_c00128{bottom:278.130000px;}
.y12_c00128{bottom:301.680000px;}
.y11_c00128{bottom:323.430000px;}
.y10_c00128{bottom:347.580000px;}
.yf_c00128{bottom:372.330000px;}
.ye_c00128{bottom:396.630000px;}
.yd_c00128{bottom:421.530000px;}
.yc_c00128{bottom:446.580000px;}
.yb_c00128{bottom:470.580000px;}
.ya_c00128{bottom:494.880000px;}
.y9_c00128{bottom:519.180000px;}
.y8_c00128{bottom:544.680000px;}
.y7_c00128{bottom:568.980000px;}
.y6_c00128{bottom:592.980000px;}
.y5_c00128{bottom:617.280000px;}
.y4_c00128{bottom:642.030000px;}
.y3_c00128{bottom:666.330000px;}
.y2_c00128{bottom:690.630000px;}
.y1_c00128{bottom:716.130000px;}
.h4_c00128{height:13.200074px;}
.h5_c00128{height:43.804688px;}
.h2_c00128{height:91.160156px;}
.h3_c00128{height:116.360156px;}
.h0_c00128{height:781.950000px;}
.h1_c00128{height:782.250000px;}
.w2_c00128{width:104.875500px;}
.w1_c00128{width:547.500000px;}
.w0_c00128{width:547.575000px;}
.x0_c00128{left:0.000000px;}
.xa_c00128{left:29.400000px;}
.x5_c00128{left:33.300000px;}
.x2_c00128{left:34.800000px;}
.x3_c00128{left:37.200000px;}
.x4_c00128{left:38.550000px;}
.x6_c00128{left:40.050000px;}
.x7_c00128{left:41.400000px;}
.x8_c00128{left:42.450000px;}
.x9_c00128{left:43.800000px;}
.xb_c00128{left:45.450000px;}
.x1_c00128{left:153.450000px;}
.xc_c00128{left:225.601730px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.v1_c00128{vertical-align:22.400000pt;}
.ls3_c00128{letter-spacing:-2.666667pt;}
.ls0_c00128{letter-spacing:0.000000pt;}
.ls1_c00128{letter-spacing:2.666667pt;}
.ls2_c00128{letter-spacing:18.666667pt;}
.ws2_c00128{word-spacing:-24.960000pt;}
.ws4_c00128{word-spacing:-24.045333pt;}
.ws1_c00128{word-spacing:-19.968000pt;}
.ws3_c00128{word-spacing:-18.090667pt;}
.ws0_c00128{word-spacing:-15.424000pt;}
.ws5_c00128{word-spacing:0.000000pt;}
._1b_c00128{margin-left:-21.376000pt;}
._13_c00128{margin-left:-14.080000pt;}
._f_c00128{margin-left:-12.736000pt;}
._15_c00128{margin-left:-10.022400pt;}
._10_c00128{margin-left:-8.064000pt;}
._9_c00128{margin-left:-7.104000pt;}
._b_c00128{margin-left:-6.080000pt;}
._7_c00128{margin-left:-4.800000pt;}
._e_c00128{margin-left:-3.712000pt;}
._a_c00128{margin-left:-2.688000pt;}
._8_c00128{margin-left:-1.152000pt;}
._4_c00128{width:1.472000pt;}
._2_c00128{width:2.560000pt;}
._c_c00128{width:3.456000pt;}
._1_c00128{width:4.480000pt;}
._3_c00128{width:5.696000pt;}
._0_c00128{width:6.976000pt;}
._d_c00128{width:7.872000pt;}
._18_c00128{width:9.877333pt;}
._5_c00128{width:11.008000pt;}
._6_c00128{width:13.056000pt;}
._19_c00128{width:13.952000pt;}
._17_c00128{width:15.232000pt;}
._12_c00128{width:16.533333pt;}
._14_c00128{width:19.477333pt;}
._1d_c00128{width:24.384000pt;}
._16_c00128{width:27.648000pt;}
._11_c00128{width:32.000000pt;}
._1a_c00128{width:37.717333pt;}
._1e_c00128{width:225.792000pt;}
._1c_c00128{width:729.088000pt;}
.fs3_c00128{font-size:42.666667pt;}
.fs2_c00128{font-size:51.200000pt;}
.fs1_c00128{font-size:56.000000pt;}
.fs0_c00128{font-size:64.000000pt;}
.y0_c00128{bottom:0.000000pt;}
.y1f_c00128{bottom:2.760000pt;}
.y1e_c00128{bottom:6.425206pt;}
.y1d_c00128{bottom:20.426667pt;}
.y1c_c00128{bottom:44.693333pt;}
.y1b_c00128{bottom:66.693333pt;}
.y1a_c00128{bottom:90.693333pt;}
.y19_c00128{bottom:115.893333pt;}
.y18_c00128{bottom:138.026667pt;}
.y17_c00128{bottom:159.360000pt;}
.y16_c00128{bottom:180.960000pt;}
.y15_c00128{bottom:203.760000pt;}
.y14_c00128{bottom:225.360000pt;}
.y13_c00128{bottom:247.226667pt;}
.y12_c00128{bottom:268.160000pt;}
.y11_c00128{bottom:287.493333pt;}
.y10_c00128{bottom:308.960000pt;}
.yf_c00128{bottom:330.960000pt;}
.ye_c00128{bottom:352.560000pt;}
.yd_c00128{bottom:374.693333pt;}
.yc_c00128{bottom:396.960000pt;}
.yb_c00128{bottom:418.293333pt;}
.ya_c00128{bottom:439.893333pt;}
.y9_c00128{bottom:461.493333pt;}
.y8_c00128{bottom:484.160000pt;}
.y7_c00128{bottom:505.760000pt;}
.y6_c00128{bottom:527.093333pt;}
.y5_c00128{bottom:548.693333pt;}
.y4_c00128{bottom:570.693333pt;}
.y3_c00128{bottom:592.293333pt;}
.y2_c00128{bottom:613.893333pt;}
.y1_c00128{bottom:636.560000pt;}
.h4_c00128{height:11.733399pt;}
.h5_c00128{height:38.937500pt;}
.h2_c00128{height:81.031250pt;}
.h3_c00128{height:103.431250pt;}
.h0_c00128{height:695.066667pt;}
.h1_c00128{height:695.333333pt;}
.w2_c00128{width:93.222667pt;}
.w1_c00128{width:486.666667pt;}
.w0_c00128{width:486.733333pt;}
.x0_c00128{left:0.000000pt;}
.xa_c00128{left:26.133333pt;}
.x5_c00128{left:29.600000pt;}
.x2_c00128{left:30.933333pt;}
.x3_c00128{left:33.066667pt;}
.x4_c00128{left:34.266667pt;}
.x6_c00128{left:35.600000pt;}
.x7_c00128{left:36.800000pt;}
.x8_c00128{left:37.733333pt;}
.x9_c00128{left:38.933333pt;}
.xb_c00128{left:40.400000pt;}
.x1_c00128{left:136.400000pt;}
.xc_c00128{left:200.534871pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6daf46928be1a34ff103914a.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.480469;font-style:normal;font-weight:normal;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_b74a0122b596bf2566e7c898.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.568848;font-style:normal;font-weight:normal;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_46ecfd872e63fe3a85f26663.woff2')format("woff");}.ff3_c00129{font-family:ff3_c00129;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00129{font-family:ff4_c00129;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00129{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00129{vertical-align:0.000000px;}
.ls4_c00129{letter-spacing:-3.000000px;}
.ls3_c00129{letter-spacing:0.000000px;}
.ls1_c00129{letter-spacing:3.000000px;}
.ls2_c00129{letter-spacing:4.512000px;}
.ls0_c00129{letter-spacing:4.953000px;}
.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:-27.051000px;}
.ws2_c00129{word-spacing:-20.352000px;}
.ws0_c00129{word-spacing:-17.352000px;}
.ws3_c00129{word-spacing:0.000000px;}
._5_c00129{margin-left:-17.352000px;}
._4_c00129{margin-left:-12.672000px;}
._c_c00129{margin-left:-10.368000px;}
._3_c00129{margin-left:-9.144000px;}
._f_c00129{margin-left:-8.136000px;}
._10_c00129{margin-left:-6.984000px;}
._2_c00129{margin-left:-5.544000px;}
._9_c00129{margin-left:-4.248000px;}
._a_c00129{margin-left:-3.024000px;}
._8_c00129{margin-left:-1.584000px;}
._b_c00129{width:1.008000px;}
._1_c00129{width:2.016000px;}
._6_c00129{width:3.312000px;}
._0_c00129{width:4.968000px;}
._7_c00129{width:6.264000px;}
._13_c00129{width:8.424000px;}
._15_c00129{width:9.576000px;}
._e_c00129{width:10.656000px;}
._12_c00129{width:12.027000px;}
._d_c00129{width:13.608000px;}
._11_c00129{width:17.640000px;}
._14_c00129{width:18.840000px;}
._16_c00129{width:29.088000px;}
.fc2_c00129{color:transparent;}
.fc1_c00129{color:rgb(128,128,128);}
.fc0_c00129{color:rgb(0,0,0);}
.fs2_c00129{font-size:48.000000px;}
.fs1_c00129{font-size:63.000000px;}
.fs0_c00129{font-size:72.000000px;}
.y0_c00129{bottom:0.000000px;}
.y1f_c00129{bottom:3.105000px;}
.y1e_c00129{bottom:7.228357px;}
.y1d_c00129{bottom:32.430000px;}
.y1c_c00129{bottom:56.130000px;}
.y1b_c00129{bottom:81.780000px;}
.y1a_c00129{bottom:106.980000px;}
.y19_c00129{bottom:131.730000px;}
.y18_c00129{bottom:157.380000px;}
.y17_c00129{bottom:182.580000px;}
.y16_c00129{bottom:206.880000px;}
.y15_c00129{bottom:231.930000px;}
.y14_c00129{bottom:256.830000px;}
.y13_c00129{bottom:281.430000px;}
.y12_c00129{bottom:306.480000px;}
.y11_c00129{bottom:330.780000px;}
.y10_c00129{bottom:354.780000px;}
.yf_c00129{bottom:380.130000px;}
.ye_c00129{bottom:403.980000px;}
.yd_c00129{bottom:428.730000px;}
.yc_c00129{bottom:453.330000px;}
.yb_c00129{bottom:477.930000px;}
.ya_c00129{bottom:502.230000px;}
.y9_c00129{bottom:527.130000px;}
.y8_c00129{bottom:551.580000px;}
.y7_c00129{bottom:576.180000px;}
.y6_c00129{bottom:600.480000px;}
.y5_c00129{bottom:625.380000px;}
.y4_c00129{bottom:649.230000px;}
.y3_c00129{bottom:674.280000px;}
.y2_c00129{bottom:699.330000px;}
.y1_c00129{bottom:725.580000px;}
.h3_c00129{height:13.200074px;}
.h4_c00129{height:43.804688px;}
.h2_c00129{height:91.160156px;}
.h1_c00129{height:791.250000px;}
.h0_c00129{height:791.400000px;}
.w2_c00129{width:104.875500px;}
.w1_c00129{width:531.750000px;}
.w0_c00129{width:531.900000px;}
.x0_c00129{left:0.000000px;}
.x2_c00129{left:123.150000px;}
.x3_c00129{left:124.950000px;}
.x4_c00129{left:126.900000px;}
.x6_c00129{left:217.764267px;}
.x1_c00129{left:233.850000px;}
.x5_c00129{left:456.750000px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls4_c00129{letter-spacing:-2.666667pt;}
.ls3_c00129{letter-spacing:0.000000pt;}
.ls1_c00129{letter-spacing:2.666667pt;}
.ls2_c00129{letter-spacing:4.010667pt;}
.ls0_c00129{letter-spacing:4.402667pt;}
.ws1_c00129{word-spacing:-24.045333pt;}
.ws2_c00129{word-spacing:-18.090667pt;}
.ws0_c00129{word-spacing:-15.424000pt;}
.ws3_c00129{word-spacing:0.000000pt;}
._5_c00129{margin-left:-15.424000pt;}
._4_c00129{margin-left:-11.264000pt;}
._c_c00129{margin-left:-9.216000pt;}
._3_c00129{margin-left:-8.128000pt;}
._f_c00129{margin-left:-7.232000pt;}
._10_c00129{margin-left:-6.208000pt;}
._2_c00129{margin-left:-4.928000pt;}
._9_c00129{margin-left:-3.776000pt;}
._a_c00129{margin-left:-2.688000pt;}
._8_c00129{margin-left:-1.408000pt;}
._b_c00129{width:0.896000pt;}
._1_c00129{width:1.792000pt;}
._6_c00129{width:2.944000pt;}
._0_c00129{width:4.416000pt;}
._7_c00129{width:5.568000pt;}
._13_c00129{width:7.488000pt;}
._15_c00129{width:8.512000pt;}
._e_c00129{width:9.472000pt;}
._12_c00129{width:10.690667pt;}
._d_c00129{width:12.096000pt;}
._11_c00129{width:15.680000pt;}
._14_c00129{width:16.746667pt;}
._16_c00129{width:25.856000pt;}
.fs2_c00129{font-size:42.666667pt;}
.fs1_c00129{font-size:56.000000pt;}
.fs0_c00129{font-size:64.000000pt;}
.y0_c00129{bottom:0.000000pt;}
.y1f_c00129{bottom:2.760000pt;}
.y1e_c00129{bottom:6.425206pt;}
.y1d_c00129{bottom:28.826667pt;}
.y1c_c00129{bottom:49.893333pt;}
.y1b_c00129{bottom:72.693333pt;}
.y1a_c00129{bottom:95.093333pt;}
.y19_c00129{bottom:117.093333pt;}
.y18_c00129{bottom:139.893333pt;}
.y17_c00129{bottom:162.293333pt;}
.y16_c00129{bottom:183.893333pt;}
.y15_c00129{bottom:206.160000pt;}
.y14_c00129{bottom:228.293333pt;}
.y13_c00129{bottom:250.160000pt;}
.y12_c00129{bottom:272.426667pt;}
.y11_c00129{bottom:294.026667pt;}
.y10_c00129{bottom:315.360000pt;}
.yf_c00129{bottom:337.893333pt;}
.ye_c00129{bottom:359.093333pt;}
.yd_c00129{bottom:381.093333pt;}
.yc_c00129{bottom:402.960000pt;}
.yb_c00129{bottom:424.826667pt;}
.ya_c00129{bottom:446.426667pt;}
.y9_c00129{bottom:468.560000pt;}
.y8_c00129{bottom:490.293333pt;}
.y7_c00129{bottom:512.160000pt;}
.y6_c00129{bottom:533.760000pt;}
.y5_c00129{bottom:555.893333pt;}
.y4_c00129{bottom:577.093333pt;}
.y3_c00129{bottom:599.360000pt;}
.y2_c00129{bottom:621.626667pt;}
.y1_c00129{bottom:644.960000pt;}
.h3_c00129{height:11.733399pt;}
.h4_c00129{height:38.937500pt;}
.h2_c00129{height:81.031250pt;}
.h1_c00129{height:703.333333pt;}
.h0_c00129{height:703.466667pt;}
.w2_c00129{width:93.222667pt;}
.w1_c00129{width:472.666667pt;}
.w0_c00129{width:472.800000pt;}
.x0_c00129{left:0.000000pt;}
.x2_c00129{left:109.466667pt;}
.x3_c00129{left:111.066667pt;}
.x4_c00129{left:112.800000pt;}
.x6_c00129{left:193.568237pt;}
.x1_c00129{left:207.866667pt;}
.x5_c00129{left:406.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_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_854cbd2245af0ceaf1b86e8f.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00130;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00130;src:url('chunks/assets/font_d602f0cc1e2badeaa2af0f26.woff2')format("woff");}.ff3_c00130{font-family:ff3_c00130;line-height:1.568848;font-style:normal;font-weight:normal;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_26e77b8992ed7ce6d3aa1af0.woff2')format("woff");}.ff4_c00130{font-family:ff4_c00130;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00130;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00130{font-family:ff5_c00130;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00130{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00130{vertical-align:0.000000px;}
.ls3_c00130{letter-spacing:-3.000000px;}
.ls2_c00130{letter-spacing:0.000000px;}
.ls1_c00130{letter-spacing:2.088000px;}
.ls0_c00130{letter-spacing:3.000000px;}
.ls4_c00130{letter-spacing:6.000000px;}
.sc__c00130{text-shadow:none;}
.sc0_c00130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00130{-webkit-text-stroke:0px transparent;}
.sc0_c00130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00130{word-spacing:-42.000000px;}
.ws3_c00130{word-spacing:-27.051000px;}
.ws4_c00130{word-spacing:-20.352000px;}
.ws1_c00130{word-spacing:-18.906000px;}
.ws5_c00130{word-spacing:0.000000px;}
.ws2_c00130{word-spacing:59.436000px;}
._18_c00130{margin-left:-19.941000px;}
._16_c00130{margin-left:-13.002000px;}
._15_c00130{margin-left:-10.998000px;}
._e_c00130{margin-left:-9.150000px;}
._13_c00130{margin-left:-7.890000px;}
._7_c00130{margin-left:-6.264000px;}
._6_c00130{margin-left:-5.094000px;}
._c_c00130{margin-left:-3.966000px;}
._8_c00130{margin-left:-2.868000px;}
._9_c00130{margin-left:-1.140000px;}
._4_c00130{width:1.650000px;}
._3_c00130{width:3.264000px;}
._d_c00130{width:4.272000px;}
._1_c00130{width:5.292000px;}
._2_c00130{width:7.140000px;}
._0_c00130{width:8.988000px;}
._b_c00130{width:10.782000px;}
._a_c00130{width:12.192000px;}
._5_c00130{width:16.008000px;}
._f_c00130{width:17.190000px;}
._14_c00130{width:25.920000px;}
._17_c00130{width:37.170000px;}
._10_c00130{width:120.900000px;}
._12_c00130{width:129.762000px;}
._11_c00130{width:153.426000px;}
._19_c00130{width:192.510000px;}
.fc2_c00130{color:transparent;}
.fc1_c00130{color:rgb(128,128,128);}
.fc0_c00130{color:rgb(0,0,0);}
.fs6_c00130{font-size:48.000000px;}
.fs4_c00130{font-size:63.000000px;}
.fs1_c00130{font-size:66.000000px;}
.fs5_c00130{font-size:69.000000px;}
.fs2_c00130{font-size:72.000000px;}
.fs3_c00130{font-size:78.000000px;}
.fs0_c00130{font-size:84.000000px;}
.y0_c00130{bottom:0.000000px;}
.y1f_c00130{bottom:3.105000px;}
.y1e_c00130{bottom:7.228369px;}
.y1d_c00130{bottom:36.120000px;}
.y1c_c00130{bottom:62.820000px;}
.y1b_c00130{bottom:88.020000px;}
.y1a_c00130{bottom:113.070000px;}
.y19_c00130{bottom:137.070000px;}
.y18_c00130{bottom:162.570000px;}
.y17_c00130{bottom:188.670000px;}
.y16_c00130{bottom:213.270000px;}
.y15_c00130{bottom:237.870000px;}
.y14_c00130{bottom:262.920000px;}
.y13_c00130{bottom:285.870000px;}
.y12_c00130{bottom:309.720000px;}
.y11_c00130{bottom:332.670000px;}
.y10_c00130{bottom:356.970000px;}
.yf_c00130{bottom:382.020000px;}
.ye_c00130{bottom:406.620000px;}
.yd_c00130{bottom:431.220000px;}
.yc_c00130{bottom:455.220000px;}
.yb_c00130{bottom:479.970000px;}
.ya_c00130{bottom:504.570000px;}
.y9_c00130{bottom:529.470000px;}
.y8_c00130{bottom:553.620000px;}
.y7_c00130{bottom:578.520000px;}
.y6_c00130{bottom:603.420000px;}
.y5_c00130{bottom:628.020000px;}
.y4_c00130{bottom:652.020000px;}
.y3_c00130{bottom:677.370000px;}
.y2_c00130{bottom:701.670000px;}
.y1_c00130{bottom:726.570000px;}
.h7_c00130{height:13.200073px;}
.h8_c00130{height:43.804688px;}
.h2_c00130{height:82.441406px;}
.h6_c00130{height:87.361816px;}
.h3_c00130{height:91.160156px;}
.h4_c00130{height:91.760156px;}
.h5_c00130{height:98.756836px;}
.h0_c00130{height:782.700000px;}
.h1_c00130{height:783.000000px;}
.w2_c00130{width:104.875500px;}
.w0_c00130{width:538.350000px;}
.w1_c00130{width:538.500000px;}
.x0_c00130{left:0.000000px;}
.x6_c00130{left:33.750000px;}
.x2_c00130{left:35.100000px;}
.x3_c00130{left:36.150000px;}
.x5_c00130{left:37.350000px;}
.x4_c00130{left:38.400000px;}
.x1_c00130{left:143.400000px;}
.x8_c00130{left:220.989258px;}
.x7_c00130{left:299.100000px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls3_c00130{letter-spacing:-2.666667pt;}
.ls2_c00130{letter-spacing:0.000000pt;}
.ls1_c00130{letter-spacing:1.856000pt;}
.ls0_c00130{letter-spacing:2.666667pt;}
.ls4_c00130{letter-spacing:5.333333pt;}
.ws0_c00130{word-spacing:-37.333333pt;}
.ws3_c00130{word-spacing:-24.045333pt;}
.ws4_c00130{word-spacing:-18.090667pt;}
.ws1_c00130{word-spacing:-16.805333pt;}
.ws5_c00130{word-spacing:0.000000pt;}
.ws2_c00130{word-spacing:52.832000pt;}
._18_c00130{margin-left:-17.725333pt;}
._16_c00130{margin-left:-11.557333pt;}
._15_c00130{margin-left:-9.776000pt;}
._e_c00130{margin-left:-8.133333pt;}
._13_c00130{margin-left:-7.013333pt;}
._7_c00130{margin-left:-5.568000pt;}
._6_c00130{margin-left:-4.528000pt;}
._c_c00130{margin-left:-3.525333pt;}
._8_c00130{margin-left:-2.549333pt;}
._9_c00130{margin-left:-1.013333pt;}
._4_c00130{width:1.466667pt;}
._3_c00130{width:2.901333pt;}
._d_c00130{width:3.797333pt;}
._1_c00130{width:4.704000pt;}
._2_c00130{width:6.346667pt;}
._0_c00130{width:7.989333pt;}
._b_c00130{width:9.584000pt;}
._a_c00130{width:10.837333pt;}
._5_c00130{width:14.229333pt;}
._f_c00130{width:15.280000pt;}
._14_c00130{width:23.040000pt;}
._17_c00130{width:33.040000pt;}
._10_c00130{width:107.466667pt;}
._12_c00130{width:115.344000pt;}
._11_c00130{width:136.378667pt;}
._19_c00130{width:171.120000pt;}
.fs6_c00130{font-size:42.666667pt;}
.fs4_c00130{font-size:56.000000pt;}
.fs1_c00130{font-size:58.666667pt;}
.fs5_c00130{font-size:61.333333pt;}
.fs2_c00130{font-size:64.000000pt;}
.fs3_c00130{font-size:69.333333pt;}
.fs0_c00130{font-size:74.666667pt;}
.y0_c00130{bottom:0.000000pt;}
.y1f_c00130{bottom:2.760000pt;}
.y1e_c00130{bottom:6.425217pt;}
.y1d_c00130{bottom:32.106667pt;}
.y1c_c00130{bottom:55.840000pt;}
.y1b_c00130{bottom:78.240000pt;}
.y1a_c00130{bottom:100.506667pt;}
.y19_c00130{bottom:121.840000pt;}
.y18_c00130{bottom:144.506667pt;}
.y17_c00130{bottom:167.706667pt;}
.y16_c00130{bottom:189.573333pt;}
.y15_c00130{bottom:211.440000pt;}
.y14_c00130{bottom:233.706667pt;}
.y13_c00130{bottom:254.106667pt;}
.y12_c00130{bottom:275.306667pt;}
.y11_c00130{bottom:295.706667pt;}
.y10_c00130{bottom:317.306667pt;}
.yf_c00130{bottom:339.573333pt;}
.ye_c00130{bottom:361.440000pt;}
.yd_c00130{bottom:383.306667pt;}
.yc_c00130{bottom:404.640000pt;}
.yb_c00130{bottom:426.640000pt;}
.ya_c00130{bottom:448.506667pt;}
.y9_c00130{bottom:470.640000pt;}
.y8_c00130{bottom:492.106667pt;}
.y7_c00130{bottom:514.240000pt;}
.y6_c00130{bottom:536.373333pt;}
.y5_c00130{bottom:558.240000pt;}
.y4_c00130{bottom:579.573333pt;}
.y3_c00130{bottom:602.106667pt;}
.y2_c00130{bottom:623.706667pt;}
.y1_c00130{bottom:645.840000pt;}
.h7_c00130{height:11.733399pt;}
.h8_c00130{height:38.937500pt;}
.h2_c00130{height:73.281250pt;}
.h6_c00130{height:77.654948pt;}
.h3_c00130{height:81.031250pt;}
.h4_c00130{height:81.564583pt;}
.h5_c00130{height:87.783854pt;}
.h0_c00130{height:695.733333pt;}
.h1_c00130{height:696.000000pt;}
.w2_c00130{width:93.222667pt;}
.w0_c00130{width:478.533333pt;}
.w1_c00130{width:478.666667pt;}
.x0_c00130{left:0.000000pt;}
.x6_c00130{left:30.000000pt;}
.x2_c00130{left:31.200000pt;}
.x3_c00130{left:32.133333pt;}
.x5_c00130{left:33.200000pt;}
.x4_c00130{left:34.133333pt;}
.x1_c00130{left:127.466667pt;}
.x8_c00130{left:196.434896pt;}
.x7_c00130{left:265.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_83f09946e4bacc9c9f7144a1.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00131;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00131;src:url('chunks/assets/font_134c5a1118380cbad9cd159c.woff2')format("woff");}.ff3_c00131{font-family:ff3_c00131;line-height:1.568848;font-style:normal;font-weight:normal;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_d889166af32a15d4998617d1.woff2')format("woff");}.ff4_c00131{font-family:ff4_c00131;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00131{font-family:ff5_c00131;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00131{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00131{vertical-align:0.000000px;}
.ls1_c00131{letter-spacing:0.000000px;}
.ls0_c00131{letter-spacing:3.000000px;}
.sc__c00131{text-shadow:none;}
.sc0_c00131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00131{-webkit-text-stroke:0px transparent;}
.sc0_c00131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00131{word-spacing:-42.000000px;}
.ws1_c00131{word-spacing:-33.192000px;}
.ws2_c00131{word-spacing:-20.352000px;}
.ws3_c00131{word-spacing:0.000000px;}
._11_c00131{margin-left:-27.216000px;}
._13_c00131{margin-left:-10.356000px;}
._f_c00131{margin-left:-8.796000px;}
._8_c00131{margin-left:-6.732000px;}
._7_c00131{margin-left:-4.608000px;}
._6_c00131{margin-left:-3.600000px;}
._4_c00131{margin-left:-1.872000px;}
._c_c00131{width:1.008000px;}
._1_c00131{width:2.100000px;}
._d_c00131{width:3.132000px;}
._2_c00131{width:4.200000px;}
._0_c00131{width:5.964000px;}
._10_c00131{width:7.944000px;}
._e_c00131{width:9.024000px;}
._3_c00131{width:10.248000px;}
._9_c00131{width:12.012000px;}
._b_c00131{width:13.536000px;}
._5_c00131{width:14.832000px;}
._12_c00131{width:15.840000px;}
._a_c00131{width:18.264000px;}
.fc2_c00131{color:transparent;}
.fc1_c00131{color:rgb(128,128,128);}
.fc0_c00131{color:rgb(0,0,0);}
.fs2_c00131{font-size:48.000000px;}
.fs1_c00131{font-size:72.000000px;}
.fs0_c00131{font-size:84.000000px;}
.y0_c00131{bottom:0.000000px;}
.y1f_c00131{bottom:3.105000px;}
.y1e_c00131{bottom:7.228357px;}
.y1d_c00131{bottom:35.730000px;}
.y1c_c00131{bottom:59.730000px;}
.y1b_c00131{bottom:85.830000px;}
.y1a_c00131{bottom:110.430000px;}
.y19_c00131{bottom:136.080000px;}
.y18_c00131{bottom:160.980000px;}
.y17_c00131{bottom:186.330000px;}
.y16_c00131{bottom:210.630000px;}
.y15_c00131{bottom:236.280000px;}
.y14_c00131{bottom:261.180000px;}
.y13_c00131{bottom:285.480000px;}
.y12_c00131{bottom:310.530000px;}
.y11_c00131{bottom:336.180000px;}
.y10_c00131{bottom:359.130000px;}
.yf_c00131{bottom:383.730000px;}
.ye_c00131{bottom:409.380000px;}
.yd_c00131{bottom:432.630000px;}
.yc_c00131{bottom:457.980000px;}
.yb_c00131{bottom:481.980000px;}
.ya_c00131{bottom:506.880000px;}
.y9_c00131{bottom:531.630000px;}
.y8_c00131{bottom:555.930000px;}
.y7_c00131{bottom:580.530000px;}
.y6_c00131{bottom:605.280000px;}
.y5_c00131{bottom:629.880000px;}
.y4_c00131{bottom:654.480000px;}
.y3_c00131{bottom:678.780000px;}
.y2_c00131{bottom:703.680000px;}
.y1_c00131{bottom:728.730000px;}
.h4_c00131{height:13.200074px;}
.h5_c00131{height:43.804688px;}
.h2_c00131{height:82.441406px;}
.h3_c00131{height:91.160156px;}
.h1_c00131{height:791.250000px;}
.h0_c00131{height:791.400000px;}
.w2_c00131{width:104.875500px;}
.w0_c00131{width:518.100000px;}
.w1_c00131{width:518.250000px;}
.x0_c00131{left:0.000000px;}
.x2_c00131{left:116.100000px;}
.x4_c00131{left:117.150000px;}
.x3_c00131{left:118.200000px;}
.x5_c00131{left:120.150000px;}
.x6_c00131{left:121.200000px;}
.x8_c00131{left:210.864258px;}
.x1_c00131{left:232.200000px;}
.x7_c00131{left:458.400000px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls1_c00131{letter-spacing:0.000000pt;}
.ls0_c00131{letter-spacing:2.666667pt;}
.ws0_c00131{word-spacing:-37.333333pt;}
.ws1_c00131{word-spacing:-29.504000pt;}
.ws2_c00131{word-spacing:-18.090667pt;}
.ws3_c00131{word-spacing:0.000000pt;}
._11_c00131{margin-left:-24.192000pt;}
._13_c00131{margin-left:-9.205333pt;}
._f_c00131{margin-left:-7.818667pt;}
._8_c00131{margin-left:-5.984000pt;}
._7_c00131{margin-left:-4.096000pt;}
._6_c00131{margin-left:-3.200000pt;}
._4_c00131{margin-left:-1.664000pt;}
._c_c00131{width:0.896000pt;}
._1_c00131{width:1.866667pt;}
._d_c00131{width:2.784000pt;}
._2_c00131{width:3.733333pt;}
._0_c00131{width:5.301333pt;}
._10_c00131{width:7.061333pt;}
._e_c00131{width:8.021333pt;}
._3_c00131{width:9.109333pt;}
._9_c00131{width:10.677333pt;}
._b_c00131{width:12.032000pt;}
._5_c00131{width:13.184000pt;}
._12_c00131{width:14.080000pt;}
._a_c00131{width:16.234667pt;}
.fs2_c00131{font-size:42.666667pt;}
.fs1_c00131{font-size:64.000000pt;}
.fs0_c00131{font-size:74.666667pt;}
.y0_c00131{bottom:0.000000pt;}
.y1f_c00131{bottom:2.760000pt;}
.y1e_c00131{bottom:6.425206pt;}
.y1d_c00131{bottom:31.760000pt;}
.y1c_c00131{bottom:53.093333pt;}
.y1b_c00131{bottom:76.293333pt;}
.y1a_c00131{bottom:98.160000pt;}
.y19_c00131{bottom:120.960000pt;}
.y18_c00131{bottom:143.093333pt;}
.y17_c00131{bottom:165.626667pt;}
.y16_c00131{bottom:187.226667pt;}
.y15_c00131{bottom:210.026667pt;}
.y14_c00131{bottom:232.160000pt;}
.y13_c00131{bottom:253.760000pt;}
.y12_c00131{bottom:276.026667pt;}
.y11_c00131{bottom:298.826667pt;}
.y10_c00131{bottom:319.226667pt;}
.yf_c00131{bottom:341.093333pt;}
.ye_c00131{bottom:363.893333pt;}
.yd_c00131{bottom:384.560000pt;}
.yc_c00131{bottom:407.093333pt;}
.yb_c00131{bottom:428.426667pt;}
.ya_c00131{bottom:450.560000pt;}
.y9_c00131{bottom:472.560000pt;}
.y8_c00131{bottom:494.160000pt;}
.y7_c00131{bottom:516.026667pt;}
.y6_c00131{bottom:538.026667pt;}
.y5_c00131{bottom:559.893333pt;}
.y4_c00131{bottom:581.760000pt;}
.y3_c00131{bottom:603.360000pt;}
.y2_c00131{bottom:625.493333pt;}
.y1_c00131{bottom:647.760000pt;}
.h4_c00131{height:11.733399pt;}
.h5_c00131{height:38.937500pt;}
.h2_c00131{height:73.281250pt;}
.h3_c00131{height:81.031250pt;}
.h1_c00131{height:703.333333pt;}
.h0_c00131{height:703.466667pt;}
.w2_c00131{width:93.222667pt;}
.w0_c00131{width:460.533333pt;}
.w1_c00131{width:460.666667pt;}
.x0_c00131{left:0.000000pt;}
.x2_c00131{left:103.200000pt;}
.x4_c00131{left:104.133333pt;}
.x3_c00131{left:105.066667pt;}
.x5_c00131{left:106.800000pt;}
.x6_c00131{left:107.733333pt;}
.x8_c00131{left:187.434896pt;}
.x1_c00131{left:206.400000pt;}
.x7_c00131{left:407.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_080b2f384d761bd50798655b.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.480469;font-style:normal;font-weight:normal;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_28cc00b73906b76dc5f7f421.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00132{font-family:ff3_c00132;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00132{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00132{vertical-align:0.000000px;}
.ls1_c00132{letter-spacing:-9.000000px;}
.ls0_c00132{letter-spacing:-3.000000px;}
.ls3_c00132{letter-spacing:0.000000px;}
.ls2_c00132{letter-spacing:3.000000px;}
.ls4_c00132{letter-spacing:6.000000px;}
.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:-22.629000px;}
.ws1_c00132{word-spacing:0.000000px;}
._0_c00132{margin-left:-14.442000px;}
._1_c00132{margin-left:-11.832000px;}
._2_c00132{margin-left:-8.700000px;}
._8_c00132{margin-left:-6.786000px;}
._3_c00132{margin-left:-4.785000px;}
._b_c00132{margin-left:-3.036000px;}
._5_c00132{margin-left:-1.740000px;}
._4_c00132{width:1.566000px;}
._6_c00132{width:3.045000px;}
._9_c00132{width:4.173000px;}
._e_c00132{width:5.553000px;}
._a_c00132{width:7.170000px;}
._11_c00132{width:8.682000px;}
._f_c00132{width:9.846000px;}
._13_c00132{width:11.310000px;}
._d_c00132{width:12.561000px;}
._12_c00132{width:13.743000px;}
._10_c00132{width:15.408000px;}
._c_c00132{width:17.382000px;}
._7_c00132{width:420.099000px;}
.fc2_c00132{color:transparent;}
.fc1_c00132{color:rgb(128,128,128);}
.fc0_c00132{color:rgb(0,0,0);}
.fs4_c00132{font-size:48.000000px;}
.fs3_c00132{font-size:69.000000px;}
.fs1_c00132{font-size:72.000000px;}
.fs2_c00132{font-size:78.000000px;}
.fs0_c00132{font-size:87.000000px;}
.y0_c00132{bottom:0.000000px;}
.y1f_c00132{bottom:3.105000px;}
.y1e_c00132{bottom:7.228355px;}
.y1d_c00132{bottom:35.085000px;}
.y1c_c00132{bottom:64.335000px;}
.y1b_c00132{bottom:89.985000px;}
.y1a_c00132{bottom:115.335000px;}
.y19_c00132{bottom:140.085000px;}
.y18_c00132{bottom:165.285000px;}
.y17_c00132{bottom:189.885000px;}
.y16_c00132{bottom:214.935000px;}
.y15_c00132{bottom:239.835000px;}
.y14_c00132{bottom:262.785000px;}
.y13_c00132{bottom:287.835000px;}
.y12_c00132{bottom:309.735000px;}
.y11_c00132{bottom:334.035000px;}
.y10_c00132{bottom:358.335000px;}
.yf_c00132{bottom:383.685000px;}
.ye_c00132{bottom:407.985000px;}
.yd_c00132{bottom:432.885000px;}
.yc_c00132{bottom:457.635000px;}
.yb_c00132{bottom:481.935000px;}
.ya_c00132{bottom:505.935000px;}
.y9_c00132{bottom:531.435000px;}
.y8_c00132{bottom:555.735000px;}
.y7_c00132{bottom:580.185000px;}
.y6_c00132{bottom:605.085000px;}
.y5_c00132{bottom:629.385000px;}
.y4_c00132{bottom:653.985000px;}
.y3_c00132{bottom:678.735000px;}
.y2_c00132{bottom:703.035000px;}
.y1_c00132{bottom:728.235000px;}
.h6_c00132{height:13.200074px;}
.h7_c00132{height:43.804688px;}
.h5_c00132{height:87.361816px;}
.h3_c00132{height:91.160156px;}
.h4_c00132{height:98.756836px;}
.h2_c00132{height:110.151855px;}
.h0_c00132{height:784.875000px;}
.h1_c00132{height:785.250000px;}
.w2_c00132{width:104.875500px;}
.w0_c00132{width:541.350000px;}
.w1_c00132{width:541.500000px;}
.x0_c00132{left:0.000000px;}
.x6_c00132{left:30.300000px;}
.x2_c00132{left:34.800000px;}
.x3_c00132{left:36.000000px;}
.x4_c00132{left:37.350000px;}
.x5_c00132{left:39.150000px;}
.x1_c00132{left:141.750000px;}
.x8_c00132{left:222.489258px;}
.x7_c00132{left:376.350000px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls1_c00132{letter-spacing:-8.000000pt;}
.ls0_c00132{letter-spacing:-2.666667pt;}
.ls3_c00132{letter-spacing:0.000000pt;}
.ls2_c00132{letter-spacing:2.666667pt;}
.ls4_c00132{letter-spacing:5.333333pt;}
.ws0_c00132{word-spacing:-20.114667pt;}
.ws1_c00132{word-spacing:0.000000pt;}
._0_c00132{margin-left:-12.837333pt;}
._1_c00132{margin-left:-10.517333pt;}
._2_c00132{margin-left:-7.733333pt;}
._8_c00132{margin-left:-6.032000pt;}
._3_c00132{margin-left:-4.253333pt;}
._b_c00132{margin-left:-2.698667pt;}
._5_c00132{margin-left:-1.546667pt;}
._4_c00132{width:1.392000pt;}
._6_c00132{width:2.706667pt;}
._9_c00132{width:3.709333pt;}
._e_c00132{width:4.936000pt;}
._a_c00132{width:6.373333pt;}
._11_c00132{width:7.717333pt;}
._f_c00132{width:8.752000pt;}
._13_c00132{width:10.053333pt;}
._d_c00132{width:11.165333pt;}
._12_c00132{width:12.216000pt;}
._10_c00132{width:13.696000pt;}
._c_c00132{width:15.450667pt;}
._7_c00132{width:373.421333pt;}
.fs4_c00132{font-size:42.666667pt;}
.fs3_c00132{font-size:61.333333pt;}
.fs1_c00132{font-size:64.000000pt;}
.fs2_c00132{font-size:69.333333pt;}
.fs0_c00132{font-size:77.333333pt;}
.y0_c00132{bottom:0.000000pt;}
.y1f_c00132{bottom:2.760000pt;}
.y1e_c00132{bottom:6.425204pt;}
.y1d_c00132{bottom:31.186667pt;}
.y1c_c00132{bottom:57.186667pt;}
.y1b_c00132{bottom:79.986667pt;}
.y1a_c00132{bottom:102.520000pt;}
.y19_c00132{bottom:124.520000pt;}
.y18_c00132{bottom:146.920000pt;}
.y17_c00132{bottom:168.786667pt;}
.y16_c00132{bottom:191.053333pt;}
.y15_c00132{bottom:213.186667pt;}
.y14_c00132{bottom:233.586667pt;}
.y13_c00132{bottom:255.853333pt;}
.y12_c00132{bottom:275.320000pt;}
.y11_c00132{bottom:296.920000pt;}
.y10_c00132{bottom:318.520000pt;}
.yf_c00132{bottom:341.053333pt;}
.ye_c00132{bottom:362.653333pt;}
.yd_c00132{bottom:384.786667pt;}
.yc_c00132{bottom:406.786667pt;}
.yb_c00132{bottom:428.386667pt;}
.ya_c00132{bottom:449.720000pt;}
.y9_c00132{bottom:472.386667pt;}
.y8_c00132{bottom:493.986667pt;}
.y7_c00132{bottom:515.720000pt;}
.y6_c00132{bottom:537.853333pt;}
.y5_c00132{bottom:559.453333pt;}
.y4_c00132{bottom:581.320000pt;}
.y3_c00132{bottom:603.320000pt;}
.y2_c00132{bottom:624.920000pt;}
.y1_c00132{bottom:647.320000pt;}
.h6_c00132{height:11.733399pt;}
.h7_c00132{height:38.937500pt;}
.h5_c00132{height:77.654948pt;}
.h3_c00132{height:81.031250pt;}
.h4_c00132{height:87.783854pt;}
.h2_c00132{height:97.912760pt;}
.h0_c00132{height:697.666667pt;}
.h1_c00132{height:698.000000pt;}
.w2_c00132{width:93.222667pt;}
.w0_c00132{width:481.200000pt;}
.w1_c00132{width:481.333333pt;}
.x0_c00132{left:0.000000pt;}
.x6_c00132{left:26.933333pt;}
.x2_c00132{left:30.933333pt;}
.x3_c00132{left:32.000000pt;}
.x4_c00132{left:33.200000pt;}
.x5_c00132{left:34.800000pt;}
.x1_c00132{left:126.000000pt;}
.x8_c00132{left:197.768229pt;}
.x7_c00132{left:334.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ac90c77f229d897787c0cc6d.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.480469;font-style:normal;font-weight:normal;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_d2a27b18a3ce6ad022b15c99.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00133{font-family:ff3_c00133;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00133{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00133{vertical-align:0.000000px;}
.ls0_c00133{letter-spacing:0.000000px;}
.ls1_c00133{letter-spacing:3.000000px;}
.ls2_c00133{letter-spacing:6.000000px;}
.sc__c00133{text-shadow:none;}
.sc0_c00133{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00133{-webkit-text-stroke:0px transparent;}
.sc0_c00133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00133{word-spacing:-20.352000px;}
.ws0_c00133{word-spacing:-18.906000px;}
.ws2_c00133{word-spacing:0.000000px;}
._10_c00133{margin-left:-11.424000px;}
._11_c00133{margin-left:-9.960000px;}
._13_c00133{margin-left:-7.944000px;}
._a_c00133{margin-left:-6.264000px;}
._14_c00133{margin-left:-5.184000px;}
._8_c00133{margin-left:-3.960000px;}
._7_c00133{margin-left:-2.376000px;}
._d_c00133{margin-left:-1.176000px;}
._c_c00133{width:1.584000px;}
._e_c00133{width:2.640000px;}
._3_c00133{width:4.200000px;}
._4_c00133{width:5.880000px;}
._5_c00133{width:7.320000px;}
._6_c00133{width:9.540000px;}
._b_c00133{width:10.872000px;}
._f_c00133{width:12.576000px;}
._12_c00133{width:13.620000px;}
._9_c00133{width:15.444000px;}
._15_c00133{width:17.256000px;}
._1_c00133{width:18.300000px;}
._2_c00133{width:22.440000px;}
._0_c00133{width:24.060000px;}
.fc2_c00133{color:transparent;}
.fc1_c00133{color:rgb(128,128,128);}
.fc0_c00133{color:rgb(0,0,0);}
.fs4_c00133{font-size:48.000000px;}
.fs2_c00133{font-size:54.000000px;}
.fs0_c00133{font-size:60.000000px;}
.fs3_c00133{font-size:66.000000px;}
.fs1_c00133{font-size:72.000000px;}
.y0_c00133{bottom:0.000000px;}
.y1f_c00133{bottom:3.105000px;}
.y1e_c00133{bottom:7.228371px;}
.y1d_c00133{bottom:43.515000px;}
.y1c_c00133{bottom:65.865000px;}
.y1b_c00133{bottom:92.865000px;}
.y1a_c00133{bottom:117.765000px;}
.y19_c00133{bottom:142.515000px;}
.y18_c00133{bottom:168.165000px;}
.y17_c00133{bottom:192.165000px;}
.y16_c00133{bottom:217.665000px;}
.y15_c00133{bottom:242.715000px;}
.y14_c00133{bottom:267.315000px;}
.y13_c00133{bottom:292.965000px;}
.y12_c00133{bottom:317.265000px;}
.y11_c00133{bottom:342.615000px;}
.y10_c00133{bottom:365.265000px;}
.yf_c00133{bottom:390.465000px;}
.ye_c00133{bottom:415.215000px;}
.yd_c00133{bottom:439.515000px;}
.yc_c00133{bottom:464.715000px;}
.yb_c00133{bottom:488.415000px;}
.ya_c00133{bottom:512.715000px;}
.y9_c00133{bottom:537.765000px;}
.y8_c00133{bottom:562.965000px;}
.y7_c00133{bottom:587.265000px;}
.y6_c00133{bottom:611.865000px;}
.y5_c00133{bottom:636.915000px;}
.y4_c00133{bottom:661.215000px;}
.y3_c00133{bottom:686.265000px;}
.y2_c00133{bottom:710.565000px;}
.y1_c00133{bottom:737.115000px;}
.h4_c00133{height:13.200074px;}
.h5_c00133{height:43.804688px;}
.h2_c00133{height:70.224609px;}
.h3_c00133{height:91.160156px;}
.h0_c00133{height:800.025000px;}
.h1_c00133{height:800.250000px;}
.w2_c00133{width:104.875500px;}
.w1_c00133{width:524.250000px;}
.w0_c00133{width:524.325000px;}
.x0_c00133{left:0.000000px;}
.x2_c00133{left:118.200000px;}
.x3_c00133{left:119.400000px;}
.x4_c00133{left:120.600000px;}
.x5_c00133{left:122.550000px;}
.x6_c00133{left:124.200000px;}
.x7_c00133{left:125.250000px;}
.x8_c00133{left:126.900000px;}
.x9_c00133{left:128.700000px;}
.xa_c00133{left:130.050000px;}
.xc_c00133{left:213.976730px;}
.x1_c00133{left:235.200000px;}
.xb_c00133{left:472.800000px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls0_c00133{letter-spacing:0.000000pt;}
.ls1_c00133{letter-spacing:2.666667pt;}
.ls2_c00133{letter-spacing:5.333333pt;}
.ws1_c00133{word-spacing:-18.090667pt;}
.ws0_c00133{word-spacing:-16.805333pt;}
.ws2_c00133{word-spacing:0.000000pt;}
._10_c00133{margin-left:-10.154667pt;}
._11_c00133{margin-left:-8.853333pt;}
._13_c00133{margin-left:-7.061333pt;}
._a_c00133{margin-left:-5.568000pt;}
._14_c00133{margin-left:-4.608000pt;}
._8_c00133{margin-left:-3.520000pt;}
._7_c00133{margin-left:-2.112000pt;}
._d_c00133{margin-left:-1.045333pt;}
._c_c00133{width:1.408000pt;}
._e_c00133{width:2.346667pt;}
._3_c00133{width:3.733333pt;}
._4_c00133{width:5.226667pt;}
._5_c00133{width:6.506667pt;}
._6_c00133{width:8.480000pt;}
._b_c00133{width:9.664000pt;}
._f_c00133{width:11.178667pt;}
._12_c00133{width:12.106667pt;}
._9_c00133{width:13.728000pt;}
._15_c00133{width:15.338667pt;}
._1_c00133{width:16.266667pt;}
._2_c00133{width:19.946667pt;}
._0_c00133{width:21.386667pt;}
.fs4_c00133{font-size:42.666667pt;}
.fs2_c00133{font-size:48.000000pt;}
.fs0_c00133{font-size:53.333333pt;}
.fs3_c00133{font-size:58.666667pt;}
.fs1_c00133{font-size:64.000000pt;}
.y0_c00133{bottom:0.000000pt;}
.y1f_c00133{bottom:2.760000pt;}
.y1e_c00133{bottom:6.425219pt;}
.y1d_c00133{bottom:38.680000pt;}
.y1c_c00133{bottom:58.546667pt;}
.y1b_c00133{bottom:82.546667pt;}
.y1a_c00133{bottom:104.680000pt;}
.y19_c00133{bottom:126.680000pt;}
.y18_c00133{bottom:149.480000pt;}
.y17_c00133{bottom:170.813333pt;}
.y16_c00133{bottom:193.480000pt;}
.y15_c00133{bottom:215.746667pt;}
.y14_c00133{bottom:237.613333pt;}
.y13_c00133{bottom:260.413333pt;}
.y12_c00133{bottom:282.013333pt;}
.y11_c00133{bottom:304.546667pt;}
.y10_c00133{bottom:324.680000pt;}
.yf_c00133{bottom:347.080000pt;}
.ye_c00133{bottom:369.080000pt;}
.yd_c00133{bottom:390.680000pt;}
.yc_c00133{bottom:413.080000pt;}
.yb_c00133{bottom:434.146667pt;}
.ya_c00133{bottom:455.746667pt;}
.y9_c00133{bottom:478.013333pt;}
.y8_c00133{bottom:500.413333pt;}
.y7_c00133{bottom:522.013333pt;}
.y6_c00133{bottom:543.880000pt;}
.y5_c00133{bottom:566.146667pt;}
.y4_c00133{bottom:587.746667pt;}
.y3_c00133{bottom:610.013333pt;}
.y2_c00133{bottom:631.613333pt;}
.y1_c00133{bottom:655.213333pt;}
.h4_c00133{height:11.733399pt;}
.h5_c00133{height:38.937500pt;}
.h2_c00133{height:62.421875pt;}
.h3_c00133{height:81.031250pt;}
.h0_c00133{height:711.133333pt;}
.h1_c00133{height:711.333333pt;}
.w2_c00133{width:93.222667pt;}
.w1_c00133{width:466.000000pt;}
.w0_c00133{width:466.066667pt;}
.x0_c00133{left:0.000000pt;}
.x2_c00133{left:105.066667pt;}
.x3_c00133{left:106.133333pt;}
.x4_c00133{left:107.200000pt;}
.x5_c00133{left:108.933333pt;}
.x6_c00133{left:110.400000pt;}
.x7_c00133{left:111.333333pt;}
.x8_c00133{left:112.800000pt;}
.x9_c00133{left:114.400000pt;}
.xa_c00133{left:115.600000pt;}
.xc_c00133{left:190.201538pt;}
.x1_c00133{left:209.066667pt;}
.xb_c00133{left:420.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ee49dbdee21431c2e941d24f.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.480469;font-style:normal;font-weight:normal;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_2eec8e0d60e0a78eeaed829c.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:1.568848;font-style:normal;font-weight:normal;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_090040e8f2f9d574b55d3104.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00134;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00134{font-family:ff4_c00134;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00134{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00134{vertical-align:0.000000px;}
.ls9_c00134{letter-spacing:-3.000000px;}
.ls8_c00134{letter-spacing:0.000000px;}
.ls5_c00134{letter-spacing:1.872000px;}
.ls4_c00134{letter-spacing:3.000000px;}
.ls3_c00134{letter-spacing:4.788000px;}
.ls7_c00134{letter-spacing:5.988000px;}
.ls1_c00134{letter-spacing:8.388000px;}
.ls6_c00134{letter-spacing:12.588000px;}
.ls2_c00134{letter-spacing:14.388000px;}
.ls0_c00134{letter-spacing:352.848000px;}
.sc__c00134{text-shadow:none;}
.sc0_c00134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00134{-webkit-text-stroke:0px transparent;}
.sc0_c00134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00134{word-spacing:-27.051000px;}
.ws1_c00134{word-spacing:-20.352000px;}
.ws0_c00134{word-spacing:-17.352000px;}
.ws3_c00134{word-spacing:0.000000px;}
._13_c00134{margin-left:-18.636000px;}
._14_c00134{margin-left:-17.088000px;}
._19_c00134{margin-left:-14.556000px;}
._11_c00134{margin-left:-13.416000px;}
._d_c00134{margin-left:-12.168000px;}
._12_c00134{margin-left:-11.016000px;}
._10_c00134{margin-left:-9.936000px;}
._8_c00134{margin-left:-8.184000px;}
._a_c00134{margin-left:-6.336000px;}
._9_c00134{margin-left:-4.896000px;}
._3_c00134{margin-left:-3.312000px;}
._b_c00134{margin-left:-2.160000px;}
._c_c00134{margin-left:-1.008000px;}
._5_c00134{width:1.584000px;}
._6_c00134{width:2.592000px;}
._4_c00134{width:3.744000px;}
._7_c00134{width:5.544000px;}
._17_c00134{width:6.768000px;}
._e_c00134{width:7.968000px;}
._f_c00134{width:9.132000px;}
._16_c00134{width:10.560000px;}
._15_c00134{width:11.808000px;}
._1_c00134{width:12.816000px;}
._2_c00134{width:15.552000px;}
._18_c00134{width:16.920000px;}
._0_c00134{width:20.160000px;}
._1a_c00134{width:1262.664000px;}
.fc2_c00134{color:transparent;}
.fc1_c00134{color:rgb(128,128,128);}
.fc0_c00134{color:rgb(0,0,0);}
.fs2_c00134{font-size:48.000000px;}
.fs1_c00134{font-size:63.000000px;}
.fs0_c00134{font-size:72.000000px;}
.y0_c00134{bottom:0.000000px;}
.y1f_c00134{bottom:3.105000px;}
.y1e_c00134{bottom:7.228357px;}
.y1d_c00134{bottom:37.830000px;}
.y1c_c00134{bottom:62.730000px;}
.y1b_c00134{bottom:88.080000px;}
.y1a_c00134{bottom:114.480000px;}
.y19_c00134{bottom:139.380000px;}
.y18_c00134{bottom:166.680000px;}
.y17_c00134{bottom:190.680000px;}
.y16_c00134{bottom:215.280000px;}
.y15_c00134{bottom:239.280000px;}
.y14_c00134{bottom:262.680000px;}
.y13_c00134{bottom:287.880000px;}
.y12_c00134{bottom:310.230000px;}
.y11_c00134{bottom:334.080000px;}
.y10_c00134{bottom:358.080000px;}
.yf_c00134{bottom:382.380000px;}
.ye_c00134{bottom:407.430000px;}
.yd_c00134{bottom:432.330000px;}
.yc_c00134{bottom:456.630000px;}
.yb_c00134{bottom:481.230000px;}
.ya_c00134{bottom:505.680000px;}
.y9_c00134{bottom:529.830000px;}
.y8_c00134{bottom:554.580000px;}
.y7_c00134{bottom:579.480000px;}
.y6_c00134{bottom:603.780000px;}
.y5_c00134{bottom:628.080000px;}
.y4_c00134{bottom:652.830000px;}
.y3_c00134{bottom:676.980000px;}
.y2_c00134{bottom:701.280000px;}
.y1_c00134{bottom:725.730000px;}
.h3_c00134{height:13.200074px;}
.h4_c00134{height:43.804688px;}
.h2_c00134{height:91.160156px;}
.h0_c00134{height:788.700000px;}
.h1_c00134{height:789.000000px;}
.w2_c00134{width:104.875500px;}
.w0_c00134{width:552.675000px;}
.w1_c00134{width:552.750000px;}
.x0_c00134{left:0.000000px;}
.x5_c00134{left:31.650000px;}
.x2_c00134{left:32.700000px;}
.x4_c00134{left:33.750000px;}
.x3_c00134{left:34.800000px;}
.x1_c00134{left:138.900000px;}
.x6_c00134{left:173.100000px;}
.x7_c00134{left:228.151749px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls9_c00134{letter-spacing:-2.666667pt;}
.ls8_c00134{letter-spacing:0.000000pt;}
.ls5_c00134{letter-spacing:1.664000pt;}
.ls4_c00134{letter-spacing:2.666667pt;}
.ls3_c00134{letter-spacing:4.256000pt;}
.ls7_c00134{letter-spacing:5.322667pt;}
.ls1_c00134{letter-spacing:7.456000pt;}
.ls6_c00134{letter-spacing:11.189333pt;}
.ls2_c00134{letter-spacing:12.789333pt;}
.ls0_c00134{letter-spacing:313.642667pt;}
.ws2_c00134{word-spacing:-24.045333pt;}
.ws1_c00134{word-spacing:-18.090667pt;}
.ws0_c00134{word-spacing:-15.424000pt;}
.ws3_c00134{word-spacing:0.000000pt;}
._13_c00134{margin-left:-16.565333pt;}
._14_c00134{margin-left:-15.189333pt;}
._19_c00134{margin-left:-12.938667pt;}
._11_c00134{margin-left:-11.925333pt;}
._d_c00134{margin-left:-10.816000pt;}
._12_c00134{margin-left:-9.792000pt;}
._10_c00134{margin-left:-8.832000pt;}
._8_c00134{margin-left:-7.274667pt;}
._a_c00134{margin-left:-5.632000pt;}
._9_c00134{margin-left:-4.352000pt;}
._3_c00134{margin-left:-2.944000pt;}
._b_c00134{margin-left:-1.920000pt;}
._c_c00134{margin-left:-0.896000pt;}
._5_c00134{width:1.408000pt;}
._6_c00134{width:2.304000pt;}
._4_c00134{width:3.328000pt;}
._7_c00134{width:4.928000pt;}
._17_c00134{width:6.016000pt;}
._e_c00134{width:7.082667pt;}
._f_c00134{width:8.117333pt;}
._16_c00134{width:9.386667pt;}
._15_c00134{width:10.496000pt;}
._1_c00134{width:11.392000pt;}
._2_c00134{width:13.824000pt;}
._18_c00134{width:15.040000pt;}
._0_c00134{width:17.920000pt;}
._1a_c00134{width:1122.368000pt;}
.fs2_c00134{font-size:42.666667pt;}
.fs1_c00134{font-size:56.000000pt;}
.fs0_c00134{font-size:64.000000pt;}
.y0_c00134{bottom:0.000000pt;}
.y1f_c00134{bottom:2.760000pt;}
.y1e_c00134{bottom:6.425206pt;}
.y1d_c00134{bottom:33.626667pt;}
.y1c_c00134{bottom:55.760000pt;}
.y1b_c00134{bottom:78.293333pt;}
.y1a_c00134{bottom:101.760000pt;}
.y19_c00134{bottom:123.893333pt;}
.y18_c00134{bottom:148.160000pt;}
.y17_c00134{bottom:169.493333pt;}
.y16_c00134{bottom:191.360000pt;}
.y15_c00134{bottom:212.693333pt;}
.y14_c00134{bottom:233.493333pt;}
.y13_c00134{bottom:255.893333pt;}
.y12_c00134{bottom:275.760000pt;}
.y11_c00134{bottom:296.960000pt;}
.y10_c00134{bottom:318.293333pt;}
.yf_c00134{bottom:339.893333pt;}
.ye_c00134{bottom:362.160000pt;}
.yd_c00134{bottom:384.293333pt;}
.yc_c00134{bottom:405.893333pt;}
.yb_c00134{bottom:427.760000pt;}
.ya_c00134{bottom:449.493333pt;}
.y9_c00134{bottom:470.960000pt;}
.y8_c00134{bottom:492.960000pt;}
.y7_c00134{bottom:515.093333pt;}
.y6_c00134{bottom:536.693333pt;}
.y5_c00134{bottom:558.293333pt;}
.y4_c00134{bottom:580.293333pt;}
.y3_c00134{bottom:601.760000pt;}
.y2_c00134{bottom:623.360000pt;}
.y1_c00134{bottom:645.093333pt;}
.h3_c00134{height:11.733399pt;}
.h4_c00134{height:38.937500pt;}
.h2_c00134{height:81.031250pt;}
.h0_c00134{height:701.066667pt;}
.h1_c00134{height:701.333333pt;}
.w2_c00134{width:93.222667pt;}
.w0_c00134{width:491.266667pt;}
.w1_c00134{width:491.333333pt;}
.x0_c00134{left:0.000000pt;}
.x5_c00134{left:28.133333pt;}
.x2_c00134{left:29.066667pt;}
.x4_c00134{left:30.000000pt;}
.x3_c00134{left:30.933333pt;}
.x1_c00134{left:123.466667pt;}
.x6_c00134{left:153.866667pt;}
.x7_c00134{left:202.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c84e64462897415930efbba2.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00135;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00135;src:url('chunks/assets/font_639d9e71cc6444be13757bd0.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;line-height:1.568848;font-style:normal;font-weight:normal;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_ffac97736a23a9af8dea972e.woff2')format("woff");}.ff4_c00135{font-family:ff4_c00135;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00135{font-family:ff5_c00135;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00135{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00135{vertical-align:0.000000px;}
.ls0_c00135{letter-spacing:0.000000px;}
.ls1_c00135{letter-spacing:3.000000px;}
.sc__c00135{text-shadow:none;}
.sc0_c00135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00135{-webkit-text-stroke:0px transparent;}
.sc0_c00135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00135{word-spacing:-33.192000px;}
.ws1_c00135{word-spacing:-16.629000px;}
.ws2_c00135{word-spacing:0.000000px;}
._12_c00135{margin-left:-15.372000px;}
._10_c00135{margin-left:-10.932000px;}
._c_c00135{margin-left:-9.372000px;}
._3_c00135{margin-left:-7.056000px;}
._a_c00135{margin-left:-5.760000px;}
._5_c00135{margin-left:-3.900000px;}
._b_c00135{margin-left:-2.868000px;}
._6_c00135{margin-left:-1.728000px;}
._1_c00135{width:1.596000px;}
._2_c00135{width:2.688000px;}
._0_c00135{width:4.116000px;}
._4_c00135{width:5.712000px;}
._9_c00135{width:7.272000px;}
._f_c00135{width:8.748000px;}
._7_c00135{width:10.032000px;}
._d_c00135{width:11.520000px;}
._8_c00135{width:13.428000px;}
._e_c00135{width:15.300000px;}
._13_c00135{width:16.320000px;}
._11_c00135{width:32.124000px;}
.fc2_c00135{color:transparent;}
.fc1_c00135{color:rgb(128,128,128);}
.fc0_c00135{color:rgb(0,0,0);}
.fs3_c00135{font-size:48.000000px;}
.fs2_c00135{font-size:69.000000px;}
.fs1_c00135{font-size:72.000000px;}
.fs0_c00135{font-size:84.000000px;}
.y0_c00135{bottom:0.000000px;}
.y1f_c00135{bottom:3.105000px;}
.y1e_c00135{bottom:7.228363px;}
.y1d_c00135{bottom:43.500000px;}
.y1c_c00135{bottom:67.800000px;}
.y1b_c00135{bottom:93.450000px;}
.y1a_c00135{bottom:119.400000px;}
.y19_c00135{bottom:143.400000px;}
.y18_c00135{bottom:169.050000px;}
.y17_c00135{bottom:193.350000px;}
.y16_c00135{bottom:218.400000px;}
.y15_c00135{bottom:243.000000px;}
.y14_c00135{bottom:268.050000px;}
.y13_c00135{bottom:292.950000px;}
.y12_c00135{bottom:317.250000px;}
.y11_c00135{bottom:341.850000px;}
.y10_c00135{bottom:365.550000px;}
.yf_c00135{bottom:390.150000px;}
.ye_c00135{bottom:415.050000px;}
.yd_c00135{bottom:440.100000px;}
.yc_c00135{bottom:464.400000px;}
.yb_c00135{bottom:488.700000px;}
.ya_c00135{bottom:513.300000px;}
.y9_c00135{bottom:537.900000px;}
.y8_c00135{bottom:562.650000px;}
.y7_c00135{bottom:587.850000px;}
.y6_c00135{bottom:612.000000px;}
.y5_c00135{bottom:636.750000px;}
.y4_c00135{bottom:660.450000px;}
.y3_c00135{bottom:684.750000px;}
.y2_c00135{bottom:710.700000px;}
.y1_c00135{bottom:735.450000px;}
.h5_c00135{height:13.200074px;}
.h6_c00135{height:43.804688px;}
.h2_c00135{height:82.441406px;}
.h4_c00135{height:87.361816px;}
.h3_c00135{height:91.160156px;}
.h1_c00135{height:800.250000px;}
.h0_c00135{height:800.550000px;}
.w2_c00135{width:104.875500px;}
.w0_c00135{width:519.450000px;}
.w1_c00135{width:519.750000px;}
.x0_c00135{left:0.000000px;}
.x6_c00135{left:118.800000px;}
.x4_c00135{left:120.150000px;}
.x5_c00135{left:121.200000px;}
.x3_c00135{left:122.400000px;}
.x2_c00135{left:123.750000px;}
.x8_c00135{left:211.539230px;}
.x1_c00135{left:244.050000px;}
.x7_c00135{left:466.200000px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls0_c00135{letter-spacing:0.000000pt;}
.ls1_c00135{letter-spacing:2.666667pt;}
.ws0_c00135{word-spacing:-29.504000pt;}
.ws1_c00135{word-spacing:-14.781333pt;}
.ws2_c00135{word-spacing:0.000000pt;}
._12_c00135{margin-left:-13.664000pt;}
._10_c00135{margin-left:-9.717333pt;}
._c_c00135{margin-left:-8.330667pt;}
._3_c00135{margin-left:-6.272000pt;}
._a_c00135{margin-left:-5.120000pt;}
._5_c00135{margin-left:-3.466667pt;}
._b_c00135{margin-left:-2.549333pt;}
._6_c00135{margin-left:-1.536000pt;}
._1_c00135{width:1.418667pt;}
._2_c00135{width:2.389333pt;}
._0_c00135{width:3.658667pt;}
._4_c00135{width:5.077333pt;}
._9_c00135{width:6.464000pt;}
._f_c00135{width:7.776000pt;}
._7_c00135{width:8.917333pt;}
._d_c00135{width:10.240000pt;}
._8_c00135{width:11.936000pt;}
._e_c00135{width:13.600000pt;}
._13_c00135{width:14.506667pt;}
._11_c00135{width:28.554667pt;}
.fs3_c00135{font-size:42.666667pt;}
.fs2_c00135{font-size:61.333333pt;}
.fs1_c00135{font-size:64.000000pt;}
.fs0_c00135{font-size:74.666667pt;}
.y0_c00135{bottom:0.000000pt;}
.y1f_c00135{bottom:2.760000pt;}
.y1e_c00135{bottom:6.425212pt;}
.y1d_c00135{bottom:38.666667pt;}
.y1c_c00135{bottom:60.266667pt;}
.y1b_c00135{bottom:83.066667pt;}
.y1a_c00135{bottom:106.133333pt;}
.y19_c00135{bottom:127.466667pt;}
.y18_c00135{bottom:150.266667pt;}
.y17_c00135{bottom:171.866667pt;}
.y16_c00135{bottom:194.133333pt;}
.y15_c00135{bottom:216.000000pt;}
.y14_c00135{bottom:238.266667pt;}
.y13_c00135{bottom:260.400000pt;}
.y12_c00135{bottom:282.000000pt;}
.y11_c00135{bottom:303.866667pt;}
.y10_c00135{bottom:324.933333pt;}
.yf_c00135{bottom:346.800000pt;}
.ye_c00135{bottom:368.933333pt;}
.yd_c00135{bottom:391.200000pt;}
.yc_c00135{bottom:412.800000pt;}
.yb_c00135{bottom:434.400000pt;}
.ya_c00135{bottom:456.266667pt;}
.y9_c00135{bottom:478.133333pt;}
.y8_c00135{bottom:500.133333pt;}
.y7_c00135{bottom:522.533333pt;}
.y6_c00135{bottom:544.000000pt;}
.y5_c00135{bottom:566.000000pt;}
.y4_c00135{bottom:587.066667pt;}
.y3_c00135{bottom:608.666667pt;}
.y2_c00135{bottom:631.733333pt;}
.y1_c00135{bottom:653.733333pt;}
.h5_c00135{height:11.733399pt;}
.h6_c00135{height:38.937500pt;}
.h2_c00135{height:73.281250pt;}
.h4_c00135{height:77.654948pt;}
.h3_c00135{height:81.031250pt;}
.h1_c00135{height:711.333333pt;}
.h0_c00135{height:711.600000pt;}
.w2_c00135{width:93.222667pt;}
.w0_c00135{width:461.733333pt;}
.w1_c00135{width:462.000000pt;}
.x0_c00135{left:0.000000pt;}
.x6_c00135{left:105.600000pt;}
.x4_c00135{left:106.800000pt;}
.x5_c00135{left:107.733333pt;}
.x3_c00135{left:108.800000pt;}
.x2_c00135{left:110.000000pt;}
.x8_c00135{left:188.034871pt;}
.x1_c00135{left:216.933333pt;}
.x7_c00135{left:414.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ae645427bff1154197c23028.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00136;src:url('chunks/assets/font_03c6aa27d611acbd327e9315.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00136;src:url('chunks/assets/font_b5302b6f341a402d59b8b67a.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00136{font-family:ff4_c00136;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00136{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00136{vertical-align:0.000000px;}
.ls1_c00136{letter-spacing:0.000000px;}
.ls0_c00136{letter-spacing:3.000000px;}
.ls2_c00136{letter-spacing:21.000000px;}
.sc__c00136{text-shadow:none;}
.sc0_c00136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00136{-webkit-text-stroke:0px transparent;}
.sc0_c00136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00136{word-spacing:-38.352000px;}
.ws1_c00136{word-spacing:-20.352000px;}
.ws2_c00136{word-spacing:0.000000px;}
._5_c00136{margin-left:-12.960000px;}
._d_c00136{margin-left:-9.216000px;}
._6_c00136{margin-left:-7.371000px;}
._11_c00136{margin-left:-5.898000px;}
._c_c00136{margin-left:-4.872000px;}
._9_c00136{margin-left:-3.600000px;}
._a_c00136{margin-left:-2.592000px;}
._8_c00136{margin-left:-1.080000px;}
._7_c00136{width:1.224000px;}
._b_c00136{width:2.364000px;}
._2_c00136{width:3.612000px;}
._1_c00136{width:5.628000px;}
._3_c00136{width:6.972000px;}
._0_c00136{width:8.652000px;}
._e_c00136{width:9.660000px;}
._10_c00136{width:11.088000px;}
._12_c00136{width:13.380000px;}
._f_c00136{width:17.280000px;}
._4_c00136{width:385.476000px;}
.fc2_c00136{color:transparent;}
.fc1_c00136{color:rgb(128,128,128);}
.fc0_c00136{color:rgb(0,0,0);}
.fs3_c00136{font-size:48.000000px;}
.fs2_c00136{font-size:72.000000px;}
.fs1_c00136{font-size:81.000000px;}
.fs0_c00136{font-size:84.000000px;}
.y0_c00136{bottom:0.000000px;}
.y1f_c00136{bottom:3.105000px;}
.y1e_c00136{bottom:7.228357px;}
.y1d_c00136{bottom:40.530000px;}
.y1c_c00136{bottom:67.230000px;}
.y1b_c00136{bottom:92.580000px;}
.y1a_c00136{bottom:118.080000px;}
.y19_c00136{bottom:143.130000px;}
.y18_c00136{bottom:167.430000px;}
.y17_c00136{bottom:191.130000px;}
.y16_c00136{bottom:217.680000px;}
.y15_c00136{bottom:240.330000px;}
.y14_c00136{bottom:266.580000px;}
.y13_c00136{bottom:290.280000px;}
.y12_c00136{bottom:312.180000px;}
.y11_c00136{bottom:336.780000px;}
.y10_c00136{bottom:361.230000px;}
.yf_c00136{bottom:385.830000px;}
.ye_c00136{bottom:410.430000px;}
.yd_c00136{bottom:435.030000px;}
.yc_c00136{bottom:459.630000px;}
.yb_c00136{bottom:483.930000px;}
.ya_c00136{bottom:508.380000px;}
.y9_c00136{bottom:532.680000px;}
.y8_c00136{bottom:556.980000px;}
.y7_c00136{bottom:581.580000px;}
.y6_c00136{bottom:605.880000px;}
.y5_c00136{bottom:630.780000px;}
.y4_c00136{bottom:654.780000px;}
.y3_c00136{bottom:680.130000px;}
.y2_c00136{bottom:703.380000px;}
.y1_c00136{bottom:728.430000px;}
.h4_c00136{height:13.200074px;}
.h5_c00136{height:43.804688px;}
.h2_c00136{height:82.400391px;}
.h3_c00136{height:91.160156px;}
.h0_c00136{height:773.850000px;}
.h1_c00136{height:774.000000px;}
.w2_c00136{width:104.875500px;}
.w0_c00136{width:504.375000px;}
.w1_c00136{width:504.750000px;}
.x0_c00136{left:0.000000px;}
.x2_c00136{left:32.100000px;}
.x3_c00136{left:34.050000px;}
.x4_c00136{left:35.700000px;}
.x5_c00136{left:37.050000px;}
.x1_c00136{left:148.050000px;}
.x7_c00136{left:204.001740px;}
.x6_c00136{left:371.550000px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls1_c00136{letter-spacing:0.000000pt;}
.ls0_c00136{letter-spacing:2.666667pt;}
.ls2_c00136{letter-spacing:18.666667pt;}
.ws0_c00136{word-spacing:-34.090667pt;}
.ws1_c00136{word-spacing:-18.090667pt;}
.ws2_c00136{word-spacing:0.000000pt;}
._5_c00136{margin-left:-11.520000pt;}
._d_c00136{margin-left:-8.192000pt;}
._6_c00136{margin-left:-6.552000pt;}
._11_c00136{margin-left:-5.242667pt;}
._c_c00136{margin-left:-4.330667pt;}
._9_c00136{margin-left:-3.200000pt;}
._a_c00136{margin-left:-2.304000pt;}
._8_c00136{margin-left:-0.960000pt;}
._7_c00136{width:1.088000pt;}
._b_c00136{width:2.101333pt;}
._2_c00136{width:3.210667pt;}
._1_c00136{width:5.002667pt;}
._3_c00136{width:6.197333pt;}
._0_c00136{width:7.690667pt;}
._e_c00136{width:8.586667pt;}
._10_c00136{width:9.856000pt;}
._12_c00136{width:11.893333pt;}
._f_c00136{width:15.360000pt;}
._4_c00136{width:342.645333pt;}
.fs3_c00136{font-size:42.666667pt;}
.fs2_c00136{font-size:64.000000pt;}
.fs1_c00136{font-size:72.000000pt;}
.fs0_c00136{font-size:74.666667pt;}
.y0_c00136{bottom:0.000000pt;}
.y1f_c00136{bottom:2.760000pt;}
.y1e_c00136{bottom:6.425206pt;}
.y1d_c00136{bottom:36.026667pt;}
.y1c_c00136{bottom:59.760000pt;}
.y1b_c00136{bottom:82.293333pt;}
.y1a_c00136{bottom:104.960000pt;}
.y19_c00136{bottom:127.226667pt;}
.y18_c00136{bottom:148.826667pt;}
.y17_c00136{bottom:169.893333pt;}
.y16_c00136{bottom:193.493333pt;}
.y15_c00136{bottom:213.626667pt;}
.y14_c00136{bottom:236.960000pt;}
.y13_c00136{bottom:258.026667pt;}
.y12_c00136{bottom:277.493333pt;}
.y11_c00136{bottom:299.360000pt;}
.y10_c00136{bottom:321.093333pt;}
.yf_c00136{bottom:342.960000pt;}
.ye_c00136{bottom:364.826667pt;}
.yd_c00136{bottom:386.693333pt;}
.yc_c00136{bottom:408.560000pt;}
.yb_c00136{bottom:430.160000pt;}
.ya_c00136{bottom:451.893333pt;}
.y9_c00136{bottom:473.493333pt;}
.y8_c00136{bottom:495.093333pt;}
.y7_c00136{bottom:516.960000pt;}
.y6_c00136{bottom:538.560000pt;}
.y5_c00136{bottom:560.693333pt;}
.y4_c00136{bottom:582.026667pt;}
.y3_c00136{bottom:604.560000pt;}
.y2_c00136{bottom:625.226667pt;}
.y1_c00136{bottom:647.493333pt;}
.h4_c00136{height:11.733399pt;}
.h5_c00136{height:38.937500pt;}
.h2_c00136{height:73.244792pt;}
.h3_c00136{height:81.031250pt;}
.h0_c00136{height:687.866667pt;}
.h1_c00136{height:688.000000pt;}
.w2_c00136{width:93.222667pt;}
.w0_c00136{width:448.333333pt;}
.w1_c00136{width:448.666667pt;}
.x0_c00136{left:0.000000pt;}
.x2_c00136{left:28.533333pt;}
.x3_c00136{left:30.266667pt;}
.x4_c00136{left:31.733333pt;}
.x5_c00136{left:32.933333pt;}
.x1_c00136{left:131.600000pt;}
.x7_c00136{left:181.334880pt;}
.x6_c00136{left:330.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0c9f0727c375001bbf787f8b.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.480469;font-style:normal;font-weight:normal;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_ff1e5d6db518a68004774eba.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:1.568848;font-style:normal;font-weight:normal;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_ca1d16339ac3908b55bb9960.woff2')format("woff");}.ff3_c00137{font-family:ff3_c00137;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00137{font-family:ff4_c00137;line-height:1.219238;font-style: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;}
.ls5_c00137{letter-spacing:-3.000000px;}
.ls4_c00137{letter-spacing:0.000000px;}
.ls0_c00137{letter-spacing:3.000000px;}
.ls2_c00137{letter-spacing:11.388000px;}
.ls3_c00137{letter-spacing:11.988000px;}
.ls1_c00137{letter-spacing:14.040000px;}
.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:-33.192000px;}
.ws2_c00137{word-spacing:-27.051000px;}
.ws3_c00137{word-spacing:-20.352000px;}
.ws4_c00137{word-spacing:-19.629000px;}
.ws5_c00137{word-spacing:0.000000px;}
.ws1_c00137{word-spacing:0.126000px;}
._11_c00137{margin-left:-16.128000px;}
._13_c00137{margin-left:-13.308000px;}
._16_c00137{margin-left:-10.224000px;}
._b_c00137{margin-left:-9.144000px;}
._6_c00137{margin-left:-7.128000px;}
._d_c00137{margin-left:-5.760000px;}
._10_c00137{margin-left:-4.752000px;}
._4_c00137{margin-left:-3.672000px;}
._7_c00137{margin-left:-2.664000px;}
._2_c00137{margin-left:-1.296000px;}
._1_c00137{width:1.512000px;}
._0_c00137{width:3.384000px;}
._8_c00137{width:4.968000px;}
._9_c00137{width:5.976000px;}
._e_c00137{width:7.245000px;}
._3_c00137{width:8.856000px;}
._c_c00137{width:10.656000px;}
._f_c00137{width:11.736000px;}
._5_c00137{width:14.043000px;}
._12_c00137{width:15.336000px;}
._a_c00137{width:17.208000px;}
._14_c00137{width:22.851000px;}
._15_c00137{width:25.344000px;}
.fc2_c00137{color:transparent;}
.fc1_c00137{color:rgb(128,128,128);}
.fc0_c00137{color:rgb(0,0,0);}
.fs4_c00137{font-size:48.000000px;}
.fs1_c00137{font-size:63.000000px;}
.fs2_c00137{font-size:66.000000px;}
.fs3_c00137{font-size:69.000000px;}
.fs0_c00137{font-size:72.000000px;}
.y0_c00137{bottom:0.000000px;}
.y1f_c00137{bottom:3.105000px;}
.y1e_c00137{bottom:7.228369px;}
.y1d_c00137{bottom:44.820000px;}
.y1c_c00137{bottom:66.870000px;}
.y1b_c00137{bottom:92.070000px;}
.y1a_c00137{bottom:116.820000px;}
.y19_c00137{bottom:141.720000px;}
.y18_c00137{bottom:167.670000px;}
.y17_c00137{bottom:193.020000px;}
.y16_c00137{bottom:217.320000px;}
.y15_c00137{bottom:243.270000px;}
.y14_c00137{bottom:267.270000px;}
.y13_c00137{bottom:293.520000px;}
.y12_c00137{bottom:316.920000px;}
.y11_c00137{bottom:343.170000px;}
.y10_c00137{bottom:365.520000px;}
.yf_c00137{bottom:390.720000px;}
.ye_c00137{bottom:415.020000px;}
.yd_c00137{bottom:440.370000px;}
.yc_c00137{bottom:466.470000px;}
.yb_c00137{bottom:489.420000px;}
.ya_c00137{bottom:514.620000px;}
.y9_c00137{bottom:539.220000px;}
.y8_c00137{bottom:563.970000px;}
.y7_c00137{bottom:589.320000px;}
.y6_c00137{bottom:613.620000px;}
.y5_c00137{bottom:637.920000px;}
.y4_c00137{bottom:662.520000px;}
.y3_c00137{bottom:687.120000px;}
.y2_c00137{bottom:712.020000px;}
.y1_c00137{bottom:737.370000px;}
.h4_c00137{height:13.200073px;}
.h5_c00137{height:43.804688px;}
.h3_c00137{height:87.361816px;}
.h2_c00137{height:91.160156px;}
.h1_c00137{height:790.500000px;}
.h0_c00137{height:790.800000px;}
.w2_c00137{width:104.875500px;}
.w1_c00137{width:525.000000px;}
.w0_c00137{width:525.150000px;}
.x0_c00137{left:0.000000px;}
.x3_c00137{left:118.800000px;}
.x4_c00137{left:120.150000px;}
.x2_c00137{left:121.800000px;}
.x5_c00137{left:123.150000px;}
.x6_c00137{left:124.200000px;}
.x8_c00137{left:126.600000px;}
.x7_c00137{left:127.950000px;}
.xa_c00137{left:214.389267px;}
.x1_c00137{left:233.100000px;}
.x9_c00137{left:467.400000px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls5_c00137{letter-spacing:-2.666667pt;}
.ls4_c00137{letter-spacing:0.000000pt;}
.ls0_c00137{letter-spacing:2.666667pt;}
.ls2_c00137{letter-spacing:10.122667pt;}
.ls3_c00137{letter-spacing:10.656000pt;}
.ls1_c00137{letter-spacing:12.480000pt;}
.ws0_c00137{word-spacing:-29.504000pt;}
.ws2_c00137{word-spacing:-24.045333pt;}
.ws3_c00137{word-spacing:-18.090667pt;}
.ws4_c00137{word-spacing:-17.448000pt;}
.ws5_c00137{word-spacing:0.000000pt;}
.ws1_c00137{word-spacing:0.112000pt;}
._11_c00137{margin-left:-14.336000pt;}
._13_c00137{margin-left:-11.829333pt;}
._16_c00137{margin-left:-9.088000pt;}
._b_c00137{margin-left:-8.128000pt;}
._6_c00137{margin-left:-6.336000pt;}
._d_c00137{margin-left:-5.120000pt;}
._10_c00137{margin-left:-4.224000pt;}
._4_c00137{margin-left:-3.264000pt;}
._7_c00137{margin-left:-2.368000pt;}
._2_c00137{margin-left:-1.152000pt;}
._1_c00137{width:1.344000pt;}
._0_c00137{width:3.008000pt;}
._8_c00137{width:4.416000pt;}
._9_c00137{width:5.312000pt;}
._e_c00137{width:6.440000pt;}
._3_c00137{width:7.872000pt;}
._c_c00137{width:9.472000pt;}
._f_c00137{width:10.432000pt;}
._5_c00137{width:12.482667pt;}
._12_c00137{width:13.632000pt;}
._a_c00137{width:15.296000pt;}
._14_c00137{width:20.312000pt;}
._15_c00137{width:22.528000pt;}
.fs4_c00137{font-size:42.666667pt;}
.fs1_c00137{font-size:56.000000pt;}
.fs2_c00137{font-size:58.666667pt;}
.fs3_c00137{font-size:61.333333pt;}
.fs0_c00137{font-size:64.000000pt;}
.y0_c00137{bottom:0.000000pt;}
.y1f_c00137{bottom:2.760000pt;}
.y1e_c00137{bottom:6.425217pt;}
.y1d_c00137{bottom:39.840000pt;}
.y1c_c00137{bottom:59.440000pt;}
.y1b_c00137{bottom:81.840000pt;}
.y1a_c00137{bottom:103.840000pt;}
.y19_c00137{bottom:125.973333pt;}
.y18_c00137{bottom:149.040000pt;}
.y17_c00137{bottom:171.573333pt;}
.y16_c00137{bottom:193.173333pt;}
.y15_c00137{bottom:216.240000pt;}
.y14_c00137{bottom:237.573333pt;}
.y13_c00137{bottom:260.906667pt;}
.y12_c00137{bottom:281.706667pt;}
.y11_c00137{bottom:305.040000pt;}
.y10_c00137{bottom:324.906667pt;}
.yf_c00137{bottom:347.306667pt;}
.ye_c00137{bottom:368.906667pt;}
.yd_c00137{bottom:391.440000pt;}
.yc_c00137{bottom:414.640000pt;}
.yb_c00137{bottom:435.040000pt;}
.ya_c00137{bottom:457.440000pt;}
.y9_c00137{bottom:479.306667pt;}
.y8_c00137{bottom:501.306667pt;}
.y7_c00137{bottom:523.840000pt;}
.y6_c00137{bottom:545.440000pt;}
.y5_c00137{bottom:567.040000pt;}
.y4_c00137{bottom:588.906667pt;}
.y3_c00137{bottom:610.773333pt;}
.y2_c00137{bottom:632.906667pt;}
.y1_c00137{bottom:655.440000pt;}
.h4_c00137{height:11.733399pt;}
.h5_c00137{height:38.937500pt;}
.h3_c00137{height:77.654948pt;}
.h2_c00137{height:81.031250pt;}
.h1_c00137{height:702.666667pt;}
.h0_c00137{height:702.933333pt;}
.w2_c00137{width:93.222667pt;}
.w1_c00137{width:466.666667pt;}
.w0_c00137{width:466.800000pt;}
.x0_c00137{left:0.000000pt;}
.x3_c00137{left:105.600000pt;}
.x4_c00137{left:106.800000pt;}
.x2_c00137{left:108.266667pt;}
.x5_c00137{left:109.466667pt;}
.x6_c00137{left:110.400000pt;}
.x8_c00137{left:112.533333pt;}
.x7_c00137{left:113.733333pt;}
.xa_c00137{left:190.568237pt;}
.x1_c00137{left:207.200000pt;}
.x9_c00137{left:415.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4741b6016013ef0b2404e485.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.480469;font-style:normal;font-weight:normal;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_4bdd503f7bd278f42291551b.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00138;src:url('chunks/assets/font_fe75afa6bcaaccd2aed2d5d0.woff2')format("woff");}.ff3_c00138{font-family:ff3_c00138;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00138;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00138{font-family:ff4_c00138;line-height:1.219238;font-style: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;}
.ls2_c00138{letter-spacing:0.000000px;}
.ls3_c00138{letter-spacing:3.000000px;}
.ls1_c00138{letter-spacing:13.788000px;}
.ls0_c00138{letter-spacing:368.448000px;}
.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:-16.848000px;}
.ws1_c00138{word-spacing:0.000000px;}
._13_c00138{margin-left:-13.104000px;}
._12_c00138{margin-left:-11.808000px;}
._b_c00138{margin-left:-7.704000px;}
._10_c00138{margin-left:-6.264000px;}
._7_c00138{margin-left:-5.112000px;}
._6_c00138{margin-left:-4.032000px;}
._a_c00138{margin-left:-2.448000px;}
._4_c00138{margin-left:-1.296000px;}
._9_c00138{width:1.512000px;}
._8_c00138{width:2.664000px;}
._5_c00138{width:3.672000px;}
._3_c00138{width:5.544000px;}
._2_c00138{width:7.416000px;}
._d_c00138{width:9.072000px;}
._0_c00138{width:10.944000px;}
._1_c00138{width:12.312000px;}
._f_c00138{width:13.464000px;}
._11_c00138{width:14.832000px;}
._c_c00138{width:16.632000px;}
._e_c00138{width:18.144000px;}
._14_c00138{width:189.720000px;}
.fc2_c00138{color:transparent;}
.fc1_c00138{color:rgb(128,128,128);}
.fc0_c00138{color:rgb(0,0,0);}
.fs3_c00138{font-size:48.000000px;}
.fs1_c00138{font-size:63.000000px;}
.fs2_c00138{font-size:66.000000px;}
.fs0_c00138{font-size:72.000000px;}
.y0_c00138{bottom:0.000000px;}
.y1f_c00138{bottom:3.105000px;}
.y1e_c00138{bottom:7.228371px;}
.y1d_c00138{bottom:37.815000px;}
.y1c_c00138{bottom:63.915000px;}
.y1b_c00138{bottom:89.415000px;}
.y1a_c00138{bottom:114.465000px;}
.y19_c00138{bottom:139.515000px;}
.y18_c00138{bottom:165.015000px;}
.y17_c00138{bottom:189.465000px;}
.y16_c00138{bottom:214.665000px;}
.y15_c00138{bottom:239.415000px;}
.y14_c00138{bottom:264.915000px;}
.y13_c00138{bottom:288.315000px;}
.y12_c00138{bottom:311.565000px;}
.y11_c00138{bottom:334.815000px;}
.y10_c00138{bottom:359.415000px;}
.yf_c00138{bottom:383.865000px;}
.ye_c00138{bottom:408.465000px;}
.yd_c00138{bottom:433.815000px;}
.yc_c00138{bottom:458.115000px;}
.yb_c00138{bottom:482.715000px;}
.ya_c00138{bottom:508.065000px;}
.y9_c00138{bottom:532.215000px;}
.y8_c00138{bottom:556.215000px;}
.y7_c00138{bottom:580.965000px;}
.y6_c00138{bottom:605.865000px;}
.y5_c00138{bottom:630.165000px;}
.y4_c00138{bottom:654.465000px;}
.y3_c00138{bottom:679.515000px;}
.y2_c00138{bottom:703.815000px;}
.y1_c00138{bottom:729.015000px;}
.h3_c00138{height:13.200074px;}
.h4_c00138{height:43.804688px;}
.h2_c00138{height:91.160156px;}
.h1_c00138{height:789.000000px;}
.h0_c00138{height:789.225000px;}
.w2_c00138{width:104.875500px;}
.w0_c00138{width:509.775000px;}
.w1_c00138{width:510.000000px;}
.x0_c00138{left:0.000000px;}
.x3_c00138{left:27.750000px;}
.x2_c00138{left:28.800000px;}
.x4_c00138{left:30.150000px;}
.x5_c00138{left:31.500000px;}
.x6_c00138{left:33.150000px;}
.x1_c00138{left:148.050000px;}
.x8_c00138{left:206.701767px;}
.x7_c00138{left:279.450000px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls2_c00138{letter-spacing:0.000000pt;}
.ls3_c00138{letter-spacing:2.666667pt;}
.ls1_c00138{letter-spacing:12.256000pt;}
.ls0_c00138{letter-spacing:327.509333pt;}
.ws0_c00138{word-spacing:-14.976000pt;}
.ws1_c00138{word-spacing:0.000000pt;}
._13_c00138{margin-left:-11.648000pt;}
._12_c00138{margin-left:-10.496000pt;}
._b_c00138{margin-left:-6.848000pt;}
._10_c00138{margin-left:-5.568000pt;}
._7_c00138{margin-left:-4.544000pt;}
._6_c00138{margin-left:-3.584000pt;}
._a_c00138{margin-left:-2.176000pt;}
._4_c00138{margin-left:-1.152000pt;}
._9_c00138{width:1.344000pt;}
._8_c00138{width:2.368000pt;}
._5_c00138{width:3.264000pt;}
._3_c00138{width:4.928000pt;}
._2_c00138{width:6.592000pt;}
._d_c00138{width:8.064000pt;}
._0_c00138{width:9.728000pt;}
._1_c00138{width:10.944000pt;}
._f_c00138{width:11.968000pt;}
._11_c00138{width:13.184000pt;}
._c_c00138{width:14.784000pt;}
._e_c00138{width:16.128000pt;}
._14_c00138{width:168.640000pt;}
.fs3_c00138{font-size:42.666667pt;}
.fs1_c00138{font-size:56.000000pt;}
.fs2_c00138{font-size:58.666667pt;}
.fs0_c00138{font-size:64.000000pt;}
.y0_c00138{bottom:0.000000pt;}
.y1f_c00138{bottom:2.760000pt;}
.y1e_c00138{bottom:6.425219pt;}
.y1d_c00138{bottom:33.613333pt;}
.y1c_c00138{bottom:56.813333pt;}
.y1b_c00138{bottom:79.480000pt;}
.y1a_c00138{bottom:101.746667pt;}
.y19_c00138{bottom:124.013333pt;}
.y18_c00138{bottom:146.680000pt;}
.y17_c00138{bottom:168.413333pt;}
.y16_c00138{bottom:190.813333pt;}
.y15_c00138{bottom:212.813333pt;}
.y14_c00138{bottom:235.480000pt;}
.y13_c00138{bottom:256.280000pt;}
.y12_c00138{bottom:276.946667pt;}
.y11_c00138{bottom:297.613333pt;}
.y10_c00138{bottom:319.480000pt;}
.yf_c00138{bottom:341.213333pt;}
.ye_c00138{bottom:363.080000pt;}
.yd_c00138{bottom:385.613333pt;}
.yc_c00138{bottom:407.213333pt;}
.yb_c00138{bottom:429.080000pt;}
.ya_c00138{bottom:451.613333pt;}
.y9_c00138{bottom:473.080000pt;}
.y8_c00138{bottom:494.413333pt;}
.y7_c00138{bottom:516.413333pt;}
.y6_c00138{bottom:538.546667pt;}
.y5_c00138{bottom:560.146667pt;}
.y4_c00138{bottom:581.746667pt;}
.y3_c00138{bottom:604.013333pt;}
.y2_c00138{bottom:625.613333pt;}
.y1_c00138{bottom:648.013333pt;}
.h3_c00138{height:11.733399pt;}
.h4_c00138{height:38.937500pt;}
.h2_c00138{height:81.031250pt;}
.h1_c00138{height:701.333333pt;}
.h0_c00138{height:701.533333pt;}
.w2_c00138{width:93.222667pt;}
.w0_c00138{width:453.133333pt;}
.w1_c00138{width:453.333333pt;}
.x0_c00138{left:0.000000pt;}
.x3_c00138{left:24.666667pt;}
.x2_c00138{left:25.600000pt;}
.x4_c00138{left:26.800000pt;}
.x5_c00138{left:28.000000pt;}
.x6_c00138{left:29.466667pt;}
.x1_c00138{left:131.600000pt;}
.x8_c00138{left:183.734904pt;}
.x7_c00138{left:248.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63f1b0e74aeda26da2c2467f.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.480469;font-style:normal;font-weight:normal;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_e574988d5073e4d5e93ea313.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:1.568848;font-style:normal;font-weight:normal;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_893d582939b22a42ceae03c1.woff2')format("woff");}.ff3_c00139{font-family:ff3_c00139;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00139;src:url('chunks/assets/font_9fd9488e9e30720b31b2bf31.woff2')format("woff");}.ff4_c00139{font-family:ff4_c00139;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00139;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00139{font-family:ff5_c00139;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00139{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00139{vertical-align:0.000000px;}
.ls3_c00139{letter-spacing:-3.000000px;}
.ls2_c00139{letter-spacing:0.000000px;}
.ls1_c00139{letter-spacing:3.000000px;}
.ls0_c00139{letter-spacing:6.171000px;}
.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;}
}
.ws3_c00139{word-spacing:-22.500000px;}
.ws2_c00139{word-spacing:-20.352000px;}
.ws1_c00139{word-spacing:-17.352000px;}
.ws0_c00139{word-spacing:-16.629000px;}
.ws4_c00139{word-spacing:0.000000px;}
._11_c00139{margin-left:-16.146000px;}
._15_c00139{margin-left:-14.847000px;}
._16_c00139{margin-left:-11.613000px;}
._14_c00139{margin-left:-10.608000px;}
._c_c00139{margin-left:-8.850000px;}
._13_c00139{margin-left:-6.993000px;}
._9_c00139{margin-left:-5.481000px;}
._4_c00139{margin-left:-3.672000px;}
._a_c00139{margin-left:-2.553000px;}
._7_c00139{margin-left:-1.512000px;}
._5_c00139{width:1.296000px;}
._1_c00139{width:3.240000px;}
._e_c00139{width:4.248000px;}
._3_c00139{width:5.328000px;}
._2_c00139{width:6.480000px;}
._0_c00139{width:7.848000px;}
._6_c00139{width:8.850000px;}
._b_c00139{width:10.626000px;}
._f_c00139{width:12.252000px;}
._8_c00139{width:14.490000px;}
._10_c00139{width:15.864000px;}
._d_c00139{width:17.481000px;}
._17_c00139{width:22.611000px;}
._12_c00139{width:198.444000px;}
.fc2_c00139{color:transparent;}
.fc1_c00139{color:rgb(128,128,128);}
.fc0_c00139{color:rgb(0,0,0);}
.fs4_c00139{font-size:48.000000px;}
.fs1_c00139{font-size:69.000000px;}
.fs0_c00139{font-size:72.000000px;}
.fs3_c00139{font-size:87.000000px;}
.fs2_c00139{font-size:90.000000px;}
.y0_c00139{bottom:0.000000px;}
.y1e_c00139{bottom:3.105000px;}
.y1d_c00139{bottom:7.228357px;}
.y1c_c00139{bottom:63.180000px;}
.y1b_c00139{bottom:88.830000px;}
.y1a_c00139{bottom:114.030000px;}
.y19_c00139{bottom:139.680000px;}
.y18_c00139{bottom:164.730000px;}
.y17_c00139{bottom:189.780000px;}
.y16_c00139{bottom:214.680000px;}
.y15_c00139{bottom:240.630000px;}
.y14_c00139{bottom:265.680000px;}
.y13_c00139{bottom:290.880000px;}
.y12_c00139{bottom:315.330000px;}
.y11_c00139{bottom:340.530000px;}
.y10_c00139{bottom:364.230000px;}
.yf_c00139{bottom:389.880000px;}
.ye_c00139{bottom:413.730000px;}
.yd_c00139{bottom:439.830000px;}
.yc_c00139{bottom:463.680000px;}
.yb_c00139{bottom:488.430000px;}
.ya_c00139{bottom:513.030000px;}
.y9_c00139{bottom:537.930000px;}
.y8_c00139{bottom:563.280000px;}
.y7_c00139{bottom:586.530000px;}
.y6_c00139{bottom:611.280000px;}
.y5_c00139{bottom:636.930000px;}
.y4_c00139{bottom:659.430000px;}
.y3_c00139{bottom:686.430000px;}
.y2_c00139{bottom:710.880000px;}
.y1_c00139{bottom:737.130000px;}
.h5_c00139{height:13.200074px;}
.h6_c00139{height:43.804688px;}
.h3_c00139{height:87.361816px;}
.h4_c00139{height:90.703125px;}
.h2_c00139{height:91.160156px;}
.h0_c00139{height:794.100000px;}
.h1_c00139{height:794.250000px;}
.w1_c00139{width:104.875500px;}
.w0_c00139{width:516.000000px;}
.x0_c00139{left:0.000000px;}
.x7_c00139{left:44.550000px;}
.x9_c00139{left:57.300000px;}
.x2_c00139{left:115.350000px;}
.x3_c00139{left:116.850000px;}
.x4_c00139{left:118.050000px;}
.x5_c00139{left:119.400000px;}
.x6_c00139{left:120.450000px;}
.xa_c00139{left:121.800000px;}
.x8_c00139{left:124.200000px;}
.xb_c00139{left:209.814240px;}
.x1_c00139{left:233.850000px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls3_c00139{letter-spacing:-2.666667pt;}
.ls2_c00139{letter-spacing:0.000000pt;}
.ls1_c00139{letter-spacing:2.666667pt;}
.ls0_c00139{letter-spacing:5.485333pt;}
.ws3_c00139{word-spacing:-20.000000pt;}
.ws2_c00139{word-spacing:-18.090667pt;}
.ws1_c00139{word-spacing:-15.424000pt;}
.ws0_c00139{word-spacing:-14.781333pt;}
.ws4_c00139{word-spacing:0.000000pt;}
._11_c00139{margin-left:-14.352000pt;}
._15_c00139{margin-left:-13.197333pt;}
._16_c00139{margin-left:-10.322667pt;}
._14_c00139{margin-left:-9.429333pt;}
._c_c00139{margin-left:-7.866667pt;}
._13_c00139{margin-left:-6.216000pt;}
._9_c00139{margin-left:-4.872000pt;}
._4_c00139{margin-left:-3.264000pt;}
._a_c00139{margin-left:-2.269333pt;}
._7_c00139{margin-left:-1.344000pt;}
._5_c00139{width:1.152000pt;}
._1_c00139{width:2.880000pt;}
._e_c00139{width:3.776000pt;}
._3_c00139{width:4.736000pt;}
._2_c00139{width:5.760000pt;}
._0_c00139{width:6.976000pt;}
._6_c00139{width:7.866667pt;}
._b_c00139{width:9.445333pt;}
._f_c00139{width:10.890667pt;}
._8_c00139{width:12.880000pt;}
._10_c00139{width:14.101333pt;}
._d_c00139{width:15.538667pt;}
._17_c00139{width:20.098667pt;}
._12_c00139{width:176.394667pt;}
.fs4_c00139{font-size:42.666667pt;}
.fs1_c00139{font-size:61.333333pt;}
.fs0_c00139{font-size:64.000000pt;}
.fs3_c00139{font-size:77.333333pt;}
.fs2_c00139{font-size:80.000000pt;}
.y0_c00139{bottom:0.000000pt;}
.y1e_c00139{bottom:2.760000pt;}
.y1d_c00139{bottom:6.425206pt;}
.y1c_c00139{bottom:56.160000pt;}
.y1b_c00139{bottom:78.960000pt;}
.y1a_c00139{bottom:101.360000pt;}
.y19_c00139{bottom:124.160000pt;}
.y18_c00139{bottom:146.426667pt;}
.y17_c00139{bottom:168.693333pt;}
.y16_c00139{bottom:190.826667pt;}
.y15_c00139{bottom:213.893333pt;}
.y14_c00139{bottom:236.160000pt;}
.y13_c00139{bottom:258.560000pt;}
.y12_c00139{bottom:280.293333pt;}
.y11_c00139{bottom:302.693333pt;}
.y10_c00139{bottom:323.760000pt;}
.yf_c00139{bottom:346.560000pt;}
.ye_c00139{bottom:367.760000pt;}
.yd_c00139{bottom:390.960000pt;}
.yc_c00139{bottom:412.160000pt;}
.yb_c00139{bottom:434.160000pt;}
.ya_c00139{bottom:456.026667pt;}
.y9_c00139{bottom:478.160000pt;}
.y8_c00139{bottom:500.693333pt;}
.y7_c00139{bottom:521.360000pt;}
.y6_c00139{bottom:543.360000pt;}
.y5_c00139{bottom:566.160000pt;}
.y4_c00139{bottom:586.160000pt;}
.y3_c00139{bottom:610.160000pt;}
.y2_c00139{bottom:631.893333pt;}
.y1_c00139{bottom:655.226667pt;}
.h5_c00139{height:11.733399pt;}
.h6_c00139{height:38.937500pt;}
.h3_c00139{height:77.654948pt;}
.h4_c00139{height:80.625000pt;}
.h2_c00139{height:81.031250pt;}
.h0_c00139{height:705.866667pt;}
.h1_c00139{height:706.000000pt;}
.w1_c00139{width:93.222667pt;}
.w0_c00139{width:458.666667pt;}
.x0_c00139{left:0.000000pt;}
.x7_c00139{left:39.600000pt;}
.x9_c00139{left:50.933333pt;}
.x2_c00139{left:102.533333pt;}
.x3_c00139{left:103.866667pt;}
.x4_c00139{left:104.933333pt;}
.x5_c00139{left:106.133333pt;}
.x6_c00139{left:107.066667pt;}
.xa_c00139{left:108.266667pt;}
.x8_c00139{left:110.400000pt;}
.xb_c00139{left:186.501546pt;}
.x1_c00139{left:207.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_206cb725b1c07d167655e2dd.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.480469;font-style:normal;font-weight:normal;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_6fac62a4d4b1e91a0381ffa2.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:1.568848;font-style:normal;font-weight:normal;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_0a09ed30912a27a658e15332.woff2')format("woff");}.ff3_c00140{font-family:ff3_c00140;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00140{font-family:ff4_c00140;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00140{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00140{vertical-align:0.000000px;}
.ls4_c00140{letter-spacing:0.000000px;}
.ls2_c00140{letter-spacing:3.000000px;}
.ls3_c00140{letter-spacing:3.564000px;}
.ls5_c00140{letter-spacing:6.000000px;}
.ls1_c00140{letter-spacing:19.788000px;}
.ls0_c00140{letter-spacing:416.448000px;}
.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:-33.192000px;}
.ws1_c00140{word-spacing:0.000000px;}
._16_c00140{margin-left:-15.624000px;}
._13_c00140{margin-left:-11.880000px;}
._11_c00140{margin-left:-10.872000px;}
._12_c00140{margin-left:-9.432000px;}
._10_c00140{margin-left:-7.560000px;}
._6_c00140{margin-left:-6.480000px;}
._15_c00140{margin-left:-5.400000px;}
._7_c00140{margin-left:-4.320000px;}
._8_c00140{margin-left:-3.168000px;}
._a_c00140{margin-left:-2.160000px;}
._9_c00140{margin-left:-1.152000px;}
._b_c00140{width:1.296000px;}
._5_c00140{width:3.024000px;}
._2_c00140{width:4.680000px;}
._4_c00140{width:5.904000px;}
._e_c00140{width:6.984000px;}
._1_c00140{width:7.992000px;}
._3_c00140{width:9.504000px;}
._18_c00140{width:10.512000px;}
._14_c00140{width:11.556000px;}
._0_c00140{width:12.672000px;}
._c_c00140{width:14.040000px;}
._d_c00140{width:15.624000px;}
._1a_c00140{width:16.920000px;}
._f_c00140{width:18.864000px;}
._17_c00140{width:21.600000px;}
._1b_c00140{width:39.180000px;}
._19_c00140{width:90.792000px;}
._1c_c00140{width:192.165000px;}
.fc2_c00140{color:transparent;}
.fc1_c00140{color:rgb(128,128,128);}
.fc0_c00140{color:rgb(0,0,0);}
.fs4_c00140{font-size:48.000000px;}
.fs2_c00140{font-size:54.000000px;}
.fs1_c00140{font-size:63.000000px;}
.fs3_c00140{font-size:69.000000px;}
.fs0_c00140{font-size:72.000000px;}
.y0_c00140{bottom:0.000000px;}
.y1f_c00140{bottom:3.105000px;}
.y1e_c00140{bottom:7.228363px;}
.y1d_c00140{bottom:49.950000px;}
.y1c_c00140{bottom:75.300000px;}
.y1b_c00140{bottom:100.950000px;}
.y1a_c00140{bottom:125.850000px;}
.y19_c00140{bottom:150.750000px;}
.y18_c00140{bottom:174.900000px;}
.y17_c00140{bottom:200.850000px;}
.y16_c00140{bottom:225.750000px;}
.y15_c00140{bottom:250.050000px;}
.y14_c00140{bottom:275.700000px;}
.y13_c00140{bottom:299.250000px;}
.y12_c00140{bottom:321.600000px;}
.y11_c00140{bottom:345.000000px;}
.y10_c00140{bottom:369.900000px;}
.yf_c00140{bottom:394.950000px;}
.ye_c00140{bottom:419.550000px;}
.yd_c00140{bottom:444.450000px;}
.yc_c00140{bottom:468.900000px;}
.yb_c00140{bottom:493.350000px;}
.ya_c00140{bottom:518.700000px;}
.y9_c00140{bottom:543.300000px;}
.y8_c00140{bottom:568.050000px;}
.y7_c00140{bottom:591.600000px;}
.y6_c00140{bottom:616.500000px;}
.y5_c00140{bottom:641.850000px;}
.y4_c00140{bottom:665.250000px;}
.y3_c00140{bottom:689.850000px;}
.y2_c00140{bottom:714.450000px;}
.y1_c00140{bottom:739.350000px;}
.h3_c00140{height:13.200074px;}
.h4_c00140{height:43.804688px;}
.h2_c00140{height:87.361816px;}
.h1_c00140{height:91.160156px;}
.h0_c00140{height:789.750000px;}
.w2_c00140{width:104.875500px;}
.w1_c00140{width:513.750000px;}
.w0_c00140{width:513.825000px;}
.x0_c00140{left:0.000000px;}
.x2_c00140{left:16.650000px;}
.x3_c00140{left:20.250000px;}
.x4_c00140{left:21.900000px;}
.x5_c00140{left:22.950000px;}
.x1_c00140{left:127.200000px;}
.x7_c00140{left:208.726730px;}
.x6_c00140{left:247.650000px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.ls4_c00140{letter-spacing:0.000000pt;}
.ls2_c00140{letter-spacing:2.666667pt;}
.ls3_c00140{letter-spacing:3.168000pt;}
.ls5_c00140{letter-spacing:5.333333pt;}
.ls1_c00140{letter-spacing:17.589333pt;}
.ls0_c00140{letter-spacing:370.176000pt;}
.ws0_c00140{word-spacing:-29.504000pt;}
.ws1_c00140{word-spacing:0.000000pt;}
._16_c00140{margin-left:-13.888000pt;}
._13_c00140{margin-left:-10.560000pt;}
._11_c00140{margin-left:-9.664000pt;}
._12_c00140{margin-left:-8.384000pt;}
._10_c00140{margin-left:-6.720000pt;}
._6_c00140{margin-left:-5.760000pt;}
._15_c00140{margin-left:-4.800000pt;}
._7_c00140{margin-left:-3.840000pt;}
._8_c00140{margin-left:-2.816000pt;}
._a_c00140{margin-left:-1.920000pt;}
._9_c00140{margin-left:-1.024000pt;}
._b_c00140{width:1.152000pt;}
._5_c00140{width:2.688000pt;}
._2_c00140{width:4.160000pt;}
._4_c00140{width:5.248000pt;}
._e_c00140{width:6.208000pt;}
._1_c00140{width:7.104000pt;}
._3_c00140{width:8.448000pt;}
._18_c00140{width:9.344000pt;}
._14_c00140{width:10.272000pt;}
._0_c00140{width:11.264000pt;}
._c_c00140{width:12.480000pt;}
._d_c00140{width:13.888000pt;}
._1a_c00140{width:15.040000pt;}
._f_c00140{width:16.768000pt;}
._17_c00140{width:19.200000pt;}
._1b_c00140{width:34.826667pt;}
._19_c00140{width:80.704000pt;}
._1c_c00140{width:170.813333pt;}
.fs4_c00140{font-size:42.666667pt;}
.fs2_c00140{font-size:48.000000pt;}
.fs1_c00140{font-size:56.000000pt;}
.fs3_c00140{font-size:61.333333pt;}
.fs0_c00140{font-size:64.000000pt;}
.y0_c00140{bottom:0.000000pt;}
.y1f_c00140{bottom:2.760000pt;}
.y1e_c00140{bottom:6.425212pt;}
.y1d_c00140{bottom:44.400000pt;}
.y1c_c00140{bottom:66.933333pt;}
.y1b_c00140{bottom:89.733333pt;}
.y1a_c00140{bottom:111.866667pt;}
.y19_c00140{bottom:134.000000pt;}
.y18_c00140{bottom:155.466667pt;}
.y17_c00140{bottom:178.533333pt;}
.y16_c00140{bottom:200.666667pt;}
.y15_c00140{bottom:222.266667pt;}
.y14_c00140{bottom:245.066667pt;}
.y13_c00140{bottom:266.000000pt;}
.y12_c00140{bottom:285.866667pt;}
.y11_c00140{bottom:306.666667pt;}
.y10_c00140{bottom:328.800000pt;}
.yf_c00140{bottom:351.066667pt;}
.ye_c00140{bottom:372.933333pt;}
.yd_c00140{bottom:395.066667pt;}
.yc_c00140{bottom:416.800000pt;}
.yb_c00140{bottom:438.533333pt;}
.ya_c00140{bottom:461.066667pt;}
.y9_c00140{bottom:482.933333pt;}
.y8_c00140{bottom:504.933333pt;}
.y7_c00140{bottom:525.866667pt;}
.y6_c00140{bottom:548.000000pt;}
.y5_c00140{bottom:570.533333pt;}
.y4_c00140{bottom:591.333333pt;}
.y3_c00140{bottom:613.200000pt;}
.y2_c00140{bottom:635.066667pt;}
.y1_c00140{bottom:657.200000pt;}
.h3_c00140{height:11.733399pt;}
.h4_c00140{height:38.937500pt;}
.h2_c00140{height:77.654948pt;}
.h1_c00140{height:81.031250pt;}
.h0_c00140{height:702.000000pt;}
.w2_c00140{width:93.222667pt;}
.w1_c00140{width:456.666667pt;}
.w0_c00140{width:456.733333pt;}
.x0_c00140{left:0.000000pt;}
.x2_c00140{left:14.800000pt;}
.x3_c00140{left:18.000000pt;}
.x4_c00140{left:19.466667pt;}
.x5_c00140{left:20.400000pt;}
.x1_c00140{left:113.066667pt;}
.x7_c00140{left:185.534871pt;}
.x6_c00140{left:220.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8a6481cb0d4c26427d5bcb3d.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.480469;font-style:normal;font-weight:normal;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_7b6af7d8e681415daa04f034.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.568848;font-style:normal;font-weight:normal;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_7f4d624e24694ad3677ad0f5.woff2')format("woff");}.ff3_c00141{font-family:ff3_c00141;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00141;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00141{font-family:ff4_c00141;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00141{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00141{vertical-align:0.000000px;}
.ls1_c00141{letter-spacing:0.000000px;}
.ls2_c00141{letter-spacing:3.000000px;}
.ls3_c00141{letter-spacing:6.000000px;}
.ls0_c00141{letter-spacing:12.000000px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00141{word-spacing:-19.014000px;}
.ws1_c00141{word-spacing:0.000000px;}
._5_c00141{margin-left:-13.896000px;}
._9_c00141{margin-left:-10.008000px;}
._c_c00141{margin-left:-7.992000px;}
._f_c00141{margin-left:-6.912000px;}
._d_c00141{margin-left:-5.112000px;}
._6_c00141{margin-left:-4.032000px;}
._7_c00141{margin-left:-2.952000px;}
._8_c00141{margin-left:-1.008000px;}
._1_c00141{width:1.008000px;}
._0_c00141{width:2.520000px;}
._2_c00141{width:3.816000px;}
._10_c00141{width:4.824000px;}
._3_c00141{width:5.904000px;}
._4_c00141{width:7.632000px;}
._e_c00141{width:9.720000px;}
._a_c00141{width:11.880000px;}
._b_c00141{width:14.064000px;}
.fc2_c00141{color:transparent;}
.fc1_c00141{color:rgb(128,128,128);}
.fc0_c00141{color:rgb(0,0,0);}
.fs4_c00141{font-size:48.000000px;}
.fs3_c00141{font-size:54.000000px;}
.fs2_c00141{font-size:60.000000px;}
.fs1_c00141{font-size:66.000000px;}
.fs0_c00141{font-size:72.000000px;}
.y0_c00141{bottom:0.000000px;}
.y1e_c00141{bottom:3.105000px;}
.y1d_c00141{bottom:7.228363px;}
.y1c_c00141{bottom:73.650000px;}
.y1b_c00141{bottom:98.550000px;}
.y1a_c00141{bottom:123.300000px;}
.y19_c00141{bottom:148.200000px;}
.y18_c00141{bottom:174.450000px;}
.y17_c00141{bottom:200.100000px;}
.y16_c00141{bottom:225.150000px;}
.y15_c00141{bottom:250.800000px;}
.y14_c00141{bottom:274.800000px;}
.y13_c00141{bottom:300.750000px;}
.y12_c00141{bottom:324.900000px;}
.y11_c00141{bottom:349.950000px;}
.y10_c00141{bottom:374.250000px;}
.yf_c00141{bottom:399.150000px;}
.ye_c00141{bottom:423.600000px;}
.yd_c00141{bottom:449.250000px;}
.yc_c00141{bottom:472.800000px;}
.yb_c00141{bottom:497.550000px;}
.ya_c00141{bottom:521.850000px;}
.y9_c00141{bottom:547.050000px;}
.y8_c00141{bottom:571.500000px;}
.y7_c00141{bottom:595.800000px;}
.y6_c00141{bottom:621.000000px;}
.y5_c00141{bottom:645.600000px;}
.y4_c00141{bottom:669.900000px;}
.y3_c00141{bottom:694.950000px;}
.y2_c00141{bottom:719.550000px;}
.y1_c00141{bottom:745.650000px;}
.h3_c00141{height:13.200074px;}
.h4_c00141{height:43.804688px;}
.h2_c00141{height:91.160156px;}
.h1_c00141{height:795.000000px;}
.h0_c00141{height:795.150000px;}
.w2_c00141{width:104.875500px;}
.w1_c00141{width:532.500000px;}
.w0_c00141{width:532.725000px;}
.x0_c00141{left:0.000000px;}
.x4_c00141{left:126.450000px;}
.x2_c00141{left:128.250000px;}
.x3_c00141{left:129.600000px;}
.x5_c00141{left:218.176758px;}
.x1_c00141{left:240.600000px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls1_c00141{letter-spacing:0.000000pt;}
.ls2_c00141{letter-spacing:2.666667pt;}
.ls3_c00141{letter-spacing:5.333333pt;}
.ls0_c00141{letter-spacing:10.666667pt;}
.ws0_c00141{word-spacing:-16.901333pt;}
.ws1_c00141{word-spacing:0.000000pt;}
._5_c00141{margin-left:-12.352000pt;}
._9_c00141{margin-left:-8.896000pt;}
._c_c00141{margin-left:-7.104000pt;}
._f_c00141{margin-left:-6.144000pt;}
._d_c00141{margin-left:-4.544000pt;}
._6_c00141{margin-left:-3.584000pt;}
._7_c00141{margin-left:-2.624000pt;}
._8_c00141{margin-left:-0.896000pt;}
._1_c00141{width:0.896000pt;}
._0_c00141{width:2.240000pt;}
._2_c00141{width:3.392000pt;}
._10_c00141{width:4.288000pt;}
._3_c00141{width:5.248000pt;}
._4_c00141{width:6.784000pt;}
._e_c00141{width:8.640000pt;}
._a_c00141{width:10.560000pt;}
._b_c00141{width:12.501333pt;}
.fs4_c00141{font-size:42.666667pt;}
.fs3_c00141{font-size:48.000000pt;}
.fs2_c00141{font-size:53.333333pt;}
.fs1_c00141{font-size:58.666667pt;}
.fs0_c00141{font-size:64.000000pt;}
.y0_c00141{bottom:0.000000pt;}
.y1e_c00141{bottom:2.760000pt;}
.y1d_c00141{bottom:6.425212pt;}
.y1c_c00141{bottom:65.466667pt;}
.y1b_c00141{bottom:87.600000pt;}
.y1a_c00141{bottom:109.600000pt;}
.y19_c00141{bottom:131.733333pt;}
.y18_c00141{bottom:155.066667pt;}
.y17_c00141{bottom:177.866667pt;}
.y16_c00141{bottom:200.133333pt;}
.y15_c00141{bottom:222.933333pt;}
.y14_c00141{bottom:244.266667pt;}
.y13_c00141{bottom:267.333333pt;}
.y12_c00141{bottom:288.800000pt;}
.y11_c00141{bottom:311.066667pt;}
.y10_c00141{bottom:332.666667pt;}
.yf_c00141{bottom:354.800000pt;}
.ye_c00141{bottom:376.533333pt;}
.yd_c00141{bottom:399.333333pt;}
.yc_c00141{bottom:420.266667pt;}
.yb_c00141{bottom:442.266667pt;}
.ya_c00141{bottom:463.866667pt;}
.y9_c00141{bottom:486.266667pt;}
.y8_c00141{bottom:508.000000pt;}
.y7_c00141{bottom:529.600000pt;}
.y6_c00141{bottom:552.000000pt;}
.y5_c00141{bottom:573.866667pt;}
.y4_c00141{bottom:595.466667pt;}
.y3_c00141{bottom:617.733333pt;}
.y2_c00141{bottom:639.600000pt;}
.y1_c00141{bottom:662.800000pt;}
.h3_c00141{height:11.733399pt;}
.h4_c00141{height:38.937500pt;}
.h2_c00141{height:81.031250pt;}
.h1_c00141{height:706.666667pt;}
.h0_c00141{height:706.800000pt;}
.w2_c00141{width:93.222667pt;}
.w1_c00141{width:473.333333pt;}
.w0_c00141{width:473.533333pt;}
.x0_c00141{left:0.000000pt;}
.x4_c00141{left:112.400000pt;}
.x2_c00141{left:114.000000pt;}
.x3_c00141{left:115.200000pt;}
.x5_c00141{left:193.934896pt;}
.x1_c00141{left:213.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c9f5c5a82aa3c6ede1d94ba0.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00142;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00142;src:url('chunks/assets/font_096f3dfb09743efe28d1109c.woff2')format("woff");}.ff3_c00142{font-family:ff3_c00142;line-height:1.480469;font-style:normal;font-weight:normal;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_5fa24a2823c06d384348b9ab.woff2')format("woff");}.ff4_c00142{font-family:ff4_c00142;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00142;src:url('chunks/assets/font_5648c346964c5f2c60cff240.woff2')format("woff");}.ff5_c00142{font-family:ff5_c00142;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00142;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00142{font-family:ff6_c00142;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00142{vertical-align:0.000000px;}
.ls1_c00142{letter-spacing:0.000000px;}
.ls2_c00142{letter-spacing:3.000000px;}
.ls0_c00142{letter-spacing:12.588000px;}
.sc__c00142{text-shadow:none;}
.sc0_c00142{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00142{-webkit-text-stroke:0px transparent;}
.sc0_c00142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00142{word-spacing:-42.000000px;}
.ws1_c00142{word-spacing:-33.192000px;}
.ws2_c00142{word-spacing:0.000000px;}
._14_c00142{margin-left:-13.608000px;}
._12_c00142{margin-left:-10.728000px;}
._b_c00142{margin-left:-8.136000px;}
._c_c00142{margin-left:-6.624000px;}
._11_c00142{margin-left:-5.544000px;}
._7_c00142{margin-left:-4.464000px;}
._5_c00142{margin-left:-2.520000px;}
._6_c00142{margin-left:-1.152000px;}
._4_c00142{width:1.512000px;}
._9_c00142{width:2.736000px;}
._3_c00142{width:3.948000px;}
._1_c00142{width:5.544000px;}
._2_c00142{width:6.552000px;}
._d_c00142{width:8.568000px;}
._0_c00142{width:9.576000px;}
._10_c00142{width:10.584000px;}
._8_c00142{width:11.808000px;}
._a_c00142{width:12.888000px;}
._e_c00142{width:14.112000px;}
._f_c00142{width:17.568000px;}
._13_c00142{width:42.192000px;}
._15_c00142{width:157.824000px;}
.fc2_c00142{color:transparent;}
.fc1_c00142{color:rgb(128,128,128);}
.fc0_c00142{color:rgb(0,0,0);}
.fs3_c00142{font-size:48.000000px;}
.fs2_c00142{font-size:63.000000px;}
.fs1_c00142{font-size:72.000000px;}
.fs0_c00142{font-size:84.000000px;}
.y0_c00142{bottom:0.000000px;}
.y1f_c00142{bottom:3.105000px;}
.y1e_c00142{bottom:7.228371px;}
.y1d_c00142{bottom:29.715000px;}
.y1c_c00142{bottom:54.765000px;}
.y1b_c00142{bottom:80.115000px;}
.y1a_c00142{bottom:106.365000px;}
.y19_c00142{bottom:132.015000px;}
.y18_c00142{bottom:157.065000px;}
.y17_c00142{bottom:181.215000px;}
.y16_c00142{bottom:206.565000px;}
.y15_c00142{bottom:231.315000px;}
.y14_c00142{bottom:256.515000px;}
.y13_c00142{bottom:280.515000px;}
.y12_c00142{bottom:302.115000px;}
.y11_c00142{bottom:326.115000px;}
.y10_c00142{bottom:350.415000px;}
.yf_c00142{bottom:375.615000px;}
.ye_c00142{bottom:400.365000px;}
.yd_c00142{bottom:424.665000px;}
.yc_c00142{bottom:449.265000px;}
.yb_c00142{bottom:473.865000px;}
.ya_c00142{bottom:498.915000px;}
.y9_c00142{bottom:522.915000px;}
.y8_c00142{bottom:547.515000px;}
.y7_c00142{bottom:571.365000px;}
.y6_c00142{bottom:596.415000px;}
.y5_c00142{bottom:621.315000px;}
.y4_c00142{bottom:645.315000px;}
.y3_c00142{bottom:669.615000px;}
.y2_c00142{bottom:694.215000px;}
.y1_c00142{bottom:719.265000px;}
.h4_c00142{height:13.200074px;}
.h5_c00142{height:43.804688px;}
.h2_c00142{height:82.441406px;}
.h3_c00142{height:91.160156px;}
.h0_c00142{height:778.425000px;}
.h1_c00142{height:778.500000px;}
.w2_c00142{width:104.875500px;}
.w1_c00142{width:522.000000px;}
.w0_c00142{width:522.150000px;}
.x0_c00142{left:0.000000px;}
.x9_c00142{left:26.700000px;}
.x4_c00142{left:28.800000px;}
.x6_c00142{left:30.450000px;}
.x5_c00142{left:31.500000px;}
.x3_c00142{left:33.450000px;}
.x2_c00142{left:34.800000px;}
.x8_c00142{left:72.600000px;}
.x7_c00142{left:86.850000px;}
.x1_c00142{left:154.950000px;}
.xb_c00142{left:212.889267px;}
.xa_c00142{left:265.950000px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls1_c00142{letter-spacing:0.000000pt;}
.ls2_c00142{letter-spacing:2.666667pt;}
.ls0_c00142{letter-spacing:11.189333pt;}
.ws0_c00142{word-spacing:-37.333333pt;}
.ws1_c00142{word-spacing:-29.504000pt;}
.ws2_c00142{word-spacing:0.000000pt;}
._14_c00142{margin-left:-12.096000pt;}
._12_c00142{margin-left:-9.536000pt;}
._b_c00142{margin-left:-7.232000pt;}
._c_c00142{margin-left:-5.888000pt;}
._11_c00142{margin-left:-4.928000pt;}
._7_c00142{margin-left:-3.968000pt;}
._5_c00142{margin-left:-2.240000pt;}
._6_c00142{margin-left:-1.024000pt;}
._4_c00142{width:1.344000pt;}
._9_c00142{width:2.432000pt;}
._3_c00142{width:3.509333pt;}
._1_c00142{width:4.928000pt;}
._2_c00142{width:5.824000pt;}
._d_c00142{width:7.616000pt;}
._0_c00142{width:8.512000pt;}
._10_c00142{width:9.408000pt;}
._8_c00142{width:10.496000pt;}
._a_c00142{width:11.456000pt;}
._e_c00142{width:12.544000pt;}
._f_c00142{width:15.616000pt;}
._13_c00142{width:37.504000pt;}
._15_c00142{width:140.288000pt;}
.fs3_c00142{font-size:42.666667pt;}
.fs2_c00142{font-size:56.000000pt;}
.fs1_c00142{font-size:64.000000pt;}
.fs0_c00142{font-size:74.666667pt;}
.y0_c00142{bottom:0.000000pt;}
.y1f_c00142{bottom:2.760000pt;}
.y1e_c00142{bottom:6.425219pt;}
.y1d_c00142{bottom:26.413333pt;}
.y1c_c00142{bottom:48.680000pt;}
.y1b_c00142{bottom:71.213333pt;}
.y1a_c00142{bottom:94.546667pt;}
.y19_c00142{bottom:117.346667pt;}
.y18_c00142{bottom:139.613333pt;}
.y17_c00142{bottom:161.080000pt;}
.y16_c00142{bottom:183.613333pt;}
.y15_c00142{bottom:205.613333pt;}
.y14_c00142{bottom:228.013333pt;}
.y13_c00142{bottom:249.346667pt;}
.y12_c00142{bottom:268.546667pt;}
.y11_c00142{bottom:289.880000pt;}
.y10_c00142{bottom:311.480000pt;}
.yf_c00142{bottom:333.880000pt;}
.ye_c00142{bottom:355.880000pt;}
.yd_c00142{bottom:377.480000pt;}
.yc_c00142{bottom:399.346667pt;}
.yb_c00142{bottom:421.213333pt;}
.ya_c00142{bottom:443.480000pt;}
.y9_c00142{bottom:464.813333pt;}
.y8_c00142{bottom:486.680000pt;}
.y7_c00142{bottom:507.880000pt;}
.y6_c00142{bottom:530.146667pt;}
.y5_c00142{bottom:552.280000pt;}
.y4_c00142{bottom:573.613333pt;}
.y3_c00142{bottom:595.213333pt;}
.y2_c00142{bottom:617.080000pt;}
.y1_c00142{bottom:639.346667pt;}
.h4_c00142{height:11.733399pt;}
.h5_c00142{height:38.937500pt;}
.h2_c00142{height:73.281250pt;}
.h3_c00142{height:81.031250pt;}
.h0_c00142{height:691.933333pt;}
.h1_c00142{height:692.000000pt;}
.w2_c00142{width:93.222667pt;}
.w1_c00142{width:464.000000pt;}
.w0_c00142{width:464.133333pt;}
.x0_c00142{left:0.000000pt;}
.x9_c00142{left:23.733333pt;}
.x4_c00142{left:25.600000pt;}
.x6_c00142{left:27.066667pt;}
.x5_c00142{left:28.000000pt;}
.x3_c00142{left:29.733333pt;}
.x2_c00142{left:30.933333pt;}
.x8_c00142{left:64.533333pt;}
.x7_c00142{left:77.200000pt;}
.x1_c00142{left:137.733333pt;}
.xb_c00142{left:189.234904pt;}
.xa_c00142{left:236.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_673894e7977e0f26066ffa56.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.480469;font-style:normal;font-weight:normal;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_6b31ed5dba22b87e8995dd34.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:1.568848;font-style:normal;font-weight:normal;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_5ef5d41da4929eef7fc2b4ac.woff2')format("woff");}.ff3_c00143{font-family:ff3_c00143;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00143{font-family:ff4_c00143;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00143{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00143{vertical-align:0.000000px;}
.ls5_c00143{letter-spacing:-3.000000px;}
.ls3_c00143{letter-spacing:0.000000px;}
.ls1_c00143{letter-spacing:1.188000px;}
.ls4_c00143{letter-spacing:3.000000px;}
.ls0_c00143{letter-spacing:5.616000px;}
.ls6_c00143{letter-spacing:6.000000px;}
.ls2_c00143{letter-spacing:8.988000px;}
.sc__c00143{text-shadow:none;}
.sc0_c00143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00143{-webkit-text-stroke:0px transparent;}
.sc0_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00143{word-spacing:-27.051000px;}
.ws0_c00143{word-spacing:-20.352000px;}
.ws2_c00143{word-spacing:0.000000px;}
._16_c00143{margin-left:-14.832000px;}
._f_c00143{margin-left:-9.588000px;}
._12_c00143{margin-left:-7.932000px;}
._11_c00143{margin-left:-6.924000px;}
._d_c00143{margin-left:-5.616000px;}
._e_c00143{margin-left:-4.608000px;}
._4_c00143{margin-left:-3.300000px;}
._b_c00143{margin-left:-2.160000px;}
._9_c00143{margin-left:-1.092000px;}
._7_c00143{width:1.800000px;}
._8_c00143{width:2.880000px;}
._a_c00143{width:3.960000px;}
._2_c00143{width:5.760000px;}
._1_c00143{width:6.780000px;}
._c_c00143{width:8.052000px;}
._10_c00143{width:9.360000px;}
._5_c00143{width:10.560000px;}
._3_c00143{width:12.480000px;}
._14_c00143{width:13.848000px;}
._15_c00143{width:15.120000px;}
._0_c00143{width:17.160000px;}
._6_c00143{width:19.320000px;}
._13_c00143{width:25.272000px;}
.fc2_c00143{color:transparent;}
.fc1_c00143{color:rgb(128,128,128);}
.fc0_c00143{color:rgb(0,0,0);}
.fs4_c00143{font-size:48.000000px;}
.fs0_c00143{font-size:60.000000px;}
.fs2_c00143{font-size:63.000000px;}
.fs3_c00143{font-size:69.000000px;}
.fs1_c00143{font-size:72.000000px;}
.y0_c00143{bottom:0.000000px;}
.y1e_c00143{bottom:3.105000px;}
.y1d_c00143{bottom:7.228363px;}
.y1c_c00143{bottom:54.300000px;}
.y1b_c00143{bottom:81.000000px;}
.y1a_c00143{bottom:106.200000px;}
.y19_c00143{bottom:131.850000px;}
.y18_c00143{bottom:157.500000px;}
.y17_c00143{bottom:183.150000px;}
.y16_c00143{bottom:208.200000px;}
.y15_c00143{bottom:233.400000px;}
.y14_c00143{bottom:258.450000px;}
.y13_c00143{bottom:283.500000px;}
.y12_c00143{bottom:308.700000px;}
.y11_c00143{bottom:333.000000px;}
.y10_c00143{bottom:357.300000px;}
.yf_c00143{bottom:381.300000px;}
.ye_c00143{bottom:406.950000px;}
.yd_c00143{bottom:431.250000px;}
.yc_c00143{bottom:456.000000px;}
.yb_c00143{bottom:480.300000px;}
.ya_c00143{bottom:505.200000px;}
.y9_c00143{bottom:530.250000px;}
.y8_c00143{bottom:554.850000px;}
.y7_c00143{bottom:579.750000px;}
.y6_c00143{bottom:603.900000px;}
.y5_c00143{bottom:628.500000px;}
.y4_c00143{bottom:653.100000px;}
.y3_c00143{bottom:677.700000px;}
.y2_c00143{bottom:702.600000px;}
.y1_c00143{bottom:727.950000px;}
.h4_c00143{height:13.200074px;}
.h5_c00143{height:43.804688px;}
.h2_c00143{height:75.966797px;}
.h3_c00143{height:91.160156px;}
.h0_c00143{height:791.100000px;}
.h1_c00143{height:791.250000px;}
.w2_c00143{width:104.875500px;}
.w1_c00143{width:528.750000px;}
.w0_c00143{width:528.900000px;}
.x0_c00143{left:0.000000px;}
.x5_c00143{left:127.950000px;}
.x4_c00143{left:129.000000px;}
.x2_c00143{left:130.950000px;}
.x3_c00143{left:132.300000px;}
.x6_c00143{left:133.650000px;}
.x7_c00143{left:216.264267px;}
.x1_c00143{left:247.050000px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls5_c00143{letter-spacing:-2.666667pt;}
.ls3_c00143{letter-spacing:0.000000pt;}
.ls1_c00143{letter-spacing:1.056000pt;}
.ls4_c00143{letter-spacing:2.666667pt;}
.ls0_c00143{letter-spacing:4.992000pt;}
.ls6_c00143{letter-spacing:5.333333pt;}
.ls2_c00143{letter-spacing:7.989333pt;}
.ws1_c00143{word-spacing:-24.045333pt;}
.ws0_c00143{word-spacing:-18.090667pt;}
.ws2_c00143{word-spacing:0.000000pt;}
._16_c00143{margin-left:-13.184000pt;}
._f_c00143{margin-left:-8.522667pt;}
._12_c00143{margin-left:-7.050667pt;}
._11_c00143{margin-left:-6.154667pt;}
._d_c00143{margin-left:-4.992000pt;}
._e_c00143{margin-left:-4.096000pt;}
._4_c00143{margin-left:-2.933333pt;}
._b_c00143{margin-left:-1.920000pt;}
._9_c00143{margin-left:-0.970667pt;}
._7_c00143{width:1.600000pt;}
._8_c00143{width:2.560000pt;}
._a_c00143{width:3.520000pt;}
._2_c00143{width:5.120000pt;}
._1_c00143{width:6.026667pt;}
._c_c00143{width:7.157333pt;}
._10_c00143{width:8.320000pt;}
._5_c00143{width:9.386667pt;}
._3_c00143{width:11.093333pt;}
._14_c00143{width:12.309333pt;}
._15_c00143{width:13.440000pt;}
._0_c00143{width:15.253333pt;}
._6_c00143{width:17.173333pt;}
._13_c00143{width:22.464000pt;}
.fs4_c00143{font-size:42.666667pt;}
.fs0_c00143{font-size:53.333333pt;}
.fs2_c00143{font-size:56.000000pt;}
.fs3_c00143{font-size:61.333333pt;}
.fs1_c00143{font-size:64.000000pt;}
.y0_c00143{bottom:0.000000pt;}
.y1e_c00143{bottom:2.760000pt;}
.y1d_c00143{bottom:6.425212pt;}
.y1c_c00143{bottom:48.266667pt;}
.y1b_c00143{bottom:72.000000pt;}
.y1a_c00143{bottom:94.400000pt;}
.y19_c00143{bottom:117.200000pt;}
.y18_c00143{bottom:140.000000pt;}
.y17_c00143{bottom:162.800000pt;}
.y16_c00143{bottom:185.066667pt;}
.y15_c00143{bottom:207.466667pt;}
.y14_c00143{bottom:229.733333pt;}
.y13_c00143{bottom:252.000000pt;}
.y12_c00143{bottom:274.400000pt;}
.y11_c00143{bottom:296.000000pt;}
.y10_c00143{bottom:317.600000pt;}
.yf_c00143{bottom:338.933333pt;}
.ye_c00143{bottom:361.733333pt;}
.yd_c00143{bottom:383.333333pt;}
.yc_c00143{bottom:405.333333pt;}
.yb_c00143{bottom:426.933333pt;}
.ya_c00143{bottom:449.066667pt;}
.y9_c00143{bottom:471.333333pt;}
.y8_c00143{bottom:493.200000pt;}
.y7_c00143{bottom:515.333333pt;}
.y6_c00143{bottom:536.800000pt;}
.y5_c00143{bottom:558.666667pt;}
.y4_c00143{bottom:580.533333pt;}
.y3_c00143{bottom:602.400000pt;}
.y2_c00143{bottom:624.533333pt;}
.y1_c00143{bottom:647.066667pt;}
.h4_c00143{height:11.733399pt;}
.h5_c00143{height:38.937500pt;}
.h2_c00143{height:67.526042pt;}
.h3_c00143{height:81.031250pt;}
.h0_c00143{height:703.200000pt;}
.h1_c00143{height:703.333333pt;}
.w2_c00143{width:93.222667pt;}
.w1_c00143{width:470.000000pt;}
.w0_c00143{width:470.133333pt;}
.x0_c00143{left:0.000000pt;}
.x5_c00143{left:113.733333pt;}
.x4_c00143{left:114.666667pt;}
.x2_c00143{left:116.400000pt;}
.x3_c00143{left:117.600000pt;}
.x6_c00143{left:118.800000pt;}
.x7_c00143{left:192.234904pt;}
.x1_c00143{left:219.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_183cef6b286077473709eb7d.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00144;src:url('chunks/assets/font_b6e5c2a1793183908d6a97e9.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00144{font-family:ff3_c00144;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00144{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00144{vertical-align:0.000000px;}
.ls2_c00144{letter-spacing:0.000000px;}
.ls1_c00144{letter-spacing:3.000000px;}
.ls0_c00144{letter-spacing:10.200000px;}
.ls3_c00144{letter-spacing:21.000000px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00144{word-spacing:-38.352000px;}
.ws1_c00144{word-spacing:0.000000px;}
._5_c00144{margin-left:-20.076000px;}
._d_c00144{margin-left:-18.036000px;}
._15_c00144{margin-left:-16.644000px;}
._14_c00144{margin-left:-15.324000px;}
._13_c00144{margin-left:-11.016000px;}
._17_c00144{margin-left:-9.288000px;}
._f_c00144{margin-left:-7.776000px;}
._10_c00144{margin-left:-6.480000px;}
._e_c00144{margin-left:-5.328000px;}
._9_c00144{margin-left:-4.176000px;}
._8_c00144{margin-left:-2.952000px;}
._a_c00144{margin-left:-1.080000px;}
._7_c00144{width:1.296000px;}
._6_c00144{width:2.664000px;}
._b_c00144{width:4.104000px;}
._2_c00144{width:5.460000px;}
._11_c00144{width:6.852000px;}
._1_c00144{width:8.316000px;}
._3_c00144{width:9.324000px;}
._16_c00144{width:10.656000px;}
._c_c00144{width:12.240000px;}
._0_c00144{width:13.440000px;}
._12_c00144{width:16.344000px;}
._18_c00144{width:25.668000px;}
._19_c00144{width:202.248000px;}
._4_c00144{width:408.480000px;}
.fc2_c00144{color:transparent;}
.fc1_c00144{color:rgb(128,128,128);}
.fc0_c00144{color:rgb(0,0,0);}
.fs2_c00144{font-size:48.000000px;}
.fs1_c00144{font-size:72.000000px;}
.fs0_c00144{font-size:84.000000px;}
.y0_c00144{bottom:0.000000px;}
.y1f_c00144{bottom:3.105000px;}
.y1e_c00144{bottom:7.228355px;}
.y1d_c00144{bottom:56.685000px;}
.y1c_c00144{bottom:82.335000px;}
.y1b_c00144{bottom:108.285000px;}
.y1a_c00144{bottom:132.585000px;}
.y19_c00144{bottom:157.935000px;}
.y18_c00144{bottom:182.235000px;}
.y17_c00144{bottom:207.885000px;}
.y16_c00144{bottom:232.185000px;}
.y15_c00144{bottom:256.785000px;}
.y14_c00144{bottom:281.685000px;}
.y13_c00144{bottom:305.085000px;}
.y12_c00144{bottom:328.335000px;}
.y11_c00144{bottom:351.285000px;}
.y10_c00144{bottom:375.585000px;}
.yf_c00144{bottom:400.185000px;}
.ye_c00144{bottom:424.935000px;}
.yd_c00144{bottom:449.535000px;}
.yc_c00144{bottom:474.135000px;}
.yb_c00144{bottom:498.735000px;}
.ya_c00144{bottom:523.335000px;}
.y9_c00144{bottom:547.635000px;}
.y8_c00144{bottom:572.685000px;}
.y7_c00144{bottom:596.985000px;}
.y6_c00144{bottom:621.585000px;}
.y5_c00144{bottom:645.885000px;}
.y4_c00144{bottom:670.935000px;}
.y3_c00144{bottom:694.935000px;}
.y2_c00144{bottom:719.235000px;}
.y1_c00144{bottom:744.435000px;}
.h4_c00144{height:13.200074px;}
.h5_c00144{height:43.804688px;}
.h2_c00144{height:82.400391px;}
.h3_c00144{height:91.160156px;}
.h0_c00144{height:795.675000px;}
.h1_c00144{height:795.750000px;}
.w2_c00144{width:104.875500px;}
.w0_c00144{width:519.450000px;}
.w1_c00144{width:519.750000px;}
.x0_c00144{left:0.000000px;}
.x7_c00144{left:20.550000px;}
.x6_c00144{left:22.350000px;}
.x5_c00144{left:24.000000px;}
.x4_c00144{left:25.050000px;}
.x3_c00144{left:26.700000px;}
.x2_c00144{left:28.050000px;}
.x1_c00144{left:136.650000px;}
.x9_c00144{left:211.539230px;}
.x8_c00144{left:247.800000px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls2_c00144{letter-spacing:0.000000pt;}
.ls1_c00144{letter-spacing:2.666667pt;}
.ls0_c00144{letter-spacing:9.066667pt;}
.ls3_c00144{letter-spacing:18.666667pt;}
.ws0_c00144{word-spacing:-34.090667pt;}
.ws1_c00144{word-spacing:0.000000pt;}
._5_c00144{margin-left:-17.845333pt;}
._d_c00144{margin-left:-16.032000pt;}
._15_c00144{margin-left:-14.794667pt;}
._14_c00144{margin-left:-13.621333pt;}
._13_c00144{margin-left:-9.792000pt;}
._17_c00144{margin-left:-8.256000pt;}
._f_c00144{margin-left:-6.912000pt;}
._10_c00144{margin-left:-5.760000pt;}
._e_c00144{margin-left:-4.736000pt;}
._9_c00144{margin-left:-3.712000pt;}
._8_c00144{margin-left:-2.624000pt;}
._a_c00144{margin-left:-0.960000pt;}
._7_c00144{width:1.152000pt;}
._6_c00144{width:2.368000pt;}
._b_c00144{width:3.648000pt;}
._2_c00144{width:4.853333pt;}
._11_c00144{width:6.090667pt;}
._1_c00144{width:7.392000pt;}
._3_c00144{width:8.288000pt;}
._16_c00144{width:9.472000pt;}
._c_c00144{width:10.880000pt;}
._0_c00144{width:11.946667pt;}
._12_c00144{width:14.528000pt;}
._18_c00144{width:22.816000pt;}
._19_c00144{width:179.776000pt;}
._4_c00144{width:363.093333pt;}
.fs2_c00144{font-size:42.666667pt;}
.fs1_c00144{font-size:64.000000pt;}
.fs0_c00144{font-size:74.666667pt;}
.y0_c00144{bottom:0.000000pt;}
.y1f_c00144{bottom:2.760000pt;}
.y1e_c00144{bottom:6.425204pt;}
.y1d_c00144{bottom:50.386667pt;}
.y1c_c00144{bottom:73.186667pt;}
.y1b_c00144{bottom:96.253333pt;}
.y1a_c00144{bottom:117.853333pt;}
.y19_c00144{bottom:140.386667pt;}
.y18_c00144{bottom:161.986667pt;}
.y17_c00144{bottom:184.786667pt;}
.y16_c00144{bottom:206.386667pt;}
.y15_c00144{bottom:228.253333pt;}
.y14_c00144{bottom:250.386667pt;}
.y13_c00144{bottom:271.186667pt;}
.y12_c00144{bottom:291.853333pt;}
.y11_c00144{bottom:312.253333pt;}
.y10_c00144{bottom:333.853333pt;}
.yf_c00144{bottom:355.720000pt;}
.ye_c00144{bottom:377.720000pt;}
.yd_c00144{bottom:399.586667pt;}
.yc_c00144{bottom:421.453333pt;}
.yb_c00144{bottom:443.320000pt;}
.ya_c00144{bottom:465.186667pt;}
.y9_c00144{bottom:486.786667pt;}
.y8_c00144{bottom:509.053333pt;}
.y7_c00144{bottom:530.653333pt;}
.y6_c00144{bottom:552.520000pt;}
.y5_c00144{bottom:574.120000pt;}
.y4_c00144{bottom:596.386667pt;}
.y3_c00144{bottom:617.720000pt;}
.y2_c00144{bottom:639.320000pt;}
.y1_c00144{bottom:661.720000pt;}
.h4_c00144{height:11.733399pt;}
.h5_c00144{height:38.937500pt;}
.h2_c00144{height:73.244792pt;}
.h3_c00144{height:81.031250pt;}
.h0_c00144{height:707.266667pt;}
.h1_c00144{height:707.333333pt;}
.w2_c00144{width:93.222667pt;}
.w0_c00144{width:461.733333pt;}
.w1_c00144{width:462.000000pt;}
.x0_c00144{left:0.000000pt;}
.x7_c00144{left:18.266667pt;}
.x6_c00144{left:19.866667pt;}
.x5_c00144{left:21.333333pt;}
.x4_c00144{left:22.266667pt;}
.x3_c00144{left:23.733333pt;}
.x2_c00144{left:24.933333pt;}
.x1_c00144{left:121.466667pt;}
.x9_c00144{left:188.034871pt;}
.x8_c00144{left:220.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbefe73497a91d1b72e45bd7.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.568848;font-style:normal;font-weight:normal;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_7f85e164e7972e7426a96307.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00145{font-family:ff3_c00145;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00145{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00145{vertical-align:0.000000px;}
.ls2_c00145{letter-spacing:-9.000000px;}
.ls4_c00145{letter-spacing:-3.000000px;}
.ls3_c00145{letter-spacing:0.000000px;}
.ls0_c00145{letter-spacing:3.000000px;}
.ls1_c00145{letter-spacing:21.417000px;}
.sc__c00145{text-shadow:none;}
.sc0_c00145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00145{-webkit-text-stroke:0px transparent;}
.sc0_c00145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00145{word-spacing:-34.341000px;}
.ws2_c00145{word-spacing:-33.192000px;}
.ws0_c00145{word-spacing:-12.540000px;}
.ws3_c00145{word-spacing:0.000000px;}
._12_c00145{margin-left:-10.980000px;}
._11_c00145{margin-left:-6.948000px;}
._e_c00145{margin-left:-4.878000px;}
._a_c00145{margin-left:-3.150000px;}
._d_c00145{margin-left:-1.800000px;}
._7_c00145{width:1.764000px;}
._0_c00145{width:2.790000px;}
._6_c00145{width:3.870000px;}
._8_c00145{width:5.724000px;}
._3_c00145{width:7.680000px;}
._5_c00145{width:8.940000px;}
._f_c00145{width:10.530000px;}
._9_c00145{width:11.646000px;}
._4_c00145{width:13.500000px;}
._c_c00145{width:15.804000px;}
._b_c00145{width:16.920000px;}
._2_c00145{width:19.560000px;}
._10_c00145{width:36.813000px;}
._1_c00145{width:64.602000px;}
.fc2_c00145{color:transparent;}
.fc1_c00145{color:rgb(128,128,128);}
.fc0_c00145{color:rgb(0,0,0);}
.fs6_c00145{font-size:48.000000px;}
.fs1_c00145{font-size:60.000000px;}
.fs4_c00145{font-size:63.000000px;}
.fs3_c00145{font-size:69.000000px;}
.fs2_c00145{font-size:72.000000px;}
.fs5_c00145{font-size:81.000000px;}
.fs0_c00145{font-size:93.000000px;}
.y0_c00145{bottom:0.000000px;}
.y1f_c00145{bottom:3.105000px;}
.y1e_c00145{bottom:7.228355px;}
.y1d_c00145{bottom:49.185000px;}
.y1c_c00145{bottom:71.535000px;}
.y1b_c00145{bottom:96.885000px;}
.y1a_c00145{bottom:122.085000px;}
.y19_c00145{bottom:147.135000px;}
.y18_c00145{bottom:172.485000px;}
.y17_c00145{bottom:197.385000px;}
.y16_c00145{bottom:222.435000px;}
.y15_c00145{bottom:247.635000px;}
.y14_c00145{bottom:273.285000px;}
.y13_c00145{bottom:297.285000px;}
.y12_c00145{bottom:323.535000px;}
.y11_c00145{bottom:346.635000px;}
.y10_c00145{bottom:371.235000px;}
.yf_c00145{bottom:396.585000px;}
.ye_c00145{bottom:422.235000px;}
.yd_c00145{bottom:445.785000px;}
.yc_c00145{bottom:469.785000px;}
.yb_c00145{bottom:493.785000px;}
.ya_c00145{bottom:518.985000px;}
.y9_c00145{bottom:543.735000px;}
.y8_c00145{bottom:568.935000px;}
.y7_c00145{bottom:593.235000px;}
.y6_c00145{bottom:617.985000px;}
.y5_c00145{bottom:642.285000px;}
.y4_c00145{bottom:666.885000px;}
.y3_c00145{bottom:691.785000px;}
.y2_c00145{bottom:716.535000px;}
.y1_c00145{bottom:742.185000px;}
.h5_c00145{height:13.200074px;}
.h6_c00145{height:43.804688px;}
.h3_c00145{height:91.160156px;}
.h4_c00145{height:94.803223px;}
.h2_c00145{height:117.748535px;}
.h1_c00145{height:794.250000px;}
.h0_c00145{height:794.325000px;}
.w2_c00145{width:104.875500px;}
.w1_c00145{width:532.500000px;}
.w0_c00145{width:532.725000px;}
.x0_c00145{left:0.000000px;}
.x2_c00145{left:123.150000px;}
.x3_c00145{left:124.200000px;}
.x4_c00145{left:126.150000px;}
.x5_c00145{left:127.950000px;}
.x6_c00145{left:129.150000px;}
.x7_c00145{left:130.200000px;}
.x8_c00145{left:131.550000px;}
.x9_c00145{left:132.600000px;}
.xa_c00145{left:133.950000px;}
.xb_c00145{left:135.600000px;}
.xc_c00145{left:136.650000px;}
.x1_c00145{left:212.250000px;}
.xe_c00145{left:218.176758px;}
.xd_c00145{left:493.650000px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls2_c00145{letter-spacing:-8.000000pt;}
.ls4_c00145{letter-spacing:-2.666667pt;}
.ls3_c00145{letter-spacing:0.000000pt;}
.ls0_c00145{letter-spacing:2.666667pt;}
.ls1_c00145{letter-spacing:19.037333pt;}
.ws1_c00145{word-spacing:-30.525333pt;}
.ws2_c00145{word-spacing:-29.504000pt;}
.ws0_c00145{word-spacing:-11.146667pt;}
.ws3_c00145{word-spacing:0.000000pt;}
._12_c00145{margin-left:-9.760000pt;}
._11_c00145{margin-left:-6.176000pt;}
._e_c00145{margin-left:-4.336000pt;}
._a_c00145{margin-left:-2.800000pt;}
._d_c00145{margin-left:-1.600000pt;}
._7_c00145{width:1.568000pt;}
._0_c00145{width:2.480000pt;}
._6_c00145{width:3.440000pt;}
._8_c00145{width:5.088000pt;}
._3_c00145{width:6.826667pt;}
._5_c00145{width:7.946667pt;}
._f_c00145{width:9.360000pt;}
._9_c00145{width:10.352000pt;}
._4_c00145{width:12.000000pt;}
._c_c00145{width:14.048000pt;}
._b_c00145{width:15.040000pt;}
._2_c00145{width:17.386667pt;}
._10_c00145{width:32.722667pt;}
._1_c00145{width:57.424000pt;}
.fs6_c00145{font-size:42.666667pt;}
.fs1_c00145{font-size:53.333333pt;}
.fs4_c00145{font-size:56.000000pt;}
.fs3_c00145{font-size:61.333333pt;}
.fs2_c00145{font-size:64.000000pt;}
.fs5_c00145{font-size:72.000000pt;}
.fs0_c00145{font-size:82.666667pt;}
.y0_c00145{bottom:0.000000pt;}
.y1f_c00145{bottom:2.760000pt;}
.y1e_c00145{bottom:6.425204pt;}
.y1d_c00145{bottom:43.720000pt;}
.y1c_c00145{bottom:63.586667pt;}
.y1b_c00145{bottom:86.120000pt;}
.y1a_c00145{bottom:108.520000pt;}
.y19_c00145{bottom:130.786667pt;}
.y18_c00145{bottom:153.320000pt;}
.y17_c00145{bottom:175.453333pt;}
.y16_c00145{bottom:197.720000pt;}
.y15_c00145{bottom:220.120000pt;}
.y14_c00145{bottom:242.920000pt;}
.y13_c00145{bottom:264.253333pt;}
.y12_c00145{bottom:287.586667pt;}
.y11_c00145{bottom:308.120000pt;}
.y10_c00145{bottom:329.986667pt;}
.yf_c00145{bottom:352.520000pt;}
.ye_c00145{bottom:375.320000pt;}
.yd_c00145{bottom:396.253333pt;}
.yc_c00145{bottom:417.586667pt;}
.yb_c00145{bottom:438.920000pt;}
.ya_c00145{bottom:461.320000pt;}
.y9_c00145{bottom:483.320000pt;}
.y8_c00145{bottom:505.720000pt;}
.y7_c00145{bottom:527.320000pt;}
.y6_c00145{bottom:549.320000pt;}
.y5_c00145{bottom:570.920000pt;}
.y4_c00145{bottom:592.786667pt;}
.y3_c00145{bottom:614.920000pt;}
.y2_c00145{bottom:636.920000pt;}
.y1_c00145{bottom:659.720000pt;}
.h5_c00145{height:11.733399pt;}
.h6_c00145{height:38.937500pt;}
.h3_c00145{height:81.031250pt;}
.h4_c00145{height:84.269531pt;}
.h2_c00145{height:104.665365pt;}
.h1_c00145{height:706.000000pt;}
.h0_c00145{height:706.066667pt;}
.w2_c00145{width:93.222667pt;}
.w1_c00145{width:473.333333pt;}
.w0_c00145{width:473.533333pt;}
.x0_c00145{left:0.000000pt;}
.x2_c00145{left:109.466667pt;}
.x3_c00145{left:110.400000pt;}
.x4_c00145{left:112.133333pt;}
.x5_c00145{left:113.733333pt;}
.x6_c00145{left:114.800000pt;}
.x7_c00145{left:115.733333pt;}
.x8_c00145{left:116.933333pt;}
.x9_c00145{left:117.866667pt;}
.xa_c00145{left:119.066667pt;}
.xb_c00145{left:120.533333pt;}
.xc_c00145{left:121.466667pt;}
.x1_c00145{left:188.666667pt;}
.xe_c00145{left:193.934896pt;}
.xd_c00145{left:438.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1be48138c08c27e87db7345a.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00146;src:url('chunks/assets/font_bf8e4ad2f5cbd9007402f7de.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:1.568848;font-style:normal;font-weight:normal;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_9f3e9fb52289feefae0e830d.woff2')format("woff");}.ff3_c00146{font-family:ff3_c00146;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00146{font-family:ff4_c00146;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00146{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00146{vertical-align:0.000000px;}
.ls3_c00146{letter-spacing:-3.000000px;}
.ls2_c00146{letter-spacing:0.000000px;}
.ls0_c00146{letter-spacing:1.788000px;}
.ls1_c00146{letter-spacing:3.000000px;}
.sc__c00146{text-shadow:none;}
.sc0_c00146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00146{-webkit-text-stroke:0px transparent;}
.sc0_c00146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00146{word-spacing:-27.051000px;}
.ws1_c00146{word-spacing:-20.352000px;}
.ws2_c00146{word-spacing:0.000000px;}
._1a_c00146{margin-left:-18.504000px;}
._13_c00146{margin-left:-12.672000px;}
._16_c00146{margin-left:-9.528000px;}
._d_c00146{margin-left:-8.496000px;}
._e_c00146{margin-left:-7.248000px;}
._7_c00146{margin-left:-5.976000px;}
._11_c00146{margin-left:-4.632000px;}
._6_c00146{margin-left:-3.612000px;}
._8_c00146{margin-left:-2.280000px;}
._9_c00146{margin-left:-1.032000px;}
._3_c00146{width:1.344000px;}
._2_c00146{width:3.108000px;}
._1_c00146{width:4.704000px;}
._b_c00146{width:6.000000px;}
._10_c00146{width:7.272000px;}
._0_c00146{width:8.316000px;}
._15_c00146{width:9.768000px;}
._14_c00146{width:10.872000px;}
._c_c00146{width:11.904000px;}
._a_c00146{width:13.020000px;}
._12_c00146{width:15.000000px;}
._f_c00146{width:16.152000px;}
._5_c00146{width:28.560000px;}
._19_c00146{width:30.852000px;}
._17_c00146{width:90.756000px;}
._18_c00146{width:113.040000px;}
._1b_c00146{width:202.248000px;}
._4_c00146{width:375.732000px;}
.fc2_c00146{color:transparent;}
.fc1_c00146{color:rgb(128,128,128);}
.fc0_c00146{color:rgb(0,0,0);}
.fs3_c00146{font-size:48.000000px;}
.fs2_c00146{font-size:63.000000px;}
.fs1_c00146{font-size:72.000000px;}
.fs0_c00146{font-size:84.000000px;}
.y0_c00146{bottom:0.000000px;}
.y1f_c00146{bottom:3.105000px;}
.y1e_c00146{bottom:7.228357px;}
.y1d_c00146{bottom:38.880000px;}
.y1c_c00146{bottom:65.430000px;}
.y1b_c00146{bottom:91.080000px;}
.y1a_c00146{bottom:115.830000px;}
.y19_c00146{bottom:140.730000px;}
.y18_c00146{bottom:165.480000px;}
.y17_c00146{bottom:190.980000px;}
.y16_c00146{bottom:215.430000px;}
.y15_c00146{bottom:239.730000px;}
.y14_c00146{bottom:264.630000px;}
.y13_c00146{bottom:287.880000px;}
.y12_c00146{bottom:311.280000px;}
.y11_c00146{bottom:334.830000px;}
.y10_c00146{bottom:359.430000px;}
.yf_c00146{bottom:384.180000px;}
.ye_c00146{bottom:408.780000px;}
.yd_c00146{bottom:433.680000px;}
.yc_c00146{bottom:457.980000px;}
.yb_c00146{bottom:482.730000px;}
.ya_c00146{bottom:507.030000px;}
.y9_c00146{bottom:531.930000px;}
.y8_c00146{bottom:556.230000px;}
.y7_c00146{bottom:581.280000px;}
.y6_c00146{bottom:605.430000px;}
.y5_c00146{bottom:629.880000px;}
.y4_c00146{bottom:654.180000px;}
.y3_c00146{bottom:679.080000px;}
.y2_c00146{bottom:703.680000px;}
.y1_c00146{bottom:728.430000px;}
.h4_c00146{height:13.200074px;}
.h5_c00146{height:43.804688px;}
.h2_c00146{height:82.400391px;}
.h3_c00146{height:91.160156px;}
.h1_c00146{height:777.750000px;}
.h0_c00146{height:777.900000px;}
.w2_c00146{width:104.875500px;}
.w0_c00146{width:520.275000px;}
.w1_c00146{width:520.500000px;}
.x0_c00146{left:0.000000px;}
.x3_c00146{left:32.400000px;}
.x4_c00146{left:33.750000px;}
.x5_c00146{left:35.400000px;}
.x6_c00146{left:37.200000px;}
.x7_c00146{left:39.450000px;}
.x9_c00146{left:40.500000px;}
.x8_c00146{left:43.800000px;}
.x2_c00146{left:62.400000px;}
.x1_c00146{left:143.850000px;}
.xb_c00146{left:211.951767px;}
.xa_c00146{left:281.850000px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls3_c00146{letter-spacing:-2.666667pt;}
.ls2_c00146{letter-spacing:0.000000pt;}
.ls0_c00146{letter-spacing:1.589333pt;}
.ls1_c00146{letter-spacing:2.666667pt;}
.ws0_c00146{word-spacing:-24.045333pt;}
.ws1_c00146{word-spacing:-18.090667pt;}
.ws2_c00146{word-spacing:0.000000pt;}
._1a_c00146{margin-left:-16.448000pt;}
._13_c00146{margin-left:-11.264000pt;}
._16_c00146{margin-left:-8.469333pt;}
._d_c00146{margin-left:-7.552000pt;}
._e_c00146{margin-left:-6.442667pt;}
._7_c00146{margin-left:-5.312000pt;}
._11_c00146{margin-left:-4.117333pt;}
._6_c00146{margin-left:-3.210667pt;}
._8_c00146{margin-left:-2.026667pt;}
._9_c00146{margin-left:-0.917333pt;}
._3_c00146{width:1.194667pt;}
._2_c00146{width:2.762667pt;}
._1_c00146{width:4.181333pt;}
._b_c00146{width:5.333333pt;}
._10_c00146{width:6.464000pt;}
._0_c00146{width:7.392000pt;}
._15_c00146{width:8.682667pt;}
._14_c00146{width:9.664000pt;}
._c_c00146{width:10.581333pt;}
._a_c00146{width:11.573333pt;}
._12_c00146{width:13.333333pt;}
._f_c00146{width:14.357333pt;}
._5_c00146{width:25.386667pt;}
._19_c00146{width:27.424000pt;}
._17_c00146{width:80.672000pt;}
._18_c00146{width:100.480000pt;}
._1b_c00146{width:179.776000pt;}
._4_c00146{width:333.984000pt;}
.fs3_c00146{font-size:42.666667pt;}
.fs2_c00146{font-size:56.000000pt;}
.fs1_c00146{font-size:64.000000pt;}
.fs0_c00146{font-size:74.666667pt;}
.y0_c00146{bottom:0.000000pt;}
.y1f_c00146{bottom:2.760000pt;}
.y1e_c00146{bottom:6.425206pt;}
.y1d_c00146{bottom:34.560000pt;}
.y1c_c00146{bottom:58.160000pt;}
.y1b_c00146{bottom:80.960000pt;}
.y1a_c00146{bottom:102.960000pt;}
.y19_c00146{bottom:125.093333pt;}
.y18_c00146{bottom:147.093333pt;}
.y17_c00146{bottom:169.760000pt;}
.y16_c00146{bottom:191.493333pt;}
.y15_c00146{bottom:213.093333pt;}
.y14_c00146{bottom:235.226667pt;}
.y13_c00146{bottom:255.893333pt;}
.y12_c00146{bottom:276.693333pt;}
.y11_c00146{bottom:297.626667pt;}
.y10_c00146{bottom:319.493333pt;}
.yf_c00146{bottom:341.493333pt;}
.ye_c00146{bottom:363.360000pt;}
.yd_c00146{bottom:385.493333pt;}
.yc_c00146{bottom:407.093333pt;}
.yb_c00146{bottom:429.093333pt;}
.ya_c00146{bottom:450.693333pt;}
.y9_c00146{bottom:472.826667pt;}
.y8_c00146{bottom:494.426667pt;}
.y7_c00146{bottom:516.693333pt;}
.y6_c00146{bottom:538.160000pt;}
.y5_c00146{bottom:559.893333pt;}
.y4_c00146{bottom:581.493333pt;}
.y3_c00146{bottom:603.626667pt;}
.y2_c00146{bottom:625.493333pt;}
.y1_c00146{bottom:647.493333pt;}
.h4_c00146{height:11.733399pt;}
.h5_c00146{height:38.937500pt;}
.h2_c00146{height:73.244792pt;}
.h3_c00146{height:81.031250pt;}
.h1_c00146{height:691.333333pt;}
.h0_c00146{height:691.466667pt;}
.w2_c00146{width:93.222667pt;}
.w0_c00146{width:462.466667pt;}
.w1_c00146{width:462.666667pt;}
.x0_c00146{left:0.000000pt;}
.x3_c00146{left:28.800000pt;}
.x4_c00146{left:30.000000pt;}
.x5_c00146{left:31.466667pt;}
.x6_c00146{left:33.066667pt;}
.x7_c00146{left:35.066667pt;}
.x9_c00146{left:36.000000pt;}
.x8_c00146{left:38.933333pt;}
.x2_c00146{left:55.466667pt;}
.x1_c00146{left:127.866667pt;}
.xb_c00146{left:188.401571pt;}
.xa_c00146{left:250.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d6f434aa9fa468630d905ad8.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.480469;font-style:normal;font-weight:normal;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_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00147;src:url('chunks/assets/font_6379d814c5f5aa7a48ce4414.woff2')format("woff");}.ff3_c00147{font-family:ff3_c00147;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00147{font-family:ff4_c00147;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00147{vertical-align:0.000000px;}
.ls1_c00147{letter-spacing:0.000000px;}
.ls0_c00147{letter-spacing:3.000000px;}
.ls2_c00147{letter-spacing:9.000000px;}
.sc__c00147{text-shadow:none;}
.sc0_c00147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00147{-webkit-text-stroke:0px transparent;}
.sc0_c00147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00147{word-spacing:-48.000000px;}
.ws0_c00147{word-spacing:-33.192000px;}
.ws2_c00147{word-spacing:-20.352000px;}
.ws3_c00147{word-spacing:0.000000px;}
._11_c00147{margin-left:-18.000000px;}
._2_c00147{margin-left:-11.808000px;}
._a_c00147{margin-left:-8.928000px;}
._b_c00147{margin-left:-7.776000px;}
._c_c00147{margin-left:-6.192000px;}
._14_c00147{margin-left:-5.184000px;}
._f_c00147{margin-left:-4.176000px;}
._5_c00147{margin-left:-2.232000px;}
._6_c00147{margin-left:-1.152000px;}
._3_c00147{width:1.728000px;}
._1_c00147{width:3.168000px;}
._0_c00147{width:4.320000px;}
._15_c00147{width:5.328000px;}
._e_c00147{width:6.336000px;}
._10_c00147{width:7.848000px;}
._d_c00147{width:9.072000px;}
._4_c00147{width:10.152000px;}
._8_c00147{width:11.304000px;}
._7_c00147{width:13.248000px;}
._9_c00147{width:14.976000px;}
._12_c00147{width:16.704000px;}
._13_c00147{width:28.656000px;}
.fc2_c00147{color:transparent;}
.fc1_c00147{color:rgb(128,128,128);}
.fc0_c00147{color:rgb(0,0,0);}
.fs2_c00147{font-size:48.000000px;}
.fs0_c00147{font-size:72.000000px;}
.fs1_c00147{font-size:78.000000px;}
.y0_c00147{bottom:0.000000px;}
.y1f_c00147{bottom:3.105000px;}
.y1e_c00147{bottom:7.228371px;}
.y1d_c00147{bottom:44.565000px;}
.y1c_c00147{bottom:67.965000px;}
.y1b_c00147{bottom:94.215000px;}
.y1a_c00147{bottom:118.815000px;}
.y19_c00147{bottom:143.865000px;}
.y18_c00147{bottom:169.215000px;}
.y17_c00147{bottom:194.115000px;}
.y16_c00147{bottom:218.715000px;}
.y15_c00147{bottom:243.765000px;}
.y14_c00147{bottom:268.965000px;}
.y13_c00147{bottom:293.715000px;}
.y12_c00147{bottom:318.915000px;}
.y11_c00147{bottom:342.615000px;}
.y10_c00147{bottom:367.215000px;}
.yf_c00147{bottom:392.265000px;}
.ye_c00147{bottom:416.865000px;}
.yd_c00147{bottom:441.465000px;}
.yc_c00147{bottom:466.515000px;}
.yb_c00147{bottom:490.515000px;}
.ya_c00147{bottom:514.815000px;}
.y9_c00147{bottom:540.315000px;}
.y8_c00147{bottom:564.765000px;}
.y7_c00147{bottom:589.365000px;}
.y6_c00147{bottom:613.665000px;}
.y5_c00147{bottom:638.865000px;}
.y4_c00147{bottom:662.865000px;}
.y3_c00147{bottom:687.615000px;}
.y2_c00147{bottom:712.515000px;}
.y1_c00147{bottom:737.865000px;}
.h3_c00147{height:13.200074px;}
.h4_c00147{height:43.804688px;}
.h2_c00147{height:91.160156px;}
.h0_c00147{height:779.775000px;}
.h1_c00147{height:780.000000px;}
.w2_c00147{width:104.875500px;}
.w0_c00147{width:514.350000px;}
.w1_c00147{width:514.500000px;}
.x0_c00147{left:0.000000px;}
.x8_c00147{left:111.150000px;}
.x7_c00147{left:112.800000px;}
.x6_c00147{left:113.850000px;}
.x4_c00147{left:115.050000px;}
.x5_c00147{left:116.100000px;}
.x2_c00147{left:117.150000px;}
.x3_c00147{left:118.800000px;}
.xa_c00147{left:208.989258px;}
.x1_c00147{left:229.500000px;}
.x9_c00147{left:433.950000px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls1_c00147{letter-spacing:0.000000pt;}
.ls0_c00147{letter-spacing:2.666667pt;}
.ls2_c00147{letter-spacing:8.000000pt;}
.ws1_c00147{word-spacing:-42.666667pt;}
.ws0_c00147{word-spacing:-29.504000pt;}
.ws2_c00147{word-spacing:-18.090667pt;}
.ws3_c00147{word-spacing:0.000000pt;}
._11_c00147{margin-left:-16.000000pt;}
._2_c00147{margin-left:-10.496000pt;}
._a_c00147{margin-left:-7.936000pt;}
._b_c00147{margin-left:-6.912000pt;}
._c_c00147{margin-left:-5.504000pt;}
._14_c00147{margin-left:-4.608000pt;}
._f_c00147{margin-left:-3.712000pt;}
._5_c00147{margin-left:-1.984000pt;}
._6_c00147{margin-left:-1.024000pt;}
._3_c00147{width:1.536000pt;}
._1_c00147{width:2.816000pt;}
._0_c00147{width:3.840000pt;}
._15_c00147{width:4.736000pt;}
._e_c00147{width:5.632000pt;}
._10_c00147{width:6.976000pt;}
._d_c00147{width:8.064000pt;}
._4_c00147{width:9.024000pt;}
._8_c00147{width:10.048000pt;}
._7_c00147{width:11.776000pt;}
._9_c00147{width:13.312000pt;}
._12_c00147{width:14.848000pt;}
._13_c00147{width:25.472000pt;}
.fs2_c00147{font-size:42.666667pt;}
.fs0_c00147{font-size:64.000000pt;}
.fs1_c00147{font-size:69.333333pt;}
.y0_c00147{bottom:0.000000pt;}
.y1f_c00147{bottom:2.760000pt;}
.y1e_c00147{bottom:6.425219pt;}
.y1d_c00147{bottom:39.613333pt;}
.y1c_c00147{bottom:60.413333pt;}
.y1b_c00147{bottom:83.746667pt;}
.y1a_c00147{bottom:105.613333pt;}
.y19_c00147{bottom:127.880000pt;}
.y18_c00147{bottom:150.413333pt;}
.y17_c00147{bottom:172.546667pt;}
.y16_c00147{bottom:194.413333pt;}
.y15_c00147{bottom:216.680000pt;}
.y14_c00147{bottom:239.080000pt;}
.y13_c00147{bottom:261.080000pt;}
.y12_c00147{bottom:283.480000pt;}
.y11_c00147{bottom:304.546667pt;}
.y10_c00147{bottom:326.413333pt;}
.yf_c00147{bottom:348.680000pt;}
.ye_c00147{bottom:370.546667pt;}
.yd_c00147{bottom:392.413333pt;}
.yc_c00147{bottom:414.680000pt;}
.yb_c00147{bottom:436.013333pt;}
.ya_c00147{bottom:457.613333pt;}
.y9_c00147{bottom:480.280000pt;}
.y8_c00147{bottom:502.013333pt;}
.y7_c00147{bottom:523.880000pt;}
.y6_c00147{bottom:545.480000pt;}
.y5_c00147{bottom:567.880000pt;}
.y4_c00147{bottom:589.213333pt;}
.y3_c00147{bottom:611.213333pt;}
.y2_c00147{bottom:633.346667pt;}
.y1_c00147{bottom:655.880000pt;}
.h3_c00147{height:11.733399pt;}
.h4_c00147{height:38.937500pt;}
.h2_c00147{height:81.031250pt;}
.h0_c00147{height:693.133333pt;}
.h1_c00147{height:693.333333pt;}
.w2_c00147{width:93.222667pt;}
.w0_c00147{width:457.200000pt;}
.w1_c00147{width:457.333333pt;}
.x0_c00147{left:0.000000pt;}
.x8_c00147{left:98.800000pt;}
.x7_c00147{left:100.266667pt;}
.x6_c00147{left:101.200000pt;}
.x4_c00147{left:102.266667pt;}
.x5_c00147{left:103.200000pt;}
.x2_c00147{left:104.133333pt;}
.x3_c00147{left:105.600000pt;}
.xa_c00147{left:185.768229pt;}
.x1_c00147{left:204.000000pt;}
.x9_c00147{left:385.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a52a655e163620457e0d359a.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00148;src:url('chunks/assets/font_397ace965f610525129d9d6c.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:1.568848;font-style:normal;font-weight:normal;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_e7a9b5f27260b1c8d1e717c4.woff2')format("woff");}.ff3_c00148{font-family:ff3_c00148;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00148;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00148{font-family:ff4_c00148;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00148{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00148{vertical-align:0.000000px;}
.ls2_c00148{letter-spacing:0.000000px;}
.ls3_c00148{letter-spacing:3.000000px;}
.ls0_c00148{letter-spacing:3.600000px;}
.ls1_c00148{letter-spacing:40.800000px;}
.sc__c00148{text-shadow:none;}
.sc0_c00148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00148{-webkit-text-stroke:0px transparent;}
.sc0_c00148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00148{word-spacing:-21.303000px;}
.ws2_c00148{word-spacing:0.000000px;}
.ws1_c00148{word-spacing:11.316000px;}
._15_c00148{margin-left:-12.384000px;}
._10_c00148{margin-left:-7.272000px;}
._c_c00148{margin-left:-6.120000px;}
._d_c00148{margin-left:-5.088000px;}
._4_c00148{margin-left:-3.612000px;}
._e_c00148{margin-left:-2.436000px;}
._b_c00148{margin-left:-1.008000px;}
._11_c00148{width:1.008000px;}
._8_c00148{width:2.016000px;}
._6_c00148{width:3.948000px;}
._2_c00148{width:5.460000px;}
._5_c00148{width:7.224000px;}
._1_c00148{width:8.568000px;}
._3_c00148{width:9.912000px;}
._a_c00148{width:11.052000px;}
._9_c00148{width:12.600000px;}
._13_c00148{width:13.692000px;}
._0_c00148{width:14.952000px;}
._f_c00148{width:16.716000px;}
._12_c00148{width:19.044000px;}
._14_c00148{width:37.848000px;}
._7_c00148{width:358.008000px;}
.fc2_c00148{color:transparent;}
.fc1_c00148{color:rgb(128,128,128);}
.fc0_c00148{color:rgb(0,0,0);}
.fs3_c00148{font-size:48.000000px;}
.fs1_c00148{font-size:72.000000px;}
.fs2_c00148{font-size:81.000000px;}
.fs0_c00148{font-size:84.000000px;}
.y0_c00148{bottom:0.000000px;}
.y17_c00148{bottom:3.105000px;}
.y16_c00148{bottom:7.228369px;}
.y15_c00148{bottom:230.220000px;}
.y14_c00148{bottom:262.620000px;}
.y13_c00148{bottom:291.570000px;}
.y12_c00148{bottom:315.270000px;}
.y11_c00148{bottom:339.420000px;}
.y10_c00148{bottom:363.870000px;}
.yf_c00148{bottom:387.120000px;}
.ye_c00148{bottom:413.820000px;}
.yd_c00148{bottom:438.120000px;}
.yc_c00148{bottom:463.320000px;}
.yb_c00148{bottom:487.920000px;}
.ya_c00148{bottom:512.670000px;}
.y9_c00148{bottom:536.520000px;}
.y8_c00148{bottom:562.170000px;}
.y7_c00148{bottom:586.620000px;}
.y6_c00148{bottom:611.520000px;}
.y5_c00148{bottom:635.520000px;}
.y4_c00148{bottom:660.720000px;}
.y3_c00148{bottom:685.020000px;}
.y2_c00148{bottom:709.770000px;}
.y1_c00148{bottom:734.670000px;}
.h5_c00148{height:13.200073px;}
.h6_c00148{height:43.804688px;}
.h4_c00148{height:79.497070px;}
.h2_c00148{height:82.400391px;}
.h3_c00148{height:91.160156px;}
.h1_c00148{height:790.500000px;}
.h0_c00148{height:790.800000px;}
.w2_c00148{width:104.875500px;}
.w1_c00148{width:536.250000px;}
.w0_c00148{width:536.475000px;}
.x0_c00148{left:0.000000px;}
.x2_c00148{left:38.550000px;}
.x3_c00148{left:40.500000px;}
.x4_c00148{left:41.550000px;}
.x5_c00148{left:43.200000px;}
.x6_c00148{left:66.900000px;}
.x7_c00148{left:93.450000px;}
.x8_c00148{left:124.500000px;}
.x1_c00148{left:154.350000px;}
.x9_c00148{left:159.000000px;}
.xa_c00148{left:220.050000px;}
.xb_c00148{left:351.750000px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls2_c00148{letter-spacing:0.000000pt;}
.ls3_c00148{letter-spacing:2.666667pt;}
.ls0_c00148{letter-spacing:3.200000pt;}
.ls1_c00148{letter-spacing:36.266667pt;}
.ws0_c00148{word-spacing:-18.936000pt;}
.ws2_c00148{word-spacing:0.000000pt;}
.ws1_c00148{word-spacing:10.058667pt;}
._15_c00148{margin-left:-11.008000pt;}
._10_c00148{margin-left:-6.464000pt;}
._c_c00148{margin-left:-5.440000pt;}
._d_c00148{margin-left:-4.522667pt;}
._4_c00148{margin-left:-3.210667pt;}
._e_c00148{margin-left:-2.165333pt;}
._b_c00148{margin-left:-0.896000pt;}
._11_c00148{width:0.896000pt;}
._8_c00148{width:1.792000pt;}
._6_c00148{width:3.509333pt;}
._2_c00148{width:4.853333pt;}
._5_c00148{width:6.421333pt;}
._1_c00148{width:7.616000pt;}
._3_c00148{width:8.810667pt;}
._a_c00148{width:9.824000pt;}
._9_c00148{width:11.200000pt;}
._13_c00148{width:12.170667pt;}
._0_c00148{width:13.290667pt;}
._f_c00148{width:14.858667pt;}
._12_c00148{width:16.928000pt;}
._14_c00148{width:33.642667pt;}
._7_c00148{width:318.229333pt;}
.fs3_c00148{font-size:42.666667pt;}
.fs1_c00148{font-size:64.000000pt;}
.fs2_c00148{font-size:72.000000pt;}
.fs0_c00148{font-size:74.666667pt;}
.y0_c00148{bottom:0.000000pt;}
.y17_c00148{bottom:2.760000pt;}
.y16_c00148{bottom:6.425217pt;}
.y15_c00148{bottom:204.640000pt;}
.y14_c00148{bottom:233.440000pt;}
.y13_c00148{bottom:259.173333pt;}
.y12_c00148{bottom:280.240000pt;}
.y11_c00148{bottom:301.706667pt;}
.y10_c00148{bottom:323.440000pt;}
.yf_c00148{bottom:344.106667pt;}
.ye_c00148{bottom:367.840000pt;}
.yd_c00148{bottom:389.440000pt;}
.yc_c00148{bottom:411.840000pt;}
.yb_c00148{bottom:433.706667pt;}
.ya_c00148{bottom:455.706667pt;}
.y9_c00148{bottom:476.906667pt;}
.y8_c00148{bottom:499.706667pt;}
.y7_c00148{bottom:521.440000pt;}
.y6_c00148{bottom:543.573333pt;}
.y5_c00148{bottom:564.906667pt;}
.y4_c00148{bottom:587.306667pt;}
.y3_c00148{bottom:608.906667pt;}
.y2_c00148{bottom:630.906667pt;}
.y1_c00148{bottom:653.040000pt;}
.h5_c00148{height:11.733399pt;}
.h6_c00148{height:38.937500pt;}
.h4_c00148{height:70.664062pt;}
.h2_c00148{height:73.244792pt;}
.h3_c00148{height:81.031250pt;}
.h1_c00148{height:702.666667pt;}
.h0_c00148{height:702.933333pt;}
.w2_c00148{width:93.222667pt;}
.w1_c00148{width:476.666667pt;}
.w0_c00148{width:476.866667pt;}
.x0_c00148{left:0.000000pt;}
.x2_c00148{left:34.266667pt;}
.x3_c00148{left:36.000000pt;}
.x4_c00148{left:36.933333pt;}
.x5_c00148{left:38.400000pt;}
.x6_c00148{left:59.466667pt;}
.x7_c00148{left:83.066667pt;}
.x8_c00148{left:110.666667pt;}
.x1_c00148{left:137.200000pt;}
.x9_c00148{left:141.333333pt;}
.xa_c00148{left:195.600000pt;}
.xb_c00148{left:312.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_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_7d0b443c1d1bf6e0543f2750.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00149;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00149;src:url('chunks/assets/font_b7d64e4155d04d652f14c123.woff2')format("woff");}.ff3_c00149{font-family:ff3_c00149;line-height:1.480469;font-style:normal;font-weight:normal;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_ce76f4c05d12d9c0ca3be08a.woff2')format("woff");}.ff4_c00149{font-family:ff4_c00149;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00149{font-family:ff5_c00149;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00149{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00149{vertical-align:0.000000px;}
.ls2_c00149{letter-spacing:0.000000px;}
.ls0_c00149{letter-spacing:3.000000px;}
.ls3_c00149{letter-spacing:6.000000px;}
.ls1_c00149{letter-spacing:18.000000px;}
.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:-33.192000px;}
.ws1_c00149{word-spacing:-27.660000px;}
.ws3_c00149{word-spacing:-20.352000px;}
.ws0_c00149{word-spacing:-10.524000px;}
.ws4_c00149{word-spacing:0.000000px;}
._c_c00149{margin-left:-21.420000px;}
._17_c00149{margin-left:-20.412000px;}
._12_c00149{margin-left:-18.900000px;}
._e_c00149{margin-left:-15.876000px;}
._a_c00149{margin-left:-11.172000px;}
._15_c00149{margin-left:-9.324000px;}
._f_c00149{margin-left:-7.476000px;}
._13_c00149{margin-left:-6.384000px;}
._14_c00149{margin-left:-4.872000px;}
._6_c00149{margin-left:-3.864000px;}
._10_c00149{margin-left:-2.688000px;}
._16_c00149{margin-left:-1.512000px;}
._b_c00149{width:1.848000px;}
._11_c00149{width:2.940000px;}
._8_c00149{width:3.948000px;}
._7_c00149{width:5.544000px;}
._9_c00149{width:6.636000px;}
._d_c00149{width:7.812000px;}
._1a_c00149{width:8.820000px;}
._5_c00149{width:9.912000px;}
._18_c00149{width:11.256000px;}
._1c_c00149{width:13.020000px;}
._1d_c00149{width:14.436000px;}
._1_c00149{width:17.136000px;}
._19_c00149{width:18.396000px;}
._2_c00149{width:22.680000px;}
._4_c00149{width:24.612000px;}
._3_c00149{width:26.796000px;}
._1e_c00149{width:28.416000px;}
._0_c00149{width:32.676000px;}
._20_c00149{width:34.392000px;}
._1f_c00149{width:43.416000px;}
._1b_c00149{width:66.864000px;}
.fc2_c00149{color:transparent;}
.fc1_c00149{color:rgb(128,128,128);}
.fc0_c00149{color:rgb(0,0,0);}
.fs5_c00149{font-size:48.000000px;}
.fs4_c00149{font-size:54.000000px;}
.fs1_c00149{font-size:60.000000px;}
.fs3_c00149{font-size:69.000000px;}
.fs2_c00149{font-size:72.000000px;}
.fs0_c00149{font-size:84.000000px;}
.y0_c00149{bottom:0.000000px;}
.y1a_c00149{bottom:3.105000px;}
.y19_c00149{bottom:7.228357px;}
.y18_c00149{bottom:40.530000px;}
.y17_c00149{bottom:62.130000px;}
.y16_c00149{bottom:87.780000px;}
.y15_c00149{bottom:112.830000px;}
.y14_c00149{bottom:138.030000px;}
.y13_c00149{bottom:163.080000px;}
.y12_c00149{bottom:188.730000px;}
.y11_c00149{bottom:213.630000px;}
.y10_c00149{bottom:238.380000px;}
.yf_c00149{bottom:263.580000px;}
.ye_c00149{bottom:288.930000px;}
.yd_c00149{bottom:313.830000px;}
.yc_c00149{bottom:338.280000px;}
.yb_c00149{bottom:363.780000px;}
.ya_c00149{bottom:388.530000px;}
.y9_c00149{bottom:412.380000px;}
.y8_c00149{bottom:461.130000px;}
.y7_c00149{bottom:513.780000px;}
.y6_c00149{bottom:541.980000px;}
.y5_c00149{bottom:570.480000px;}
.y4_c00149{bottom:598.380000px;}
.y3_c00149{bottom:625.680000px;}
.y2_c00149{bottom:652.380000px;}
.y1_c00149{bottom:702.630000px;}
.h6_c00149{height:13.200074px;}
.h7_c00149{height:43.804688px;}
.h4_c00149{height:70.224609px;}
.h2_c00149{height:82.400391px;}
.h3_c00149{height:82.441406px;}
.h5_c00149{height:91.160156px;}
.h0_c00149{height:780.600000px;}
.h1_c00149{height:780.750000px;}
.w2_c00149{width:104.875500px;}
.w1_c00149{width:522.750000px;}
.w0_c00149{width:522.975000px;}
.x0_c00149{left:0.000000px;}
.x3_c00149{left:109.950000px;}
.x2_c00149{left:112.800000px;}
.x4_c00149{left:116.700000px;}
.xc_c00149{left:119.100000px;}
.xd_c00149{left:120.750000px;}
.xe_c00149{left:121.800000px;}
.xf_c00149{left:122.850000px;}
.x11_c00149{left:123.900000px;}
.x1_c00149{left:142.800000px;}
.x5_c00149{left:151.500000px;}
.x10_c00149{left:157.650000px;}
.x6_c00149{left:182.850000px;}
.x13_c00149{left:213.301758px;}
.xb_c00149{left:220.350000px;}
.x9_c00149{left:237.300000px;}
.xa_c00149{left:239.250000px;}
.x7_c00149{left:254.100000px;}
.x8_c00149{left:273.600000px;}
.x12_c00149{left:467.700000px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls2_c00149{letter-spacing:0.000000pt;}
.ls0_c00149{letter-spacing:2.666667pt;}
.ls3_c00149{letter-spacing:5.333333pt;}
.ls1_c00149{letter-spacing:16.000000pt;}
.ws2_c00149{word-spacing:-29.504000pt;}
.ws1_c00149{word-spacing:-24.586667pt;}
.ws3_c00149{word-spacing:-18.090667pt;}
.ws0_c00149{word-spacing:-9.354667pt;}
.ws4_c00149{word-spacing:0.000000pt;}
._c_c00149{margin-left:-19.040000pt;}
._17_c00149{margin-left:-18.144000pt;}
._12_c00149{margin-left:-16.800000pt;}
._e_c00149{margin-left:-14.112000pt;}
._a_c00149{margin-left:-9.930667pt;}
._15_c00149{margin-left:-8.288000pt;}
._f_c00149{margin-left:-6.645333pt;}
._13_c00149{margin-left:-5.674667pt;}
._14_c00149{margin-left:-4.330667pt;}
._6_c00149{margin-left:-3.434667pt;}
._10_c00149{margin-left:-2.389333pt;}
._16_c00149{margin-left:-1.344000pt;}
._b_c00149{width:1.642667pt;}
._11_c00149{width:2.613333pt;}
._8_c00149{width:3.509333pt;}
._7_c00149{width:4.928000pt;}
._9_c00149{width:5.898667pt;}
._d_c00149{width:6.944000pt;}
._1a_c00149{width:7.840000pt;}
._5_c00149{width:8.810667pt;}
._18_c00149{width:10.005333pt;}
._1c_c00149{width:11.573333pt;}
._1d_c00149{width:12.832000pt;}
._1_c00149{width:15.232000pt;}
._19_c00149{width:16.352000pt;}
._2_c00149{width:20.160000pt;}
._4_c00149{width:21.877333pt;}
._3_c00149{width:23.818667pt;}
._1e_c00149{width:25.258667pt;}
._0_c00149{width:29.045333pt;}
._20_c00149{width:30.570667pt;}
._1f_c00149{width:38.592000pt;}
._1b_c00149{width:59.434667pt;}
.fs5_c00149{font-size:42.666667pt;}
.fs4_c00149{font-size:48.000000pt;}
.fs1_c00149{font-size:53.333333pt;}
.fs3_c00149{font-size:61.333333pt;}
.fs2_c00149{font-size:64.000000pt;}
.fs0_c00149{font-size:74.666667pt;}
.y0_c00149{bottom:0.000000pt;}
.y1a_c00149{bottom:2.760000pt;}
.y19_c00149{bottom:6.425206pt;}
.y18_c00149{bottom:36.026667pt;}
.y17_c00149{bottom:55.226667pt;}
.y16_c00149{bottom:78.026667pt;}
.y15_c00149{bottom:100.293333pt;}
.y14_c00149{bottom:122.693333pt;}
.y13_c00149{bottom:144.960000pt;}
.y12_c00149{bottom:167.760000pt;}
.y11_c00149{bottom:189.893333pt;}
.y10_c00149{bottom:211.893333pt;}
.yf_c00149{bottom:234.293333pt;}
.ye_c00149{bottom:256.826667pt;}
.yd_c00149{bottom:278.960000pt;}
.yc_c00149{bottom:300.693333pt;}
.yb_c00149{bottom:323.360000pt;}
.ya_c00149{bottom:345.360000pt;}
.y9_c00149{bottom:366.560000pt;}
.y8_c00149{bottom:409.893333pt;}
.y7_c00149{bottom:456.693333pt;}
.y6_c00149{bottom:481.760000pt;}
.y5_c00149{bottom:507.093333pt;}
.y4_c00149{bottom:531.893333pt;}
.y3_c00149{bottom:556.160000pt;}
.y2_c00149{bottom:579.893333pt;}
.y1_c00149{bottom:624.560000pt;}
.h6_c00149{height:11.733399pt;}
.h7_c00149{height:38.937500pt;}
.h4_c00149{height:62.421875pt;}
.h2_c00149{height:73.244792pt;}
.h3_c00149{height:73.281250pt;}
.h5_c00149{height:81.031250pt;}
.h0_c00149{height:693.866667pt;}
.h1_c00149{height:694.000000pt;}
.w2_c00149{width:93.222667pt;}
.w1_c00149{width:464.666667pt;}
.w0_c00149{width:464.866667pt;}
.x0_c00149{left:0.000000pt;}
.x3_c00149{left:97.733333pt;}
.x2_c00149{left:100.266667pt;}
.x4_c00149{left:103.733333pt;}
.xc_c00149{left:105.866667pt;}
.xd_c00149{left:107.333333pt;}
.xe_c00149{left:108.266667pt;}
.xf_c00149{left:109.200000pt;}
.x11_c00149{left:110.133333pt;}
.x1_c00149{left:126.933333pt;}
.x5_c00149{left:134.666667pt;}
.x10_c00149{left:140.133333pt;}
.x6_c00149{left:162.533333pt;}
.x13_c00149{left:189.601563pt;}
.xb_c00149{left:195.866667pt;}
.x9_c00149{left:210.933333pt;}
.xa_c00149{left:212.666667pt;}
.x7_c00149{left:225.866667pt;}
.x8_c00149{left:243.200000pt;}
.x12_c00149{left:415.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cc3fd398c74259573443a75c.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00150;src:url('chunks/assets/font_f256fee75241c1ed76373aa6.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:1.568848;font-style:normal;font-weight:normal;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_a8172e62a799d5f5f8769791.woff2')format("woff");}.ff3_c00150{font-family:ff3_c00150;line-height:1.480469;font-style:normal;font-weight:normal;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_db4b5cfdf3a86c326bb11c61.woff2')format("woff");}.ff4_c00150{font-family:ff4_c00150;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00150;src:url('chunks/assets/font_1a19bccf998cd3186b3cdd16.woff2')format("woff");}.ff5_c00150{font-family:ff5_c00150;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00150;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00150{font-family:ff6_c00150;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00150{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00150{vertical-align:0.000000px;}
.ls3_c00150{letter-spacing:-3.000000px;}
.ls1_c00150{letter-spacing:0.000000px;}
.ls0_c00150{letter-spacing:3.000000px;}
.ls2_c00150{letter-spacing:21.000000px;}
.sc__c00150{text-shadow:none;}
.sc0_c00150{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00150{-webkit-text-stroke:0px transparent;}
.sc0_c00150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00150{word-spacing:-53.211000px;}
.ws0_c00150{word-spacing:-38.352000px;}
.ws1_c00150{word-spacing:-33.192000px;}
.ws2_c00150{word-spacing:-27.051000px;}
.ws4_c00150{word-spacing:-16.629000px;}
.ws5_c00150{word-spacing:0.000000px;}
._d_c00150{margin-left:-16.056000px;}
._18_c00150{margin-left:-13.500000px;}
._12_c00150{margin-left:-12.096000px;}
._17_c00150{margin-left:-10.896000px;}
._10_c00150{margin-left:-9.264000px;}
._11_c00150{margin-left:-8.112000px;}
._e_c00150{margin-left:-6.336000px;}
._8_c00150{margin-left:-5.256000px;}
._2_c00150{margin-left:-3.612000px;}
._7_c00150{margin-left:-1.704000px;}
._3_c00150{width:1.848000px;}
._4_c00150{width:3.024000px;}
._f_c00150{width:4.176000px;}
._1_c00150{width:5.292000px;}
._b_c00150{width:7.176000px;}
._0_c00150{width:8.652000px;}
._c_c00150{width:10.464000px;}
._9_c00150{width:12.096000px;}
._15_c00150{width:13.212000px;}
._6_c00150{width:15.540000px;}
._14_c00150{width:17.832000px;}
._a_c00150{width:19.200000px;}
._16_c00150{width:21.960000px;}
._13_c00150{width:98.376000px;}
._5_c00150{width:390.600000px;}
.fc2_c00150{color:transparent;}
.fc1_c00150{color:rgb(128,128,128);}
.fc0_c00150{color:rgb(0,0,0);}
.fs5_c00150{font-size:48.000000px;}
.fs3_c00150{font-size:63.000000px;}
.fs4_c00150{font-size:69.000000px;}
.fs1_c00150{font-size:72.000000px;}
.fs2_c00150{font-size:78.000000px;}
.fs0_c00150{font-size:84.000000px;}
.y0_c00150{bottom:0.000000px;}
.y1f_c00150{bottom:3.105000px;}
.y1e_c00150{bottom:7.228355px;}
.y1d_c00150{bottom:44.085000px;}
.y1c_c00150{bottom:69.735000px;}
.y1b_c00150{bottom:96.135000px;}
.y1a_c00150{bottom:121.035000px;}
.y19_c00150{bottom:145.485000px;}
.y18_c00150{bottom:169.635000px;}
.y17_c00150{bottom:195.435000px;}
.y16_c00150{bottom:221.085000px;}
.y15_c00150{bottom:246.735000px;}
.y14_c00150{bottom:271.335000px;}
.y13_c00150{bottom:295.335000px;}
.y12_c00150{bottom:317.535000px;}
.y11_c00150{bottom:342.135000px;}
.y10_c00150{bottom:367.185000px;}
.yf_c00150{bottom:391.485000px;}
.ye_c00150{bottom:416.385000px;}
.yd_c00150{bottom:441.135000px;}
.yc_c00150{bottom:465.735000px;}
.yb_c00150{bottom:490.035000px;}
.ya_c00150{bottom:514.935000px;}
.y9_c00150{bottom:540.585000px;}
.y8_c00150{bottom:565.185000px;}
.y7_c00150{bottom:589.485000px;}
.y6_c00150{bottom:614.535000px;}
.y5_c00150{bottom:638.085000px;}
.y4_c00150{bottom:662.835000px;}
.y3_c00150{bottom:687.435000px;}
.y2_c00150{bottom:712.035000px;}
.y1_c00150{bottom:736.785000px;}
.h6_c00150{height:13.200074px;}
.h7_c00150{height:43.804688px;}
.h2_c00150{height:82.400391px;}
.h5_c00150{height:87.361816px;}
.h3_c00150{height:91.160156px;}
.h4_c00150{height:98.756836px;}
.h1_c00150{height:786.000000px;}
.h0_c00150{height:786.225000px;}
.w1_c00150{width:104.875500px;}
.w0_c00150{width:537.000000px;}
.x0_c00150{left:0.000000px;}
.x2_c00150{left:19.350000px;}
.x4_c00150{left:20.700000px;}
.x3_c00150{left:21.900000px;}
.x5_c00150{left:23.400000px;}
.x6_c00150{left:24.600000px;}
.x7_c00150{left:29.100000px;}
.x1_c00150{left:129.150000px;}
.x9_c00150{left:220.314240px;}
.x8_c00150{left:350.400000px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls3_c00150{letter-spacing:-2.666667pt;}
.ls1_c00150{letter-spacing:0.000000pt;}
.ls0_c00150{letter-spacing:2.666667pt;}
.ls2_c00150{letter-spacing:18.666667pt;}
.ws3_c00150{word-spacing:-47.298667pt;}
.ws0_c00150{word-spacing:-34.090667pt;}
.ws1_c00150{word-spacing:-29.504000pt;}
.ws2_c00150{word-spacing:-24.045333pt;}
.ws4_c00150{word-spacing:-14.781333pt;}
.ws5_c00150{word-spacing:0.000000pt;}
._d_c00150{margin-left:-14.272000pt;}
._18_c00150{margin-left:-12.000000pt;}
._12_c00150{margin-left:-10.752000pt;}
._17_c00150{margin-left:-9.685333pt;}
._10_c00150{margin-left:-8.234667pt;}
._11_c00150{margin-left:-7.210667pt;}
._e_c00150{margin-left:-5.632000pt;}
._8_c00150{margin-left:-4.672000pt;}
._2_c00150{margin-left:-3.210667pt;}
._7_c00150{margin-left:-1.514667pt;}
._3_c00150{width:1.642667pt;}
._4_c00150{width:2.688000pt;}
._f_c00150{width:3.712000pt;}
._1_c00150{width:4.704000pt;}
._b_c00150{width:6.378667pt;}
._0_c00150{width:7.690667pt;}
._c_c00150{width:9.301333pt;}
._9_c00150{width:10.752000pt;}
._15_c00150{width:11.744000pt;}
._6_c00150{width:13.813333pt;}
._14_c00150{width:15.850667pt;}
._a_c00150{width:17.066667pt;}
._16_c00150{width:19.520000pt;}
._13_c00150{width:87.445333pt;}
._5_c00150{width:347.200000pt;}
.fs5_c00150{font-size:42.666667pt;}
.fs3_c00150{font-size:56.000000pt;}
.fs4_c00150{font-size:61.333333pt;}
.fs1_c00150{font-size:64.000000pt;}
.fs2_c00150{font-size:69.333333pt;}
.fs0_c00150{font-size:74.666667pt;}
.y0_c00150{bottom:0.000000pt;}
.y1f_c00150{bottom:2.760000pt;}
.y1e_c00150{bottom:6.425204pt;}
.y1d_c00150{bottom:39.186667pt;}
.y1c_c00150{bottom:61.986667pt;}
.y1b_c00150{bottom:85.453333pt;}
.y1a_c00150{bottom:107.586667pt;}
.y19_c00150{bottom:129.320000pt;}
.y18_c00150{bottom:150.786667pt;}
.y17_c00150{bottom:173.720000pt;}
.y16_c00150{bottom:196.520000pt;}
.y15_c00150{bottom:219.320000pt;}
.y14_c00150{bottom:241.186667pt;}
.y13_c00150{bottom:262.520000pt;}
.y12_c00150{bottom:282.253333pt;}
.y11_c00150{bottom:304.120000pt;}
.y10_c00150{bottom:326.386667pt;}
.yf_c00150{bottom:347.986667pt;}
.ye_c00150{bottom:370.120000pt;}
.yd_c00150{bottom:392.120000pt;}
.yc_c00150{bottom:413.986667pt;}
.yb_c00150{bottom:435.586667pt;}
.ya_c00150{bottom:457.720000pt;}
.y9_c00150{bottom:480.520000pt;}
.y8_c00150{bottom:502.386667pt;}
.y7_c00150{bottom:523.986667pt;}
.y6_c00150{bottom:546.253333pt;}
.y5_c00150{bottom:567.186667pt;}
.y4_c00150{bottom:589.186667pt;}
.y3_c00150{bottom:611.053333pt;}
.y2_c00150{bottom:632.920000pt;}
.y1_c00150{bottom:654.920000pt;}
.h6_c00150{height:11.733399pt;}
.h7_c00150{height:38.937500pt;}
.h2_c00150{height:73.244792pt;}
.h5_c00150{height:77.654948pt;}
.h3_c00150{height:81.031250pt;}
.h4_c00150{height:87.783854pt;}
.h1_c00150{height:698.666667pt;}
.h0_c00150{height:698.866667pt;}
.w1_c00150{width:93.222667pt;}
.w0_c00150{width:477.333333pt;}
.x0_c00150{left:0.000000pt;}
.x2_c00150{left:17.200000pt;}
.x4_c00150{left:18.400000pt;}
.x3_c00150{left:19.466667pt;}
.x5_c00150{left:20.800000pt;}
.x6_c00150{left:21.866667pt;}
.x7_c00150{left:25.866667pt;}
.x1_c00150{left:114.800000pt;}
.x9_c00150{left:195.834880pt;}
.x8_c00150{left:311.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3e5720179a9e38ea896fb4da.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00151;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00151;src:url('chunks/assets/font_7d3a6bcb403f5a0f9468e2b9.woff2')format("woff");}.ff3_c00151{font-family:ff3_c00151;line-height:1.568848;font-style:normal;font-weight:normal;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_5f94f927c7ff3b54c5b2cb23.woff2')format("woff");}.ff4_c00151{font-family:ff4_c00151;line-height:1.480469;font-style:normal;font-weight:normal;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_a96b028feeb92c3269bbd906.woff2')format("woff");}.ff5_c00151{font-family:ff5_c00151;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00151;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00151{font-family:ff6_c00151;line-height:1.219238;font-style: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;}
.ls5_c00151{letter-spacing:0.000000px;}
.ls1_c00151{letter-spacing:0.150000px;}
.ls0_c00151{letter-spacing:3.000000px;}
.ls3_c00151{letter-spacing:4.188000px;}
.ls4_c00151{letter-spacing:6.417000px;}
.ls2_c00151{letter-spacing:31.800000px;}
.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;}
}
.ws2_c00151{word-spacing:-33.192000px;}
.ws1_c00151{word-spacing:-29.043000px;}
.ws0_c00151{word-spacing:-20.352000px;}
.ws3_c00151{word-spacing:0.000000px;}
._9_c00151{margin-left:-21.288000px;}
._12_c00151{margin-left:-16.056000px;}
._c_c00151{margin-left:-7.812000px;}
._3_c00151{margin-left:-5.652000px;}
._2_c00151{margin-left:-3.456000px;}
._4_c00151{margin-left:-2.052000px;}
._b_c00151{margin-left:-1.008000px;}
._1_c00151{width:1.512000px;}
._0_c00151{width:3.276000px;}
._5_c00151{width:4.356000px;}
._8_c00151{width:6.336000px;}
._a_c00151{width:8.352000px;}
._6_c00151{width:10.476000px;}
._d_c00151{width:11.808000px;}
._10_c00151{width:13.176000px;}
._7_c00151{width:14.616000px;}
._e_c00151{width:15.954000px;}
._f_c00151{width:17.136000px;}
._11_c00151{width:21.960000px;}
.fc2_c00151{color:transparent;}
.fc1_c00151{color:rgb(128,128,128);}
.fc0_c00151{color:rgb(0,0,0);}
.fs4_c00151{font-size:24.000000px;}
.fs6_c00151{font-size:48.000000px;}
.fs5_c00151{font-size:63.000000px;}
.fs2_c00151{font-size:69.000000px;}
.fs1_c00151{font-size:72.000000px;}
.fs3_c00151{font-size:81.000000px;}
.fs0_c00151{font-size:84.000000px;}
.y0_c00151{bottom:0.000000px;}
.y1f_c00151{bottom:3.105000px;}
.y1e_c00151{bottom:7.228371px;}
.y1d_c00151{bottom:39.465000px;}
.y1c_c00151{bottom:60.765000px;}
.y1b_c00151{bottom:85.515000px;}
.y1a_c00151{bottom:110.715000px;}
.y19_c00151{bottom:136.665000px;}
.y18_c00151{bottom:162.465000px;}
.y17_c00151{bottom:186.615000px;}
.y16_c00151{bottom:213.615000px;}
.y15_c00151{bottom:237.015000px;}
.y14_c00151{bottom:261.915000px;}
.y13_c00151{bottom:287.565000px;}
.y12_c00151{bottom:311.865000px;}
.y11_c00151{bottom:337.215000px;}
.y10_c00151{bottom:361.515000px;}
.yf_c00151{bottom:386.565000px;}
.ye_c00151{bottom:411.165000px;}
.yd_c00151{bottom:436.365000px;}
.yc_c00151{bottom:460.665000px;}
.yb_c00151{bottom:484.965000px;}
.ya_c00151{bottom:509.715000px;}
.y9_c00151{bottom:535.065000px;}
.y8_c00151{bottom:559.215000px;}
.y7_c00151{bottom:584.265000px;}
.y6_c00151{bottom:608.565000px;}
.y5_c00151{bottom:633.615000px;}
.y4_c00151{bottom:658.215000px;}
.y3_c00151{bottom:683.115000px;}
.y2_c00151{bottom:707.865000px;}
.y1_c00151{bottom:733.515000px;}
.h4_c00151{height:13.200074px;}
.h5_c00151{height:43.804688px;}
.h2_c00151{height:82.441406px;}
.h3_c00151{height:91.160156px;}
.h1_c00151{height:783.750000px;}
.h0_c00151{height:783.825000px;}
.w2_c00151{width:104.875500px;}
.w1_c00151{width:518.250000px;}
.w0_c00151{width:518.400000px;}
.x0_c00151{left:0.000000px;}
.x6_c00151{left:121.800000px;}
.x7_c00151{left:122.850000px;}
.x4_c00151{left:124.200000px;}
.x5_c00151{left:125.250000px;}
.x2_c00151{left:126.300000px;}
.x3_c00151{left:127.650000px;}
.x9_c00151{left:211.014267px;}
.x1_c00151{left:243.900000px;}
.x8_c00151{left:463.350000px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls5_c00151{letter-spacing:0.000000pt;}
.ls1_c00151{letter-spacing:0.133333pt;}
.ls0_c00151{letter-spacing:2.666667pt;}
.ls3_c00151{letter-spacing:3.722667pt;}
.ls4_c00151{letter-spacing:5.704000pt;}
.ls2_c00151{letter-spacing:28.266667pt;}
.ws2_c00151{word-spacing:-29.504000pt;}
.ws1_c00151{word-spacing:-25.816000pt;}
.ws0_c00151{word-spacing:-18.090667pt;}
.ws3_c00151{word-spacing:0.000000pt;}
._9_c00151{margin-left:-18.922667pt;}
._12_c00151{margin-left:-14.272000pt;}
._c_c00151{margin-left:-6.944000pt;}
._3_c00151{margin-left:-5.024000pt;}
._2_c00151{margin-left:-3.072000pt;}
._4_c00151{margin-left:-1.824000pt;}
._b_c00151{margin-left:-0.896000pt;}
._1_c00151{width:1.344000pt;}
._0_c00151{width:2.912000pt;}
._5_c00151{width:3.872000pt;}
._8_c00151{width:5.632000pt;}
._a_c00151{width:7.424000pt;}
._6_c00151{width:9.312000pt;}
._d_c00151{width:10.496000pt;}
._10_c00151{width:11.712000pt;}
._7_c00151{width:12.992000pt;}
._e_c00151{width:14.181333pt;}
._f_c00151{width:15.232000pt;}
._11_c00151{width:19.520000pt;}
.fs4_c00151{font-size:21.333333pt;}
.fs6_c00151{font-size:42.666667pt;}
.fs5_c00151{font-size:56.000000pt;}
.fs2_c00151{font-size:61.333333pt;}
.fs1_c00151{font-size:64.000000pt;}
.fs3_c00151{font-size:72.000000pt;}
.fs0_c00151{font-size:74.666667pt;}
.y0_c00151{bottom:0.000000pt;}
.y1f_c00151{bottom:2.760000pt;}
.y1e_c00151{bottom:6.425219pt;}
.y1d_c00151{bottom:35.080000pt;}
.y1c_c00151{bottom:54.013333pt;}
.y1b_c00151{bottom:76.013333pt;}
.y1a_c00151{bottom:98.413333pt;}
.y19_c00151{bottom:121.480000pt;}
.y18_c00151{bottom:144.413333pt;}
.y17_c00151{bottom:165.880000pt;}
.y16_c00151{bottom:189.880000pt;}
.y15_c00151{bottom:210.680000pt;}
.y14_c00151{bottom:232.813333pt;}
.y13_c00151{bottom:255.613333pt;}
.y12_c00151{bottom:277.213333pt;}
.y11_c00151{bottom:299.746667pt;}
.y10_c00151{bottom:321.346667pt;}
.yf_c00151{bottom:343.613333pt;}
.ye_c00151{bottom:365.480000pt;}
.yd_c00151{bottom:387.880000pt;}
.yc_c00151{bottom:409.480000pt;}
.yb_c00151{bottom:431.080000pt;}
.ya_c00151{bottom:453.080000pt;}
.y9_c00151{bottom:475.613333pt;}
.y8_c00151{bottom:497.080000pt;}
.y7_c00151{bottom:519.346667pt;}
.y6_c00151{bottom:540.946667pt;}
.y5_c00151{bottom:563.213333pt;}
.y4_c00151{bottom:585.080000pt;}
.y3_c00151{bottom:607.213333pt;}
.y2_c00151{bottom:629.213333pt;}
.y1_c00151{bottom:652.013333pt;}
.h4_c00151{height:11.733399pt;}
.h5_c00151{height:38.937500pt;}
.h2_c00151{height:73.281250pt;}
.h3_c00151{height:81.031250pt;}
.h1_c00151{height:696.666667pt;}
.h0_c00151{height:696.733333pt;}
.w2_c00151{width:93.222667pt;}
.w1_c00151{width:460.666667pt;}
.w0_c00151{width:460.800000pt;}
.x0_c00151{left:0.000000pt;}
.x6_c00151{left:108.266667pt;}
.x7_c00151{left:109.200000pt;}
.x4_c00151{left:110.400000pt;}
.x5_c00151{left:111.333333pt;}
.x2_c00151{left:112.266667pt;}
.x3_c00151{left:113.466667pt;}
.x9_c00151{left:187.568237pt;}
.x1_c00151{left:216.800000pt;}
.x8_c00151{left:411.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_84b1f9e625d452ed95583e53.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.480469;font-style:normal;font-weight:normal;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_efd7637e814e821ab430fc04.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00152;src:url('chunks/assets/font_dcf4e200c33293bfb6d9ca5c.woff2')format("woff");}.ff3_c00152{font-family:ff3_c00152;line-height:1.568848;font-style:normal;font-weight:normal;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_5b0aa30b8a0ddc531bab390e.woff2')format("woff");}.ff4_c00152{font-family:ff4_c00152;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00152{font-family:ff5_c00152;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00152{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00152{vertical-align:0.000000px;}
.ls5_c00152{letter-spacing:0.000000px;}
.ls2_c00152{letter-spacing:2.388000px;}
.ls3_c00152{letter-spacing:3.000000px;}
.ls4_c00152{letter-spacing:3.588000px;}
.ls1_c00152{letter-spacing:7.188000px;}
.ls0_c00152{letter-spacing:13.800000px;}
.sc__c00152{text-shadow:none;}
.sc0_c00152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00152{-webkit-text-stroke:0px transparent;}
.sc0_c00152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00152{word-spacing:-20.352000px;}
.ws1_c00152{word-spacing:0.000000px;}
._17_c00152{margin-left:-18.216000px;}
._16_c00152{margin-left:-16.344000px;}
._14_c00152{margin-left:-12.456000px;}
._18_c00152{margin-left:-11.376000px;}
._9_c00152{margin-left:-9.720000px;}
._6_c00152{margin-left:-7.920000px;}
._7_c00152{margin-left:-6.912000px;}
._11_c00152{margin-left:-5.328000px;}
._8_c00152{margin-left:-4.032000px;}
._f_c00152{margin-left:-3.024000px;}
._4_c00152{margin-left:-1.656000px;}
._a_c00152{width:1.008000px;}
._d_c00152{width:2.088000px;}
._b_c00152{width:3.384000px;}
._13_c00152{width:4.968000px;}
._c_c00152{width:6.552000px;}
._2_c00152{width:8.280000px;}
._1_c00152{width:9.504000px;}
._e_c00152{width:10.584000px;}
._15_c00152{width:12.096000px;}
._10_c00152{width:13.248000px;}
._3_c00152{width:15.768000px;}
._12_c00152{width:16.992000px;}
._19_c00152{width:19.080000px;}
._0_c00152{width:21.384000px;}
._1a_c00152{width:23.400000px;}
._1c_c00152{width:26.784000px;}
._1b_c00152{width:28.656000px;}
._1d_c00152{width:30.552000px;}
._5_c00152{width:351.936000px;}
.fc2_c00152{color:transparent;}
.fc1_c00152{color:rgb(128,128,128);}
.fc0_c00152{color:rgb(0,0,0);}
.fs3_c00152{font-size:48.000000px;}
.fs2_c00152{font-size:63.000000px;}
.fs0_c00152{font-size:72.000000px;}
.fs1_c00152{font-size:78.000000px;}
.y0_c00152{bottom:0.000000px;}
.y1f_c00152{bottom:3.105000px;}
.y1e_c00152{bottom:7.228369px;}
.y1d_c00152{bottom:34.020000px;}
.y1c_c00152{bottom:62.070000px;}
.y1b_c00152{bottom:88.770000px;}
.y1a_c00152{bottom:112.770000px;}
.y19_c00152{bottom:138.420000px;}
.y18_c00152{bottom:164.970000px;}
.y17_c00152{bottom:189.570000px;}
.y16_c00152{bottom:214.620000px;}
.y15_c00152{bottom:238.170000px;}
.y14_c00152{bottom:263.970000px;}
.y13_c00152{bottom:286.920000px;}
.y12_c00152{bottom:311.070000px;}
.y11_c00152{bottom:334.920000px;}
.y10_c00152{bottom:359.820000px;}
.yf_c00152{bottom:384.720000px;}
.ye_c00152{bottom:409.320000px;}
.yd_c00152{bottom:433.920000px;}
.yc_c00152{bottom:458.670000px;}
.yb_c00152{bottom:483.270000px;}
.ya_c00152{bottom:508.170000px;}
.y9_c00152{bottom:532.620000px;}
.y8_c00152{bottom:557.820000px;}
.y7_c00152{bottom:582.420000px;}
.y6_c00152{bottom:607.470000px;}
.y5_c00152{bottom:631.470000px;}
.y4_c00152{bottom:655.770000px;}
.y3_c00152{bottom:681.120000px;}
.y2_c00152{bottom:705.420000px;}
.y1_c00152{bottom:730.620000px;}
.h5_c00152{height:13.200073px;}
.h6_c00152{height:43.804688px;}
.h2_c00152{height:84.269531px;}
.h3_c00152{height:91.160156px;}
.h4_c00152{height:98.756836px;}
.h0_c00152{height:789.450000px;}
.h1_c00152{height:789.750000px;}
.w2_c00152{width:104.875500px;}
.w1_c00152{width:520.500000px;}
.w0_c00152{width:520.800000px;}
.x0_c00152{left:0.000000px;}
.x2_c00152{left:23.850000px;}
.x3_c00152{left:25.950000px;}
.x5_c00152{left:27.300000px;}
.x6_c00152{left:28.950000px;}
.x7_c00152{left:30.000000px;}
.x8_c00152{left:31.350000px;}
.x9_c00152{left:33.300000px;}
.x4_c00152{left:51.000000px;}
.xa_c00152{left:89.700000px;}
.x1_c00152{left:144.450000px;}
.xc_c00152{left:212.214249px;}
.xb_c00152{left:356.700000px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls5_c00152{letter-spacing:0.000000pt;}
.ls2_c00152{letter-spacing:2.122667pt;}
.ls3_c00152{letter-spacing:2.666667pt;}
.ls4_c00152{letter-spacing:3.189333pt;}
.ls1_c00152{letter-spacing:6.389333pt;}
.ls0_c00152{letter-spacing:12.266667pt;}
.ws0_c00152{word-spacing:-18.090667pt;}
.ws1_c00152{word-spacing:0.000000pt;}
._17_c00152{margin-left:-16.192000pt;}
._16_c00152{margin-left:-14.528000pt;}
._14_c00152{margin-left:-11.072000pt;}
._18_c00152{margin-left:-10.112000pt;}
._9_c00152{margin-left:-8.640000pt;}
._6_c00152{margin-left:-7.040000pt;}
._7_c00152{margin-left:-6.144000pt;}
._11_c00152{margin-left:-4.736000pt;}
._8_c00152{margin-left:-3.584000pt;}
._f_c00152{margin-left:-2.688000pt;}
._4_c00152{margin-left:-1.472000pt;}
._a_c00152{width:0.896000pt;}
._d_c00152{width:1.856000pt;}
._b_c00152{width:3.008000pt;}
._13_c00152{width:4.416000pt;}
._c_c00152{width:5.824000pt;}
._2_c00152{width:7.360000pt;}
._1_c00152{width:8.448000pt;}
._e_c00152{width:9.408000pt;}
._15_c00152{width:10.752000pt;}
._10_c00152{width:11.776000pt;}
._3_c00152{width:14.016000pt;}
._12_c00152{width:15.104000pt;}
._19_c00152{width:16.960000pt;}
._0_c00152{width:19.008000pt;}
._1a_c00152{width:20.800000pt;}
._1c_c00152{width:23.808000pt;}
._1b_c00152{width:25.472000pt;}
._1d_c00152{width:27.157333pt;}
._5_c00152{width:312.832000pt;}
.fs3_c00152{font-size:42.666667pt;}
.fs2_c00152{font-size:56.000000pt;}
.fs0_c00152{font-size:64.000000pt;}
.fs1_c00152{font-size:69.333333pt;}
.y0_c00152{bottom:0.000000pt;}
.y1f_c00152{bottom:2.760000pt;}
.y1e_c00152{bottom:6.425217pt;}
.y1d_c00152{bottom:30.240000pt;}
.y1c_c00152{bottom:55.173333pt;}
.y1b_c00152{bottom:78.906667pt;}
.y1a_c00152{bottom:100.240000pt;}
.y19_c00152{bottom:123.040000pt;}
.y18_c00152{bottom:146.640000pt;}
.y17_c00152{bottom:168.506667pt;}
.y16_c00152{bottom:190.773333pt;}
.y15_c00152{bottom:211.706667pt;}
.y14_c00152{bottom:234.640000pt;}
.y13_c00152{bottom:255.040000pt;}
.y12_c00152{bottom:276.506667pt;}
.y11_c00152{bottom:297.706667pt;}
.y10_c00152{bottom:319.840000pt;}
.yf_c00152{bottom:341.973333pt;}
.ye_c00152{bottom:363.840000pt;}
.yd_c00152{bottom:385.706667pt;}
.yc_c00152{bottom:407.706667pt;}
.yb_c00152{bottom:429.573333pt;}
.ya_c00152{bottom:451.706667pt;}
.y9_c00152{bottom:473.440000pt;}
.y8_c00152{bottom:495.840000pt;}
.y7_c00152{bottom:517.706667pt;}
.y6_c00152{bottom:539.973333pt;}
.y5_c00152{bottom:561.306667pt;}
.y4_c00152{bottom:582.906667pt;}
.y3_c00152{bottom:605.440000pt;}
.y2_c00152{bottom:627.040000pt;}
.y1_c00152{bottom:649.440000pt;}
.h5_c00152{height:11.733399pt;}
.h6_c00152{height:38.937500pt;}
.h2_c00152{height:74.906250pt;}
.h3_c00152{height:81.031250pt;}
.h4_c00152{height:87.783854pt;}
.h0_c00152{height:701.733333pt;}
.h1_c00152{height:702.000000pt;}
.w2_c00152{width:93.222667pt;}
.w1_c00152{width:462.666667pt;}
.w0_c00152{width:462.933333pt;}
.x0_c00152{left:0.000000pt;}
.x2_c00152{left:21.200000pt;}
.x3_c00152{left:23.066667pt;}
.x5_c00152{left:24.266667pt;}
.x6_c00152{left:25.733333pt;}
.x7_c00152{left:26.666667pt;}
.x8_c00152{left:27.866667pt;}
.x9_c00152{left:29.600000pt;}
.x4_c00152{left:45.333333pt;}
.xa_c00152{left:79.733333pt;}
.x1_c00152{left:128.400000pt;}
.xc_c00152{left:188.634888pt;}
.xb_c00152{left:317.066667pt;}
}





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

.ir_c00153:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00153{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00153;src:url('chunks/assets/font_0ea5650e23e897cca23f5d40.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00153;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00153;src:url('chunks/assets/font_7566ff92f0e4f50f59b45d47.woff2')format("woff");}.ff3_c00153{font-family:ff3_c00153;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00153{font-family:ff4_c00153;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00153{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00153{vertical-align:0.000000px;}
.ls1_c00153{letter-spacing:0.000000px;}
.ls0_c00153{letter-spacing:3.000000px;}
.ls2_c00153{letter-spacing:6.000000px;}
.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:-21.183000px;}
.ws1_c00153{word-spacing:-20.352000px;}
.ws2_c00153{word-spacing:0.000000px;}
._2_c00153{margin-left:-16.632000px;}
._c_c00153{margin-left:-14.346000px;}
._6_c00153{margin-left:-12.285000px;}
._4_c00153{margin-left:-11.088000px;}
._12_c00153{margin-left:-10.032000px;}
._5_c00153{margin-left:-8.988000px;}
._3_c00153{margin-left:-7.560000px;}
._b_c00153{margin-left:-6.294000px;}
._7_c00153{margin-left:-5.292000px;}
._a_c00153{margin-left:-4.170000px;}
._8_c00153{margin-left:-3.150000px;}
._9_c00153{margin-left:-1.260000px;}
._1_c00153{width:1.596000px;}
._0_c00153{width:3.528000px;}
._d_c00153{width:4.824000px;}
._11_c00153{width:5.976000px;}
._15_c00153{width:7.206000px;}
._10_c00153{width:9.312000px;}
._f_c00153{width:11.286000px;}
._14_c00153{width:12.720000px;}
._16_c00153{width:14.040000px;}
._e_c00153{width:16.356000px;}
._13_c00153{width:17.358000px;}
._17_c00153{width:23.655000px;}
.fc2_c00153{color:transparent;}
.fc1_c00153{color:rgb(128,128,128);}
.fc0_c00153{color:rgb(0,0,0);}
.fs5_c00153{font-size:48.000000px;}
.fs4_c00153{font-size:54.000000px;}
.fs1_c00153{font-size:63.000000px;}
.fs3_c00153{font-size:69.000000px;}
.fs2_c00153{font-size:72.000000px;}
.fs0_c00153{font-size:84.000000px;}
.y0_c00153{bottom:0.000000px;}
.y1f_c00153{bottom:3.105000px;}
.y1e_c00153{bottom:7.228355px;}
.y1d_c00153{bottom:39.135000px;}
.y1c_c00153{bottom:61.335000px;}
.y1b_c00153{bottom:88.035000px;}
.y1a_c00153{bottom:112.635000px;}
.y19_c00153{bottom:137.685000px;}
.y18_c00153{bottom:163.335000px;}
.y17_c00153{bottom:190.035000px;}
.y16_c00153{bottom:213.885000px;}
.y15_c00153{bottom:238.635000px;}
.y14_c00153{bottom:264.885000px;}
.y13_c00153{bottom:288.885000px;}
.y12_c00153{bottom:313.485000px;}
.y11_c00153{bottom:338.835000px;}
.y10_c00153{bottom:362.835000px;}
.yf_c00153{bottom:387.735000px;}
.ye_c00153{bottom:412.635000px;}
.yd_c00153{bottom:437.385000px;}
.yc_c00153{bottom:462.735000px;}
.yb_c00153{bottom:486.885000px;}
.ya_c00153{bottom:511.185000px;}
.y9_c00153{bottom:535.935000px;}
.y8_c00153{bottom:561.285000px;}
.y7_c00153{bottom:585.435000px;}
.y6_c00153{bottom:610.485000px;}
.y5_c00153{bottom:635.535000px;}
.y4_c00153{bottom:660.135000px;}
.y3_c00153{bottom:685.035000px;}
.y2_c00153{bottom:710.085000px;}
.y1_c00153{bottom:735.735000px;}
.h6_c00153{height:13.200074px;}
.h7_c00153{height:43.804688px;}
.h4_c00153{height:79.765137px;}
.h2_c00153{height:82.441406px;}
.h5_c00153{height:87.361816px;}
.h3_c00153{height:91.160156px;}
.h0_c00153{height:791.625000px;}
.h1_c00153{height:792.000000px;}
.w2_c00153{width:104.875500px;}
.w0_c00153{width:512.175000px;}
.w1_c00153{width:512.250000px;}
.x0_c00153{left:0.000000px;}
.x2_c00153{left:112.050000px;}
.x3_c00153{left:113.100000px;}
.x4_c00153{left:114.150000px;}
.x5_c00153{left:115.500000px;}
.x6_c00153{left:117.450000px;}
.x7_c00153{left:118.800000px;}
.x9_c00153{left:207.901749px;}
.x1_c00153{left:237.600000px;}
.x8_c00153{left:475.800000px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls1_c00153{letter-spacing:0.000000pt;}
.ls0_c00153{letter-spacing:2.666667pt;}
.ls2_c00153{letter-spacing:5.333333pt;}
.ws0_c00153{word-spacing:-18.829333pt;}
.ws1_c00153{word-spacing:-18.090667pt;}
.ws2_c00153{word-spacing:0.000000pt;}
._2_c00153{margin-left:-14.784000pt;}
._c_c00153{margin-left:-12.752000pt;}
._6_c00153{margin-left:-10.920000pt;}
._4_c00153{margin-left:-9.856000pt;}
._12_c00153{margin-left:-8.917333pt;}
._5_c00153{margin-left:-7.989333pt;}
._3_c00153{margin-left:-6.720000pt;}
._b_c00153{margin-left:-5.594667pt;}
._7_c00153{margin-left:-4.704000pt;}
._a_c00153{margin-left:-3.706667pt;}
._8_c00153{margin-left:-2.800000pt;}
._9_c00153{margin-left:-1.120000pt;}
._1_c00153{width:1.418667pt;}
._0_c00153{width:3.136000pt;}
._d_c00153{width:4.288000pt;}
._11_c00153{width:5.312000pt;}
._15_c00153{width:6.405333pt;}
._10_c00153{width:8.277333pt;}
._f_c00153{width:10.032000pt;}
._14_c00153{width:11.306667pt;}
._16_c00153{width:12.480000pt;}
._e_c00153{width:14.538667pt;}
._13_c00153{width:15.429333pt;}
._17_c00153{width:21.026667pt;}
.fs5_c00153{font-size:42.666667pt;}
.fs4_c00153{font-size:48.000000pt;}
.fs1_c00153{font-size:56.000000pt;}
.fs3_c00153{font-size:61.333333pt;}
.fs2_c00153{font-size:64.000000pt;}
.fs0_c00153{font-size:74.666667pt;}
.y0_c00153{bottom:0.000000pt;}
.y1f_c00153{bottom:2.760000pt;}
.y1e_c00153{bottom:6.425204pt;}
.y1d_c00153{bottom:34.786667pt;}
.y1c_c00153{bottom:54.520000pt;}
.y1b_c00153{bottom:78.253333pt;}
.y1a_c00153{bottom:100.120000pt;}
.y19_c00153{bottom:122.386667pt;}
.y18_c00153{bottom:145.186667pt;}
.y17_c00153{bottom:168.920000pt;}
.y16_c00153{bottom:190.120000pt;}
.y15_c00153{bottom:212.120000pt;}
.y14_c00153{bottom:235.453333pt;}
.y13_c00153{bottom:256.786667pt;}
.y12_c00153{bottom:278.653333pt;}
.y11_c00153{bottom:301.186667pt;}
.y10_c00153{bottom:322.520000pt;}
.yf_c00153{bottom:344.653333pt;}
.ye_c00153{bottom:366.786667pt;}
.yd_c00153{bottom:388.786667pt;}
.yc_c00153{bottom:411.320000pt;}
.yb_c00153{bottom:432.786667pt;}
.ya_c00153{bottom:454.386667pt;}
.y9_c00153{bottom:476.386667pt;}
.y8_c00153{bottom:498.920000pt;}
.y7_c00153{bottom:520.386667pt;}
.y6_c00153{bottom:542.653333pt;}
.y5_c00153{bottom:564.920000pt;}
.y4_c00153{bottom:586.786667pt;}
.y3_c00153{bottom:608.920000pt;}
.y2_c00153{bottom:631.186667pt;}
.y1_c00153{bottom:653.986667pt;}
.h6_c00153{height:11.733399pt;}
.h7_c00153{height:38.937500pt;}
.h4_c00153{height:70.902344pt;}
.h2_c00153{height:73.281250pt;}
.h5_c00153{height:77.654948pt;}
.h3_c00153{height:81.031250pt;}
.h0_c00153{height:703.666667pt;}
.h1_c00153{height:704.000000pt;}
.w2_c00153{width:93.222667pt;}
.w0_c00153{width:455.266667pt;}
.w1_c00153{width:455.333333pt;}
.x0_c00153{left:0.000000pt;}
.x2_c00153{left:99.600000pt;}
.x3_c00153{left:100.533333pt;}
.x4_c00153{left:101.466667pt;}
.x5_c00153{left:102.666667pt;}
.x6_c00153{left:104.400000pt;}
.x7_c00153{left:105.600000pt;}
.x9_c00153{left:184.801554pt;}
.x1_c00153{left:211.200000pt;}
.x8_c00153{left:422.933333pt;}
}





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

.ir_c00154:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00154{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00154;src:url('chunks/assets/font_e9f24e358d41ed507dac3db8.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.480469;font-style:normal;font-weight:normal;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_e82a6e7fc08b129716b146ec.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00154{font-family:ff3_c00154;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00154{vertical-align:0.000000px;}
.ls0_c00154{letter-spacing:0.000000px;}
.ls1_c00154{letter-spacing:3.000000px;}
.sc__c00154{text-shadow:none;}
.sc0_c00154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00154{-webkit-text-stroke:0px transparent;}
.sc0_c00154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00154{word-spacing:-17.352000px;}
.ws1_c00154{word-spacing:0.000000px;}
._8_c00154{margin-left:-16.848000px;}
._f_c00154{margin-left:-8.568000px;}
._12_c00154{margin-left:-7.272000px;}
._d_c00154{margin-left:-6.264000px;}
._11_c00154{margin-left:-4.752000px;}
._c_c00154{margin-left:-3.744000px;}
._9_c00154{margin-left:-2.304000px;}
._a_c00154{margin-left:-1.080000px;}
._b_c00154{width:1.872000px;}
._4_c00154{width:3.384000px;}
._2_c00154{width:4.968000px;}
._5_c00154{width:6.264000px;}
._1_c00154{width:8.064000px;}
._3_c00154{width:9.720000px;}
._6_c00154{width:11.016000px;}
._e_c00154{width:12.096000px;}
._0_c00154{width:13.248000px;}
._10_c00154{width:15.984000px;}
._13_c00154{width:17.136000px;}
._15_c00154{width:18.432000px;}
._14_c00154{width:23.832000px;}
._17_c00154{width:27.432000px;}
._16_c00154{width:29.808000px;}
._18_c00154{width:192.672000px;}
._7_c00154{width:387.648000px;}
.fc2_c00154{color:transparent;}
.fc1_c00154{color:rgb(128,128,128);}
.fc0_c00154{color:rgb(0,0,0);}
.fs1_c00154{font-size:48.000000px;}
.fs0_c00154{font-size:72.000000px;}
.y0_c00154{bottom:0.000000px;}
.y1f_c00154{bottom:3.105000px;}
.y1e_c00154{bottom:7.228363px;}
.y1d_c00154{bottom:45.450000px;}
.y1c_c00154{bottom:69.750000px;}
.y1b_c00154{bottom:94.800000px;}
.y1a_c00154{bottom:119.700000px;}
.y19_c00154{bottom:144.750000px;}
.y18_c00154{bottom:169.650000px;}
.y17_c00154{bottom:194.400000px;}
.y16_c00154{bottom:219.600000px;}
.y15_c00154{bottom:244.650000px;}
.y14_c00154{bottom:268.950000px;}
.y13_c00154{bottom:293.250000px;}
.y12_c00154{bottom:315.450000px;}
.y11_c00154{bottom:339.450000px;}
.y10_c00154{bottom:364.500000px;}
.yf_c00154{bottom:388.800000px;}
.ye_c00154{bottom:413.400000px;}
.yd_c00154{bottom:438.300000px;}
.yc_c00154{bottom:462.600000px;}
.yb_c00154{bottom:488.250000px;}
.ya_c00154{bottom:512.550000px;}
.y9_c00154{bottom:537.900000px;}
.y8_c00154{bottom:562.650000px;}
.y7_c00154{bottom:586.950000px;}
.y6_c00154{bottom:611.250000px;}
.y5_c00154{bottom:636.150000px;}
.y4_c00154{bottom:660.750000px;}
.y3_c00154{bottom:684.450000px;}
.y2_c00154{bottom:709.050000px;}
.y1_c00154{bottom:733.950000px;}
.h4_c00154{height:13.200074px;}
.h5_c00154{height:43.804688px;}
.h2_c00154{height:84.269531px;}
.h3_c00154{height:91.160156px;}
.h1_c00154{height:793.500000px;}
.h0_c00154{height:793.800000px;}
.w2_c00154{width:104.875500px;}
.w0_c00154{width:532.200000px;}
.w1_c00154{width:532.500000px;}
.x0_c00154{left:0.000000px;}
.x8_c00154{left:28.050000px;}
.x7_c00154{left:29.700000px;}
.x6_c00154{left:30.750000px;}
.x3_c00154{left:32.100000px;}
.x2_c00154{left:33.300000px;}
.x4_c00154{left:37.350000px;}
.x5_c00154{left:40.200000px;}
.x1_c00154{left:146.400000px;}
.xa_c00154{left:217.914230px;}
.x9_c00154{left:317.550000px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls0_c00154{letter-spacing:0.000000pt;}
.ls1_c00154{letter-spacing:2.666667pt;}
.ws0_c00154{word-spacing:-15.424000pt;}
.ws1_c00154{word-spacing:0.000000pt;}
._8_c00154{margin-left:-14.976000pt;}
._f_c00154{margin-left:-7.616000pt;}
._12_c00154{margin-left:-6.464000pt;}
._d_c00154{margin-left:-5.568000pt;}
._11_c00154{margin-left:-4.224000pt;}
._c_c00154{margin-left:-3.328000pt;}
._9_c00154{margin-left:-2.048000pt;}
._a_c00154{margin-left:-0.960000pt;}
._b_c00154{width:1.664000pt;}
._4_c00154{width:3.008000pt;}
._2_c00154{width:4.416000pt;}
._5_c00154{width:5.568000pt;}
._1_c00154{width:7.168000pt;}
._3_c00154{width:8.640000pt;}
._6_c00154{width:9.792000pt;}
._e_c00154{width:10.752000pt;}
._0_c00154{width:11.776000pt;}
._10_c00154{width:14.208000pt;}
._13_c00154{width:15.232000pt;}
._15_c00154{width:16.384000pt;}
._14_c00154{width:21.184000pt;}
._17_c00154{width:24.384000pt;}
._16_c00154{width:26.496000pt;}
._18_c00154{width:171.264000pt;}
._7_c00154{width:344.576000pt;}
.fs1_c00154{font-size:42.666667pt;}
.fs0_c00154{font-size:64.000000pt;}
.y0_c00154{bottom:0.000000pt;}
.y1f_c00154{bottom:2.760000pt;}
.y1e_c00154{bottom:6.425212pt;}
.y1d_c00154{bottom:40.400000pt;}
.y1c_c00154{bottom:62.000000pt;}
.y1b_c00154{bottom:84.266667pt;}
.y1a_c00154{bottom:106.400000pt;}
.y19_c00154{bottom:128.666667pt;}
.y18_c00154{bottom:150.800000pt;}
.y17_c00154{bottom:172.800000pt;}
.y16_c00154{bottom:195.200000pt;}
.y15_c00154{bottom:217.466667pt;}
.y14_c00154{bottom:239.066667pt;}
.y13_c00154{bottom:260.666667pt;}
.y12_c00154{bottom:280.400000pt;}
.y11_c00154{bottom:301.733333pt;}
.y10_c00154{bottom:324.000000pt;}
.yf_c00154{bottom:345.600000pt;}
.ye_c00154{bottom:367.466667pt;}
.yd_c00154{bottom:389.600000pt;}
.yc_c00154{bottom:411.200000pt;}
.yb_c00154{bottom:434.000000pt;}
.ya_c00154{bottom:455.600000pt;}
.y9_c00154{bottom:478.133333pt;}
.y8_c00154{bottom:500.133333pt;}
.y7_c00154{bottom:521.733333pt;}
.y6_c00154{bottom:543.333333pt;}
.y5_c00154{bottom:565.466667pt;}
.y4_c00154{bottom:587.333333pt;}
.y3_c00154{bottom:608.400000pt;}
.y2_c00154{bottom:630.266667pt;}
.y1_c00154{bottom:652.400000pt;}
.h4_c00154{height:11.733399pt;}
.h5_c00154{height:38.937500pt;}
.h2_c00154{height:74.906250pt;}
.h3_c00154{height:81.031250pt;}
.h1_c00154{height:705.333333pt;}
.h0_c00154{height:705.600000pt;}
.w2_c00154{width:93.222667pt;}
.w0_c00154{width:473.066667pt;}
.w1_c00154{width:473.333333pt;}
.x0_c00154{left:0.000000pt;}
.x8_c00154{left:24.933333pt;}
.x7_c00154{left:26.400000pt;}
.x6_c00154{left:27.333333pt;}
.x3_c00154{left:28.533333pt;}
.x2_c00154{left:29.600000pt;}
.x4_c00154{left:33.200000pt;}
.x5_c00154{left:35.733333pt;}
.x1_c00154{left:130.133333pt;}
.xa_c00154{left:193.701538pt;}
.x9_c00154{left:282.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f44d4cccfda0ed0d0b574c9.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00155;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00155;src:url('chunks/assets/font_b7a5456acbeffba22c26d858.woff2')format("woff");}.ff3_c00155{font-family:ff3_c00155;line-height:1.568848;font-style:normal;font-weight:normal;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_b94e65c53712e6c5b6c52aba.woff2')format("woff");}.ff4_c00155{font-family:ff4_c00155;line-height:1.480469;font-style:normal;font-weight:normal;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_1686260c341064cb24626df6.woff2')format("woff");}.ff5_c00155{font-family:ff5_c00155;line-height:1.575000;font-style:normal;font-weight:normal;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_2ca2acd3b07eb9563a0bf451.woff2')format("woff");}.ff6_c00155{font-family:ff6_c00155;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00155;src:url('chunks/assets/font_a7a09a7331966efb47ba8019.woff2')format("woff");}.ff7_c00155{font-family:ff7_c00155;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00155;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff8_c00155{font-family:ff8_c00155;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00155{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00155{vertical-align:0.000000px;}
.ls4_c00155{letter-spacing:-3.000000px;}
.ls2_c00155{letter-spacing:0.000000px;}
.ls3_c00155{letter-spacing:3.000000px;}
.ls0_c00155{letter-spacing:5.988000px;}
.ls5_c00155{letter-spacing:6.000000px;}
.ls6_c00155{letter-spacing:9.000000px;}
.ls1_c00155{letter-spacing:9.180000px;}
.ls7_c00155{letter-spacing:12.000000px;}
.sc__c00155{text-shadow:none;}
.sc0_c00155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00155{-webkit-text-stroke:0px transparent;}
.sc0_c00155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00155{word-spacing:-48.000000px;}
.ws4_c00155{word-spacing:-29.352000px;}
.ws0_c00155{word-spacing:-27.051000px;}
.ws1_c00155{word-spacing:-20.352000px;}
.ws2_c00155{word-spacing:-18.000000px;}
.ws5_c00155{word-spacing:0.000000px;}
._1c_c00155{margin-left:-33.108000px;}
._20_c00155{margin-left:-28.101000px;}
._18_c00155{margin-left:-21.492000px;}
._11_c00155{margin-left:-17.352000px;}
._13_c00155{margin-left:-15.420000px;}
._15_c00155{margin-left:-13.176000px;}
._17_c00155{margin-left:-11.772000px;}
._14_c00155{margin-left:-10.728000px;}
._16_c00155{margin-left:-9.648000px;}
._12_c00155{margin-left:-8.640000px;}
._7_c00155{margin-left:-6.984000px;}
._5_c00155{margin-left:-5.184000px;}
._6_c00155{margin-left:-4.104000px;}
._9_c00155{margin-left:-3.096000px;}
._2_c00155{margin-left:-2.016000px;}
._8_c00155{margin-left:-1.008000px;}
._1_c00155{width:1.512000px;}
._0_c00155{width:3.276000px;}
._c_c00155{width:4.464000px;}
._b_c00155{width:5.832000px;}
._10_c00155{width:6.912000px;}
._3_c00155{width:9.432000px;}
._1a_c00155{width:10.560000px;}
._4_c00155{width:12.024000px;}
._d_c00155{width:13.212000px;}
._e_c00155{width:14.976000px;}
._a_c00155{width:16.272000px;}
._1d_c00155{width:17.544000px;}
._f_c00155{width:18.576000px;}
._19_c00155{width:21.672000px;}
._1b_c00155{width:28.656000px;}
._1e_c00155{width:243.210000px;}
._21_c00155{width:484.503000px;}
._1f_c00155{width:537.312000px;}
.fc2_c00155{color:transparent;}
.fc1_c00155{color:rgb(128,128,128);}
.fc0_c00155{color:rgb(0,0,0);}
.fs6_c00155{font-size:48.000000px;}
.fs5_c00155{font-size:60.000000px;}
.fs2_c00155{font-size:63.000000px;}
.fs1_c00155{font-size:72.000000px;}
.fs3_c00155{font-size:78.000000px;}
.fs0_c00155{font-size:84.000000px;}
.fs4_c00155{font-size:87.000000px;}
.y0_c00155{bottom:0.000000px;}
.y1f_c00155{bottom:3.105000px;}
.y1e_c00155{bottom:7.228363px;}
.y1d_c00155{bottom:32.700000px;}
.y1c_c00155{bottom:58.650000px;}
.y1b_c00155{bottom:84.000000px;}
.y1a_c00155{bottom:108.450000px;}
.y19_c00155{bottom:133.650000px;}
.y18_c00155{bottom:157.950000px;}
.y17_c00155{bottom:183.600000px;}
.y16_c00155{bottom:208.950000px;}
.y15_c00155{bottom:234.150000px;}
.y14_c00155{bottom:261.000000px;}
.y13_c00155{bottom:283.200000px;}
.y12_c00155{bottom:308.550000px;}
.y11_c00155{bottom:332.100000px;}
.y10_c00155{bottom:357.450000px;}
.yf_c00155{bottom:382.950000px;}
.ye_c00155{bottom:406.050000px;}
.yd_c00155{bottom:431.550000px;}
.yc_c00155{bottom:455.550000px;}
.yb_c00155{bottom:480.300000px;}
.ya_c00155{bottom:505.200000px;}
.y9_c00155{bottom:530.100000px;}
.y8_c00155{bottom:554.850000px;}
.y7_c00155{bottom:579.900000px;}
.y6_c00155{bottom:604.200000px;}
.y5_c00155{bottom:628.800000px;}
.y4_c00155{bottom:654.000000px;}
.y3_c00155{bottom:678.750000px;}
.y2_c00155{bottom:703.050000px;}
.y1_c00155{bottom:728.400000px;}
.h6_c00155{height:13.200074px;}
.h7_c00155{height:43.804688px;}
.h4_c00155{height:78.609375px;}
.h2_c00155{height:82.441406px;}
.h3_c00155{height:91.160156px;}
.h5_c00155{height:110.151855px;}
.h1_c00155{height:773.250000px;}
.h0_c00155{height:773.550000px;}
.w2_c00155{width:104.875500px;}
.w0_c00155{width:521.625000px;}
.w1_c00155{width:522.000000px;}
.x0_c00155{left:0.000000px;}
.x2_c00155{left:111.000000px;}
.x3_c00155{left:112.950000px;}
.x4_c00155{left:114.300000px;}
.x5_c00155{left:115.350000px;}
.x6_c00155{left:116.700000px;}
.x7_c00155{left:117.750000px;}
.x8_c00155{left:119.400000px;}
.x9_c00155{left:120.450000px;}
.xb_c00155{left:121.800000px;}
.xa_c00155{left:122.850000px;}
.xc_c00155{left:125.250000px;}
.xd_c00155{left:212.626740px;}
.x1_c00155{left:223.350000px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls4_c00155{letter-spacing:-2.666667pt;}
.ls2_c00155{letter-spacing:0.000000pt;}
.ls3_c00155{letter-spacing:2.666667pt;}
.ls0_c00155{letter-spacing:5.322667pt;}
.ls5_c00155{letter-spacing:5.333333pt;}
.ls6_c00155{letter-spacing:8.000000pt;}
.ls1_c00155{letter-spacing:8.160000pt;}
.ls7_c00155{letter-spacing:10.666667pt;}
.ws3_c00155{word-spacing:-42.666667pt;}
.ws4_c00155{word-spacing:-26.090667pt;}
.ws0_c00155{word-spacing:-24.045333pt;}
.ws1_c00155{word-spacing:-18.090667pt;}
.ws2_c00155{word-spacing:-16.000000pt;}
.ws5_c00155{word-spacing:0.000000pt;}
._1c_c00155{margin-left:-29.429333pt;}
._20_c00155{margin-left:-24.978667pt;}
._18_c00155{margin-left:-19.104000pt;}
._11_c00155{margin-left:-15.424000pt;}
._13_c00155{margin-left:-13.706667pt;}
._15_c00155{margin-left:-11.712000pt;}
._17_c00155{margin-left:-10.464000pt;}
._14_c00155{margin-left:-9.536000pt;}
._16_c00155{margin-left:-8.576000pt;}
._12_c00155{margin-left:-7.680000pt;}
._7_c00155{margin-left:-6.208000pt;}
._5_c00155{margin-left:-4.608000pt;}
._6_c00155{margin-left:-3.648000pt;}
._9_c00155{margin-left:-2.752000pt;}
._2_c00155{margin-left:-1.792000pt;}
._8_c00155{margin-left:-0.896000pt;}
._1_c00155{width:1.344000pt;}
._0_c00155{width:2.912000pt;}
._c_c00155{width:3.968000pt;}
._b_c00155{width:5.184000pt;}
._10_c00155{width:6.144000pt;}
._3_c00155{width:8.384000pt;}
._1a_c00155{width:9.386667pt;}
._4_c00155{width:10.688000pt;}
._d_c00155{width:11.744000pt;}
._e_c00155{width:13.312000pt;}
._a_c00155{width:14.464000pt;}
._1d_c00155{width:15.594667pt;}
._f_c00155{width:16.512000pt;}
._19_c00155{width:19.264000pt;}
._1b_c00155{width:25.472000pt;}
._1e_c00155{width:216.186667pt;}
._21_c00155{width:430.669333pt;}
._1f_c00155{width:477.610667pt;}
.fs6_c00155{font-size:42.666667pt;}
.fs5_c00155{font-size:53.333333pt;}
.fs2_c00155{font-size:56.000000pt;}
.fs1_c00155{font-size:64.000000pt;}
.fs3_c00155{font-size:69.333333pt;}
.fs0_c00155{font-size:74.666667pt;}
.fs4_c00155{font-size:77.333333pt;}
.y0_c00155{bottom:0.000000pt;}
.y1f_c00155{bottom:2.760000pt;}
.y1e_c00155{bottom:6.425212pt;}
.y1d_c00155{bottom:29.066667pt;}
.y1c_c00155{bottom:52.133333pt;}
.y1b_c00155{bottom:74.666667pt;}
.y1a_c00155{bottom:96.400000pt;}
.y19_c00155{bottom:118.800000pt;}
.y18_c00155{bottom:140.400000pt;}
.y17_c00155{bottom:163.200000pt;}
.y16_c00155{bottom:185.733333pt;}
.y15_c00155{bottom:208.133333pt;}
.y14_c00155{bottom:232.000000pt;}
.y13_c00155{bottom:251.733333pt;}
.y12_c00155{bottom:274.266667pt;}
.y11_c00155{bottom:295.200000pt;}
.y10_c00155{bottom:317.733333pt;}
.yf_c00155{bottom:340.400000pt;}
.ye_c00155{bottom:360.933333pt;}
.yd_c00155{bottom:383.600000pt;}
.yc_c00155{bottom:404.933333pt;}
.yb_c00155{bottom:426.933333pt;}
.ya_c00155{bottom:449.066667pt;}
.y9_c00155{bottom:471.200000pt;}
.y8_c00155{bottom:493.200000pt;}
.y7_c00155{bottom:515.466667pt;}
.y6_c00155{bottom:537.066667pt;}
.y5_c00155{bottom:558.933333pt;}
.y4_c00155{bottom:581.333333pt;}
.y3_c00155{bottom:603.333333pt;}
.y2_c00155{bottom:624.933333pt;}
.y1_c00155{bottom:647.466667pt;}
.h6_c00155{height:11.733399pt;}
.h7_c00155{height:38.937500pt;}
.h4_c00155{height:69.875000pt;}
.h2_c00155{height:73.281250pt;}
.h3_c00155{height:81.031250pt;}
.h5_c00155{height:97.912760pt;}
.h1_c00155{height:687.333333pt;}
.h0_c00155{height:687.600000pt;}
.w2_c00155{width:93.222667pt;}
.w0_c00155{width:463.666667pt;}
.w1_c00155{width:464.000000pt;}
.x0_c00155{left:0.000000pt;}
.x2_c00155{left:98.666667pt;}
.x3_c00155{left:100.400000pt;}
.x4_c00155{left:101.600000pt;}
.x5_c00155{left:102.533333pt;}
.x6_c00155{left:103.733333pt;}
.x7_c00155{left:104.666667pt;}
.x8_c00155{left:106.133333pt;}
.x9_c00155{left:107.066667pt;}
.xb_c00155{left:108.266667pt;}
.xa_c00155{left:109.200000pt;}
.xc_c00155{left:111.333333pt;}
.xd_c00155{left:189.001546pt;}
.x1_c00155{left:198.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0daafaf01f972dde1b916e00.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00156;src:url('chunks/assets/font_59919893eeeddb7f4cfeeceb.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:1.568848;font-style:normal;font-weight:normal;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_0149cf5d1b788d67f2971101.woff2')format("woff");}.ff3_c00156{font-family:ff3_c00156;line-height:1.575000;font-style:normal;font-weight:normal;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_d81935539366aca9e803624c.woff2')format("woff");}.ff4_c00156{font-family:ff4_c00156;line-height:1.480469;font-style:normal;font-weight:normal;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_3d41db437173fcce534b9d57.woff2')format("woff");}.ff5_c00156{font-family:ff5_c00156;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00156;src:url('chunks/assets/font_884f02d9147f56bee6101a10.woff2')format("woff");}.ff6_c00156{font-family:ff6_c00156;line-height:1.402354;font-style:normal;font-weight: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_c00156;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00156{font-family:ff7_c00156;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00156{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00156{vertical-align:0.000000px;}
.ls4_c00156{letter-spacing:-3.000000px;}
.ls1_c00156{letter-spacing:0.000000px;}
.ls3_c00156{letter-spacing:3.000000px;}
.ls0_c00156{letter-spacing:3.648000px;}
.ls5_c00156{letter-spacing:6.000000px;}
.ls2_c00156{letter-spacing:9.000000px;}
.sc__c00156{text-shadow:none;}
.sc0_c00156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00156{-webkit-text-stroke:0px transparent;}
.sc0_c00156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00156{word-spacing:-30.000000px;}
.ws1_c00156{word-spacing:-27.051000px;}
.ws3_c00156{word-spacing:-21.000000px;}
.ws4_c00156{word-spacing:-20.352000px;}
.ws2_c00156{word-spacing:-17.352000px;}
.ws5_c00156{word-spacing:0.000000px;}
._10_c00156{margin-left:-39.756000px;}
._22_c00156{margin-left:-29.220000px;}
._1c_c00156{margin-left:-22.548000px;}
._1d_c00156{margin-left:-17.772000px;}
._16_c00156{margin-left:-14.052000px;}
._1a_c00156{margin-left:-12.636000px;}
._c_c00156{margin-left:-10.704000px;}
._1b_c00156{margin-left:-9.336000px;}
._18_c00156{margin-left:-8.268000px;}
._2_c00156{margin-left:-6.888000px;}
._d_c00156{margin-left:-5.484000px;}
._8_c00156{margin-left:-3.852000px;}
._4_c00156{margin-left:-2.436000px;}
._9_c00156{margin-left:-1.236000px;}
._3_c00156{width:1.596000px;}
._6_c00156{width:2.856000px;}
._5_c00156{width:4.704000px;}
._1_c00156{width:6.468000px;}
._13_c00156{width:7.572000px;}
._12_c00156{width:9.432000px;}
._0_c00156{width:10.752000px;}
._11_c00156{width:11.772000px;}
._a_c00156{width:12.996000px;}
._b_c00156{width:14.196000px;}
._15_c00156{width:15.948000px;}
._f_c00156{width:17.496000px;}
._17_c00156{width:19.140000px;}
._20_c00156{width:28.266000px;}
._e_c00156{width:32.580000px;}
._14_c00156{width:38.352000px;}
._21_c00156{width:144.792000px;}
._7_c00156{width:364.860000px;}
._1e_c00156{width:586.296000px;}
._1f_c00156{width:885.762000px;}
._19_c00156{width:1163.292000px;}
.fc2_c00156{color:transparent;}
.fc1_c00156{color:rgb(128,128,128);}
.fc0_c00156{color:rgb(0,0,0);}
.fs6_c00156{font-size:24.000000px;}
.fs3_c00156{font-size:42.000000px;}
.fs7_c00156{font-size:48.000000px;}
.fs5_c00156{font-size:51.000000px;}
.fs2_c00156{font-size:63.000000px;}
.fs1_c00156{font-size:72.000000px;}
.fs4_c00156{font-size:78.000000px;}
.fs0_c00156{font-size:84.000000px;}
.y0_c00156{bottom:0.000000px;}
.y21_c00156{bottom:3.105000px;}
.y20_c00156{bottom:7.228369px;}
.y1c_c00156{bottom:36.420000px;}
.y1b_c00156{bottom:84.720000px;}
.y1f_c00156{bottom:94.170000px;}
.y1a_c00156{bottom:112.620000px;}
.y1e_c00156{bottom:116.670000px;}
.y1d_c00156{bottom:133.920000px;}
.y19_c00156{bottom:137.370000px;}
.y18_c00156{bottom:161.670000px;}
.y17_c00156{bottom:187.020000px;}
.y16_c00156{bottom:212.520000px;}
.y15_c00156{bottom:237.270000px;}
.y14_c00156{bottom:261.270000px;}
.y13_c00156{bottom:286.470000px;}
.y12_c00156{bottom:309.120000px;}
.y11_c00156{bottom:332.670000px;}
.y10_c00156{bottom:357.420000px;}
.yf_c00156{bottom:381.720000px;}
.ye_c00156{bottom:405.720000px;}
.yd_c00156{bottom:430.920000px;}
.yc_c00156{bottom:455.220000px;}
.yb_c00156{bottom:479.970000px;}
.ya_c00156{bottom:504.570000px;}
.y9_c00156{bottom:529.170000px;}
.y8_c00156{bottom:553.770000px;}
.y7_c00156{bottom:578.520000px;}
.y6_c00156{bottom:603.420000px;}
.y5_c00156{bottom:627.720000px;}
.y4_c00156{bottom:652.320000px;}
.y3_c00156{bottom:676.620000px;}
.y2_c00156{bottom:701.220000px;}
.y1_c00156{bottom:726.570000px;}
.h6_c00156{height:13.200073px;}
.h7_c00156{height:43.804688px;}
.h5_c00156{height:64.571777px;}
.h4_c00156{height:76.552734px;}
.h2_c00156{height:82.400391px;}
.h3_c00156{height:91.160156px;}
.h0_c00156{height:782.700000px;}
.h1_c00156{height:783.000000px;}
.w2_c00156{width:104.875500px;}
.w1_c00156{width:528.750000px;}
.w0_c00156{width:528.900000px;}
.x0_c00156{left:0.000000px;}
.x6_c00156{left:16.200000px;}
.x2_c00156{left:18.300000px;}
.x5_c00156{left:19.950000px;}
.x4_c00156{left:21.000000px;}
.x3_c00156{left:22.050000px;}
.x1_c00156{left:143.700000px;}
.x9_c00156{left:216.264267px;}
.x8_c00156{left:416.850000px;}
.x7_c00156{left:420.750000px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls4_c00156{letter-spacing:-2.666667pt;}
.ls1_c00156{letter-spacing:0.000000pt;}
.ls3_c00156{letter-spacing:2.666667pt;}
.ls0_c00156{letter-spacing:3.242667pt;}
.ls5_c00156{letter-spacing:5.333333pt;}
.ls2_c00156{letter-spacing:8.000000pt;}
.ws0_c00156{word-spacing:-26.666667pt;}
.ws1_c00156{word-spacing:-24.045333pt;}
.ws3_c00156{word-spacing:-18.666667pt;}
.ws4_c00156{word-spacing:-18.090667pt;}
.ws2_c00156{word-spacing:-15.424000pt;}
.ws5_c00156{word-spacing:0.000000pt;}
._10_c00156{margin-left:-35.338667pt;}
._22_c00156{margin-left:-25.973333pt;}
._1c_c00156{margin-left:-20.042667pt;}
._1d_c00156{margin-left:-15.797333pt;}
._16_c00156{margin-left:-12.490667pt;}
._1a_c00156{margin-left:-11.232000pt;}
._c_c00156{margin-left:-9.514667pt;}
._1b_c00156{margin-left:-8.298667pt;}
._18_c00156{margin-left:-7.349333pt;}
._2_c00156{margin-left:-6.122667pt;}
._d_c00156{margin-left:-4.874667pt;}
._8_c00156{margin-left:-3.424000pt;}
._4_c00156{margin-left:-2.165333pt;}
._9_c00156{margin-left:-1.098667pt;}
._3_c00156{width:1.418667pt;}
._6_c00156{width:2.538667pt;}
._5_c00156{width:4.181333pt;}
._1_c00156{width:5.749333pt;}
._13_c00156{width:6.730667pt;}
._12_c00156{width:8.384000pt;}
._0_c00156{width:9.557333pt;}
._11_c00156{width:10.464000pt;}
._a_c00156{width:11.552000pt;}
._b_c00156{width:12.618667pt;}
._15_c00156{width:14.176000pt;}
._f_c00156{width:15.552000pt;}
._17_c00156{width:17.013333pt;}
._20_c00156{width:25.125333pt;}
._e_c00156{width:28.960000pt;}
._14_c00156{width:34.090667pt;}
._21_c00156{width:128.704000pt;}
._7_c00156{width:324.320000pt;}
._1e_c00156{width:521.152000pt;}
._1f_c00156{width:787.344000pt;}
._19_c00156{width:1034.037333pt;}
.fs6_c00156{font-size:21.333333pt;}
.fs3_c00156{font-size:37.333333pt;}
.fs7_c00156{font-size:42.666667pt;}
.fs5_c00156{font-size:45.333333pt;}
.fs2_c00156{font-size:56.000000pt;}
.fs1_c00156{font-size:64.000000pt;}
.fs4_c00156{font-size:69.333333pt;}
.fs0_c00156{font-size:74.666667pt;}
.y0_c00156{bottom:0.000000pt;}
.y21_c00156{bottom:2.760000pt;}
.y20_c00156{bottom:6.425217pt;}
.y1c_c00156{bottom:32.373333pt;}
.y1b_c00156{bottom:75.306667pt;}
.y1f_c00156{bottom:83.706667pt;}
.y1a_c00156{bottom:100.106667pt;}
.y1e_c00156{bottom:103.706667pt;}
.y1d_c00156{bottom:119.040000pt;}
.y19_c00156{bottom:122.106667pt;}
.y18_c00156{bottom:143.706667pt;}
.y17_c00156{bottom:166.240000pt;}
.y16_c00156{bottom:188.906667pt;}
.y15_c00156{bottom:210.906667pt;}
.y14_c00156{bottom:232.240000pt;}
.y13_c00156{bottom:254.640000pt;}
.y12_c00156{bottom:274.773333pt;}
.y11_c00156{bottom:295.706667pt;}
.y10_c00156{bottom:317.706667pt;}
.yf_c00156{bottom:339.306667pt;}
.ye_c00156{bottom:360.640000pt;}
.yd_c00156{bottom:383.040000pt;}
.yc_c00156{bottom:404.640000pt;}
.yb_c00156{bottom:426.640000pt;}
.ya_c00156{bottom:448.506667pt;}
.y9_c00156{bottom:470.373333pt;}
.y8_c00156{bottom:492.240000pt;}
.y7_c00156{bottom:514.240000pt;}
.y6_c00156{bottom:536.373333pt;}
.y5_c00156{bottom:557.973333pt;}
.y4_c00156{bottom:579.840000pt;}
.y3_c00156{bottom:601.440000pt;}
.y2_c00156{bottom:623.306667pt;}
.y1_c00156{bottom:645.840000pt;}
.h6_c00156{height:11.733399pt;}
.h7_c00156{height:38.937500pt;}
.h5_c00156{height:57.397135pt;}
.h4_c00156{height:68.046875pt;}
.h2_c00156{height:73.244792pt;}
.h3_c00156{height:81.031250pt;}
.h0_c00156{height:695.733333pt;}
.h1_c00156{height:696.000000pt;}
.w2_c00156{width:93.222667pt;}
.w1_c00156{width:470.000000pt;}
.w0_c00156{width:470.133333pt;}
.x0_c00156{left:0.000000pt;}
.x6_c00156{left:14.400000pt;}
.x2_c00156{left:16.266667pt;}
.x5_c00156{left:17.733333pt;}
.x4_c00156{left:18.666667pt;}
.x3_c00156{left:19.600000pt;}
.x1_c00156{left:127.733333pt;}
.x9_c00156{left:192.234904pt;}
.x8_c00156{left:370.533333pt;}
.x7_c00156{left:374.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_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_db647b0670e5bf648e7016cc.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.480469;font-style:normal;font-weight:normal;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_8b3a2fba93d7fd122fc8000b.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.568848;font-style:normal;font-weight:normal;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_3ce76d226022e7d656d8cf01.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00157{font-family:ff4_c00157;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00157{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.ls2_c00157{letter-spacing:0.000000px;}
.ls3_c00157{letter-spacing:3.000000px;}
.ls0_c00157{letter-spacing:10.188000px;}
.ls1_c00157{letter-spacing:19.104000px;}
.sc__c00157{text-shadow:none;}
.sc0_c00157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00157{-webkit-text-stroke:0px transparent;}
.sc0_c00157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00157{word-spacing:-17.352000px;}
.ws2_c00157{word-spacing:0.000000px;}
.ws1_c00157{word-spacing:0.312000px;}
._18_c00157{margin-left:-17.940000px;}
._17_c00157{margin-left:-13.044000px;}
._16_c00157{margin-left:-11.952000px;}
._11_c00157{margin-left:-9.288000px;}
._10_c00157{margin-left:-7.332000px;}
._7_c00157{margin-left:-5.916000px;}
._6_c00157{margin-left:-4.608000px;}
._b_c00157{margin-left:-2.940000px;}
._5_c00157{margin-left:-1.440000px;}
._4_c00157{width:1.368000px;}
._8_c00157{width:2.376000px;}
._9_c00157{width:4.032000px;}
._e_c00157{width:5.100000px;}
._1_c00157{width:6.480000px;}
._d_c00157{width:8.280000px;}
._a_c00157{width:9.324000px;}
._14_c00157{width:10.512000px;}
._3_c00157{width:11.700000px;}
._2_c00157{width:13.020000px;}
._f_c00157{width:14.040000px;}
._c_c00157{width:15.696000px;}
._0_c00157{width:16.860000px;}
._12_c00157{width:18.756000px;}
._1d_c00157{width:19.872000px;}
._13_c00157{width:21.384000px;}
._1c_c00157{width:23.424000px;}
._1a_c00157{width:24.900000px;}
._1b_c00157{width:26.040000px;}
._15_c00157{width:27.600000px;}
._19_c00157{width:67.548000px;}
.fc2_c00157{color:transparent;}
.fc1_c00157{color:rgb(128,128,128);}
.fc0_c00157{color:rgb(0,0,0);}
.fs4_c00157{font-size:48.000000px;}
.fs2_c00157{font-size:54.000000px;}
.fs0_c00157{font-size:60.000000px;}
.fs3_c00157{font-size:63.000000px;}
.fs1_c00157{font-size:72.000000px;}
.y0_c00157{bottom:0.000000px;}
.y1e_c00157{bottom:3.105000px;}
.y1d_c00157{bottom:7.228363px;}
.y1c_c00157{bottom:64.350000px;}
.y1b_c00157{bottom:89.100000px;}
.y1a_c00157{bottom:115.650000px;}
.y19_c00157{bottom:140.100000px;}
.y18_c00157{bottom:163.950000px;}
.y17_c00157{bottom:190.950000px;}
.y16_c00157{bottom:216.600000px;}
.y15_c00157{bottom:241.350000px;}
.y14_c00157{bottom:266.550000px;}
.y13_c00157{bottom:291.300000px;}
.y12_c00157{bottom:316.200000px;}
.y11_c00157{bottom:341.550000px;}
.y10_c00157{bottom:365.550000px;}
.yf_c00157{bottom:390.150000px;}
.ye_c00157{bottom:414.450000px;}
.yd_c00157{bottom:439.500000px;}
.yc_c00157{bottom:464.100000px;}
.yb_c00157{bottom:488.700000px;}
.ya_c00157{bottom:513.750000px;}
.y9_c00157{bottom:538.350000px;}
.y8_c00157{bottom:563.250000px;}
.y7_c00157{bottom:588.000000px;}
.y6_c00157{bottom:612.600000px;}
.y5_c00157{bottom:637.200000px;}
.y4_c00157{bottom:661.500000px;}
.y3_c00157{bottom:686.550000px;}
.y2_c00157{bottom:711.150000px;}
.y1_c00157{bottom:737.400000px;}
.h4_c00157{height:13.200074px;}
.h5_c00157{height:43.804688px;}
.h2_c00157{height:75.966797px;}
.h3_c00157{height:91.160156px;}
.h0_c00157{height:797.850000px;}
.h1_c00157{height:798.000000px;}
.w2_c00157{width:104.875500px;}
.w1_c00157{width:536.250000px;}
.w0_c00157{width:536.475000px;}
.x0_c00157{left:0.000000px;}
.x6_c00157{left:61.050000px;}
.x7_c00157{left:64.500000px;}
.x2_c00157{left:137.400000px;}
.x3_c00157{left:139.050000px;}
.x4_c00157{left:141.150000px;}
.x5_c00157{left:142.200000px;}
.x8_c00157{left:220.051758px;}
.x1_c00157{left:259.500000px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls2_c00157{letter-spacing:0.000000pt;}
.ls3_c00157{letter-spacing:2.666667pt;}
.ls0_c00157{letter-spacing:9.056000pt;}
.ls1_c00157{letter-spacing:16.981333pt;}
.ws0_c00157{word-spacing:-15.424000pt;}
.ws2_c00157{word-spacing:0.000000pt;}
.ws1_c00157{word-spacing:0.277333pt;}
._18_c00157{margin-left:-15.946667pt;}
._17_c00157{margin-left:-11.594667pt;}
._16_c00157{margin-left:-10.624000pt;}
._11_c00157{margin-left:-8.256000pt;}
._10_c00157{margin-left:-6.517333pt;}
._7_c00157{margin-left:-5.258667pt;}
._6_c00157{margin-left:-4.096000pt;}
._b_c00157{margin-left:-2.613333pt;}
._5_c00157{margin-left:-1.280000pt;}
._4_c00157{width:1.216000pt;}
._8_c00157{width:2.112000pt;}
._9_c00157{width:3.584000pt;}
._e_c00157{width:4.533333pt;}
._1_c00157{width:5.760000pt;}
._d_c00157{width:7.360000pt;}
._a_c00157{width:8.288000pt;}
._14_c00157{width:9.344000pt;}
._3_c00157{width:10.400000pt;}
._2_c00157{width:11.573333pt;}
._f_c00157{width:12.480000pt;}
._c_c00157{width:13.952000pt;}
._0_c00157{width:14.986667pt;}
._12_c00157{width:16.672000pt;}
._1d_c00157{width:17.664000pt;}
._13_c00157{width:19.008000pt;}
._1c_c00157{width:20.821333pt;}
._1a_c00157{width:22.133333pt;}
._1b_c00157{width:23.146667pt;}
._15_c00157{width:24.533333pt;}
._19_c00157{width:60.042667pt;}
.fs4_c00157{font-size:42.666667pt;}
.fs2_c00157{font-size:48.000000pt;}
.fs0_c00157{font-size:53.333333pt;}
.fs3_c00157{font-size:56.000000pt;}
.fs1_c00157{font-size:64.000000pt;}
.y0_c00157{bottom:0.000000pt;}
.y1e_c00157{bottom:2.760000pt;}
.y1d_c00157{bottom:6.425212pt;}
.y1c_c00157{bottom:57.200000pt;}
.y1b_c00157{bottom:79.200000pt;}
.y1a_c00157{bottom:102.800000pt;}
.y19_c00157{bottom:124.533333pt;}
.y18_c00157{bottom:145.733333pt;}
.y17_c00157{bottom:169.733333pt;}
.y16_c00157{bottom:192.533333pt;}
.y15_c00157{bottom:214.533333pt;}
.y14_c00157{bottom:236.933333pt;}
.y13_c00157{bottom:258.933333pt;}
.y12_c00157{bottom:281.066667pt;}
.y11_c00157{bottom:303.600000pt;}
.y10_c00157{bottom:324.933333pt;}
.yf_c00157{bottom:346.800000pt;}
.ye_c00157{bottom:368.400000pt;}
.yd_c00157{bottom:390.666667pt;}
.yc_c00157{bottom:412.533333pt;}
.yb_c00157{bottom:434.400000pt;}
.ya_c00157{bottom:456.666667pt;}
.y9_c00157{bottom:478.533333pt;}
.y8_c00157{bottom:500.666667pt;}
.y7_c00157{bottom:522.666667pt;}
.y6_c00157{bottom:544.533333pt;}
.y5_c00157{bottom:566.400000pt;}
.y4_c00157{bottom:588.000000pt;}
.y3_c00157{bottom:610.266667pt;}
.y2_c00157{bottom:632.133333pt;}
.y1_c00157{bottom:655.466667pt;}
.h4_c00157{height:11.733399pt;}
.h5_c00157{height:38.937500pt;}
.h2_c00157{height:67.526042pt;}
.h3_c00157{height:81.031250pt;}
.h0_c00157{height:709.200000pt;}
.h1_c00157{height:709.333333pt;}
.w2_c00157{width:93.222667pt;}
.w1_c00157{width:476.666667pt;}
.w0_c00157{width:476.866667pt;}
.x0_c00157{left:0.000000pt;}
.x6_c00157{left:54.266667pt;}
.x7_c00157{left:57.333333pt;}
.x2_c00157{left:122.133333pt;}
.x3_c00157{left:123.600000pt;}
.x4_c00157{left:125.466667pt;}
.x5_c00157{left:126.400000pt;}
.x8_c00157{left:195.601563pt;}
.x1_c00157{left:230.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_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_ba37876a8adddf7b680f76e5.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.480469;font-style:normal;font-weight:normal;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_efd7637e814e821ab430fc04.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00158;src:url('chunks/assets/font_2cc09c2c3434f3a25c5d5c45.woff2')format("woff");}.ff3_c00158{font-family:ff3_c00158;line-height:1.575000;font-style:normal;font-weight:normal;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_d10812a139ae70820688b69a.woff2')format("woff");}.ff4_c00158{font-family:ff4_c00158;line-height:1.568848;font-style:normal;font-weight:normal;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_2f55283364863791de0ca09e.woff2')format("woff");}.ff5_c00158{font-family:ff5_c00158;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00158;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00158{font-family:ff6_c00158;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00158{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00158{vertical-align:0.000000px;}
.ls7_c00158{letter-spacing:-15.000000px;}
.ls4_c00158{letter-spacing:-3.000000px;}
.ls3_c00158{letter-spacing:0.000000px;}
.ls2_c00158{letter-spacing:1.788000px;}
.ls5_c00158{letter-spacing:3.000000px;}
.ls6_c00158{letter-spacing:6.000000px;}
.ls0_c00158{letter-spacing:12.600000px;}
.ls1_c00158{letter-spacing:43.788000px;}
.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;}
}
.ws4_c00158{word-spacing:-21.798000px;}
.ws0_c00158{word-spacing:-17.352000px;}
.ws1_c00158{word-spacing:-15.963000px;}
.ws2_c00158{word-spacing:-14.460000px;}
.ws3_c00158{word-spacing:-3.798000px;}
.ws5_c00158{word-spacing:0.000000px;}
._28_c00158{margin-left:-25.272000px;}
._18_c00158{margin-left:-23.184000px;}
._13_c00158{margin-left:-20.688000px;}
._f_c00158{margin-left:-17.928000px;}
._1d_c00158{margin-left:-16.002000px;}
._d_c00158{margin-left:-12.816000px;}
._b_c00158{margin-left:-11.664000px;}
._e_c00158{margin-left:-9.606000px;}
._8_c00158{margin-left:-8.127000px;}
._c_c00158{margin-left:-6.120000px;}
._a_c00158{margin-left:-4.968000px;}
._10_c00158{margin-left:-3.753000px;}
._9_c00158{margin-left:-2.037000px;}
._15_c00158{margin-left:-1.008000px;}
._3_c00158{width:1.224000px;}
._1a_c00158{width:2.232000px;}
._6_c00158{width:3.240000px;}
._4_c00158{width:4.896000px;}
._5_c00158{width:5.904000px;}
._2_c00158{width:7.056000px;}
._12_c00158{width:8.208000px;}
._11_c00158{width:9.591000px;}
._16_c00158{width:11.709000px;}
._1_c00158{width:13.392000px;}
._0_c00158{width:14.544000px;}
._14_c00158{width:15.942000px;}
._29_c00158{width:35.484000px;}
._19_c00158{width:56.160000px;}
._1c_c00158{width:90.462000px;}
._26_c00158{width:110.886000px;}
._1e_c00158{width:121.905000px;}
._27_c00158{width:124.998000px;}
._1b_c00158{width:130.356000px;}
._25_c00158{width:134.724000px;}
._24_c00158{width:142.590000px;}
._17_c00158{width:143.952000px;}
._1f_c00158{width:153.399000px;}
._21_c00158{width:171.279000px;}
._22_c00158{width:177.459000px;}
._2a_c00158{width:191.190000px;}
._20_c00158{width:318.132000px;}
._7_c00158{width:345.120000px;}
._23_c00158{width:490.653000px;}
.fc2_c00158{color:transparent;}
.fc1_c00158{color:rgb(128,128,128);}
.fc0_c00158{color:rgb(0,0,0);}
.fs4_c00158{font-size:48.000000px;}
.fs3_c00158{font-size:60.000000px;}
.fs2_c00158{font-size:63.000000px;}
.fs0_c00158{font-size:72.000000px;}
.fs1_c00158{font-size:78.000000px;}
.y0_c00158{bottom:0.000000px;}
.y20_c00158{bottom:3.105000px;}
.y1f_c00158{bottom:7.228369px;}
.y1e_c00158{bottom:49.320000px;}
.y1d_c00158{bottom:76.170000px;}
.y1c_c00158{bottom:101.970000px;}
.y1b_c00158{bottom:127.620000px;}
.y1a_c00158{bottom:152.820000px;}
.y19_c00158{bottom:173.520000px;}
.y18_c00158{bottom:201.720000px;}
.y17_c00158{bottom:227.370000px;}
.y16_c00158{bottom:251.820000px;}
.y15_c00158{bottom:276.420000px;}
.y14_c00158{bottom:300.420000px;}
.y13_c00158{bottom:322.620000px;}
.y12_c00158{bottom:345.570000px;}
.y11_c00158{bottom:358.020000px;}
.y10_c00158{bottom:370.620000px;}
.yf_c00158{bottom:395.220000px;}
.ye_c00158{bottom:420.420000px;}
.yd_c00158{bottom:444.420000px;}
.yc_c00158{bottom:467.820000px;}
.yb_c00158{bottom:493.770000px;}
.ya_c00158{bottom:518.370000px;}
.y9_c00158{bottom:542.670000px;}
.y8_c00158{bottom:566.970000px;}
.y7_c00158{bottom:592.020000px;}
.y6_c00158{bottom:616.320000px;}
.y5_c00158{bottom:640.620000px;}
.y4_c00158{bottom:665.520000px;}
.y3_c00158{bottom:690.120000px;}
.y2_c00158{bottom:714.870000px;}
.y1_c00158{bottom:739.470000px;}
.h6_c00158{height:13.200073px;}
.h7_c00158{height:43.804688px;}
.h4_c00158{height:75.966797px;}
.h2_c00158{height:84.269531px;}
.h3_c00158{height:91.160156px;}
.h5_c00158{height:98.756836px;}
.h0_c00158{height:794.850000px;}
.h1_c00158{height:795.000000px;}
.w2_c00158{width:104.875500px;}
.w1_c00158{width:534.000000px;}
.w0_c00158{width:534.300000px;}
.x0_c00158{left:0.000000px;}
.x7_c00158{left:18.600000px;}
.x6_c00158{left:20.250000px;}
.x5_c00158{left:22.200000px;}
.x4_c00158{left:23.550000px;}
.x3_c00158{left:24.600000px;}
.x2_c00158{left:25.950000px;}
.x1_c00158{left:152.100000px;}
.x9_c00158{left:218.964249px;}
.x8_c00158{left:294.000000px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls7_c00158{letter-spacing:-13.333333pt;}
.ls4_c00158{letter-spacing:-2.666667pt;}
.ls3_c00158{letter-spacing:0.000000pt;}
.ls2_c00158{letter-spacing:1.589333pt;}
.ls5_c00158{letter-spacing:2.666667pt;}
.ls6_c00158{letter-spacing:5.333333pt;}
.ls0_c00158{letter-spacing:11.200000pt;}
.ls1_c00158{letter-spacing:38.922667pt;}
.ws4_c00158{word-spacing:-19.376000pt;}
.ws0_c00158{word-spacing:-15.424000pt;}
.ws1_c00158{word-spacing:-14.189333pt;}
.ws2_c00158{word-spacing:-12.853333pt;}
.ws3_c00158{word-spacing:-3.376000pt;}
.ws5_c00158{word-spacing:0.000000pt;}
._28_c00158{margin-left:-22.464000pt;}
._18_c00158{margin-left:-20.608000pt;}
._13_c00158{margin-left:-18.389333pt;}
._f_c00158{margin-left:-15.936000pt;}
._1d_c00158{margin-left:-14.224000pt;}
._d_c00158{margin-left:-11.392000pt;}
._b_c00158{margin-left:-10.368000pt;}
._e_c00158{margin-left:-8.538667pt;}
._8_c00158{margin-left:-7.224000pt;}
._c_c00158{margin-left:-5.440000pt;}
._a_c00158{margin-left:-4.416000pt;}
._10_c00158{margin-left:-3.336000pt;}
._9_c00158{margin-left:-1.810667pt;}
._15_c00158{margin-left:-0.896000pt;}
._3_c00158{width:1.088000pt;}
._1a_c00158{width:1.984000pt;}
._6_c00158{width:2.880000pt;}
._4_c00158{width:4.352000pt;}
._5_c00158{width:5.248000pt;}
._2_c00158{width:6.272000pt;}
._12_c00158{width:7.296000pt;}
._11_c00158{width:8.525333pt;}
._16_c00158{width:10.408000pt;}
._1_c00158{width:11.904000pt;}
._0_c00158{width:12.928000pt;}
._14_c00158{width:14.170667pt;}
._29_c00158{width:31.541333pt;}
._19_c00158{width:49.920000pt;}
._1c_c00158{width:80.410667pt;}
._26_c00158{width:98.565333pt;}
._1e_c00158{width:108.360000pt;}
._27_c00158{width:111.109333pt;}
._1b_c00158{width:115.872000pt;}
._25_c00158{width:119.754667pt;}
._24_c00158{width:126.746667pt;}
._17_c00158{width:127.957333pt;}
._1f_c00158{width:136.354667pt;}
._21_c00158{width:152.248000pt;}
._22_c00158{width:157.741333pt;}
._2a_c00158{width:169.946667pt;}
._20_c00158{width:282.784000pt;}
._7_c00158{width:306.773333pt;}
._23_c00158{width:436.136000pt;}
.fs4_c00158{font-size:42.666667pt;}
.fs3_c00158{font-size:53.333333pt;}
.fs2_c00158{font-size:56.000000pt;}
.fs0_c00158{font-size:64.000000pt;}
.fs1_c00158{font-size:69.333333pt;}
.y0_c00158{bottom:0.000000pt;}
.y20_c00158{bottom:2.760000pt;}
.y1f_c00158{bottom:6.425217pt;}
.y1e_c00158{bottom:43.840000pt;}
.y1d_c00158{bottom:67.706667pt;}
.y1c_c00158{bottom:90.640000pt;}
.y1b_c00158{bottom:113.440000pt;}
.y1a_c00158{bottom:135.840000pt;}
.y19_c00158{bottom:154.240000pt;}
.y18_c00158{bottom:179.306667pt;}
.y17_c00158{bottom:202.106667pt;}
.y16_c00158{bottom:223.840000pt;}
.y15_c00158{bottom:245.706667pt;}
.y14_c00158{bottom:267.040000pt;}
.y13_c00158{bottom:286.773333pt;}
.y12_c00158{bottom:307.173333pt;}
.y11_c00158{bottom:318.240000pt;}
.y10_c00158{bottom:329.440000pt;}
.yf_c00158{bottom:351.306667pt;}
.ye_c00158{bottom:373.706667pt;}
.yd_c00158{bottom:395.040000pt;}
.yc_c00158{bottom:415.840000pt;}
.yb_c00158{bottom:438.906667pt;}
.ya_c00158{bottom:460.773333pt;}
.y9_c00158{bottom:482.373333pt;}
.y8_c00158{bottom:503.973333pt;}
.y7_c00158{bottom:526.240000pt;}
.y6_c00158{bottom:547.840000pt;}
.y5_c00158{bottom:569.440000pt;}
.y4_c00158{bottom:591.573333pt;}
.y3_c00158{bottom:613.440000pt;}
.y2_c00158{bottom:635.440000pt;}
.y1_c00158{bottom:657.306667pt;}
.h6_c00158{height:11.733399pt;}
.h7_c00158{height:38.937500pt;}
.h4_c00158{height:67.526042pt;}
.h2_c00158{height:74.906250pt;}
.h3_c00158{height:81.031250pt;}
.h5_c00158{height:87.783854pt;}
.h0_c00158{height:706.533333pt;}
.h1_c00158{height:706.666667pt;}
.w2_c00158{width:93.222667pt;}
.w1_c00158{width:474.666667pt;}
.w0_c00158{width:474.933333pt;}
.x0_c00158{left:0.000000pt;}
.x7_c00158{left:16.533333pt;}
.x6_c00158{left:18.000000pt;}
.x5_c00158{left:19.733333pt;}
.x4_c00158{left:20.933333pt;}
.x3_c00158{left:21.866667pt;}
.x2_c00158{left:23.066667pt;}
.x1_c00158{left:135.200000pt;}
.x9_c00158{left:194.634888pt;}
.x8_c00158{left:261.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_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_694ca83f595c4f1e9c8ff026.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.480469;font-style:normal;font-weight:normal;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_6169ba08d504eca7cb8010cb.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:1.568848;font-style:normal;font-weight:normal;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_cd9e678027920fa247598d0c.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:1.575000;font-style:normal;font-weight:normal;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_21dcac4342c32bc079bf3b60.woff2')format("woff");}.ff4_c00159{font-family:ff4_c00159;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00159;src:url('chunks/assets/font_867f65e3c2d7f575cac5b083.woff2')format("woff");}.ff5_c00159{font-family:ff5_c00159;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00159;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00159{font-family:ff6_c00159;line-height:1.219238;font-style: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(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0_c00159{vertical-align:0.000000px;}
.ls6_c00159{letter-spacing:-3.000000px;}
.ls5_c00159{letter-spacing:0.000000px;}
.ls3_c00159{letter-spacing:3.000000px;}
.ls1_c00159{letter-spacing:6.000000px;}
.ls4_c00159{letter-spacing:7.017000px;}
.ls2_c00159{letter-spacing:17.988000px;}
.ls0_c00159{letter-spacing:1228.248000px;}
.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:-57.384000px;}
.ws0_c00159{word-spacing:-27.051000px;}
.ws5_c00159{word-spacing:-20.352000px;}
.ws1_c00159{word-spacing:-18.906000px;}
.ws3_c00159{word-spacing:-15.183000px;}
.ws6_c00159{word-spacing:0.000000px;}
.ws4_c00159{word-spacing:10.656000px;}
._f_c00159{margin-left:-18.900000px;}
._12_c00159{margin-left:-16.080000px;}
._d_c00159{margin-left:-12.975000px;}
._13_c00159{margin-left:-10.650000px;}
._14_c00159{margin-left:-9.600000px;}
._11_c00159{margin-left:-7.758000px;}
._c_c00159{margin-left:-6.600000px;}
._e_c00159{margin-left:-5.301000px;}
._9_c00159{margin-left:-3.624000px;}
._8_c00159{margin-left:-1.728000px;}
._b_c00159{width:1.200000px;}
._6_c00159{width:2.880000px;}
._7_c00159{width:3.924000px;}
._a_c00159{width:5.052000px;}
._1_c00159{width:6.180000px;}
._18_c00159{width:7.548000px;}
._5_c00159{width:8.700000px;}
._4_c00159{width:9.900000px;}
._3_c00159{width:11.100000px;}
._2_c00159{width:12.420000px;}
._16_c00159{width:13.740000px;}
._0_c00159{width:15.660000px;}
._1d_c00159{width:18.969000px;}
._1e_c00159{width:20.136000px;}
._1b_c00159{width:22.152000px;}
._1c_c00159{width:23.664000px;}
._15_c00159{width:91.755000px;}
._1a_c00159{width:92.856000px;}
._19_c00159{width:106.215000px;}
._17_c00159{width:108.915000px;}
._1f_c00159{width:110.328000px;}
._20_c00159{width:118.398000px;}
._10_c00159{width:176.250000px;}
.fc2_c00159{color:transparent;}
.fc1_c00159{color:rgb(128,128,128);}
.fc0_c00159{color:rgb(0,0,0);}
.fs6_c00159{font-size:24.000000px;}
.fs7_c00159{font-size:48.000000px;}
.fs3_c00159{font-size:51.000000px;}
.fs0_c00159{font-size:60.000000px;}
.fs2_c00159{font-size:63.000000px;}
.fs5_c00159{font-size:66.000000px;}
.fs1_c00159{font-size:72.000000px;}
.fs4_c00159{font-size:75.000000px;}
.y0_c00159{bottom:0.000000px;}
.y22_c00159{bottom:3.105000px;}
.y21_c00159{bottom:7.228355px;}
.y1e_c00159{bottom:48.885000px;}
.y1d_c00159{bottom:72.885000px;}
.y1c_c00159{bottom:99.435000px;}
.y1b_c00159{bottom:124.785000px;}
.y1a_c00159{bottom:149.385000px;}
.y19_c00159{bottom:174.435000px;}
.y18_c00159{bottom:199.785000px;}
.y20_c00159{bottom:212.835000px;}
.y17_c00159{bottom:224.085000px;}
.y1f_c00159{bottom:237.135000px;}
.y16_c00159{bottom:248.985000px;}
.y15_c00159{bottom:274.335000px;}
.y14_c00159{bottom:298.335000px;}
.y13_c00159{bottom:322.935000px;}
.y12_c00159{bottom:346.935000px;}
.y11_c00159{bottom:372.885000px;}
.y10_c00159{bottom:396.885000px;}
.yf_c00159{bottom:421.185000px;}
.ye_c00159{bottom:445.185000px;}
.yd_c00159{bottom:470.085000px;}
.yc_c00159{bottom:493.785000px;}
.yb_c00159{bottom:518.385000px;}
.ya_c00159{bottom:542.685000px;}
.y9_c00159{bottom:567.585000px;}
.y8_c00159{bottom:592.635000px;}
.y7_c00159{bottom:616.635000px;}
.y6_c00159{bottom:640.935000px;}
.y5_c00159{bottom:665.235000px;}
.y4_c00159{bottom:689.835000px;}
.y3_c00159{bottom:703.335000px;}
.y2_c00159{bottom:714.435000px;}
.y1_c00159{bottom:739.785000px;}
.h7_c00159{height:13.200074px;}
.h6_c00159{height:30.386719px;}
.h8_c00159{height:43.804688px;}
.h4_c00159{height:73.608398px;}
.h2_c00159{height:75.966797px;}
.h5_c00159{height:83.563477px;}
.h3_c00159{height:91.160156px;}
.h1_c00159{height:779.250000px;}
.h0_c00159{height:779.475000px;}
.w2_c00159{width:104.875500px;}
.w1_c00159{width:505.500000px;}
.w0_c00159{width:505.725000px;}
.x0_c00159{left:0.000000px;}
.x3_c00159{left:43.950000px;}
.x6_c00159{left:45.000000px;}
.x11_c00159{left:49.950000px;}
.xa_c00159{left:51.000000px;}
.x8_c00159{left:52.050000px;}
.xb_c00159{left:53.400000px;}
.xf_c00159{left:57.150000px;}
.x12_c00159{left:58.800000px;}
.x4_c00159{left:67.200000px;}
.x5_c00159{left:88.800000px;}
.x2_c00159{left:100.200000px;}
.x7_c00159{left:101.700000px;}
.x9_c00159{left:103.050000px;}
.xc_c00159{left:105.000000px;}
.xd_c00159{left:106.050000px;}
.xe_c00159{left:107.400000px;}
.x10_c00159{left:109.050000px;}
.x14_c00159{left:204.676758px;}
.x1_c00159{left:221.700000px;}
.x13_c00159{left:443.100000px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls6_c00159{letter-spacing:-2.666667pt;}
.ls5_c00159{letter-spacing:0.000000pt;}
.ls3_c00159{letter-spacing:2.666667pt;}
.ls1_c00159{letter-spacing:5.333333pt;}
.ls4_c00159{letter-spacing:6.237333pt;}
.ls2_c00159{letter-spacing:15.989333pt;}
.ls0_c00159{letter-spacing:1091.776000pt;}
.ws2_c00159{word-spacing:-51.008000pt;}
.ws0_c00159{word-spacing:-24.045333pt;}
.ws5_c00159{word-spacing:-18.090667pt;}
.ws1_c00159{word-spacing:-16.805333pt;}
.ws3_c00159{word-spacing:-13.496000pt;}
.ws6_c00159{word-spacing:0.000000pt;}
.ws4_c00159{word-spacing:9.472000pt;}
._f_c00159{margin-left:-16.800000pt;}
._12_c00159{margin-left:-14.293333pt;}
._d_c00159{margin-left:-11.533333pt;}
._13_c00159{margin-left:-9.466667pt;}
._14_c00159{margin-left:-8.533333pt;}
._11_c00159{margin-left:-6.896000pt;}
._c_c00159{margin-left:-5.866667pt;}
._e_c00159{margin-left:-4.712000pt;}
._9_c00159{margin-left:-3.221333pt;}
._8_c00159{margin-left:-1.536000pt;}
._b_c00159{width:1.066667pt;}
._6_c00159{width:2.560000pt;}
._7_c00159{width:3.488000pt;}
._a_c00159{width:4.490667pt;}
._1_c00159{width:5.493333pt;}
._18_c00159{width:6.709333pt;}
._5_c00159{width:7.733333pt;}
._4_c00159{width:8.800000pt;}
._3_c00159{width:9.866667pt;}
._2_c00159{width:11.040000pt;}
._16_c00159{width:12.213333pt;}
._0_c00159{width:13.920000pt;}
._1d_c00159{width:16.861333pt;}
._1e_c00159{width:17.898667pt;}
._1b_c00159{width:19.690667pt;}
._1c_c00159{width:21.034667pt;}
._15_c00159{width:81.560000pt;}
._1a_c00159{width:82.538667pt;}
._19_c00159{width:94.413333pt;}
._17_c00159{width:96.813333pt;}
._1f_c00159{width:98.069333pt;}
._20_c00159{width:105.242667pt;}
._10_c00159{width:156.666667pt;}
.fs6_c00159{font-size:21.333333pt;}
.fs7_c00159{font-size:42.666667pt;}
.fs3_c00159{font-size:45.333333pt;}
.fs0_c00159{font-size:53.333333pt;}
.fs2_c00159{font-size:56.000000pt;}
.fs5_c00159{font-size:58.666667pt;}
.fs1_c00159{font-size:64.000000pt;}
.fs4_c00159{font-size:66.666667pt;}
.y0_c00159{bottom:0.000000pt;}
.y22_c00159{bottom:2.760000pt;}
.y21_c00159{bottom:6.425204pt;}
.y1e_c00159{bottom:43.453333pt;}
.y1d_c00159{bottom:64.786667pt;}
.y1c_c00159{bottom:88.386667pt;}
.y1b_c00159{bottom:110.920000pt;}
.y1a_c00159{bottom:132.786667pt;}
.y19_c00159{bottom:155.053333pt;}
.y18_c00159{bottom:177.586667pt;}
.y20_c00159{bottom:189.186667pt;}
.y17_c00159{bottom:199.186667pt;}
.y1f_c00159{bottom:210.786667pt;}
.y16_c00159{bottom:221.320000pt;}
.y15_c00159{bottom:243.853333pt;}
.y14_c00159{bottom:265.186667pt;}
.y13_c00159{bottom:287.053333pt;}
.y12_c00159{bottom:308.386667pt;}
.y11_c00159{bottom:331.453333pt;}
.y10_c00159{bottom:352.786667pt;}
.yf_c00159{bottom:374.386667pt;}
.ye_c00159{bottom:395.720000pt;}
.yd_c00159{bottom:417.853333pt;}
.yc_c00159{bottom:438.920000pt;}
.yb_c00159{bottom:460.786667pt;}
.ya_c00159{bottom:482.386667pt;}
.y9_c00159{bottom:504.520000pt;}
.y8_c00159{bottom:526.786667pt;}
.y7_c00159{bottom:548.120000pt;}
.y6_c00159{bottom:569.720000pt;}
.y5_c00159{bottom:591.320000pt;}
.y4_c00159{bottom:613.186667pt;}
.y3_c00159{bottom:625.186667pt;}
.y2_c00159{bottom:635.053333pt;}
.y1_c00159{bottom:657.586667pt;}
.h7_c00159{height:11.733399pt;}
.h6_c00159{height:27.010417pt;}
.h8_c00159{height:38.937500pt;}
.h4_c00159{height:65.429688pt;}
.h2_c00159{height:67.526042pt;}
.h5_c00159{height:74.278646pt;}
.h3_c00159{height:81.031250pt;}
.h1_c00159{height:692.666667pt;}
.h0_c00159{height:692.866667pt;}
.w2_c00159{width:93.222667pt;}
.w1_c00159{width:449.333333pt;}
.w0_c00159{width:449.533333pt;}
.x0_c00159{left:0.000000pt;}
.x3_c00159{left:39.066667pt;}
.x6_c00159{left:40.000000pt;}
.x11_c00159{left:44.400000pt;}
.xa_c00159{left:45.333333pt;}
.x8_c00159{left:46.266667pt;}
.xb_c00159{left:47.466667pt;}
.xf_c00159{left:50.800000pt;}
.x12_c00159{left:52.266667pt;}
.x4_c00159{left:59.733333pt;}
.x5_c00159{left:78.933333pt;}
.x2_c00159{left:89.066667pt;}
.x7_c00159{left:90.400000pt;}
.x9_c00159{left:91.600000pt;}
.xc_c00159{left:93.333333pt;}
.xd_c00159{left:94.266667pt;}
.xe_c00159{left:95.466667pt;}
.x10_c00159{left:96.933333pt;}
.x14_c00159{left:181.934896pt;}
.x1_c00159{left:197.066667pt;}
.x13_c00159{left:393.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_76efea43e755bc3b3de4df22.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.480469;font-style:normal;font-weight:normal;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_8fb58cb97c66782e75522e2b.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.568848;font-style:normal;font-weight:normal;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_bb4228610399ec816bef5b4e.woff2')format("woff");}.ff3_c00160{font-family:ff3_c00160;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00160{font-family:ff4_c00160;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00160{transform:matrix(0.035000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035000,0.000000,0.000000,0.250000,0,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(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.v0_c00160{vertical-align:0.000000px;}
.ls4_c00160{letter-spacing:-3.000000px;}
.ls2_c00160{letter-spacing:0.000000px;}
.ls3_c00160{letter-spacing:3.000000px;}
.ls0_c00160{letter-spacing:5.988000px;}
.ls1_c00160{letter-spacing:36.300000px;}
.sc__c00160{text-shadow:none;}
.sc0_c00160{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00160{-webkit-text-stroke:0px transparent;}
.sc0_c00160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00160{word-spacing:-27.051000px;}
.ws0_c00160{word-spacing:-20.352000px;}
.ws2_c00160{word-spacing:0.000000px;}
._22_c00160{margin-left:-27.654000px;}
._17_c00160{margin-left:-14.664000px;}
._19_c00160{margin-left:-12.672000px;}
._15_c00160{margin-left:-11.520000px;}
._e_c00160{margin-left:-10.224000px;}
._1a_c00160{margin-left:-8.208000px;}
._13_c00160{margin-left:-7.200000px;}
._f_c00160{margin-left:-5.904000px;}
._18_c00160{margin-left:-4.848000px;}
._a_c00160{margin-left:-3.840000px;}
._c_c00160{margin-left:-2.184000px;}
._d_c00160{margin-left:-1.152000px;}
._b_c00160{width:1.728000px;}
._12_c00160{width:2.772000px;}
._2_c00160{width:3.840000px;}
._11_c00160{width:4.896000px;}
._3_c00160{width:6.300000px;}
._7_c00160{width:7.800000px;}
._6_c00160{width:8.880000px;}
._16_c00160{width:10.764000px;}
._4_c00160{width:12.420000px;}
._1b_c00160{width:14.064000px;}
._5_c00160{width:15.600000px;}
._1_c00160{width:16.980000px;}
._1e_c00160{width:18.108000px;}
._1c_c00160{width:21.672000px;}
._9_c00160{width:23.340000px;}
._1d_c00160{width:25.488000px;}
._0_c00160{width:27.060000px;}
._20_c00160{width:29.148000px;}
._21_c00160{width:32.904000px;}
._1f_c00160{width:37.728000px;}
._14_c00160{width:68.700000px;}
._10_c00160{width:146.496000px;}
._23_c00160{width:201.396000px;}
._8_c00160{width:368.040000px;}
.fc2_c00160{color:transparent;}
.fc1_c00160{color:rgb(128,128,128);}
.fc0_c00160{color:rgb(0,0,0);}
.fs4_c00160{font-size:48.000000px;}
.fs0_c00160{font-size:60.000000px;}
.fs2_c00160{font-size:63.000000px;}
.fs1_c00160{font-size:72.000000px;}
.fs3_c00160{font-size:78.000000px;}
.y0_c00160{bottom:0.000000px;}
.y1f_c00160{bottom:3.105000px;}
.y1e_c00160{bottom:7.228355px;}
.y1d_c00160{bottom:45.585000px;}
.y1c_c00160{bottom:70.185000px;}
.y1b_c00160{bottom:95.835000px;}
.y1a_c00160{bottom:121.035000px;}
.y19_c00160{bottom:146.385000px;}
.y18_c00160{bottom:171.135000px;}
.y17_c00160{bottom:196.035000px;}
.y16_c00160{bottom:220.935000px;}
.y15_c00160{bottom:245.385000px;}
.y14_c00160{bottom:270.285000px;}
.y13_c00160{bottom:293.835000px;}
.y12_c00160{bottom:315.885000px;}
.y11_c00160{bottom:340.785000px;}
.y10_c00160{bottom:366.735000px;}
.yf_c00160{bottom:390.735000px;}
.ye_c00160{bottom:415.185000px;}
.yd_c00160{bottom:440.085000px;}
.yc_c00160{bottom:464.985000px;}
.yb_c00160{bottom:490.035000px;}
.ya_c00160{bottom:514.335000px;}
.y9_c00160{bottom:539.535000px;}
.y8_c00160{bottom:563.835000px;}
.y7_c00160{bottom:588.135000px;}
.y6_c00160{bottom:613.785000px;}
.y5_c00160{bottom:638.235000px;}
.y4_c00160{bottom:662.085000px;}
.y3_c00160{bottom:686.835000px;}
.y2_c00160{bottom:711.435000px;}
.y1_c00160{bottom:736.635000px;}
.h5_c00160{height:13.200074px;}
.h6_c00160{height:43.804688px;}
.h2_c00160{height:70.224609px;}
.h3_c00160{height:91.160156px;}
.h4_c00160{height:98.756836px;}
.h1_c00160{height:787.500000px;}
.h0_c00160{height:787.575000px;}
.w2_c00160{width:104.875500px;}
.w1_c00160{width:540.750000px;}
.w0_c00160{width:541.050000px;}
.x0_c00160{left:0.000000px;}
.x2_c00160{left:39.150000px;}
.x5_c00160{left:40.200000px;}
.x6_c00160{left:41.550000px;}
.x7_c00160{left:136.950000px;}
.x1_c00160{left:156.150000px;}
.x9_c00160{left:222.339249px;}
.x8_c00160{left:302.400000px;}
.x3_c00160{left:424.500000px;}
.x4_c00160{left:462.150000px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls4_c00160{letter-spacing:-2.666667pt;}
.ls2_c00160{letter-spacing:0.000000pt;}
.ls3_c00160{letter-spacing:2.666667pt;}
.ls0_c00160{letter-spacing:5.322667pt;}
.ls1_c00160{letter-spacing:32.266667pt;}
.ws1_c00160{word-spacing:-24.045333pt;}
.ws0_c00160{word-spacing:-18.090667pt;}
.ws2_c00160{word-spacing:0.000000pt;}
._22_c00160{margin-left:-24.581333pt;}
._17_c00160{margin-left:-13.034667pt;}
._19_c00160{margin-left:-11.264000pt;}
._15_c00160{margin-left:-10.240000pt;}
._e_c00160{margin-left:-9.088000pt;}
._1a_c00160{margin-left:-7.296000pt;}
._13_c00160{margin-left:-6.400000pt;}
._f_c00160{margin-left:-5.248000pt;}
._18_c00160{margin-left:-4.309333pt;}
._a_c00160{margin-left:-3.413333pt;}
._c_c00160{margin-left:-1.941333pt;}
._d_c00160{margin-left:-1.024000pt;}
._b_c00160{width:1.536000pt;}
._12_c00160{width:2.464000pt;}
._2_c00160{width:3.413333pt;}
._11_c00160{width:4.352000pt;}
._3_c00160{width:5.600000pt;}
._7_c00160{width:6.933333pt;}
._6_c00160{width:7.893333pt;}
._16_c00160{width:9.568000pt;}
._4_c00160{width:11.040000pt;}
._1b_c00160{width:12.501333pt;}
._5_c00160{width:13.866667pt;}
._1_c00160{width:15.093333pt;}
._1e_c00160{width:16.096000pt;}
._1c_c00160{width:19.264000pt;}
._9_c00160{width:20.746667pt;}
._1d_c00160{width:22.656000pt;}
._0_c00160{width:24.053333pt;}
._20_c00160{width:25.909333pt;}
._21_c00160{width:29.248000pt;}
._1f_c00160{width:33.536000pt;}
._14_c00160{width:61.066667pt;}
._10_c00160{width:130.218667pt;}
._23_c00160{width:179.018667pt;}
._8_c00160{width:327.146667pt;}
.fs4_c00160{font-size:42.666667pt;}
.fs0_c00160{font-size:53.333333pt;}
.fs2_c00160{font-size:56.000000pt;}
.fs1_c00160{font-size:64.000000pt;}
.fs3_c00160{font-size:69.333333pt;}
.y0_c00160{bottom:0.000000pt;}
.y1f_c00160{bottom:2.760000pt;}
.y1e_c00160{bottom:6.425204pt;}
.y1d_c00160{bottom:40.520000pt;}
.y1c_c00160{bottom:62.386667pt;}
.y1b_c00160{bottom:85.186667pt;}
.y1a_c00160{bottom:107.586667pt;}
.y19_c00160{bottom:130.120000pt;}
.y18_c00160{bottom:152.120000pt;}
.y17_c00160{bottom:174.253333pt;}
.y16_c00160{bottom:196.386667pt;}
.y15_c00160{bottom:218.120000pt;}
.y14_c00160{bottom:240.253333pt;}
.y13_c00160{bottom:261.186667pt;}
.y12_c00160{bottom:280.786667pt;}
.y11_c00160{bottom:302.920000pt;}
.y10_c00160{bottom:325.986667pt;}
.yf_c00160{bottom:347.320000pt;}
.ye_c00160{bottom:369.053333pt;}
.yd_c00160{bottom:391.186667pt;}
.yc_c00160{bottom:413.320000pt;}
.yb_c00160{bottom:435.586667pt;}
.ya_c00160{bottom:457.186667pt;}
.y9_c00160{bottom:479.586667pt;}
.y8_c00160{bottom:501.186667pt;}
.y7_c00160{bottom:522.786667pt;}
.y6_c00160{bottom:545.586667pt;}
.y5_c00160{bottom:567.320000pt;}
.y4_c00160{bottom:588.520000pt;}
.y3_c00160{bottom:610.520000pt;}
.y2_c00160{bottom:632.386667pt;}
.y1_c00160{bottom:654.786667pt;}
.h5_c00160{height:11.733399pt;}
.h6_c00160{height:38.937500pt;}
.h2_c00160{height:62.421875pt;}
.h3_c00160{height:81.031250pt;}
.h4_c00160{height:87.783854pt;}
.h1_c00160{height:700.000000pt;}
.h0_c00160{height:700.066667pt;}
.w2_c00160{width:93.222667pt;}
.w1_c00160{width:480.666667pt;}
.w0_c00160{width:480.933333pt;}
.x0_c00160{left:0.000000pt;}
.x2_c00160{left:34.800000pt;}
.x5_c00160{left:35.733333pt;}
.x6_c00160{left:36.933333pt;}
.x7_c00160{left:121.733333pt;}
.x1_c00160{left:138.800000pt;}
.x9_c00160{left:197.634888pt;}
.x8_c00160{left:268.800000pt;}
.x3_c00160{left:377.333333pt;}
.x4_c00160{left:410.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fcc6ff35d6779c6115fac1e1.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.480469;font-style:normal;font-weight:normal;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_3d8c2a3ee16bf3c2571bb625.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:1.568848;font-style:normal;font-weight:normal;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_a5d8e68f6baa3852ebdef9aa.woff2')format("woff");}.ff3_c00161{font-family:ff3_c00161;line-height:1.575000;font-style:normal;font-weight:normal;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_29310338596452f74cd194ec.woff2')format("woff");}.ff4_c00161{font-family:ff4_c00161;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00161;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00161{font-family:ff5_c00161;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00161;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00161{font-family:ff6_c00161;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00161{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00161{vertical-align:0.000000px;}
.ls3_c00161{letter-spacing:-3.000000px;}
.ls2_c00161{letter-spacing:0.000000px;}
.ls0_c00161{letter-spacing:3.000000px;}
.ls1_c00161{letter-spacing:54.150000px;}
.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;}
}
.ws3_c00161{word-spacing:-28.500000px;}
.ws1_c00161{word-spacing:-27.051000px;}
.ws2_c00161{word-spacing:-20.352000px;}
.ws0_c00161{word-spacing:-17.352000px;}
.ws4_c00161{word-spacing:0.000000px;}
._21_c00161{margin-left:-31.242000px;}
._17_c00161{margin-left:-29.094000px;}
._16_c00161{margin-left:-25.674000px;}
._18_c00161{margin-left:-23.088000px;}
._11_c00161{margin-left:-16.848000px;}
._12_c00161{margin-left:-15.414000px;}
._13_c00161{margin-left:-13.650000px;}
._1e_c00161{margin-left:-12.444000px;}
._15_c00161{margin-left:-11.346000px;}
._14_c00161{margin-left:-10.326000px;}
._f_c00161{margin-left:-9.000000px;}
._10_c00161{margin-left:-7.632000px;}
._e_c00161{margin-left:-5.904000px;}
._d_c00161{margin-left:-4.320000px;}
._c_c00161{margin-left:-3.240000px;}
._7_c00161{margin-left:-2.160000px;}
._8_c00161{margin-left:-1.080000px;}
._9_c00161{width:1.512000px;}
._6_c00161{width:2.808000px;}
._3_c00161{width:4.320000px;}
._1f_c00161{width:5.400000px;}
._0_c00161{width:6.480000px;}
._5_c00161{width:7.980000px;}
._4_c00161{width:9.180000px;}
._2_c00161{width:10.500000px;}
._1_c00161{width:12.120000px;}
._b_c00161{width:13.176000px;}
._20_c00161{width:14.328000px;}
._a_c00161{width:16.128000px;}
._1a_c00161{width:85.218000px;}
._19_c00161{width:125.658000px;}
._1c_c00161{width:166.344000px;}
._1d_c00161{width:229.662000px;}
._1b_c00161{width:688.038000px;}
._22_c00161{width:1289.448000px;}
.fc2_c00161{color:transparent;}
.fc1_c00161{color:rgb(128,128,128);}
.fc0_c00161{color:rgb(0,0,0);}
.fs5_c00161{font-size:33.000000px;}
.fs6_c00161{font-size:48.000000px;}
.fs4_c00161{font-size:57.000000px;}
.fs0_c00161{font-size:60.000000px;}
.fs3_c00161{font-size:63.000000px;}
.fs1_c00161{font-size:72.000000px;}
.fs2_c00161{font-size:78.000000px;}
.y0_c00161{bottom:0.000000px;}
.y20_c00161{bottom:3.105000px;}
.y1f_c00161{bottom:7.228355px;}
.y1e_c00161{bottom:52.635000px;}
.y1d_c00161{bottom:78.285000px;}
.y1c_c00161{bottom:102.585000px;}
.y1b_c00161{bottom:128.235000px;}
.y1a_c00161{bottom:153.435000px;}
.y19_c00161{bottom:179.085000px;}
.y18_c00161{bottom:203.535000px;}
.y17_c00161{bottom:226.785000px;}
.y16_c00161{bottom:252.135000px;}
.y15_c00161{bottom:278.085000px;}
.y14_c00161{bottom:304.035000px;}
.y13_c00161{bottom:325.335000px;}
.y12_c00161{bottom:349.185000px;}
.y11_c00161{bottom:375.285000px;}
.y10_c00161{bottom:398.535000px;}
.yf_c00161{bottom:422.535000px;}
.ye_c00161{bottom:447.135000px;}
.yd_c00161{bottom:471.735000px;}
.yc_c00161{bottom:496.485000px;}
.yb_c00161{bottom:521.385000px;}
.ya_c00161{bottom:545.685000px;}
.y9_c00161{bottom:571.035000px;}
.y8_c00161{bottom:582.735000px;}
.y7_c00161{bottom:595.635000px;}
.y6_c00161{bottom:621.885000px;}
.y5_c00161{bottom:645.285000px;}
.y4_c00161{bottom:669.885000px;}
.y3_c00161{bottom:693.885000px;}
.y2_c00161{bottom:718.785000px;}
.y1_c00161{bottom:744.435000px;}
.h6_c00161{height:13.200074px;}
.h7_c00161{height:43.804688px;}
.h2_c00161{height:75.966797px;}
.h3_c00161{height:91.160156px;}
.h4_c00161{height:91.291992px;}
.h5_c00161{height:98.756836px;}
.h1_c00161{height:786.000000px;}
.h0_c00161{height:786.225000px;}
.w2_c00161{width:104.875500px;}
.w0_c00161{width:518.925000px;}
.w1_c00161{width:519.000000px;}
.x0_c00161{left:0.000000px;}
.x4_c00161{left:28.650000px;}
.x8_c00161{left:30.000000px;}
.x9_c00161{left:31.350000px;}
.xa_c00161{left:32.700000px;}
.xd_c00161{left:99.600000px;}
.x2_c00161{left:103.500000px;}
.x3_c00161{left:104.850000px;}
.x7_c00161{left:105.900000px;}
.x6_c00161{left:107.700000px;}
.xc_c00161{left:109.050000px;}
.xb_c00161{left:140.700000px;}
.x5_c00161{left:148.200000px;}
.xe_c00161{left:211.276749px;}
.x1_c00161{left:213.600000px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls3_c00161{letter-spacing:-2.666667pt;}
.ls2_c00161{letter-spacing:0.000000pt;}
.ls0_c00161{letter-spacing:2.666667pt;}
.ls1_c00161{letter-spacing:48.133333pt;}
.ws3_c00161{word-spacing:-25.333333pt;}
.ws1_c00161{word-spacing:-24.045333pt;}
.ws2_c00161{word-spacing:-18.090667pt;}
.ws0_c00161{word-spacing:-15.424000pt;}
.ws4_c00161{word-spacing:0.000000pt;}
._21_c00161{margin-left:-27.770667pt;}
._17_c00161{margin-left:-25.861333pt;}
._16_c00161{margin-left:-22.821333pt;}
._18_c00161{margin-left:-20.522667pt;}
._11_c00161{margin-left:-14.976000pt;}
._12_c00161{margin-left:-13.701333pt;}
._13_c00161{margin-left:-12.133333pt;}
._1e_c00161{margin-left:-11.061333pt;}
._15_c00161{margin-left:-10.085333pt;}
._14_c00161{margin-left:-9.178667pt;}
._f_c00161{margin-left:-8.000000pt;}
._10_c00161{margin-left:-6.784000pt;}
._e_c00161{margin-left:-5.248000pt;}
._d_c00161{margin-left:-3.840000pt;}
._c_c00161{margin-left:-2.880000pt;}
._7_c00161{margin-left:-1.920000pt;}
._8_c00161{margin-left:-0.960000pt;}
._9_c00161{width:1.344000pt;}
._6_c00161{width:2.496000pt;}
._3_c00161{width:3.840000pt;}
._1f_c00161{width:4.800000pt;}
._0_c00161{width:5.760000pt;}
._5_c00161{width:7.093333pt;}
._4_c00161{width:8.160000pt;}
._2_c00161{width:9.333333pt;}
._1_c00161{width:10.773333pt;}
._b_c00161{width:11.712000pt;}
._20_c00161{width:12.736000pt;}
._a_c00161{width:14.336000pt;}
._1a_c00161{width:75.749333pt;}
._19_c00161{width:111.696000pt;}
._1c_c00161{width:147.861333pt;}
._1d_c00161{width:204.144000pt;}
._1b_c00161{width:611.589333pt;}
._22_c00161{width:1146.176000pt;}
.fs5_c00161{font-size:29.333333pt;}
.fs6_c00161{font-size:42.666667pt;}
.fs4_c00161{font-size:50.666667pt;}
.fs0_c00161{font-size:53.333333pt;}
.fs3_c00161{font-size:56.000000pt;}
.fs1_c00161{font-size:64.000000pt;}
.fs2_c00161{font-size:69.333333pt;}
.y0_c00161{bottom:0.000000pt;}
.y20_c00161{bottom:2.760000pt;}
.y1f_c00161{bottom:6.425204pt;}
.y1e_c00161{bottom:46.786667pt;}
.y1d_c00161{bottom:69.586667pt;}
.y1c_c00161{bottom:91.186667pt;}
.y1b_c00161{bottom:113.986667pt;}
.y1a_c00161{bottom:136.386667pt;}
.y19_c00161{bottom:159.186667pt;}
.y18_c00161{bottom:180.920000pt;}
.y17_c00161{bottom:201.586667pt;}
.y16_c00161{bottom:224.120000pt;}
.y15_c00161{bottom:247.186667pt;}
.y14_c00161{bottom:270.253333pt;}
.y13_c00161{bottom:289.186667pt;}
.y12_c00161{bottom:310.386667pt;}
.y11_c00161{bottom:333.586667pt;}
.y10_c00161{bottom:354.253333pt;}
.yf_c00161{bottom:375.586667pt;}
.ye_c00161{bottom:397.453333pt;}
.yd_c00161{bottom:419.320000pt;}
.yc_c00161{bottom:441.320000pt;}
.yb_c00161{bottom:463.453333pt;}
.ya_c00161{bottom:485.053333pt;}
.y9_c00161{bottom:507.586667pt;}
.y8_c00161{bottom:517.986667pt;}
.y7_c00161{bottom:529.453333pt;}
.y6_c00161{bottom:552.786667pt;}
.y5_c00161{bottom:573.586667pt;}
.y4_c00161{bottom:595.453333pt;}
.y3_c00161{bottom:616.786667pt;}
.y2_c00161{bottom:638.920000pt;}
.y1_c00161{bottom:661.720000pt;}
.h6_c00161{height:11.733399pt;}
.h7_c00161{height:38.937500pt;}
.h2_c00161{height:67.526042pt;}
.h3_c00161{height:81.031250pt;}
.h4_c00161{height:81.148438pt;}
.h5_c00161{height:87.783854pt;}
.h1_c00161{height:698.666667pt;}
.h0_c00161{height:698.866667pt;}
.w2_c00161{width:93.222667pt;}
.w0_c00161{width:461.266667pt;}
.w1_c00161{width:461.333333pt;}
.x0_c00161{left:0.000000pt;}
.x4_c00161{left:25.466667pt;}
.x8_c00161{left:26.666667pt;}
.x9_c00161{left:27.866667pt;}
.xa_c00161{left:29.066667pt;}
.xd_c00161{left:88.533333pt;}
.x2_c00161{left:92.000000pt;}
.x3_c00161{left:93.200000pt;}
.x7_c00161{left:94.133333pt;}
.x6_c00161{left:95.733333pt;}
.xc_c00161{left:96.933333pt;}
.xb_c00161{left:125.066667pt;}
.x5_c00161{left:131.733333pt;}
.xe_c00161{left:187.801554pt;}
.x1_c00161{left:189.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_60a66c08ef26599470fd50e2.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.480469;font-style:normal;font-weight:normal;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_8c5274feaa2fbdaad5c36708.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:1.568848;font-style:normal;font-weight:normal;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_6f981d008dcd99ab7da5dce3.woff2')format("woff");}.ff3_c00162{font-family:ff3_c00162;line-height:1.575000;font-style:normal;font-weight:normal;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_e8d33d54fe5426dcc774305a.woff2')format("woff");}.ff4_c00162{font-family:ff4_c00162;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00162;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00162{font-family:ff5_c00162;line-height:1.219238;font-style: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);}
.v1_c00162{vertical-align:-4.200000px;}
.v0_c00162{vertical-align:0.000000px;}
.ls3_c00162{letter-spacing:-3.000000px;}
.ls1_c00162{letter-spacing:0.000000px;}
.ls2_c00162{letter-spacing:3.000000px;}
.ls0_c00162{letter-spacing:17.220000px;}
.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:-27.051000px;}
.ws1_c00162{word-spacing:-0.060000px;}
.ws2_c00162{word-spacing:0.000000px;}
._13_c00162{margin-left:-24.696000px;}
._11_c00162{margin-left:-16.692000px;}
._18_c00162{margin-left:-14.880000px;}
._c_c00162{margin-left:-13.668000px;}
._12_c00162{margin-left:-11.808000px;}
._15_c00162{margin-left:-9.696000px;}
._17_c00162{margin-left:-8.616000px;}
._f_c00162{margin-left:-6.900000px;}
._d_c00162{margin-left:-5.124000px;}
._e_c00162{margin-left:-3.912000px;}
._9_c00162{margin-left:-2.760000px;}
._a_c00162{margin-left:-1.344000px;}
._b_c00162{width:1.212000px;}
._2_c00162{width:2.940000px;}
._5_c00162{width:4.140000px;}
._3_c00162{width:5.700000px;}
._19_c00162{width:6.720000px;}
._6_c00162{width:7.740000px;}
._10_c00162{width:8.856000px;}
._1c_c00162{width:10.428000px;}
._4_c00162{width:11.820000px;}
._8_c00162{width:13.320000px;}
._14_c00162{width:15.624000px;}
._1_c00162{width:16.680000px;}
._16_c00162{width:18.492000px;}
._1b_c00162{width:21.384000px;}
._0_c00162{width:27.060000px;}
._1a_c00162{width:32.208000px;}
._1e_c00162{width:38.148000px;}
._1f_c00162{width:199.008000px;}
._7_c00162{width:392.940000px;}
._1d_c00162{width:1038.810000px;}
.fc2_c00162{color:transparent;}
.fc1_c00162{color:rgb(128,128,128);}
.fc0_c00162{color:rgb(0,0,0);}
.fs4_c00162{font-size:48.000000px;}
.fs0_c00162{font-size:60.000000px;}
.fs2_c00162{font-size:63.000000px;}
.fs3_c00162{font-size:66.000000px;}
.fs1_c00162{font-size:72.000000px;}
.y0_c00162{bottom:0.000000px;}
.y1f_c00162{bottom:3.105000px;}
.y1e_c00162{bottom:7.228369px;}
.y1d_c00162{bottom:44.820000px;}
.y1c_c00162{bottom:70.470000px;}
.y1b_c00162{bottom:96.870000px;}
.y1a_c00162{bottom:119.820000px;}
.y19_c00162{bottom:147.720000px;}
.y18_c00162{bottom:172.020000px;}
.y17_c00162{bottom:194.670000px;}
.y16_c00162{bottom:218.670000px;}
.y15_c00162{bottom:245.370000px;}
.y14_c00162{bottom:272.370000px;}
.y13_c00162{bottom:295.020000px;}
.y12_c00162{bottom:318.570000px;}
.y11_c00162{bottom:341.520000px;}
.y10_c00162{bottom:366.870000px;}
.yf_c00162{bottom:391.170000px;}
.ye_c00162{bottom:416.370000px;}
.yd_c00162{bottom:440.820000px;}
.yc_c00162{bottom:466.020000px;}
.yb_c00162{bottom:490.620000px;}
.ya_c00162{bottom:514.920000px;}
.y9_c00162{bottom:540.270000px;}
.y8_c00162{bottom:564.270000px;}
.y7_c00162{bottom:588.870000px;}
.y6_c00162{bottom:613.620000px;}
.y5_c00162{bottom:638.220000px;}
.y4_c00162{bottom:662.520000px;}
.y3_c00162{bottom:686.820000px;}
.y2_c00162{bottom:711.720000px;}
.y1_c00162{bottom:736.770000px;}
.h6_c00162{height:13.200073px;}
.h7_c00162{height:43.804688px;}
.h2_c00162{height:70.224609px;}
.h5_c00162{height:83.563477px;}
.h4_c00162{height:86.960156px;}
.h3_c00162{height:91.160156px;}
.h1_c00162{height:792.000000px;}
.h0_c00162{height:792.150000px;}
.w2_c00162{width:104.875500px;}
.w0_c00162{width:535.125000px;}
.w1_c00162{width:535.500000px;}
.x0_c00162{left:0.000000px;}
.x2_c00162{left:34.500000px;}
.x3_c00162{left:36.450000px;}
.x5_c00162{left:40.050000px;}
.x4_c00162{left:41.400000px;}
.x6_c00162{left:42.450000px;}
.x8_c00162{left:46.950000px;}
.x7_c00162{left:51.000000px;}
.x1_c00162{left:141.450000px;}
.x9_c00162{left:219.376740px;}
@media print{
.v1_c00162{vertical-align:-3.733333pt;}
.v0_c00162{vertical-align:0.000000pt;}
.ls3_c00162{letter-spacing:-2.666667pt;}
.ls1_c00162{letter-spacing:0.000000pt;}
.ls2_c00162{letter-spacing:2.666667pt;}
.ls0_c00162{letter-spacing:15.306667pt;}
.ws0_c00162{word-spacing:-24.045333pt;}
.ws1_c00162{word-spacing:-0.053333pt;}
.ws2_c00162{word-spacing:0.000000pt;}
._13_c00162{margin-left:-21.952000pt;}
._11_c00162{margin-left:-14.837333pt;}
._18_c00162{margin-left:-13.226667pt;}
._c_c00162{margin-left:-12.149333pt;}
._12_c00162{margin-left:-10.496000pt;}
._15_c00162{margin-left:-8.618667pt;}
._17_c00162{margin-left:-7.658667pt;}
._f_c00162{margin-left:-6.133333pt;}
._d_c00162{margin-left:-4.554667pt;}
._e_c00162{margin-left:-3.477333pt;}
._9_c00162{margin-left:-2.453333pt;}
._a_c00162{margin-left:-1.194667pt;}
._b_c00162{width:1.077333pt;}
._2_c00162{width:2.613333pt;}
._5_c00162{width:3.680000pt;}
._3_c00162{width:5.066667pt;}
._19_c00162{width:5.973333pt;}
._6_c00162{width:6.880000pt;}
._10_c00162{width:7.872000pt;}
._1c_c00162{width:9.269333pt;}
._4_c00162{width:10.506667pt;}
._8_c00162{width:11.840000pt;}
._14_c00162{width:13.888000pt;}
._1_c00162{width:14.826667pt;}
._16_c00162{width:16.437333pt;}
._1b_c00162{width:19.008000pt;}
._0_c00162{width:24.053333pt;}
._1a_c00162{width:28.629333pt;}
._1e_c00162{width:33.909333pt;}
._1f_c00162{width:176.896000pt;}
._7_c00162{width:349.280000pt;}
._1d_c00162{width:923.386667pt;}
.fs4_c00162{font-size:42.666667pt;}
.fs0_c00162{font-size:53.333333pt;}
.fs2_c00162{font-size:56.000000pt;}
.fs3_c00162{font-size:58.666667pt;}
.fs1_c00162{font-size:64.000000pt;}
.y0_c00162{bottom:0.000000pt;}
.y1f_c00162{bottom:2.760000pt;}
.y1e_c00162{bottom:6.425217pt;}
.y1d_c00162{bottom:39.840000pt;}
.y1c_c00162{bottom:62.640000pt;}
.y1b_c00162{bottom:86.106667pt;}
.y1a_c00162{bottom:106.506667pt;}
.y19_c00162{bottom:131.306667pt;}
.y18_c00162{bottom:152.906667pt;}
.y17_c00162{bottom:173.040000pt;}
.y16_c00162{bottom:194.373333pt;}
.y15_c00162{bottom:218.106667pt;}
.y14_c00162{bottom:242.106667pt;}
.y13_c00162{bottom:262.240000pt;}
.y12_c00162{bottom:283.173333pt;}
.y11_c00162{bottom:303.573333pt;}
.y10_c00162{bottom:326.106667pt;}
.yf_c00162{bottom:347.706667pt;}
.ye_c00162{bottom:370.106667pt;}
.yd_c00162{bottom:391.840000pt;}
.yc_c00162{bottom:414.240000pt;}
.yb_c00162{bottom:436.106667pt;}
.ya_c00162{bottom:457.706667pt;}
.y9_c00162{bottom:480.240000pt;}
.y8_c00162{bottom:501.573333pt;}
.y7_c00162{bottom:523.440000pt;}
.y6_c00162{bottom:545.440000pt;}
.y5_c00162{bottom:567.306667pt;}
.y4_c00162{bottom:588.906667pt;}
.y3_c00162{bottom:610.506667pt;}
.y2_c00162{bottom:632.640000pt;}
.y1_c00162{bottom:654.906667pt;}
.h6_c00162{height:11.733399pt;}
.h7_c00162{height:38.937500pt;}
.h2_c00162{height:62.421875pt;}
.h5_c00162{height:74.278646pt;}
.h4_c00162{height:77.297917pt;}
.h3_c00162{height:81.031250pt;}
.h1_c00162{height:704.000000pt;}
.h0_c00162{height:704.133333pt;}
.w2_c00162{width:93.222667pt;}
.w0_c00162{width:475.666667pt;}
.w1_c00162{width:476.000000pt;}
.x0_c00162{left:0.000000pt;}
.x2_c00162{left:30.666667pt;}
.x3_c00162{left:32.400000pt;}
.x5_c00162{left:35.600000pt;}
.x4_c00162{left:36.800000pt;}
.x6_c00162{left:37.733333pt;}
.x8_c00162{left:41.733333pt;}
.x7_c00162{left:45.333333pt;}
.x1_c00162{left:125.733333pt;}
.x9_c00162{left:195.001546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ffc63a1309ac30026d490137.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00163;src:url('chunks/assets/font_e808c61c2b7c5bd705b90406.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:1.480469;font-style:normal;font-weight:normal;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_3b34d498a838c8505b0d647f.woff2')format("woff");}.ff3_c00163{font-family:ff3_c00163;line-height:1.568848;font-style:normal;font-weight:normal;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_2dd63f65bc53094b99880689.woff2')format("woff");}.ff4_c00163{font-family:ff4_c00163;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00163{font-family:ff5_c00163;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00163{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00163{vertical-align:0.000000px;}
.ls3_c00163{letter-spacing:-3.000000px;}
.ls2_c00163{letter-spacing:0.000000px;}
.ls0_c00163{letter-spacing:1.800000px;}
.ls1_c00163{letter-spacing:3.000000px;}
.sc__c00163{text-shadow:none;}
.sc0_c00163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00163{-webkit-text-stroke:0px transparent;}
.sc0_c00163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00163{word-spacing:-33.192000px;}
.ws0_c00163{word-spacing:-27.660000px;}
.ws1_c00163{word-spacing:-27.051000px;}
.ws3_c00163{word-spacing:-20.352000px;}
.ws4_c00163{word-spacing:0.000000px;}
._11_c00163{margin-left:-12.060000px;}
._14_c00163{margin-left:-10.704000px;}
._f_c00163{margin-left:-9.108000px;}
._b_c00163{margin-left:-6.852000px;}
._10_c00163{margin-left:-5.628000px;}
._1_c00163{margin-left:-4.524000px;}
._6_c00163{margin-left:-2.688000px;}
._4_c00163{margin-left:-1.440000px;}
._5_c00163{width:1.104000px;}
._0_c00163{width:2.436000px;}
._9_c00163{width:3.468000px;}
._12_c00163{width:4.536000px;}
._2_c00163{width:5.580000px;}
._e_c00163{width:6.876000px;}
._3_c00163{width:7.980000px;}
._a_c00163{width:10.116000px;}
._c_c00163{width:12.240000px;}
._13_c00163{width:14.904000px;}
._8_c00163{width:15.936000px;}
._7_c00163{width:21.912000px;}
._d_c00163{width:23.268000px;}
.fc2_c00163{color:transparent;}
.fc1_c00163{color:rgb(128,128,128);}
.fc0_c00163{color:rgb(0,0,0);}
.fs5_c00163{font-size:48.000000px;}
.fs1_c00163{font-size:60.000000px;}
.fs3_c00163{font-size:63.000000px;}
.fs2_c00163{font-size:72.000000px;}
.fs4_c00163{font-size:81.000000px;}
.fs0_c00163{font-size:84.000000px;}
.y0_c00163{bottom:0.000000px;}
.y1f_c00163{bottom:3.105000px;}
.y1e_c00163{bottom:7.228363px;}
.y1d_c00163{bottom:57.750000px;}
.y1c_c00163{bottom:80.100000px;}
.y1b_c00163{bottom:105.600000px;}
.y1a_c00163{bottom:132.300000px;}
.y19_c00163{bottom:156.600000px;}
.y18_c00163{bottom:180.450000px;}
.y17_c00163{bottom:205.200000px;}
.y16_c00163{bottom:230.850000px;}
.y15_c00163{bottom:254.850000px;}
.y14_c00163{bottom:279.450000px;}
.y13_c00163{bottom:304.050000px;}
.y12_c00163{bottom:328.350000px;}
.y11_c00163{bottom:352.650000px;}
.y10_c00163{bottom:379.050000px;}
.yf_c00163{bottom:402.600000px;}
.ye_c00163{bottom:426.600000px;}
.yd_c00163{bottom:451.950000px;}
.yc_c00163{bottom:476.100000px;}
.yb_c00163{bottom:500.250000px;}
.ya_c00163{bottom:524.550000px;}
.y9_c00163{bottom:548.400000px;}
.y8_c00163{bottom:573.150000px;}
.y7_c00163{bottom:597.750000px;}
.y6_c00163{bottom:622.050000px;}
.y5_c00163{bottom:646.950000px;}
.y4_c00163{bottom:671.400000px;}
.y3_c00163{bottom:696.000000px;}
.y2_c00163{bottom:720.900000px;}
.y1_c00163{bottom:746.250000px;}
.h5_c00163{height:13.200074px;}
.h6_c00163{height:43.804688px;}
.h2_c00163{height:82.400391px;}
.h3_c00163{height:91.160156px;}
.h4_c00163{height:102.555176px;}
.h0_c00163{height:797.850000px;}
.h1_c00163{height:798.000000px;}
.w2_c00163{width:104.875500px;}
.w0_c00163{width:530.025000px;}
.w1_c00163{width:530.250000px;}
.x0_c00163{left:0.000000px;}
.x5_c00163{left:40.050000px;}
.x2_c00163{left:115.350000px;}
.x3_c00163{left:116.400000px;}
.x4_c00163{left:117.450000px;}
.x7_c00163{left:216.826767px;}
.x1_c00163{left:227.400000px;}
.x6_c00163{left:465.000000px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls3_c00163{letter-spacing:-2.666667pt;}
.ls2_c00163{letter-spacing:0.000000pt;}
.ls0_c00163{letter-spacing:1.600000pt;}
.ls1_c00163{letter-spacing:2.666667pt;}
.ws2_c00163{word-spacing:-29.504000pt;}
.ws0_c00163{word-spacing:-24.586667pt;}
.ws1_c00163{word-spacing:-24.045333pt;}
.ws3_c00163{word-spacing:-18.090667pt;}
.ws4_c00163{word-spacing:0.000000pt;}
._11_c00163{margin-left:-10.720000pt;}
._14_c00163{margin-left:-9.514667pt;}
._f_c00163{margin-left:-8.096000pt;}
._b_c00163{margin-left:-6.090667pt;}
._10_c00163{margin-left:-5.002667pt;}
._1_c00163{margin-left:-4.021333pt;}
._6_c00163{margin-left:-2.389333pt;}
._4_c00163{margin-left:-1.280000pt;}
._5_c00163{width:0.981333pt;}
._0_c00163{width:2.165333pt;}
._9_c00163{width:3.082667pt;}
._12_c00163{width:4.032000pt;}
._2_c00163{width:4.960000pt;}
._e_c00163{width:6.112000pt;}
._3_c00163{width:7.093333pt;}
._a_c00163{width:8.992000pt;}
._c_c00163{width:10.880000pt;}
._13_c00163{width:13.248000pt;}
._8_c00163{width:14.165333pt;}
._7_c00163{width:19.477333pt;}
._d_c00163{width:20.682667pt;}
.fs5_c00163{font-size:42.666667pt;}
.fs1_c00163{font-size:53.333333pt;}
.fs3_c00163{font-size:56.000000pt;}
.fs2_c00163{font-size:64.000000pt;}
.fs4_c00163{font-size:72.000000pt;}
.fs0_c00163{font-size:74.666667pt;}
.y0_c00163{bottom:0.000000pt;}
.y1f_c00163{bottom:2.760000pt;}
.y1e_c00163{bottom:6.425212pt;}
.y1d_c00163{bottom:51.333333pt;}
.y1c_c00163{bottom:71.200000pt;}
.y1b_c00163{bottom:93.866667pt;}
.y1a_c00163{bottom:117.600000pt;}
.y19_c00163{bottom:139.200000pt;}
.y18_c00163{bottom:160.400000pt;}
.y17_c00163{bottom:182.400000pt;}
.y16_c00163{bottom:205.200000pt;}
.y15_c00163{bottom:226.533333pt;}
.y14_c00163{bottom:248.400000pt;}
.y13_c00163{bottom:270.266667pt;}
.y12_c00163{bottom:291.866667pt;}
.y11_c00163{bottom:313.466667pt;}
.y10_c00163{bottom:336.933333pt;}
.yf_c00163{bottom:357.866667pt;}
.ye_c00163{bottom:379.200000pt;}
.yd_c00163{bottom:401.733333pt;}
.yc_c00163{bottom:423.200000pt;}
.yb_c00163{bottom:444.666667pt;}
.ya_c00163{bottom:466.266667pt;}
.y9_c00163{bottom:487.466667pt;}
.y8_c00163{bottom:509.466667pt;}
.y7_c00163{bottom:531.333333pt;}
.y6_c00163{bottom:552.933333pt;}
.y5_c00163{bottom:575.066667pt;}
.y4_c00163{bottom:596.800000pt;}
.y3_c00163{bottom:618.666667pt;}
.y2_c00163{bottom:640.800000pt;}
.y1_c00163{bottom:663.333333pt;}
.h5_c00163{height:11.733399pt;}
.h6_c00163{height:38.937500pt;}
.h2_c00163{height:73.244792pt;}
.h3_c00163{height:81.031250pt;}
.h4_c00163{height:91.160156pt;}
.h0_c00163{height:709.200000pt;}
.h1_c00163{height:709.333333pt;}
.w2_c00163{width:93.222667pt;}
.w0_c00163{width:471.133333pt;}
.w1_c00163{width:471.333333pt;}
.x0_c00163{left:0.000000pt;}
.x5_c00163{left:35.600000pt;}
.x2_c00163{left:102.533333pt;}
.x3_c00163{left:103.466667pt;}
.x4_c00163{left:104.400000pt;}
.x7_c00163{left:192.734904pt;}
.x1_c00163{left:202.133333pt;}
.x6_c00163{left:413.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_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_e26e8c91be80a82c7ad76000.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00164;src:url('chunks/assets/font_aa7a6ceede08d3f34ab34678.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00164;src:url('chunks/assets/font_9bc5646d2954fe5c002d7848.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;line-height:1.568848;font-style:normal;font-weight:normal;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_655eddd9693ac7b847b640d3.woff2')format("woff");}.ff4_c00164{font-family:ff4_c00164;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00164;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00164{font-family:ff5_c00164;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00164{vertical-align:0.000000px;}
.ls4_c00164{letter-spacing:-9.000000px;}
.ls3_c00164{letter-spacing:-3.000000px;}
.ls2_c00164{letter-spacing:0.000000px;}
.ls0_c00164{letter-spacing:3.000000px;}
.ls1_c00164{letter-spacing:4.788000px;}
.ls5_c00164{letter-spacing:6.000000px;}
.sc__c00164{text-shadow:none;}
.sc0_c00164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00164{-webkit-text-stroke:0px transparent;}
.sc0_c00164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00164{word-spacing:-42.000000px;}
.ws2_c00164{word-spacing:-27.051000px;}
.ws1_c00164{word-spacing:-20.352000px;}
.ws3_c00164{word-spacing:-18.906000px;}
.ws4_c00164{word-spacing:0.000000px;}
._14_c00164{margin-left:-24.864000px;}
._11_c00164{margin-left:-9.864000px;}
._16_c00164{margin-left:-8.640000px;}
._12_c00164{margin-left:-7.524000px;}
._f_c00164{margin-left:-6.156000px;}
._c_c00164{margin-left:-4.356000px;}
._8_c00164{margin-left:-2.664000px;}
._7_c00164{margin-left:-1.512000px;}
._3_c00164{width:1.596000px;}
._0_c00164{width:2.604000px;}
._2_c00164{width:4.200000px;}
._1_c00164{width:5.712000px;}
._15_c00164{width:7.308000px;}
._a_c00164{width:9.288000px;}
._e_c00164{width:10.308000px;}
._5_c00164{width:12.312000px;}
._13_c00164{width:14.220000px;}
._10_c00164{width:15.228000px;}
._b_c00164{width:19.308000px;}
._d_c00164{width:24.912000px;}
._6_c00164{width:27.072000px;}
._9_c00164{width:37.872000px;}
._4_c00164{width:407.619000px;}
.fc2_c00164{color:transparent;}
.fc1_c00164{color:rgb(128,128,128);}
.fc0_c00164{color:rgb(0,0,0);}
.fs7_c00164{font-size:48.000000px;}
.fs3_c00164{font-size:63.000000px;}
.fs6_c00164{font-size:66.000000px;}
.fs5_c00164{font-size:69.000000px;}
.fs2_c00164{font-size:72.000000px;}
.fs1_c00164{font-size:81.000000px;}
.fs0_c00164{font-size:84.000000px;}
.fs4_c00164{font-size:93.000000px;}
.y0_c00164{bottom:0.000000px;}
.y1f_c00164{bottom:3.105000px;}
.y1e_c00164{bottom:7.228357px;}
.y1d_c00164{bottom:43.230000px;}
.y1c_c00164{bottom:69.630000px;}
.y1b_c00164{bottom:93.930000px;}
.y1a_c00164{bottom:119.430000px;}
.y19_c00164{bottom:146.130000px;}
.y18_c00164{bottom:171.180000px;}
.y17_c00164{bottom:195.030000px;}
.y16_c00164{bottom:219.780000px;}
.y15_c00164{bottom:246.030000px;}
.y14_c00164{bottom:270.780000px;}
.y13_c00164{bottom:292.680000px;}
.y12_c00164{bottom:318.030000px;}
.y11_c00164{bottom:342.030000px;}
.y10_c00164{bottom:366.930000px;}
.yf_c00164{bottom:391.830000px;}
.ye_c00164{bottom:415.830000px;}
.yd_c00164{bottom:441.480000px;}
.yc_c00164{bottom:466.080000px;}
.yb_c00164{bottom:490.830000px;}
.ya_c00164{bottom:515.430000px;}
.y9_c00164{bottom:540.330000px;}
.y8_c00164{bottom:564.930000px;}
.y7_c00164{bottom:589.230000px;}
.y6_c00164{bottom:614.280000px;}
.y5_c00164{bottom:638.880000px;}
.y4_c00164{bottom:662.880000px;}
.y3_c00164{bottom:687.780000px;}
.y2_c00164{bottom:712.230000px;}
.y1_c00164{bottom:737.430000px;}
.h6_c00164{height:13.200074px;}
.h7_c00164{height:43.804688px;}
.h2_c00164{height:82.400391px;}
.h5_c00164{height:83.563477px;}
.h3_c00164{height:91.160156px;}
.h4_c00164{height:117.748535px;}
.h1_c00164{height:789.750000px;}
.h0_c00164{height:790.050000px;}
.w2_c00164{width:104.875500px;}
.w1_c00164{width:539.250000px;}
.w0_c00164{width:539.475000px;}
.x0_c00164{left:0.000000px;}
.x2_c00164{left:36.900000px;}
.x3_c00164{left:38.550000px;}
.x4_c00164{left:39.900000px;}
.x5_c00164{left:41.250000px;}
.x6_c00164{left:42.300000px;}
.x7_c00164{left:43.500000px;}
.x8_c00164{left:44.550000px;}
.x1_c00164{left:146.700000px;}
.xa_c00164{left:221.551758px;}
.x9_c00164{left:360.900000px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls4_c00164{letter-spacing:-8.000000pt;}
.ls3_c00164{letter-spacing:-2.666667pt;}
.ls2_c00164{letter-spacing:0.000000pt;}
.ls0_c00164{letter-spacing:2.666667pt;}
.ls1_c00164{letter-spacing:4.256000pt;}
.ls5_c00164{letter-spacing:5.333333pt;}
.ws0_c00164{word-spacing:-37.333333pt;}
.ws2_c00164{word-spacing:-24.045333pt;}
.ws1_c00164{word-spacing:-18.090667pt;}
.ws3_c00164{word-spacing:-16.805333pt;}
.ws4_c00164{word-spacing:0.000000pt;}
._14_c00164{margin-left:-22.101333pt;}
._11_c00164{margin-left:-8.768000pt;}
._16_c00164{margin-left:-7.680000pt;}
._12_c00164{margin-left:-6.688000pt;}
._f_c00164{margin-left:-5.472000pt;}
._c_c00164{margin-left:-3.872000pt;}
._8_c00164{margin-left:-2.368000pt;}
._7_c00164{margin-left:-1.344000pt;}
._3_c00164{width:1.418667pt;}
._0_c00164{width:2.314667pt;}
._2_c00164{width:3.733333pt;}
._1_c00164{width:5.077333pt;}
._15_c00164{width:6.496000pt;}
._a_c00164{width:8.256000pt;}
._e_c00164{width:9.162667pt;}
._5_c00164{width:10.944000pt;}
._13_c00164{width:12.640000pt;}
._10_c00164{width:13.536000pt;}
._b_c00164{width:17.162667pt;}
._d_c00164{width:22.144000pt;}
._6_c00164{width:24.064000pt;}
._9_c00164{width:33.664000pt;}
._4_c00164{width:362.328000pt;}
.fs7_c00164{font-size:42.666667pt;}
.fs3_c00164{font-size:56.000000pt;}
.fs6_c00164{font-size:58.666667pt;}
.fs5_c00164{font-size:61.333333pt;}
.fs2_c00164{font-size:64.000000pt;}
.fs1_c00164{font-size:72.000000pt;}
.fs0_c00164{font-size:74.666667pt;}
.fs4_c00164{font-size:82.666667pt;}
.y0_c00164{bottom:0.000000pt;}
.y1f_c00164{bottom:2.760000pt;}
.y1e_c00164{bottom:6.425206pt;}
.y1d_c00164{bottom:38.426667pt;}
.y1c_c00164{bottom:61.893333pt;}
.y1b_c00164{bottom:83.493333pt;}
.y1a_c00164{bottom:106.160000pt;}
.y19_c00164{bottom:129.893333pt;}
.y18_c00164{bottom:152.160000pt;}
.y17_c00164{bottom:173.360000pt;}
.y16_c00164{bottom:195.360000pt;}
.y15_c00164{bottom:218.693333pt;}
.y14_c00164{bottom:240.693333pt;}
.y13_c00164{bottom:260.160000pt;}
.y12_c00164{bottom:282.693333pt;}
.y11_c00164{bottom:304.026667pt;}
.y10_c00164{bottom:326.160000pt;}
.yf_c00164{bottom:348.293333pt;}
.ye_c00164{bottom:369.626667pt;}
.yd_c00164{bottom:392.426667pt;}
.yc_c00164{bottom:414.293333pt;}
.yb_c00164{bottom:436.293333pt;}
.ya_c00164{bottom:458.160000pt;}
.y9_c00164{bottom:480.293333pt;}
.y8_c00164{bottom:502.160000pt;}
.y7_c00164{bottom:523.760000pt;}
.y6_c00164{bottom:546.026667pt;}
.y5_c00164{bottom:567.893333pt;}
.y4_c00164{bottom:589.226667pt;}
.y3_c00164{bottom:611.360000pt;}
.y2_c00164{bottom:633.093333pt;}
.y1_c00164{bottom:655.493333pt;}
.h6_c00164{height:11.733399pt;}
.h7_c00164{height:38.937500pt;}
.h2_c00164{height:73.244792pt;}
.h5_c00164{height:74.278646pt;}
.h3_c00164{height:81.031250pt;}
.h4_c00164{height:104.665365pt;}
.h1_c00164{height:702.000000pt;}
.h0_c00164{height:702.266667pt;}
.w2_c00164{width:93.222667pt;}
.w1_c00164{width:479.333333pt;}
.w0_c00164{width:479.533333pt;}
.x0_c00164{left:0.000000pt;}
.x2_c00164{left:32.800000pt;}
.x3_c00164{left:34.266667pt;}
.x4_c00164{left:35.466667pt;}
.x5_c00164{left:36.666667pt;}
.x6_c00164{left:37.600000pt;}
.x7_c00164{left:38.666667pt;}
.x8_c00164{left:39.600000pt;}
.x1_c00164{left:130.400000pt;}
.xa_c00164{left:196.934896pt;}
.x9_c00164{left:320.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_da9e6e2cd8a1546597560bfd.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.480469;font-style:normal;font-weight:normal;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_f2e1d1d62e8e9bc575b2bc9f.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00165{font-family:ff3_c00165;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00165{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.ls0_c00165{letter-spacing:0.000000px;}
.ls1_c00165{letter-spacing:3.000000px;}
.sc__c00165{text-shadow:none;}
.sc0_c00165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00165{-webkit-text-stroke:0px transparent;}
.sc0_c00165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00165{word-spacing:-33.192000px;}
.ws2_c00165{word-spacing:-14.460000px;}
.ws0_c00165{word-spacing:-14.280000px;}
.ws3_c00165{word-spacing:0.000000px;}
._15_c00165{margin-left:-14.508000px;}
._12_c00165{margin-left:-11.964000px;}
._13_c00165{margin-left:-9.336000px;}
._11_c00165{margin-left:-7.932000px;}
._e_c00165{margin-left:-6.528000px;}
._f_c00165{margin-left:-4.764000px;}
._5_c00165{margin-left:-3.396000px;}
._6_c00165{margin-left:-2.232000px;}
._7_c00165{margin-left:-1.152000px;}
._8_c00165{width:1.452000px;}
._9_c00165{width:2.628000px;}
._d_c00165{width:3.708000px;}
._10_c00165{width:4.932000px;}
._14_c00165{width:6.276000px;}
._2_c00165{width:7.380000px;}
._1_c00165{width:9.300000px;}
._4_c00165{width:11.460000px;}
._c_c00165{width:12.888000px;}
._0_c00165{width:15.060000px;}
._3_c00165{width:17.880000px;}
._a_c00165{width:19.284000px;}
._b_c00165{width:27.516000px;}
.fc2_c00165{color:transparent;}
.fc1_c00165{color:rgb(128,128,128);}
.fc0_c00165{color:rgb(0,0,0);}
.fs2_c00165{font-size:48.000000px;}
.fs0_c00165{font-size:60.000000px;}
.fs1_c00165{font-size:72.000000px;}
.y0_c00165{bottom:0.000000px;}
.y1f_c00165{bottom:3.105000px;}
.y1e_c00165{bottom:7.228355px;}
.y1d_c00165{bottom:48.885000px;}
.y1c_c00165{bottom:71.835000px;}
.y1b_c00165{bottom:97.485000px;}
.y1a_c00165{bottom:123.135000px;}
.y19_c00165{bottom:147.735000px;}
.y18_c00165{bottom:172.785000px;}
.y17_c00165{bottom:197.985000px;}
.y16_c00165{bottom:222.285000px;}
.y15_c00165{bottom:247.635000px;}
.y14_c00165{bottom:271.035000px;}
.y13_c00165{bottom:295.935000px;}
.y12_c00165{bottom:320.235000px;}
.y11_c00165{bottom:345.585000px;}
.y10_c00165{bottom:369.435000px;}
.yf_c00165{bottom:393.885000px;}
.ye_c00165{bottom:418.035000px;}
.yd_c00165{bottom:442.785000px;}
.yc_c00165{bottom:467.085000px;}
.yb_c00165{bottom:490.935000px;}
.ya_c00165{bottom:515.685000px;}
.y9_c00165{bottom:540.585000px;}
.y8_c00165{bottom:565.185000px;}
.y7_c00165{bottom:589.635000px;}
.y6_c00165{bottom:614.535000px;}
.y5_c00165{bottom:639.135000px;}
.y4_c00165{bottom:663.435000px;}
.y3_c00165{bottom:688.035000px;}
.y2_c00165{bottom:712.335000px;}
.y1_c00165{bottom:737.985000px;}
.h4_c00165{height:13.200074px;}
.h5_c00165{height:43.804688px;}
.h2_c00165{height:75.966797px;}
.h3_c00165{height:91.160156px;}
.h0_c00165{height:782.175000px;}
.h1_c00165{height:782.250000px;}
.w2_c00165{width:104.875500px;}
.w0_c00165{width:542.175000px;}
.w1_c00165{width:542.250000px;}
.x0_c00165{left:0.000000px;}
.x5_c00165{left:114.000000px;}
.x4_c00165{left:117.450000px;}
.x3_c00165{left:118.500000px;}
.x2_c00165{left:119.700000px;}
.x6_c00165{left:121.200000px;}
.x7_c00165{left:123.750000px;}
.x9_c00165{left:222.901749px;}
.x1_c00165{left:233.100000px;}
.x8_c00165{left:469.500000px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls0_c00165{letter-spacing:0.000000pt;}
.ls1_c00165{letter-spacing:2.666667pt;}
.ws1_c00165{word-spacing:-29.504000pt;}
.ws2_c00165{word-spacing:-12.853333pt;}
.ws0_c00165{word-spacing:-12.693333pt;}
.ws3_c00165{word-spacing:0.000000pt;}
._15_c00165{margin-left:-12.896000pt;}
._12_c00165{margin-left:-10.634667pt;}
._13_c00165{margin-left:-8.298667pt;}
._11_c00165{margin-left:-7.050667pt;}
._e_c00165{margin-left:-5.802667pt;}
._f_c00165{margin-left:-4.234667pt;}
._5_c00165{margin-left:-3.018667pt;}
._6_c00165{margin-left:-1.984000pt;}
._7_c00165{margin-left:-1.024000pt;}
._8_c00165{width:1.290667pt;}
._9_c00165{width:2.336000pt;}
._d_c00165{width:3.296000pt;}
._10_c00165{width:4.384000pt;}
._14_c00165{width:5.578667pt;}
._2_c00165{width:6.560000pt;}
._1_c00165{width:8.266667pt;}
._4_c00165{width:10.186667pt;}
._c_c00165{width:11.456000pt;}
._0_c00165{width:13.386667pt;}
._3_c00165{width:15.893333pt;}
._a_c00165{width:17.141333pt;}
._b_c00165{width:24.458667pt;}
.fs2_c00165{font-size:42.666667pt;}
.fs0_c00165{font-size:53.333333pt;}
.fs1_c00165{font-size:64.000000pt;}
.y0_c00165{bottom:0.000000pt;}
.y1f_c00165{bottom:2.760000pt;}
.y1e_c00165{bottom:6.425204pt;}
.y1d_c00165{bottom:43.453333pt;}
.y1c_c00165{bottom:63.853333pt;}
.y1b_c00165{bottom:86.653333pt;}
.y1a_c00165{bottom:109.453333pt;}
.y19_c00165{bottom:131.320000pt;}
.y18_c00165{bottom:153.586667pt;}
.y17_c00165{bottom:175.986667pt;}
.y16_c00165{bottom:197.586667pt;}
.y15_c00165{bottom:220.120000pt;}
.y14_c00165{bottom:240.920000pt;}
.y13_c00165{bottom:263.053333pt;}
.y12_c00165{bottom:284.653333pt;}
.y11_c00165{bottom:307.186667pt;}
.y10_c00165{bottom:328.386667pt;}
.yf_c00165{bottom:350.120000pt;}
.ye_c00165{bottom:371.586667pt;}
.yd_c00165{bottom:393.586667pt;}
.yc_c00165{bottom:415.186667pt;}
.yb_c00165{bottom:436.386667pt;}
.ya_c00165{bottom:458.386667pt;}
.y9_c00165{bottom:480.520000pt;}
.y8_c00165{bottom:502.386667pt;}
.y7_c00165{bottom:524.120000pt;}
.y6_c00165{bottom:546.253333pt;}
.y5_c00165{bottom:568.120000pt;}
.y4_c00165{bottom:589.720000pt;}
.y3_c00165{bottom:611.586667pt;}
.y2_c00165{bottom:633.186667pt;}
.y1_c00165{bottom:655.986667pt;}
.h4_c00165{height:11.733399pt;}
.h5_c00165{height:38.937500pt;}
.h2_c00165{height:67.526042pt;}
.h3_c00165{height:81.031250pt;}
.h0_c00165{height:695.266667pt;}
.h1_c00165{height:695.333333pt;}
.w2_c00165{width:93.222667pt;}
.w0_c00165{width:481.933333pt;}
.w1_c00165{width:482.000000pt;}
.x0_c00165{left:0.000000pt;}
.x5_c00165{left:101.333333pt;}
.x4_c00165{left:104.400000pt;}
.x3_c00165{left:105.333333pt;}
.x2_c00165{left:106.400000pt;}
.x6_c00165{left:107.733333pt;}
.x7_c00165{left:110.000000pt;}
.x9_c00165{left:198.134888pt;}
.x1_c00165{left:207.200000pt;}
.x8_c00165{left:417.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_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_957bdb139a9efd4fdc9033f7.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00166;src:url('chunks/assets/font_4df2865eb42906143fd84c44.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00166;src:url('chunks/assets/font_73a81152a12b26ba6c57ddfd.woff2')format("woff");}.ff3_c00166{font-family:ff3_c00166;line-height:1.568848;font-style:normal;font-weight:normal;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_ba98d886b873e85db912b3ba.woff2')format("woff");}.ff4_c00166{font-family:ff4_c00166;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00166;src:url('chunks/assets/font_3d36f245eb70df0fdaf5d79c.woff2')format("woff");}.ff5_c00166{font-family:ff5_c00166;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00166;src:url('chunks/assets/font_7c3fecd4428e3da898e39f66.woff2')format("woff");}.ff6_c00166{font-family:ff6_c00166;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00166;src:url('chunks/assets/font_105ed4b1707ad7a777d74b05.woff2')format("woff");}.ff7_c00166{font-family:ff7_c00166;line-height:1.575000;font-style:normal;font-weight: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_c00166;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff8_c00166{font-family:ff8_c00166;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00166{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00166{vertical-align:0.000000px;}
.ls2_c00166{letter-spacing:0.000000px;}
.ls1_c00166{letter-spacing:2.988000px;}
.ls3_c00166{letter-spacing:3.000000px;}
.ls0_c00166{letter-spacing:7.560000px;}
.sc__c00166{text-shadow:none;}
.sc0_c00166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00166{-webkit-text-stroke:0px transparent;}
.sc0_c00166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00166{word-spacing:-24.360000px;}
.ws2_c00166{word-spacing:-20.352000px;}
.ws1_c00166{word-spacing:-17.352000px;}
.ws3_c00166{word-spacing:-14.460000px;}
.ws4_c00166{word-spacing:0.000000px;}
._e_c00166{margin-left:-15.192000px;}
._1c_c00166{margin-left:-12.168000px;}
._12_c00166{margin-left:-10.572000px;}
._1d_c00166{margin-left:-9.084000px;}
._f_c00166{margin-left:-7.776000px;}
._5_c00166{margin-left:-6.192000px;}
._c_c00166{margin-left:-5.040000px;}
._6_c00166{margin-left:-3.312000px;}
._7_c00166{margin-left:-1.728000px;}
._8_c00166{width:1.296000px;}
._9_c00166{width:3.096000px;}
._b_c00166{width:4.104000px;}
._d_c00166{width:5.184000px;}
._1_c00166{width:6.636000px;}
._19_c00166{width:8.352000px;}
._10_c00166{width:9.720000px;}
._0_c00166{width:11.004000px;}
._2_c00166{width:12.012000px;}
._1a_c00166{width:13.116000px;}
._1e_c00166{width:14.208000px;}
._a_c00166{width:15.912000px;}
._20_c00166{width:19.284000px;}
._1b_c00166{width:21.636000px;}
._21_c00166{width:23.832000px;}
._23_c00166{width:25.932000px;}
._22_c00166{width:27.432000px;}
._18_c00166{width:29.898000px;}
._4_c00166{width:32.400000px;}
._11_c00166{width:64.668000px;}
._14_c00166{width:67.068000px;}
._15_c00166{width:140.328000px;}
._1f_c00166{width:196.080000px;}
._17_c00166{width:258.624000px;}
._3_c00166{width:355.731000px;}
._16_c00166{width:370.224000px;}
._13_c00166{width:460.200000px;}
.fc2_c00166{color:transparent;}
.fc1_c00166{color:rgb(128,128,128);}
.fc0_c00166{color:rgb(0,0,0);}
.fs7_c00166{font-size:48.000000px;}
.fs3_c00166{font-size:54.000000px;}
.fs4_c00166{font-size:60.000000px;}
.fs6_c00166{font-size:63.000000px;}
.fs5_c00166{font-size:66.000000px;}
.fs2_c00166{font-size:72.000000px;}
.fs1_c00166{font-size:81.000000px;}
.fs0_c00166{font-size:84.000000px;}
.y0_c00166{bottom:0.000000px;}
.y20_c00166{bottom:3.105000px;}
.y1f_c00166{bottom:7.228355px;}
.y1e_c00166{bottom:37.785000px;}
.y1d_c00166{bottom:64.035000px;}
.y1c_c00166{bottom:89.685000px;}
.y1b_c00166{bottom:115.035000px;}
.y1a_c00166{bottom:140.685000px;}
.y19_c00166{bottom:165.585000px;}
.y18_c00166{bottom:188.685000px;}
.y17_c00166{bottom:215.985000px;}
.y16_c00166{bottom:241.335000px;}
.y15_c00166{bottom:265.935000px;}
.y14_c00166{bottom:289.935000px;}
.y13_c00166{bottom:313.185000px;}
.y12_c00166{bottom:338.385000px;}
.y11_c00166{bottom:362.835000px;}
.y10_c00166{bottom:386.985000px;}
.yf_c00166{bottom:412.635000px;}
.ye_c00166{bottom:424.935000px;}
.yd_c00166{bottom:437.385000px;}
.yc_c00166{bottom:462.285000px;}
.yb_c00166{bottom:487.335000px;}
.ya_c00166{bottom:511.185000px;}
.y9_c00166{bottom:536.985000px;}
.y8_c00166{bottom:561.135000px;}
.y7_c00166{bottom:586.785000px;}
.y6_c00166{bottom:610.785000px;}
.y5_c00166{bottom:635.535000px;}
.y4_c00166{bottom:659.685000px;}
.y3_c00166{bottom:685.335000px;}
.y2_c00166{bottom:709.035000px;}
.y1_c00166{bottom:734.385000px;}
.h5_c00166{height:13.200074px;}
.h6_c00166{height:43.804688px;}
.h4_c00166{height:75.966797px;}
.h2_c00166{height:82.400391px;}
.h3_c00166{height:91.160156px;}
.h1_c00166{height:779.250000px;}
.h0_c00166{height:779.475000px;}
.w2_c00166{width:104.875500px;}
.w0_c00166{width:538.950000px;}
.w1_c00166{width:539.250000px;}
.x0_c00166{left:0.000000px;}
.x7_c00166{left:39.450000px;}
.x6_c00166{left:42.150000px;}
.x2_c00166{left:43.200000px;}
.x3_c00166{left:44.850000px;}
.x4_c00166{left:46.200000px;}
.x5_c00166{left:47.250000px;}
.x1_c00166{left:158.250000px;}
.x9_c00166{left:221.289230px;}
.x8_c00166{left:379.800000px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls2_c00166{letter-spacing:0.000000pt;}
.ls1_c00166{letter-spacing:2.656000pt;}
.ls3_c00166{letter-spacing:2.666667pt;}
.ls0_c00166{letter-spacing:6.720000pt;}
.ws0_c00166{word-spacing:-21.653333pt;}
.ws2_c00166{word-spacing:-18.090667pt;}
.ws1_c00166{word-spacing:-15.424000pt;}
.ws3_c00166{word-spacing:-12.853333pt;}
.ws4_c00166{word-spacing:0.000000pt;}
._e_c00166{margin-left:-13.504000pt;}
._1c_c00166{margin-left:-10.816000pt;}
._12_c00166{margin-left:-9.397333pt;}
._1d_c00166{margin-left:-8.074667pt;}
._f_c00166{margin-left:-6.912000pt;}
._5_c00166{margin-left:-5.504000pt;}
._c_c00166{margin-left:-4.480000pt;}
._6_c00166{margin-left:-2.944000pt;}
._7_c00166{margin-left:-1.536000pt;}
._8_c00166{width:1.152000pt;}
._9_c00166{width:2.752000pt;}
._b_c00166{width:3.648000pt;}
._d_c00166{width:4.608000pt;}
._1_c00166{width:5.898667pt;}
._19_c00166{width:7.424000pt;}
._10_c00166{width:8.640000pt;}
._0_c00166{width:9.781333pt;}
._2_c00166{width:10.677333pt;}
._1a_c00166{width:11.658667pt;}
._1e_c00166{width:12.629333pt;}
._a_c00166{width:14.144000pt;}
._20_c00166{width:17.141333pt;}
._1b_c00166{width:19.232000pt;}
._21_c00166{width:21.184000pt;}
._23_c00166{width:23.050667pt;}
._22_c00166{width:24.384000pt;}
._18_c00166{width:26.576000pt;}
._4_c00166{width:28.800000pt;}
._11_c00166{width:57.482667pt;}
._14_c00166{width:59.616000pt;}
._15_c00166{width:124.736000pt;}
._1f_c00166{width:174.293333pt;}
._17_c00166{width:229.888000pt;}
._3_c00166{width:316.205333pt;}
._16_c00166{width:329.088000pt;}
._13_c00166{width:409.066667pt;}
.fs7_c00166{font-size:42.666667pt;}
.fs3_c00166{font-size:48.000000pt;}
.fs4_c00166{font-size:53.333333pt;}
.fs6_c00166{font-size:56.000000pt;}
.fs5_c00166{font-size:58.666667pt;}
.fs2_c00166{font-size:64.000000pt;}
.fs1_c00166{font-size:72.000000pt;}
.fs0_c00166{font-size:74.666667pt;}
.y0_c00166{bottom:0.000000pt;}
.y20_c00166{bottom:2.760000pt;}
.y1f_c00166{bottom:6.425204pt;}
.y1e_c00166{bottom:33.586667pt;}
.y1d_c00166{bottom:56.920000pt;}
.y1c_c00166{bottom:79.720000pt;}
.y1b_c00166{bottom:102.253333pt;}
.y1a_c00166{bottom:125.053333pt;}
.y19_c00166{bottom:147.186667pt;}
.y18_c00166{bottom:167.720000pt;}
.y17_c00166{bottom:191.986667pt;}
.y16_c00166{bottom:214.520000pt;}
.y15_c00166{bottom:236.386667pt;}
.y14_c00166{bottom:257.720000pt;}
.y13_c00166{bottom:278.386667pt;}
.y12_c00166{bottom:300.786667pt;}
.y11_c00166{bottom:322.520000pt;}
.y10_c00166{bottom:343.986667pt;}
.yf_c00166{bottom:366.786667pt;}
.ye_c00166{bottom:377.720000pt;}
.yd_c00166{bottom:388.786667pt;}
.yc_c00166{bottom:410.920000pt;}
.yb_c00166{bottom:433.186667pt;}
.ya_c00166{bottom:454.386667pt;}
.y9_c00166{bottom:477.320000pt;}
.y8_c00166{bottom:498.786667pt;}
.y7_c00166{bottom:521.586667pt;}
.y6_c00166{bottom:542.920000pt;}
.y5_c00166{bottom:564.920000pt;}
.y4_c00166{bottom:586.386667pt;}
.y3_c00166{bottom:609.186667pt;}
.y2_c00166{bottom:630.253333pt;}
.y1_c00166{bottom:652.786667pt;}
.h5_c00166{height:11.733399pt;}
.h6_c00166{height:38.937500pt;}
.h4_c00166{height:67.526042pt;}
.h2_c00166{height:73.244792pt;}
.h3_c00166{height:81.031250pt;}
.h1_c00166{height:692.666667pt;}
.h0_c00166{height:692.866667pt;}
.w2_c00166{width:93.222667pt;}
.w0_c00166{width:479.066667pt;}
.w1_c00166{width:479.333333pt;}
.x0_c00166{left:0.000000pt;}
.x7_c00166{left:35.066667pt;}
.x6_c00166{left:37.466667pt;}
.x2_c00166{left:38.400000pt;}
.x3_c00166{left:39.866667pt;}
.x4_c00166{left:41.066667pt;}
.x5_c00166{left:42.000000pt;}
.x1_c00166{left:140.666667pt;}
.x9_c00166{left:196.701538pt;}
.x8_c00166{left:337.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7e8abfd6c80142be1fdaaf84.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.480469;font-style:normal;font-weight:normal;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_8be1bed8fbba610b4f959d49.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:1.568848;font-style:normal;font-weight:normal;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_d01d41c65a4eba501f6fa223.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00167{font-family:ff4_c00167;line-height:1.219238;font-style: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;}
.ls4_c00167{letter-spacing:-3.000000px;}
.ls3_c00167{letter-spacing:0.000000px;}
.ls2_c00167{letter-spacing:3.000000px;}
.ls0_c00167{letter-spacing:4.788000px;}
.ls1_c00167{letter-spacing:11.016000px;}
.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:-33.192000px;}
.ws1_c00167{word-spacing:-27.051000px;}
.ws2_c00167{word-spacing:0.000000px;}
._16_c00167{margin-left:-15.192000px;}
._5_c00167{margin-left:-13.176000px;}
._15_c00167{margin-left:-11.592000px;}
._13_c00167{margin-left:-9.576000px;}
._d_c00167{margin-left:-8.136000px;}
._6_c00167{margin-left:-6.192000px;}
._e_c00167{margin-left:-5.112000px;}
._9_c00167{margin-left:-3.888000px;}
._8_c00167{margin-left:-2.880000px;}
._7_c00167{margin-left:-1.152000px;}
._a_c00167{width:1.008000px;}
._1_c00167{width:2.016000px;}
._3_c00167{width:3.312000px;}
._2_c00167{width:4.392000px;}
._0_c00167{width:6.048000px;}
._4_c00167{width:7.056000px;}
._12_c00167{width:8.064000px;}
._10_c00167{width:9.144000px;}
._b_c00167{width:10.296000px;}
._f_c00167{width:12.096000px;}
._c_c00167{width:13.968000px;}
._11_c00167{width:15.336000px;}
._17_c00167{width:16.344000px;}
._19_c00167{width:18.360000px;}
._18_c00167{width:22.320000px;}
._14_c00167{width:55.224000px;}
.fc2_c00167{color:transparent;}
.fc1_c00167{color:rgb(128,128,128);}
.fc0_c00167{color:rgb(0,0,0);}
.fs3_c00167{font-size:48.000000px;}
.fs1_c00167{font-size:54.000000px;}
.fs2_c00167{font-size:63.000000px;}
.fs0_c00167{font-size:72.000000px;}
.y0_c00167{bottom:0.000000px;}
.y1e_c00167{bottom:3.105000px;}
.y1d_c00167{bottom:7.228369px;}
.y1c_c00167{bottom:82.620000px;}
.y1b_c00167{bottom:107.370000px;}
.y1a_c00167{bottom:133.020000px;}
.y19_c00167{bottom:158.220000px;}
.y18_c00167{bottom:184.320000px;}
.y17_c00167{bottom:208.620000px;}
.y16_c00167{bottom:232.920000px;}
.y15_c00167{bottom:258.120000px;}
.y14_c00167{bottom:282.720000px;}
.y13_c00167{bottom:307.020000px;}
.y12_c00167{bottom:331.320000px;}
.y11_c00167{bottom:355.320000px;}
.y10_c00167{bottom:380.070000px;}
.yf_c00167{bottom:405.720000px;}
.ye_c00167{bottom:429.870000px;}
.yd_c00167{bottom:454.320000px;}
.yc_c00167{bottom:478.920000px;}
.yb_c00167{bottom:503.220000px;}
.ya_c00167{bottom:528.570000px;}
.y9_c00167{bottom:552.870000px;}
.y8_c00167{bottom:577.770000px;}
.y7_c00167{bottom:602.370000px;}
.y6_c00167{bottom:627.420000px;}
.y5_c00167{bottom:652.020000px;}
.y4_c00167{bottom:676.320000px;}
.y3_c00167{bottom:701.370000px;}
.y2_c00167{bottom:725.970000px;}
.y1_c00167{bottom:751.320000px;}
.h3_c00167{height:13.200073px;}
.h4_c00167{height:43.804688px;}
.h2_c00167{height:91.160156px;}
.h1_c00167{height:798.750000px;}
.h0_c00167{height:798.900000px;}
.w2_c00167{width:104.875500px;}
.w0_c00167{width:530.025000px;}
.w1_c00167{width:530.250000px;}
.x0_c00167{left:0.000000px;}
.x6_c00167{left:85.350000px;}
.x8_c00167{left:93.150000px;}
.x7_c00167{left:109.050000px;}
.x5_c00167{left:110.700000px;}
.x4_c00167{left:112.650000px;}
.x3_c00167{left:113.700000px;}
.x2_c00167{left:115.650000px;}
.x9_c00167{left:216.826767px;}
.x1_c00167{left:230.850000px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls4_c00167{letter-spacing:-2.666667pt;}
.ls3_c00167{letter-spacing:0.000000pt;}
.ls2_c00167{letter-spacing:2.666667pt;}
.ls0_c00167{letter-spacing:4.256000pt;}
.ls1_c00167{letter-spacing:9.792000pt;}
.ws0_c00167{word-spacing:-29.504000pt;}
.ws1_c00167{word-spacing:-24.045333pt;}
.ws2_c00167{word-spacing:0.000000pt;}
._16_c00167{margin-left:-13.504000pt;}
._5_c00167{margin-left:-11.712000pt;}
._15_c00167{margin-left:-10.304000pt;}
._13_c00167{margin-left:-8.512000pt;}
._d_c00167{margin-left:-7.232000pt;}
._6_c00167{margin-left:-5.504000pt;}
._e_c00167{margin-left:-4.544000pt;}
._9_c00167{margin-left:-3.456000pt;}
._8_c00167{margin-left:-2.560000pt;}
._7_c00167{margin-left:-1.024000pt;}
._a_c00167{width:0.896000pt;}
._1_c00167{width:1.792000pt;}
._3_c00167{width:2.944000pt;}
._2_c00167{width:3.904000pt;}
._0_c00167{width:5.376000pt;}
._4_c00167{width:6.272000pt;}
._12_c00167{width:7.168000pt;}
._10_c00167{width:8.128000pt;}
._b_c00167{width:9.152000pt;}
._f_c00167{width:10.752000pt;}
._c_c00167{width:12.416000pt;}
._11_c00167{width:13.632000pt;}
._17_c00167{width:14.528000pt;}
._19_c00167{width:16.320000pt;}
._18_c00167{width:19.840000pt;}
._14_c00167{width:49.088000pt;}
.fs3_c00167{font-size:42.666667pt;}
.fs1_c00167{font-size:48.000000pt;}
.fs2_c00167{font-size:56.000000pt;}
.fs0_c00167{font-size:64.000000pt;}
.y0_c00167{bottom:0.000000pt;}
.y1e_c00167{bottom:2.760000pt;}
.y1d_c00167{bottom:6.425217pt;}
.y1c_c00167{bottom:73.440000pt;}
.y1b_c00167{bottom:95.440000pt;}
.y1a_c00167{bottom:118.240000pt;}
.y19_c00167{bottom:140.640000pt;}
.y18_c00167{bottom:163.840000pt;}
.y17_c00167{bottom:185.440000pt;}
.y16_c00167{bottom:207.040000pt;}
.y15_c00167{bottom:229.440000pt;}
.y14_c00167{bottom:251.306667pt;}
.y13_c00167{bottom:272.906667pt;}
.y12_c00167{bottom:294.506667pt;}
.y11_c00167{bottom:315.840000pt;}
.y10_c00167{bottom:337.840000pt;}
.yf_c00167{bottom:360.640000pt;}
.ye_c00167{bottom:382.106667pt;}
.yd_c00167{bottom:403.840000pt;}
.yc_c00167{bottom:425.706667pt;}
.yb_c00167{bottom:447.306667pt;}
.ya_c00167{bottom:469.840000pt;}
.y9_c00167{bottom:491.440000pt;}
.y8_c00167{bottom:513.573333pt;}
.y7_c00167{bottom:535.440000pt;}
.y6_c00167{bottom:557.706667pt;}
.y5_c00167{bottom:579.573333pt;}
.y4_c00167{bottom:601.173333pt;}
.y3_c00167{bottom:623.440000pt;}
.y2_c00167{bottom:645.306667pt;}
.y1_c00167{bottom:667.840000pt;}
.h3_c00167{height:11.733399pt;}
.h4_c00167{height:38.937500pt;}
.h2_c00167{height:81.031250pt;}
.h1_c00167{height:710.000000pt;}
.h0_c00167{height:710.133333pt;}
.w2_c00167{width:93.222667pt;}
.w0_c00167{width:471.133333pt;}
.w1_c00167{width:471.333333pt;}
.x0_c00167{left:0.000000pt;}
.x6_c00167{left:75.866667pt;}
.x8_c00167{left:82.800000pt;}
.x7_c00167{left:96.933333pt;}
.x5_c00167{left:98.400000pt;}
.x4_c00167{left:100.133333pt;}
.x3_c00167{left:101.066667pt;}
.x2_c00167{left:102.800000pt;}
.x9_c00167{left:192.734904pt;}
.x1_c00167{left:205.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e565bf50b9c52f75e2c29fb.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00168;src:url('chunks/assets/font_b705ca5786e5bf536049902b.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.568848;font-style:normal;font-weight:normal;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_d089eae65cf573e3a1aced60.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:1.480469;font-style:normal;font-weight:normal;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_d4ec7ff2efe1ebe119a82d02.woff2')format("woff");}.ff4_c00168{font-family:ff4_c00168;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00168;src:url('chunks/assets/font_13afef7c75d075e9a6ad31ef.woff2')format("woff");}.ff5_c00168{font-family:ff5_c00168;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00168;src:url('chunks/assets/font_9a812d763c32f5fa556509cb.woff2')format("woff");}.ff6_c00168{font-family:ff6_c00168;line-height:1.575000;font-style:normal;font-weight: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_c00168;src:url('chunks/assets/font_4643097406cdf09e369f6f9d.woff2')format("woff");}.ff7_c00168{font-family:ff7_c00168;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00168;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff8_c00168{font-family:ff8_c00168;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00168{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00168{vertical-align:0.000000px;}
.lsa_c00168{letter-spacing:-9.000000px;}
.ls8_c00168{letter-spacing:-3.000000px;}
.ls6_c00168{letter-spacing:0.000000px;}
.ls7_c00168{letter-spacing:3.000000px;}
.ls2_c00168{letter-spacing:5.712000px;}
.ls9_c00168{letter-spacing:6.000000px;}
.ls3_c00168{letter-spacing:7.626000px;}
.ls1_c00168{letter-spacing:8.988000px;}
.ls0_c00168{letter-spacing:10.104000px;}
.ls5_c00168{letter-spacing:12.420000px;}
.ls4_c00168{letter-spacing:40.620000px;}
.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;}
}
.ws5_c00168{word-spacing:-30.000000px;}
.ws2_c00168{word-spacing:-27.051000px;}
.ws1_c00168{word-spacing:-20.352000px;}
.ws0_c00168{word-spacing:-17.352000px;}
.ws4_c00168{word-spacing:-6.906000px;}
.ws3_c00168{word-spacing:-0.060000px;}
.ws6_c00168{word-spacing:0.000000px;}
._21_c00168{margin-left:-64.800000px;}
._18_c00168{margin-left:-22.968000px;}
._f_c00168{margin-left:-19.392000px;}
._10_c00168{margin-left:-17.784000px;}
._11_c00168{margin-left:-16.056000px;}
._16_c00168{margin-left:-14.292000px;}
._c_c00168{margin-left:-12.600000px;}
._a_c00168{margin-left:-11.232000px;}
._9_c00168{margin-left:-10.032000px;}
._6_c00168{margin-left:-8.352000px;}
._12_c00168{margin-left:-7.332000px;}
._e_c00168{margin-left:-6.168000px;}
._5_c00168{margin-left:-5.112000px;}
._b_c00168{margin-left:-3.816000px;}
._7_c00168{margin-left:-2.664000px;}
._d_c00168{margin-left:-1.440000px;}
._3_c00168{width:1.260000px;}
._1_c00168{width:2.352000px;}
._0_c00168{width:4.284000px;}
._1b_c00168{width:5.292000px;}
._2_c00168{width:6.468000px;}
._1a_c00168{width:8.652000px;}
._15_c00168{width:10.944000px;}
._14_c00168{width:12.288000px;}
._19_c00168{width:14.208000px;}
._8_c00168{width:18.768000px;}
._13_c00168{width:85.872000px;}
._1f_c00168{width:105.774000px;}
._1d_c00168{width:131.625000px;}
._17_c00168{width:134.196000px;}
._1c_c00168{width:229.380000px;}
._1e_c00168{width:258.150000px;}
._4_c00168{width:307.272000px;}
._20_c00168{width:415.836000px;}
._22_c00168{width:1373.184000px;}
.fc2_c00168{color:transparent;}
.fc1_c00168{color:rgb(128,128,128);}
.fc0_c00168{color:rgb(0,0,0);}
.fs7_c00168{font-size:48.000000px;}
.fs6_c00168{font-size:54.000000px;}
.fs5_c00168{font-size:60.000000px;}
.fs3_c00168{font-size:63.000000px;}
.fs2_c00168{font-size:66.000000px;}
.fs1_c00168{font-size:72.000000px;}
.fs4_c00168{font-size:75.000000px;}
.fs0_c00168{font-size:84.000000px;}
.y0_c00168{bottom:0.000000px;}
.y20_c00168{bottom:3.105000px;}
.y1f_c00168{bottom:7.228355px;}
.y1d_c00168{bottom:23.535000px;}
.y1c_c00168{bottom:44.835000px;}
.y1b_c00168{bottom:74.235000px;}
.y1e_c00168{bottom:79.635000px;}
.y1a_c00168{bottom:98.235000px;}
.y19_c00168{bottom:123.885000px;}
.y18_c00168{bottom:145.785000px;}
.y17_c00168{bottom:173.085000px;}
.y16_c00168{bottom:199.035000px;}
.y15_c00168{bottom:224.085000px;}
.y14_c00168{bottom:248.985000px;}
.y13_c00168{bottom:273.735000px;}
.y12_c00168{bottom:295.635000px;}
.y11_c00168{bottom:320.235000px;}
.y10_c00168{bottom:345.285000px;}
.yf_c00168{bottom:369.885000px;}
.ye_c00168{bottom:394.785000px;}
.yd_c00168{bottom:419.385000px;}
.yc_c00168{bottom:443.835000px;}
.yb_c00168{bottom:468.735000px;}
.ya_c00168{bottom:494.385000px;}
.y9_c00168{bottom:518.985000px;}
.y8_c00168{bottom:543.285000px;}
.y7_c00168{bottom:568.335000px;}
.y6_c00168{bottom:593.685000px;}
.y5_c00168{bottom:617.835000px;}
.y4_c00168{bottom:642.585000px;}
.y3_c00168{bottom:666.885000px;}
.y2_c00168{bottom:691.785000px;}
.y1_c00168{bottom:715.485000px;}
.h7_c00168{height:13.200074px;}
.h8_c00168{height:43.804688px;}
.h6_c00168{height:52.971680px;}
.h4_c00168{height:73.608398px;}
.h2_c00168{height:82.400391px;}
.h5_c00168{height:83.563477px;}
.h3_c00168{height:91.160156px;}
.h0_c00168{height:770.025000px;}
.h1_c00168{height:770.250000px;}
.w2_c00168{width:104.875500px;}
.w0_c00168{width:519.450000px;}
.w1_c00168{width:519.750000px;}
.x0_c00168{left:0.000000px;}
.x2_c00168{left:14.550000px;}
.x5_c00168{left:16.500000px;}
.x3_c00168{left:17.550000px;}
.x6_c00168{left:23.250000px;}
.x4_c00168{left:48.900000px;}
.x1_c00168{left:137.400000px;}
.x8_c00168{left:211.539230px;}
.x7_c00168{left:462.150000px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.lsa_c00168{letter-spacing:-8.000000pt;}
.ls8_c00168{letter-spacing:-2.666667pt;}
.ls6_c00168{letter-spacing:0.000000pt;}
.ls7_c00168{letter-spacing:2.666667pt;}
.ls2_c00168{letter-spacing:5.077333pt;}
.ls9_c00168{letter-spacing:5.333333pt;}
.ls3_c00168{letter-spacing:6.778667pt;}
.ls1_c00168{letter-spacing:7.989333pt;}
.ls0_c00168{letter-spacing:8.981333pt;}
.ls5_c00168{letter-spacing:11.040000pt;}
.ls4_c00168{letter-spacing:36.106667pt;}
.ws5_c00168{word-spacing:-26.666667pt;}
.ws2_c00168{word-spacing:-24.045333pt;}
.ws1_c00168{word-spacing:-18.090667pt;}
.ws0_c00168{word-spacing:-15.424000pt;}
.ws4_c00168{word-spacing:-6.138667pt;}
.ws3_c00168{word-spacing:-0.053333pt;}
.ws6_c00168{word-spacing:0.000000pt;}
._21_c00168{margin-left:-57.600000pt;}
._18_c00168{margin-left:-20.416000pt;}
._f_c00168{margin-left:-17.237333pt;}
._10_c00168{margin-left:-15.808000pt;}
._11_c00168{margin-left:-14.272000pt;}
._16_c00168{margin-left:-12.704000pt;}
._c_c00168{margin-left:-11.200000pt;}
._a_c00168{margin-left:-9.984000pt;}
._9_c00168{margin-left:-8.917333pt;}
._6_c00168{margin-left:-7.424000pt;}
._12_c00168{margin-left:-6.517333pt;}
._e_c00168{margin-left:-5.482667pt;}
._5_c00168{margin-left:-4.544000pt;}
._b_c00168{margin-left:-3.392000pt;}
._7_c00168{margin-left:-2.368000pt;}
._d_c00168{margin-left:-1.280000pt;}
._3_c00168{width:1.120000pt;}
._1_c00168{width:2.090667pt;}
._0_c00168{width:3.808000pt;}
._1b_c00168{width:4.704000pt;}
._2_c00168{width:5.749333pt;}
._1a_c00168{width:7.690667pt;}
._15_c00168{width:9.728000pt;}
._14_c00168{width:10.922667pt;}
._19_c00168{width:12.629333pt;}
._8_c00168{width:16.682667pt;}
._13_c00168{width:76.330667pt;}
._1f_c00168{width:94.021333pt;}
._1d_c00168{width:117.000000pt;}
._17_c00168{width:119.285333pt;}
._1c_c00168{width:203.893333pt;}
._1e_c00168{width:229.466667pt;}
._4_c00168{width:273.130667pt;}
._20_c00168{width:369.632000pt;}
._22_c00168{width:1220.608000pt;}
.fs7_c00168{font-size:42.666667pt;}
.fs6_c00168{font-size:48.000000pt;}
.fs5_c00168{font-size:53.333333pt;}
.fs3_c00168{font-size:56.000000pt;}
.fs2_c00168{font-size:58.666667pt;}
.fs1_c00168{font-size:64.000000pt;}
.fs4_c00168{font-size:66.666667pt;}
.fs0_c00168{font-size:74.666667pt;}
.y0_c00168{bottom:0.000000pt;}
.y20_c00168{bottom:2.760000pt;}
.y1f_c00168{bottom:6.425204pt;}
.y1d_c00168{bottom:20.920000pt;}
.y1c_c00168{bottom:39.853333pt;}
.y1b_c00168{bottom:65.986667pt;}
.y1e_c00168{bottom:70.786667pt;}
.y1a_c00168{bottom:87.320000pt;}
.y19_c00168{bottom:110.120000pt;}
.y18_c00168{bottom:129.586667pt;}
.y17_c00168{bottom:153.853333pt;}
.y16_c00168{bottom:176.920000pt;}
.y15_c00168{bottom:199.186667pt;}
.y14_c00168{bottom:221.320000pt;}
.y13_c00168{bottom:243.320000pt;}
.y12_c00168{bottom:262.786667pt;}
.y11_c00168{bottom:284.653333pt;}
.y10_c00168{bottom:306.920000pt;}
.yf_c00168{bottom:328.786667pt;}
.ye_c00168{bottom:350.920000pt;}
.yd_c00168{bottom:372.786667pt;}
.yc_c00168{bottom:394.520000pt;}
.yb_c00168{bottom:416.653333pt;}
.ya_c00168{bottom:439.453333pt;}
.y9_c00168{bottom:461.320000pt;}
.y8_c00168{bottom:482.920000pt;}
.y7_c00168{bottom:505.186667pt;}
.y6_c00168{bottom:527.720000pt;}
.y5_c00168{bottom:549.186667pt;}
.y4_c00168{bottom:571.186667pt;}
.y3_c00168{bottom:592.786667pt;}
.y2_c00168{bottom:614.920000pt;}
.y1_c00168{bottom:635.986667pt;}
.h7_c00168{height:11.733399pt;}
.h8_c00168{height:38.937500pt;}
.h6_c00168{height:47.085938pt;}
.h4_c00168{height:65.429688pt;}
.h2_c00168{height:73.244792pt;}
.h5_c00168{height:74.278646pt;}
.h3_c00168{height:81.031250pt;}
.h0_c00168{height:684.466667pt;}
.h1_c00168{height:684.666667pt;}
.w2_c00168{width:93.222667pt;}
.w0_c00168{width:461.733333pt;}
.w1_c00168{width:462.000000pt;}
.x0_c00168{left:0.000000pt;}
.x2_c00168{left:12.933333pt;}
.x5_c00168{left:14.666667pt;}
.x3_c00168{left:15.600000pt;}
.x6_c00168{left:20.666667pt;}
.x4_c00168{left:43.466667pt;}
.x1_c00168{left:122.133333pt;}
.x8_c00168{left:188.034871pt;}
.x7_c00168{left:410.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2a8bc448bad458329d9f4005.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00169;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00169;src:url('chunks/assets/font_c52d0c222c4c92a429c84de5.woff2')format("woff");}.ff3_c00169{font-family:ff3_c00169;line-height:1.568848;font-style:normal;font-weight:normal;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_9dfb9df005087e0f608dda16.woff2')format("woff");}.ff4_c00169{font-family:ff4_c00169;line-height:1.480469;font-style:normal;font-weight:normal;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_631d976de70ce4ba674dcaed.woff2')format("woff");}.ff5_c00169{font-family:ff5_c00169;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00169;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00169{font-family:ff6_c00169;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00169{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00169{vertical-align:0.000000px;}
.ls1_c00169{letter-spacing:0.000000px;}
.ls0_c00169{letter-spacing:3.000000px;}
.ls2_c00169{letter-spacing:9.000000px;}
.sc__c00169{text-shadow:none;}
.sc0_c00169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00169{-webkit-text-stroke:0px transparent;}
.sc0_c00169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00169{word-spacing:-48.000000px;}
.ws4_c00169{word-spacing:-20.352000px;}
.ws2_c00169{word-spacing:-17.352000px;}
.ws3_c00169{word-spacing:-17.250000px;}
.ws5_c00169{word-spacing:0.000000px;}
.ws0_c00169{word-spacing:0.936000px;}
._1e_c00169{margin-left:-34.884000px;}
._17_c00169{margin-left:-20.352000px;}
._c_c00169{margin-left:-10.440000px;}
._10_c00169{margin-left:-7.644000px;}
._11_c00169{margin-left:-6.084000px;}
._8_c00169{margin-left:-4.992000px;}
._3_c00169{margin-left:-3.948000px;}
._6_c00169{margin-left:-2.904000px;}
._5_c00169{margin-left:-1.440000px;}
._4_c00169{width:1.176000px;}
._1_c00169{width:2.184000px;}
._2_c00169{width:3.276000px;}
._0_c00169{width:5.040000px;}
._7_c00169{width:6.060000px;}
._a_c00169{width:7.524000px;}
._b_c00169{width:9.144000px;}
._12_c00169{width:10.344000px;}
._e_c00169{width:11.664000px;}
._13_c00169{width:13.212000px;}
._9_c00169{width:14.244000px;}
._15_c00169{width:15.684000px;}
._f_c00169{width:17.544000px;}
._14_c00169{width:19.044000px;}
._16_c00169{width:20.436000px;}
._1c_c00169{width:26.724000px;}
._1b_c00169{width:29.244000px;}
._19_c00169{width:71.739000px;}
._1f_c00169{width:75.468000px;}
._1a_c00169{width:89.472000px;}
._21_c00169{width:125.892000px;}
._1d_c00169{width:154.980000px;}
._d_c00169{width:181.248000px;}
._20_c00169{width:302.274000px;}
._22_c00169{width:396.312000px;}
._18_c00169{width:576.324000px;}
.fc2_c00169{color:transparent;}
.fc1_c00169{color:rgb(128,128,128);}
.fc0_c00169{color:rgb(0,0,0);}
.fs4_c00169{font-size:24.000000px;}
.fs5_c00169{font-size:48.000000px;}
.fs3_c00169{font-size:57.000000px;}
.fs1_c00169{font-size:72.000000px;}
.fs2_c00169{font-size:78.000000px;}
.fs0_c00169{font-size:84.000000px;}
.y0_c00169{bottom:0.000000px;}
.y20_c00169{bottom:3.105000px;}
.y1f_c00169{bottom:7.228355px;}
.y1e_c00169{bottom:41.835000px;}
.y1d_c00169{bottom:63.135000px;}
.y1c_c00169{bottom:76.935000px;}
.y1b_c00169{bottom:94.185000px;}
.y1a_c00169{bottom:117.135000px;}
.y19_c00169{bottom:140.985000px;}
.y18_c00169{bottom:166.335000px;}
.y17_c00169{bottom:191.235000px;}
.y16_c00169{bottom:216.585000px;}
.y15_c00169{bottom:240.885000px;}
.y14_c00169{bottom:265.485000px;}
.y13_c00169{bottom:289.785000px;}
.y12_c00169{bottom:314.085000px;}
.y11_c00169{bottom:338.385000px;}
.y10_c00169{bottom:363.435000px;}
.yf_c00169{bottom:387.435000px;}
.ye_c00169{bottom:411.435000px;}
.yd_c00169{bottom:436.335000px;}
.yc_c00169{bottom:461.235000px;}
.yb_c00169{bottom:485.535000px;}
.ya_c00169{bottom:510.285000px;}
.y9_c00169{bottom:534.585000px;}
.y8_c00169{bottom:559.785000px;}
.y7_c00169{bottom:584.085000px;}
.y6_c00169{bottom:608.535000px;}
.y5_c00169{bottom:633.435000px;}
.y4_c00169{bottom:658.485000px;}
.y3_c00169{bottom:681.435000px;}
.y2_c00169{bottom:707.685000px;}
.y1_c00169{bottom:733.935000px;}
.h5_c00169{height:13.200074px;}
.h6_c00169{height:43.804688px;}
.h4_c00169{height:55.914551px;}
.h2_c00169{height:82.441406px;}
.h3_c00169{height:91.160156px;}
.h0_c00169{height:790.275000px;}
.h1_c00169{height:790.500000px;}
.w1_c00169{width:104.875500px;}
.w0_c00169{width:516.750000px;}
.x0_c00169{left:0.000000px;}
.xd_c00169{left:40.050000px;}
.xc_c00169{left:51.600000px;}
.x4_c00169{left:73.950000px;}
.xb_c00169{left:118.200000px;}
.xa_c00169{left:119.400000px;}
.x9_c00169{left:120.750000px;}
.x8_c00169{left:122.100000px;}
.x7_c00169{left:123.150000px;}
.x6_c00169{left:124.950000px;}
.x5_c00169{left:126.600000px;}
.x3_c00169{left:128.700000px;}
.x2_c00169{left:130.950000px;}
.xf_c00169{left:210.189240px;}
.x1_c00169{left:243.900000px;}
.xe_c00169{left:439.500000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls1_c00169{letter-spacing:0.000000pt;}
.ls0_c00169{letter-spacing:2.666667pt;}
.ls2_c00169{letter-spacing:8.000000pt;}
.ws1_c00169{word-spacing:-42.666667pt;}
.ws4_c00169{word-spacing:-18.090667pt;}
.ws2_c00169{word-spacing:-15.424000pt;}
.ws3_c00169{word-spacing:-15.333333pt;}
.ws5_c00169{word-spacing:0.000000pt;}
.ws0_c00169{word-spacing:0.832000pt;}
._1e_c00169{margin-left:-31.008000pt;}
._17_c00169{margin-left:-18.090667pt;}
._c_c00169{margin-left:-9.280000pt;}
._10_c00169{margin-left:-6.794667pt;}
._11_c00169{margin-left:-5.408000pt;}
._8_c00169{margin-left:-4.437333pt;}
._3_c00169{margin-left:-3.509333pt;}
._6_c00169{margin-left:-2.581333pt;}
._5_c00169{margin-left:-1.280000pt;}
._4_c00169{width:1.045333pt;}
._1_c00169{width:1.941333pt;}
._2_c00169{width:2.912000pt;}
._0_c00169{width:4.480000pt;}
._7_c00169{width:5.386667pt;}
._a_c00169{width:6.688000pt;}
._b_c00169{width:8.128000pt;}
._12_c00169{width:9.194667pt;}
._e_c00169{width:10.368000pt;}
._13_c00169{width:11.744000pt;}
._9_c00169{width:12.661333pt;}
._15_c00169{width:13.941333pt;}
._f_c00169{width:15.594667pt;}
._14_c00169{width:16.928000pt;}
._16_c00169{width:18.165333pt;}
._1c_c00169{width:23.754667pt;}
._1b_c00169{width:25.994667pt;}
._19_c00169{width:63.768000pt;}
._1f_c00169{width:67.082667pt;}
._1a_c00169{width:79.530667pt;}
._21_c00169{width:111.904000pt;}
._1d_c00169{width:137.760000pt;}
._d_c00169{width:161.109333pt;}
._20_c00169{width:268.688000pt;}
._22_c00169{width:352.277333pt;}
._18_c00169{width:512.288000pt;}
.fs4_c00169{font-size:21.333333pt;}
.fs5_c00169{font-size:42.666667pt;}
.fs3_c00169{font-size:50.666667pt;}
.fs1_c00169{font-size:64.000000pt;}
.fs2_c00169{font-size:69.333333pt;}
.fs0_c00169{font-size:74.666667pt;}
.y0_c00169{bottom:0.000000pt;}
.y20_c00169{bottom:2.760000pt;}
.y1f_c00169{bottom:6.425204pt;}
.y1e_c00169{bottom:37.186667pt;}
.y1d_c00169{bottom:56.120000pt;}
.y1c_c00169{bottom:68.386667pt;}
.y1b_c00169{bottom:83.720000pt;}
.y1a_c00169{bottom:104.120000pt;}
.y19_c00169{bottom:125.320000pt;}
.y18_c00169{bottom:147.853333pt;}
.y17_c00169{bottom:169.986667pt;}
.y16_c00169{bottom:192.520000pt;}
.y15_c00169{bottom:214.120000pt;}
.y14_c00169{bottom:235.986667pt;}
.y13_c00169{bottom:257.586667pt;}
.y12_c00169{bottom:279.186667pt;}
.y11_c00169{bottom:300.786667pt;}
.y10_c00169{bottom:323.053333pt;}
.yf_c00169{bottom:344.386667pt;}
.ye_c00169{bottom:365.720000pt;}
.yd_c00169{bottom:387.853333pt;}
.yc_c00169{bottom:409.986667pt;}
.yb_c00169{bottom:431.586667pt;}
.ya_c00169{bottom:453.586667pt;}
.y9_c00169{bottom:475.186667pt;}
.y8_c00169{bottom:497.586667pt;}
.y7_c00169{bottom:519.186667pt;}
.y6_c00169{bottom:540.920000pt;}
.y5_c00169{bottom:563.053333pt;}
.y4_c00169{bottom:585.320000pt;}
.y3_c00169{bottom:605.720000pt;}
.y2_c00169{bottom:629.053333pt;}
.y1_c00169{bottom:652.386667pt;}
.h5_c00169{height:11.733399pt;}
.h6_c00169{height:38.937500pt;}
.h4_c00169{height:49.701823pt;}
.h2_c00169{height:73.281250pt;}
.h3_c00169{height:81.031250pt;}
.h0_c00169{height:702.466667pt;}
.h1_c00169{height:702.666667pt;}
.w1_c00169{width:93.222667pt;}
.w0_c00169{width:459.333333pt;}
.x0_c00169{left:0.000000pt;}
.xd_c00169{left:35.600000pt;}
.xc_c00169{left:45.866667pt;}
.x4_c00169{left:65.733333pt;}
.xb_c00169{left:105.066667pt;}
.xa_c00169{left:106.133333pt;}
.x9_c00169{left:107.333333pt;}
.x8_c00169{left:108.533333pt;}
.x7_c00169{left:109.466667pt;}
.x6_c00169{left:111.066667pt;}
.x5_c00169{left:112.533333pt;}
.x3_c00169{left:114.400000pt;}
.x2_c00169{left:116.400000pt;}
.xf_c00169{left:186.834880pt;}
.x1_c00169{left:216.800000pt;}
.xe_c00169{left:390.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_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_5bc3cc84966d99184eba500c.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.480469;font-style:normal;font-weight:normal;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_ab61f87822a1f8f88a431fdf.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.568848;font-style:normal;font-weight:normal;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_aec9a15da4497aa5ae488fbb.woff2')format("woff");}.ff3_c00170{font-family:ff3_c00170;line-height:1.575000;font-style:normal;font-weight:normal;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_4c971d413b162d5b7b289f41.woff2')format("woff");}.ff4_c00170{font-family:ff4_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00170;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00170{font-family:ff5_c00170;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00170{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00170{vertical-align:0.000000px;}
.ls2_c00170{letter-spacing:0.000000px;}
.ls3_c00170{letter-spacing:3.000000px;}
.ls0_c00170{letter-spacing:10.188000px;}
.ls1_c00170{letter-spacing:13.188000px;}
.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:0.000000px;}
._1a_c00170{margin-left:-19.296000px;}
._a_c00170{margin-left:-14.460000px;}
._1e_c00170{margin-left:-12.456000px;}
._14_c00170{margin-left:-9.888000px;}
._18_c00170{margin-left:-8.472000px;}
._12_c00170{margin-left:-6.864000px;}
._10_c00170{margin-left:-5.568000px;}
._f_c00170{margin-left:-4.032000px;}
._e_c00170{margin-left:-3.000000px;}
._c_c00170{margin-left:-1.272000px;}
._b_c00170{width:1.224000px;}
._2_c00170{width:2.640000px;}
._d_c00170{width:3.720000px;}
._11_c00170{width:4.800000px;}
._3_c00170{width:6.600000px;}
._6_c00170{width:8.220000px;}
._5_c00170{width:9.240000px;}
._1b_c00170{width:10.728000px;}
._13_c00170{width:11.904000px;}
._4_c00170{width:13.320000px;}
._7_c00170{width:15.600000px;}
._1_c00170{width:16.980000px;}
._15_c00170{width:22.944000px;}
._9_c00170{width:24.600000px;}
._1d_c00170{width:26.520000px;}
._0_c00170{width:27.660000px;}
._16_c00170{width:30.456000px;}
._1c_c00170{width:104.148000px;}
._19_c00170{width:189.192000px;}
._1f_c00170{width:234.456000px;}
._8_c00170{width:360.060000px;}
._17_c00170{width:744.984000px;}
.fc2_c00170{color:transparent;}
.fc1_c00170{color:rgb(128,128,128);}
.fc0_c00170{color:rgb(0,0,0);}
.fs4_c00170{font-size:48.000000px;}
.fs0_c00170{font-size:60.000000px;}
.fs2_c00170{font-size:63.000000px;}
.fs1_c00170{font-size:72.000000px;}
.fs3_c00170{font-size:81.000000px;}
.y0_c00170{bottom:0.000000px;}
.y1f_c00170{bottom:3.105000px;}
.y1e_c00170{bottom:7.228357px;}
.y1d_c00170{bottom:32.430000px;}
.y1c_c00170{bottom:58.080000px;}
.y1b_c00170{bottom:83.730000px;}
.y1a_c00170{bottom:107.730000px;}
.y19_c00170{bottom:134.280000px;}
.y18_c00170{bottom:158.580000px;}
.y17_c00170{bottom:185.730000px;}
.y16_c00170{bottom:210.030000px;}
.y15_c00170{bottom:235.230000px;}
.y14_c00170{bottom:258.180000px;}
.y13_c00170{bottom:282.480000px;}
.y12_c00170{bottom:306.480000px;}
.y11_c00170{bottom:330.780000px;}
.y10_c00170{bottom:355.830000px;}
.yf_c00170{bottom:380.730000px;}
.ye_c00170{bottom:405.030000px;}
.yd_c00170{bottom:429.930000px;}
.yc_c00170{bottom:454.980000px;}
.yb_c00170{bottom:478.980000px;}
.ya_c00170{bottom:504.180000px;}
.y9_c00170{bottom:528.930000px;}
.y8_c00170{bottom:553.230000px;}
.y7_c00170{bottom:578.130000px;}
.y6_c00170{bottom:602.730000px;}
.y5_c00170{bottom:627.480000px;}
.y4_c00170{bottom:652.080000px;}
.y3_c00170{bottom:676.380000px;}
.y2_c00170{bottom:700.980000px;}
.y1_c00170{bottom:726.030000px;}
.h5_c00170{height:13.200074px;}
.h6_c00170{height:43.804688px;}
.h2_c00170{height:70.224609px;}
.h4_c00170{height:79.497070px;}
.h3_c00170{height:91.160156px;}
.h0_c00170{height:780.600000px;}
.h1_c00170{height:780.750000px;}
.w2_c00170{width:104.875500px;}
.w0_c00170{width:527.850000px;}
.w1_c00170{width:528.000000px;}
.x0_c00170{left:0.000000px;}
.xb_c00170{left:24.750000px;}
.xa_c00170{left:29.250000px;}
.x9_c00170{left:30.300000px;}
.x8_c00170{left:31.950000px;}
.x7_c00170{left:33.300000px;}
.x4_c00170{left:34.350000px;}
.x3_c00170{left:35.700000px;}
.x2_c00170{left:37.350000px;}
.x5_c00170{left:39.450000px;}
.x6_c00170{left:42.150000px;}
.x1_c00170{left:156.300000px;}
.xd_c00170{left:215.739258px;}
.xc_c00170{left:291.600000px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls2_c00170{letter-spacing:0.000000pt;}
.ls3_c00170{letter-spacing:2.666667pt;}
.ls0_c00170{letter-spacing:9.056000pt;}
.ls1_c00170{letter-spacing:11.722667pt;}
.ws0_c00170{word-spacing:0.000000pt;}
._1a_c00170{margin-left:-17.152000pt;}
._a_c00170{margin-left:-12.853333pt;}
._1e_c00170{margin-left:-11.072000pt;}
._14_c00170{margin-left:-8.789333pt;}
._18_c00170{margin-left:-7.530667pt;}
._12_c00170{margin-left:-6.101333pt;}
._10_c00170{margin-left:-4.949333pt;}
._f_c00170{margin-left:-3.584000pt;}
._e_c00170{margin-left:-2.666667pt;}
._c_c00170{margin-left:-1.130667pt;}
._b_c00170{width:1.088000pt;}
._2_c00170{width:2.346667pt;}
._d_c00170{width:3.306667pt;}
._11_c00170{width:4.266667pt;}
._3_c00170{width:5.866667pt;}
._6_c00170{width:7.306667pt;}
._5_c00170{width:8.213333pt;}
._1b_c00170{width:9.536000pt;}
._13_c00170{width:10.581333pt;}
._4_c00170{width:11.840000pt;}
._7_c00170{width:13.866667pt;}
._1_c00170{width:15.093333pt;}
._15_c00170{width:20.394667pt;}
._9_c00170{width:21.866667pt;}
._1d_c00170{width:23.573333pt;}
._0_c00170{width:24.586667pt;}
._16_c00170{width:27.072000pt;}
._1c_c00170{width:92.576000pt;}
._19_c00170{width:168.170667pt;}
._1f_c00170{width:208.405333pt;}
._8_c00170{width:320.053333pt;}
._17_c00170{width:662.208000pt;}
.fs4_c00170{font-size:42.666667pt;}
.fs0_c00170{font-size:53.333333pt;}
.fs2_c00170{font-size:56.000000pt;}
.fs1_c00170{font-size:64.000000pt;}
.fs3_c00170{font-size:72.000000pt;}
.y0_c00170{bottom:0.000000pt;}
.y1f_c00170{bottom:2.760000pt;}
.y1e_c00170{bottom:6.425206pt;}
.y1d_c00170{bottom:28.826667pt;}
.y1c_c00170{bottom:51.626667pt;}
.y1b_c00170{bottom:74.426667pt;}
.y1a_c00170{bottom:95.760000pt;}
.y19_c00170{bottom:119.360000pt;}
.y18_c00170{bottom:140.960000pt;}
.y17_c00170{bottom:165.093333pt;}
.y16_c00170{bottom:186.693333pt;}
.y15_c00170{bottom:209.093333pt;}
.y14_c00170{bottom:229.493333pt;}
.y13_c00170{bottom:251.093333pt;}
.y12_c00170{bottom:272.426667pt;}
.y11_c00170{bottom:294.026667pt;}
.y10_c00170{bottom:316.293333pt;}
.yf_c00170{bottom:338.426667pt;}
.ye_c00170{bottom:360.026667pt;}
.yd_c00170{bottom:382.160000pt;}
.yc_c00170{bottom:404.426667pt;}
.yb_c00170{bottom:425.760000pt;}
.ya_c00170{bottom:448.160000pt;}
.y9_c00170{bottom:470.160000pt;}
.y8_c00170{bottom:491.760000pt;}
.y7_c00170{bottom:513.893333pt;}
.y6_c00170{bottom:535.760000pt;}
.y5_c00170{bottom:557.760000pt;}
.y4_c00170{bottom:579.626667pt;}
.y3_c00170{bottom:601.226667pt;}
.y2_c00170{bottom:623.093333pt;}
.y1_c00170{bottom:645.360000pt;}
.h5_c00170{height:11.733399pt;}
.h6_c00170{height:38.937500pt;}
.h2_c00170{height:62.421875pt;}
.h4_c00170{height:70.664062pt;}
.h3_c00170{height:81.031250pt;}
.h0_c00170{height:693.866667pt;}
.h1_c00170{height:694.000000pt;}
.w2_c00170{width:93.222667pt;}
.w0_c00170{width:469.200000pt;}
.w1_c00170{width:469.333333pt;}
.x0_c00170{left:0.000000pt;}
.xb_c00170{left:22.000000pt;}
.xa_c00170{left:26.000000pt;}
.x9_c00170{left:26.933333pt;}
.x8_c00170{left:28.400000pt;}
.x7_c00170{left:29.600000pt;}
.x4_c00170{left:30.533333pt;}
.x3_c00170{left:31.733333pt;}
.x2_c00170{left:33.200000pt;}
.x5_c00170{left:35.066667pt;}
.x6_c00170{left:37.466667pt;}
.x1_c00170{left:138.933333pt;}
.xd_c00170{left:191.768229pt;}
.xc_c00170{left:259.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d0022c432b801ba3b1c033ae.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.480469;font-style:normal;font-weight:normal;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_cdc41fa1d45f12b9ee2468aa.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00171{font-family:ff3_c00171;line-height:1.219238;font-style: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;}
.ls1_c00171{letter-spacing:-3.000000px;}
.ls2_c00171{letter-spacing:0.000000px;}
.ls0_c00171{letter-spacing:3.000000px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00171{word-spacing:-20.352000px;}
.ws0_c00171{word-spacing:-17.352000px;}
.ws2_c00171{word-spacing:0.000000px;}
._11_c00171{margin-left:-15.690000px;}
._f_c00171{margin-left:-10.119000px;}
._a_c00171{margin-left:-7.137000px;}
._16_c00171{margin-left:-6.072000px;}
._2_c00171{margin-left:-4.872000px;}
._c_c00171{margin-left:-3.582000px;}
._3_c00171{margin-left:-2.523000px;}
._4_c00171{margin-left:-1.221000px;}
._0_c00171{width:1.740000px;}
._1_c00171{width:2.871000px;}
._6_c00171{width:4.710000px;}
._5_c00171{width:6.495000px;}
._8_c00171{width:8.382000px;}
._d_c00171{width:9.720000px;}
._7_c00171{width:10.962000px;}
._12_c00171{width:12.009000px;}
._e_c00171{width:13.152000px;}
._b_c00171{width:15.264000px;}
._15_c00171{width:16.563000px;}
._10_c00171{width:17.784000px;}
._13_c00171{width:22.035000px;}
._14_c00171{width:23.097000px;}
._9_c00171{width:31.506000px;}
.fc2_c00171{color:transparent;}
.fc1_c00171{color:rgb(128,128,128);}
.fc0_c00171{color:rgb(0,0,0);}
.fs4_c00171{font-size:48.000000px;}
.fs3_c00171{font-size:54.000000px;}
.fs2_c00171{font-size:69.000000px;}
.fs1_c00171{font-size:72.000000px;}
.fs0_c00171{font-size:87.000000px;}
.y0_c00171{bottom:0.000000px;}
.y1e_c00171{bottom:3.105000px;}
.y1d_c00171{bottom:7.228371px;}
.y1c_c00171{bottom:85.065000px;}
.y1b_c00171{bottom:105.615000px;}
.y1a_c00171{bottom:132.315000px;}
.y19_c00171{bottom:157.665000px;}
.y18_c00171{bottom:182.565000px;}
.y17_c00171{bottom:208.215000px;}
.y16_c00171{bottom:233.865000px;}
.y15_c00171{bottom:257.265000px;}
.y14_c00171{bottom:282.615000px;}
.y13_c00171{bottom:306.915000px;}
.y12_c00171{bottom:330.765000px;}
.y11_c00171{bottom:357.165000px;}
.y10_c00171{bottom:381.165000px;}
.yf_c00171{bottom:405.465000px;}
.ye_c00171{bottom:429.315000px;}
.yd_c00171{bottom:454.065000px;}
.yc_c00171{bottom:478.065000px;}
.yb_c00171{bottom:502.965000px;}
.ya_c00171{bottom:527.865000px;}
.y9_c00171{bottom:551.865000px;}
.y8_c00171{bottom:576.765000px;}
.y7_c00171{bottom:601.815000px;}
.y6_c00171{bottom:626.115000px;}
.y5_c00171{bottom:650.715000px;}
.y4_c00171{bottom:675.015000px;}
.y3_c00171{bottom:699.615000px;}
.y2_c00171{bottom:724.665000px;}
.y1_c00171{bottom:749.565000px;}
.h5_c00171{height:13.200074px;}
.h6_c00171{height:43.804688px;}
.h3_c00171{height:91.160156px;}
.h4_c00171{height:91.760156px;}
.h2_c00171{height:101.825684px;}
.h0_c00171{height:793.275000px;}
.h1_c00171{height:793.500000px;}
.w2_c00171{width:104.875500px;}
.w1_c00171{width:529.500000px;}
.w0_c00171{width:529.725000px;}
.x0_c00171{left:0.000000px;}
.x2_c00171{left:110.400000px;}
.x3_c00171{left:111.750000px;}
.x4_c00171{left:113.100000px;}
.x5_c00171{left:114.450000px;}
.x6_c00171{left:116.550000px;}
.x7_c00171{left:118.350000px;}
.x8_c00171{left:119.400000px;}
.xa_c00171{left:121.200000px;}
.xb_c00171{left:122.550000px;}
.x9_c00171{left:142.650000px;}
.xd_c00171{left:216.676758px;}
.x1_c00171{left:220.650000px;}
.xc_c00171{left:483.300000px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls1_c00171{letter-spacing:-2.666667pt;}
.ls2_c00171{letter-spacing:0.000000pt;}
.ls0_c00171{letter-spacing:2.666667pt;}
.ws1_c00171{word-spacing:-18.090667pt;}
.ws0_c00171{word-spacing:-15.424000pt;}
.ws2_c00171{word-spacing:0.000000pt;}
._11_c00171{margin-left:-13.946667pt;}
._f_c00171{margin-left:-8.994667pt;}
._a_c00171{margin-left:-6.344000pt;}
._16_c00171{margin-left:-5.397333pt;}
._2_c00171{margin-left:-4.330667pt;}
._c_c00171{margin-left:-3.184000pt;}
._3_c00171{margin-left:-2.242667pt;}
._4_c00171{margin-left:-1.085333pt;}
._0_c00171{width:1.546667pt;}
._1_c00171{width:2.552000pt;}
._6_c00171{width:4.186667pt;}
._5_c00171{width:5.773333pt;}
._8_c00171{width:7.450667pt;}
._d_c00171{width:8.640000pt;}
._7_c00171{width:9.744000pt;}
._12_c00171{width:10.674667pt;}
._e_c00171{width:11.690667pt;}
._b_c00171{width:13.568000pt;}
._15_c00171{width:14.722667pt;}
._10_c00171{width:15.808000pt;}
._13_c00171{width:19.586667pt;}
._14_c00171{width:20.530667pt;}
._9_c00171{width:28.005333pt;}
.fs4_c00171{font-size:42.666667pt;}
.fs3_c00171{font-size:48.000000pt;}
.fs2_c00171{font-size:61.333333pt;}
.fs1_c00171{font-size:64.000000pt;}
.fs0_c00171{font-size:77.333333pt;}
.y0_c00171{bottom:0.000000pt;}
.y1e_c00171{bottom:2.760000pt;}
.y1d_c00171{bottom:6.425219pt;}
.y1c_c00171{bottom:75.613333pt;}
.y1b_c00171{bottom:93.880000pt;}
.y1a_c00171{bottom:117.613333pt;}
.y19_c00171{bottom:140.146667pt;}
.y18_c00171{bottom:162.280000pt;}
.y17_c00171{bottom:185.080000pt;}
.y16_c00171{bottom:207.880000pt;}
.y15_c00171{bottom:228.680000pt;}
.y14_c00171{bottom:251.213333pt;}
.y13_c00171{bottom:272.813333pt;}
.y12_c00171{bottom:294.013333pt;}
.y11_c00171{bottom:317.480000pt;}
.y10_c00171{bottom:338.813333pt;}
.yf_c00171{bottom:360.413333pt;}
.ye_c00171{bottom:381.613333pt;}
.yd_c00171{bottom:403.613333pt;}
.yc_c00171{bottom:424.946667pt;}
.yb_c00171{bottom:447.080000pt;}
.ya_c00171{bottom:469.213333pt;}
.y9_c00171{bottom:490.546667pt;}
.y8_c00171{bottom:512.680000pt;}
.y7_c00171{bottom:534.946667pt;}
.y6_c00171{bottom:556.546667pt;}
.y5_c00171{bottom:578.413333pt;}
.y4_c00171{bottom:600.013333pt;}
.y3_c00171{bottom:621.880000pt;}
.y2_c00171{bottom:644.146667pt;}
.y1_c00171{bottom:666.280000pt;}
.h5_c00171{height:11.733399pt;}
.h6_c00171{height:38.937500pt;}
.h3_c00171{height:81.031250pt;}
.h4_c00171{height:81.564583pt;}
.h2_c00171{height:90.511719pt;}
.h0_c00171{height:705.133333pt;}
.h1_c00171{height:705.333333pt;}
.w2_c00171{width:93.222667pt;}
.w1_c00171{width:470.666667pt;}
.w0_c00171{width:470.866667pt;}
.x0_c00171{left:0.000000pt;}
.x2_c00171{left:98.133333pt;}
.x3_c00171{left:99.333333pt;}
.x4_c00171{left:100.533333pt;}
.x5_c00171{left:101.733333pt;}
.x6_c00171{left:103.600000pt;}
.x7_c00171{left:105.200000pt;}
.x8_c00171{left:106.133333pt;}
.xa_c00171{left:107.733333pt;}
.xb_c00171{left:108.933333pt;}
.x9_c00171{left:126.800000pt;}
.xd_c00171{left:192.601563pt;}
.x1_c00171{left:196.133333pt;}
.xc_c00171{left:429.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3d0a5dc328c2d74d78552bf6.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.480469;font-style:normal;font-weight:normal;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_330030fbb50c40e2cc208c90.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:1.568848;font-style:normal;font-weight:normal;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_13b057aea80ce2e0280dd35c.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;line-height:1.575000;font-style:normal;font-weight:normal;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_0b28a39918cce6ecce246e9a.woff2')format("woff");}.ff4_c00172{font-family:ff4_c00172;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00172{font-family:ff5_c00172;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.ls6_c00172{letter-spacing:0.000000px;}
.ls2_c00172{letter-spacing:2.430000px;}
.ls5_c00172{letter-spacing:3.000000px;}
.ls0_c00172{letter-spacing:4.788000px;}
.ls4_c00172{letter-spacing:6.000000px;}
.ls1_c00172{letter-spacing:8.433000px;}
.ls3_c00172{letter-spacing:14.433000px;}
.sc__c00172{text-shadow:none;}
.sc0_c00172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00172{-webkit-text-stroke:0px transparent;}
.sc0_c00172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00172{word-spacing:-33.192000px;}
.ws0_c00172{word-spacing:-15.336000px;}
.ws2_c00172{word-spacing:0.000000px;}
._12_c00172{margin-left:-28.224000px;}
._22_c00172{margin-left:-16.443000px;}
._18_c00172{margin-left:-10.944000px;}
._10_c00172{margin-left:-9.864000px;}
._24_c00172{margin-left:-8.712000px;}
._f_c00172{margin-left:-6.840000px;}
._1a_c00172{margin-left:-5.472000px;}
._e_c00172{margin-left:-4.464000px;}
._b_c00172{margin-left:-2.664000px;}
._c_c00172{margin-left:-1.368000px;}
._3_c00172{width:1.584000px;}
._5_c00172{width:2.952000px;}
._4_c00172{width:4.680000px;}
._8_c00172{width:5.688000px;}
._9_c00172{width:7.344000px;}
._2_c00172{width:9.216000px;}
._a_c00172{width:10.728000px;}
._d_c00172{width:12.456000px;}
._7_c00172{width:13.608000px;}
._1_c00172{width:14.616000px;}
._13_c00172{width:15.768000px;}
._16_c00172{width:17.496000px;}
._14_c00172{width:18.864000px;}
._15_c00172{width:21.744000px;}
._0_c00172{width:23.472000px;}
._1f_c00172{width:24.624000px;}
._1d_c00172{width:25.776000px;}
._21_c00172{width:26.856000px;}
._1c_c00172{width:28.656000px;}
._19_c00172{width:30.024000px;}
._1b_c00172{width:32.232000px;}
._1e_c00172{width:33.336000px;}
._17_c00172{width:34.416000px;}
._20_c00172{width:37.512000px;}
._23_c00172{width:39.024000px;}
._11_c00172{width:229.248000px;}
._25_c00172{width:238.824000px;}
._6_c00172{width:344.256000px;}
.fc2_c00172{color:transparent;}
.fc1_c00172{color:rgb(128,128,128);}
.fc0_c00172{color:rgb(0,0,0);}
.fs3_c00172{font-size:48.000000px;}
.fs1_c00172{font-size:63.000000px;}
.fs2_c00172{font-size:69.000000px;}
.fs0_c00172{font-size:72.000000px;}
.y0_c00172{bottom:0.000000px;}
.y1f_c00172{bottom:3.105000px;}
.y1e_c00172{bottom:7.228369px;}
.y1d_c00172{bottom:47.220000px;}
.y1c_c00172{bottom:72.120000px;}
.y1b_c00172{bottom:96.870000px;}
.y1a_c00172{bottom:122.520000px;}
.y19_c00172{bottom:147.720000px;}
.y18_c00172{bottom:172.470000px;}
.y17_c00172{bottom:197.670000px;}
.y16_c00172{bottom:222.420000px;}
.y15_c00172{bottom:247.020000px;}
.y14_c00172{bottom:272.370000px;}
.y13_c00172{bottom:296.370000px;}
.y12_c00172{bottom:318.870000px;}
.y11_c00172{bottom:343.170000px;}
.y10_c00172{bottom:368.220000px;}
.yf_c00172{bottom:392.220000px;}
.ye_c00172{bottom:417.420000px;}
.yd_c00172{bottom:442.470000px;}
.yc_c00172{bottom:467.370000px;}
.yb_c00172{bottom:491.970000px;}
.ya_c00172{bottom:516.270000px;}
.y9_c00172{bottom:541.020000px;}
.y8_c00172{bottom:565.920000px;}
.y7_c00172{bottom:590.220000px;}
.y6_c00172{bottom:615.570000px;}
.y5_c00172{bottom:639.270000px;}
.y4_c00172{bottom:663.570000px;}
.y3_c00172{bottom:688.170000px;}
.y2_c00172{bottom:713.370000px;}
.y1_c00172{bottom:738.120000px;}
.h3_c00172{height:13.200073px;}
.h4_c00172{height:43.804688px;}
.h2_c00172{height:91.160156px;}
.h1_c00172{height:792.000000px;}
.h0_c00172{height:792.150000px;}
.w2_c00172{width:104.875500px;}
.w0_c00172{width:541.875000px;}
.w1_c00172{width:542.250000px;}
.x0_c00172{left:0.000000px;}
.x8_c00172{left:26.250000px;}
.x7_c00172{left:28.950000px;}
.x6_c00172{left:31.050000px;}
.x2_c00172{left:32.700000px;}
.x3_c00172{left:34.050000px;}
.x4_c00172{left:38.850000px;}
.x5_c00172{left:40.800000px;}
.x1_c00172{left:154.800000px;}
.xa_c00172{left:222.751740px;}
.x9_c00172{left:292.200000px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls6_c00172{letter-spacing:0.000000pt;}
.ls2_c00172{letter-spacing:2.160000pt;}
.ls5_c00172{letter-spacing:2.666667pt;}
.ls0_c00172{letter-spacing:4.256000pt;}
.ls4_c00172{letter-spacing:5.333333pt;}
.ls1_c00172{letter-spacing:7.496000pt;}
.ls3_c00172{letter-spacing:12.829333pt;}
.ws1_c00172{word-spacing:-29.504000pt;}
.ws0_c00172{word-spacing:-13.632000pt;}
.ws2_c00172{word-spacing:0.000000pt;}
._12_c00172{margin-left:-25.088000pt;}
._22_c00172{margin-left:-14.616000pt;}
._18_c00172{margin-left:-9.728000pt;}
._10_c00172{margin-left:-8.768000pt;}
._24_c00172{margin-left:-7.744000pt;}
._f_c00172{margin-left:-6.080000pt;}
._1a_c00172{margin-left:-4.864000pt;}
._e_c00172{margin-left:-3.968000pt;}
._b_c00172{margin-left:-2.368000pt;}
._c_c00172{margin-left:-1.216000pt;}
._3_c00172{width:1.408000pt;}
._5_c00172{width:2.624000pt;}
._4_c00172{width:4.160000pt;}
._8_c00172{width:5.056000pt;}
._9_c00172{width:6.528000pt;}
._2_c00172{width:8.192000pt;}
._a_c00172{width:9.536000pt;}
._d_c00172{width:11.072000pt;}
._7_c00172{width:12.096000pt;}
._1_c00172{width:12.992000pt;}
._13_c00172{width:14.016000pt;}
._16_c00172{width:15.552000pt;}
._14_c00172{width:16.768000pt;}
._15_c00172{width:19.328000pt;}
._0_c00172{width:20.864000pt;}
._1f_c00172{width:21.888000pt;}
._1d_c00172{width:22.912000pt;}
._21_c00172{width:23.872000pt;}
._1c_c00172{width:25.472000pt;}
._19_c00172{width:26.688000pt;}
._1b_c00172{width:28.650667pt;}
._1e_c00172{width:29.632000pt;}
._17_c00172{width:30.592000pt;}
._20_c00172{width:33.344000pt;}
._23_c00172{width:34.688000pt;}
._11_c00172{width:203.776000pt;}
._25_c00172{width:212.288000pt;}
._6_c00172{width:306.005333pt;}
.fs3_c00172{font-size:42.666667pt;}
.fs1_c00172{font-size:56.000000pt;}
.fs2_c00172{font-size:61.333333pt;}
.fs0_c00172{font-size:64.000000pt;}
.y0_c00172{bottom:0.000000pt;}
.y1f_c00172{bottom:2.760000pt;}
.y1e_c00172{bottom:6.425217pt;}
.y1d_c00172{bottom:41.973333pt;}
.y1c_c00172{bottom:64.106667pt;}
.y1b_c00172{bottom:86.106667pt;}
.y1a_c00172{bottom:108.906667pt;}
.y19_c00172{bottom:131.306667pt;}
.y18_c00172{bottom:153.306667pt;}
.y17_c00172{bottom:175.706667pt;}
.y16_c00172{bottom:197.706667pt;}
.y15_c00172{bottom:219.573333pt;}
.y14_c00172{bottom:242.106667pt;}
.y13_c00172{bottom:263.440000pt;}
.y12_c00172{bottom:283.440000pt;}
.y11_c00172{bottom:305.040000pt;}
.y10_c00172{bottom:327.306667pt;}
.yf_c00172{bottom:348.640000pt;}
.ye_c00172{bottom:371.040000pt;}
.yd_c00172{bottom:393.306667pt;}
.yc_c00172{bottom:415.440000pt;}
.yb_c00172{bottom:437.306667pt;}
.ya_c00172{bottom:458.906667pt;}
.y9_c00172{bottom:480.906667pt;}
.y8_c00172{bottom:503.040000pt;}
.y7_c00172{bottom:524.640000pt;}
.y6_c00172{bottom:547.173333pt;}
.y5_c00172{bottom:568.240000pt;}
.y4_c00172{bottom:589.840000pt;}
.y3_c00172{bottom:611.706667pt;}
.y2_c00172{bottom:634.106667pt;}
.y1_c00172{bottom:656.106667pt;}
.h3_c00172{height:11.733399pt;}
.h4_c00172{height:38.937500pt;}
.h2_c00172{height:81.031250pt;}
.h1_c00172{height:704.000000pt;}
.h0_c00172{height:704.133333pt;}
.w2_c00172{width:93.222667pt;}
.w0_c00172{width:481.666667pt;}
.w1_c00172{width:482.000000pt;}
.x0_c00172{left:0.000000pt;}
.x8_c00172{left:23.333333pt;}
.x7_c00172{left:25.733333pt;}
.x6_c00172{left:27.600000pt;}
.x2_c00172{left:29.066667pt;}
.x3_c00172{left:30.266667pt;}
.x4_c00172{left:34.533333pt;}
.x5_c00172{left:36.266667pt;}
.x1_c00172{left:137.600000pt;}
.xa_c00172{left:198.001546pt;}
.x9_c00172{left:259.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_50486f023f666ee4e4f5292a.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.480469;font-style:normal;font-weight:normal;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_ee6935b7e1365eed87845baa.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:1.568848;font-style:normal;font-weight:normal;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_d1d4e62c0f0d7ecca7b19395.woff2')format("woff");}.ff3_c00173{font-family:ff3_c00173;line-height:1.575000;font-style:normal;font-weight:normal;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_ab15fc29b5aa41b5efc00b54.woff2')format("woff");}.ff4_c00173{font-family:ff4_c00173;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00173{font-family:ff5_c00173;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00173{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00173{vertical-align:0.000000px;}
.ls2_c00173{letter-spacing:-9.000000px;}
.ls3_c00173{letter-spacing:-3.000000px;}
.ls1_c00173{letter-spacing:0.000000px;}
.ls0_c00173{letter-spacing:3.000000px;}
.sc__c00173{text-shadow:none;}
.sc0_c00173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00173{-webkit-text-stroke:0px transparent;}
.sc0_c00173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00173{word-spacing:-27.051000px;}
.ws0_c00173{word-spacing:-17.352000px;}
.ws2_c00173{word-spacing:0.000000px;}
._10_c00173{margin-left:-14.196000px;}
._15_c00173{margin-left:-11.952000px;}
._16_c00173{margin-left:-10.656000px;}
._14_c00173{margin-left:-9.018000px;}
._f_c00173{margin-left:-7.473000px;}
._9_c00173{margin-left:-6.192000px;}
._b_c00173{margin-left:-4.953000px;}
._d_c00173{margin-left:-3.348000px;}
._6_c00173{margin-left:-2.103000px;}
._8_c00173{margin-left:-1.050000px;}
._7_c00173{width:1.296000px;}
._a_c00173{width:2.307000px;}
._18_c00173{width:3.315000px;}
._4_c00173{width:4.320000px;}
._c_c00173{width:5.400000px;}
._1_c00173{width:6.480000px;}
._1b_c00173{width:7.554000px;}
._5_c00173{width:8.580000px;}
._3_c00173{width:10.800000px;}
._2_c00173{width:12.420000px;}
._1a_c00173{width:13.464000px;}
._e_c00173{width:14.814000px;}
._0_c00173{width:16.560000px;}
._13_c00173{width:18.486000px;}
._12_c00173{width:20.748000px;}
._17_c00173{width:21.798000px;}
._19_c00173{width:27.057000px;}
._11_c00173{width:29.043000px;}
._1c_c00173{width:1410.495000px;}
.fc2_c00173{color:transparent;}
.fc1_c00173{color:rgb(128,128,128);}
.fc0_c00173{color:rgb(0,0,0);}
.fs3_c00173{font-size:39.000000px;}
.fs5_c00173{font-size:48.000000px;}
.fs0_c00173{font-size:60.000000px;}
.fs4_c00173{font-size:63.000000px;}
.fs2_c00173{font-size:72.000000px;}
.fs1_c00173{font-size:93.000000px;}
.y0_c00173{bottom:0.000000px;}
.y1f_c00173{bottom:3.105000px;}
.y1e_c00173{bottom:7.228369px;}
.y1d_c00173{bottom:59.070000px;}
.y1c_c00173{bottom:82.920000px;}
.y1b_c00173{bottom:108.570000px;}
.y1a_c00173{bottom:134.370000px;}
.y19_c00173{bottom:160.020000px;}
.y18_c00173{bottom:184.320000px;}
.y17_c00173{bottom:210.270000px;}
.y16_c00173{bottom:234.870000px;}
.y15_c00173{bottom:261.120000px;}
.y14_c00173{bottom:284.070000px;}
.y13_c00173{bottom:308.820000px;}
.y12_c00173{bottom:332.070000px;}
.y11_c00173{bottom:356.670000px;}
.y10_c00173{bottom:381.420000px;}
.yf_c00173{bottom:406.320000px;}
.ye_c00173{bottom:430.920000px;}
.yd_c00173{bottom:455.520000px;}
.yc_c00173{bottom:480.270000px;}
.yb_c00173{bottom:503.820000px;}
.ya_c00173{bottom:528.870000px;}
.y9_c00173{bottom:553.470000px;}
.y8_c00173{bottom:578.070000px;}
.y7_c00173{bottom:603.120000px;}
.y6_c00173{bottom:627.420000px;}
.y5_c00173{bottom:651.720000px;}
.y4_c00173{bottom:676.320000px;}
.y3_c00173{bottom:700.320000px;}
.y2_c00173{bottom:725.520000px;}
.y1_c00173{bottom:750.570000px;}
.h4_c00173{height:13.200073px;}
.h5_c00173{height:43.804688px;}
.h3_c00173{height:91.160156px;}
.h2_c00173{height:117.748535px;}
.h1_c00173{height:790.500000px;}
.h0_c00173{height:790.800000px;}
.w2_c00173{width:104.875500px;}
.w1_c00173{width:534.750000px;}
.w0_c00173{width:534.900000px;}
.x0_c00173{left:0.000000px;}
.x2_c00173{left:115.800000px;}
.x3_c00173{left:116.850000px;}
.x4_c00173{left:117.900000px;}
.x5_c00173{left:219.264267px;}
.x1_c00173{left:228.150000px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls2_c00173{letter-spacing:-8.000000pt;}
.ls3_c00173{letter-spacing:-2.666667pt;}
.ls1_c00173{letter-spacing:0.000000pt;}
.ls0_c00173{letter-spacing:2.666667pt;}
.ws1_c00173{word-spacing:-24.045333pt;}
.ws0_c00173{word-spacing:-15.424000pt;}
.ws2_c00173{word-spacing:0.000000pt;}
._10_c00173{margin-left:-12.618667pt;}
._15_c00173{margin-left:-10.624000pt;}
._16_c00173{margin-left:-9.472000pt;}
._14_c00173{margin-left:-8.016000pt;}
._f_c00173{margin-left:-6.642667pt;}
._9_c00173{margin-left:-5.504000pt;}
._b_c00173{margin-left:-4.402667pt;}
._d_c00173{margin-left:-2.976000pt;}
._6_c00173{margin-left:-1.869333pt;}
._8_c00173{margin-left:-0.933333pt;}
._7_c00173{width:1.152000pt;}
._a_c00173{width:2.050667pt;}
._18_c00173{width:2.946667pt;}
._4_c00173{width:3.840000pt;}
._c_c00173{width:4.800000pt;}
._1_c00173{width:5.760000pt;}
._1b_c00173{width:6.714667pt;}
._5_c00173{width:7.626667pt;}
._3_c00173{width:9.600000pt;}
._2_c00173{width:11.040000pt;}
._1a_c00173{width:11.968000pt;}
._e_c00173{width:13.168000pt;}
._0_c00173{width:14.720000pt;}
._13_c00173{width:16.432000pt;}
._12_c00173{width:18.442667pt;}
._17_c00173{width:19.376000pt;}
._19_c00173{width:24.050667pt;}
._11_c00173{width:25.816000pt;}
._1c_c00173{width:1253.773333pt;}
.fs3_c00173{font-size:34.666667pt;}
.fs5_c00173{font-size:42.666667pt;}
.fs0_c00173{font-size:53.333333pt;}
.fs4_c00173{font-size:56.000000pt;}
.fs2_c00173{font-size:64.000000pt;}
.fs1_c00173{font-size:82.666667pt;}
.y0_c00173{bottom:0.000000pt;}
.y1f_c00173{bottom:2.760000pt;}
.y1e_c00173{bottom:6.425217pt;}
.y1d_c00173{bottom:52.506667pt;}
.y1c_c00173{bottom:73.706667pt;}
.y1b_c00173{bottom:96.506667pt;}
.y1a_c00173{bottom:119.440000pt;}
.y19_c00173{bottom:142.240000pt;}
.y18_c00173{bottom:163.840000pt;}
.y17_c00173{bottom:186.906667pt;}
.y16_c00173{bottom:208.773333pt;}
.y15_c00173{bottom:232.106667pt;}
.y14_c00173{bottom:252.506667pt;}
.y13_c00173{bottom:274.506667pt;}
.y12_c00173{bottom:295.173333pt;}
.y11_c00173{bottom:317.040000pt;}
.y10_c00173{bottom:339.040000pt;}
.yf_c00173{bottom:361.173333pt;}
.ye_c00173{bottom:383.040000pt;}
.yd_c00173{bottom:404.906667pt;}
.yc_c00173{bottom:426.906667pt;}
.yb_c00173{bottom:447.840000pt;}
.ya_c00173{bottom:470.106667pt;}
.y9_c00173{bottom:491.973333pt;}
.y8_c00173{bottom:513.840000pt;}
.y7_c00173{bottom:536.106667pt;}
.y6_c00173{bottom:557.706667pt;}
.y5_c00173{bottom:579.306667pt;}
.y4_c00173{bottom:601.173333pt;}
.y3_c00173{bottom:622.506667pt;}
.y2_c00173{bottom:644.906667pt;}
.y1_c00173{bottom:667.173333pt;}
.h4_c00173{height:11.733399pt;}
.h5_c00173{height:38.937500pt;}
.h3_c00173{height:81.031250pt;}
.h2_c00173{height:104.665365pt;}
.h1_c00173{height:702.666667pt;}
.h0_c00173{height:702.933333pt;}
.w2_c00173{width:93.222667pt;}
.w1_c00173{width:475.333333pt;}
.w0_c00173{width:475.466667pt;}
.x0_c00173{left:0.000000pt;}
.x2_c00173{left:102.933333pt;}
.x3_c00173{left:103.866667pt;}
.x4_c00173{left:104.800000pt;}
.x5_c00173{left:194.901571pt;}
.x1_c00173{left:202.800000pt;}
}





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

.ir_c00174:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00174{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00174;src:url('chunks/assets/font_3abd6eaf36a75b19c769432c.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00174;src:url('chunks/assets/font_aa1196850b5c26f35d927fee.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00174;src:url('chunks/assets/font_b289008b3a31988ae41e641f.woff2')format("woff");}.ff3_c00174{font-family:ff3_c00174;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00174;src:url('chunks/assets/font_d76f5ce4274c4c851f0f5d3c.woff2')format("woff");}.ff4_c00174{font-family:ff4_c00174;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00174;src:url('chunks/assets/font_5ed54bff28ca8263e1c364db.woff2')format("woff");}.ff5_c00174{font-family:ff5_c00174;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00174;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00174{font-family:ff6_c00174;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00174{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00174{vertical-align:0.000000px;}
.ls1_c00174{letter-spacing:0.000000px;}
.ls2_c00174{letter-spacing:3.000000px;}
.ls0_c00174{letter-spacing:9.975000px;}
.sc__c00174{text-shadow:none;}
.sc0_c00174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00174{-webkit-text-stroke:0px transparent;}
.sc0_c00174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00174{word-spacing:-27.660000px;}
.ws1_c00174{word-spacing:0.000000px;}
._17_c00174{margin-left:-37.584000px;}
._15_c00174{margin-left:-28.656000px;}
._12_c00174{margin-left:-14.352000px;}
._9_c00174{margin-left:-12.231000px;}
._b_c00174{margin-left:-10.458000px;}
._11_c00174{margin-left:-8.004000px;}
._2_c00174{margin-left:-6.888000px;}
._16_c00174{margin-left:-4.953000px;}
._5_c00174{margin-left:-3.948000px;}
._f_c00174{margin-left:-2.523000px;}
._10_c00174{margin-left:-1.440000px;}
._3_c00174{width:1.848000px;}
._4_c00174{width:3.024000px;}
._6_c00174{width:4.032000px;}
._7_c00174{width:5.628000px;}
._1_c00174{width:7.056000px;}
._c_c00174{width:8.742000px;}
._13_c00174{width:9.939000px;}
._0_c00174{width:11.676000px;}
._d_c00174{width:12.744000px;}
._8_c00174{width:14.556000px;}
._e_c00174{width:15.843000px;}
._19_c00174{width:17.148000px;}
._14_c00174{width:18.297000px;}
._18_c00174{width:23.760000px;}
._1b_c00174{width:25.761000px;}
._1d_c00174{width:34.314000px;}
._1a_c00174{width:35.739000px;}
._1c_c00174{width:71.832000px;}
._1e_c00174{width:213.333000px;}
._a_c00174{width:315.078000px;}
.fc2_c00174{color:transparent;}
.fc1_c00174{color:rgb(128,128,128);}
.fc0_c00174{color:rgb(0,0,0);}
.fs6_c00174{font-size:48.000000px;}
.fs5_c00174{font-size:60.000000px;}
.fs2_c00174{font-size:69.000000px;}
.fs3_c00174{font-size:72.000000px;}
.fs4_c00174{font-size:75.000000px;}
.fs1_c00174{font-size:81.000000px;}
.fs0_c00174{font-size:84.000000px;}
.y0_c00174{bottom:0.000000px;}
.y1e_c00174{bottom:3.105000px;}
.y1d_c00174{bottom:7.228357px;}
.y1c_c00174{bottom:63.780000px;}
.y1b_c00174{bottom:87.780000px;}
.y1a_c00174{bottom:115.080000px;}
.y19_c00174{bottom:139.830000px;}
.y18_c00174{bottom:163.080000px;}
.y17_c00174{bottom:190.380000px;}
.y16_c00174{bottom:214.380000px;}
.y15_c00174{bottom:238.980000px;}
.y14_c00174{bottom:264.330000px;}
.y13_c00174{bottom:288.930000px;}
.y12_c00174{bottom:336.180000px;}
.y11_c00174{bottom:359.730000px;}
.y10_c00174{bottom:384.180000px;}
.yf_c00174{bottom:408.480000px;}
.ye_c00174{bottom:433.680000px;}
.yd_c00174{bottom:457.980000px;}
.yc_c00174{bottom:482.580000px;}
.yb_c00174{bottom:506.880000px;}
.ya_c00174{bottom:531.630000px;}
.y9_c00174{bottom:555.930000px;}
.y8_c00174{bottom:580.530000px;}
.y7_c00174{bottom:604.830000px;}
.y6_c00174{bottom:629.430000px;}
.y5_c00174{bottom:654.480000px;}
.y4_c00174{bottom:678.330000px;}
.y3_c00174{bottom:702.630000px;}
.y2_c00174{bottom:726.630000px;}
.y1_c00174{bottom:751.980000px;}
.h5_c00174{height:13.200074px;}
.h6_c00174{height:43.804688px;}
.h2_c00174{height:82.400391px;}
.h4_c00174{height:87.361816px;}
.h3_c00174{height:91.160156px;}
.h0_c00174{height:800.850000px;}
.h1_c00174{height:801.000000px;}
.w1_c00174{width:104.875500px;}
.w0_c00174{width:543.000000px;}
.x0_c00174{left:0.000000px;}
.x8_c00174{left:19.500000px;}
.x7_c00174{left:21.600000px;}
.x5_c00174{left:23.850000px;}
.x6_c00174{left:24.900000px;}
.x3_c00174{left:34.050000px;}
.x2_c00174{left:38.550000px;}
.x4_c00174{left:40.500000px;}
.x9_c00174{left:66.750000px;}
.x1_c00174{left:148.500000px;}
.xb_c00174{left:223.314240px;}
.xa_c00174{left:279.000000px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls1_c00174{letter-spacing:0.000000pt;}
.ls2_c00174{letter-spacing:2.666667pt;}
.ls0_c00174{letter-spacing:8.866667pt;}
.ws0_c00174{word-spacing:-24.586667pt;}
.ws1_c00174{word-spacing:0.000000pt;}
._17_c00174{margin-left:-33.408000pt;}
._15_c00174{margin-left:-25.472000pt;}
._12_c00174{margin-left:-12.757333pt;}
._9_c00174{margin-left:-10.872000pt;}
._b_c00174{margin-left:-9.296000pt;}
._11_c00174{margin-left:-7.114667pt;}
._2_c00174{margin-left:-6.122667pt;}
._16_c00174{margin-left:-4.402667pt;}
._5_c00174{margin-left:-3.509333pt;}
._f_c00174{margin-left:-2.242667pt;}
._10_c00174{margin-left:-1.280000pt;}
._3_c00174{width:1.642667pt;}
._4_c00174{width:2.688000pt;}
._6_c00174{width:3.584000pt;}
._7_c00174{width:5.002667pt;}
._1_c00174{width:6.272000pt;}
._c_c00174{width:7.770667pt;}
._13_c00174{width:8.834667pt;}
._0_c00174{width:10.378667pt;}
._d_c00174{width:11.328000pt;}
._8_c00174{width:12.938667pt;}
._e_c00174{width:14.082667pt;}
._19_c00174{width:15.242667pt;}
._14_c00174{width:16.264000pt;}
._18_c00174{width:21.120000pt;}
._1b_c00174{width:22.898667pt;}
._1d_c00174{width:30.501333pt;}
._1a_c00174{width:31.768000pt;}
._1c_c00174{width:63.850667pt;}
._1e_c00174{width:189.629333pt;}
._a_c00174{width:280.069333pt;}
.fs6_c00174{font-size:42.666667pt;}
.fs5_c00174{font-size:53.333333pt;}
.fs2_c00174{font-size:61.333333pt;}
.fs3_c00174{font-size:64.000000pt;}
.fs4_c00174{font-size:66.666667pt;}
.fs1_c00174{font-size:72.000000pt;}
.fs0_c00174{font-size:74.666667pt;}
.y0_c00174{bottom:0.000000pt;}
.y1e_c00174{bottom:2.760000pt;}
.y1d_c00174{bottom:6.425206pt;}
.y1c_c00174{bottom:56.693333pt;}
.y1b_c00174{bottom:78.026667pt;}
.y1a_c00174{bottom:102.293333pt;}
.y19_c00174{bottom:124.293333pt;}
.y18_c00174{bottom:144.960000pt;}
.y17_c00174{bottom:169.226667pt;}
.y16_c00174{bottom:190.560000pt;}
.y15_c00174{bottom:212.426667pt;}
.y14_c00174{bottom:234.960000pt;}
.y13_c00174{bottom:256.826667pt;}
.y12_c00174{bottom:298.826667pt;}
.y11_c00174{bottom:319.760000pt;}
.y10_c00174{bottom:341.493333pt;}
.yf_c00174{bottom:363.093333pt;}
.ye_c00174{bottom:385.493333pt;}
.yd_c00174{bottom:407.093333pt;}
.yc_c00174{bottom:428.960000pt;}
.yb_c00174{bottom:450.560000pt;}
.ya_c00174{bottom:472.560000pt;}
.y9_c00174{bottom:494.160000pt;}
.y8_c00174{bottom:516.026667pt;}
.y7_c00174{bottom:537.626667pt;}
.y6_c00174{bottom:559.493333pt;}
.y5_c00174{bottom:581.760000pt;}
.y4_c00174{bottom:602.960000pt;}
.y3_c00174{bottom:624.560000pt;}
.y2_c00174{bottom:645.893333pt;}
.y1_c00174{bottom:668.426667pt;}
.h5_c00174{height:11.733399pt;}
.h6_c00174{height:38.937500pt;}
.h2_c00174{height:73.244792pt;}
.h4_c00174{height:77.654948pt;}
.h3_c00174{height:81.031250pt;}
.h0_c00174{height:711.866667pt;}
.h1_c00174{height:712.000000pt;}
.w1_c00174{width:93.222667pt;}
.w0_c00174{width:482.666667pt;}
.x0_c00174{left:0.000000pt;}
.x8_c00174{left:17.333333pt;}
.x7_c00174{left:19.200000pt;}
.x5_c00174{left:21.200000pt;}
.x6_c00174{left:22.133333pt;}
.x3_c00174{left:30.266667pt;}
.x2_c00174{left:34.266667pt;}
.x4_c00174{left:36.000000pt;}
.x9_c00174{left:59.333333pt;}
.x1_c00174{left:132.000000pt;}
.xb_c00174{left:198.501546pt;}
.xa_c00174{left:248.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_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_23d95fc53de761b963352107.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00175;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00175;src:url('chunks/assets/font_1cfe3e22408fd9303f5a0d06.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:1.568848;font-style:normal;font-weight:normal;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_ddb253a4f37d133a74c39aab.woff2')format("woff");}.ff4_c00175{font-family:ff4_c00175;line-height:1.480469;font-style:normal;font-weight:normal;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_8e636205d6e8cf876e9bcdaa.woff2')format("woff");}.ff5_c00175{font-family:ff5_c00175;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00175{font-family:ff6_c00175;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00175{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00175{vertical-align:0.000000px;}
.ls2_c00175{letter-spacing:0.000000px;}
.ls0_c00175{letter-spacing:3.000000px;}
.ls3_c00175{letter-spacing:12.000000px;}
.ls1_c00175{letter-spacing:216.750000px;}
.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;}
}
.ws2_c00175{word-spacing:-53.100000px;}
.ws1_c00175{word-spacing:-33.192000px;}
.ws0_c00175{word-spacing:-21.000000px;}
.ws3_c00175{word-spacing:0.000000px;}
._14_c00175{margin-left:-16.344000px;}
._b_c00175{margin-left:-7.488000px;}
._c_c00175{margin-left:-5.586000px;}
._9_c00175{margin-left:-4.392000px;}
._7_c00175{margin-left:-3.348000px;}
._3_c00175{margin-left:-2.118000px;}
._a_c00175{margin-left:-1.092000px;}
._0_c00175{width:1.764000px;}
._2_c00175{width:2.772000px;}
._1_c00175{width:3.960000px;}
._4_c00175{width:5.616000px;}
._d_c00175{width:7.164000px;}
._5_c00175{width:8.268000px;}
._6_c00175{width:9.756000px;}
._10_c00175{width:11.490000px;}
._8_c00175{width:12.810000px;}
._11_c00175{width:13.890000px;}
._e_c00175{width:15.720000px;}
._15_c00175{width:16.848000px;}
._f_c00175{width:17.964000px;}
._17_c00175{width:19.164000px;}
._16_c00175{width:21.408000px;}
._12_c00175{width:28.968000px;}
._13_c00175{width:105.792000px;}
.fc2_c00175{color:transparent;}
.fc1_c00175{color:rgb(128,128,128);}
.fc0_c00175{color:rgb(0,0,0);}
.fs6_c00175{font-size:48.000000px;}
.fs5_c00175{font-size:57.000000px;}
.fs3_c00175{font-size:60.000000px;}
.fs4_c00175{font-size:63.000000px;}
.fs1_c00175{font-size:72.000000px;}
.fs2_c00175{font-size:78.000000px;}
.fs0_c00175{font-size:84.000000px;}
.y0_c00175{bottom:0.000000px;}
.y1e_c00175{bottom:3.105000px;}
.y1d_c00175{bottom:7.228371px;}
.y1c_c00175{bottom:75.915000px;}
.y1b_c00175{bottom:102.315000px;}
.y1a_c00175{bottom:126.615000px;}
.y19_c00175{bottom:152.565000px;}
.y18_c00175{bottom:175.815000px;}
.y17_c00175{bottom:202.515000px;}
.y16_c00175{bottom:227.265000px;}
.y15_c00175{bottom:251.865000px;}
.y14_c00175{bottom:276.165000px;}
.y13_c00175{bottom:300.765000px;}
.y12_c00175{bottom:324.015000px;}
.y11_c00175{bottom:349.965000px;}
.y10_c00175{bottom:373.965000px;}
.yf_c00175{bottom:397.965000px;}
.ye_c00175{bottom:423.615000px;}
.yd_c00175{bottom:447.165000px;}
.yc_c00175{bottom:471.165000px;}
.yb_c00175{bottom:495.465000px;}
.ya_c00175{bottom:520.215000px;}
.y9_c00175{bottom:544.815000px;}
.y8_c00175{bottom:569.415000px;}
.y7_c00175{bottom:593.715000px;}
.y6_c00175{bottom:618.015000px;}
.y5_c00175{bottom:642.615000px;}
.y4_c00175{bottom:666.915000px;}
.y3_c00175{bottom:691.665000px;}
.y2_c00175{bottom:715.815000px;}
.y1_c00175{bottom:741.465000px;}
.h6_c00175{height:13.200074px;}
.h7_c00175{height:43.804688px;}
.h5_c00175{height:75.966797px;}
.h2_c00175{height:82.441406px;}
.h4_c00175{height:91.160156px;}
.h3_c00175{height:98.756836px;}
.h1_c00175{height:782.250000px;}
.h0_c00175{height:782.475000px;}
.w2_c00175{width:104.875500px;}
.w0_c00175{width:541.875000px;}
.w1_c00175{width:542.250000px;}
.x0_c00175{left:0.000000px;}
.x9_c00175{left:51.000000px;}
.x4_c00175{left:115.500000px;}
.x2_c00175{left:119.250000px;}
.x3_c00175{left:121.050000px;}
.x5_c00175{left:122.550000px;}
.x6_c00175{left:123.600000px;}
.x7_c00175{left:125.850000px;}
.x8_c00175{left:127.500000px;}
.xa_c00175{left:129.300000px;}
.xb_c00175{left:222.751740px;}
.x1_c00175{left:230.400000px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls2_c00175{letter-spacing:0.000000pt;}
.ls0_c00175{letter-spacing:2.666667pt;}
.ls3_c00175{letter-spacing:10.666667pt;}
.ls1_c00175{letter-spacing:192.666667pt;}
.ws2_c00175{word-spacing:-47.200000pt;}
.ws1_c00175{word-spacing:-29.504000pt;}
.ws0_c00175{word-spacing:-18.666667pt;}
.ws3_c00175{word-spacing:0.000000pt;}
._14_c00175{margin-left:-14.528000pt;}
._b_c00175{margin-left:-6.656000pt;}
._c_c00175{margin-left:-4.965333pt;}
._9_c00175{margin-left:-3.904000pt;}
._7_c00175{margin-left:-2.976000pt;}
._3_c00175{margin-left:-1.882667pt;}
._a_c00175{margin-left:-0.970667pt;}
._0_c00175{width:1.568000pt;}
._2_c00175{width:2.464000pt;}
._1_c00175{width:3.520000pt;}
._4_c00175{width:4.992000pt;}
._d_c00175{width:6.368000pt;}
._5_c00175{width:7.349333pt;}
._6_c00175{width:8.672000pt;}
._10_c00175{width:10.213333pt;}
._8_c00175{width:11.386667pt;}
._11_c00175{width:12.346667pt;}
._e_c00175{width:13.973333pt;}
._15_c00175{width:14.976000pt;}
._f_c00175{width:15.968000pt;}
._17_c00175{width:17.034667pt;}
._16_c00175{width:19.029333pt;}
._12_c00175{width:25.749333pt;}
._13_c00175{width:94.037333pt;}
.fs6_c00175{font-size:42.666667pt;}
.fs5_c00175{font-size:50.666667pt;}
.fs3_c00175{font-size:53.333333pt;}
.fs4_c00175{font-size:56.000000pt;}
.fs1_c00175{font-size:64.000000pt;}
.fs2_c00175{font-size:69.333333pt;}
.fs0_c00175{font-size:74.666667pt;}
.y0_c00175{bottom:0.000000pt;}
.y1e_c00175{bottom:2.760000pt;}
.y1d_c00175{bottom:6.425219pt;}
.y1c_c00175{bottom:67.480000pt;}
.y1b_c00175{bottom:90.946667pt;}
.y1a_c00175{bottom:112.546667pt;}
.y19_c00175{bottom:135.613333pt;}
.y18_c00175{bottom:156.280000pt;}
.y17_c00175{bottom:180.013333pt;}
.y16_c00175{bottom:202.013333pt;}
.y15_c00175{bottom:223.880000pt;}
.y14_c00175{bottom:245.480000pt;}
.y13_c00175{bottom:267.346667pt;}
.y12_c00175{bottom:288.013333pt;}
.y11_c00175{bottom:311.080000pt;}
.y10_c00175{bottom:332.413333pt;}
.yf_c00175{bottom:353.746667pt;}
.ye_c00175{bottom:376.546667pt;}
.yd_c00175{bottom:397.480000pt;}
.yc_c00175{bottom:418.813333pt;}
.yb_c00175{bottom:440.413333pt;}
.ya_c00175{bottom:462.413333pt;}
.y9_c00175{bottom:484.280000pt;}
.y8_c00175{bottom:506.146667pt;}
.y7_c00175{bottom:527.746667pt;}
.y6_c00175{bottom:549.346667pt;}
.y5_c00175{bottom:571.213333pt;}
.y4_c00175{bottom:592.813333pt;}
.y3_c00175{bottom:614.813333pt;}
.y2_c00175{bottom:636.280000pt;}
.y1_c00175{bottom:659.080000pt;}
.h6_c00175{height:11.733399pt;}
.h7_c00175{height:38.937500pt;}
.h5_c00175{height:67.526042pt;}
.h2_c00175{height:73.281250pt;}
.h4_c00175{height:81.031250pt;}
.h3_c00175{height:87.783854pt;}
.h1_c00175{height:695.333333pt;}
.h0_c00175{height:695.533333pt;}
.w2_c00175{width:93.222667pt;}
.w0_c00175{width:481.666667pt;}
.w1_c00175{width:482.000000pt;}
.x0_c00175{left:0.000000pt;}
.x9_c00175{left:45.333333pt;}
.x4_c00175{left:102.666667pt;}
.x2_c00175{left:106.000000pt;}
.x3_c00175{left:107.600000pt;}
.x5_c00175{left:108.933333pt;}
.x6_c00175{left:109.866667pt;}
.x7_c00175{left:111.866667pt;}
.x8_c00175{left:113.333333pt;}
.xa_c00175{left:114.933333pt;}
.xb_c00175{left:198.001546pt;}
.x1_c00175{left:204.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b68983bf826874e9f853fd6f.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.480469;font-style:normal;font-weight:normal;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_3e82a709a26f72d8aa3f642f.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:1.568848;font-style:normal;font-weight:normal;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_b60184e6a301bb8739dd1598.woff2')format("woff");}.ff3_c00176{font-family:ff3_c00176;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00176;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00176{font-family:ff4_c00176;line-height:1.219238;font-style: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;}
.ls5_c00176{letter-spacing:-3.000000px;}
.ls2_c00176{letter-spacing:0.000000px;}
.ls3_c00176{letter-spacing:3.000000px;}
.ls0_c00176{letter-spacing:4.362000px;}
.ls4_c00176{letter-spacing:6.000000px;}
.ls1_c00176{letter-spacing:28.788000px;}
.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;}
}
.ws2_c00176{word-spacing:-27.051000px;}
.ws1_c00176{word-spacing:-18.183000px;}
.ws0_c00176{word-spacing:-17.352000px;}
.ws3_c00176{word-spacing:0.000000px;}
._18_c00176{margin-left:-17.460000px;}
._13_c00176{margin-left:-14.763000px;}
._e_c00176{margin-left:-12.240000px;}
._10_c00176{margin-left:-11.232000px;}
._14_c00176{margin-left:-9.204000px;}
._11_c00176{margin-left:-7.776000px;}
._12_c00176{margin-left:-6.696000px;}
._d_c00176{margin-left:-5.328000px;}
._f_c00176{margin-left:-3.672000px;}
._c_c00176{margin-left:-2.088000px;}
._b_c00176{margin-left:-1.080000px;}
._2_c00176{width:1.740000px;}
._5_c00176{width:3.600000px;}
._7_c00176{width:5.280000px;}
._6_c00176{width:6.360000px;}
._16_c00176{width:8.349000px;}
._9_c00176{width:10.320000px;}
._8_c00176{width:11.520000px;}
._3_c00176{width:12.780000px;}
._17_c00176{width:13.848000px;}
._15_c00176{width:15.828000px;}
._1_c00176{width:17.580000px;}
._1b_c00176{width:23.820000px;}
._4_c00176{width:25.620000px;}
._0_c00176{width:27.660000px;}
._1a_c00176{width:30.090000px;}
._19_c00176{width:36.702000px;}
._1d_c00176{width:309.660000px;}
._a_c00176{width:354.240000px;}
._1c_c00176{width:796.308000px;}
.fc2_c00176{color:transparent;}
.fc1_c00176{color:rgb(128,128,128);}
.fc0_c00176{color:rgb(0,0,0);}
.fs4_c00176{font-size:48.000000px;}
.fs3_c00176{font-size:51.000000px;}
.fs0_c00176{font-size:60.000000px;}
.fs2_c00176{font-size:63.000000px;}
.fs1_c00176{font-size:72.000000px;}
.y0_c00176{bottom:0.000000px;}
.y1f_c00176{bottom:3.105000px;}
.y1e_c00176{bottom:7.228355px;}
.y1d_c00176{bottom:65.685000px;}
.y1c_c00176{bottom:89.385000px;}
.y1b_c00176{bottom:114.735000px;}
.y1a_c00176{bottom:140.385000px;}
.y19_c00176{bottom:165.285000px;}
.y18_c00176{bottom:189.885000px;}
.y17_c00176{bottom:214.935000px;}
.y16_c00176{bottom:239.535000px;}
.y15_c00176{bottom:264.285000px;}
.y14_c00176{bottom:288.885000px;}
.y13_c00176{bottom:312.735000px;}
.y12_c00176{bottom:334.785000px;}
.y11_c00176{bottom:359.685000px;}
.y10_c00176{bottom:384.435000px;}
.yf_c00176{bottom:408.735000px;}
.ye_c00176{bottom:433.335000px;}
.yd_c00176{bottom:458.235000px;}
.yc_c00176{bottom:482.835000px;}
.yb_c00176{bottom:507.285000px;}
.ya_c00176{bottom:532.185000px;}
.y9_c00176{bottom:556.785000px;}
.y8_c00176{bottom:580.485000px;}
.y7_c00176{bottom:606.135000px;}
.y6_c00176{bottom:629.385000px;}
.y5_c00176{bottom:654.285000px;}
.y4_c00176{bottom:678.585000px;}
.y3_c00176{bottom:702.885000px;}
.y2_c00176{bottom:727.335000px;}
.y1_c00176{bottom:752.835000px;}
.h4_c00176{height:13.200074px;}
.h5_c00176{height:43.804688px;}
.h2_c00176{height:70.224609px;}
.h3_c00176{height:91.160156px;}
.h1_c00176{height:792.750000px;}
.h0_c00176{height:792.975000px;}
.w2_c00176{width:104.875500px;}
.w1_c00176{width:550.500000px;}
.w0_c00176{width:550.800000px;}
.x0_c00176{left:0.000000px;}
.xb_c00176{left:31.350000px;}
.xa_c00176{left:33.450000px;}
.x9_c00176{left:35.850000px;}
.x8_c00176{left:37.500000px;}
.x7_c00176{left:38.550000px;}
.x6_c00176{left:41.550000px;}
.x5_c00176{left:42.900000px;}
.x4_c00176{left:43.950000px;}
.x2_c00176{left:46.200000px;}
.x3_c00176{left:47.250000px;}
.x1_c00176{left:167.550000px;}
.xd_c00176{left:227.214249px;}
.xc_c00176{left:276.150000px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls5_c00176{letter-spacing:-2.666667pt;}
.ls2_c00176{letter-spacing:0.000000pt;}
.ls3_c00176{letter-spacing:2.666667pt;}
.ls0_c00176{letter-spacing:3.877333pt;}
.ls4_c00176{letter-spacing:5.333333pt;}
.ls1_c00176{letter-spacing:25.589333pt;}
.ws2_c00176{word-spacing:-24.045333pt;}
.ws1_c00176{word-spacing:-16.162667pt;}
.ws0_c00176{word-spacing:-15.424000pt;}
.ws3_c00176{word-spacing:0.000000pt;}
._18_c00176{margin-left:-15.520000pt;}
._13_c00176{margin-left:-13.122667pt;}
._e_c00176{margin-left:-10.880000pt;}
._10_c00176{margin-left:-9.984000pt;}
._14_c00176{margin-left:-8.181333pt;}
._11_c00176{margin-left:-6.912000pt;}
._12_c00176{margin-left:-5.952000pt;}
._d_c00176{margin-left:-4.736000pt;}
._f_c00176{margin-left:-3.264000pt;}
._c_c00176{margin-left:-1.856000pt;}
._b_c00176{margin-left:-0.960000pt;}
._2_c00176{width:1.546667pt;}
._5_c00176{width:3.200000pt;}
._7_c00176{width:4.693333pt;}
._6_c00176{width:5.653333pt;}
._16_c00176{width:7.421333pt;}
._9_c00176{width:9.173333pt;}
._8_c00176{width:10.240000pt;}
._3_c00176{width:11.360000pt;}
._17_c00176{width:12.309333pt;}
._15_c00176{width:14.069333pt;}
._1_c00176{width:15.626667pt;}
._1b_c00176{width:21.173333pt;}
._4_c00176{width:22.773333pt;}
._0_c00176{width:24.586667pt;}
._1a_c00176{width:26.746667pt;}
._19_c00176{width:32.624000pt;}
._1d_c00176{width:275.253333pt;}
._a_c00176{width:314.880000pt;}
._1c_c00176{width:707.829333pt;}
.fs4_c00176{font-size:42.666667pt;}
.fs3_c00176{font-size:45.333333pt;}
.fs0_c00176{font-size:53.333333pt;}
.fs2_c00176{font-size:56.000000pt;}
.fs1_c00176{font-size:64.000000pt;}
.y0_c00176{bottom:0.000000pt;}
.y1f_c00176{bottom:2.760000pt;}
.y1e_c00176{bottom:6.425204pt;}
.y1d_c00176{bottom:58.386667pt;}
.y1c_c00176{bottom:79.453333pt;}
.y1b_c00176{bottom:101.986667pt;}
.y1a_c00176{bottom:124.786667pt;}
.y19_c00176{bottom:146.920000pt;}
.y18_c00176{bottom:168.786667pt;}
.y17_c00176{bottom:191.053333pt;}
.y16_c00176{bottom:212.920000pt;}
.y15_c00176{bottom:234.920000pt;}
.y14_c00176{bottom:256.786667pt;}
.y13_c00176{bottom:277.986667pt;}
.y12_c00176{bottom:297.586667pt;}
.y11_c00176{bottom:319.720000pt;}
.y10_c00176{bottom:341.720000pt;}
.yf_c00176{bottom:363.320000pt;}
.ye_c00176{bottom:385.186667pt;}
.yd_c00176{bottom:407.320000pt;}
.yc_c00176{bottom:429.186667pt;}
.yb_c00176{bottom:450.920000pt;}
.ya_c00176{bottom:473.053333pt;}
.y9_c00176{bottom:494.920000pt;}
.y8_c00176{bottom:515.986667pt;}
.y7_c00176{bottom:538.786667pt;}
.y6_c00176{bottom:559.453333pt;}
.y5_c00176{bottom:581.586667pt;}
.y4_c00176{bottom:603.186667pt;}
.y3_c00176{bottom:624.786667pt;}
.y2_c00176{bottom:646.520000pt;}
.y1_c00176{bottom:669.186667pt;}
.h4_c00176{height:11.733399pt;}
.h5_c00176{height:38.937500pt;}
.h2_c00176{height:62.421875pt;}
.h3_c00176{height:81.031250pt;}
.h1_c00176{height:704.666667pt;}
.h0_c00176{height:704.866667pt;}
.w2_c00176{width:93.222667pt;}
.w1_c00176{width:489.333333pt;}
.w0_c00176{width:489.600000pt;}
.x0_c00176{left:0.000000pt;}
.xb_c00176{left:27.866667pt;}
.xa_c00176{left:29.733333pt;}
.x9_c00176{left:31.866667pt;}
.x8_c00176{left:33.333333pt;}
.x7_c00176{left:34.266667pt;}
.x6_c00176{left:36.933333pt;}
.x5_c00176{left:38.133333pt;}
.x4_c00176{left:39.066667pt;}
.x2_c00176{left:41.066667pt;}
.x3_c00176{left:42.000000pt;}
.x1_c00176{left:148.933333pt;}
.xd_c00176{left:201.968221pt;}
.xc_c00176{left:245.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_388057d955ddc3a0bb9fefd9.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.480469;font-style:normal;font-weight:normal;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_45e2f5f1d29af54e731f79ac.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:1.568848;font-style:normal;font-weight:normal;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_170954a6c75b4f95edca5d59.woff2')format("woff");}.ff3_c00177{font-family:ff3_c00177;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00177;src:url('chunks/assets/font_0f145c572369e6a750038a2e.woff2')format("woff");}.ff4_c00177{font-family:ff4_c00177;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00177;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00177{font-family:ff5_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00177;src:url('chunks/assets/font_edf6bd5bf117858943867eb9.woff2')format("woff");}.ff6_c00177{font-family:ff6_c00177;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00177;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00177{font-family:ff7_c00177;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00177{vertical-align:0.000000px;}
.ls3_c00177{letter-spacing:-6.000000px;}
.ls2_c00177{letter-spacing:0.000000px;}
.ls1_c00177{letter-spacing:3.000000px;}
.ls0_c00177{letter-spacing:6.000000px;}
.sc__c00177{text-shadow:none;}
.sc0_c00177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00177{-webkit-text-stroke:0px transparent;}
.sc0_c00177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00177{word-spacing:-33.192000px;}
.ws1_c00177{word-spacing:-15.000000px;}
.ws2_c00177{word-spacing:0.000000px;}
._17_c00177{margin-left:-35.520000px;}
._5_c00177{margin-left:-16.269000px;}
._12_c00177{margin-left:-14.940000px;}
._13_c00177{margin-left:-13.002000px;}
._d_c00177{margin-left:-11.559000px;}
._e_c00177{margin-left:-10.164000px;}
._f_c00177{margin-left:-8.712000px;}
._15_c00177{margin-left:-7.257000px;}
._9_c00177{margin-left:-5.799000px;}
._19_c00177{margin-left:-4.764000px;}
._c_c00177{margin-left:-3.762000px;}
._10_c00177{margin-left:-2.649000px;}
._a_c00177{margin-left:-1.377000px;}
._8_c00177{width:1.587000px;}
._7_c00177{width:2.622000px;}
._16_c00177{width:3.624000px;}
._1_c00177{width:4.680000px;}
._14_c00177{width:5.700000px;}
._3_c00177{width:7.272000px;}
._2_c00177{width:9.000000px;}
._4_c00177{width:10.224000px;}
._1a_c00177{width:11.319000px;}
._0_c00177{width:12.384000px;}
._1f_c00177{width:13.827000px;}
._1d_c00177{width:15.594000px;}
._1c_c00177{width:17.526000px;}
._21_c00177{width:19.140000px;}
._18_c00177{width:20.271000px;}
._20_c00177{width:22.032000px;}
._11_c00177{width:23.919000px;}
._23_c00177{width:29.988000px;}
._24_c00177{width:40.014000px;}
._b_c00177{width:96.888000px;}
._6_c00177{width:120.585000px;}
._1e_c00177{width:212.895000px;}
._1b_c00177{width:313.122000px;}
._22_c00177{width:321.888000px;}
._25_c00177{width:789.147000px;}
.fc2_c00177{color:transparent;}
.fc1_c00177{color:rgb(128,128,128);}
.fc0_c00177{color:rgb(0,0,0);}
.fs6_c00177{font-size:48.000000px;}
.fs1_c00177{font-size:51.000000px;}
.fs3_c00177{font-size:66.000000px;}
.fs2_c00177{font-size:69.000000px;}
.fs0_c00177{font-size:72.000000px;}
.fs4_c00177{font-size:81.000000px;}
.fs5_c00177{font-size:84.000000px;}
.y0_c00177{bottom:0.000000px;}
.y1f_c00177{bottom:3.105000px;}
.y1e_c00177{bottom:7.228371px;}
.y1d_c00177{bottom:54.465000px;}
.y1c_c00177{bottom:77.715000px;}
.y1b_c00177{bottom:101.715000px;}
.y1a_c00177{bottom:127.965000px;}
.y19_c00177{bottom:151.965000px;}
.y18_c00177{bottom:177.615000px;}
.y17_c00177{bottom:202.515000px;}
.y16_c00177{bottom:226.815000px;}
.y15_c00177{bottom:251.565000px;}
.y14_c00177{bottom:276.165000px;}
.y13_c00177{bottom:301.065000px;}
.y12_c00177{bottom:324.765000px;}
.y11_c00177{bottom:349.065000px;}
.y10_c00177{bottom:373.965000px;}
.yf_c00177{bottom:398.565000px;}
.ye_c00177{bottom:422.865000px;}
.yd_c00177{bottom:447.615000px;}
.yc_c00177{bottom:471.915000px;}
.yb_c00177{bottom:496.515000px;}
.ya_c00177{bottom:521.415000px;}
.y9_c00177{bottom:545.865000px;}
.y8_c00177{bottom:570.165000px;}
.y7_c00177{bottom:595.365000px;}
.y6_c00177{bottom:619.665000px;}
.y5_c00177{bottom:644.265000px;}
.y4_c00177{bottom:667.965000px;}
.y3_c00177{bottom:691.515000px;}
.y2_c00177{bottom:717.165000px;}
.y1_c00177{bottom:742.965000px;}
.h7_c00177{height:13.200074px;}
.h8_c00177{height:43.804688px;}
.h5_c00177{height:81.632812px;}
.h6_c00177{height:82.400391px;}
.h4_c00177{height:83.563477px;}
.h2_c00177{height:84.269531px;}
.h3_c00177{height:87.361816px;}
.h1_c00177{height:782.250000px;}
.h0_c00177{height:782.475000px;}
.w2_c00177{width:104.875500px;}
.w1_c00177{width:538.500000px;}
.w0_c00177{width:538.650000px;}
.x0_c00177{left:0.000000px;}
.x3_c00177{left:34.500000px;}
.x2_c00177{left:74.700000px;}
.x4_c00177{left:115.800000px;}
.x5_c00177{left:116.850000px;}
.x6_c00177{left:118.800000px;}
.x7_c00177{left:120.600000px;}
.x8_c00177{left:121.800000px;}
.x9_c00177{left:122.850000px;}
.xa_c00177{left:124.650000px;}
.xb_c00177{left:125.850000px;}
.xc_c00177{left:127.200000px;}
.xd_c00177{left:128.700000px;}
.xe_c00177{left:130.950000px;}
.xf_c00177{left:221.139267px;}
.x1_c00177{left:224.400000px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls3_c00177{letter-spacing:-5.333333pt;}
.ls2_c00177{letter-spacing:0.000000pt;}
.ls1_c00177{letter-spacing:2.666667pt;}
.ls0_c00177{letter-spacing:5.333333pt;}
.ws0_c00177{word-spacing:-29.504000pt;}
.ws1_c00177{word-spacing:-13.333333pt;}
.ws2_c00177{word-spacing:0.000000pt;}
._17_c00177{margin-left:-31.573333pt;}
._5_c00177{margin-left:-14.461333pt;}
._12_c00177{margin-left:-13.280000pt;}
._13_c00177{margin-left:-11.557333pt;}
._d_c00177{margin-left:-10.274667pt;}
._e_c00177{margin-left:-9.034667pt;}
._f_c00177{margin-left:-7.744000pt;}
._15_c00177{margin-left:-6.450667pt;}
._9_c00177{margin-left:-5.154667pt;}
._19_c00177{margin-left:-4.234667pt;}
._c_c00177{margin-left:-3.344000pt;}
._10_c00177{margin-left:-2.354667pt;}
._a_c00177{margin-left:-1.224000pt;}
._8_c00177{width:1.410667pt;}
._7_c00177{width:2.330667pt;}
._16_c00177{width:3.221333pt;}
._1_c00177{width:4.160000pt;}
._14_c00177{width:5.066667pt;}
._3_c00177{width:6.464000pt;}
._2_c00177{width:8.000000pt;}
._4_c00177{width:9.088000pt;}
._1a_c00177{width:10.061333pt;}
._0_c00177{width:11.008000pt;}
._1f_c00177{width:12.290667pt;}
._1d_c00177{width:13.861333pt;}
._1c_c00177{width:15.578667pt;}
._21_c00177{width:17.013333pt;}
._18_c00177{width:18.018667pt;}
._20_c00177{width:19.584000pt;}
._11_c00177{width:21.261333pt;}
._23_c00177{width:26.656000pt;}
._24_c00177{width:35.568000pt;}
._b_c00177{width:86.122667pt;}
._6_c00177{width:107.186667pt;}
._1e_c00177{width:189.240000pt;}
._1b_c00177{width:278.330667pt;}
._22_c00177{width:286.122667pt;}
._25_c00177{width:701.464000pt;}
.fs6_c00177{font-size:42.666667pt;}
.fs1_c00177{font-size:45.333333pt;}
.fs3_c00177{font-size:58.666667pt;}
.fs2_c00177{font-size:61.333333pt;}
.fs0_c00177{font-size:64.000000pt;}
.fs4_c00177{font-size:72.000000pt;}
.fs5_c00177{font-size:74.666667pt;}
.y0_c00177{bottom:0.000000pt;}
.y1f_c00177{bottom:2.760000pt;}
.y1e_c00177{bottom:6.425219pt;}
.y1d_c00177{bottom:48.413333pt;}
.y1c_c00177{bottom:69.080000pt;}
.y1b_c00177{bottom:90.413333pt;}
.y1a_c00177{bottom:113.746667pt;}
.y19_c00177{bottom:135.080000pt;}
.y18_c00177{bottom:157.880000pt;}
.y17_c00177{bottom:180.013333pt;}
.y16_c00177{bottom:201.613333pt;}
.y15_c00177{bottom:223.613333pt;}
.y14_c00177{bottom:245.480000pt;}
.y13_c00177{bottom:267.613333pt;}
.y12_c00177{bottom:288.680000pt;}
.y11_c00177{bottom:310.280000pt;}
.y10_c00177{bottom:332.413333pt;}
.yf_c00177{bottom:354.280000pt;}
.ye_c00177{bottom:375.880000pt;}
.yd_c00177{bottom:397.880000pt;}
.yc_c00177{bottom:419.480000pt;}
.yb_c00177{bottom:441.346667pt;}
.ya_c00177{bottom:463.480000pt;}
.y9_c00177{bottom:485.213333pt;}
.y8_c00177{bottom:506.813333pt;}
.y7_c00177{bottom:529.213333pt;}
.y6_c00177{bottom:550.813333pt;}
.y5_c00177{bottom:572.680000pt;}
.y4_c00177{bottom:593.746667pt;}
.y3_c00177{bottom:614.680000pt;}
.y2_c00177{bottom:637.480000pt;}
.y1_c00177{bottom:660.413333pt;}
.h7_c00177{height:11.733399pt;}
.h8_c00177{height:38.937500pt;}
.h5_c00177{height:72.562500pt;}
.h6_c00177{height:73.244792pt;}
.h4_c00177{height:74.278646pt;}
.h2_c00177{height:74.906250pt;}
.h3_c00177{height:77.654948pt;}
.h1_c00177{height:695.333333pt;}
.h0_c00177{height:695.533333pt;}
.w2_c00177{width:93.222667pt;}
.w1_c00177{width:478.666667pt;}
.w0_c00177{width:478.800000pt;}
.x0_c00177{left:0.000000pt;}
.x3_c00177{left:30.666667pt;}
.x2_c00177{left:66.400000pt;}
.x4_c00177{left:102.933333pt;}
.x5_c00177{left:103.866667pt;}
.x6_c00177{left:105.600000pt;}
.x7_c00177{left:107.200000pt;}
.x8_c00177{left:108.266667pt;}
.x9_c00177{left:109.200000pt;}
.xa_c00177{left:110.800000pt;}
.xb_c00177{left:111.866667pt;}
.xc_c00177{left:113.066667pt;}
.xd_c00177{left:114.400000pt;}
.xe_c00177{left:116.400000pt;}
.xf_c00177{left:196.568237pt;}
.x1_c00177{left:199.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6d9427c7672eff5384a6ceeb.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.480469;font-style:normal;font-weight:normal;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_9241125c0d443141238a3986.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:1.568848;font-style:normal;font-weight:normal;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_3d73d7eb9e50203e71f9f3fe.woff2')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00178;src:url('chunks/assets/font_8dbc83c621a4947ecfc9a5f7.woff2')format("woff");}.ff4_c00178{font-family:ff4_c00178;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00178;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00178{font-family:ff5_c00178;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00178{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00178{vertical-align:0.000000px;}
.ls1_c00178{letter-spacing:0.000000px;}
.ls2_c00178{letter-spacing:3.000000px;}
.ls0_c00178{letter-spacing:6.000000px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00178{word-spacing:-33.192000px;}
.ws1_c00178{word-spacing:0.000000px;}
._1b_c00178{margin-left:-27.822000px;}
._15_c00178{margin-left:-20.844000px;}
._1c_c00178{margin-left:-19.824000px;}
._1a_c00178{margin-left:-17.868000px;}
._18_c00178{margin-left:-16.824000px;}
._19_c00178{margin-left:-15.414000px;}
._17_c00178{margin-left:-14.274000px;}
._13_c00178{margin-left:-12.480000px;}
._16_c00178{margin-left:-11.076000px;}
._a_c00178{margin-left:-10.062000px;}
._e_c00178{margin-left:-8.250000px;}
._11_c00178{margin-left:-6.864000px;}
._9_c00178{margin-left:-5.850000px;}
._8_c00178{margin-left:-3.978000px;}
._10_c00178{margin-left:-2.796000px;}
._c_c00178{margin-left:-1.572000px;}
._b_c00178{width:1.302000px;}
._4_c00178{width:2.304000px;}
._5_c00178{width:3.456000px;}
._1_c00178{width:4.464000px;}
._2_c00178{width:5.616000px;}
._0_c00178{width:7.056000px;}
._3_c00178{width:8.280000px;}
._f_c00178{width:9.288000px;}
._12_c00178{width:11.124000px;}
._7_c00178{width:12.168000px;}
._d_c00178{width:13.806000px;}
._1e_c00178{width:15.960000px;}
._1d_c00178{width:18.540000px;}
._14_c00178{width:23.088000px;}
._1f_c00178{width:182.790000px;}
._6_c00178{width:352.080000px;}
.fc2_c00178{color:transparent;}
.fc1_c00178{color:rgb(128,128,128);}
.fc0_c00178{color:rgb(0,0,0);}
.fs2_c00178{font-size:48.000000px;}
.fs0_c00178{font-size:72.000000px;}
.fs1_c00178{font-size:78.000000px;}
.y0_c00178{bottom:0.000000px;}
.y1f_c00178{bottom:3.105000px;}
.y1e_c00178{bottom:7.228357px;}
.y1d_c00178{bottom:50.280000px;}
.y1c_c00178{bottom:73.530000px;}
.y1b_c00178{bottom:102.630000px;}
.y1a_c00178{bottom:123.180000px;}
.y19_c00178{bottom:149.280000px;}
.y18_c00178{bottom:174.930000px;}
.y17_c00178{bottom:199.830000px;}
.y16_c00178{bottom:226.830000px;}
.y15_c00178{bottom:252.180000px;}
.y14_c00178{bottom:277.380000px;}
.y13_c00178{bottom:321.930000px;}
.y12_c00178{bottom:346.680000px;}
.y11_c00178{bottom:371.880000px;}
.y10_c00178{bottom:396.180000px;}
.yf_c00178{bottom:420.630000px;}
.ye_c00178{bottom:445.530000px;}
.yd_c00178{bottom:470.580000px;}
.yc_c00178{bottom:495.480000px;}
.yb_c00178{bottom:519.480000px;}
.ya_c00178{bottom:545.130000px;}
.y9_c00178{bottom:568.980000px;}
.y8_c00178{bottom:586.980000px;}
.y7_c00178{bottom:594.030000px;}
.y6_c00178{bottom:618.930000px;}
.y5_c00178{bottom:643.380000px;}
.y4_c00178{bottom:667.230000px;}
.y3_c00178{bottom:692.280000px;}
.y2_c00178{bottom:716.580000px;}
.y1_c00178{bottom:742.230000px;}
.h4_c00178{height:13.200074px;}
.h5_c00178{height:43.804688px;}
.h3_c00178{height:76.552734px;}
.h2_c00178{height:91.160156px;}
.h1_c00178{height:789.750000px;}
.h0_c00178{height:790.050000px;}
.w2_c00178{width:104.875500px;}
.w1_c00178{width:546.750000px;}
.w0_c00178{width:547.050000px;}
.x0_c00178{left:0.000000px;}
.x2_c00178{left:40.950000px;}
.x3_c00178{left:42.150000px;}
.x4_c00178{left:43.200000px;}
.x5_c00178{left:44.550000px;}
.x6_c00178{left:46.200000px;}
.x8_c00178{left:48.000000px;}
.x9_c00178{left:49.050000px;}
.xa_c00178{left:50.400000px;}
.x1_c00178{left:161.700000px;}
.xc_c00178{left:225.339249px;}
.x7_c00178{left:305.850000px;}
.xb_c00178{left:309.450000px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls1_c00178{letter-spacing:0.000000pt;}
.ls2_c00178{letter-spacing:2.666667pt;}
.ls0_c00178{letter-spacing:5.333333pt;}
.ws0_c00178{word-spacing:-29.504000pt;}
.ws1_c00178{word-spacing:0.000000pt;}
._1b_c00178{margin-left:-24.730667pt;}
._15_c00178{margin-left:-18.528000pt;}
._1c_c00178{margin-left:-17.621333pt;}
._1a_c00178{margin-left:-15.882667pt;}
._18_c00178{margin-left:-14.954667pt;}
._19_c00178{margin-left:-13.701333pt;}
._17_c00178{margin-left:-12.688000pt;}
._13_c00178{margin-left:-11.093333pt;}
._16_c00178{margin-left:-9.845333pt;}
._a_c00178{margin-left:-8.944000pt;}
._e_c00178{margin-left:-7.333333pt;}
._11_c00178{margin-left:-6.101333pt;}
._9_c00178{margin-left:-5.200000pt;}
._8_c00178{margin-left:-3.536000pt;}
._10_c00178{margin-left:-2.485333pt;}
._c_c00178{margin-left:-1.397333pt;}
._b_c00178{width:1.157333pt;}
._4_c00178{width:2.048000pt;}
._5_c00178{width:3.072000pt;}
._1_c00178{width:3.968000pt;}
._2_c00178{width:4.992000pt;}
._0_c00178{width:6.272000pt;}
._3_c00178{width:7.360000pt;}
._f_c00178{width:8.256000pt;}
._12_c00178{width:9.888000pt;}
._7_c00178{width:10.816000pt;}
._d_c00178{width:12.272000pt;}
._1e_c00178{width:14.186667pt;}
._1d_c00178{width:16.480000pt;}
._14_c00178{width:20.522667pt;}
._1f_c00178{width:162.480000pt;}
._6_c00178{width:312.960000pt;}
.fs2_c00178{font-size:42.666667pt;}
.fs0_c00178{font-size:64.000000pt;}
.fs1_c00178{font-size:69.333333pt;}
.y0_c00178{bottom:0.000000pt;}
.y1f_c00178{bottom:2.760000pt;}
.y1e_c00178{bottom:6.425206pt;}
.y1d_c00178{bottom:44.693333pt;}
.y1c_c00178{bottom:65.360000pt;}
.y1b_c00178{bottom:91.226667pt;}
.y1a_c00178{bottom:109.493333pt;}
.y19_c00178{bottom:132.693333pt;}
.y18_c00178{bottom:155.493333pt;}
.y17_c00178{bottom:177.626667pt;}
.y16_c00178{bottom:201.626667pt;}
.y15_c00178{bottom:224.160000pt;}
.y14_c00178{bottom:246.560000pt;}
.y13_c00178{bottom:286.160000pt;}
.y12_c00178{bottom:308.160000pt;}
.y11_c00178{bottom:330.560000pt;}
.y10_c00178{bottom:352.160000pt;}
.yf_c00178{bottom:373.893333pt;}
.ye_c00178{bottom:396.026667pt;}
.yd_c00178{bottom:418.293333pt;}
.yc_c00178{bottom:440.426667pt;}
.yb_c00178{bottom:461.760000pt;}
.ya_c00178{bottom:484.560000pt;}
.y9_c00178{bottom:505.760000pt;}
.y8_c00178{bottom:521.760000pt;}
.y7_c00178{bottom:528.026667pt;}
.y6_c00178{bottom:550.160000pt;}
.y5_c00178{bottom:571.893333pt;}
.y4_c00178{bottom:593.093333pt;}
.y3_c00178{bottom:615.360000pt;}
.y2_c00178{bottom:636.960000pt;}
.y1_c00178{bottom:659.760000pt;}
.h4_c00178{height:11.733399pt;}
.h5_c00178{height:38.937500pt;}
.h3_c00178{height:68.046875pt;}
.h2_c00178{height:81.031250pt;}
.h1_c00178{height:702.000000pt;}
.h0_c00178{height:702.266667pt;}
.w2_c00178{width:93.222667pt;}
.w1_c00178{width:486.000000pt;}
.w0_c00178{width:486.266667pt;}
.x0_c00178{left:0.000000pt;}
.x2_c00178{left:36.400000pt;}
.x3_c00178{left:37.466667pt;}
.x4_c00178{left:38.400000pt;}
.x5_c00178{left:39.600000pt;}
.x6_c00178{left:41.066667pt;}
.x8_c00178{left:42.666667pt;}
.x9_c00178{left:43.600000pt;}
.xa_c00178{left:44.800000pt;}
.x1_c00178{left:143.733333pt;}
.xc_c00178{left:200.301554pt;}
.x7_c00178{left:271.866667pt;}
.xb_c00178{left:275.066667pt;}
}





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

.ir_c00179:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00179{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00179;src:url('chunks/assets/font_a7ad4357f983cdfbce0e59d7.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00179;src:url('chunks/assets/font_ab774e4c93a100fdaf5f269a.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:1.480469;font-style:normal;font-weight:normal;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_48f8cbce120c762f660caed9.woff2')format("woff");}.ff3_c00179{font-family:ff3_c00179;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00179{font-family:ff4_c00179;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00179{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00179{vertical-align:0.000000px;}
.ls0_c00179{letter-spacing:0.000000px;}
.ls1_c00179{letter-spacing:3.000000px;}
.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;}
}
.ws1_c00179{word-spacing:-20.352000px;}
.ws0_c00179{word-spacing:-17.352000px;}
.ws2_c00179{word-spacing:0.000000px;}
._1f_c00179{margin-left:-20.160000px;}
._14_c00179{margin-left:-14.220000px;}
._c_c00179{margin-left:-12.840000px;}
._1d_c00179{margin-left:-11.400000px;}
._18_c00179{margin-left:-9.864000px;}
._1a_c00179{margin-left:-7.632000px;}
._19_c00179{margin-left:-6.624000px;}
._3_c00179{margin-left:-5.544000px;}
._4_c00179{margin-left:-3.816000px;}
._5_c00179{margin-left:-1.872000px;}
._1_c00179{width:1.848000px;}
._2_c00179{width:3.276000px;}
._0_c00179{width:5.040000px;}
._9_c00179{width:6.264000px;}
._17_c00179{width:8.136000px;}
._8_c00179{width:9.684000px;}
._21_c00179{width:10.800000px;}
._1c_c00179{width:11.820000px;}
._6_c00179{width:12.984000px;}
._1e_c00179{width:14.532000px;}
._7_c00179{width:16.044000px;}
._16_c00179{width:17.892000px;}
._a_c00179{width:19.824000px;}
._11_c00179{width:29.529000px;}
._e_c00179{width:33.996000px;}
._b_c00179{width:35.076000px;}
._1b_c00179{width:78.456000px;}
._d_c00179{width:97.740000px;}
._10_c00179{width:114.852000px;}
._12_c00179{width:124.134000px;}
._20_c00179{width:177.336000px;}
._15_c00179{width:209.040000px;}
._f_c00179{width:213.231000px;}
._13_c00179{width:230.304000px;}
.fc2_c00179{color:transparent;}
.fc1_c00179{color:rgb(128,128,128);}
.fc0_c00179{color:rgb(0,0,0);}
.fs4_c00179{font-size:48.000000px;}
.fs3_c00179{font-size:51.000000px;}
.fs2_c00179{font-size:60.000000px;}
.fs1_c00179{font-size:72.000000px;}
.fs0_c00179{font-size:84.000000px;}
.y0_c00179{bottom:0.000000px;}
.y20_c00179{bottom:3.105000px;}
.y1f_c00179{bottom:7.228371px;}
.y1e_c00179{bottom:57.165000px;}
.y1d_c00179{bottom:83.115000px;}
.y1c_c00179{bottom:105.615000px;}
.y1b_c00179{bottom:130.965000px;}
.y1a_c00179{bottom:157.065000px;}
.y19_c00179{bottom:180.615000px;}
.y18_c00179{bottom:205.515000px;}
.y17_c00179{bottom:230.865000px;}
.y16_c00179{bottom:254.715000px;}
.y15_c00179{bottom:279.465000px;}
.y14_c00179{bottom:304.215000px;}
.y13_c00179{bottom:328.065000px;}
.y12_c00179{bottom:352.365000px;}
.y11_c00179{bottom:377.115000px;}
.y10_c00179{bottom:401.715000px;}
.yf_c00179{bottom:426.615000px;}
.ye_c00179{bottom:451.215000px;}
.yd_c00179{bottom:475.215000px;}
.yc_c00179{bottom:499.515000px;}
.yb_c00179{bottom:524.865000px;}
.ya_c00179{bottom:549.165000px;}
.y9_c00179{bottom:573.465000px;}
.y8_c00179{bottom:598.065000px;}
.y7_c00179{bottom:622.065000px;}
.y6_c00179{bottom:647.115000px;}
.y5_c00179{bottom:670.965000px;}
.y4_c00179{bottom:694.215000px;}
.y3_c00179{bottom:706.365000px;}
.y2_c00179{bottom:722.265000px;}
.y1_c00179{bottom:745.665000px;}
.h5_c00179{height:13.200074px;}
.h6_c00179{height:43.804688px;}
.h4_c00179{height:70.224609px;}
.h2_c00179{height:82.400391px;}
.h3_c00179{height:91.160156px;}
.h0_c00179{height:787.875000px;}
.h1_c00179{height:788.250000px;}
.w2_c00179{width:104.875500px;}
.w1_c00179{width:527.250000px;}
.w0_c00179{width:527.325000px;}
.x0_c00179{left:0.000000px;}
.x3_c00179{left:37.350000px;}
.x2_c00179{left:39.450000px;}
.x8_c00179{left:54.300000px;}
.xd_c00179{left:104.850000px;}
.xc_c00179{left:106.200000px;}
.xb_c00179{left:107.700000px;}
.xa_c00179{left:109.050000px;}
.x9_c00179{left:110.400000px;}
.x7_c00179{left:111.600000px;}
.x6_c00179{left:112.650000px;}
.x5_c00179{left:114.000000px;}
.x4_c00179{left:115.650000px;}
.xf_c00179{left:215.476730px;}
.x1_c00179{left:242.400000px;}
.xe_c00179{left:454.500000px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls0_c00179{letter-spacing:0.000000pt;}
.ls1_c00179{letter-spacing:2.666667pt;}
.ws1_c00179{word-spacing:-18.090667pt;}
.ws0_c00179{word-spacing:-15.424000pt;}
.ws2_c00179{word-spacing:0.000000pt;}
._1f_c00179{margin-left:-17.920000pt;}
._14_c00179{margin-left:-12.640000pt;}
._c_c00179{margin-left:-11.413333pt;}
._1d_c00179{margin-left:-10.133333pt;}
._18_c00179{margin-left:-8.768000pt;}
._1a_c00179{margin-left:-6.784000pt;}
._19_c00179{margin-left:-5.888000pt;}
._3_c00179{margin-left:-4.928000pt;}
._4_c00179{margin-left:-3.392000pt;}
._5_c00179{margin-left:-1.664000pt;}
._1_c00179{width:1.642667pt;}
._2_c00179{width:2.912000pt;}
._0_c00179{width:4.480000pt;}
._9_c00179{width:5.568000pt;}
._17_c00179{width:7.232000pt;}
._8_c00179{width:8.608000pt;}
._21_c00179{width:9.600000pt;}
._1c_c00179{width:10.506667pt;}
._6_c00179{width:11.541333pt;}
._1e_c00179{width:12.917333pt;}
._7_c00179{width:14.261333pt;}
._16_c00179{width:15.904000pt;}
._a_c00179{width:17.621333pt;}
._11_c00179{width:26.248000pt;}
._e_c00179{width:30.218667pt;}
._b_c00179{width:31.178667pt;}
._1b_c00179{width:69.738667pt;}
._d_c00179{width:86.880000pt;}
._10_c00179{width:102.090667pt;}
._12_c00179{width:110.341333pt;}
._20_c00179{width:157.632000pt;}
._15_c00179{width:185.813333pt;}
._f_c00179{width:189.538667pt;}
._13_c00179{width:204.714667pt;}
.fs4_c00179{font-size:42.666667pt;}
.fs3_c00179{font-size:45.333333pt;}
.fs2_c00179{font-size:53.333333pt;}
.fs1_c00179{font-size:64.000000pt;}
.fs0_c00179{font-size:74.666667pt;}
.y0_c00179{bottom:0.000000pt;}
.y20_c00179{bottom:2.760000pt;}
.y1f_c00179{bottom:6.425219pt;}
.y1e_c00179{bottom:50.813333pt;}
.y1d_c00179{bottom:73.880000pt;}
.y1c_c00179{bottom:93.880000pt;}
.y1b_c00179{bottom:116.413333pt;}
.y1a_c00179{bottom:139.613333pt;}
.y19_c00179{bottom:160.546667pt;}
.y18_c00179{bottom:182.680000pt;}
.y17_c00179{bottom:205.213333pt;}
.y16_c00179{bottom:226.413333pt;}
.y15_c00179{bottom:248.413333pt;}
.y14_c00179{bottom:270.413333pt;}
.y13_c00179{bottom:291.613333pt;}
.y12_c00179{bottom:313.213333pt;}
.y11_c00179{bottom:335.213333pt;}
.y10_c00179{bottom:357.080000pt;}
.yf_c00179{bottom:379.213333pt;}
.ye_c00179{bottom:401.080000pt;}
.yd_c00179{bottom:422.413333pt;}
.yc_c00179{bottom:444.013333pt;}
.yb_c00179{bottom:466.546667pt;}
.ya_c00179{bottom:488.146667pt;}
.y9_c00179{bottom:509.746667pt;}
.y8_c00179{bottom:531.613333pt;}
.y7_c00179{bottom:552.946667pt;}
.y6_c00179{bottom:575.213333pt;}
.y5_c00179{bottom:596.413333pt;}
.y4_c00179{bottom:617.080000pt;}
.y3_c00179{bottom:627.880000pt;}
.y2_c00179{bottom:642.013333pt;}
.y1_c00179{bottom:662.813333pt;}
.h5_c00179{height:11.733399pt;}
.h6_c00179{height:38.937500pt;}
.h4_c00179{height:62.421875pt;}
.h2_c00179{height:73.244792pt;}
.h3_c00179{height:81.031250pt;}
.h0_c00179{height:700.333333pt;}
.h1_c00179{height:700.666667pt;}
.w2_c00179{width:93.222667pt;}
.w1_c00179{width:468.666667pt;}
.w0_c00179{width:468.733333pt;}
.x0_c00179{left:0.000000pt;}
.x3_c00179{left:33.200000pt;}
.x2_c00179{left:35.066667pt;}
.x8_c00179{left:48.266667pt;}
.xd_c00179{left:93.200000pt;}
.xc_c00179{left:94.400000pt;}
.xb_c00179{left:95.733333pt;}
.xa_c00179{left:96.933333pt;}
.x9_c00179{left:98.133333pt;}
.x7_c00179{left:99.200000pt;}
.x6_c00179{left:100.133333pt;}
.x5_c00179{left:101.333333pt;}
.x4_c00179{left:102.800000pt;}
.xf_c00179{left:191.534871pt;}
.x1_c00179{left:215.466667pt;}
.xe_c00179{left:404.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_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_4ad774685125bb5e3220c6a1.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00180;src:url('chunks/assets/font_a95bd54c1f1c6a6e93fe1a71.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.568848;font-style:normal;font-weight:normal;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_cdc4c54988c21ad62bd5e0b1.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:1.480469;font-style:normal;font-weight:normal;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_3917168ca77cde86c5e3e6ac.woff2')format("woff");}.ff4_c00180{font-family:ff4_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00180;src:url('chunks/assets/font_f6e6dc5101e2a8f443a99ea5.woff2')format("woff");}.ff5_c00180{font-family:ff5_c00180;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00180;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00180{font-family:ff6_c00180;line-height:1.219238;font-style: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);}
.v1_c00180{vertical-align:-4.200000px;}
.v0_c00180{vertical-align:0.000000px;}
.ls3_c00180{letter-spacing:-6.000000px;}
.ls2_c00180{letter-spacing:0.000000px;}
.ls0_c00180{letter-spacing:3.000000px;}
.ls1_c00180{letter-spacing:75.900000px;}
.sc__c00180{text-shadow:none;}
.sc0_c00180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00180{-webkit-text-stroke:0px transparent;}
.sc0_c00180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00180{word-spacing:-20.352000px;}
.ws0_c00180{word-spacing:-6.480000px;}
.ws2_c00180{word-spacing:0.000000px;}
._12_c00180{margin-left:-22.896000px;}
._7_c00180{margin-left:-17.724000px;}
._10_c00180{margin-left:-13.752000px;}
._17_c00180{margin-left:-9.501000px;}
._13_c00180{margin-left:-7.908000px;}
._c_c00180{margin-left:-6.588000px;}
._3_c00180{margin-left:-5.292000px;}
._9_c00180{margin-left:-3.900000px;}
._b_c00180{margin-left:-2.616000px;}
._8_c00180{margin-left:-1.224000px;}
._d_c00180{width:1.044000px;}
._4_c00180{width:2.100000px;}
._2_c00180{width:3.696000px;}
._1_c00180{width:5.544000px;}
._a_c00180{width:6.876000px;}
._19_c00180{width:7.893000px;}
._0_c00180{width:8.988000px;}
._6_c00180{width:10.836000px;}
._14_c00180{width:12.804000px;}
._e_c00180{width:15.024000px;}
._15_c00180{width:16.638000px;}
._16_c00180{width:19.740000px;}
._1b_c00180{width:22.344000px;}
._1a_c00180{width:25.032000px;}
._11_c00180{width:72.660000px;}
._f_c00180{width:77.436000px;}
._18_c00180{width:184.488000px;}
._5_c00180{width:385.728000px;}
.fc2_c00180{color:transparent;}
.fc1_c00180{color:rgb(128,128,128);}
.fc0_c00180{color:rgb(0,0,0);}
.fs7_c00180{font-size:48.000000px;}
.fs2_c00180{font-size:60.000000px;}
.fs6_c00180{font-size:63.000000px;}
.fs5_c00180{font-size:69.000000px;}
.fs1_c00180{font-size:72.000000px;}
.fs3_c00180{font-size:78.000000px;}
.fs4_c00180{font-size:81.000000px;}
.fs0_c00180{font-size:84.000000px;}
.y0_c00180{bottom:0.000000px;}
.y1f_c00180{bottom:3.105000px;}
.y1e_c00180{bottom:7.228355px;}
.y1d_c00180{bottom:44.235000px;}
.y1c_c00180{bottom:77.235000px;}
.y1b_c00180{bottom:102.135000px;}
.y1a_c00180{bottom:127.485000px;}
.y19_c00180{bottom:149.835000px;}
.y18_c00180{bottom:177.435000px;}
.y17_c00180{bottom:203.085000px;}
.y16_c00180{bottom:227.385000px;}
.y15_c00180{bottom:252.135000px;}
.y14_c00180{bottom:273.285000px;}
.y13_c00180{bottom:301.635000px;}
.y12_c00180{bottom:322.635000px;}
.y11_c00180{bottom:346.635000px;}
.y10_c00180{bottom:371.235000px;}
.yf_c00180{bottom:396.885000px;}
.ye_c00180{bottom:421.185000px;}
.yd_c00180{bottom:446.385000px;}
.yc_c00180{bottom:470.685000px;}
.yb_c00180{bottom:495.435000px;}
.ya_c00180{bottom:519.735000px;}
.y9_c00180{bottom:544.635000px;}
.y8_c00180{bottom:569.235000px;}
.y7_c00180{bottom:593.685000px;}
.y6_c00180{bottom:618.585000px;}
.y5_c00180{bottom:642.285000px;}
.y4_c00180{bottom:666.885000px;}
.y3_c00180{bottom:691.785000px;}
.y2_c00180{bottom:715.785000px;}
.y1_c00180{bottom:740.385000px;}
.h8_c00180{height:13.200074px;}
.h9_c00180{height:43.804688px;}
.h5_c00180{height:79.497070px;}
.h7_c00180{height:79.765137px;}
.h2_c00180{height:82.400391px;}
.h6_c00180{height:87.361816px;}
.h3_c00180{height:91.160156px;}
.h4_c00180{height:94.556836px;}
.h0_c00180{height:788.925000px;}
.h1_c00180{height:789.000000px;}
.w2_c00180{width:104.875500px;}
.w0_c00180{width:548.625000px;}
.w1_c00180{width:549.000000px;}
.x0_c00180{left:0.000000px;}
.x6_c00180{left:31.050000px;}
.x2_c00180{left:32.700000px;}
.x3_c00180{left:34.050000px;}
.x4_c00180{left:35.700000px;}
.x5_c00180{left:37.050000px;}
.x7_c00180{left:54.900000px;}
.x1_c00180{left:146.400000px;}
.x9_c00180{left:226.126740px;}
.x8_c00180{left:376.650000px;}
@media print{
.v1_c00180{vertical-align:-3.733333pt;}
.v0_c00180{vertical-align:0.000000pt;}
.ls3_c00180{letter-spacing:-5.333333pt;}
.ls2_c00180{letter-spacing:0.000000pt;}
.ls0_c00180{letter-spacing:2.666667pt;}
.ls1_c00180{letter-spacing:67.466667pt;}
.ws1_c00180{word-spacing:-18.090667pt;}
.ws0_c00180{word-spacing:-5.760000pt;}
.ws2_c00180{word-spacing:0.000000pt;}
._12_c00180{margin-left:-20.352000pt;}
._7_c00180{margin-left:-15.754667pt;}
._10_c00180{margin-left:-12.224000pt;}
._17_c00180{margin-left:-8.445333pt;}
._13_c00180{margin-left:-7.029333pt;}
._c_c00180{margin-left:-5.856000pt;}
._3_c00180{margin-left:-4.704000pt;}
._9_c00180{margin-left:-3.466667pt;}
._b_c00180{margin-left:-2.325333pt;}
._8_c00180{margin-left:-1.088000pt;}
._d_c00180{width:0.928000pt;}
._4_c00180{width:1.866667pt;}
._2_c00180{width:3.285333pt;}
._1_c00180{width:4.928000pt;}
._a_c00180{width:6.112000pt;}
._19_c00180{width:7.016000pt;}
._0_c00180{width:7.989333pt;}
._6_c00180{width:9.632000pt;}
._14_c00180{width:11.381333pt;}
._e_c00180{width:13.354667pt;}
._15_c00180{width:14.789333pt;}
._16_c00180{width:17.546667pt;}
._1b_c00180{width:19.861333pt;}
._1a_c00180{width:22.250667pt;}
._11_c00180{width:64.586667pt;}
._f_c00180{width:68.832000pt;}
._18_c00180{width:163.989333pt;}
._5_c00180{width:342.869333pt;}
.fs7_c00180{font-size:42.666667pt;}
.fs2_c00180{font-size:53.333333pt;}
.fs6_c00180{font-size:56.000000pt;}
.fs5_c00180{font-size:61.333333pt;}
.fs1_c00180{font-size:64.000000pt;}
.fs3_c00180{font-size:69.333333pt;}
.fs4_c00180{font-size:72.000000pt;}
.fs0_c00180{font-size:74.666667pt;}
.y0_c00180{bottom:0.000000pt;}
.y1f_c00180{bottom:2.760000pt;}
.y1e_c00180{bottom:6.425204pt;}
.y1d_c00180{bottom:39.320000pt;}
.y1c_c00180{bottom:68.653333pt;}
.y1b_c00180{bottom:90.786667pt;}
.y1a_c00180{bottom:113.320000pt;}
.y19_c00180{bottom:133.186667pt;}
.y18_c00180{bottom:157.720000pt;}
.y17_c00180{bottom:180.520000pt;}
.y16_c00180{bottom:202.120000pt;}
.y15_c00180{bottom:224.120000pt;}
.y14_c00180{bottom:242.920000pt;}
.y13_c00180{bottom:268.120000pt;}
.y12_c00180{bottom:286.786667pt;}
.y11_c00180{bottom:308.120000pt;}
.y10_c00180{bottom:329.986667pt;}
.yf_c00180{bottom:352.786667pt;}
.ye_c00180{bottom:374.386667pt;}
.yd_c00180{bottom:396.786667pt;}
.yc_c00180{bottom:418.386667pt;}
.yb_c00180{bottom:440.386667pt;}
.ya_c00180{bottom:461.986667pt;}
.y9_c00180{bottom:484.120000pt;}
.y8_c00180{bottom:505.986667pt;}
.y7_c00180{bottom:527.720000pt;}
.y6_c00180{bottom:549.853333pt;}
.y5_c00180{bottom:570.920000pt;}
.y4_c00180{bottom:592.786667pt;}
.y3_c00180{bottom:614.920000pt;}
.y2_c00180{bottom:636.253333pt;}
.y1_c00180{bottom:658.120000pt;}
.h8_c00180{height:11.733399pt;}
.h9_c00180{height:38.937500pt;}
.h5_c00180{height:70.664062pt;}
.h7_c00180{height:70.902344pt;}
.h2_c00180{height:73.244792pt;}
.h6_c00180{height:77.654948pt;}
.h3_c00180{height:81.031250pt;}
.h4_c00180{height:84.050521pt;}
.h0_c00180{height:701.266667pt;}
.h1_c00180{height:701.333333pt;}
.w2_c00180{width:93.222667pt;}
.w0_c00180{width:487.666667pt;}
.w1_c00180{width:488.000000pt;}
.x0_c00180{left:0.000000pt;}
.x6_c00180{left:27.600000pt;}
.x2_c00180{left:29.066667pt;}
.x3_c00180{left:30.266667pt;}
.x4_c00180{left:31.733333pt;}
.x5_c00180{left:32.933333pt;}
.x7_c00180{left:48.800000pt;}
.x1_c00180{left:130.133333pt;}
.x9_c00180{left:201.001546pt;}
.x8_c00180{left:334.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f17b63fcaf25dffdd00d9d41.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00181;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00181;src:url('chunks/assets/font_5e8789686146e16584bfce99.woff2')format("woff");}.ff3_c00181{font-family:ff3_c00181;line-height:1.568848;font-style:normal;font-weight:normal;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_edf97250611313cd62bf36f2.woff2')format("woff");}.ff4_c00181{font-family:ff4_c00181;line-height:1.480469;font-style:normal;font-weight:normal;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_3bc1fd16c2299c713d0c063d.woff2')format("woff");}.ff5_c00181{font-family:ff5_c00181;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00181{font-family:ff6_c00181;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00181{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00181{vertical-align:0.000000px;}
.ls2_c00181{letter-spacing:0.000000px;}
.ls3_c00181{letter-spacing:3.000000px;}
.ls0_c00181{letter-spacing:3.771000px;}
.ls1_c00181{letter-spacing:10.788000px;}
.sc__c00181{text-shadow:none;}
.sc0_c00181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00181{-webkit-text-stroke:0px transparent;}
.sc0_c00181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00181{word-spacing:-31.809000px;}
.ws1_c00181{word-spacing:-20.352000px;}
.ws2_c00181{word-spacing:-17.352000px;}
.ws3_c00181{word-spacing:-14.460000px;}
.ws4_c00181{word-spacing:0.000000px;}
._e_c00181{margin-left:-40.608000px;}
._f_c00181{margin-left:-29.448000px;}
._19_c00181{margin-left:-19.176000px;}
._17_c00181{margin-left:-16.764000px;}
._14_c00181{margin-left:-13.752000px;}
._18_c00181{margin-left:-12.072000px;}
._16_c00181{margin-left:-10.020000px;}
._11_c00181{margin-left:-8.856000px;}
._7_c00181{margin-left:-6.780000px;}
._3_c00181{margin-left:-4.788000px;}
._8_c00181{margin-left:-3.564000px;}
._6_c00181{margin-left:-2.508000px;}
._5_c00181{margin-left:-1.224000px;}
._4_c00181{width:1.428000px;}
._1_c00181{width:2.436000px;}
._2_c00181{width:4.200000px;}
._b_c00181{width:5.256000px;}
._0_c00181{width:6.552000px;}
._9_c00181{width:8.508000px;}
._15_c00181{width:9.936000px;}
._c_c00181{width:11.088000px;}
._d_c00181{width:12.924000px;}
._a_c00181{width:14.616000px;}
._13_c00181{width:33.924000px;}
._12_c00181{width:46.584000px;}
._10_c00181{width:169.488000px;}
.fc2_c00181{color:transparent;}
.fc1_c00181{color:rgb(128,128,128);}
.fc0_c00181{color:rgb(0,0,0);}
.fs5_c00181{font-size:48.000000px;}
.fs3_c00181{font-size:60.000000px;}
.fs4_c00181{font-size:63.000000px;}
.fs2_c00181{font-size:69.000000px;}
.fs1_c00181{font-size:72.000000px;}
.fs0_c00181{font-size:84.000000px;}
.y0_c00181{bottom:0.000000px;}
.y1f_c00181{bottom:3.105000px;}
.y1e_c00181{bottom:7.228369px;}
.y1d_c00181{bottom:37.170000px;}
.y1c_c00181{bottom:71.520000px;}
.y1b_c00181{bottom:97.170000px;}
.y1a_c00181{bottom:122.220000px;}
.y19_c00181{bottom:146.820000px;}
.y18_c00181{bottom:172.020000px;}
.y17_c00181{bottom:196.770000px;}
.y16_c00181{bottom:221.370000px;}
.y15_c00181{bottom:246.270000px;}
.y14_c00181{bottom:271.920000px;}
.y13_c00181{bottom:295.620000px;}
.y12_c00181{bottom:319.620000px;}
.y11_c00181{bottom:344.820000px;}
.y10_c00181{bottom:369.270000px;}
.yf_c00181{bottom:393.570000px;}
.ye_c00181{bottom:417.420000px;}
.yd_c00181{bottom:442.020000px;}
.yc_c00181{bottom:466.470000px;}
.yb_c00181{bottom:490.770000px;}
.ya_c00181{bottom:514.620000px;}
.y9_c00181{bottom:539.670000px;}
.y8_c00181{bottom:563.970000px;}
.y7_c00181{bottom:588.270000px;}
.y6_c00181{bottom:612.870000px;}
.y5_c00181{bottom:637.770000px;}
.y4_c00181{bottom:660.870000px;}
.y3_c00181{bottom:685.770000px;}
.y2_c00181{bottom:710.670000px;}
.y1_c00181{bottom:736.020000px;}
.h5_c00181{height:13.200073px;}
.h6_c00181{height:43.804688px;}
.h4_c00181{height:75.966797px;}
.h2_c00181{height:82.441406px;}
.h3_c00181{height:91.160156px;}
.h1_c00181{height:778.500000px;}
.h0_c00181{height:778.650000px;}
.w2_c00181{width:104.875500px;}
.w0_c00181{width:509.775000px;}
.w1_c00181{width:510.000000px;}
.x0_c00181{left:0.000000px;}
.x5_c00181{left:61.050000px;}
.x6_c00181{left:65.400000px;}
.x4_c00181{left:98.550000px;}
.x3_c00181{left:108.600000px;}
.x2_c00181{left:109.950000px;}
.x7_c00181{left:111.300000px;}
.x8_c00181{left:112.350000px;}
.x9_c00181{left:118.800000px;}
.xa_c00181{left:206.701767px;}
.x1_c00181{left:223.800000px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls2_c00181{letter-spacing:0.000000pt;}
.ls3_c00181{letter-spacing:2.666667pt;}
.ls0_c00181{letter-spacing:3.352000pt;}
.ls1_c00181{letter-spacing:9.589333pt;}
.ws0_c00181{word-spacing:-28.274667pt;}
.ws1_c00181{word-spacing:-18.090667pt;}
.ws2_c00181{word-spacing:-15.424000pt;}
.ws3_c00181{word-spacing:-12.853333pt;}
.ws4_c00181{word-spacing:0.000000pt;}
._e_c00181{margin-left:-36.096000pt;}
._f_c00181{margin-left:-26.176000pt;}
._19_c00181{margin-left:-17.045333pt;}
._17_c00181{margin-left:-14.901333pt;}
._14_c00181{margin-left:-12.224000pt;}
._18_c00181{margin-left:-10.730667pt;}
._16_c00181{margin-left:-8.906667pt;}
._11_c00181{margin-left:-7.872000pt;}
._7_c00181{margin-left:-6.026667pt;}
._3_c00181{margin-left:-4.256000pt;}
._8_c00181{margin-left:-3.168000pt;}
._6_c00181{margin-left:-2.229333pt;}
._5_c00181{margin-left:-1.088000pt;}
._4_c00181{width:1.269333pt;}
._1_c00181{width:2.165333pt;}
._2_c00181{width:3.733333pt;}
._b_c00181{width:4.672000pt;}
._0_c00181{width:5.824000pt;}
._9_c00181{width:7.562667pt;}
._15_c00181{width:8.832000pt;}
._c_c00181{width:9.856000pt;}
._d_c00181{width:11.488000pt;}
._a_c00181{width:12.992000pt;}
._13_c00181{width:30.154667pt;}
._12_c00181{width:41.408000pt;}
._10_c00181{width:150.656000pt;}
.fs5_c00181{font-size:42.666667pt;}
.fs3_c00181{font-size:53.333333pt;}
.fs4_c00181{font-size:56.000000pt;}
.fs2_c00181{font-size:61.333333pt;}
.fs1_c00181{font-size:64.000000pt;}
.fs0_c00181{font-size:74.666667pt;}
.y0_c00181{bottom:0.000000pt;}
.y1f_c00181{bottom:2.760000pt;}
.y1e_c00181{bottom:6.425217pt;}
.y1d_c00181{bottom:33.040000pt;}
.y1c_c00181{bottom:63.573333pt;}
.y1b_c00181{bottom:86.373333pt;}
.y1a_c00181{bottom:108.640000pt;}
.y19_c00181{bottom:130.506667pt;}
.y18_c00181{bottom:152.906667pt;}
.y17_c00181{bottom:174.906667pt;}
.y16_c00181{bottom:196.773333pt;}
.y15_c00181{bottom:218.906667pt;}
.y14_c00181{bottom:241.706667pt;}
.y13_c00181{bottom:262.773333pt;}
.y12_c00181{bottom:284.106667pt;}
.y11_c00181{bottom:306.506667pt;}
.y10_c00181{bottom:328.240000pt;}
.yf_c00181{bottom:349.840000pt;}
.ye_c00181{bottom:371.040000pt;}
.yd_c00181{bottom:392.906667pt;}
.yc_c00181{bottom:414.640000pt;}
.yb_c00181{bottom:436.240000pt;}
.ya_c00181{bottom:457.440000pt;}
.y9_c00181{bottom:479.706667pt;}
.y8_c00181{bottom:501.306667pt;}
.y7_c00181{bottom:522.906667pt;}
.y6_c00181{bottom:544.773333pt;}
.y5_c00181{bottom:566.906667pt;}
.y4_c00181{bottom:587.440000pt;}
.y3_c00181{bottom:609.573333pt;}
.y2_c00181{bottom:631.706667pt;}
.y1_c00181{bottom:654.240000pt;}
.h5_c00181{height:11.733399pt;}
.h6_c00181{height:38.937500pt;}
.h4_c00181{height:67.526042pt;}
.h2_c00181{height:73.281250pt;}
.h3_c00181{height:81.031250pt;}
.h1_c00181{height:692.000000pt;}
.h0_c00181{height:692.133333pt;}
.w2_c00181{width:93.222667pt;}
.w0_c00181{width:453.133333pt;}
.w1_c00181{width:453.333333pt;}
.x0_c00181{left:0.000000pt;}
.x5_c00181{left:54.266667pt;}
.x6_c00181{left:58.133333pt;}
.x4_c00181{left:87.600000pt;}
.x3_c00181{left:96.533333pt;}
.x2_c00181{left:97.733333pt;}
.x7_c00181{left:98.933333pt;}
.x8_c00181{left:99.866667pt;}
.x9_c00181{left:105.600000pt;}
.xa_c00181{left:183.734904pt;}
.x1_c00181{left:198.933333pt;}
}





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

.ir_c00182:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00182{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00182;src:url('chunks/assets/font_6a486d96807eff025cb0b657.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.480469;font-style:normal;font-weight:normal;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_4af0892c35372ba25e9a705c.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00182;src:url('chunks/assets/font_4ae330e11a976a0ec09fc9ce.woff2')format("woff");}.ff3_c00182{font-family:ff3_c00182;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00182{font-family:ff4_c00182;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00182{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00182{vertical-align:0.000000px;}
.ls0_c00182{letter-spacing:-3.000000px;}
.ls1_c00182{letter-spacing:0.000000px;}
.ls2_c00182{letter-spacing:3.000000px;}
.sc__c00182{text-shadow:none;}
.sc0_c00182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00182{-webkit-text-stroke:0px transparent;}
.sc0_c00182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00182{word-spacing:-14.460000px;}
.ws1_c00182{word-spacing:0.000000px;}
._16_c00182{margin-left:-22.032000px;}
._5_c00182{margin-left:-11.511000px;}
._12_c00182{margin-left:-9.282000px;}
._10_c00182{margin-left:-7.908000px;}
._15_c00182{margin-left:-6.876000px;}
._9_c00182{margin-left:-5.475000px;}
._7_c00182{margin-left:-4.116000px;}
._2_c00182{margin-left:-2.697000px;}
._6_c00182{margin-left:-1.584000px;}
._3_c00182{width:1.566000px;}
._b_c00182{width:2.589000px;}
._1_c00182{width:3.654000px;}
._a_c00182{width:4.680000px;}
._0_c00182{width:5.916000px;}
._e_c00182{width:7.716000px;}
._11_c00182{width:9.300000px;}
._8_c00182{width:10.971000px;}
._14_c00182{width:12.312000px;}
._c_c00182{width:13.371000px;}
._f_c00182{width:14.850000px;}
._d_c00182{width:17.778000px;}
._13_c00182{width:25.413000px;}
._4_c00182{width:403.071000px;}
.fc2_c00182{color:transparent;}
.fc1_c00182{color:rgb(128,128,128);}
.fc0_c00182{color:rgb(0,0,0);}
.fs3_c00182{font-size:48.000000px;}
.fs1_c00182{font-size:60.000000px;}
.fs2_c00182{font-size:72.000000px;}
.fs0_c00182{font-size:87.000000px;}
.y0_c00182{bottom:0.000000px;}
.y1f_c00182{bottom:3.105000px;}
.y1e_c00182{bottom:7.228363px;}
.y1d_c00182{bottom:46.950000px;}
.y1c_c00182{bottom:73.200000px;}
.y1b_c00182{bottom:99.000000px;}
.y1a_c00182{bottom:124.200000px;}
.y19_c00182{bottom:149.550000px;}
.y18_c00182{bottom:174.150000px;}
.y17_c00182{bottom:199.500000px;}
.y16_c00182{bottom:224.850000px;}
.y15_c00182{bottom:249.450000px;}
.y14_c00182{bottom:274.950000px;}
.y13_c00182{bottom:298.800000px;}
.y12_c00182{bottom:321.000000px;}
.y11_c00182{bottom:346.050000px;}
.y10_c00182{bottom:370.950000px;}
.yf_c00182{bottom:396.000000px;}
.ye_c00182{bottom:420.900000px;}
.yd_c00182{bottom:445.500000px;}
.yc_c00182{bottom:470.550000px;}
.yb_c00182{bottom:495.900000px;}
.ya_c00182{bottom:520.500000px;}
.y9_c00182{bottom:544.800000px;}
.y8_c00182{bottom:570.150000px;}
.y7_c00182{bottom:596.250000px;}
.y6_c00182{bottom:620.250000px;}
.y5_c00182{bottom:644.400000px;}
.y4_c00182{bottom:669.300000px;}
.y3_c00182{bottom:693.900000px;}
.y2_c00182{bottom:719.250000px;}
.y1_c00182{bottom:744.150000px;}
.h5_c00182{height:13.200074px;}
.h6_c00182{height:43.804688px;}
.h4_c00182{height:75.966797px;}
.h3_c00182{height:91.160156px;}
.h2_c00182{height:101.825684px;}
.h0_c00182{height:797.850000px;}
.h1_c00182{height:798.000000px;}
.w2_c00182{width:104.875500px;}
.w0_c00182{width:545.700000px;}
.w1_c00182{width:546.000000px;}
.x0_c00182{left:0.000000px;}
.x7_c00182{left:26.400000px;}
.x6_c00182{left:28.350000px;}
.x5_c00182{left:29.400000px;}
.x2_c00182{left:31.050000px;}
.x3_c00182{left:32.400000px;}
.x4_c00182{left:33.450000px;}
.x1_c00182{left:140.400000px;}
.x9_c00182{left:224.664230px;}
.x8_c00182{left:373.950000px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls0_c00182{letter-spacing:-2.666667pt;}
.ls1_c00182{letter-spacing:0.000000pt;}
.ls2_c00182{letter-spacing:2.666667pt;}
.ws0_c00182{word-spacing:-12.853333pt;}
.ws1_c00182{word-spacing:0.000000pt;}
._16_c00182{margin-left:-19.584000pt;}
._5_c00182{margin-left:-10.232000pt;}
._12_c00182{margin-left:-8.250667pt;}
._10_c00182{margin-left:-7.029333pt;}
._15_c00182{margin-left:-6.112000pt;}
._9_c00182{margin-left:-4.866667pt;}
._7_c00182{margin-left:-3.658667pt;}
._2_c00182{margin-left:-2.397333pt;}
._6_c00182{margin-left:-1.408000pt;}
._3_c00182{width:1.392000pt;}
._b_c00182{width:2.301333pt;}
._1_c00182{width:3.248000pt;}
._a_c00182{width:4.160000pt;}
._0_c00182{width:5.258667pt;}
._e_c00182{width:6.858667pt;}
._11_c00182{width:8.266667pt;}
._8_c00182{width:9.752000pt;}
._14_c00182{width:10.944000pt;}
._c_c00182{width:11.885333pt;}
._f_c00182{width:13.200000pt;}
._d_c00182{width:15.802667pt;}
._13_c00182{width:22.589333pt;}
._4_c00182{width:358.285333pt;}
.fs3_c00182{font-size:42.666667pt;}
.fs1_c00182{font-size:53.333333pt;}
.fs2_c00182{font-size:64.000000pt;}
.fs0_c00182{font-size:77.333333pt;}
.y0_c00182{bottom:0.000000pt;}
.y1f_c00182{bottom:2.760000pt;}
.y1e_c00182{bottom:6.425212pt;}
.y1d_c00182{bottom:41.733333pt;}
.y1c_c00182{bottom:65.066667pt;}
.y1b_c00182{bottom:88.000000pt;}
.y1a_c00182{bottom:110.400000pt;}
.y19_c00182{bottom:132.933333pt;}
.y18_c00182{bottom:154.800000pt;}
.y17_c00182{bottom:177.333333pt;}
.y16_c00182{bottom:199.866667pt;}
.y15_c00182{bottom:221.733333pt;}
.y14_c00182{bottom:244.400000pt;}
.y13_c00182{bottom:265.600000pt;}
.y12_c00182{bottom:285.333333pt;}
.y11_c00182{bottom:307.600000pt;}
.y10_c00182{bottom:329.733333pt;}
.yf_c00182{bottom:352.000000pt;}
.ye_c00182{bottom:374.133333pt;}
.yd_c00182{bottom:396.000000pt;}
.yc_c00182{bottom:418.266667pt;}
.yb_c00182{bottom:440.800000pt;}
.ya_c00182{bottom:462.666667pt;}
.y9_c00182{bottom:484.266667pt;}
.y8_c00182{bottom:506.800000pt;}
.y7_c00182{bottom:530.000000pt;}
.y6_c00182{bottom:551.333333pt;}
.y5_c00182{bottom:572.800000pt;}
.y4_c00182{bottom:594.933333pt;}
.y3_c00182{bottom:616.800000pt;}
.y2_c00182{bottom:639.333333pt;}
.y1_c00182{bottom:661.466667pt;}
.h5_c00182{height:11.733399pt;}
.h6_c00182{height:38.937500pt;}
.h4_c00182{height:67.526042pt;}
.h3_c00182{height:81.031250pt;}
.h2_c00182{height:90.511719pt;}
.h0_c00182{height:709.200000pt;}
.h1_c00182{height:709.333333pt;}
.w2_c00182{width:93.222667pt;}
.w0_c00182{width:485.066667pt;}
.w1_c00182{width:485.333333pt;}
.x0_c00182{left:0.000000pt;}
.x7_c00182{left:23.466667pt;}
.x6_c00182{left:25.200000pt;}
.x5_c00182{left:26.133333pt;}
.x2_c00182{left:27.600000pt;}
.x3_c00182{left:28.800000pt;}
.x4_c00182{left:29.733333pt;}
.x1_c00182{left:124.800000pt;}
.x9_c00182{left:199.701538pt;}
.x8_c00182{left:332.400000pt;}
}





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

.ir_c00183:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00183{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00183;src:url('chunks/assets/font_2f97348431d534c16c42482d.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.480469;font-style:normal;font-weight:normal;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_61f976670640d93470972967.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:1.568848;font-style:normal;font-weight:normal;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_ca0fc3924ec9af666d391c41.woff2')format("woff");}.ff3_c00183{font-family:ff3_c00183;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00183;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00183{font-family:ff4_c00183;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00183{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00183{vertical-align:0.000000px;}
.ls2_c00183{letter-spacing:-3.000000px;}
.ls3_c00183{letter-spacing:0.000000px;}
.ls0_c00183{letter-spacing:2.448000px;}
.ls1_c00183{letter-spacing:3.000000px;}
.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:-37.107000px;}
.ws1_c00183{word-spacing:-36.000000px;}
.ws2_c00183{word-spacing:0.000000px;}
._13_c00183{margin-left:-23.700000px;}
._15_c00183{margin-left:-14.112000px;}
._17_c00183{margin-left:-12.975000px;}
._f_c00183{margin-left:-11.601000px;}
._11_c00183{margin-left:-10.080000px;}
._b_c00183{margin-left:-8.631000px;}
._6_c00183{margin-left:-6.912000px;}
._5_c00183{margin-left:-5.184000px;}
._3_c00183{margin-left:-3.672000px;}
._0_c00183{margin-left:-2.262000px;}
._1_c00183{margin-left:-1.131000px;}
._2_c00183{width:1.440000px;}
._9_c00183{width:2.520000px;}
._8_c00183{width:4.392000px;}
._7_c00183{width:5.745000px;}
._a_c00183{width:7.065000px;}
._d_c00183{width:8.640000px;}
._14_c00183{width:9.966000px;}
._e_c00183{width:11.808000px;}
._c_c00183{width:12.813000px;}
._4_c00183{width:14.430000px;}
._10_c00183{width:15.630000px;}
._16_c00183{width:17.055000px;}
._12_c00183{width:18.720000px;}
.fc2_c00183{color:transparent;}
.fc1_c00183{color:rgb(128,128,128);}
.fc0_c00183{color:rgb(0,0,0);}
.fs2_c00183{font-size:48.000000px;}
.fs1_c00183{font-size:72.000000px;}
.fs0_c00183{font-size:87.000000px;}
.y0_c00183{bottom:0.000000px;}
.y1e_c00183{bottom:3.105000px;}
.y1d_c00183{bottom:7.228357px;}
.y1c_c00183{bottom:70.230000px;}
.y1b_c00183{bottom:93.930000px;}
.y1a_c00183{bottom:119.130000px;}
.y19_c00183{bottom:144.780000px;}
.y18_c00183{bottom:170.730000px;}
.y17_c00183{bottom:194.730000px;}
.y16_c00183{bottom:220.830000px;}
.y15_c00183{bottom:246.030000px;}
.y14_c00183{bottom:269.280000px;}
.y13_c00183{bottom:293.280000px;}
.y12_c00183{bottom:317.280000px;}
.y11_c00183{bottom:342.630000px;}
.y10_c00183{bottom:366.480000px;}
.yf_c00183{bottom:391.530000px;}
.ye_c00183{bottom:416.130000px;}
.yd_c00183{bottom:440.430000px;}
.yc_c00183{bottom:465.780000px;}
.yb_c00183{bottom:489.480000px;}
.ya_c00183{bottom:514.680000px;}
.y9_c00183{bottom:539.280000px;}
.y8_c00183{bottom:563.280000px;}
.y7_c00183{bottom:588.030000px;}
.y6_c00183{bottom:612.930000px;}
.y5_c00183{bottom:637.830000px;}
.y4_c00183{bottom:662.130000px;}
.y3_c00183{bottom:686.430000px;}
.y2_c00183{bottom:711.780000px;}
.y1_c00183{bottom:737.130000px;}
.h4_c00183{height:13.200074px;}
.h5_c00183{height:43.804688px;}
.h3_c00183{height:91.160156px;}
.h2_c00183{height:110.151855px;}
.h0_c00183{height:788.700000px;}
.h1_c00183{height:789.000000px;}
.w1_c00183{width:104.875500px;}
.w0_c00183{width:476.250000px;}
.x0_c00183{left:0.000000px;}
.x7_c00183{left:36.750000px;}
.x6_c00183{left:72.450000px;}
.x5_c00183{left:73.500000px;}
.x4_c00183{left:74.850000px;}
.x3_c00183{left:75.900000px;}
.x2_c00183{left:77.550000px;}
.x1_c00183{left:190.050000px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls2_c00183{letter-spacing:-2.666667pt;}
.ls3_c00183{letter-spacing:0.000000pt;}
.ls0_c00183{letter-spacing:2.176000pt;}
.ls1_c00183{letter-spacing:2.666667pt;}
.ws0_c00183{word-spacing:-32.984000pt;}
.ws1_c00183{word-spacing:-32.000000pt;}
.ws2_c00183{word-spacing:0.000000pt;}
._13_c00183{margin-left:-21.066667pt;}
._15_c00183{margin-left:-12.544000pt;}
._17_c00183{margin-left:-11.533333pt;}
._f_c00183{margin-left:-10.312000pt;}
._11_c00183{margin-left:-8.960000pt;}
._b_c00183{margin-left:-7.672000pt;}
._6_c00183{margin-left:-6.144000pt;}
._5_c00183{margin-left:-4.608000pt;}
._3_c00183{margin-left:-3.264000pt;}
._0_c00183{margin-left:-2.010667pt;}
._1_c00183{margin-left:-1.005333pt;}
._2_c00183{width:1.280000pt;}
._9_c00183{width:2.240000pt;}
._8_c00183{width:3.904000pt;}
._7_c00183{width:5.106667pt;}
._a_c00183{width:6.280000pt;}
._d_c00183{width:7.680000pt;}
._14_c00183{width:8.858667pt;}
._e_c00183{width:10.496000pt;}
._c_c00183{width:11.389333pt;}
._4_c00183{width:12.826667pt;}
._10_c00183{width:13.893333pt;}
._16_c00183{width:15.160000pt;}
._12_c00183{width:16.640000pt;}
.fs2_c00183{font-size:42.666667pt;}
.fs1_c00183{font-size:64.000000pt;}
.fs0_c00183{font-size:77.333333pt;}
.y0_c00183{bottom:0.000000pt;}
.y1e_c00183{bottom:2.760000pt;}
.y1d_c00183{bottom:6.425206pt;}
.y1c_c00183{bottom:62.426667pt;}
.y1b_c00183{bottom:83.493333pt;}
.y1a_c00183{bottom:105.893333pt;}
.y19_c00183{bottom:128.693333pt;}
.y18_c00183{bottom:151.760000pt;}
.y17_c00183{bottom:173.093333pt;}
.y16_c00183{bottom:196.293333pt;}
.y15_c00183{bottom:218.693333pt;}
.y14_c00183{bottom:239.360000pt;}
.y13_c00183{bottom:260.693333pt;}
.y12_c00183{bottom:282.026667pt;}
.y11_c00183{bottom:304.560000pt;}
.y10_c00183{bottom:325.760000pt;}
.yf_c00183{bottom:348.026667pt;}
.ye_c00183{bottom:369.893333pt;}
.yd_c00183{bottom:391.493333pt;}
.yc_c00183{bottom:414.026667pt;}
.yb_c00183{bottom:435.093333pt;}
.ya_c00183{bottom:457.493333pt;}
.y9_c00183{bottom:479.360000pt;}
.y8_c00183{bottom:500.693333pt;}
.y7_c00183{bottom:522.693333pt;}
.y6_c00183{bottom:544.826667pt;}
.y5_c00183{bottom:566.960000pt;}
.y4_c00183{bottom:588.560000pt;}
.y3_c00183{bottom:610.160000pt;}
.y2_c00183{bottom:632.693333pt;}
.y1_c00183{bottom:655.226667pt;}
.h4_c00183{height:11.733399pt;}
.h5_c00183{height:38.937500pt;}
.h3_c00183{height:81.031250pt;}
.h2_c00183{height:97.912760pt;}
.h0_c00183{height:701.066667pt;}
.h1_c00183{height:701.333333pt;}
.w1_c00183{width:93.222667pt;}
.w0_c00183{width:423.333333pt;}
.x0_c00183{left:0.000000pt;}
.x7_c00183{left:32.666667pt;}
.x6_c00183{left:64.400000pt;}
.x5_c00183{left:65.333333pt;}
.x4_c00183{left:66.533333pt;}
.x3_c00183{left:67.466667pt;}
.x2_c00183{left:68.933333pt;}
.x1_c00183{left:168.933333pt;}
}





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

.ir_c00184:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00184{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00184;src:url('chunks/assets/font_4cc496e32430ed6677d1e2eb.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.480469;font-style:normal;font-weight:normal;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_e6474207778e62f59a7eda7b.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00184{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00184{vertical-align:0.000000px;}
.ls1_c00184{letter-spacing:0.000000px;}
.ls0_c00184{letter-spacing:3.000000px;}
.ls3_c00184{letter-spacing:6.000000px;}
.ls2_c00184{letter-spacing:84.000000px;}
.sc__c00184{text-shadow:none;}
.sc0_c00184{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00184{-webkit-text-stroke:0px transparent;}
.sc0_c00184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00184{word-spacing:-20.352000px;}
.ws1_c00184{word-spacing:0.000000px;}
._9_c00184{margin-left:-17.064000px;}
._15_c00184{margin-left:-10.872000px;}
._16_c00184{margin-left:-9.504000px;}
._17_c00184{margin-left:-7.704000px;}
._12_c00184{margin-left:-6.264000px;}
._d_c00184{margin-left:-4.680000px;}
._10_c00184{margin-left:-3.672000px;}
._c_c00184{margin-left:-2.664000px;}
._4_c00184{margin-left:-1.152000px;}
._a_c00184{width:1.224000px;}
._b_c00184{width:2.592000px;}
._e_c00184{width:4.248000px;}
._2_c00184{width:5.544000px;}
._11_c00184{width:7.272000px;}
._1_c00184{width:9.216000px;}
._3_c00184{width:10.944000px;}
._5_c00184{width:12.528000px;}
._0_c00184{width:14.472000px;}
._6_c00184{width:15.552000px;}
._f_c00184{width:18.216000px;}
._14_c00184{width:22.464000px;}
._19_c00184{width:23.688000px;}
._18_c00184{width:24.771000px;}
._8_c00184{width:28.008000px;}
._13_c00184{width:38.184000px;}
._7_c00184{width:414.072000px;}
.fc2_c00184{color:transparent;}
.fc1_c00184{color:rgb(128,128,128);}
.fc0_c00184{color:rgb(0,0,0);}
.fs2_c00184{font-size:48.000000px;}
.fs1_c00184{font-size:69.000000px;}
.fs0_c00184{font-size:72.000000px;}
.y0_c00184{bottom:0.000000px;}
.y1f_c00184{bottom:3.105000px;}
.y1e_c00184{bottom:7.228371px;}
.y1d_c00184{bottom:51.765000px;}
.y1c_c00184{bottom:78.615000px;}
.y1b_c00184{bottom:104.265000px;}
.y1a_c00184{bottom:129.915000px;}
.y19_c00184{bottom:154.965000px;}
.y18_c00184{bottom:180.015000px;}
.y17_c00184{bottom:203.865000px;}
.y16_c00184{bottom:229.965000px;}
.y15_c00184{bottom:255.615000px;}
.y14_c00184{bottom:279.765000px;}
.y13_c00184{bottom:305.115000px;}
.y12_c00184{bottom:326.415000px;}
.y11_c00184{bottom:351.315000px;}
.y10_c00184{bottom:376.065000px;}
.yf_c00184{bottom:400.665000px;}
.ye_c00184{bottom:426.015000px;}
.yd_c00184{bottom:450.915000px;}
.yc_c00184{bottom:475.965000px;}
.yb_c00184{bottom:500.565000px;}
.ya_c00184{bottom:525.465000px;}
.y9_c00184{bottom:549.915000px;}
.y8_c00184{bottom:574.815000px;}
.y7_c00184{bottom:599.715000px;}
.y6_c00184{bottom:624.465000px;}
.y5_c00184{bottom:649.365000px;}
.y4_c00184{bottom:673.965000px;}
.y3_c00184{bottom:698.415000px;}
.y2_c00184{bottom:723.315000px;}
.y1_c00184{bottom:747.915000px;}
.h3_c00184{height:13.200074px;}
.h4_c00184{height:43.804688px;}
.h2_c00184{height:91.160156px;}
.h1_c00184{height:795.750000px;}
.h0_c00184{height:795.975000px;}
.w2_c00184{width:104.875500px;}
.w1_c00184{width:544.500000px;}
.w0_c00184{width:544.575000px;}
.x0_c00184{left:0.000000px;}
.x2_c00184{left:32.400000px;}
.x3_c00184{left:33.450000px;}
.x4_c00184{left:35.100000px;}
.x5_c00184{left:36.450000px;}
.x6_c00184{left:37.800000px;}
.x7_c00184{left:39.150000px;}
.x8_c00184{left:40.200000px;}
.x9_c00184{left:41.550000px;}
.xa_c00184{left:42.600000px;}
.x1_c00184{left:139.200000px;}
.xc_c00184{left:224.101730px;}
.xb_c00184{left:399.600000px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls1_c00184{letter-spacing:0.000000pt;}
.ls0_c00184{letter-spacing:2.666667pt;}
.ls3_c00184{letter-spacing:5.333333pt;}
.ls2_c00184{letter-spacing:74.666667pt;}
.ws0_c00184{word-spacing:-18.090667pt;}
.ws1_c00184{word-spacing:0.000000pt;}
._9_c00184{margin-left:-15.168000pt;}
._15_c00184{margin-left:-9.664000pt;}
._16_c00184{margin-left:-8.448000pt;}
._17_c00184{margin-left:-6.848000pt;}
._12_c00184{margin-left:-5.568000pt;}
._d_c00184{margin-left:-4.160000pt;}
._10_c00184{margin-left:-3.264000pt;}
._c_c00184{margin-left:-2.368000pt;}
._4_c00184{margin-left:-1.024000pt;}
._a_c00184{width:1.088000pt;}
._b_c00184{width:2.304000pt;}
._e_c00184{width:3.776000pt;}
._2_c00184{width:4.928000pt;}
._11_c00184{width:6.464000pt;}
._1_c00184{width:8.192000pt;}
._3_c00184{width:9.728000pt;}
._5_c00184{width:11.136000pt;}
._0_c00184{width:12.864000pt;}
._6_c00184{width:13.824000pt;}
._f_c00184{width:16.192000pt;}
._14_c00184{width:19.968000pt;}
._19_c00184{width:21.056000pt;}
._18_c00184{width:22.018667pt;}
._8_c00184{width:24.896000pt;}
._13_c00184{width:33.941333pt;}
._7_c00184{width:368.064000pt;}
.fs2_c00184{font-size:42.666667pt;}
.fs1_c00184{font-size:61.333333pt;}
.fs0_c00184{font-size:64.000000pt;}
.y0_c00184{bottom:0.000000pt;}
.y1f_c00184{bottom:2.760000pt;}
.y1e_c00184{bottom:6.425219pt;}
.y1d_c00184{bottom:46.013333pt;}
.y1c_c00184{bottom:69.880000pt;}
.y1b_c00184{bottom:92.680000pt;}
.y1a_c00184{bottom:115.480000pt;}
.y19_c00184{bottom:137.746667pt;}
.y18_c00184{bottom:160.013333pt;}
.y17_c00184{bottom:181.213333pt;}
.y16_c00184{bottom:204.413333pt;}
.y15_c00184{bottom:227.213333pt;}
.y14_c00184{bottom:248.680000pt;}
.y13_c00184{bottom:271.213333pt;}
.y12_c00184{bottom:290.146667pt;}
.y11_c00184{bottom:312.280000pt;}
.y10_c00184{bottom:334.280000pt;}
.yf_c00184{bottom:356.146667pt;}
.ye_c00184{bottom:378.680000pt;}
.yd_c00184{bottom:400.813333pt;}
.yc_c00184{bottom:423.080000pt;}
.yb_c00184{bottom:444.946667pt;}
.ya_c00184{bottom:467.080000pt;}
.y9_c00184{bottom:488.813333pt;}
.y8_c00184{bottom:510.946667pt;}
.y7_c00184{bottom:533.080000pt;}
.y6_c00184{bottom:555.080000pt;}
.y5_c00184{bottom:577.213333pt;}
.y4_c00184{bottom:599.080000pt;}
.y3_c00184{bottom:620.813333pt;}
.y2_c00184{bottom:642.946667pt;}
.y1_c00184{bottom:664.813333pt;}
.h3_c00184{height:11.733399pt;}
.h4_c00184{height:38.937500pt;}
.h2_c00184{height:81.031250pt;}
.h1_c00184{height:707.333333pt;}
.h0_c00184{height:707.533333pt;}
.w2_c00184{width:93.222667pt;}
.w1_c00184{width:484.000000pt;}
.w0_c00184{width:484.066667pt;}
.x0_c00184{left:0.000000pt;}
.x2_c00184{left:28.800000pt;}
.x3_c00184{left:29.733333pt;}
.x4_c00184{left:31.200000pt;}
.x5_c00184{left:32.400000pt;}
.x6_c00184{left:33.600000pt;}
.x7_c00184{left:34.800000pt;}
.x8_c00184{left:35.733333pt;}
.x9_c00184{left:36.933333pt;}
.xa_c00184{left:37.866667pt;}
.x1_c00184{left:123.733333pt;}
.xc_c00184{left:199.201538pt;}
.xb_c00184{left:355.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f17b63fcaf25dffdd00d9d41.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00185;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00185;src:url('chunks/assets/font_fc7c1df68f238e3e8ca3889d.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:1.568848;font-style:normal;font-weight:normal;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_5e3236cb47eacf9c896c232e.woff2')format("woff");}.ff4_c00185{font-family:ff4_c00185;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00185{font-family:ff5_c00185;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.ls0_c00185{letter-spacing:0.000000px;}
.ls1_c00185{letter-spacing:3.000000px;}
.sc__c00185{text-shadow:none;}
.sc0_c00185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00185{-webkit-text-stroke:0px transparent;}
.sc0_c00185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00185{word-spacing:-20.352000px;}
.ws0_c00185{word-spacing:-17.352000px;}
.ws2_c00185{word-spacing:0.000000px;}
._13_c00185{margin-left:-14.760000px;}
._14_c00185{margin-left:-12.456000px;}
._10_c00185{margin-left:-11.040000px;}
._e_c00185{margin-left:-9.744000px;}
._6_c00185{margin-left:-7.992000px;}
._f_c00185{margin-left:-6.264000px;}
._3_c00185{margin-left:-4.872000px;}
._7_c00185{margin-left:-2.952000px;}
._5_c00185{margin-left:-1.152000px;}
._4_c00185{width:1.596000px;}
._1_c00185{width:3.024000px;}
._c_c00185{width:4.104000px;}
._2_c00185{width:5.124000px;}
._0_c00185{width:7.140000px;}
._d_c00185{width:8.448000px;}
._15_c00185{width:10.692000px;}
._a_c00185{width:12.792000px;}
._8_c00185{width:15.300000px;}
._9_c00185{width:18.552000px;}
._18_c00185{width:26.496000px;}
._17_c00185{width:30.720000px;}
._11_c00185{width:91.296000px;}
._12_c00185{width:160.692000px;}
._16_c00185{width:203.424000px;}
._b_c00185{width:308.880000px;}
._19_c00185{width:706.704000px;}
.fc2_c00185{color:transparent;}
.fc1_c00185{color:rgb(128,128,128);}
.fc0_c00185{color:rgb(0,0,0);}
.fs2_c00185{font-size:48.000000px;}
.fs1_c00185{font-size:72.000000px;}
.fs0_c00185{font-size:84.000000px;}
.y0_c00185{bottom:0.000000px;}
.y1f_c00185{bottom:3.105000px;}
.y1e_c00185{bottom:7.228355px;}
.y1d_c00185{bottom:49.935000px;}
.y1c_c00185{bottom:74.835000px;}
.y1b_c00185{bottom:103.935000px;}
.y1a_c00185{bottom:126.585000px;}
.y19_c00185{bottom:151.485000px;}
.y18_c00185{bottom:175.785000px;}
.y17_c00185{bottom:201.735000px;}
.y16_c00185{bottom:226.785000px;}
.y15_c00185{bottom:251.685000px;}
.y14_c00185{bottom:276.285000px;}
.y13_c00185{bottom:301.335000px;}
.y12_c00185{bottom:323.685000px;}
.y11_c00185{bottom:347.985000px;}
.y10_c00185{bottom:374.235000px;}
.yf_c00185{bottom:399.135000px;}
.ye_c00185{bottom:423.885000px;}
.yd_c00185{bottom:448.785000px;}
.yc_c00185{bottom:473.085000px;}
.yb_c00185{bottom:497.685000px;}
.ya_c00185{bottom:522.585000px;}
.y9_c00185{bottom:547.335000px;}
.y8_c00185{bottom:572.085000px;}
.y7_c00185{bottom:596.685000px;}
.y6_c00185{bottom:621.285000px;}
.y5_c00185{bottom:646.335000px;}
.y4_c00185{bottom:671.235000px;}
.y3_c00185{bottom:695.535000px;}
.y2_c00185{bottom:720.135000px;}
.y1_c00185{bottom:744.885000px;}
.h4_c00185{height:13.200074px;}
.h5_c00185{height:43.804688px;}
.h2_c00185{height:82.441406px;}
.h3_c00185{height:91.160156px;}
.h0_c00185{height:790.275000px;}
.h1_c00185{height:790.500000px;}
.w2_c00185{width:104.875500px;}
.w0_c00185{width:518.100000px;}
.w1_c00185{width:518.250000px;}
.x0_c00185{left:0.000000px;}
.x9_c00185{left:35.100000px;}
.x7_c00185{left:36.450000px;}
.x6_c00185{left:38.400000px;}
.x5_c00185{left:39.750000px;}
.xa_c00185{left:110.400000px;}
.x4_c00185{left:114.000000px;}
.x3_c00185{left:115.650000px;}
.x2_c00185{left:116.850000px;}
.xc_c00185{left:210.864258px;}
.x1_c00185{left:230.850000px;}
.x8_c00185{left:281.850000px;}
.xb_c00185{left:449.100000px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls0_c00185{letter-spacing:0.000000pt;}
.ls1_c00185{letter-spacing:2.666667pt;}
.ws1_c00185{word-spacing:-18.090667pt;}
.ws0_c00185{word-spacing:-15.424000pt;}
.ws2_c00185{word-spacing:0.000000pt;}
._13_c00185{margin-left:-13.120000pt;}
._14_c00185{margin-left:-11.072000pt;}
._10_c00185{margin-left:-9.813333pt;}
._e_c00185{margin-left:-8.661333pt;}
._6_c00185{margin-left:-7.104000pt;}
._f_c00185{margin-left:-5.568000pt;}
._3_c00185{margin-left:-4.330667pt;}
._7_c00185{margin-left:-2.624000pt;}
._5_c00185{margin-left:-1.024000pt;}
._4_c00185{width:1.418667pt;}
._1_c00185{width:2.688000pt;}
._c_c00185{width:3.648000pt;}
._2_c00185{width:4.554667pt;}
._0_c00185{width:6.346667pt;}
._d_c00185{width:7.509333pt;}
._15_c00185{width:9.504000pt;}
._a_c00185{width:11.370667pt;}
._8_c00185{width:13.600000pt;}
._9_c00185{width:16.490667pt;}
._18_c00185{width:23.552000pt;}
._17_c00185{width:27.306667pt;}
._11_c00185{width:81.152000pt;}
._12_c00185{width:142.837333pt;}
._16_c00185{width:180.821333pt;}
._b_c00185{width:274.560000pt;}
._19_c00185{width:628.181333pt;}
.fs2_c00185{font-size:42.666667pt;}
.fs1_c00185{font-size:64.000000pt;}
.fs0_c00185{font-size:74.666667pt;}
.y0_c00185{bottom:0.000000pt;}
.y1f_c00185{bottom:2.760000pt;}
.y1e_c00185{bottom:6.425204pt;}
.y1d_c00185{bottom:44.386667pt;}
.y1c_c00185{bottom:66.520000pt;}
.y1b_c00185{bottom:92.386667pt;}
.y1a_c00185{bottom:112.520000pt;}
.y19_c00185{bottom:134.653333pt;}
.y18_c00185{bottom:156.253333pt;}
.y17_c00185{bottom:179.320000pt;}
.y16_c00185{bottom:201.586667pt;}
.y15_c00185{bottom:223.720000pt;}
.y14_c00185{bottom:245.586667pt;}
.y13_c00185{bottom:267.853333pt;}
.y12_c00185{bottom:287.720000pt;}
.y11_c00185{bottom:309.320000pt;}
.y10_c00185{bottom:332.653333pt;}
.yf_c00185{bottom:354.786667pt;}
.ye_c00185{bottom:376.786667pt;}
.yd_c00185{bottom:398.920000pt;}
.yc_c00185{bottom:420.520000pt;}
.yb_c00185{bottom:442.386667pt;}
.ya_c00185{bottom:464.520000pt;}
.y9_c00185{bottom:486.520000pt;}
.y8_c00185{bottom:508.520000pt;}
.y7_c00185{bottom:530.386667pt;}
.y6_c00185{bottom:552.253333pt;}
.y5_c00185{bottom:574.520000pt;}
.y4_c00185{bottom:596.653333pt;}
.y3_c00185{bottom:618.253333pt;}
.y2_c00185{bottom:640.120000pt;}
.y1_c00185{bottom:662.120000pt;}
.h4_c00185{height:11.733399pt;}
.h5_c00185{height:38.937500pt;}
.h2_c00185{height:73.281250pt;}
.h3_c00185{height:81.031250pt;}
.h0_c00185{height:702.466667pt;}
.h1_c00185{height:702.666667pt;}
.w2_c00185{width:93.222667pt;}
.w0_c00185{width:460.533333pt;}
.w1_c00185{width:460.666667pt;}
.x0_c00185{left:0.000000pt;}
.x9_c00185{left:31.200000pt;}
.x7_c00185{left:32.400000pt;}
.x6_c00185{left:34.133333pt;}
.x5_c00185{left:35.333333pt;}
.xa_c00185{left:98.133333pt;}
.x4_c00185{left:101.333333pt;}
.x3_c00185{left:102.800000pt;}
.x2_c00185{left:103.866667pt;}
.xc_c00185{left:187.434896pt;}
.x1_c00185{left:205.200000pt;}
.x8_c00185{left:250.533333pt;}
.xb_c00185{left:399.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_58a0e9f722c75e3432e1c2f9.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.480469;font-style:normal;font-weight:normal;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_005df019fb8f53ce2ffbdb9f.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:1.568848;font-style:normal;font-weight:normal;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_37b60991eb0c4dfae188ea6c.woff2')format("woff");}.ff3_c00186{font-family:ff3_c00186;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00186{font-family:ff4_c00186;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00186{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00186{vertical-align:0.000000px;}
.ls3_c00186{letter-spacing:0.000000px;}
.ls0_c00186{letter-spacing:3.000000px;}
.ls2_c00186{letter-spacing:4.788000px;}
.ls4_c00186{letter-spacing:6.000000px;}
.ls1_c00186{letter-spacing:6.312000px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00186{word-spacing:-20.352000px;}
.ws0_c00186{word-spacing:-17.352000px;}
.ws2_c00186{word-spacing:0.000000px;}
._13_c00186{margin-left:-23.472000px;}
._11_c00186{margin-left:-11.466000px;}
._10_c00186{margin-left:-9.576000px;}
._15_c00186{margin-left:-6.768000px;}
._e_c00186{margin-left:-5.328000px;}
._d_c00186{margin-left:-3.960000px;}
._b_c00186{margin-left:-2.808000px;}
._c_c00186{margin-left:-1.152000px;}
._4_c00186{width:1.224000px;}
._a_c00186{width:2.592000px;}
._6_c00186{width:4.392000px;}
._5_c00186{width:5.400000px;}
._2_c00186{width:7.128000px;}
._7_c00186{width:9.000000px;}
._9_c00186{width:10.152000px;}
._1_c00186{width:11.880000px;}
._12_c00186{width:13.392000px;}
._3_c00186{width:14.544000px;}
._17_c00186{width:16.632000px;}
._14_c00186{width:18.072000px;}
._0_c00186{width:19.584000px;}
._16_c00186{width:26.376000px;}
._f_c00186{width:34.920000px;}
._18_c00186{width:69.624000px;}
._19_c00186{width:205.272000px;}
._8_c00186{width:365.928000px;}
.fc2_c00186{color:transparent;}
.fc1_c00186{color:rgb(128,128,128);}
.fc0_c00186{color:rgb(0,0,0);}
.fs2_c00186{font-size:48.000000px;}
.fs1_c00186{font-size:63.000000px;}
.fs0_c00186{font-size:72.000000px;}
.y0_c00186{bottom:0.000000px;}
.y1f_c00186{bottom:3.105000px;}
.y1e_c00186{bottom:7.228371px;}
.y1d_c00186{bottom:47.715000px;}
.y1c_c00186{bottom:74.265000px;}
.y1b_c00186{bottom:97.965000px;}
.y1a_c00186{bottom:123.915000px;}
.y19_c00186{bottom:148.965000px;}
.y18_c00186{bottom:173.565000px;}
.y17_c00186{bottom:199.215000px;}
.y16_c00186{bottom:221.115000px;}
.y15_c00186{bottom:247.515000px;}
.y14_c00186{bottom:273.015000px;}
.y13_c00186{bottom:294.315000px;}
.y12_c00186{bottom:318.015000px;}
.y11_c00186{bottom:341.265000px;}
.y10_c00186{bottom:366.315000px;}
.yf_c00186{bottom:391.215000px;}
.ye_c00186{bottom:415.815000px;}
.yd_c00186{bottom:440.565000px;}
.yc_c00186{bottom:465.465000px;}
.yb_c00186{bottom:489.765000px;}
.ya_c00186{bottom:513.765000px;}
.y9_c00186{bottom:538.965000px;}
.y8_c00186{bottom:562.665000px;}
.y7_c00186{bottom:588.315000px;}
.y6_c00186{bottom:612.315000px;}
.y5_c00186{bottom:636.615000px;}
.y4_c00186{bottom:660.915000px;}
.y3_c00186{bottom:685.815000px;}
.y2_c00186{bottom:710.415000px;}
.y1_c00186{bottom:736.515000px;}
.h3_c00186{height:13.200074px;}
.h4_c00186{height:43.804688px;}
.h2_c00186{height:91.160156px;}
.h1_c00186{height:783.750000px;}
.h0_c00186{height:783.825000px;}
.w2_c00186{width:104.875500px;}
.w1_c00186{width:540.000000px;}
.w0_c00186{width:540.300000px;}
.x0_c00186{left:0.000000px;}
.x8_c00186{left:17.850000px;}
.x7_c00186{left:19.650000px;}
.x6_c00186{left:21.000000px;}
.x5_c00186{left:23.700000px;}
.x4_c00186{left:25.050000px;}
.x2_c00186{left:26.100000px;}
.x3_c00186{left:28.650000px;}
.x1_c00186{left:151.500000px;}
.xa_c00186{left:221.964249px;}
.x9_c00186{left:283.500000px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls3_c00186{letter-spacing:0.000000pt;}
.ls0_c00186{letter-spacing:2.666667pt;}
.ls2_c00186{letter-spacing:4.256000pt;}
.ls4_c00186{letter-spacing:5.333333pt;}
.ls1_c00186{letter-spacing:5.610667pt;}
.ws1_c00186{word-spacing:-18.090667pt;}
.ws0_c00186{word-spacing:-15.424000pt;}
.ws2_c00186{word-spacing:0.000000pt;}
._13_c00186{margin-left:-20.864000pt;}
._11_c00186{margin-left:-10.192000pt;}
._10_c00186{margin-left:-8.512000pt;}
._15_c00186{margin-left:-6.016000pt;}
._e_c00186{margin-left:-4.736000pt;}
._d_c00186{margin-left:-3.520000pt;}
._b_c00186{margin-left:-2.496000pt;}
._c_c00186{margin-left:-1.024000pt;}
._4_c00186{width:1.088000pt;}
._a_c00186{width:2.304000pt;}
._6_c00186{width:3.904000pt;}
._5_c00186{width:4.800000pt;}
._2_c00186{width:6.336000pt;}
._7_c00186{width:8.000000pt;}
._9_c00186{width:9.024000pt;}
._1_c00186{width:10.560000pt;}
._12_c00186{width:11.904000pt;}
._3_c00186{width:12.928000pt;}
._17_c00186{width:14.784000pt;}
._14_c00186{width:16.064000pt;}
._0_c00186{width:17.408000pt;}
._16_c00186{width:23.445333pt;}
._f_c00186{width:31.040000pt;}
._18_c00186{width:61.888000pt;}
._19_c00186{width:182.464000pt;}
._8_c00186{width:325.269333pt;}
.fs2_c00186{font-size:42.666667pt;}
.fs1_c00186{font-size:56.000000pt;}
.fs0_c00186{font-size:64.000000pt;}
.y0_c00186{bottom:0.000000pt;}
.y1f_c00186{bottom:2.760000pt;}
.y1e_c00186{bottom:6.425219pt;}
.y1d_c00186{bottom:42.413333pt;}
.y1c_c00186{bottom:66.013333pt;}
.y1b_c00186{bottom:87.080000pt;}
.y1a_c00186{bottom:110.146667pt;}
.y19_c00186{bottom:132.413333pt;}
.y18_c00186{bottom:154.280000pt;}
.y17_c00186{bottom:177.080000pt;}
.y16_c00186{bottom:196.546667pt;}
.y15_c00186{bottom:220.013333pt;}
.y14_c00186{bottom:242.680000pt;}
.y13_c00186{bottom:261.613333pt;}
.y12_c00186{bottom:282.680000pt;}
.y11_c00186{bottom:303.346667pt;}
.y10_c00186{bottom:325.613333pt;}
.yf_c00186{bottom:347.746667pt;}
.ye_c00186{bottom:369.613333pt;}
.yd_c00186{bottom:391.613333pt;}
.yc_c00186{bottom:413.746667pt;}
.yb_c00186{bottom:435.346667pt;}
.ya_c00186{bottom:456.680000pt;}
.y9_c00186{bottom:479.080000pt;}
.y8_c00186{bottom:500.146667pt;}
.y7_c00186{bottom:522.946667pt;}
.y6_c00186{bottom:544.280000pt;}
.y5_c00186{bottom:565.880000pt;}
.y4_c00186{bottom:587.480000pt;}
.y3_c00186{bottom:609.613333pt;}
.y2_c00186{bottom:631.480000pt;}
.y1_c00186{bottom:654.680000pt;}
.h3_c00186{height:11.733399pt;}
.h4_c00186{height:38.937500pt;}
.h2_c00186{height:81.031250pt;}
.h1_c00186{height:696.666667pt;}
.h0_c00186{height:696.733333pt;}
.w2_c00186{width:93.222667pt;}
.w1_c00186{width:480.000000pt;}
.w0_c00186{width:480.266667pt;}
.x0_c00186{left:0.000000pt;}
.x8_c00186{left:15.866667pt;}
.x7_c00186{left:17.466667pt;}
.x6_c00186{left:18.666667pt;}
.x5_c00186{left:21.066667pt;}
.x4_c00186{left:22.266667pt;}
.x2_c00186{left:23.200000pt;}
.x3_c00186{left:25.466667pt;}
.x1_c00186{left:134.666667pt;}
.xa_c00186{left:197.301554pt;}
.x9_c00186{left:252.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_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_9cd7705113dd40ca351c1d44.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.480469;font-style:normal;font-weight:normal;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_e7ca7cc57737cbfd9c3ef6fb.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00187{font-family:ff3_c00187;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00187{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00187{vertical-align:0.000000px;}
.ls1_c00187{letter-spacing:-3.000000px;}
.ls3_c00187{letter-spacing:0.000000px;}
.ls0_c00187{letter-spacing:3.000000px;}
.ls2_c00187{letter-spacing:6.000000px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00187{word-spacing:-20.352000px;}
.ws1_c00187{word-spacing:0.000000px;}
._8_c00187{margin-left:-9.894000px;}
._11_c00187{margin-left:-8.718000px;}
._3_c00187{margin-left:-6.840000px;}
._6_c00187{margin-left:-5.370000px;}
._c_c00187{margin-left:-4.344000px;}
._2_c00187{margin-left:-3.168000px;}
._1_c00187{margin-left:-1.368000px;}
._0_c00187{width:1.914000px;}
._4_c00187{width:3.126000px;}
._5_c00187{width:4.524000px;}
._9_c00187{width:5.976000px;}
._a_c00187{width:8.046000px;}
._f_c00187{width:9.144000px;}
._10_c00187{width:10.338000px;}
._7_c00187{width:11.448000px;}
._e_c00187{width:12.900000px;}
._d_c00187{width:14.058000px;}
._b_c00187{width:15.792000px;}
._12_c00187{width:17.772000px;}
.fc2_c00187{color:transparent;}
.fc1_c00187{color:rgb(128,128,128);}
.fc0_c00187{color:rgb(0,0,0);}
.fs4_c00187{font-size:48.000000px;}
.fs2_c00187{font-size:66.000000px;}
.fs3_c00187{font-size:69.000000px;}
.fs1_c00187{font-size:72.000000px;}
.fs0_c00187{font-size:87.000000px;}
.y0_c00187{bottom:0.000000px;}
.y1f_c00187{bottom:3.105000px;}
.y1e_c00187{bottom:7.228369px;}
.y1d_c00187{bottom:58.320000px;}
.y1c_c00187{bottom:83.970000px;}
.y1b_c00187{bottom:107.970000px;}
.y1a_c00187{bottom:133.320000px;}
.y19_c00187{bottom:158.520000px;}
.y18_c00187{bottom:184.320000px;}
.y17_c00187{bottom:208.170000px;}
.y16_c00187{bottom:232.470000px;}
.y15_c00187{bottom:257.820000px;}
.y14_c00187{bottom:281.520000px;}
.y13_c00187{bottom:306.120000px;}
.y12_c00187{bottom:330.720000px;}
.y11_c00187{bottom:354.270000px;}
.y10_c00187{bottom:379.620000px;}
.yf_c00187{bottom:404.220000px;}
.ye_c00187{bottom:428.670000px;}
.yd_c00187{bottom:452.970000px;}
.yc_c00187{bottom:476.820000px;}
.yb_c00187{bottom:501.570000px;}
.ya_c00187{bottom:525.720000px;}
.y9_c00187{bottom:549.720000px;}
.y8_c00187{bottom:574.770000px;}
.y7_c00187{bottom:598.620000px;}
.y6_c00187{bottom:623.070000px;}
.y5_c00187{bottom:647.670000px;}
.y4_c00187{bottom:672.270000px;}
.y3_c00187{bottom:696.270000px;}
.y2_c00187{bottom:720.870000px;}
.y1_c00187{bottom:746.520000px;}
.h5_c00187{height:13.200073px;}
.h6_c00187{height:43.804688px;}
.h4_c00187{height:83.563477px;}
.h3_c00187{height:91.160156px;}
.h2_c00187{height:101.825684px;}
.h1_c00187{height:785.250000px;}
.h0_c00187{height:785.400000px;}
.w2_c00187{width:104.875500px;}
.w0_c00187{width:513.525000px;}
.w1_c00187{width:513.750000px;}
.x0_c00187{left:0.000000px;}
.x2_c00187{left:108.900000px;}
.x3_c00187{left:109.950000px;}
.x4_c00187{left:111.000000px;}
.x5_c00187{left:112.050000px;}
.x6_c00187{left:113.700000px;}
.x7_c00187{left:115.650000px;}
.x8_c00187{left:117.150000px;}
.xa_c00187{left:208.576767px;}
.x1_c00187{left:228.600000px;}
.x9_c00187{left:433.950000px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls1_c00187{letter-spacing:-2.666667pt;}
.ls3_c00187{letter-spacing:0.000000pt;}
.ls0_c00187{letter-spacing:2.666667pt;}
.ls2_c00187{letter-spacing:5.333333pt;}
.ws0_c00187{word-spacing:-18.090667pt;}
.ws1_c00187{word-spacing:0.000000pt;}
._8_c00187{margin-left:-8.794667pt;}
._11_c00187{margin-left:-7.749333pt;}
._3_c00187{margin-left:-6.080000pt;}
._6_c00187{margin-left:-4.773333pt;}
._c_c00187{margin-left:-3.861333pt;}
._2_c00187{margin-left:-2.816000pt;}
._1_c00187{margin-left:-1.216000pt;}
._0_c00187{width:1.701333pt;}
._4_c00187{width:2.778667pt;}
._5_c00187{width:4.021333pt;}
._9_c00187{width:5.312000pt;}
._a_c00187{width:7.152000pt;}
._f_c00187{width:8.128000pt;}
._10_c00187{width:9.189333pt;}
._7_c00187{width:10.176000pt;}
._e_c00187{width:11.466667pt;}
._d_c00187{width:12.496000pt;}
._b_c00187{width:14.037333pt;}
._12_c00187{width:15.797333pt;}
.fs4_c00187{font-size:42.666667pt;}
.fs2_c00187{font-size:58.666667pt;}
.fs3_c00187{font-size:61.333333pt;}
.fs1_c00187{font-size:64.000000pt;}
.fs0_c00187{font-size:77.333333pt;}
.y0_c00187{bottom:0.000000pt;}
.y1f_c00187{bottom:2.760000pt;}
.y1e_c00187{bottom:6.425217pt;}
.y1d_c00187{bottom:51.840000pt;}
.y1c_c00187{bottom:74.640000pt;}
.y1b_c00187{bottom:95.973333pt;}
.y1a_c00187{bottom:118.506667pt;}
.y19_c00187{bottom:140.906667pt;}
.y18_c00187{bottom:163.840000pt;}
.y17_c00187{bottom:185.040000pt;}
.y16_c00187{bottom:206.640000pt;}
.y15_c00187{bottom:229.173333pt;}
.y14_c00187{bottom:250.240000pt;}
.y13_c00187{bottom:272.106667pt;}
.y12_c00187{bottom:293.973333pt;}
.y11_c00187{bottom:314.906667pt;}
.y10_c00187{bottom:337.440000pt;}
.yf_c00187{bottom:359.306667pt;}
.ye_c00187{bottom:381.040000pt;}
.yd_c00187{bottom:402.640000pt;}
.yc_c00187{bottom:423.840000pt;}
.yb_c00187{bottom:445.840000pt;}
.ya_c00187{bottom:467.306667pt;}
.y9_c00187{bottom:488.640000pt;}
.y8_c00187{bottom:510.906667pt;}
.y7_c00187{bottom:532.106667pt;}
.y6_c00187{bottom:553.840000pt;}
.y5_c00187{bottom:575.706667pt;}
.y4_c00187{bottom:597.573333pt;}
.y3_c00187{bottom:618.906667pt;}
.y2_c00187{bottom:640.773333pt;}
.y1_c00187{bottom:663.573333pt;}
.h5_c00187{height:11.733399pt;}
.h6_c00187{height:38.937500pt;}
.h4_c00187{height:74.278646pt;}
.h3_c00187{height:81.031250pt;}
.h2_c00187{height:90.511719pt;}
.h1_c00187{height:698.000000pt;}
.h0_c00187{height:698.133333pt;}
.w2_c00187{width:93.222667pt;}
.w0_c00187{width:456.466667pt;}
.w1_c00187{width:456.666667pt;}
.x0_c00187{left:0.000000pt;}
.x2_c00187{left:96.800000pt;}
.x3_c00187{left:97.733333pt;}
.x4_c00187{left:98.666667pt;}
.x5_c00187{left:99.600000pt;}
.x6_c00187{left:101.066667pt;}
.x7_c00187{left:102.800000pt;}
.x8_c00187{left:104.133333pt;}
.xa_c00187{left:185.401571pt;}
.x1_c00187{left:203.200000pt;}
.x9_c00187{left:385.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3ebb231d0e2784c2ecd37937.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.480469;font-style:normal;font-weight:normal;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_7ae71c8cf641fc4f720f0d4d.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:1.568848;font-style:normal;font-weight:normal;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_038728993a4d4ca315a0e69d.woff2')format("woff");}.ff3_c00188{font-family:ff3_c00188;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00188{font-family:ff4_c00188;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00188{vertical-align:0.000000px;}
.ls1_c00188{letter-spacing:0.000000px;}
.ls2_c00188{letter-spacing:3.000000px;}
.ls3_c00188{letter-spacing:6.000000px;}
.ls0_c00188{letter-spacing:21.588000px;}
.sc__c00188{text-shadow:none;}
.sc0_c00188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00188{-webkit-text-stroke:0px transparent;}
.sc0_c00188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00188{word-spacing:-17.352000px;}
.ws1_c00188{word-spacing:0.000000px;}
._17_c00188{margin-left:-11.088000px;}
._11_c00188{margin-left:-7.344000px;}
._a_c00188{margin-left:-5.256000px;}
._b_c00188{margin-left:-4.176000px;}
._d_c00188{margin-left:-3.168000px;}
._c_c00188{margin-left:-2.088000px;}
._e_c00188{margin-left:-1.008000px;}
._9_c00188{width:1.152000px;}
._8_c00188{width:2.952000px;}
._2_c00188{width:4.104000px;}
._6_c00188{width:5.400000px;}
._4_c00188{width:6.552000px;}
._10_c00188{width:7.560000px;}
._1_c00188{width:8.928000px;}
._5_c00188{width:10.656000px;}
._3_c00188{width:12.528000px;}
._0_c00188{width:14.184000px;}
._f_c00188{width:16.272000px;}
._16_c00188{width:17.928000px;}
._14_c00188{width:19.224000px;}
._1a_c00188{width:20.520000px;}
._19_c00188{width:21.696000px;}
._13_c00188{width:23.832000px;}
._15_c00188{width:25.344000px;}
._18_c00188{width:31.248000px;}
._1b_c00188{width:37.584000px;}
._12_c00188{width:182.016000px;}
._1c_c00188{width:221.976000px;}
._7_c00188{width:326.448000px;}
.fc2_c00188{color:transparent;}
.fc1_c00188{color:rgb(128,128,128);}
.fc0_c00188{color:rgb(0,0,0);}
.fs2_c00188{font-size:48.000000px;}
.fs1_c00188{font-size:63.000000px;}
.fs0_c00188{font-size:72.000000px;}
.y0_c00188{bottom:0.000000px;}
.y1f_c00188{bottom:3.105000px;}
.y1e_c00188{bottom:7.228357px;}
.y1d_c00188{bottom:54.330000px;}
.y1c_c00188{bottom:79.680000px;}
.y1b_c00188{bottom:104.730000px;}
.y1a_c00188{bottom:130.230000px;}
.y19_c00188{bottom:154.680000px;}
.y18_c00188{bottom:179.880000px;}
.y17_c00188{bottom:204.480000px;}
.y16_c00188{bottom:229.230000px;}
.y15_c00188{bottom:253.830000px;}
.y14_c00188{bottom:278.430000px;}
.y13_c00188{bottom:302.130000px;}
.y12_c00188{bottom:324.030000px;}
.y11_c00188{bottom:347.730000px;}
.y10_c00188{bottom:371.730000px;}
.yf_c00188{bottom:396.330000px;}
.ye_c00188{bottom:420.930000px;}
.yd_c00188{bottom:445.830000px;}
.yc_c00188{bottom:470.430000px;}
.yb_c00188{bottom:496.830000px;}
.ya_c00188{bottom:520.380000px;}
.y9_c00188{bottom:544.080000px;}
.y8_c00188{bottom:568.980000px;}
.y7_c00188{bottom:593.280000px;}
.y6_c00188{bottom:618.030000px;}
.y5_c00188{bottom:642.630000px;}
.y4_c00188{bottom:666.630000px;}
.y3_c00188{bottom:691.980000px;}
.y2_c00188{bottom:715.230000px;}
.y1_c00188{bottom:741.480000px;}
.h3_c00188{height:13.200074px;}
.h4_c00188{height:43.804688px;}
.h2_c00188{height:91.160156px;}
.h0_c00188{height:800.850000px;}
.h1_c00188{height:801.000000px;}
.w2_c00188{width:104.875500px;}
.w0_c00188{width:549.450000px;}
.w1_c00188{width:549.750000px;}
.x0_c00188{left:0.000000px;}
.x2_c00188{left:51.300000px;}
.x3_c00188{left:52.350000px;}
.x4_c00188{left:54.300000px;}
.x5_c00188{left:56.400000px;}
.x6_c00188{left:58.050000px;}
.x1_c00188{left:175.500000px;}
.x8_c00188{left:226.539230px;}
.x7_c00188{left:318.900000px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.ls1_c00188{letter-spacing:0.000000pt;}
.ls2_c00188{letter-spacing:2.666667pt;}
.ls3_c00188{letter-spacing:5.333333pt;}
.ls0_c00188{letter-spacing:19.189333pt;}
.ws0_c00188{word-spacing:-15.424000pt;}
.ws1_c00188{word-spacing:0.000000pt;}
._17_c00188{margin-left:-9.856000pt;}
._11_c00188{margin-left:-6.528000pt;}
._a_c00188{margin-left:-4.672000pt;}
._b_c00188{margin-left:-3.712000pt;}
._d_c00188{margin-left:-2.816000pt;}
._c_c00188{margin-left:-1.856000pt;}
._e_c00188{margin-left:-0.896000pt;}
._9_c00188{width:1.024000pt;}
._8_c00188{width:2.624000pt;}
._2_c00188{width:3.648000pt;}
._6_c00188{width:4.800000pt;}
._4_c00188{width:5.824000pt;}
._10_c00188{width:6.720000pt;}
._1_c00188{width:7.936000pt;}
._5_c00188{width:9.472000pt;}
._3_c00188{width:11.136000pt;}
._0_c00188{width:12.608000pt;}
._f_c00188{width:14.464000pt;}
._16_c00188{width:15.936000pt;}
._14_c00188{width:17.088000pt;}
._1a_c00188{width:18.240000pt;}
._19_c00188{width:19.285333pt;}
._13_c00188{width:21.184000pt;}
._15_c00188{width:22.528000pt;}
._18_c00188{width:27.776000pt;}
._1b_c00188{width:33.408000pt;}
._12_c00188{width:161.792000pt;}
._1c_c00188{width:197.312000pt;}
._7_c00188{width:290.176000pt;}
.fs2_c00188{font-size:42.666667pt;}
.fs1_c00188{font-size:56.000000pt;}
.fs0_c00188{font-size:64.000000pt;}
.y0_c00188{bottom:0.000000pt;}
.y1f_c00188{bottom:2.760000pt;}
.y1e_c00188{bottom:6.425206pt;}
.y1d_c00188{bottom:48.293333pt;}
.y1c_c00188{bottom:70.826667pt;}
.y1b_c00188{bottom:93.093333pt;}
.y1a_c00188{bottom:115.760000pt;}
.y19_c00188{bottom:137.493333pt;}
.y18_c00188{bottom:159.893333pt;}
.y17_c00188{bottom:181.760000pt;}
.y16_c00188{bottom:203.760000pt;}
.y15_c00188{bottom:225.626667pt;}
.y14_c00188{bottom:247.493333pt;}
.y13_c00188{bottom:268.560000pt;}
.y12_c00188{bottom:288.026667pt;}
.y11_c00188{bottom:309.093333pt;}
.y10_c00188{bottom:330.426667pt;}
.yf_c00188{bottom:352.293333pt;}
.ye_c00188{bottom:374.160000pt;}
.yd_c00188{bottom:396.293333pt;}
.yc_c00188{bottom:418.160000pt;}
.yb_c00188{bottom:441.626667pt;}
.ya_c00188{bottom:462.560000pt;}
.y9_c00188{bottom:483.626667pt;}
.y8_c00188{bottom:505.760000pt;}
.y7_c00188{bottom:527.360000pt;}
.y6_c00188{bottom:549.360000pt;}
.y5_c00188{bottom:571.226667pt;}
.y4_c00188{bottom:592.560000pt;}
.y3_c00188{bottom:615.093333pt;}
.y2_c00188{bottom:635.760000pt;}
.y1_c00188{bottom:659.093333pt;}
.h3_c00188{height:11.733399pt;}
.h4_c00188{height:38.937500pt;}
.h2_c00188{height:81.031250pt;}
.h0_c00188{height:711.866667pt;}
.h1_c00188{height:712.000000pt;}
.w2_c00188{width:93.222667pt;}
.w0_c00188{width:488.400000pt;}
.w1_c00188{width:488.666667pt;}
.x0_c00188{left:0.000000pt;}
.x2_c00188{left:45.600000pt;}
.x3_c00188{left:46.533333pt;}
.x4_c00188{left:48.266667pt;}
.x5_c00188{left:50.133333pt;}
.x6_c00188{left:51.600000pt;}
.x1_c00188{left:156.000000pt;}
.x8_c00188{left:201.368205pt;}
.x7_c00188{left:283.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_954671bfdd3cb28116a2270c.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.480469;font-style:normal;font-weight:normal;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_5de440ed75d5262b81538a46.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:1.568848;font-style:normal;font-weight:normal;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_9c3543824efc5c4bcdb85313.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00189;src:url('chunks/assets/font_647338a409b48b06af6068ef.woff2')format("woff");}.ff4_c00189{font-family:ff4_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00189;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00189{font-family:ff5_c00189;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00189{vertical-align:0.000000px;}
.ls2_c00189{letter-spacing:-3.000000px;}
.ls3_c00189{letter-spacing:0.000000px;}
.ls1_c00189{letter-spacing:3.000000px;}
.ls0_c00189{letter-spacing:4.248000px;}
.sc__c00189{text-shadow:none;}
.sc0_c00189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00189{-webkit-text-stroke:0px transparent;}
.sc0_c00189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00189{word-spacing:-36.000000px;}
.ws2_c00189{word-spacing:-20.352000px;}
.ws1_c00189{word-spacing:-17.352000px;}
.ws3_c00189{word-spacing:0.000000px;}
._4_c00189{margin-left:-14.703000px;}
._f_c00189{margin-left:-11.553000px;}
._c_c00189{margin-left:-10.422000px;}
._d_c00189{margin-left:-7.692000px;}
._7_c00189{margin-left:-6.612000px;}
._5_c00189{margin-left:-5.058000px;}
._2_c00189{margin-left:-4.002000px;}
._3_c00189{margin-left:-2.001000px;}
._0_c00189{width:1.131000px;}
._1_c00189{width:2.262000px;}
._8_c00189{width:3.270000px;}
._9_c00189{width:4.776000px;}
._a_c00189{width:6.780000px;}
._b_c00189{width:7.794000px;}
._11_c00189{width:9.177000px;}
._19_c00189{width:10.446000px;}
._10_c00189{width:11.511000px;}
._15_c00189{width:12.531000px;}
._e_c00189{width:13.800000px;}
._6_c00189{width:16.182000px;}
._18_c00189{width:17.286000px;}
._16_c00189{width:18.696000px;}
._1a_c00189{width:20.235000px;}
._13_c00189{width:21.867000px;}
._1b_c00189{width:23.241000px;}
._12_c00189{width:24.681000px;}
._17_c00189{width:26.808000px;}
._14_c00189{width:38.508000px;}
.fc2_c00189{color:transparent;}
.fc1_c00189{color:rgb(128,128,128);}
.fc0_c00189{color:rgb(0,0,0);}
.fs3_c00189{font-size:48.000000px;}
.fs2_c00189{font-size:57.000000px;}
.fs1_c00189{font-size:72.000000px;}
.fs0_c00189{font-size:87.000000px;}
.y0_c00189{bottom:0.000000px;}
.y1f_c00189{bottom:3.105000px;}
.y1e_c00189{bottom:7.228369px;}
.y1d_c00189{bottom:50.220000px;}
.y1c_c00189{bottom:74.820000px;}
.y1b_c00189{bottom:100.170000px;}
.y1a_c00189{bottom:124.920000px;}
.y19_c00189{bottom:150.420000px;}
.y18_c00189{bottom:175.470000px;}
.y17_c00189{bottom:200.070000px;}
.y16_c00189{bottom:224.820000px;}
.y15_c00189{bottom:249.420000px;}
.y14_c00189{bottom:273.720000px;}
.y13_c00189{bottom:298.020000px;}
.y12_c00189{bottom:322.620000px;}
.y11_c00189{bottom:346.170000px;}
.y10_c00189{bottom:370.620000px;}
.yf_c00189{bottom:395.520000px;}
.ye_c00189{bottom:419.820000px;}
.yd_c00189{bottom:444.120000px;}
.yc_c00189{bottom:468.120000px;}
.yb_c00189{bottom:492.120000px;}
.ya_c00189{bottom:517.020000px;}
.y9_c00189{bottom:541.320000px;}
.y8_c00189{bottom:565.320000px;}
.y7_c00189{bottom:590.220000px;}
.y6_c00189{bottom:614.520000px;}
.y5_c00189{bottom:639.120000px;}
.y4_c00189{bottom:663.870000px;}
.y3_c00189{bottom:688.170000px;}
.y2_c00189{bottom:712.020000px;}
.y1_c00189{bottom:738.120000px;}
.h5_c00189{height:13.200073px;}
.h6_c00189{height:43.804688px;}
.h4_c00189{height:55.942383px;}
.h3_c00189{height:91.160156px;}
.h2_c00189{height:110.151855px;}
.h1_c00189{height:790.500000px;}
.h0_c00189{height:790.800000px;}
.w2_c00189{width:104.875500px;}
.w1_c00189{width:513.750000px;}
.w0_c00189{width:513.825000px;}
.x0_c00189{left:0.000000px;}
.x2_c00189{left:100.350000px;}
.x3_c00189{left:101.550000px;}
.x6_c00189{left:102.600000px;}
.x7_c00189{left:103.950000px;}
.x4_c00189{left:106.350000px;}
.x5_c00189{left:108.900000px;}
.x9_c00189{left:208.726730px;}
.x1_c00189{left:211.200000px;}
.x8_c00189{left:441.150000px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls2_c00189{letter-spacing:-2.666667pt;}
.ls3_c00189{letter-spacing:0.000000pt;}
.ls1_c00189{letter-spacing:2.666667pt;}
.ls0_c00189{letter-spacing:3.776000pt;}
.ws0_c00189{word-spacing:-32.000000pt;}
.ws2_c00189{word-spacing:-18.090667pt;}
.ws1_c00189{word-spacing:-15.424000pt;}
.ws3_c00189{word-spacing:0.000000pt;}
._4_c00189{margin-left:-13.069333pt;}
._f_c00189{margin-left:-10.269333pt;}
._c_c00189{margin-left:-9.264000pt;}
._d_c00189{margin-left:-6.837333pt;}
._7_c00189{margin-left:-5.877333pt;}
._5_c00189{margin-left:-4.496000pt;}
._2_c00189{margin-left:-3.557333pt;}
._3_c00189{margin-left:-1.778667pt;}
._0_c00189{width:1.005333pt;}
._1_c00189{width:2.010667pt;}
._8_c00189{width:2.906667pt;}
._9_c00189{width:4.245333pt;}
._a_c00189{width:6.026667pt;}
._b_c00189{width:6.928000pt;}
._11_c00189{width:8.157333pt;}
._19_c00189{width:9.285333pt;}
._10_c00189{width:10.232000pt;}
._15_c00189{width:11.138667pt;}
._e_c00189{width:12.266667pt;}
._6_c00189{width:14.384000pt;}
._18_c00189{width:15.365333pt;}
._16_c00189{width:16.618667pt;}
._1a_c00189{width:17.986667pt;}
._13_c00189{width:19.437333pt;}
._1b_c00189{width:20.658667pt;}
._12_c00189{width:21.938667pt;}
._17_c00189{width:23.829333pt;}
._14_c00189{width:34.229333pt;}
.fs3_c00189{font-size:42.666667pt;}
.fs2_c00189{font-size:50.666667pt;}
.fs1_c00189{font-size:64.000000pt;}
.fs0_c00189{font-size:77.333333pt;}
.y0_c00189{bottom:0.000000pt;}
.y1f_c00189{bottom:2.760000pt;}
.y1e_c00189{bottom:6.425217pt;}
.y1d_c00189{bottom:44.640000pt;}
.y1c_c00189{bottom:66.506667pt;}
.y1b_c00189{bottom:89.040000pt;}
.y1a_c00189{bottom:111.040000pt;}
.y19_c00189{bottom:133.706667pt;}
.y18_c00189{bottom:155.973333pt;}
.y17_c00189{bottom:177.840000pt;}
.y16_c00189{bottom:199.840000pt;}
.y15_c00189{bottom:221.706667pt;}
.y14_c00189{bottom:243.306667pt;}
.y13_c00189{bottom:264.906667pt;}
.y12_c00189{bottom:286.773333pt;}
.y11_c00189{bottom:307.706667pt;}
.y10_c00189{bottom:329.440000pt;}
.yf_c00189{bottom:351.573333pt;}
.ye_c00189{bottom:373.173333pt;}
.yd_c00189{bottom:394.773333pt;}
.yc_c00189{bottom:416.106667pt;}
.yb_c00189{bottom:437.440000pt;}
.ya_c00189{bottom:459.573333pt;}
.y9_c00189{bottom:481.173333pt;}
.y8_c00189{bottom:502.506667pt;}
.y7_c00189{bottom:524.640000pt;}
.y6_c00189{bottom:546.240000pt;}
.y5_c00189{bottom:568.106667pt;}
.y4_c00189{bottom:590.106667pt;}
.y3_c00189{bottom:611.706667pt;}
.y2_c00189{bottom:632.906667pt;}
.y1_c00189{bottom:656.106667pt;}
.h5_c00189{height:11.733399pt;}
.h6_c00189{height:38.937500pt;}
.h4_c00189{height:49.726562pt;}
.h3_c00189{height:81.031250pt;}
.h2_c00189{height:97.912760pt;}
.h1_c00189{height:702.666667pt;}
.h0_c00189{height:702.933333pt;}
.w2_c00189{width:93.222667pt;}
.w1_c00189{width:456.666667pt;}
.w0_c00189{width:456.733333pt;}
.x0_c00189{left:0.000000pt;}
.x2_c00189{left:89.200000pt;}
.x3_c00189{left:90.266667pt;}
.x6_c00189{left:91.200000pt;}
.x7_c00189{left:92.400000pt;}
.x4_c00189{left:94.533333pt;}
.x5_c00189{left:96.800000pt;}
.x9_c00189{left:185.534871pt;}
.x1_c00189{left:187.733333pt;}
.x8_c00189{left:392.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c43e7fc35b6241fc8a651b5f.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.480469;font-style:normal;font-weight:normal;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_be4d57160226713ef8fff8cd.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00190{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00190{vertical-align:0.000000px;}
.ls1_c00190{letter-spacing:0.000000px;}
.ls0_c00190{letter-spacing:3.000000px;}
.sc__c00190{text-shadow:none;}
.sc0_c00190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00190{-webkit-text-stroke:0px transparent;}
.sc0_c00190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00190{word-spacing:-33.192000px;}
.ws1_c00190{word-spacing:0.000000px;}
._14_c00190{margin-left:-13.680000px;}
._11_c00190{margin-left:-12.528000px;}
._d_c00190{margin-left:-11.232000px;}
._f_c00190{margin-left:-7.344000px;}
._c_c00190{margin-left:-5.400000px;}
._a_c00190{margin-left:-3.816000px;}
._b_c00190{margin-left:-1.944000px;}
._8_c00190{width:1.152000px;}
._7_c00190{width:2.736000px;}
._9_c00190{width:3.816000px;}
._5_c00190{width:5.568000px;}
._2_c00190{width:6.768000px;}
._4_c00190{width:8.640000px;}
._10_c00190{width:9.936000px;}
._1_c00190{width:11.664000px;}
._3_c00190{width:13.608000px;}
._0_c00190{width:15.480000px;}
._12_c00190{width:18.720000px;}
._13_c00190{width:41.184000px;}
._15_c00190{width:178.272000px;}
._6_c00190{width:330.624000px;}
._e_c00190{width:588.408000px;}
.fc2_c00190{color:transparent;}
.fc1_c00190{color:rgb(128,128,128);}
.fc0_c00190{color:rgb(0,0,0);}
.fs1_c00190{font-size:48.000000px;}
.fs0_c00190{font-size:72.000000px;}
.y0_c00190{bottom:0.000000px;}
.y1f_c00190{bottom:3.105000px;}
.y1e_c00190{bottom:7.228357px;}
.y1d_c00190{bottom:53.730000px;}
.y1c_c00190{bottom:79.380000px;}
.y1b_c00190{bottom:105.030000px;}
.y1a_c00190{bottom:129.930000px;}
.y19_c00190{bottom:154.980000px;}
.y18_c00190{bottom:180.180000px;}
.y17_c00190{bottom:204.480000px;}
.y16_c00190{bottom:229.230000px;}
.y15_c00190{bottom:253.530000px;}
.y14_c00190{bottom:278.730000px;}
.y13_c00190{bottom:301.380000px;}
.y12_c00190{bottom:322.680000px;}
.y11_c00190{bottom:346.680000px;}
.y10_c00190{bottom:371.580000px;}
.yf_c00190{bottom:396.180000px;}
.ye_c00190{bottom:420.480000px;}
.yd_c00190{bottom:445.230000px;}
.yc_c00190{bottom:469.830000px;}
.yb_c00190{bottom:493.830000px;}
.ya_c00190{bottom:519.030000px;}
.y9_c00190{bottom:543.330000px;}
.y8_c00190{bottom:567.330000px;}
.y7_c00190{bottom:591.930000px;}
.y6_c00190{bottom:616.380000px;}
.y5_c00190{bottom:640.980000px;}
.y4_c00190{bottom:665.280000px;}
.y3_c00190{bottom:689.880000px;}
.y2_c00190{bottom:714.180000px;}
.y1_c00190{bottom:739.530000px;}
.h3_c00190{height:13.200074px;}
.h4_c00190{height:43.804688px;}
.h2_c00190{height:91.160156px;}
.h0_c00190{height:788.700000px;}
.h1_c00190{height:789.000000px;}
.w2_c00190{width:104.875500px;}
.w1_c00190{width:543.000000px;}
.w0_c00190{width:543.225000px;}
.x0_c00190{left:0.000000px;}
.x5_c00190{left:21.300000px;}
.x7_c00190{left:25.350000px;}
.x6_c00190{left:27.000000px;}
.x4_c00190{left:30.750000px;}
.x3_c00190{left:32.400000px;}
.x2_c00190{left:33.750000px;}
.x1_c00190{left:157.950000px;}
.x9_c00190{left:223.426758px;}
.x8_c00190{left:259.500000px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.ls1_c00190{letter-spacing:0.000000pt;}
.ls0_c00190{letter-spacing:2.666667pt;}
.ws0_c00190{word-spacing:-29.504000pt;}
.ws1_c00190{word-spacing:0.000000pt;}
._14_c00190{margin-left:-12.160000pt;}
._11_c00190{margin-left:-11.136000pt;}
._d_c00190{margin-left:-9.984000pt;}
._f_c00190{margin-left:-6.528000pt;}
._c_c00190{margin-left:-4.800000pt;}
._a_c00190{margin-left:-3.392000pt;}
._b_c00190{margin-left:-1.728000pt;}
._8_c00190{width:1.024000pt;}
._7_c00190{width:2.432000pt;}
._9_c00190{width:3.392000pt;}
._5_c00190{width:4.949333pt;}
._2_c00190{width:6.016000pt;}
._4_c00190{width:7.680000pt;}
._10_c00190{width:8.832000pt;}
._1_c00190{width:10.368000pt;}
._3_c00190{width:12.096000pt;}
._0_c00190{width:13.760000pt;}
._12_c00190{width:16.640000pt;}
._13_c00190{width:36.608000pt;}
._15_c00190{width:158.464000pt;}
._6_c00190{width:293.888000pt;}
._e_c00190{width:523.029333pt;}
.fs1_c00190{font-size:42.666667pt;}
.fs0_c00190{font-size:64.000000pt;}
.y0_c00190{bottom:0.000000pt;}
.y1f_c00190{bottom:2.760000pt;}
.y1e_c00190{bottom:6.425206pt;}
.y1d_c00190{bottom:47.760000pt;}
.y1c_c00190{bottom:70.560000pt;}
.y1b_c00190{bottom:93.360000pt;}
.y1a_c00190{bottom:115.493333pt;}
.y19_c00190{bottom:137.760000pt;}
.y18_c00190{bottom:160.160000pt;}
.y17_c00190{bottom:181.760000pt;}
.y16_c00190{bottom:203.760000pt;}
.y15_c00190{bottom:225.360000pt;}
.y14_c00190{bottom:247.760000pt;}
.y13_c00190{bottom:267.893333pt;}
.y12_c00190{bottom:286.826667pt;}
.y11_c00190{bottom:308.160000pt;}
.y10_c00190{bottom:330.293333pt;}
.yf_c00190{bottom:352.160000pt;}
.ye_c00190{bottom:373.760000pt;}
.yd_c00190{bottom:395.760000pt;}
.yc_c00190{bottom:417.626667pt;}
.yb_c00190{bottom:438.960000pt;}
.ya_c00190{bottom:461.360000pt;}
.y9_c00190{bottom:482.960000pt;}
.y8_c00190{bottom:504.293333pt;}
.y7_c00190{bottom:526.160000pt;}
.y6_c00190{bottom:547.893333pt;}
.y5_c00190{bottom:569.760000pt;}
.y4_c00190{bottom:591.360000pt;}
.y3_c00190{bottom:613.226667pt;}
.y2_c00190{bottom:634.826667pt;}
.y1_c00190{bottom:657.360000pt;}
.h3_c00190{height:11.733399pt;}
.h4_c00190{height:38.937500pt;}
.h2_c00190{height:81.031250pt;}
.h0_c00190{height:701.066667pt;}
.h1_c00190{height:701.333333pt;}
.w2_c00190{width:93.222667pt;}
.w1_c00190{width:482.666667pt;}
.w0_c00190{width:482.866667pt;}
.x0_c00190{left:0.000000pt;}
.x5_c00190{left:18.933333pt;}
.x7_c00190{left:22.533333pt;}
.x6_c00190{left:24.000000pt;}
.x4_c00190{left:27.333333pt;}
.x3_c00190{left:28.800000pt;}
.x2_c00190{left:30.000000pt;}
.x1_c00190{left:140.400000pt;}
.x9_c00190{left:198.601563pt;}
.x8_c00190{left:230.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_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_fea712c2949b84284d3ce7eb.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.480469;font-style:normal;font-weight:normal;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_67cbe2401bc06c91a26fad9a.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:1.568848;font-style:normal;font-weight:normal;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_5e809812eadec495a93492a9.woff2')format("woff");}.ff3_c00191{font-family:ff3_c00191;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00191;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00191{font-family:ff4_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00191;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00191{font-family:ff5_c00191;line-height:1.219238;font-style: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);}
.v0_c00191{vertical-align:0.000000px;}
.ls4_c00191{letter-spacing:0.000000px;}
.ls5_c00191{letter-spacing:3.000000px;}
.ls3_c00191{letter-spacing:4.050000px;}
.ls0_c00191{letter-spacing:4.260000px;}
.ls1_c00191{letter-spacing:6.000000px;}
.ls6_c00191{letter-spacing:9.000000px;}
.ls2_c00191{letter-spacing:32.640000px;}
.sc__c00191{text-shadow:none;}
.sc0_c00191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00191{-webkit-text-stroke:0px transparent;}
.sc0_c00191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00191{word-spacing:-24.750000px;}
.ws3_c00191{word-spacing:-20.352000px;}
.ws0_c00191{word-spacing:-18.720000px;}
.ws2_c00191{word-spacing:-17.352000px;}
.ws5_c00191{word-spacing:0.000000px;}
.ws4_c00191{word-spacing:1.566000px;}
._17_c00191{margin-left:-29.208000px;}
._4_c00191{margin-left:-14.160000px;}
._18_c00191{margin-left:-10.878000px;}
._d_c00191{margin-left:-9.516000px;}
._10_c00191{margin-left:-8.388000px;}
._12_c00191{margin-left:-6.654000px;}
._13_c00191{margin-left:-5.256000px;}
._c_c00191{margin-left:-4.236000px;}
._5_c00191{margin-left:-2.460000px;}
._b_c00191{margin-left:-1.044000px;}
._6_c00191{width:1.740000px;}
._f_c00191{width:3.072000px;}
._e_c00191{width:4.308000px;}
._7_c00191{width:5.880000px;}
._9_c00191{width:7.920000px;}
._8_c00191{width:9.180000px;}
._a_c00191{width:10.500000px;}
._1_c00191{width:11.580000px;}
._3_c00191{width:12.840000px;}
._16_c00191{width:14.220000px;}
._19_c00191{width:15.666000px;}
._11_c00191{width:17.292000px;}
._15_c00191{width:18.528000px;}
._2_c00191{width:22.620000px;}
._0_c00191{width:29.460000px;}
._14_c00191{width:44.256000px;}
.fc2_c00191{color:transparent;}
.fc1_c00191{color:rgb(128,128,128);}
.fc0_c00191{color:rgb(0,0,0);}
.fs3_c00191{font-size:24.000000px;}
.fs7_c00191{font-size:48.000000px;}
.fs6_c00191{font-size:54.000000px;}
.fs0_c00191{font-size:60.000000px;}
.fs4_c00191{font-size:63.000000px;}
.fs5_c00191{font-size:66.000000px;}
.fs1_c00191{font-size:72.000000px;}
.fs2_c00191{font-size:75.000000px;}
.y0_c00191{bottom:0.000000px;}
.y1f_c00191{bottom:3.105000px;}
.y1e_c00191{bottom:7.228369px;}
.y1d_c00191{bottom:62.070000px;}
.y1c_c00191{bottom:86.070000px;}
.y1b_c00191{bottom:111.720000px;}
.y1a_c00191{bottom:137.070000px;}
.y19_c00191{bottom:161.970000px;}
.y18_c00191{bottom:187.020000px;}
.y17_c00191{bottom:212.670000px;}
.y16_c00191{bottom:236.970000px;}
.y15_c00191{bottom:261.870000px;}
.y14_c00191{bottom:285.570000px;}
.y13_c00191{bottom:310.170000px;}
.y12_c00191{bottom:333.420000px;}
.y11_c00191{bottom:358.020000px;}
.y10_c00191{bottom:383.670000px;}
.yf_c00191{bottom:407.370000px;}
.ye_c00191{bottom:431.220000px;}
.yd_c00191{bottom:456.270000px;}
.yc_c00191{bottom:481.170000px;}
.yb_c00191{bottom:504.270000px;}
.ya_c00191{bottom:529.770000px;}
.y9_c00191{bottom:552.870000px;}
.y8_c00191{bottom:577.170000px;}
.y7_c00191{bottom:601.770000px;}
.y6_c00191{bottom:626.070000px;}
.y5_c00191{bottom:650.670000px;}
.y4_c00191{bottom:674.670000px;}
.y3_c00191{bottom:699.570000px;}
.y2_c00191{bottom:724.170000px;}
.y1_c00191{bottom:749.820000px;}
.h4_c00191{height:13.200073px;}
.h5_c00191{height:43.804688px;}
.h3_c00191{height:68.370117px;}
.h1_c00191{height:75.966797px;}
.h2_c00191{height:91.160156px;}
.h0_c00191{height:800.250000px;}
.w2_c00191{width:104.875500px;}
.w1_c00191{width:505.500000px;}
.w0_c00191{width:505.725000px;}
.x0_c00191{left:0.000000px;}
.x2_c00191{left:94.500000px;}
.x4_c00191{left:95.550000px;}
.x3_c00191{left:97.200000px;}
.x5_c00191{left:98.850000px;}
.x6_c00191{left:100.500000px;}
.x7_c00191{left:101.850000px;}
.x8_c00191{left:102.900000px;}
.x9_c00191{left:104.250000px;}
.xa_c00191{left:105.750000px;}
.x1_c00191{left:203.550000px;}
.xc_c00191{left:204.676758px;}
.xb_c00191{left:449.850000px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls4_c00191{letter-spacing:0.000000pt;}
.ls5_c00191{letter-spacing:2.666667pt;}
.ls3_c00191{letter-spacing:3.600000pt;}
.ls0_c00191{letter-spacing:3.786667pt;}
.ls1_c00191{letter-spacing:5.333333pt;}
.ls6_c00191{letter-spacing:8.000000pt;}
.ls2_c00191{letter-spacing:29.013333pt;}
.ws1_c00191{word-spacing:-22.000000pt;}
.ws3_c00191{word-spacing:-18.090667pt;}
.ws0_c00191{word-spacing:-16.640000pt;}
.ws2_c00191{word-spacing:-15.424000pt;}
.ws5_c00191{word-spacing:0.000000pt;}
.ws4_c00191{word-spacing:1.392000pt;}
._17_c00191{margin-left:-25.962667pt;}
._4_c00191{margin-left:-12.586667pt;}
._18_c00191{margin-left:-9.669333pt;}
._d_c00191{margin-left:-8.458667pt;}
._10_c00191{margin-left:-7.456000pt;}
._12_c00191{margin-left:-5.914667pt;}
._13_c00191{margin-left:-4.672000pt;}
._c_c00191{margin-left:-3.765333pt;}
._5_c00191{margin-left:-2.186667pt;}
._b_c00191{margin-left:-0.928000pt;}
._6_c00191{width:1.546667pt;}
._f_c00191{width:2.730667pt;}
._e_c00191{width:3.829333pt;}
._7_c00191{width:5.226667pt;}
._9_c00191{width:7.040000pt;}
._8_c00191{width:8.160000pt;}
._a_c00191{width:9.333333pt;}
._1_c00191{width:10.293333pt;}
._3_c00191{width:11.413333pt;}
._16_c00191{width:12.640000pt;}
._19_c00191{width:13.925333pt;}
._11_c00191{width:15.370667pt;}
._15_c00191{width:16.469333pt;}
._2_c00191{width:20.106667pt;}
._0_c00191{width:26.186667pt;}
._14_c00191{width:39.338667pt;}
.fs3_c00191{font-size:21.333333pt;}
.fs7_c00191{font-size:42.666667pt;}
.fs6_c00191{font-size:48.000000pt;}
.fs0_c00191{font-size:53.333333pt;}
.fs4_c00191{font-size:56.000000pt;}
.fs5_c00191{font-size:58.666667pt;}
.fs1_c00191{font-size:64.000000pt;}
.fs2_c00191{font-size:66.666667pt;}
.y0_c00191{bottom:0.000000pt;}
.y1f_c00191{bottom:2.760000pt;}
.y1e_c00191{bottom:6.425217pt;}
.y1d_c00191{bottom:55.173333pt;}
.y1c_c00191{bottom:76.506667pt;}
.y1b_c00191{bottom:99.306667pt;}
.y1a_c00191{bottom:121.840000pt;}
.y19_c00191{bottom:143.973333pt;}
.y18_c00191{bottom:166.240000pt;}
.y17_c00191{bottom:189.040000pt;}
.y16_c00191{bottom:210.640000pt;}
.y15_c00191{bottom:232.773333pt;}
.y14_c00191{bottom:253.840000pt;}
.y13_c00191{bottom:275.706667pt;}
.y12_c00191{bottom:296.373333pt;}
.y11_c00191{bottom:318.240000pt;}
.y10_c00191{bottom:341.040000pt;}
.yf_c00191{bottom:362.106667pt;}
.ye_c00191{bottom:383.306667pt;}
.yd_c00191{bottom:405.573333pt;}
.yc_c00191{bottom:427.706667pt;}
.yb_c00191{bottom:448.240000pt;}
.ya_c00191{bottom:470.906667pt;}
.y9_c00191{bottom:491.440000pt;}
.y8_c00191{bottom:513.040000pt;}
.y7_c00191{bottom:534.906667pt;}
.y6_c00191{bottom:556.506667pt;}
.y5_c00191{bottom:578.373333pt;}
.y4_c00191{bottom:599.706667pt;}
.y3_c00191{bottom:621.840000pt;}
.y2_c00191{bottom:643.706667pt;}
.y1_c00191{bottom:666.506667pt;}
.h4_c00191{height:11.733399pt;}
.h5_c00191{height:38.937500pt;}
.h3_c00191{height:60.773438pt;}
.h1_c00191{height:67.526042pt;}
.h2_c00191{height:81.031250pt;}
.h0_c00191{height:711.333333pt;}
.w2_c00191{width:93.222667pt;}
.w1_c00191{width:449.333333pt;}
.w0_c00191{width:449.533333pt;}
.x0_c00191{left:0.000000pt;}
.x2_c00191{left:84.000000pt;}
.x4_c00191{left:84.933333pt;}
.x3_c00191{left:86.400000pt;}
.x5_c00191{left:87.866667pt;}
.x6_c00191{left:89.333333pt;}
.x7_c00191{left:90.533333pt;}
.x8_c00191{left:91.466667pt;}
.x9_c00191{left:92.666667pt;}
.xa_c00191{left:94.000000pt;}
.x1_c00191{left:180.933333pt;}
.xc_c00191{left:181.934896pt;}
.xb_c00191{left:399.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9a2fadb499e6aee0be7ab819.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00192;src:url('chunks/assets/font_23b961d0e76b2cefb65bdf97.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00192;src:url('chunks/assets/font_68f48578d1de2977d04c073c.woff2')format("woff");}.ff3_c00192{font-family:ff3_c00192;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00192;src:url('chunks/assets/font_33f57a01bd14d9eaf65f0c9c.woff2')format("woff");}.ff4_c00192{font-family:ff4_c00192;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00192;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00192{font-family:ff5_c00192;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00192{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00192{vertical-align:0.000000px;}
.ls1_c00192{letter-spacing:0.000000px;}
.ls2_c00192{letter-spacing:3.000000px;}
.ls0_c00192{letter-spacing:6.000000px;}
.sc__c00192{text-shadow:none;}
.sc0_c00192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00192{-webkit-text-stroke:0px transparent;}
.sc0_c00192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00192{word-spacing:-42.000000px;}
.ws1_c00192{word-spacing:-20.352000px;}
.ws2_c00192{word-spacing:-15.906000px;}
.ws3_c00192{word-spacing:0.000000px;}
._12_c00192{margin-left:-20.196000px;}
._14_c00192{margin-left:-16.896000px;}
._18_c00192{margin-left:-15.312000px;}
._13_c00192{margin-left:-13.530000px;}
._19_c00192{margin-left:-10.758000px;}
._15_c00192{margin-left:-9.090000px;}
._e_c00192{margin-left:-8.070000px;}
._b_c00192{margin-left:-6.930000px;}
._f_c00192{margin-left:-5.406000px;}
._a_c00192{margin-left:-3.630000px;}
._8_c00192{margin-left:-1.716000px;}
._6_c00192{width:1.056000px;}
._7_c00192{width:2.112000px;}
._2_c00192{width:3.360000px;}
._1_c00192{width:4.704000px;}
._3_c00192{width:5.964000px;}
._1b_c00192{width:6.981000px;}
._0_c00192{width:8.064000px;}
._9_c00192{width:9.588000px;}
._5_c00192{width:10.773000px;}
._16_c00192{width:12.123000px;}
._c_c00192{width:13.728000px;}
._10_c00192{width:14.817000px;}
._d_c00192{width:15.840000px;}
._1c_c00192{width:17.163000px;}
._1d_c00192{width:26.862000px;}
._17_c00192{width:32.910000px;}
._11_c00192{width:37.734000px;}
._1e_c00192{width:194.850000px;}
._4_c00192{width:353.685000px;}
._1a_c00192{width:372.306000px;}
.fc2_c00192{color:transparent;}
.fc1_c00192{color:rgb(128,128,128);}
.fc0_c00192{color:rgb(0,0,0);}
.fs6_c00192{font-size:48.000000px;}
.fs4_c00192{font-size:51.000000px;}
.fs5_c00192{font-size:57.000000px;}
.fs2_c00192{font-size:66.000000px;}
.fs3_c00192{font-size:72.000000px;}
.fs1_c00192{font-size:81.000000px;}
.fs0_c00192{font-size:84.000000px;}
.y0_c00192{bottom:0.000000px;}
.y1f_c00192{bottom:3.105000px;}
.y1e_c00192{bottom:7.228371px;}
.y1d_c00192{bottom:31.815000px;}
.y1c_c00192{bottom:56.715000px;}
.y1b_c00192{bottom:82.065000px;}
.y1a_c00192{bottom:107.115000px;}
.y19_c00192{bottom:132.315000px;}
.y18_c00192{bottom:156.915000px;}
.y17_c00192{bottom:181.215000px;}
.y16_c00192{bottom:206.865000px;}
.y15_c00192{bottom:230.865000px;}
.y14_c00192{bottom:255.465000px;}
.y13_c00192{bottom:279.165000px;}
.y12_c00192{bottom:300.465000px;}
.y11_c00192{bottom:324.015000px;}
.y10_c00192{bottom:348.765000px;}
.yf_c00192{bottom:373.965000px;}
.ye_c00192{bottom:398.265000px;}
.yd_c00192{bottom:423.615000px;}
.yc_c00192{bottom:448.215000px;}
.yb_c00192{bottom:472.965000px;}
.ya_c00192{bottom:497.265000px;}
.y9_c00192{bottom:521.565000px;}
.y8_c00192{bottom:547.215000px;}
.y7_c00192{bottom:571.365000px;}
.y6_c00192{bottom:595.665000px;}
.y5_c00192{bottom:619.965000px;}
.y4_c00192{bottom:644.415000px;}
.y3_c00192{bottom:668.715000px;}
.y2_c00192{bottom:693.315000px;}
.y1_c00192{bottom:718.515000px;}
.h5_c00192{height:13.200074px;}
.h6_c00192{height:43.804688px;}
.h2_c00192{height:82.400391px;}
.h3_c00192{height:83.563477px;}
.h4_c00192{height:91.160156px;}
.h0_c00192{height:778.425000px;}
.h1_c00192{height:778.500000px;}
.w2_c00192{width:104.875500px;}
.w0_c00192{width:531.600000px;}
.w1_c00192{width:531.750000px;}
.x0_c00192{left:0.000000px;}
.x6_c00192{left:31.500000px;}
.x2_c00192{left:36.150000px;}
.x3_c00192{left:37.200000px;}
.x5_c00192{left:38.250000px;}
.x4_c00192{left:39.450000px;}
.x1_c00192{left:152.550000px;}
.x8_c00192{left:217.614258px;}
.x7_c00192{left:304.050000px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls1_c00192{letter-spacing:0.000000pt;}
.ls2_c00192{letter-spacing:2.666667pt;}
.ls0_c00192{letter-spacing:5.333333pt;}
.ws0_c00192{word-spacing:-37.333333pt;}
.ws1_c00192{word-spacing:-18.090667pt;}
.ws2_c00192{word-spacing:-14.138667pt;}
.ws3_c00192{word-spacing:0.000000pt;}
._12_c00192{margin-left:-17.952000pt;}
._14_c00192{margin-left:-15.018667pt;}
._18_c00192{margin-left:-13.610667pt;}
._13_c00192{margin-left:-12.026667pt;}
._19_c00192{margin-left:-9.562667pt;}
._15_c00192{margin-left:-8.080000pt;}
._e_c00192{margin-left:-7.173333pt;}
._b_c00192{margin-left:-6.160000pt;}
._f_c00192{margin-left:-4.805333pt;}
._a_c00192{margin-left:-3.226667pt;}
._8_c00192{margin-left:-1.525333pt;}
._6_c00192{width:0.938667pt;}
._7_c00192{width:1.877333pt;}
._2_c00192{width:2.986667pt;}
._1_c00192{width:4.181333pt;}
._3_c00192{width:5.301333pt;}
._1b_c00192{width:6.205333pt;}
._0_c00192{width:7.168000pt;}
._9_c00192{width:8.522667pt;}
._5_c00192{width:9.576000pt;}
._16_c00192{width:10.776000pt;}
._c_c00192{width:12.202667pt;}
._10_c00192{width:13.170667pt;}
._d_c00192{width:14.080000pt;}
._1c_c00192{width:15.256000pt;}
._1d_c00192{width:23.877333pt;}
._17_c00192{width:29.253333pt;}
._11_c00192{width:33.541333pt;}
._1e_c00192{width:173.200000pt;}
._4_c00192{width:314.386667pt;}
._1a_c00192{width:330.938667pt;}
.fs6_c00192{font-size:42.666667pt;}
.fs4_c00192{font-size:45.333333pt;}
.fs5_c00192{font-size:50.666667pt;}
.fs2_c00192{font-size:58.666667pt;}
.fs3_c00192{font-size:64.000000pt;}
.fs1_c00192{font-size:72.000000pt;}
.fs0_c00192{font-size:74.666667pt;}
.y0_c00192{bottom:0.000000pt;}
.y1f_c00192{bottom:2.760000pt;}
.y1e_c00192{bottom:6.425219pt;}
.y1d_c00192{bottom:28.280000pt;}
.y1c_c00192{bottom:50.413333pt;}
.y1b_c00192{bottom:72.946667pt;}
.y1a_c00192{bottom:95.213333pt;}
.y19_c00192{bottom:117.613333pt;}
.y18_c00192{bottom:139.480000pt;}
.y17_c00192{bottom:161.080000pt;}
.y16_c00192{bottom:183.880000pt;}
.y15_c00192{bottom:205.213333pt;}
.y14_c00192{bottom:227.080000pt;}
.y13_c00192{bottom:248.146667pt;}
.y12_c00192{bottom:267.080000pt;}
.y11_c00192{bottom:288.013333pt;}
.y10_c00192{bottom:310.013333pt;}
.yf_c00192{bottom:332.413333pt;}
.ye_c00192{bottom:354.013333pt;}
.yd_c00192{bottom:376.546667pt;}
.yc_c00192{bottom:398.413333pt;}
.yb_c00192{bottom:420.413333pt;}
.ya_c00192{bottom:442.013333pt;}
.y9_c00192{bottom:463.613333pt;}
.y8_c00192{bottom:486.413333pt;}
.y7_c00192{bottom:507.880000pt;}
.y6_c00192{bottom:529.480000pt;}
.y5_c00192{bottom:551.080000pt;}
.y4_c00192{bottom:572.813333pt;}
.y3_c00192{bottom:594.413333pt;}
.y2_c00192{bottom:616.280000pt;}
.y1_c00192{bottom:638.680000pt;}
.h5_c00192{height:11.733399pt;}
.h6_c00192{height:38.937500pt;}
.h2_c00192{height:73.244792pt;}
.h3_c00192{height:74.278646pt;}
.h4_c00192{height:81.031250pt;}
.h0_c00192{height:691.933333pt;}
.h1_c00192{height:692.000000pt;}
.w2_c00192{width:93.222667pt;}
.w0_c00192{width:472.533333pt;}
.w1_c00192{width:472.666667pt;}
.x0_c00192{left:0.000000pt;}
.x6_c00192{left:28.000000pt;}
.x2_c00192{left:32.133333pt;}
.x3_c00192{left:33.066667pt;}
.x5_c00192{left:34.000000pt;}
.x4_c00192{left:35.066667pt;}
.x1_c00192{left:135.600000pt;}
.x8_c00192{left:193.434896pt;}
.x7_c00192{left:270.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e84b95e0286274e2850d2dea.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00193;src:url('chunks/assets/font_c838fd07e54f8e49619daf1a.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00193;src:url('chunks/assets/font_4917439077ae71d45c79a3bb.woff2')format("woff");}.ff3_c00193{font-family:ff3_c00193;line-height:1.568848;font-style:normal;font-weight:normal;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_6325af62fbc3b4874cea367e.woff2')format("woff");}.ff4_c00193{font-family:ff4_c00193;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00193;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00193{font-family:ff5_c00193;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00193{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00193{vertical-align:0.000000px;}
.ls0_c00193{letter-spacing:0.000000px;}
.ls1_c00193{letter-spacing:3.000000px;}
.ls2_c00193{letter-spacing:6.000000px;}
.sc__c00193{text-shadow:none;}
.sc0_c00193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00193{-webkit-text-stroke:0px transparent;}
.sc0_c00193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00193{word-spacing:-35.970000px;}
.ws1_c00193{word-spacing:0.000000px;}
._13_c00193{margin-left:-12.168000px;}
._12_c00193{margin-left:-10.428000px;}
._11_c00193{margin-left:-7.920000px;}
._9_c00193{margin-left:-6.888000px;}
._10_c00193{margin-left:-5.808000px;}
._7_c00193{margin-left:-4.752000px;}
._8_c00193{margin-left:-3.336000px;}
._6_c00193{margin-left:-1.980000px;}
._1_c00193{width:1.596000px;}
._0_c00193{width:3.528000px;}
._5_c00193{width:4.536000px;}
._14_c00193{width:5.544000px;}
._3_c00193{width:6.624000px;}
._4_c00193{width:8.280000px;}
._2_c00193{width:10.008000px;}
._b_c00193{width:11.556000px;}
._e_c00193{width:13.008000px;}
._a_c00193{width:14.088000px;}
._d_c00193{width:16.344000px;}
._f_c00193{width:18.168000px;}
._c_c00193{width:23.172000px;}
._15_c00193{width:25.728000px;}
.fc2_c00193{color:transparent;}
.fc1_c00193{color:rgb(128,128,128);}
.fc0_c00193{color:rgb(0,0,0);}
.fs4_c00193{font-size:48.000000px;}
.fs1_c00193{font-size:72.000000px;}
.fs2_c00193{font-size:78.000000px;}
.fs0_c00193{font-size:84.000000px;}
.fs3_c00193{font-size:90.000000px;}
.y0_c00193{bottom:0.000000px;}
.y1f_c00193{bottom:3.105000px;}
.y1e_c00193{bottom:7.228369px;}
.y1d_c00193{bottom:28.320000px;}
.y1c_c00193{bottom:53.370000px;}
.y1b_c00193{bottom:79.920000px;}
.y1a_c00193{bottom:103.920000px;}
.y19_c00193{bottom:130.620000px;}
.y18_c00193{bottom:155.820000px;}
.y17_c00193{bottom:180.570000px;}
.y16_c00193{bottom:205.470000px;}
.y15_c00193{bottom:231.120000px;}
.y14_c00193{bottom:254.370000px;}
.y13_c00193{bottom:279.120000px;}
.y12_c00193{bottom:303.120000px;}
.y11_c00193{bottom:327.270000px;}
.y10_c00193{bottom:352.620000px;}
.yf_c00193{bottom:375.570000px;}
.ye_c00193{bottom:400.170000px;}
.yd_c00193{bottom:424.620000px;}
.yc_c00193{bottom:448.770000px;}
.yb_c00193{bottom:473.070000px;}
.ya_c00193{bottom:497.520000px;}
.y9_c00193{bottom:522.120000px;}
.y8_c00193{bottom:546.420000px;}
.y7_c00193{bottom:570.270000px;}
.y6_c00193{bottom:594.720000px;}
.y5_c00193{bottom:619.320000px;}
.y4_c00193{bottom:643.920000px;}
.y3_c00193{bottom:668.520000px;}
.y2_c00193{bottom:693.120000px;}
.y1_c00193{bottom:718.170000px;}
.h5_c00193{height:13.200073px;}
.h6_c00193{height:43.804688px;}
.h2_c00193{height:82.441406px;}
.h4_c00193{height:90.703125px;}
.h3_c00193{height:91.160156px;}
.h0_c00193{height:774.600000px;}
.h1_c00193{height:774.750000px;}
.w2_c00193{width:104.875500px;}
.w1_c00193{width:505.500000px;}
.w0_c00193{width:505.725000px;}
.x0_c00193{left:0.000000px;}
.x2_c00193{left:98.550000px;}
.x3_c00193{left:99.600000px;}
.x4_c00193{left:101.250000px;}
.x5_c00193{left:102.600000px;}
.x7_c00193{left:204.676758px;}
.x1_c00193{left:219.000000px;}
.x6_c00193{left:459.750000px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls0_c00193{letter-spacing:0.000000pt;}
.ls1_c00193{letter-spacing:2.666667pt;}
.ls2_c00193{letter-spacing:5.333333pt;}
.ws0_c00193{word-spacing:-31.973333pt;}
.ws1_c00193{word-spacing:0.000000pt;}
._13_c00193{margin-left:-10.816000pt;}
._12_c00193{margin-left:-9.269333pt;}
._11_c00193{margin-left:-7.040000pt;}
._9_c00193{margin-left:-6.122667pt;}
._10_c00193{margin-left:-5.162667pt;}
._7_c00193{margin-left:-4.224000pt;}
._8_c00193{margin-left:-2.965333pt;}
._6_c00193{margin-left:-1.760000pt;}
._1_c00193{width:1.418667pt;}
._0_c00193{width:3.136000pt;}
._5_c00193{width:4.032000pt;}
._14_c00193{width:4.928000pt;}
._3_c00193{width:5.888000pt;}
._4_c00193{width:7.360000pt;}
._2_c00193{width:8.896000pt;}
._b_c00193{width:10.272000pt;}
._e_c00193{width:11.562667pt;}
._a_c00193{width:12.522667pt;}
._d_c00193{width:14.528000pt;}
._f_c00193{width:16.149333pt;}
._c_c00193{width:20.597333pt;}
._15_c00193{width:22.869333pt;}
.fs4_c00193{font-size:42.666667pt;}
.fs1_c00193{font-size:64.000000pt;}
.fs2_c00193{font-size:69.333333pt;}
.fs0_c00193{font-size:74.666667pt;}
.fs3_c00193{font-size:80.000000pt;}
.y0_c00193{bottom:0.000000pt;}
.y1f_c00193{bottom:2.760000pt;}
.y1e_c00193{bottom:6.425217pt;}
.y1d_c00193{bottom:25.173333pt;}
.y1c_c00193{bottom:47.440000pt;}
.y1b_c00193{bottom:71.040000pt;}
.y1a_c00193{bottom:92.373333pt;}
.y19_c00193{bottom:116.106667pt;}
.y18_c00193{bottom:138.506667pt;}
.y17_c00193{bottom:160.506667pt;}
.y16_c00193{bottom:182.640000pt;}
.y15_c00193{bottom:205.440000pt;}
.y14_c00193{bottom:226.106667pt;}
.y13_c00193{bottom:248.106667pt;}
.y12_c00193{bottom:269.440000pt;}
.y11_c00193{bottom:290.906667pt;}
.y10_c00193{bottom:313.440000pt;}
.yf_c00193{bottom:333.840000pt;}
.ye_c00193{bottom:355.706667pt;}
.yd_c00193{bottom:377.440000pt;}
.yc_c00193{bottom:398.906667pt;}
.yb_c00193{bottom:420.506667pt;}
.ya_c00193{bottom:442.240000pt;}
.y9_c00193{bottom:464.106667pt;}
.y8_c00193{bottom:485.706667pt;}
.y7_c00193{bottom:506.906667pt;}
.y6_c00193{bottom:528.640000pt;}
.y5_c00193{bottom:550.506667pt;}
.y4_c00193{bottom:572.373333pt;}
.y3_c00193{bottom:594.240000pt;}
.y2_c00193{bottom:616.106667pt;}
.y1_c00193{bottom:638.373333pt;}
.h5_c00193{height:11.733399pt;}
.h6_c00193{height:38.937500pt;}
.h2_c00193{height:73.281250pt;}
.h4_c00193{height:80.625000pt;}
.h3_c00193{height:81.031250pt;}
.h0_c00193{height:688.533333pt;}
.h1_c00193{height:688.666667pt;}
.w2_c00193{width:93.222667pt;}
.w1_c00193{width:449.333333pt;}
.w0_c00193{width:449.533333pt;}
.x0_c00193{left:0.000000pt;}
.x2_c00193{left:87.600000pt;}
.x3_c00193{left:88.533333pt;}
.x4_c00193{left:90.000000pt;}
.x5_c00193{left:91.200000pt;}
.x7_c00193{left:181.934896pt;}
.x1_c00193{left:194.666667pt;}
.x6_c00193{left:408.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_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_34f904f68bcf581e2387f142.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00194;src:url('chunks/assets/font_e6f55da25e7b8b8cad3817b8.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00194;src:url('chunks/assets/font_e6dc7025c5d8d64aaadcc50e.woff2')format("woff");}.ff3_c00194{font-family:ff3_c00194;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00194{font-family:ff4_c00194;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00194{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00194{vertical-align:0.000000px;}
.ls1_c00194{letter-spacing:0.000000px;}
.ls2_c00194{letter-spacing:3.000000px;}
.ls0_c00194{letter-spacing:6.000000px;}
.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:-42.000000px;}
.ws1_c00194{word-spacing:0.000000px;}
._11_c00194{margin-left:-15.180000px;}
._12_c00194{margin-left:-13.134000px;}
._10_c00194{margin-left:-6.840000px;}
._e_c00194{margin-left:-5.820000px;}
._b_c00194{margin-left:-4.032000px;}
._9_c00194{margin-left:-2.868000px;}
._7_c00194{margin-left:-1.716000px;}
._6_c00194{width:1.008000px;}
._a_c00194{width:2.628000px;}
._5_c00194{width:3.843000px;}
._2_c00194{width:5.208000px;}
._c_c00194{width:6.927000px;}
._1_c00194{width:7.980000px;}
._3_c00194{width:9.576000px;}
._f_c00194{width:10.602000px;}
._8_c00194{width:11.724000px;}
._0_c00194{width:13.440000px;}
._14_c00194{width:15.846000px;}
._d_c00194{width:24.828000px;}
._15_c00194{width:40.644000px;}
._16_c00194{width:245.478000px;}
._4_c00194{width:407.703000px;}
._13_c00194{width:673.650000px;}
.fc2_c00194{color:transparent;}
.fc1_c00194{color:rgb(128,128,128);}
.fc0_c00194{color:rgb(0,0,0);}
.fs5_c00194{font-size:48.000000px;}
.fs2_c00194{font-size:63.000000px;}
.fs4_c00194{font-size:66.000000px;}
.fs3_c00194{font-size:72.000000px;}
.fs1_c00194{font-size:81.000000px;}
.fs0_c00194{font-size:84.000000px;}
.y0_c00194{bottom:0.000000px;}
.y1f_c00194{bottom:3.105000px;}
.y1e_c00194{bottom:7.228355px;}
.y1d_c00194{bottom:44.235000px;}
.y1c_c00194{bottom:70.185000px;}
.y1b_c00194{bottom:94.485000px;}
.y1a_c00194{bottom:121.185000px;}
.y19_c00194{bottom:146.085000px;}
.y18_c00194{bottom:171.135000px;}
.y17_c00194{bottom:195.285000px;}
.y16_c00194{bottom:220.335000px;}
.y15_c00194{bottom:245.385000px;}
.y14_c00194{bottom:270.585000px;}
.y13_c00194{bottom:294.885000px;}
.y12_c00194{bottom:316.485000px;}
.y11_c00194{bottom:339.885000px;}
.y10_c00194{bottom:364.785000px;}
.yf_c00194{bottom:389.685000px;}
.ye_c00194{bottom:414.735000px;}
.yd_c00194{bottom:438.735000px;}
.yc_c00194{bottom:464.085000px;}
.yb_c00194{bottom:488.235000px;}
.ya_c00194{bottom:512.985000px;}
.y9_c00194{bottom:537.585000px;}
.y8_c00194{bottom:561.885000px;}
.y7_c00194{bottom:586.785000px;}
.y6_c00194{bottom:611.535000px;}
.y5_c00194{bottom:635.835000px;}
.y4_c00194{bottom:660.435000px;}
.y3_c00194{bottom:685.035000px;}
.y2_c00194{bottom:710.385000px;}
.y1_c00194{bottom:734.685000px;}
.h4_c00194{height:13.200074px;}
.h5_c00194{height:43.804688px;}
.h2_c00194{height:82.400391px;}
.h3_c00194{height:91.160156px;}
.h0_c00194{height:795.675000px;}
.h1_c00194{height:795.750000px;}
.w2_c00194{width:104.875500px;}
.w0_c00194{width:526.200000px;}
.w1_c00194{width:526.500000px;}
.x0_c00194{left:0.000000px;}
.x7_c00194{left:37.200000px;}
.x8_c00194{left:38.550000px;}
.x2_c00194{left:40.500000px;}
.x4_c00194{left:41.850000px;}
.x3_c00194{left:43.200000px;}
.x5_c00194{left:44.550000px;}
.x6_c00194{left:69.150000px;}
.x1_c00194{left:148.500000px;}
.xa_c00194{left:214.914230px;}
.x9_c00194{left:267.600000px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls1_c00194{letter-spacing:0.000000pt;}
.ls2_c00194{letter-spacing:2.666667pt;}
.ls0_c00194{letter-spacing:5.333333pt;}
.ws0_c00194{word-spacing:-37.333333pt;}
.ws1_c00194{word-spacing:0.000000pt;}
._11_c00194{margin-left:-13.493333pt;}
._12_c00194{margin-left:-11.674667pt;}
._10_c00194{margin-left:-6.080000pt;}
._e_c00194{margin-left:-5.173333pt;}
._b_c00194{margin-left:-3.584000pt;}
._9_c00194{margin-left:-2.549333pt;}
._7_c00194{margin-left:-1.525333pt;}
._6_c00194{width:0.896000pt;}
._a_c00194{width:2.336000pt;}
._5_c00194{width:3.416000pt;}
._2_c00194{width:4.629333pt;}
._c_c00194{width:6.157333pt;}
._1_c00194{width:7.093333pt;}
._3_c00194{width:8.512000pt;}
._f_c00194{width:9.424000pt;}
._8_c00194{width:10.421333pt;}
._0_c00194{width:11.946667pt;}
._14_c00194{width:14.085333pt;}
._d_c00194{width:22.069333pt;}
._15_c00194{width:36.128000pt;}
._16_c00194{width:218.202667pt;}
._4_c00194{width:362.402667pt;}
._13_c00194{width:598.800000pt;}
.fs5_c00194{font-size:42.666667pt;}
.fs2_c00194{font-size:56.000000pt;}
.fs4_c00194{font-size:58.666667pt;}
.fs3_c00194{font-size:64.000000pt;}
.fs1_c00194{font-size:72.000000pt;}
.fs0_c00194{font-size:74.666667pt;}
.y0_c00194{bottom:0.000000pt;}
.y1f_c00194{bottom:2.760000pt;}
.y1e_c00194{bottom:6.425204pt;}
.y1d_c00194{bottom:39.320000pt;}
.y1c_c00194{bottom:62.386667pt;}
.y1b_c00194{bottom:83.986667pt;}
.y1a_c00194{bottom:107.720000pt;}
.y19_c00194{bottom:129.853333pt;}
.y18_c00194{bottom:152.120000pt;}
.y17_c00194{bottom:173.586667pt;}
.y16_c00194{bottom:195.853333pt;}
.y15_c00194{bottom:218.120000pt;}
.y14_c00194{bottom:240.520000pt;}
.y13_c00194{bottom:262.120000pt;}
.y12_c00194{bottom:281.320000pt;}
.y11_c00194{bottom:302.120000pt;}
.y10_c00194{bottom:324.253333pt;}
.yf_c00194{bottom:346.386667pt;}
.ye_c00194{bottom:368.653333pt;}
.yd_c00194{bottom:389.986667pt;}
.yc_c00194{bottom:412.520000pt;}
.yb_c00194{bottom:433.986667pt;}
.ya_c00194{bottom:455.986667pt;}
.y9_c00194{bottom:477.853333pt;}
.y8_c00194{bottom:499.453333pt;}
.y7_c00194{bottom:521.586667pt;}
.y6_c00194{bottom:543.586667pt;}
.y5_c00194{bottom:565.186667pt;}
.y4_c00194{bottom:587.053333pt;}
.y3_c00194{bottom:608.920000pt;}
.y2_c00194{bottom:631.453333pt;}
.y1_c00194{bottom:653.053333pt;}
.h4_c00194{height:11.733399pt;}
.h5_c00194{height:38.937500pt;}
.h2_c00194{height:73.244792pt;}
.h3_c00194{height:81.031250pt;}
.h0_c00194{height:707.266667pt;}
.h1_c00194{height:707.333333pt;}
.w2_c00194{width:93.222667pt;}
.w0_c00194{width:467.733333pt;}
.w1_c00194{width:468.000000pt;}
.x0_c00194{left:0.000000pt;}
.x7_c00194{left:33.066667pt;}
.x8_c00194{left:34.266667pt;}
.x2_c00194{left:36.000000pt;}
.x4_c00194{left:37.200000pt;}
.x3_c00194{left:38.400000pt;}
.x5_c00194{left:39.600000pt;}
.x6_c00194{left:61.466667pt;}
.x1_c00194{left:132.000000pt;}
.xa_c00194{left:191.034871pt;}
.x9_c00194{left:237.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_01d8d3751161a7087b05c9d9.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.480469;font-style:normal;font-weight:normal;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_c22260a1a4036f8f69d3d7db.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00195{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00195{vertical-align:0.000000px;}
.ls1_c00195{letter-spacing:0.000000px;}
.ls0_c00195{letter-spacing:3.000000px;}
.sc__c00195{text-shadow:none;}
.sc0_c00195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00195{-webkit-text-stroke:0px transparent;}
.sc0_c00195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00195{word-spacing:-20.352000px;}
.ws0_c00195{word-spacing:-17.352000px;}
.ws2_c00195{word-spacing:0.000000px;}
._10_c00195{margin-left:-7.944000px;}
._e_c00195{margin-left:-6.168000px;}
._8_c00195{margin-left:-4.392000px;}
._6_c00195{margin-left:-2.448000px;}
._5_c00195{margin-left:-1.080000px;}
._7_c00195{width:1.368000px;}
._a_c00195{width:2.448000px;}
._9_c00195{width:3.528000px;}
._c_c00195{width:5.328000px;}
._1_c00195{width:6.480000px;}
._4_c00195{width:8.160000px;}
._d_c00195{width:10.224000px;}
._3_c00195{width:11.280000px;}
._2_c00195{width:12.900000px;}
._f_c00195{width:14.112000px;}
._b_c00195{width:15.696000px;}
._0_c00195{width:17.160000px;}
._11_c00195{width:33.120000px;}
.fc2_c00195{color:transparent;}
.fc1_c00195{color:rgb(128,128,128);}
.fc0_c00195{color:rgb(0,0,0);}
.fs2_c00195{font-size:48.000000px;}
.fs0_c00195{font-size:60.000000px;}
.fs1_c00195{font-size:72.000000px;}
.y0_c00195{bottom:0.000000px;}
.y1f_c00195{bottom:3.105000px;}
.y1e_c00195{bottom:7.228363px;}
.y1d_c00195{bottom:46.200000px;}
.y1c_c00195{bottom:69.750000px;}
.y1b_c00195{bottom:95.850000px;}
.y1a_c00195{bottom:121.050000px;}
.y19_c00195{bottom:145.500000px;}
.y18_c00195{bottom:170.400000px;}
.y17_c00195{bottom:195.300000px;}
.y16_c00195{bottom:220.050000px;}
.y15_c00195{bottom:244.350000px;}
.y14_c00195{bottom:268.650000px;}
.y13_c00195{bottom:295.350000px;}
.y12_c00195{bottom:317.850000px;}
.y11_c00195{bottom:342.900000px;}
.y10_c00195{bottom:365.550000px;}
.yf_c00195{bottom:390.450000px;}
.ye_c00195{bottom:414.450000px;}
.yd_c00195{bottom:439.650000px;}
.yc_c00195{bottom:465.300000px;}
.yb_c00195{bottom:488.400000px;}
.ya_c00195{bottom:513.300000px;}
.y9_c00195{bottom:537.600000px;}
.y8_c00195{bottom:562.500000px;}
.y7_c00195{bottom:586.650000px;}
.y6_c00195{bottom:611.250000px;}
.y5_c00195{bottom:635.250000px;}
.y4_c00195{bottom:659.250000px;}
.y3_c00195{bottom:684.450000px;}
.y2_c00195{bottom:708.750000px;}
.y1_c00195{bottom:733.500000px;}
.h3_c00195{height:13.200074px;}
.h4_c00195{height:43.804688px;}
.h1_c00195{height:70.224609px;}
.h2_c00195{height:91.160156px;}
.h0_c00195{height:789.750000px;}
.w2_c00195{width:104.875500px;}
.w1_c00195{width:540.750000px;}
.w0_c00195{width:540.825000px;}
.x0_c00195{left:0.000000px;}
.x6_c00195{left:52.350000px;}
.x5_c00195{left:128.700000px;}
.x4_c00195{left:129.900000px;}
.x3_c00195{left:130.950000px;}
.x2_c00195{left:132.000000px;}
.x8_c00195{left:222.226730px;}
.x1_c00195{left:250.800000px;}
.x7_c00195{left:454.950000px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls1_c00195{letter-spacing:0.000000pt;}
.ls0_c00195{letter-spacing:2.666667pt;}
.ws1_c00195{word-spacing:-18.090667pt;}
.ws0_c00195{word-spacing:-15.424000pt;}
.ws2_c00195{word-spacing:0.000000pt;}
._10_c00195{margin-left:-7.061333pt;}
._e_c00195{margin-left:-5.482667pt;}
._8_c00195{margin-left:-3.904000pt;}
._6_c00195{margin-left:-2.176000pt;}
._5_c00195{margin-left:-0.960000pt;}
._7_c00195{width:1.216000pt;}
._a_c00195{width:2.176000pt;}
._9_c00195{width:3.136000pt;}
._c_c00195{width:4.736000pt;}
._1_c00195{width:5.760000pt;}
._4_c00195{width:7.253333pt;}
._d_c00195{width:9.088000pt;}
._3_c00195{width:10.026667pt;}
._2_c00195{width:11.466667pt;}
._f_c00195{width:12.544000pt;}
._b_c00195{width:13.952000pt;}
._0_c00195{width:15.253333pt;}
._11_c00195{width:29.440000pt;}
.fs2_c00195{font-size:42.666667pt;}
.fs0_c00195{font-size:53.333333pt;}
.fs1_c00195{font-size:64.000000pt;}
.y0_c00195{bottom:0.000000pt;}
.y1f_c00195{bottom:2.760000pt;}
.y1e_c00195{bottom:6.425212pt;}
.y1d_c00195{bottom:41.066667pt;}
.y1c_c00195{bottom:62.000000pt;}
.y1b_c00195{bottom:85.200000pt;}
.y1a_c00195{bottom:107.600000pt;}
.y19_c00195{bottom:129.333333pt;}
.y18_c00195{bottom:151.466667pt;}
.y17_c00195{bottom:173.600000pt;}
.y16_c00195{bottom:195.600000pt;}
.y15_c00195{bottom:217.200000pt;}
.y14_c00195{bottom:238.800000pt;}
.y13_c00195{bottom:262.533333pt;}
.y12_c00195{bottom:282.533333pt;}
.y11_c00195{bottom:304.800000pt;}
.y10_c00195{bottom:324.933333pt;}
.yf_c00195{bottom:347.066667pt;}
.ye_c00195{bottom:368.400000pt;}
.yd_c00195{bottom:390.800000pt;}
.yc_c00195{bottom:413.600000pt;}
.yb_c00195{bottom:434.133333pt;}
.ya_c00195{bottom:456.266667pt;}
.y9_c00195{bottom:477.866667pt;}
.y8_c00195{bottom:500.000000pt;}
.y7_c00195{bottom:521.466667pt;}
.y6_c00195{bottom:543.333333pt;}
.y5_c00195{bottom:564.666667pt;}
.y4_c00195{bottom:586.000000pt;}
.y3_c00195{bottom:608.400000pt;}
.y2_c00195{bottom:630.000000pt;}
.y1_c00195{bottom:652.000000pt;}
.h3_c00195{height:11.733399pt;}
.h4_c00195{height:38.937500pt;}
.h1_c00195{height:62.421875pt;}
.h2_c00195{height:81.031250pt;}
.h0_c00195{height:702.000000pt;}
.w2_c00195{width:93.222667pt;}
.w1_c00195{width:480.666667pt;}
.w0_c00195{width:480.733333pt;}
.x0_c00195{left:0.000000pt;}
.x6_c00195{left:46.533333pt;}
.x5_c00195{left:114.400000pt;}
.x4_c00195{left:115.466667pt;}
.x3_c00195{left:116.400000pt;}
.x2_c00195{left:117.333333pt;}
.x8_c00195{left:197.534871pt;}
.x1_c00195{left:222.933333pt;}
.x7_c00195{left:404.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2f64e548b5fdb54736f39154.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.480469;font-style:normal;font-weight:normal;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_864d0043a5e79c890e795077.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00196{font-family:ff3_c00196;line-height:1.219238;font-style: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;}
.ls2_c00196{letter-spacing:3.000000px;}
.ls0_c00196{letter-spacing:6.000000px;}
.sc__c00196{text-shadow:none;}
.sc0_c00196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00196{-webkit-text-stroke:0px transparent;}
.sc0_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00196{word-spacing:-20.352000px;}
.ws1_c00196{word-spacing:0.000000px;}
._d_c00196{margin-left:-13.506000px;}
._e_c00196{margin-left:-10.122000px;}
._f_c00196{margin-left:-8.970000px;}
._c_c00196{margin-left:-7.560000px;}
._a_c00196{margin-left:-6.414000px;}
._15_c00196{margin-left:-5.400000px;}
._8_c00196{margin-left:-4.278000px;}
._9_c00196{margin-left:-3.024000px;}
._7_c00196{margin-left:-1.320000px;}
._4_c00196{width:1.584000px;}
._2_c00196{width:3.096000px;}
._3_c00196{width:4.752000px;}
._5_c00196{width:6.768000px;}
._1_c00196{width:9.504000px;}
._b_c00196{width:11.448000px;}
._14_c00196{width:13.176000px;}
._0_c00196{width:14.760000px;}
._11_c00196{width:16.416000px;}
._13_c00196{width:19.224000px;}
._12_c00196{width:23.064000px;}
._10_c00196{width:24.480000px;}
._6_c00196{width:360.528000px;}
.fc2_c00196{color:transparent;}
.fc1_c00196{color:rgb(128,128,128);}
.fc0_c00196{color:rgb(0,0,0);}
.fs2_c00196{font-size:48.000000px;}
.fs1_c00196{font-size:66.000000px;}
.fs0_c00196{font-size:72.000000px;}
.y0_c00196{bottom:0.000000px;}
.y1f_c00196{bottom:3.105000px;}
.y1e_c00196{bottom:7.228357px;}
.y1d_c00196{bottom:52.980000px;}
.y1c_c00196{bottom:79.080000px;}
.y1b_c00196{bottom:102.930000px;}
.y1a_c00196{bottom:129.930000px;}
.y19_c00196{bottom:155.280000px;}
.y18_c00196{bottom:179.880000px;}
.y17_c00196{bottom:204.930000px;}
.y16_c00196{bottom:229.230000px;}
.y15_c00196{bottom:253.530000px;}
.y14_c00196{bottom:276.180000px;}
.y13_c00196{bottom:300.030000px;}
.y12_c00196{bottom:324.030000px;}
.y11_c00196{bottom:347.730000px;}
.y10_c00196{bottom:373.230000px;}
.yf_c00196{bottom:397.680000px;}
.ye_c00196{bottom:422.280000px;}
.yd_c00196{bottom:447.180000px;}
.yc_c00196{bottom:471.780000px;}
.yb_c00196{bottom:495.780000px;}
.ya_c00196{bottom:520.530000px;}
.y9_c00196{bottom:545.430000px;}
.y8_c00196{bottom:570.330000px;}
.y7_c00196{bottom:594.780000px;}
.y6_c00196{bottom:619.080000px;}
.y5_c00196{bottom:643.380000px;}
.y4_c00196{bottom:667.980000px;}
.y3_c00196{bottom:692.580000px;}
.y2_c00196{bottom:716.880000px;}
.y1_c00196{bottom:742.230000px;}
.h2_c00196{height:13.200074px;}
.h3_c00196{height:43.804688px;}
.h1_c00196{height:91.160156px;}
.h0_c00196{height:792.750000px;}
.w1_c00196{width:104.875500px;}
.w0_c00196{width:522.750000px;}
.x0_c00196{left:0.000000px;}
.x2_c00196{left:22.950000px;}
.x3_c00196{left:25.350000px;}
.x4_c00196{left:27.300000px;}
.x5_c00196{left:28.950000px;}
.x6_c00196{left:30.600000px;}
.x7_c00196{left:31.650000px;}
.x8_c00196{left:34.050000px;}
.x9_c00196{left:36.000000px;}
.xa_c00196{left:37.800000px;}
.xc_c00196{left:40.050000px;}
.xd_c00196{left:41.100000px;}
.x1_c00196{left:137.550000px;}
.xf_c00196{left:213.189240px;}
.xb_c00196{left:318.300000px;}
.xe_c00196{left:368.100000px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls1_c00196{letter-spacing:0.000000pt;}
.ls2_c00196{letter-spacing:2.666667pt;}
.ls0_c00196{letter-spacing:5.333333pt;}
.ws0_c00196{word-spacing:-18.090667pt;}
.ws1_c00196{word-spacing:0.000000pt;}
._d_c00196{margin-left:-12.005333pt;}
._e_c00196{margin-left:-8.997333pt;}
._f_c00196{margin-left:-7.973333pt;}
._c_c00196{margin-left:-6.720000pt;}
._a_c00196{margin-left:-5.701333pt;}
._15_c00196{margin-left:-4.800000pt;}
._8_c00196{margin-left:-3.802667pt;}
._9_c00196{margin-left:-2.688000pt;}
._7_c00196{margin-left:-1.173333pt;}
._4_c00196{width:1.408000pt;}
._2_c00196{width:2.752000pt;}
._3_c00196{width:4.224000pt;}
._5_c00196{width:6.016000pt;}
._1_c00196{width:8.448000pt;}
._b_c00196{width:10.176000pt;}
._14_c00196{width:11.712000pt;}
._0_c00196{width:13.120000pt;}
._11_c00196{width:14.592000pt;}
._13_c00196{width:17.088000pt;}
._12_c00196{width:20.501333pt;}
._10_c00196{width:21.760000pt;}
._6_c00196{width:320.469333pt;}
.fs2_c00196{font-size:42.666667pt;}
.fs1_c00196{font-size:58.666667pt;}
.fs0_c00196{font-size:64.000000pt;}
.y0_c00196{bottom:0.000000pt;}
.y1f_c00196{bottom:2.760000pt;}
.y1e_c00196{bottom:6.425206pt;}
.y1d_c00196{bottom:47.093333pt;}
.y1c_c00196{bottom:70.293333pt;}
.y1b_c00196{bottom:91.493333pt;}
.y1a_c00196{bottom:115.493333pt;}
.y19_c00196{bottom:138.026667pt;}
.y18_c00196{bottom:159.893333pt;}
.y17_c00196{bottom:182.160000pt;}
.y16_c00196{bottom:203.760000pt;}
.y15_c00196{bottom:225.360000pt;}
.y14_c00196{bottom:245.493333pt;}
.y13_c00196{bottom:266.693333pt;}
.y12_c00196{bottom:288.026667pt;}
.y11_c00196{bottom:309.093333pt;}
.y10_c00196{bottom:331.760000pt;}
.yf_c00196{bottom:353.493333pt;}
.ye_c00196{bottom:375.360000pt;}
.yd_c00196{bottom:397.493333pt;}
.yc_c00196{bottom:419.360000pt;}
.yb_c00196{bottom:440.693333pt;}
.ya_c00196{bottom:462.693333pt;}
.y9_c00196{bottom:484.826667pt;}
.y8_c00196{bottom:506.960000pt;}
.y7_c00196{bottom:528.693333pt;}
.y6_c00196{bottom:550.293333pt;}
.y5_c00196{bottom:571.893333pt;}
.y4_c00196{bottom:593.760000pt;}
.y3_c00196{bottom:615.626667pt;}
.y2_c00196{bottom:637.226667pt;}
.y1_c00196{bottom:659.760000pt;}
.h2_c00196{height:11.733399pt;}
.h3_c00196{height:38.937500pt;}
.h1_c00196{height:81.031250pt;}
.h0_c00196{height:704.666667pt;}
.w1_c00196{width:93.222667pt;}
.w0_c00196{width:464.666667pt;}
.x0_c00196{left:0.000000pt;}
.x2_c00196{left:20.400000pt;}
.x3_c00196{left:22.533333pt;}
.x4_c00196{left:24.266667pt;}
.x5_c00196{left:25.733333pt;}
.x6_c00196{left:27.200000pt;}
.x7_c00196{left:28.133333pt;}
.x8_c00196{left:30.266667pt;}
.x9_c00196{left:32.000000pt;}
.xa_c00196{left:33.600000pt;}
.xc_c00196{left:35.600000pt;}
.xd_c00196{left:36.533333pt;}
.x1_c00196{left:122.266667pt;}
.xf_c00196{left:189.501546pt;}
.xb_c00196{left:282.933333pt;}
.xe_c00196{left:327.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5792716a6a99b9f978cc4dd0.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.480469;font-style:normal;font-weight:normal;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_84e508b20781a42732e1e7c8.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00197{font-family:ff3_c00197;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00197{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00197{vertical-align:0.000000px;}
.ls1_c00197{letter-spacing:-3.000000px;}
.ls2_c00197{letter-spacing:0.000000px;}
.ls0_c00197{letter-spacing:3.000000px;}
.sc__c00197{text-shadow:none;}
.sc0_c00197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00197{-webkit-text-stroke:0px transparent;}
.sc0_c00197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00197{word-spacing:0.000000px;}
._11_c00197{margin-left:-8.763000px;}
._9_c00197{margin-left:-7.200000px;}
._a_c00197{margin-left:-5.976000px;}
._8_c00197{margin-left:-4.779000px;}
._0_c00197{margin-left:-3.045000px;}
._1_c00197{margin-left:-1.914000px;}
._4_c00197{width:1.224000px;}
._3_c00197{width:2.376000px;}
._5_c00197{width:3.384000px;}
._2_c00197{width:4.392000px;}
._b_c00197{width:5.688000px;}
._12_c00197{width:6.738000px;}
._c_c00197{width:7.776000px;}
._e_c00197{width:9.720000px;}
._10_c00197{width:10.872000px;}
._f_c00197{width:12.672000px;}
._7_c00197{width:14.472000px;}
._d_c00197{width:16.182000px;}
._6_c00197{width:17.712000px;}
.fc2_c00197{color:transparent;}
.fc1_c00197{color:rgb(128,128,128);}
.fc0_c00197{color:rgb(0,0,0);}
.fs2_c00197{font-size:48.000000px;}
.fs1_c00197{font-size:72.000000px;}
.fs0_c00197{font-size:87.000000px;}
.y0_c00197{bottom:0.000000px;}
.y1f_c00197{bottom:3.105000px;}
.y1e_c00197{bottom:7.228363px;}
.y1d_c00197{bottom:57.300000px;}
.y1c_c00197{bottom:81.750000px;}
.y1b_c00197{bottom:105.750000px;}
.y1a_c00197{bottom:130.950000px;}
.y19_c00197{bottom:156.600000px;}
.y18_c00197{bottom:180.600000px;}
.y17_c00197{bottom:205.200000px;}
.y16_c00197{bottom:230.550000px;}
.y15_c00197{bottom:255.150000px;}
.y14_c00197{bottom:279.900000px;}
.y13_c00197{bottom:305.100000px;}
.y12_c00197{bottom:328.050000px;}
.y11_c00197{bottom:352.050000px;}
.y10_c00197{bottom:376.050000px;}
.yf_c00197{bottom:400.500000px;}
.ye_c00197{bottom:424.950000px;}
.yd_c00197{bottom:449.850000px;}
.yc_c00197{bottom:474.450000px;}
.yb_c00197{bottom:498.450000px;}
.ya_c00197{bottom:523.350000px;}
.y9_c00197{bottom:547.500000px;}
.y8_c00197{bottom:571.800000px;}
.y7_c00197{bottom:596.700000px;}
.y6_c00197{bottom:621.000000px;}
.y5_c00197{bottom:645.600000px;}
.y4_c00197{bottom:669.450000px;}
.y3_c00197{bottom:694.650000px;}
.y2_c00197{bottom:719.850000px;}
.y1_c00197{bottom:744.750000px;}
.h4_c00197{height:13.200074px;}
.h5_c00197{height:43.804688px;}
.h3_c00197{height:91.160156px;}
.h2_c00197{height:101.825684px;}
.h0_c00197{height:777.600000px;}
.h1_c00197{height:777.750000px;}
.w2_c00197{width:104.875500px;}
.w1_c00197{width:516.000000px;}
.w0_c00197{width:516.225000px;}
.x0_c00197{left:0.000000px;}
.x2_c00197{left:105.900000px;}
.x3_c00197{left:106.950000px;}
.x5_c00197{left:108.000000px;}
.x6_c00197{left:109.350000px;}
.x7_c00197{left:110.700000px;}
.x8_c00197{left:112.350000px;}
.x9_c00197{left:113.850000px;}
.x4_c00197{left:187.350000px;}
.xb_c00197{left:209.926758px;}
.x1_c00197{left:220.050000px;}
.xa_c00197{left:440.400000px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls1_c00197{letter-spacing:-2.666667pt;}
.ls2_c00197{letter-spacing:0.000000pt;}
.ls0_c00197{letter-spacing:2.666667pt;}
.ws0_c00197{word-spacing:0.000000pt;}
._11_c00197{margin-left:-7.789333pt;}
._9_c00197{margin-left:-6.400000pt;}
._a_c00197{margin-left:-5.312000pt;}
._8_c00197{margin-left:-4.248000pt;}
._0_c00197{margin-left:-2.706667pt;}
._1_c00197{margin-left:-1.701333pt;}
._4_c00197{width:1.088000pt;}
._3_c00197{width:2.112000pt;}
._5_c00197{width:3.008000pt;}
._2_c00197{width:3.904000pt;}
._b_c00197{width:5.056000pt;}
._12_c00197{width:5.989333pt;}
._c_c00197{width:6.912000pt;}
._e_c00197{width:8.640000pt;}
._10_c00197{width:9.664000pt;}
._f_c00197{width:11.264000pt;}
._7_c00197{width:12.864000pt;}
._d_c00197{width:14.384000pt;}
._6_c00197{width:15.744000pt;}
.fs2_c00197{font-size:42.666667pt;}
.fs1_c00197{font-size:64.000000pt;}
.fs0_c00197{font-size:77.333333pt;}
.y0_c00197{bottom:0.000000pt;}
.y1f_c00197{bottom:2.760000pt;}
.y1e_c00197{bottom:6.425212pt;}
.y1d_c00197{bottom:50.933333pt;}
.y1c_c00197{bottom:72.666667pt;}
.y1b_c00197{bottom:94.000000pt;}
.y1a_c00197{bottom:116.400000pt;}
.y19_c00197{bottom:139.200000pt;}
.y18_c00197{bottom:160.533333pt;}
.y17_c00197{bottom:182.400000pt;}
.y16_c00197{bottom:204.933333pt;}
.y15_c00197{bottom:226.800000pt;}
.y14_c00197{bottom:248.800000pt;}
.y13_c00197{bottom:271.200000pt;}
.y12_c00197{bottom:291.600000pt;}
.y11_c00197{bottom:312.933333pt;}
.y10_c00197{bottom:334.266667pt;}
.yf_c00197{bottom:356.000000pt;}
.ye_c00197{bottom:377.733333pt;}
.yd_c00197{bottom:399.866667pt;}
.yc_c00197{bottom:421.733333pt;}
.yb_c00197{bottom:443.066667pt;}
.ya_c00197{bottom:465.200000pt;}
.y9_c00197{bottom:486.666667pt;}
.y8_c00197{bottom:508.266667pt;}
.y7_c00197{bottom:530.400000pt;}
.y6_c00197{bottom:552.000000pt;}
.y5_c00197{bottom:573.866667pt;}
.y4_c00197{bottom:595.066667pt;}
.y3_c00197{bottom:617.466667pt;}
.y2_c00197{bottom:639.866667pt;}
.y1_c00197{bottom:662.000000pt;}
.h4_c00197{height:11.733399pt;}
.h5_c00197{height:38.937500pt;}
.h3_c00197{height:81.031250pt;}
.h2_c00197{height:90.511719pt;}
.h0_c00197{height:691.200000pt;}
.h1_c00197{height:691.333333pt;}
.w2_c00197{width:93.222667pt;}
.w1_c00197{width:458.666667pt;}
.w0_c00197{width:458.866667pt;}
.x0_c00197{left:0.000000pt;}
.x2_c00197{left:94.133333pt;}
.x3_c00197{left:95.066667pt;}
.x5_c00197{left:96.000000pt;}
.x6_c00197{left:97.200000pt;}
.x7_c00197{left:98.400000pt;}
.x8_c00197{left:99.866667pt;}
.x9_c00197{left:101.200000pt;}
.x4_c00197{left:166.533333pt;}
.xb_c00197{left:186.601563pt;}
.x1_c00197{left:195.600000pt;}
.xa_c00197{left:391.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c6fba2091a67d290c0171cff.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00198;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00198;src:url('chunks/assets/font_6bb3415720303a59d5412ce2.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;line-height:1.568848;font-style:normal;font-weight:normal;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_873539539db9e2451c3c6a8f.woff2')format("woff");}.ff4_c00198{font-family:ff4_c00198;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00198{font-family:ff5_c00198;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00198{vertical-align:0.000000px;}
.ls2_c00198{letter-spacing:0.000000px;}
.ls1_c00198{letter-spacing:1.788000px;}
.ls3_c00198{letter-spacing:3.000000px;}
.ls0_c00198{letter-spacing:6.000000px;}
.sc__c00198{text-shadow:none;}
.sc0_c00198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00198{-webkit-text-stroke:0px transparent;}
.sc0_c00198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00198{word-spacing:-20.352000px;}
.ws1_c00198{word-spacing:0.000000px;}
._7_c00198{margin-left:-16.026000px;}
._b_c00198{margin-left:-10.737000px;}
._14_c00198{margin-left:-9.462000px;}
._c_c00198{margin-left:-8.136000px;}
._13_c00198{margin-left:-6.624000px;}
._d_c00198{margin-left:-5.556000px;}
._a_c00198{margin-left:-4.536000px;}
._9_c00198{margin-left:-3.351000px;}
._3_c00198{margin-left:-2.016000px;}
._18_c00198{margin-left:-1.008000px;}
._8_c00198{width:1.995000px;}
._2_c00198{width:3.360000px;}
._1_c00198{width:5.292000px;}
._4_c00198{width:6.468000px;}
._5_c00198{width:7.980000px;}
._0_c00198{width:8.988000px;}
._11_c00198{width:10.113000px;}
._12_c00198{width:11.481000px;}
._17_c00198{width:12.726000px;}
._10_c00198{width:13.752000px;}
._f_c00198{width:15.048000px;}
._e_c00198{width:18.339000px;}
._15_c00198{width:22.170000px;}
._6_c00198{width:408.912000px;}
._16_c00198{width:637.872000px;}
.fc2_c00198{color:transparent;}
.fc1_c00198{color:rgb(128,128,128);}
.fc0_c00198{color:rgb(0,0,0);}
.fs5_c00198{font-size:48.000000px;}
.fs3_c00198{font-size:63.000000px;}
.fs4_c00198{font-size:66.000000px;}
.fs2_c00198{font-size:72.000000px;}
.fs1_c00198{font-size:81.000000px;}
.fs0_c00198{font-size:84.000000px;}
.y0_c00198{bottom:0.000000px;}
.y1f_c00198{bottom:3.105000px;}
.y1e_c00198{bottom:7.228371px;}
.y1d_c00198{bottom:34.515000px;}
.y1c_c00198{bottom:62.415000px;}
.y1b_c00198{bottom:84.015000px;}
.y1a_c00198{bottom:112.815000px;}
.y19_c00198{bottom:137.115000px;}
.y18_c00198{bottom:161.715000px;}
.y17_c00198{bottom:187.365000px;}
.y16_c00198{bottom:211.665000px;}
.y15_c00198{bottom:236.565000px;}
.y14_c00198{bottom:261.015000px;}
.y13_c00198{bottom:282.915000px;}
.y12_c00198{bottom:306.465000px;}
.y11_c00198{bottom:330.765000px;}
.y10_c00198{bottom:355.065000px;}
.yf_c00198{bottom:379.665000px;}
.ye_c00198{bottom:404.415000px;}
.yd_c00198{bottom:427.965000px;}
.yc_c00198{bottom:454.065000px;}
.yb_c00198{bottom:478.365000px;}
.ya_c00198{bottom:502.665000px;}
.y9_c00198{bottom:527.265000px;}
.y8_c00198{bottom:552.165000px;}
.y7_c00198{bottom:576.465000px;}
.y6_c00198{bottom:601.215000px;}
.y5_c00198{bottom:625.365000px;}
.y4_c00198{bottom:650.715000px;}
.y3_c00198{bottom:674.715000px;}
.y2_c00198{bottom:699.015000px;}
.y1_c00198{bottom:724.065000px;}
.h3_c00198{height:13.200074px;}
.h4_c00198{height:43.804688px;}
.h2_c00198{height:91.160156px;}
.h1_c00198{height:783.750000px;}
.h0_c00198{height:783.825000px;}
.w2_c00198{width:104.875500px;}
.w0_c00198{width:528.675000px;}
.w1_c00198{width:528.750000px;}
.x0_c00198{left:0.000000px;}
.x2_c00198{left:23.400000px;}
.x3_c00198{left:25.350000px;}
.x4_c00198{left:27.000000px;}
.x1_c00198{left:133.350000px;}
.x7_c00198{left:216.151749px;}
.x5_c00198{left:327.450000px;}
.x6_c00198{left:344.550000px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls2_c00198{letter-spacing:0.000000pt;}
.ls1_c00198{letter-spacing:1.589333pt;}
.ls3_c00198{letter-spacing:2.666667pt;}
.ls0_c00198{letter-spacing:5.333333pt;}
.ws0_c00198{word-spacing:-18.090667pt;}
.ws1_c00198{word-spacing:0.000000pt;}
._7_c00198{margin-left:-14.245333pt;}
._b_c00198{margin-left:-9.544000pt;}
._14_c00198{margin-left:-8.410667pt;}
._c_c00198{margin-left:-7.232000pt;}
._13_c00198{margin-left:-5.888000pt;}
._d_c00198{margin-left:-4.938667pt;}
._a_c00198{margin-left:-4.032000pt;}
._9_c00198{margin-left:-2.978667pt;}
._3_c00198{margin-left:-1.792000pt;}
._18_c00198{margin-left:-0.896000pt;}
._8_c00198{width:1.773333pt;}
._2_c00198{width:2.986667pt;}
._1_c00198{width:4.704000pt;}
._4_c00198{width:5.749333pt;}
._5_c00198{width:7.093333pt;}
._0_c00198{width:7.989333pt;}
._11_c00198{width:8.989333pt;}
._12_c00198{width:10.205333pt;}
._17_c00198{width:11.312000pt;}
._10_c00198{width:12.224000pt;}
._f_c00198{width:13.376000pt;}
._e_c00198{width:16.301333pt;}
._15_c00198{width:19.706667pt;}
._6_c00198{width:363.477333pt;}
._16_c00198{width:566.997333pt;}
.fs5_c00198{font-size:42.666667pt;}
.fs3_c00198{font-size:56.000000pt;}
.fs4_c00198{font-size:58.666667pt;}
.fs2_c00198{font-size:64.000000pt;}
.fs1_c00198{font-size:72.000000pt;}
.fs0_c00198{font-size:74.666667pt;}
.y0_c00198{bottom:0.000000pt;}
.y1f_c00198{bottom:2.760000pt;}
.y1e_c00198{bottom:6.425219pt;}
.y1d_c00198{bottom:30.680000pt;}
.y1c_c00198{bottom:55.480000pt;}
.y1b_c00198{bottom:74.680000pt;}
.y1a_c00198{bottom:100.280000pt;}
.y19_c00198{bottom:121.880000pt;}
.y18_c00198{bottom:143.746667pt;}
.y17_c00198{bottom:166.546667pt;}
.y16_c00198{bottom:188.146667pt;}
.y15_c00198{bottom:210.280000pt;}
.y14_c00198{bottom:232.013333pt;}
.y13_c00198{bottom:251.480000pt;}
.y12_c00198{bottom:272.413333pt;}
.y11_c00198{bottom:294.013333pt;}
.y10_c00198{bottom:315.613333pt;}
.yf_c00198{bottom:337.480000pt;}
.ye_c00198{bottom:359.480000pt;}
.yd_c00198{bottom:380.413333pt;}
.yc_c00198{bottom:403.613333pt;}
.yb_c00198{bottom:425.213333pt;}
.ya_c00198{bottom:446.813333pt;}
.y9_c00198{bottom:468.680000pt;}
.y8_c00198{bottom:490.813333pt;}
.y7_c00198{bottom:512.413333pt;}
.y6_c00198{bottom:534.413333pt;}
.y5_c00198{bottom:555.880000pt;}
.y4_c00198{bottom:578.413333pt;}
.y3_c00198{bottom:599.746667pt;}
.y2_c00198{bottom:621.346667pt;}
.y1_c00198{bottom:643.613333pt;}
.h3_c00198{height:11.733399pt;}
.h4_c00198{height:38.937500pt;}
.h2_c00198{height:81.031250pt;}
.h1_c00198{height:696.666667pt;}
.h0_c00198{height:696.733333pt;}
.w2_c00198{width:93.222667pt;}
.w0_c00198{width:469.933333pt;}
.w1_c00198{width:470.000000pt;}
.x0_c00198{left:0.000000pt;}
.x2_c00198{left:20.800000pt;}
.x3_c00198{left:22.533333pt;}
.x4_c00198{left:24.000000pt;}
.x1_c00198{left:118.533333pt;}
.x7_c00198{left:192.134888pt;}
.x5_c00198{left:291.066667pt;}
.x6_c00198{left:306.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2bd4522a6671a3e7e5e5cc9b.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00199;src:url('chunks/assets/font_a6fe44ea5dece970f58490b0.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00199{font-family:ff3_c00199;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00199{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00199{vertical-align:0.000000px;}
.ls3_c00199{letter-spacing:-3.000000px;}
.ls1_c00199{letter-spacing:0.000000px;}
.ls2_c00199{letter-spacing:3.000000px;}
.ls4_c00199{letter-spacing:6.000000px;}
.ls0_c00199{letter-spacing:6.024000px;}
.sc__c00199{text-shadow:none;}
.sc0_c00199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00199{-webkit-text-stroke:0px transparent;}
.sc0_c00199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00199{word-spacing:-20.352000px;}
.ws0_c00199{word-spacing:-18.183000px;}
.ws2_c00199{word-spacing:0.000000px;}
._d_c00199{margin-left:-7.896000px;}
._9_c00199{margin-left:-6.096000px;}
._8_c00199{margin-left:-4.716000px;}
._4_c00199{margin-left:-3.612000px;}
._7_c00199{margin-left:-1.608000px;}
._5_c00199{width:1.764000px;}
._6_c00199{width:2.772000px;}
._1_c00199{width:4.536000px;}
._c_c00199{width:5.652000px;}
._3_c00199{width:6.804000px;}
._2_c00199{width:7.812000px;}
._a_c00199{width:9.060000px;}
._11_c00199{width:10.092000px;}
._0_c00199{width:11.340000px;}
._f_c00199{width:13.656000px;}
._b_c00199{width:14.904000px;}
._e_c00199{width:24.348000px;}
._10_c00199{width:33.288000px;}
.fc2_c00199{color:transparent;}
.fc1_c00199{color:rgb(128,128,128);}
.fc0_c00199{color:rgb(0,0,0);}
.fs5_c00199{font-size:48.000000px;}
.fs4_c00199{font-size:57.000000px;}
.fs3_c00199{font-size:63.000000px;}
.fs1_c00199{font-size:72.000000px;}
.fs0_c00199{font-size:84.000000px;}
.fs2_c00199{font-size:87.000000px;}
.y0_c00199{bottom:0.000000px;}
.y1f_c00199{bottom:3.105000px;}
.y1e_c00199{bottom:7.228369px;}
.y1d_c00199{bottom:40.770000px;}
.y1c_c00199{bottom:65.070000px;}
.y1b_c00199{bottom:89.820000px;}
.y1a_c00199{bottom:114.420000px;}
.y19_c00199{bottom:139.620000px;}
.y18_c00199{bottom:164.070000px;}
.y17_c00199{bottom:188.970000px;}
.y16_c00199{bottom:212.970000px;}
.y15_c00199{bottom:238.170000px;}
.y14_c00199{bottom:261.570000px;}
.y13_c00199{bottom:286.470000px;}
.y12_c00199{bottom:311.070000px;}
.y11_c00199{bottom:335.070000px;}
.y10_c00199{bottom:358.320000px;}
.yf_c00199{bottom:383.070000px;}
.ye_c00199{bottom:408.420000px;}
.yd_c00199{bottom:432.270000px;}
.yc_c00199{bottom:457.020000px;}
.yb_c00199{bottom:481.170000px;}
.ya_c00199{bottom:505.920000px;}
.y9_c00199{bottom:530.820000px;}
.y8_c00199{bottom:554.820000px;}
.y7_c00199{bottom:578.820000px;}
.y6_c00199{bottom:603.720000px;}
.y5_c00199{bottom:628.320000px;}
.y4_c00199{bottom:652.020000px;}
.y3_c00199{bottom:676.620000px;}
.y2_c00199{bottom:701.220000px;}
.y1_c00199{bottom:726.570000px;}
.h5_c00199{height:13.200073px;}
.h6_c00199{height:43.804688px;}
.h2_c00199{height:82.400391px;}
.h3_c00199{height:91.160156px;}
.h4_c00199{height:110.151855px;}
.h1_c00199{height:785.250000px;}
.h0_c00199{height:785.400000px;}
.w1_c00199{width:104.875500px;}
.w0_c00199{width:530.250000px;}
.x0_c00199{left:0.000000px;}
.x5_c00199{left:124.950000px;}
.x3_c00199{left:126.600000px;}
.x4_c00199{left:127.950000px;}
.x2_c00199{left:129.000000px;}
.x6_c00199{left:130.050000px;}
.x7_c00199{left:132.000000px;}
.x9_c00199{left:216.939240px;}
.x1_c00199{left:240.900000px;}
.x8_c00199{left:456.300000px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls3_c00199{letter-spacing:-2.666667pt;}
.ls1_c00199{letter-spacing:0.000000pt;}
.ls2_c00199{letter-spacing:2.666667pt;}
.ls4_c00199{letter-spacing:5.333333pt;}
.ls0_c00199{letter-spacing:5.354667pt;}
.ws1_c00199{word-spacing:-18.090667pt;}
.ws0_c00199{word-spacing:-16.162667pt;}
.ws2_c00199{word-spacing:0.000000pt;}
._d_c00199{margin-left:-7.018667pt;}
._9_c00199{margin-left:-5.418667pt;}
._8_c00199{margin-left:-4.192000pt;}
._4_c00199{margin-left:-3.210667pt;}
._7_c00199{margin-left:-1.429333pt;}
._5_c00199{width:1.568000pt;}
._6_c00199{width:2.464000pt;}
._1_c00199{width:4.032000pt;}
._c_c00199{width:5.024000pt;}
._3_c00199{width:6.048000pt;}
._2_c00199{width:6.944000pt;}
._a_c00199{width:8.053333pt;}
._11_c00199{width:8.970667pt;}
._0_c00199{width:10.080000pt;}
._f_c00199{width:12.138667pt;}
._b_c00199{width:13.248000pt;}
._e_c00199{width:21.642667pt;}
._10_c00199{width:29.589333pt;}
.fs5_c00199{font-size:42.666667pt;}
.fs4_c00199{font-size:50.666667pt;}
.fs3_c00199{font-size:56.000000pt;}
.fs1_c00199{font-size:64.000000pt;}
.fs0_c00199{font-size:74.666667pt;}
.fs2_c00199{font-size:77.333333pt;}
.y0_c00199{bottom:0.000000pt;}
.y1f_c00199{bottom:2.760000pt;}
.y1e_c00199{bottom:6.425217pt;}
.y1d_c00199{bottom:36.240000pt;}
.y1c_c00199{bottom:57.840000pt;}
.y1b_c00199{bottom:79.840000pt;}
.y1a_c00199{bottom:101.706667pt;}
.y19_c00199{bottom:124.106667pt;}
.y18_c00199{bottom:145.840000pt;}
.y17_c00199{bottom:167.973333pt;}
.y16_c00199{bottom:189.306667pt;}
.y15_c00199{bottom:211.706667pt;}
.y14_c00199{bottom:232.506667pt;}
.y13_c00199{bottom:254.640000pt;}
.y12_c00199{bottom:276.506667pt;}
.y11_c00199{bottom:297.840000pt;}
.y10_c00199{bottom:318.506667pt;}
.yf_c00199{bottom:340.506667pt;}
.ye_c00199{bottom:363.040000pt;}
.yd_c00199{bottom:384.240000pt;}
.yc_c00199{bottom:406.240000pt;}
.yb_c00199{bottom:427.706667pt;}
.ya_c00199{bottom:449.706667pt;}
.y9_c00199{bottom:471.840000pt;}
.y8_c00199{bottom:493.173333pt;}
.y7_c00199{bottom:514.506667pt;}
.y6_c00199{bottom:536.640000pt;}
.y5_c00199{bottom:558.506667pt;}
.y4_c00199{bottom:579.573333pt;}
.y3_c00199{bottom:601.440000pt;}
.y2_c00199{bottom:623.306667pt;}
.y1_c00199{bottom:645.840000pt;}
.h5_c00199{height:11.733399pt;}
.h6_c00199{height:38.937500pt;}
.h2_c00199{height:73.244792pt;}
.h3_c00199{height:81.031250pt;}
.h4_c00199{height:97.912760pt;}
.h1_c00199{height:698.000000pt;}
.h0_c00199{height:698.133333pt;}
.w1_c00199{width:93.222667pt;}
.w0_c00199{width:471.333333pt;}
.x0_c00199{left:0.000000pt;}
.x5_c00199{left:111.066667pt;}
.x3_c00199{left:112.533333pt;}
.x4_c00199{left:113.733333pt;}
.x2_c00199{left:114.666667pt;}
.x6_c00199{left:115.600000pt;}
.x7_c00199{left:117.333333pt;}
.x9_c00199{left:192.834880pt;}
.x1_c00199{left:214.133333pt;}
.x8_c00199{left:405.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_18bea44248cd9452c341885f.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.480469;font-style:normal;font-weight:normal;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_d6d542a163004c65ba1b1e90.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00200;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00200{font-family:ff3_c00200;line-height:1.219238;font-style: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:3.000000px;}
.sc__c00200{text-shadow:none;}
.sc0_c00200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00200{-webkit-text-stroke:0px transparent;}
.sc0_c00200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00200{word-spacing:-33.192000px;}
.ws1_c00200{word-spacing:-20.352000px;}
.ws2_c00200{word-spacing:0.000000px;}
._11_c00200{margin-left:-32.400000px;}
._14_c00200{margin-left:-8.568000px;}
._12_c00200{margin-left:-7.200000px;}
._e_c00200{margin-left:-5.976000px;}
._f_c00200{margin-left:-4.824000px;}
._8_c00200{margin-left:-3.744000px;}
._b_c00200{margin-left:-2.664000px;}
._a_c00200{margin-left:-1.656000px;}
._7_c00200{width:1.152000px;}
._9_c00200{width:2.808000px;}
._d_c00200{width:4.536000px;}
._2_c00200{width:5.616000px;}
._5_c00200{width:7.128000px;}
._13_c00200{width:8.136000px;}
._1_c00200{width:9.144000px;}
._4_c00200{width:11.016000px;}
._3_c00200{width:12.168000px;}
._c_c00200{width:14.184000px;}
._0_c00200{width:15.408000px;}
._10_c00200{width:17.568000px;}
._6_c00200{width:412.248000px;}
.fc2_c00200{color:transparent;}
.fc1_c00200{color:rgb(128,128,128);}
.fc0_c00200{color:rgb(0,0,0);}
.fs1_c00200{font-size:48.000000px;}
.fs0_c00200{font-size:72.000000px;}
.y0_c00200{bottom:0.000000px;}
.y1f_c00200{bottom:3.105000px;}
.y1e_c00200{bottom:7.228355px;}
.y1d_c00200{bottom:58.935000px;}
.y1c_c00200{bottom:85.035000px;}
.y1b_c00200{bottom:109.335000px;}
.y1a_c00200{bottom:135.585000px;}
.y19_c00200{bottom:160.335000px;}
.y18_c00200{bottom:185.985000px;}
.y17_c00200{bottom:210.285000px;}
.y16_c00200{bottom:234.135000px;}
.y15_c00200{bottom:257.085000px;}
.y14_c00200{bottom:284.385000px;}
.y13_c00200{bottom:306.435000px;}
.y12_c00200{bottom:329.085000px;}
.y11_c00200{bottom:354.585000px;}
.y10_c00200{bottom:378.585000px;}
.yf_c00200{bottom:403.185000px;}
.ye_c00200{bottom:427.635000px;}
.yd_c00200{bottom:452.235000px;}
.yc_c00200{bottom:476.835000px;}
.yb_c00200{bottom:501.735000px;}
.ya_c00200{bottom:526.185000px;}
.y9_c00200{bottom:551.085000px;}
.y8_c00200{bottom:575.685000px;}
.y7_c00200{bottom:599.985000px;}
.y6_c00200{bottom:624.585000px;}
.y5_c00200{bottom:649.035000px;}
.y4_c00200{bottom:673.335000px;}
.y3_c00200{bottom:698.235000px;}
.y2_c00200{bottom:722.535000px;}
.y1_c00200{bottom:747.585000px;}
.h3_c00200{height:13.200074px;}
.h4_c00200{height:43.804688px;}
.h2_c00200{height:91.160156px;}
.h1_c00200{height:787.500000px;}
.h0_c00200{height:787.575000px;}
.w2_c00200{width:104.875500px;}
.w1_c00200{width:543.000000px;}
.w0_c00200{width:543.225000px;}
.x0_c00200{left:0.000000px;}
.x2_c00200{left:27.300000px;}
.x3_c00200{left:28.350000px;}
.x4_c00200{left:30.150000px;}
.x5_c00200{left:31.500000px;}
.x6_c00200{left:33.450000px;}
.x7_c00200{left:34.500000px;}
.x8_c00200{left:35.550000px;}
.x9_c00200{left:36.750000px;}
.xa_c00200{left:38.250000px;}
.xb_c00200{left:39.450000px;}
.x1_c00200{left:132.600000px;}
.xd_c00200{left:223.426758px;}
.xc_c00200{left:389.550000px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls1_c00200{letter-spacing:0.000000pt;}
.ls0_c00200{letter-spacing:2.666667pt;}
.ws0_c00200{word-spacing:-29.504000pt;}
.ws1_c00200{word-spacing:-18.090667pt;}
.ws2_c00200{word-spacing:0.000000pt;}
._11_c00200{margin-left:-28.800000pt;}
._14_c00200{margin-left:-7.616000pt;}
._12_c00200{margin-left:-6.400000pt;}
._e_c00200{margin-left:-5.312000pt;}
._f_c00200{margin-left:-4.288000pt;}
._8_c00200{margin-left:-3.328000pt;}
._b_c00200{margin-left:-2.368000pt;}
._a_c00200{margin-left:-1.472000pt;}
._7_c00200{width:1.024000pt;}
._9_c00200{width:2.496000pt;}
._d_c00200{width:4.032000pt;}
._2_c00200{width:4.992000pt;}
._5_c00200{width:6.336000pt;}
._13_c00200{width:7.232000pt;}
._1_c00200{width:8.128000pt;}
._4_c00200{width:9.792000pt;}
._3_c00200{width:10.816000pt;}
._c_c00200{width:12.608000pt;}
._0_c00200{width:13.696000pt;}
._10_c00200{width:15.616000pt;}
._6_c00200{width:366.442667pt;}
.fs1_c00200{font-size:42.666667pt;}
.fs0_c00200{font-size:64.000000pt;}
.y0_c00200{bottom:0.000000pt;}
.y1f_c00200{bottom:2.760000pt;}
.y1e_c00200{bottom:6.425204pt;}
.y1d_c00200{bottom:52.386667pt;}
.y1c_c00200{bottom:75.586667pt;}
.y1b_c00200{bottom:97.186667pt;}
.y1a_c00200{bottom:120.520000pt;}
.y19_c00200{bottom:142.520000pt;}
.y18_c00200{bottom:165.320000pt;}
.y17_c00200{bottom:186.920000pt;}
.y16_c00200{bottom:208.120000pt;}
.y15_c00200{bottom:228.520000pt;}
.y14_c00200{bottom:252.786667pt;}
.y13_c00200{bottom:272.386667pt;}
.y12_c00200{bottom:292.520000pt;}
.y11_c00200{bottom:315.186667pt;}
.y10_c00200{bottom:336.520000pt;}
.yf_c00200{bottom:358.386667pt;}
.ye_c00200{bottom:380.120000pt;}
.yd_c00200{bottom:401.986667pt;}
.yc_c00200{bottom:423.853333pt;}
.yb_c00200{bottom:445.986667pt;}
.ya_c00200{bottom:467.720000pt;}
.y9_c00200{bottom:489.853333pt;}
.y8_c00200{bottom:511.720000pt;}
.y7_c00200{bottom:533.320000pt;}
.y6_c00200{bottom:555.186667pt;}
.y5_c00200{bottom:576.920000pt;}
.y4_c00200{bottom:598.520000pt;}
.y3_c00200{bottom:620.653333pt;}
.y2_c00200{bottom:642.253333pt;}
.y1_c00200{bottom:664.520000pt;}
.h3_c00200{height:11.733399pt;}
.h4_c00200{height:38.937500pt;}
.h2_c00200{height:81.031250pt;}
.h1_c00200{height:700.000000pt;}
.h0_c00200{height:700.066667pt;}
.w2_c00200{width:93.222667pt;}
.w1_c00200{width:482.666667pt;}
.w0_c00200{width:482.866667pt;}
.x0_c00200{left:0.000000pt;}
.x2_c00200{left:24.266667pt;}
.x3_c00200{left:25.200000pt;}
.x4_c00200{left:26.800000pt;}
.x5_c00200{left:28.000000pt;}
.x6_c00200{left:29.733333pt;}
.x7_c00200{left:30.666667pt;}
.x8_c00200{left:31.600000pt;}
.x9_c00200{left:32.666667pt;}
.xa_c00200{left:34.000000pt;}
.xb_c00200{left:35.066667pt;}
.x1_c00200{left:117.866667pt;}
.xd_c00200{left:198.601563pt;}
.xc_c00200{left:346.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d7d7edfab83f549a6f318800.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.480469;font-style:normal;font-weight:normal;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_c38ebecd0e50af8d45d773c2.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00201{font-family:ff3_c00201;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00201{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00201{vertical-align:0.000000px;}
.ls0_c00201{letter-spacing:0.000000px;}
.ls1_c00201{letter-spacing:3.000000px;}
.ls2_c00201{letter-spacing:6.000000px;}
.sc__c00201{text-shadow:none;}
.sc0_c00201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00201{-webkit-text-stroke:0px transparent;}
.sc0_c00201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00201{word-spacing:-13.680000px;}
.ws1_c00201{word-spacing:0.000000px;}
._6_c00201{margin-left:-12.024000px;}
._5_c00201{margin-left:-10.512000px;}
._f_c00201{margin-left:-8.208000px;}
._b_c00201{margin-left:-7.128000px;}
._12_c00201{margin-left:-6.120000px;}
._9_c00201{margin-left:-4.968000px;}
._d_c00201{margin-left:-3.960000px;}
._7_c00201{margin-left:-2.304000px;}
._a_c00201{margin-left:-1.224000px;}
._8_c00201{width:1.728000px;}
._e_c00201{width:3.312000px;}
._c_c00201{width:4.680000px;}
._0_c00201{width:6.480000px;}
._3_c00201{width:8.280000px;}
._4_c00201{width:9.780000px;}
._2_c00201{width:10.800000px;}
._1_c00201{width:12.300000px;}
._14_c00201{width:14.256000px;}
._11_c00201{width:15.552000px;}
._10_c00201{width:17.301000px;}
._13_c00201{width:35.208000px;}
.fc2_c00201{color:transparent;}
.fc1_c00201{color:rgb(128,128,128);}
.fc0_c00201{color:rgb(0,0,0);}
.fs3_c00201{font-size:48.000000px;}
.fs0_c00201{font-size:60.000000px;}
.fs2_c00201{font-size:63.000000px;}
.fs1_c00201{font-size:72.000000px;}
.y0_c00201{bottom:0.000000px;}
.y1f_c00201{bottom:3.105000px;}
.y1e_c00201{bottom:7.228355px;}
.y1d_c00201{bottom:68.835000px;}
.y1c_c00201{bottom:92.385000px;}
.y1b_c00201{bottom:117.435000px;}
.y1a_c00201{bottom:143.085000px;}
.y19_c00201{bottom:167.385000px;}
.y18_c00201{bottom:192.735000px;}
.y17_c00201{bottom:217.635000px;}
.y16_c00201{bottom:241.635000px;}
.y15_c00201{bottom:266.235000px;}
.y14_c00201{bottom:291.135000px;}
.y13_c00201{bottom:314.835000px;}
.y12_c00201{bottom:338.835000px;}
.y11_c00201{bottom:362.835000px;}
.y10_c00201{bottom:387.435000px;}
.yf_c00201{bottom:411.735000px;}
.ye_c00201{bottom:436.635000px;}
.yd_c00201{bottom:461.235000px;}
.yc_c00201{bottom:484.935000px;}
.yb_c00201{bottom:509.235000px;}
.ya_c00201{bottom:533.535000px;}
.y9_c00201{bottom:558.435000px;}
.y8_c00201{bottom:582.435000px;}
.y7_c00201{bottom:607.035000px;}
.y6_c00201{bottom:631.485000px;}
.y5_c00201{bottom:656.085000px;}
.y4_c00201{bottom:678.735000px;}
.y3_c00201{bottom:704.985000px;}
.y2_c00201{bottom:729.585000px;}
.y1_c00201{bottom:754.935000px;}
.h4_c00201{height:13.200074px;}
.h5_c00201{height:43.804688px;}
.h2_c00201{height:70.224609px;}
.h3_c00201{height:91.160156px;}
.h0_c00201{height:798.375000px;}
.h1_c00201{height:798.750000px;}
.w2_c00201{width:104.875500px;}
.w0_c00201{width:527.850000px;}
.w1_c00201{width:528.000000px;}
.x0_c00201{left:0.000000px;}
.x4_c00201{left:113.100000px;}
.x3_c00201{left:115.200000px;}
.x5_c00201{left:116.400000px;}
.x2_c00201{left:117.450000px;}
.x6_c00201{left:118.800000px;}
.x8_c00201{left:215.739258px;}
.x1_c00201{left:231.600000px;}
.x7_c00201{left:474.150000px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls0_c00201{letter-spacing:0.000000pt;}
.ls1_c00201{letter-spacing:2.666667pt;}
.ls2_c00201{letter-spacing:5.333333pt;}
.ws0_c00201{word-spacing:-12.160000pt;}
.ws1_c00201{word-spacing:0.000000pt;}
._6_c00201{margin-left:-10.688000pt;}
._5_c00201{margin-left:-9.344000pt;}
._f_c00201{margin-left:-7.296000pt;}
._b_c00201{margin-left:-6.336000pt;}
._12_c00201{margin-left:-5.440000pt;}
._9_c00201{margin-left:-4.416000pt;}
._d_c00201{margin-left:-3.520000pt;}
._7_c00201{margin-left:-2.048000pt;}
._a_c00201{margin-left:-1.088000pt;}
._8_c00201{width:1.536000pt;}
._e_c00201{width:2.944000pt;}
._c_c00201{width:4.160000pt;}
._0_c00201{width:5.760000pt;}
._3_c00201{width:7.360000pt;}
._4_c00201{width:8.693333pt;}
._2_c00201{width:9.600000pt;}
._1_c00201{width:10.933333pt;}
._14_c00201{width:12.672000pt;}
._11_c00201{width:13.824000pt;}
._10_c00201{width:15.378667pt;}
._13_c00201{width:31.296000pt;}
.fs3_c00201{font-size:42.666667pt;}
.fs0_c00201{font-size:53.333333pt;}
.fs2_c00201{font-size:56.000000pt;}
.fs1_c00201{font-size:64.000000pt;}
.y0_c00201{bottom:0.000000pt;}
.y1f_c00201{bottom:2.760000pt;}
.y1e_c00201{bottom:6.425204pt;}
.y1d_c00201{bottom:61.186667pt;}
.y1c_c00201{bottom:82.120000pt;}
.y1b_c00201{bottom:104.386667pt;}
.y1a_c00201{bottom:127.186667pt;}
.y19_c00201{bottom:148.786667pt;}
.y18_c00201{bottom:171.320000pt;}
.y17_c00201{bottom:193.453333pt;}
.y16_c00201{bottom:214.786667pt;}
.y15_c00201{bottom:236.653333pt;}
.y14_c00201{bottom:258.786667pt;}
.y13_c00201{bottom:279.853333pt;}
.y12_c00201{bottom:301.186667pt;}
.y11_c00201{bottom:322.520000pt;}
.y10_c00201{bottom:344.386667pt;}
.yf_c00201{bottom:365.986667pt;}
.ye_c00201{bottom:388.120000pt;}
.yd_c00201{bottom:409.986667pt;}
.yc_c00201{bottom:431.053333pt;}
.yb_c00201{bottom:452.653333pt;}
.ya_c00201{bottom:474.253333pt;}
.y9_c00201{bottom:496.386667pt;}
.y8_c00201{bottom:517.720000pt;}
.y7_c00201{bottom:539.586667pt;}
.y6_c00201{bottom:561.320000pt;}
.y5_c00201{bottom:583.186667pt;}
.y4_c00201{bottom:603.320000pt;}
.y3_c00201{bottom:626.653333pt;}
.y2_c00201{bottom:648.520000pt;}
.y1_c00201{bottom:671.053333pt;}
.h4_c00201{height:11.733399pt;}
.h5_c00201{height:38.937500pt;}
.h2_c00201{height:62.421875pt;}
.h3_c00201{height:81.031250pt;}
.h0_c00201{height:709.666667pt;}
.h1_c00201{height:710.000000pt;}
.w2_c00201{width:93.222667pt;}
.w0_c00201{width:469.200000pt;}
.w1_c00201{width:469.333333pt;}
.x0_c00201{left:0.000000pt;}
.x4_c00201{left:100.533333pt;}
.x3_c00201{left:102.400000pt;}
.x5_c00201{left:103.466667pt;}
.x2_c00201{left:104.400000pt;}
.x6_c00201{left:105.600000pt;}
.x8_c00201{left:191.768229pt;}
.x1_c00201{left:205.866667pt;}
.x7_c00201{left:421.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4f0c239cba18796e0e1d9238.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.480469;font-style:normal;font-weight:normal;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_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00202;src:url('chunks/assets/font_89a285f004f4bc00a5711e3f.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:1.568848;font-style:normal;font-weight:normal;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_5e8d99d8e7502dd895675575.woff2')format("woff");}.ff4_c00202{font-family:ff4_c00202;line-height:1.592000;font-style:normal;font-weight:normal;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_16b51c44c211b2f1ec5388f5.woff2')format("woff");}.ff5_c00202{font-family:ff5_c00202;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00202;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00202{font-family:ff6_c00202;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00202{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00202{vertical-align:0.000000px;}
.ls2_c00202{letter-spacing:0.000000px;}
.ls0_c00202{letter-spacing:0.588000px;}
.ls1_c00202{letter-spacing:3.000000px;}
.sc__c00202{text-shadow:none;}
.sc0_c00202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00202{-webkit-text-stroke:0px transparent;}
.sc0_c00202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00202{word-spacing:-39.000000px;}
.ws3_c00202{word-spacing:-20.352000px;}
.ws2_c00202{word-spacing:-19.818000px;}
.ws0_c00202{word-spacing:-17.352000px;}
.ws4_c00202{word-spacing:0.000000px;}
._11_c00202{margin-left:-16.056000px;}
._10_c00202{margin-left:-14.568000px;}
._c_c00202{margin-left:-10.800000px;}
._4_c00202{margin-left:-8.736000px;}
._14_c00202{margin-left:-7.608000px;}
._12_c00202{margin-left:-6.336000px;}
._9_c00202{margin-left:-5.112000px;}
._8_c00202{margin-left:-3.600000px;}
._6_c00202{margin-left:-2.592000px;}
._d_c00202{margin-left:-1.152000px;}
._7_c00202{width:1.224000px;}
._5_c00202{width:2.232000px;}
._3_c00202{width:4.104000px;}
._1_c00202{width:5.400000px;}
._2_c00202{width:7.128000px;}
._0_c00202{width:8.496000px;}
._15_c00202{width:9.918000px;}
._f_c00202{width:11.664000px;}
._e_c00202{width:13.392000px;}
._13_c00202{width:14.544000px;}
._b_c00202{width:16.176000px;}
._a_c00202{width:23.136000px;}
._16_c00202{width:212.517000px;}
.fc2_c00202{color:transparent;}
.fc1_c00202{color:rgb(128,128,128);}
.fc0_c00202{color:rgb(0,0,0);}
.fs5_c00202{font-size:48.000000px;}
.fs2_c00202{font-size:54.000000px;}
.fs3_c00202{font-size:63.000000px;}
.fs4_c00202{font-size:69.000000px;}
.fs0_c00202{font-size:72.000000px;}
.fs1_c00202{font-size:78.000000px;}
.y0_c00202{bottom:0.000000px;}
.y1f_c00202{bottom:3.105000px;}
.y1e_c00202{bottom:7.228357px;}
.y1d_c00202{bottom:65.130000px;}
.y1c_c00202{bottom:90.780000px;}
.y1b_c00202{bottom:116.130000px;}
.y1a_c00202{bottom:141.180000px;}
.y19_c00202{bottom:166.680000px;}
.y18_c00202{bottom:189.330000px;}
.y17_c00202{bottom:216.030000px;}
.y16_c00202{bottom:241.080000px;}
.y15_c00202{bottom:266.580000px;}
.y14_c00202{bottom:289.530000px;}
.y13_c00202{bottom:313.830000px;}
.y12_c00202{bottom:335.430000px;}
.y11_c00202{bottom:359.730000px;}
.y10_c00202{bottom:384.480000px;}
.yf_c00202{bottom:409.080000px;}
.ye_c00202{bottom:434.430000px;}
.yd_c00202{bottom:458.430000px;}
.yc_c00202{bottom:483.630000px;}
.yb_c00202{bottom:507.930000px;}
.ya_c00202{bottom:532.530000px;}
.y9_c00202{bottom:557.580000px;}
.y8_c00202{bottom:581.580000px;}
.y7_c00202{bottom:606.930000px;}
.y6_c00202{bottom:631.230000px;}
.y5_c00202{bottom:656.130000px;}
.y4_c00202{bottom:680.130000px;}
.y3_c00202{bottom:705.330000px;}
.y2_c00202{bottom:729.330000px;}
.y1_c00202{bottom:754.980000px;}
.h3_c00202{height:13.200074px;}
.h4_c00202{height:43.804688px;}
.h2_c00202{height:87.361816px;}
.h1_c00202{height:91.160156px;}
.h0_c00202{height:806.250000px;}
.w2_c00202{width:104.875500px;}
.w1_c00202{width:528.750000px;}
.w0_c00202{width:528.900000px;}
.x0_c00202{left:0.000000px;}
.x6_c00202{left:31.650000px;}
.x5_c00202{left:33.000000px;}
.x4_c00202{left:34.050000px;}
.x3_c00202{left:35.100000px;}
.x2_c00202{left:37.350000px;}
.x7_c00202{left:108.600000px;}
.x1_c00202{left:159.300000px;}
.x9_c00202{left:216.264267px;}
.x8_c00202{left:307.350000px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls2_c00202{letter-spacing:0.000000pt;}
.ls0_c00202{letter-spacing:0.522667pt;}
.ls1_c00202{letter-spacing:2.666667pt;}
.ws1_c00202{word-spacing:-34.666667pt;}
.ws3_c00202{word-spacing:-18.090667pt;}
.ws2_c00202{word-spacing:-17.616000pt;}
.ws0_c00202{word-spacing:-15.424000pt;}
.ws4_c00202{word-spacing:0.000000pt;}
._11_c00202{margin-left:-14.272000pt;}
._10_c00202{margin-left:-12.949333pt;}
._c_c00202{margin-left:-9.600000pt;}
._4_c00202{margin-left:-7.765333pt;}
._14_c00202{margin-left:-6.762667pt;}
._12_c00202{margin-left:-5.632000pt;}
._9_c00202{margin-left:-4.544000pt;}
._8_c00202{margin-left:-3.200000pt;}
._6_c00202{margin-left:-2.304000pt;}
._d_c00202{margin-left:-1.024000pt;}
._7_c00202{width:1.088000pt;}
._5_c00202{width:1.984000pt;}
._3_c00202{width:3.648000pt;}
._1_c00202{width:4.800000pt;}
._2_c00202{width:6.336000pt;}
._0_c00202{width:7.552000pt;}
._15_c00202{width:8.816000pt;}
._f_c00202{width:10.368000pt;}
._e_c00202{width:11.904000pt;}
._13_c00202{width:12.928000pt;}
._b_c00202{width:14.378667pt;}
._a_c00202{width:20.565333pt;}
._16_c00202{width:188.904000pt;}
.fs5_c00202{font-size:42.666667pt;}
.fs2_c00202{font-size:48.000000pt;}
.fs3_c00202{font-size:56.000000pt;}
.fs4_c00202{font-size:61.333333pt;}
.fs0_c00202{font-size:64.000000pt;}
.fs1_c00202{font-size:69.333333pt;}
.y0_c00202{bottom:0.000000pt;}
.y1f_c00202{bottom:2.760000pt;}
.y1e_c00202{bottom:6.425206pt;}
.y1d_c00202{bottom:57.893333pt;}
.y1c_c00202{bottom:80.693333pt;}
.y1b_c00202{bottom:103.226667pt;}
.y1a_c00202{bottom:125.493333pt;}
.y19_c00202{bottom:148.160000pt;}
.y18_c00202{bottom:168.293333pt;}
.y17_c00202{bottom:192.026667pt;}
.y16_c00202{bottom:214.293333pt;}
.y15_c00202{bottom:236.960000pt;}
.y14_c00202{bottom:257.360000pt;}
.y13_c00202{bottom:278.960000pt;}
.y12_c00202{bottom:298.160000pt;}
.y11_c00202{bottom:319.760000pt;}
.y10_c00202{bottom:341.760000pt;}
.yf_c00202{bottom:363.626667pt;}
.ye_c00202{bottom:386.160000pt;}
.yd_c00202{bottom:407.493333pt;}
.yc_c00202{bottom:429.893333pt;}
.yb_c00202{bottom:451.493333pt;}
.ya_c00202{bottom:473.360000pt;}
.y9_c00202{bottom:495.626667pt;}
.y8_c00202{bottom:516.960000pt;}
.y7_c00202{bottom:539.493333pt;}
.y6_c00202{bottom:561.093333pt;}
.y5_c00202{bottom:583.226667pt;}
.y4_c00202{bottom:604.560000pt;}
.y3_c00202{bottom:626.960000pt;}
.y2_c00202{bottom:648.293333pt;}
.y1_c00202{bottom:671.093333pt;}
.h3_c00202{height:11.733399pt;}
.h4_c00202{height:38.937500pt;}
.h2_c00202{height:77.654948pt;}
.h1_c00202{height:81.031250pt;}
.h0_c00202{height:716.666667pt;}
.w2_c00202{width:93.222667pt;}
.w1_c00202{width:470.000000pt;}
.w0_c00202{width:470.133333pt;}
.x0_c00202{left:0.000000pt;}
.x6_c00202{left:28.133333pt;}
.x5_c00202{left:29.333333pt;}
.x4_c00202{left:30.266667pt;}
.x3_c00202{left:31.200000pt;}
.x2_c00202{left:33.200000pt;}
.x7_c00202{left:96.533333pt;}
.x1_c00202{left:141.600000pt;}
.x9_c00202{left:192.234904pt;}
.x8_c00202{left:273.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e346f8ec73b7c217104be97.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00203;src:url('chunks/assets/font_78869892a627fc31e47e62e6.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.568848;font-style:normal;font-weight:normal;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_7656a1ee68a5890d18c88a86.woff2')format("woff");}.ff3_c00203{font-family:ff3_c00203;line-height:1.480469;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00203{font-family:ff4_c00203;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00203;src:url('chunks/assets/font_8ad6ffb38eb05d554ed97002.woff2')format("woff");}.ff5_c00203{font-family:ff5_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00203;src:url('chunks/assets/font_c4aaf651b1dd1919598b7827.woff2')format("woff");}.ff6_c00203{font-family:ff6_c00203;line-height:1.575000;font-style:normal;font-weight: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_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00203{font-family:ff7_c00203;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00203{vertical-align:0.000000px;}
.ls6_c00203{letter-spacing:0.000000px;}
.ls5_c00203{letter-spacing:3.000000px;}
.ls2_c00203{letter-spacing:4.500000px;}
.ls3_c00203{letter-spacing:6.000000px;}
.ls4_c00203{letter-spacing:7.200000px;}
.ls0_c00203{letter-spacing:7.560000px;}
.ls1_c00203{letter-spacing:15.300000px;}
.sc__c00203{text-shadow:none;}
.sc0_c00203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00203{-webkit-text-stroke:0px transparent;}
.sc0_c00203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00203{word-spacing:-36.051000px;}
.ws2_c00203{word-spacing:-33.192000px;}
.ws0_c00203{word-spacing:-21.750000px;}
.ws3_c00203{word-spacing:-20.352000px;}
.ws4_c00203{word-spacing:0.000000px;}
._c_c00203{margin-left:-21.663000px;}
._a_c00203{margin-left:-14.202000px;}
._7_c00203{margin-left:-12.024000px;}
._6_c00203{margin-left:-10.224000px;}
._e_c00203{margin-left:-7.536000px;}
._b_c00203{margin-left:-6.438000px;}
._d_c00203{margin-left:-4.548000px;}
._9_c00203{margin-left:-3.120000px;}
._8_c00203{margin-left:-1.368000px;}
._1_c00203{width:1.848000px;}
._10_c00203{width:2.859000px;}
._0_c00203{width:3.864000px;}
._3_c00203{width:5.208000px;}
._5_c00203{width:6.384000px;}
._4_c00203{width:8.064000px;}
._12_c00203{width:9.936000px;}
._2_c00203{width:11.088000px;}
._f_c00203{width:12.888000px;}
._11_c00203{width:15.093000px;}
.fc2_c00203{color:transparent;}
.fc1_c00203{color:rgb(128,128,128);}
.fc0_c00203{color:rgb(0,0,0);}
.fs7_c00203{font-size:48.000000px;}
.fs3_c00203{font-size:60.000000px;}
.fs6_c00203{font-size:63.000000px;}
.fs1_c00203{font-size:72.000000px;}
.fs5_c00203{font-size:75.000000px;}
.fs0_c00203{font-size:84.000000px;}
.fs2_c00203{font-size:87.000000px;}
.fs4_c00203{font-size:90.000000px;}
.y0_c00203{bottom:0.000000px;}
.y1f_c00203{bottom:3.105000px;}
.y1e_c00203{bottom:7.228363px;}
.y1d_c00203{bottom:64.800000px;}
.y1c_c00203{bottom:87.300000px;}
.y1b_c00203{bottom:113.100000px;}
.y1a_c00203{bottom:137.700000px;}
.y19_c00203{bottom:163.650000px;}
.y18_c00203{bottom:188.250000px;}
.y17_c00203{bottom:213.600000px;}
.y16_c00203{bottom:237.150000px;}
.y15_c00203{bottom:261.600000px;}
.y14_c00203{bottom:286.200000px;}
.y13_c00203{bottom:311.550000px;}
.y12_c00203{bottom:334.350000px;}
.y11_c00203{bottom:359.100000px;}
.y10_c00203{bottom:383.700000px;}
.yf_c00203{bottom:408.300000px;}
.ye_c00203{bottom:432.600000px;}
.yd_c00203{bottom:457.200000px;}
.yc_c00203{bottom:481.200000px;}
.yb_c00203{bottom:505.200000px;}
.ya_c00203{bottom:530.250000px;}
.y9_c00203{bottom:554.550000px;}
.y8_c00203{bottom:579.150000px;}
.y7_c00203{bottom:603.150000px;}
.y6_c00203{bottom:627.750000px;}
.y5_c00203{bottom:652.350000px;}
.y4_c00203{bottom:676.650000px;}
.y3_c00203{bottom:701.700000px;}
.y2_c00203{bottom:726.000000px;}
.y1_c00203{bottom:751.650000px;}
.h5_c00203{height:13.200074px;}
.h6_c00203{height:43.804688px;}
.h2_c00203{height:82.400391px;}
.h3_c00203{height:91.160156px;}
.h4_c00203{height:110.151855px;}
.h1_c00203{height:800.250000px;}
.h0_c00203{height:800.550000px;}
.w2_c00203{width:104.875500px;}
.w0_c00203{width:538.125000px;}
.w1_c00203{width:538.500000px;}
.x0_c00203{left:0.000000px;}
.x6_c00203{left:127.350000px;}
.x5_c00203{left:128.550000px;}
.x2_c00203{left:130.050000px;}
.x3_c00203{left:131.250000px;}
.x4_c00203{left:134.100000px;}
.x8_c00203{left:220.876740px;}
.x1_c00203{left:246.750000px;}
.x7_c00203{left:471.900000px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls6_c00203{letter-spacing:0.000000pt;}
.ls5_c00203{letter-spacing:2.666667pt;}
.ls2_c00203{letter-spacing:4.000000pt;}
.ls3_c00203{letter-spacing:5.333333pt;}
.ls4_c00203{letter-spacing:6.400000pt;}
.ls0_c00203{letter-spacing:6.720000pt;}
.ls1_c00203{letter-spacing:13.600000pt;}
.ws1_c00203{word-spacing:-32.045333pt;}
.ws2_c00203{word-spacing:-29.504000pt;}
.ws0_c00203{word-spacing:-19.333333pt;}
.ws3_c00203{word-spacing:-18.090667pt;}
.ws4_c00203{word-spacing:0.000000pt;}
._c_c00203{margin-left:-19.256000pt;}
._a_c00203{margin-left:-12.624000pt;}
._7_c00203{margin-left:-10.688000pt;}
._6_c00203{margin-left:-9.088000pt;}
._e_c00203{margin-left:-6.698667pt;}
._b_c00203{margin-left:-5.722667pt;}
._d_c00203{margin-left:-4.042667pt;}
._9_c00203{margin-left:-2.773333pt;}
._8_c00203{margin-left:-1.216000pt;}
._1_c00203{width:1.642667pt;}
._10_c00203{width:2.541333pt;}
._0_c00203{width:3.434667pt;}
._3_c00203{width:4.629333pt;}
._5_c00203{width:5.674667pt;}
._4_c00203{width:7.168000pt;}
._12_c00203{width:8.832000pt;}
._2_c00203{width:9.856000pt;}
._f_c00203{width:11.456000pt;}
._11_c00203{width:13.416000pt;}
.fs7_c00203{font-size:42.666667pt;}
.fs3_c00203{font-size:53.333333pt;}
.fs6_c00203{font-size:56.000000pt;}
.fs1_c00203{font-size:64.000000pt;}
.fs5_c00203{font-size:66.666667pt;}
.fs0_c00203{font-size:74.666667pt;}
.fs2_c00203{font-size:77.333333pt;}
.fs4_c00203{font-size:80.000000pt;}
.y0_c00203{bottom:0.000000pt;}
.y1f_c00203{bottom:2.760000pt;}
.y1e_c00203{bottom:6.425212pt;}
.y1d_c00203{bottom:57.600000pt;}
.y1c_c00203{bottom:77.600000pt;}
.y1b_c00203{bottom:100.533333pt;}
.y1a_c00203{bottom:122.400000pt;}
.y19_c00203{bottom:145.466667pt;}
.y18_c00203{bottom:167.333333pt;}
.y17_c00203{bottom:189.866667pt;}
.y16_c00203{bottom:210.800000pt;}
.y15_c00203{bottom:232.533333pt;}
.y14_c00203{bottom:254.400000pt;}
.y13_c00203{bottom:276.933333pt;}
.y12_c00203{bottom:297.200000pt;}
.y11_c00203{bottom:319.200000pt;}
.y10_c00203{bottom:341.066667pt;}
.yf_c00203{bottom:362.933333pt;}
.ye_c00203{bottom:384.533333pt;}
.yd_c00203{bottom:406.400000pt;}
.yc_c00203{bottom:427.733333pt;}
.yb_c00203{bottom:449.066667pt;}
.ya_c00203{bottom:471.333333pt;}
.y9_c00203{bottom:492.933333pt;}
.y8_c00203{bottom:514.800000pt;}
.y7_c00203{bottom:536.133333pt;}
.y6_c00203{bottom:558.000000pt;}
.y5_c00203{bottom:579.866667pt;}
.y4_c00203{bottom:601.466667pt;}
.y3_c00203{bottom:623.733333pt;}
.y2_c00203{bottom:645.333333pt;}
.y1_c00203{bottom:668.133333pt;}
.h5_c00203{height:11.733399pt;}
.h6_c00203{height:38.937500pt;}
.h2_c00203{height:73.244792pt;}
.h3_c00203{height:81.031250pt;}
.h4_c00203{height:97.912760pt;}
.h1_c00203{height:711.333333pt;}
.h0_c00203{height:711.600000pt;}
.w2_c00203{width:93.222667pt;}
.w0_c00203{width:478.333333pt;}
.w1_c00203{width:478.666667pt;}
.x0_c00203{left:0.000000pt;}
.x6_c00203{left:113.200000pt;}
.x5_c00203{left:114.266667pt;}
.x2_c00203{left:115.600000pt;}
.x3_c00203{left:116.666667pt;}
.x4_c00203{left:119.200000pt;}
.x8_c00203{left:196.334880pt;}
.x1_c00203{left:219.333333pt;}
.x7_c00203{left:419.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7a174ac85082b446acf78f62.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.480469;font-style:normal;font-weight:normal;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_92bd3627bf07302a9c29a50e.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00204{font-family:ff3_c00204;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00204{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00204{vertical-align:0.000000px;}
.ls0_c00204{letter-spacing:0.000000px;}
.ls1_c00204{letter-spacing:3.000000px;}
.ls2_c00204{letter-spacing:6.000000px;}
.sc__c00204{text-shadow:none;}
.sc0_c00204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00204{-webkit-text-stroke:0px transparent;}
.sc0_c00204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00204{word-spacing:0.000000px;}
._16_c00204{margin-left:-10.656000px;}
._e_c00204{margin-left:-8.928000px;}
._15_c00204{margin-left:-7.776000px;}
._10_c00204{margin-left:-6.768000px;}
._f_c00204{margin-left:-5.616000px;}
._d_c00204{margin-left:-4.392000px;}
._8_c00204{margin-left:-2.664000px;}
._7_c00204{margin-left:-1.224000px;}
._9_c00204{width:1.008000px;}
._b_c00204{width:2.232000px;}
._3_c00204{width:3.816000px;}
._12_c00204{width:4.896000px;}
._1_c00204{width:5.904000px;}
._a_c00204{width:7.560000px;}
._4_c00204{width:8.712000px;}
._2_c00204{width:10.224000px;}
._13_c00204{width:11.520000px;}
._0_c00204{width:12.672000px;}
._11_c00204{width:14.040000px;}
._c_c00204{width:16.272000px;}
._6_c00204{width:19.800000px;}
._17_c00204{width:36.216000px;}
._18_c00204{width:217.872000px;}
._5_c00204{width:331.272000px;}
._14_c00204{width:336.816000px;}
.fc2_c00204{color:transparent;}
.fc1_c00204{color:rgb(128,128,128);}
.fc0_c00204{color:rgb(0,0,0);}
.fs2_c00204{font-size:48.000000px;}
.fs1_c00204{font-size:63.000000px;}
.fs0_c00204{font-size:72.000000px;}
.y0_c00204{bottom:0.000000px;}
.y1f_c00204{bottom:3.105000px;}
.y1e_c00204{bottom:7.228355px;}
.y1d_c00204{bottom:52.635000px;}
.y1c_c00204{bottom:77.985000px;}
.y1b_c00204{bottom:103.185000px;}
.y1a_c00204{bottom:127.935000px;}
.y19_c00204{bottom:153.135000px;}
.y18_c00204{bottom:177.885000px;}
.y17_c00204{bottom:202.485000px;}
.y16_c00204{bottom:227.685000px;}
.y15_c00204{bottom:251.685000px;}
.y14_c00204{bottom:276.285000px;}
.y13_c00204{bottom:299.985000px;}
.y12_c00204{bottom:322.335000px;}
.y11_c00204{bottom:346.935000px;}
.y10_c00204{bottom:370.485000px;}
.yf_c00204{bottom:396.885000px;}
.ye_c00204{bottom:419.835000px;}
.yd_c00204{bottom:444.735000px;}
.yc_c00204{bottom:469.785000px;}
.yb_c00204{bottom:494.685000px;}
.ya_c00204{bottom:519.435000px;}
.y9_c00204{bottom:544.035000px;}
.y8_c00204{bottom:568.635000px;}
.y7_c00204{bottom:592.935000px;}
.y6_c00204{bottom:618.585000px;}
.y5_c00204{bottom:642.585000px;}
.y4_c00204{bottom:666.585000px;}
.y3_c00204{bottom:690.885000px;}
.y2_c00204{bottom:715.785000px;}
.y1_c00204{bottom:740.685000px;}
.h4_c00204{height:13.200074px;}
.h5_c00204{height:43.804688px;}
.h2_c00204{height:84.269531px;}
.h3_c00204{height:91.160156px;}
.h0_c00204{height:791.625000px;}
.h1_c00204{height:792.000000px;}
.w1_c00204{width:104.875500px;}
.w0_c00204{width:536.250000px;}
.x0_c00204{left:0.000000px;}
.x5_c00204{left:42.450000px;}
.x4_c00204{left:43.500000px;}
.x2_c00204{left:44.550000px;}
.x3_c00204{left:46.200000px;}
.x1_c00204{left:177.450000px;}
.x7_c00204{left:219.939240px;}
.x6_c00204{left:294.000000px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls0_c00204{letter-spacing:0.000000pt;}
.ls1_c00204{letter-spacing:2.666667pt;}
.ls2_c00204{letter-spacing:5.333333pt;}
.ws0_c00204{word-spacing:0.000000pt;}
._16_c00204{margin-left:-9.472000pt;}
._e_c00204{margin-left:-7.936000pt;}
._15_c00204{margin-left:-6.912000pt;}
._10_c00204{margin-left:-6.016000pt;}
._f_c00204{margin-left:-4.992000pt;}
._d_c00204{margin-left:-3.904000pt;}
._8_c00204{margin-left:-2.368000pt;}
._7_c00204{margin-left:-1.088000pt;}
._9_c00204{width:0.896000pt;}
._b_c00204{width:1.984000pt;}
._3_c00204{width:3.392000pt;}
._12_c00204{width:4.352000pt;}
._1_c00204{width:5.248000pt;}
._a_c00204{width:6.720000pt;}
._4_c00204{width:7.744000pt;}
._2_c00204{width:9.088000pt;}
._13_c00204{width:10.240000pt;}
._0_c00204{width:11.264000pt;}
._11_c00204{width:12.480000pt;}
._c_c00204{width:14.464000pt;}
._6_c00204{width:17.600000pt;}
._17_c00204{width:32.192000pt;}
._18_c00204{width:193.664000pt;}
._5_c00204{width:294.464000pt;}
._14_c00204{width:299.392000pt;}
.fs2_c00204{font-size:42.666667pt;}
.fs1_c00204{font-size:56.000000pt;}
.fs0_c00204{font-size:64.000000pt;}
.y0_c00204{bottom:0.000000pt;}
.y1f_c00204{bottom:2.760000pt;}
.y1e_c00204{bottom:6.425204pt;}
.y1d_c00204{bottom:46.786667pt;}
.y1c_c00204{bottom:69.320000pt;}
.y1b_c00204{bottom:91.720000pt;}
.y1a_c00204{bottom:113.720000pt;}
.y19_c00204{bottom:136.120000pt;}
.y18_c00204{bottom:158.120000pt;}
.y17_c00204{bottom:179.986667pt;}
.y16_c00204{bottom:202.386667pt;}
.y15_c00204{bottom:223.720000pt;}
.y14_c00204{bottom:245.586667pt;}
.y13_c00204{bottom:266.653333pt;}
.y12_c00204{bottom:286.520000pt;}
.y11_c00204{bottom:308.386667pt;}
.y10_c00204{bottom:329.320000pt;}
.yf_c00204{bottom:352.786667pt;}
.ye_c00204{bottom:373.186667pt;}
.yd_c00204{bottom:395.320000pt;}
.yc_c00204{bottom:417.586667pt;}
.yb_c00204{bottom:439.720000pt;}
.ya_c00204{bottom:461.720000pt;}
.y9_c00204{bottom:483.586667pt;}
.y8_c00204{bottom:505.453333pt;}
.y7_c00204{bottom:527.053333pt;}
.y6_c00204{bottom:549.853333pt;}
.y5_c00204{bottom:571.186667pt;}
.y4_c00204{bottom:592.520000pt;}
.y3_c00204{bottom:614.120000pt;}
.y2_c00204{bottom:636.253333pt;}
.y1_c00204{bottom:658.386667pt;}
.h4_c00204{height:11.733399pt;}
.h5_c00204{height:38.937500pt;}
.h2_c00204{height:74.906250pt;}
.h3_c00204{height:81.031250pt;}
.h0_c00204{height:703.666667pt;}
.h1_c00204{height:704.000000pt;}
.w1_c00204{width:93.222667pt;}
.w0_c00204{width:476.666667pt;}
.x0_c00204{left:0.000000pt;}
.x5_c00204{left:37.733333pt;}
.x4_c00204{left:38.666667pt;}
.x2_c00204{left:39.600000pt;}
.x3_c00204{left:41.066667pt;}
.x1_c00204{left:157.733333pt;}
.x7_c00204{left:195.501546pt;}
.x6_c00204{left:261.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_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_6c62ded490bcdc835001ba1e.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.592000;font-style:normal;font-weight:normal;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_6dd1ef19cca88e5a6e202b48.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:1.480469;font-style:normal;font-weight:normal;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_88b737c6834437b7b5325505.woff2')format("woff");}.ff3_c00205{font-family:ff3_c00205;line-height:1.568848;font-style:normal;font-weight:normal;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_b2d8435503f6068e550d9e4b.woff2')format("woff");}.ff4_c00205{font-family:ff4_c00205;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00205;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00205{font-family:ff5_c00205;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.ls2_c00205{letter-spacing:-3.000000px;}
.ls1_c00205{letter-spacing:0.000000px;}
.ls3_c00205{letter-spacing:3.000000px;}
.ls0_c00205{letter-spacing:3.588000px;}
.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:-37.107000px;}
.ws1_c00205{word-spacing:-33.192000px;}
.ws2_c00205{word-spacing:0.000000px;}
._6_c00205{margin-left:-12.528000px;}
._13_c00205{margin-left:-9.648000px;}
._b_c00205{margin-left:-8.616000px;}
._c_c00205{margin-left:-7.080000px;}
._d_c00205{margin-left:-5.832000px;}
._9_c00205{margin-left:-4.632000px;}
._7_c00205{margin-left:-3.240000px;}
._8_c00205{margin-left:-1.992000px;}
._3_c00205{width:1.320000px;}
._4_c00205{width:2.784000px;}
._5_c00205{width:4.176000px;}
._f_c00205{width:5.232000px;}
._0_c00205{width:6.300000px;}
._11_c00205{width:7.608000px;}
._e_c00205{width:9.240000px;}
._12_c00205{width:10.560000px;}
._a_c00205{width:11.808000px;}
._10_c00205{width:13.536000px;}
._1_c00205{width:14.700000px;}
._2_c00205{width:16.020000px;}
._14_c00205{width:22.032000px;}
.fc2_c00205{color:transparent;}
.fc1_c00205{color:rgb(128,128,128);}
.fc0_c00205{color:rgb(0,0,0);}
.fs4_c00205{font-size:48.000000px;}
.fs0_c00205{font-size:60.000000px;}
.fs3_c00205{font-size:63.000000px;}
.fs2_c00205{font-size:72.000000px;}
.fs1_c00205{font-size:87.000000px;}
.y0_c00205{bottom:0.000000px;}
.y1f_c00205{bottom:3.105000px;}
.y1e_c00205{bottom:7.228355px;}
.y1d_c00205{bottom:43.185000px;}
.y1c_c00205{bottom:68.835000px;}
.y1b_c00205{bottom:93.735000px;}
.y1a_c00205{bottom:118.335000px;}
.y19_c00205{bottom:143.985000px;}
.y18_c00205{bottom:168.735000px;}
.y17_c00205{bottom:193.335000px;}
.y16_c00205{bottom:218.685000px;}
.y15_c00205{bottom:243.285000px;}
.y14_c00205{bottom:266.985000px;}
.y13_c00205{bottom:291.585000px;}
.y12_c00205{bottom:315.585000px;}
.y11_c00205{bottom:340.185000px;}
.y10_c00205{bottom:364.185000px;}
.yf_c00205{bottom:388.785000px;}
.ye_c00205{bottom:412.785000px;}
.yd_c00205{bottom:437.985000px;}
.yc_c00205{bottom:461.685000px;}
.yb_c00205{bottom:486.285000px;}
.ya_c00205{bottom:510.285000px;}
.y9_c00205{bottom:535.635000px;}
.y8_c00205{bottom:559.935000px;}
.y7_c00205{bottom:584.535000px;}
.y6_c00205{bottom:609.135000px;}
.y5_c00205{bottom:633.735000px;}
.y4_c00205{bottom:658.035000px;}
.y3_c00205{bottom:683.085000px;}
.y2_c00205{bottom:707.685000px;}
.y1_c00205{bottom:732.585000px;}
.h5_c00205{height:13.200074px;}
.h6_c00205{height:43.804688px;}
.h4_c00205{height:84.269531px;}
.h3_c00205{height:91.160156px;}
.h2_c00205{height:101.825684px;}
.h1_c00205{height:779.250000px;}
.h0_c00205{height:779.475000px;}
.w1_c00205{width:104.875500px;}
.w0_c00205{width:533.250000px;}
.x0_c00205{left:0.000000px;}
.x2_c00205{left:111.750000px;}
.x6_c00205{left:115.050000px;}
.x7_c00205{left:116.550000px;}
.x5_c00205{left:118.500000px;}
.x3_c00205{left:119.700000px;}
.x4_c00205{left:121.500000px;}
.x9_c00205{left:218.439240px;}
.x1_c00205{left:229.500000px;}
.x8_c00205{left:442.800000px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls2_c00205{letter-spacing:-2.666667pt;}
.ls1_c00205{letter-spacing:0.000000pt;}
.ls3_c00205{letter-spacing:2.666667pt;}
.ls0_c00205{letter-spacing:3.189333pt;}
.ws0_c00205{word-spacing:-32.984000pt;}
.ws1_c00205{word-spacing:-29.504000pt;}
.ws2_c00205{word-spacing:0.000000pt;}
._6_c00205{margin-left:-11.136000pt;}
._13_c00205{margin-left:-8.576000pt;}
._b_c00205{margin-left:-7.658667pt;}
._c_c00205{margin-left:-6.293333pt;}
._d_c00205{margin-left:-5.184000pt;}
._9_c00205{margin-left:-4.117333pt;}
._7_c00205{margin-left:-2.880000pt;}
._8_c00205{margin-left:-1.770667pt;}
._3_c00205{width:1.173333pt;}
._4_c00205{width:2.474667pt;}
._5_c00205{width:3.712000pt;}
._f_c00205{width:4.650667pt;}
._0_c00205{width:5.600000pt;}
._11_c00205{width:6.762667pt;}
._e_c00205{width:8.213333pt;}
._12_c00205{width:9.386667pt;}
._a_c00205{width:10.496000pt;}
._10_c00205{width:12.032000pt;}
._1_c00205{width:13.066667pt;}
._2_c00205{width:14.240000pt;}
._14_c00205{width:19.584000pt;}
.fs4_c00205{font-size:42.666667pt;}
.fs0_c00205{font-size:53.333333pt;}
.fs3_c00205{font-size:56.000000pt;}
.fs2_c00205{font-size:64.000000pt;}
.fs1_c00205{font-size:77.333333pt;}
.y0_c00205{bottom:0.000000pt;}
.y1f_c00205{bottom:2.760000pt;}
.y1e_c00205{bottom:6.425204pt;}
.y1d_c00205{bottom:38.386667pt;}
.y1c_c00205{bottom:61.186667pt;}
.y1b_c00205{bottom:83.320000pt;}
.y1a_c00205{bottom:105.186667pt;}
.y19_c00205{bottom:127.986667pt;}
.y18_c00205{bottom:149.986667pt;}
.y17_c00205{bottom:171.853333pt;}
.y16_c00205{bottom:194.386667pt;}
.y15_c00205{bottom:216.253333pt;}
.y14_c00205{bottom:237.320000pt;}
.y13_c00205{bottom:259.186667pt;}
.y12_c00205{bottom:280.520000pt;}
.y11_c00205{bottom:302.386667pt;}
.y10_c00205{bottom:323.720000pt;}
.yf_c00205{bottom:345.586667pt;}
.ye_c00205{bottom:366.920000pt;}
.yd_c00205{bottom:389.320000pt;}
.yc_c00205{bottom:410.386667pt;}
.yb_c00205{bottom:432.253333pt;}
.ya_c00205{bottom:453.586667pt;}
.y9_c00205{bottom:476.120000pt;}
.y8_c00205{bottom:497.720000pt;}
.y7_c00205{bottom:519.586667pt;}
.y6_c00205{bottom:541.453333pt;}
.y5_c00205{bottom:563.320000pt;}
.y4_c00205{bottom:584.920000pt;}
.y3_c00205{bottom:607.186667pt;}
.y2_c00205{bottom:629.053333pt;}
.y1_c00205{bottom:651.186667pt;}
.h5_c00205{height:11.733399pt;}
.h6_c00205{height:38.937500pt;}
.h4_c00205{height:74.906250pt;}
.h3_c00205{height:81.031250pt;}
.h2_c00205{height:90.511719pt;}
.h1_c00205{height:692.666667pt;}
.h0_c00205{height:692.866667pt;}
.w1_c00205{width:93.222667pt;}
.w0_c00205{width:474.000000pt;}
.x0_c00205{left:0.000000pt;}
.x2_c00205{left:99.333333pt;}
.x6_c00205{left:102.266667pt;}
.x7_c00205{left:103.600000pt;}
.x5_c00205{left:105.333333pt;}
.x3_c00205{left:106.400000pt;}
.x4_c00205{left:108.000000pt;}
.x9_c00205{left:194.168213pt;}
.x1_c00205{left:204.000000pt;}
.x8_c00205{left:393.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f96b81d1eabca188c04cff8c.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00206;src:url('chunks/assets/font_be1d9f6be5f4759943ef85cb.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00206;src:url('chunks/assets/font_7c9a67d07d67e23e3649373b.woff2')format("woff");}.ff3_c00206{font-family:ff3_c00206;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00206{font-family:ff4_c00206;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.ls0_c00206{letter-spacing:0.000000px;}
.ls1_c00206{letter-spacing:3.000000px;}
.ls2_c00206{letter-spacing:15.000000px;}
.sc__c00206{text-shadow:none;}
.sc0_c00206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00206{-webkit-text-stroke:0px transparent;}
.sc0_c00206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00206{word-spacing:-21.000000px;}
.ws1_c00206{word-spacing:0.000000px;}
._f_c00206{margin-left:-9.660000px;}
._13_c00206{margin-left:-8.484000px;}
._1d_c00206{margin-left:-7.116000px;}
._17_c00206{margin-left:-5.460000px;}
._19_c00206{margin-left:-4.200000px;}
._1f_c00206{margin-left:-3.072000px;}
._10_c00206{margin-left:-2.016000px;}
._1b_c00206{margin-left:-1.008000px;}
._12_c00206{width:1.008000px;}
._2_c00206{width:2.184000px;}
._0_c00206{width:3.276000px;}
._1_c00206{width:4.704000px;}
._15_c00206{width:5.712000px;}
._3_c00206{width:6.888000px;}
._c_c00206{width:8.064000px;}
._14_c00206{width:9.156000px;}
._16_c00206{width:10.248000px;}
._d_c00206{width:11.676000px;}
._18_c00206{width:13.104000px;}
._e_c00206{width:14.364000px;}
._1c_c00206{width:15.984000px;}
._1e_c00206{width:17.664000px;}
._11_c00206{width:19.320000px;}
._1a_c00206{width:22.056000px;}
._5_c00206{width:24.060000px;}
._7_c00206{width:25.536000px;}
._a_c00206{width:30.684000px;}
._8_c00206{width:33.384000px;}
._6_c00206{width:34.764000px;}
._20_c00206{width:36.456000px;}
._9_c00206{width:41.328000px;}
._b_c00206{width:136.128000px;}
._21_c00206{width:194.952000px;}
._4_c00206{width:359.715000px;}
.fc2_c00206{color:transparent;}
.fc1_c00206{color:rgb(128,128,128);}
.fc0_c00206{color:rgb(0,0,0);}
.fs4_c00206{font-size:48.000000px;}
.fs3_c00206{font-size:69.000000px;}
.fs2_c00206{font-size:72.000000px;}
.fs1_c00206{font-size:81.000000px;}
.fs0_c00206{font-size:84.000000px;}
.y0_c00206{bottom:0.000000px;}
.y1b_c00206{bottom:3.105000px;}
.y1a_c00206{bottom:7.228355px;}
.y19_c00206{bottom:60.735000px;}
.y18_c00206{bottom:87.285000px;}
.y17_c00206{bottom:112.935000px;}
.y16_c00206{bottom:138.585000px;}
.y15_c00206{bottom:163.335000px;}
.y14_c00206{bottom:188.985000px;}
.y13_c00206{bottom:214.335000px;}
.y12_c00206{bottom:239.535000px;}
.y11_c00206{bottom:264.285000px;}
.y10_c00206{bottom:289.185000px;}
.yf_c00206{bottom:334.035000px;}
.ye_c00206{bottom:358.785000px;}
.yd_c00206{bottom:383.985000px;}
.yc_c00206{bottom:409.335000px;}
.yb_c00206{bottom:434.685000px;}
.ya_c00206{bottom:459.585000px;}
.y9_c00206{bottom:483.885000px;}
.y8_c00206{bottom:547.635000px;}
.y7_c00206{bottom:575.085000px;}
.y6_c00206{bottom:604.785000px;}
.y5_c00206{bottom:631.335000px;}
.y4_c00206{bottom:659.085000px;}
.y3_c00206{bottom:701.535000px;}
.y2_c00206{bottom:728.985000px;}
.y1_c00206{bottom:755.985000px;}
.h6_c00206{height:13.200074px;}
.h7_c00206{height:43.804688px;}
.h2_c00206{height:82.400391px;}
.h3_c00206{height:82.441406px;}
.h5_c00206{height:87.361816px;}
.h4_c00206{height:91.160156px;}
.h0_c00206{height:798.375000px;}
.h1_c00206{height:798.750000px;}
.w2_c00206{width:104.875500px;}
.w0_c00206{width:536.775000px;}
.w1_c00206{width:537.000000px;}
.x0_c00206{left:0.000000px;}
.xa_c00206{left:39.450000px;}
.x4_c00206{left:43.800000px;}
.x9_c00206{left:44.850000px;}
.xb_c00206{left:45.900000px;}
.x5_c00206{left:56.400000px;}
.x2_c00206{left:75.600000px;}
.x6_c00206{left:99.900000px;}
.x8_c00206{left:128.250000px;}
.x1_c00206{left:165.300000px;}
.x3_c00206{left:168.450000px;}
.x7_c00206{left:175.500000px;}
.xd_c00206{left:220.201767px;}
.xc_c00206{left:273.000000px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls0_c00206{letter-spacing:0.000000pt;}
.ls1_c00206{letter-spacing:2.666667pt;}
.ls2_c00206{letter-spacing:13.333333pt;}
.ws0_c00206{word-spacing:-18.666667pt;}
.ws1_c00206{word-spacing:0.000000pt;}
._f_c00206{margin-left:-8.586667pt;}
._13_c00206{margin-left:-7.541333pt;}
._1d_c00206{margin-left:-6.325333pt;}
._17_c00206{margin-left:-4.853333pt;}
._19_c00206{margin-left:-3.733333pt;}
._1f_c00206{margin-left:-2.730667pt;}
._10_c00206{margin-left:-1.792000pt;}
._1b_c00206{margin-left:-0.896000pt;}
._12_c00206{width:0.896000pt;}
._2_c00206{width:1.941333pt;}
._0_c00206{width:2.912000pt;}
._1_c00206{width:4.181333pt;}
._15_c00206{width:5.077333pt;}
._3_c00206{width:6.122667pt;}
._c_c00206{width:7.168000pt;}
._14_c00206{width:8.138667pt;}
._16_c00206{width:9.109333pt;}
._d_c00206{width:10.378667pt;}
._18_c00206{width:11.648000pt;}
._e_c00206{width:12.768000pt;}
._1c_c00206{width:14.208000pt;}
._1e_c00206{width:15.701333pt;}
._11_c00206{width:17.173333pt;}
._1a_c00206{width:19.605333pt;}
._5_c00206{width:21.386667pt;}
._7_c00206{width:22.698667pt;}
._a_c00206{width:27.274667pt;}
._8_c00206{width:29.674667pt;}
._6_c00206{width:30.901333pt;}
._20_c00206{width:32.405333pt;}
._9_c00206{width:36.736000pt;}
._b_c00206{width:121.002667pt;}
._21_c00206{width:173.290667pt;}
._4_c00206{width:319.746667pt;}
.fs4_c00206{font-size:42.666667pt;}
.fs3_c00206{font-size:61.333333pt;}
.fs2_c00206{font-size:64.000000pt;}
.fs1_c00206{font-size:72.000000pt;}
.fs0_c00206{font-size:74.666667pt;}
.y0_c00206{bottom:0.000000pt;}
.y1b_c00206{bottom:2.760000pt;}
.y1a_c00206{bottom:6.425204pt;}
.y19_c00206{bottom:53.986667pt;}
.y18_c00206{bottom:77.586667pt;}
.y17_c00206{bottom:100.386667pt;}
.y16_c00206{bottom:123.186667pt;}
.y15_c00206{bottom:145.186667pt;}
.y14_c00206{bottom:167.986667pt;}
.y13_c00206{bottom:190.520000pt;}
.y12_c00206{bottom:212.920000pt;}
.y11_c00206{bottom:234.920000pt;}
.y10_c00206{bottom:257.053333pt;}
.yf_c00206{bottom:296.920000pt;}
.ye_c00206{bottom:318.920000pt;}
.yd_c00206{bottom:341.320000pt;}
.yc_c00206{bottom:363.853333pt;}
.yb_c00206{bottom:386.386667pt;}
.ya_c00206{bottom:408.520000pt;}
.y9_c00206{bottom:430.120000pt;}
.y8_c00206{bottom:486.786667pt;}
.y7_c00206{bottom:511.186667pt;}
.y6_c00206{bottom:537.586667pt;}
.y5_c00206{bottom:561.186667pt;}
.y4_c00206{bottom:585.853333pt;}
.y3_c00206{bottom:623.586667pt;}
.y2_c00206{bottom:647.986667pt;}
.y1_c00206{bottom:671.986667pt;}
.h6_c00206{height:11.733399pt;}
.h7_c00206{height:38.937500pt;}
.h2_c00206{height:73.244792pt;}
.h3_c00206{height:73.281250pt;}
.h5_c00206{height:77.654948pt;}
.h4_c00206{height:81.031250pt;}
.h0_c00206{height:709.666667pt;}
.h1_c00206{height:710.000000pt;}
.w2_c00206{width:93.222667pt;}
.w0_c00206{width:477.133333pt;}
.w1_c00206{width:477.333333pt;}
.x0_c00206{left:0.000000pt;}
.xa_c00206{left:35.066667pt;}
.x4_c00206{left:38.933333pt;}
.x9_c00206{left:39.866667pt;}
.xb_c00206{left:40.800000pt;}
.x5_c00206{left:50.133333pt;}
.x2_c00206{left:67.200000pt;}
.x6_c00206{left:88.800000pt;}
.x8_c00206{left:114.000000pt;}
.x1_c00206{left:146.933333pt;}
.x3_c00206{left:149.733333pt;}
.x7_c00206{left:156.000000pt;}
.xd_c00206{left:195.734904pt;}
.xc_c00206{left:242.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_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_b0ccd40b4c4a47fff7f4e3ac.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.480469;font-style:normal;font-weight:normal;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_a8868482c1c65ca45edf5fdc.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:1.568848;font-style:normal;font-weight:normal;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_2a34cd48381754b390759294.woff2')format("woff");}.ff3_c00207{font-family:ff3_c00207;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00207{font-family:ff4_c00207;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00207{vertical-align:0.000000px;}
.ls1_c00207{letter-spacing:0.000000px;}
.ls2_c00207{letter-spacing:3.000000px;}
.ls3_c00207{letter-spacing:6.000000px;}
.ls0_c00207{letter-spacing:13.188000px;}
.sc__c00207{text-shadow:none;}
.sc0_c00207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00207{-webkit-text-stroke:0px transparent;}
.sc0_c00207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00207{word-spacing:-36.051000px;}
.ws0_c00207{word-spacing:-20.352000px;}
.ws2_c00207{word-spacing:-19.629000px;}
.ws3_c00207{word-spacing:0.000000px;}
._14_c00207{margin-left:-18.624000px;}
._16_c00207{margin-left:-14.040000px;}
._c_c00207{margin-left:-12.240000px;}
._17_c00207{margin-left:-9.996000px;}
._15_c00207{margin-left:-8.784000px;}
._a_c00207{margin-left:-7.776000px;}
._11_c00207{margin-left:-6.048000px;}
._f_c00207{margin-left:-4.680000px;}
._9_c00207{margin-left:-3.456000px;}
._8_c00207{margin-left:-2.088000px;}
._7_c00207{margin-left:-1.008000px;}
._5_c00207{width:1.440000px;}
._6_c00207{width:2.664000px;}
._e_c00207{width:3.744000px;}
._d_c00207{width:4.896000px;}
._10_c00207{width:5.904000px;}
._1_c00207{width:7.080000px;}
._b_c00207{width:8.712000px;}
._3_c00207{width:10.620000px;}
._2_c00207{width:12.060000px;}
._12_c00207{width:14.940000px;}
._13_c00207{width:16.128000px;}
._0_c00207{width:17.760000px;}
._4_c00207{width:22.800000px;}
.fc2_c00207{color:transparent;}
.fc1_c00207{color:rgb(128,128,128);}
.fc0_c00207{color:rgb(0,0,0);}
.fs4_c00207{font-size:48.000000px;}
.fs0_c00207{font-size:60.000000px;}
.fs3_c00207{font-size:63.000000px;}
.fs2_c00207{font-size:69.000000px;}
.fs1_c00207{font-size:72.000000px;}
.y0_c00207{bottom:0.000000px;}
.y1f_c00207{bottom:3.105000px;}
.y1e_c00207{bottom:7.228363px;}
.y1d_c00207{bottom:59.100000px;}
.y1c_c00207{bottom:82.650000px;}
.y1b_c00207{bottom:108.300000px;}
.y1a_c00207{bottom:133.650000px;}
.y19_c00207{bottom:159.600000px;}
.y18_c00207{bottom:184.500000px;}
.y17_c00207{bottom:209.850000px;}
.y16_c00207{bottom:234.600000px;}
.y15_c00207{bottom:259.500000px;}
.y14_c00207{bottom:284.550000px;}
.y13_c00207{bottom:309.750000px;}
.y12_c00207{bottom:333.150000px;}
.y11_c00207{bottom:357.450000px;}
.y10_c00207{bottom:383.100000px;}
.yf_c00207{bottom:407.700000px;}
.ye_c00207{bottom:432.000000px;}
.yd_c00207{bottom:457.650000px;}
.yc_c00207{bottom:481.200000px;}
.yb_c00207{bottom:506.550000px;}
.ya_c00207{bottom:531.150000px;}
.y9_c00207{bottom:555.750000px;}
.y8_c00207{bottom:580.200000px;}
.y7_c00207{bottom:605.400000px;}
.y6_c00207{bottom:630.000000px;}
.y5_c00207{bottom:655.050000px;}
.y4_c00207{bottom:679.350000px;}
.y3_c00207{bottom:704.400000px;}
.y2_c00207{bottom:729.300000px;}
.y1_c00207{bottom:754.350000px;}
.h5_c00207{height:13.200074px;}
.h6_c00207{height:43.804688px;}
.h2_c00207{height:70.224609px;}
.h4_c00207{height:87.361816px;}
.h3_c00207{height:91.160156px;}
.h1_c00207{height:795.000000px;}
.h0_c00207{height:795.150000px;}
.w2_c00207{width:104.875500px;}
.w0_c00207{width:521.100000px;}
.w1_c00207{width:521.250000px;}
.x0_c00207{left:0.000000px;}
.x2_c00207{left:99.150000px;}
.x3_c00207{left:100.800000px;}
.x5_c00207{left:101.850000px;}
.x4_c00207{left:102.900000px;}
.x6_c00207{left:104.250000px;}
.x7_c00207{left:105.600000px;}
.x8_c00207{left:107.700000px;}
.xa_c00207{left:212.364258px;}
.x1_c00207{left:217.050000px;}
.x9_c00207{left:467.700000px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls1_c00207{letter-spacing:0.000000pt;}
.ls2_c00207{letter-spacing:2.666667pt;}
.ls3_c00207{letter-spacing:5.333333pt;}
.ls0_c00207{letter-spacing:11.722667pt;}
.ws1_c00207{word-spacing:-32.045333pt;}
.ws0_c00207{word-spacing:-18.090667pt;}
.ws2_c00207{word-spacing:-17.448000pt;}
.ws3_c00207{word-spacing:0.000000pt;}
._14_c00207{margin-left:-16.554667pt;}
._16_c00207{margin-left:-12.480000pt;}
._c_c00207{margin-left:-10.880000pt;}
._17_c00207{margin-left:-8.885333pt;}
._15_c00207{margin-left:-7.808000pt;}
._a_c00207{margin-left:-6.912000pt;}
._11_c00207{margin-left:-5.376000pt;}
._f_c00207{margin-left:-4.160000pt;}
._9_c00207{margin-left:-3.072000pt;}
._8_c00207{margin-left:-1.856000pt;}
._7_c00207{margin-left:-0.896000pt;}
._5_c00207{width:1.280000pt;}
._6_c00207{width:2.368000pt;}
._e_c00207{width:3.328000pt;}
._d_c00207{width:4.352000pt;}
._10_c00207{width:5.248000pt;}
._1_c00207{width:6.293333pt;}
._b_c00207{width:7.744000pt;}
._3_c00207{width:9.440000pt;}
._2_c00207{width:10.720000pt;}
._12_c00207{width:13.280000pt;}
._13_c00207{width:14.336000pt;}
._0_c00207{width:15.786667pt;}
._4_c00207{width:20.266667pt;}
.fs4_c00207{font-size:42.666667pt;}
.fs0_c00207{font-size:53.333333pt;}
.fs3_c00207{font-size:56.000000pt;}
.fs2_c00207{font-size:61.333333pt;}
.fs1_c00207{font-size:64.000000pt;}
.y0_c00207{bottom:0.000000pt;}
.y1f_c00207{bottom:2.760000pt;}
.y1e_c00207{bottom:6.425212pt;}
.y1d_c00207{bottom:52.533333pt;}
.y1c_c00207{bottom:73.466667pt;}
.y1b_c00207{bottom:96.266667pt;}
.y1a_c00207{bottom:118.800000pt;}
.y19_c00207{bottom:141.866667pt;}
.y18_c00207{bottom:164.000000pt;}
.y17_c00207{bottom:186.533333pt;}
.y16_c00207{bottom:208.533333pt;}
.y15_c00207{bottom:230.666667pt;}
.y14_c00207{bottom:252.933333pt;}
.y13_c00207{bottom:275.333333pt;}
.y12_c00207{bottom:296.133333pt;}
.y11_c00207{bottom:317.733333pt;}
.y10_c00207{bottom:340.533333pt;}
.yf_c00207{bottom:362.400000pt;}
.ye_c00207{bottom:384.000000pt;}
.yd_c00207{bottom:406.800000pt;}
.yc_c00207{bottom:427.733333pt;}
.yb_c00207{bottom:450.266667pt;}
.ya_c00207{bottom:472.133333pt;}
.y9_c00207{bottom:494.000000pt;}
.y8_c00207{bottom:515.733333pt;}
.y7_c00207{bottom:538.133333pt;}
.y6_c00207{bottom:560.000000pt;}
.y5_c00207{bottom:582.266667pt;}
.y4_c00207{bottom:603.866667pt;}
.y3_c00207{bottom:626.133333pt;}
.y2_c00207{bottom:648.266667pt;}
.y1_c00207{bottom:670.533333pt;}
.h5_c00207{height:11.733399pt;}
.h6_c00207{height:38.937500pt;}
.h2_c00207{height:62.421875pt;}
.h4_c00207{height:77.654948pt;}
.h3_c00207{height:81.031250pt;}
.h1_c00207{height:706.666667pt;}
.h0_c00207{height:706.800000pt;}
.w2_c00207{width:93.222667pt;}
.w0_c00207{width:463.200000pt;}
.w1_c00207{width:463.333333pt;}
.x0_c00207{left:0.000000pt;}
.x2_c00207{left:88.133333pt;}
.x3_c00207{left:89.600000pt;}
.x5_c00207{left:90.533333pt;}
.x4_c00207{left:91.466667pt;}
.x6_c00207{left:92.666667pt;}
.x7_c00207{left:93.866667pt;}
.x8_c00207{left:95.733333pt;}
.xa_c00207{left:188.768229pt;}
.x1_c00207{left:192.933333pt;}
.x9_c00207{left:415.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f69191a8f59ebcf5c879cf0e.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00208;src:url('chunks/assets/font_f1cf3dc3f22b81fa897df470.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00208{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00208{vertical-align:0.000000px;}
.ls0_c00208{letter-spacing:0.000000px;}
.ls1_c00208{letter-spacing:3.000000px;}
.sc__c00208{text-shadow:none;}
.sc0_c00208{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00208{-webkit-text-stroke:0px transparent;}
.sc0_c00208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00208{word-spacing:-20.352000px;}
.ws1_c00208{word-spacing:0.000000px;}
._1e_c00208{margin-left:-8.172000px;}
._2_c00208{margin-left:-6.888000px;}
._1c_c00208{margin-left:-5.880000px;}
._9_c00208{margin-left:-4.752000px;}
._8_c00208{margin-left:-3.240000px;}
._4_c00208{margin-left:-1.512000px;}
._b_c00208{width:1.548000px;}
._3_c00208{width:2.772000px;}
._5_c00208{width:4.368000px;}
._10_c00208{width:5.556000px;}
._1_c00208{width:7.056000px;}
._11_c00208{width:8.352000px;}
._f_c00208{width:9.396000px;}
._e_c00208{width:10.620000px;}
._0_c00208{width:11.676000px;}
._c_c00208{width:13.500000px;}
._d_c00208{width:14.760000px;}
._12_c00208{width:16.296000px;}
._a_c00208{width:17.640000px;}
._1d_c00208{width:18.864000px;}
._1a_c00208{width:21.672000px;}
._13_c00208{width:23.292000px;}
._14_c00208{width:24.372000px;}
._15_c00208{width:25.704000px;}
._16_c00208{width:27.984000px;}
._7_c00208{width:29.988000px;}
._1f_c00208{width:31.284000px;}
._17_c00208{width:33.072000px;}
._19_c00208{width:35.124000px;}
._18_c00208{width:36.408000px;}
._1b_c00208{width:43.260000px;}
._20_c00208{width:198.504000px;}
._6_c00208{width:345.492000px;}
.fc2_c00208{color:transparent;}
.fc1_c00208{color:rgb(128,128,128);}
.fc0_c00208{color:rgb(0,0,0);}
.fs2_c00208{font-size:48.000000px;}
.fs1_c00208{font-size:72.000000px;}
.fs0_c00208{font-size:84.000000px;}
.y0_c00208{bottom:0.000000px;}
.y1f_c00208{bottom:3.105000px;}
.y1e_c00208{bottom:7.228369px;}
.y1d_c00208{bottom:43.770000px;}
.y1c_c00208{bottom:70.170000px;}
.y1b_c00208{bottom:96.420000px;}
.y1a_c00208{bottom:118.470000px;}
.y19_c00208{bottom:147.120000px;}
.y18_c00208{bottom:172.170000px;}
.y17_c00208{bottom:197.670000px;}
.y16_c00208{bottom:222.570000px;}
.y15_c00208{bottom:247.620000px;}
.y14_c00208{bottom:272.670000px;}
.y13_c00208{bottom:297.270000px;}
.y12_c00208{bottom:318.570000px;}
.y11_c00208{bottom:342.270000px;}
.y10_c00208{bottom:367.170000px;}
.yf_c00208{bottom:392.070000px;}
.ye_c00208{bottom:417.120000px;}
.yd_c00208{bottom:442.020000px;}
.yc_c00208{bottom:467.070000px;}
.yb_c00208{bottom:491.670000px;}
.ya_c00208{bottom:516.420000px;}
.y9_c00208{bottom:541.620000px;}
.y8_c00208{bottom:566.670000px;}
.y7_c00208{bottom:590.970000px;}
.y6_c00208{bottom:615.870000px;}
.y5_c00208{bottom:640.920000px;}
.y4_c00208{bottom:665.220000px;}
.y3_c00208{bottom:690.420000px;}
.y2_c00208{bottom:714.870000px;}
.y1_c00208{bottom:740.370000px;}
.h3_c00208{height:13.200073px;}
.h4_c00208{height:43.804688px;}
.h1_c00208{height:82.400391px;}
.h2_c00208{height:91.160156px;}
.h0_c00208{height:793.500000px;}
.w2_c00208{width:104.875500px;}
.w0_c00208{width:532.200000px;}
.w1_c00208{width:532.500000px;}
.x0_c00208{left:0.000000px;}
.x4_c00208{left:37.800000px;}
.x3_c00208{left:39.450000px;}
.x2_c00208{left:40.800000px;}
.x5_c00208{left:41.850000px;}
.x1_c00208{left:160.350000px;}
.x7_c00208{left:217.914230px;}
.x6_c00208{left:277.200000px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls0_c00208{letter-spacing:0.000000pt;}
.ls1_c00208{letter-spacing:2.666667pt;}
.ws0_c00208{word-spacing:-18.090667pt;}
.ws1_c00208{word-spacing:0.000000pt;}
._1e_c00208{margin-left:-7.264000pt;}
._2_c00208{margin-left:-6.122667pt;}
._1c_c00208{margin-left:-5.226667pt;}
._9_c00208{margin-left:-4.224000pt;}
._8_c00208{margin-left:-2.880000pt;}
._4_c00208{margin-left:-1.344000pt;}
._b_c00208{width:1.376000pt;}
._3_c00208{width:2.464000pt;}
._5_c00208{width:3.882667pt;}
._10_c00208{width:4.938667pt;}
._1_c00208{width:6.272000pt;}
._11_c00208{width:7.424000pt;}
._f_c00208{width:8.352000pt;}
._e_c00208{width:9.440000pt;}
._0_c00208{width:10.378667pt;}
._c_c00208{width:12.000000pt;}
._d_c00208{width:13.120000pt;}
._12_c00208{width:14.485333pt;}
._a_c00208{width:15.680000pt;}
._1d_c00208{width:16.768000pt;}
._1a_c00208{width:19.264000pt;}
._13_c00208{width:20.704000pt;}
._14_c00208{width:21.664000pt;}
._15_c00208{width:22.848000pt;}
._16_c00208{width:24.874667pt;}
._7_c00208{width:26.656000pt;}
._1f_c00208{width:27.808000pt;}
._17_c00208{width:29.397333pt;}
._19_c00208{width:31.221333pt;}
._18_c00208{width:32.362667pt;}
._1b_c00208{width:38.453333pt;}
._20_c00208{width:176.448000pt;}
._6_c00208{width:307.104000pt;}
.fs2_c00208{font-size:42.666667pt;}
.fs1_c00208{font-size:64.000000pt;}
.fs0_c00208{font-size:74.666667pt;}
.y0_c00208{bottom:0.000000pt;}
.y1f_c00208{bottom:2.760000pt;}
.y1e_c00208{bottom:6.425217pt;}
.y1d_c00208{bottom:38.906667pt;}
.y1c_c00208{bottom:62.373333pt;}
.y1b_c00208{bottom:85.706667pt;}
.y1a_c00208{bottom:105.306667pt;}
.y19_c00208{bottom:130.773333pt;}
.y18_c00208{bottom:153.040000pt;}
.y17_c00208{bottom:175.706667pt;}
.y16_c00208{bottom:197.840000pt;}
.y15_c00208{bottom:220.106667pt;}
.y14_c00208{bottom:242.373333pt;}
.y13_c00208{bottom:264.240000pt;}
.y12_c00208{bottom:283.173333pt;}
.y11_c00208{bottom:304.240000pt;}
.y10_c00208{bottom:326.373333pt;}
.yf_c00208{bottom:348.506667pt;}
.ye_c00208{bottom:370.773333pt;}
.yd_c00208{bottom:392.906667pt;}
.yc_c00208{bottom:415.173333pt;}
.yb_c00208{bottom:437.040000pt;}
.ya_c00208{bottom:459.040000pt;}
.y9_c00208{bottom:481.440000pt;}
.y8_c00208{bottom:503.706667pt;}
.y7_c00208{bottom:525.306667pt;}
.y6_c00208{bottom:547.440000pt;}
.y5_c00208{bottom:569.706667pt;}
.y4_c00208{bottom:591.306667pt;}
.y3_c00208{bottom:613.706667pt;}
.y2_c00208{bottom:635.440000pt;}
.y1_c00208{bottom:658.106667pt;}
.h3_c00208{height:11.733399pt;}
.h4_c00208{height:38.937500pt;}
.h1_c00208{height:73.244792pt;}
.h2_c00208{height:81.031250pt;}
.h0_c00208{height:705.333333pt;}
.w2_c00208{width:93.222667pt;}
.w0_c00208{width:473.066667pt;}
.w1_c00208{width:473.333333pt;}
.x0_c00208{left:0.000000pt;}
.x4_c00208{left:33.600000pt;}
.x3_c00208{left:35.066667pt;}
.x2_c00208{left:36.266667pt;}
.x5_c00208{left:37.200000pt;}
.x1_c00208{left:142.533333pt;}
.x7_c00208{left:193.701538pt;}
.x6_c00208{left:246.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cade9d4f00a37c7f72d8ea36.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.480469;font-style:normal;font-weight:normal;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_afad4db27dfde3da5c5e2cc4.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00209{font-family:ff3_c00209;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00209{vertical-align:0.000000px;}
.ls1_c00209{letter-spacing:0.000000px;}
.ls0_c00209{letter-spacing:3.000000px;}
.ls2_c00209{letter-spacing:6.000000px;}
.ls3_c00209{letter-spacing:9.000000px;}
.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;}
}
.ws1_c00209{word-spacing:-20.352000px;}
.ws0_c00209{word-spacing:-17.352000px;}
.ws2_c00209{word-spacing:0.000000px;}
._10_c00209{margin-left:-7.416000px;}
._e_c00209{margin-left:-6.048000px;}
._a_c00209{margin-left:-4.968000px;}
._9_c00209{margin-left:-3.816000px;}
._5_c00209{margin-left:-2.736000px;}
._6_c00209{margin-left:-1.728000px;}
._7_c00209{width:1.512000px;}
._8_c00209{width:2.736000px;}
._2_c00209{width:4.392000px;}
._1_c00209{width:5.400000px;}
._3_c00209{width:7.128000px;}
._0_c00209{width:8.568000px;}
._b_c00209{width:9.720000px;}
._d_c00209{width:12.024000px;}
._f_c00209{width:13.320000px;}
._11_c00209{width:14.760000px;}
._c_c00209{width:16.704000px;}
._4_c00209{width:18.432000px;}
._12_c00209{width:23.064000px;}
.fc2_c00209{color:transparent;}
.fc1_c00209{color:rgb(128,128,128);}
.fc0_c00209{color:rgb(0,0,0);}
.fs1_c00209{font-size:24.000000px;}
.fs2_c00209{font-size:33.000000px;}
.fs3_c00209{font-size:48.000000px;}
.fs0_c00209{font-size:72.000000px;}
.y0_c00209{bottom:0.000000px;}
.y1f_c00209{bottom:3.105000px;}
.y1e_c00209{bottom:7.228371px;}
.y1d_c00209{bottom:41.865000px;}
.y1c_c00209{bottom:64.515000px;}
.y1b_c00209{bottom:92.265000px;}
.y1a_c00209{bottom:117.915000px;}
.y19_c00209{bottom:141.165000px;}
.y18_c00209{bottom:166.515000px;}
.y17_c00209{bottom:193.065000px;}
.y16_c00209{bottom:217.365000px;}
.y15_c00209{bottom:243.465000px;}
.y14_c00209{bottom:267.015000px;}
.y13_c00209{bottom:291.915000px;}
.y12_c00209{bottom:316.665000px;}
.y11_c00209{bottom:342.015000px;}
.y10_c00209{bottom:364.965000px;}
.yf_c00209{bottom:389.865000px;}
.ye_c00209{bottom:414.915000px;}
.yd_c00209{bottom:439.065000px;}
.yc_c00209{bottom:463.815000px;}
.yb_c00209{bottom:487.815000px;}
.ya_c00209{bottom:513.765000px;}
.y9_c00209{bottom:537.615000px;}
.y8_c00209{bottom:562.065000px;}
.y7_c00209{bottom:586.965000px;}
.y6_c00209{bottom:611.865000px;}
.y5_c00209{bottom:636.315000px;}
.y4_c00209{bottom:661.215000px;}
.y3_c00209{bottom:686.115000px;}
.y2_c00209{bottom:710.865000px;}
.y1_c00209{bottom:736.215000px;}
.h3_c00209{height:13.200074px;}
.h4_c00209{height:43.804688px;}
.h2_c00209{height:91.160156px;}
.h1_c00209{height:789.000000px;}
.h0_c00209{height:789.225000px;}
.w2_c00209{width:104.875500px;}
.w0_c00209{width:528.375000px;}
.w1_c00209{width:528.750000px;}
.x0_c00209{left:0.000000px;}
.x2_c00209{left:105.000000px;}
.x3_c00209{left:106.200000px;}
.x4_c00209{left:107.550000px;}
.x5_c00209{left:108.900000px;}
.x7_c00209{left:109.950000px;}
.x8_c00209{left:111.000000px;}
.x6_c00209{left:129.900000px;}
.x1_c00209{left:216.300000px;}
.x9_c00209{left:450.900000px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls1_c00209{letter-spacing:0.000000pt;}
.ls0_c00209{letter-spacing:2.666667pt;}
.ls2_c00209{letter-spacing:5.333333pt;}
.ls3_c00209{letter-spacing:8.000000pt;}
.ws1_c00209{word-spacing:-18.090667pt;}
.ws0_c00209{word-spacing:-15.424000pt;}
.ws2_c00209{word-spacing:0.000000pt;}
._10_c00209{margin-left:-6.592000pt;}
._e_c00209{margin-left:-5.376000pt;}
._a_c00209{margin-left:-4.416000pt;}
._9_c00209{margin-left:-3.392000pt;}
._5_c00209{margin-left:-2.432000pt;}
._6_c00209{margin-left:-1.536000pt;}
._7_c00209{width:1.344000pt;}
._8_c00209{width:2.432000pt;}
._2_c00209{width:3.904000pt;}
._1_c00209{width:4.800000pt;}
._3_c00209{width:6.336000pt;}
._0_c00209{width:7.616000pt;}
._b_c00209{width:8.640000pt;}
._d_c00209{width:10.688000pt;}
._f_c00209{width:11.840000pt;}
._11_c00209{width:13.120000pt;}
._c_c00209{width:14.848000pt;}
._4_c00209{width:16.384000pt;}
._12_c00209{width:20.501333pt;}
.fs1_c00209{font-size:21.333333pt;}
.fs2_c00209{font-size:29.333333pt;}
.fs3_c00209{font-size:42.666667pt;}
.fs0_c00209{font-size:64.000000pt;}
.y0_c00209{bottom:0.000000pt;}
.y1f_c00209{bottom:2.760000pt;}
.y1e_c00209{bottom:6.425219pt;}
.y1d_c00209{bottom:37.213333pt;}
.y1c_c00209{bottom:57.346667pt;}
.y1b_c00209{bottom:82.013333pt;}
.y1a_c00209{bottom:104.813333pt;}
.y19_c00209{bottom:125.480000pt;}
.y18_c00209{bottom:148.013333pt;}
.y17_c00209{bottom:171.613333pt;}
.y16_c00209{bottom:193.213333pt;}
.y15_c00209{bottom:216.413333pt;}
.y14_c00209{bottom:237.346667pt;}
.y13_c00209{bottom:259.480000pt;}
.y12_c00209{bottom:281.480000pt;}
.y11_c00209{bottom:304.013333pt;}
.y10_c00209{bottom:324.413333pt;}
.yf_c00209{bottom:346.546667pt;}
.ye_c00209{bottom:368.813333pt;}
.yd_c00209{bottom:390.280000pt;}
.yc_c00209{bottom:412.280000pt;}
.yb_c00209{bottom:433.613333pt;}
.ya_c00209{bottom:456.680000pt;}
.y9_c00209{bottom:477.880000pt;}
.y8_c00209{bottom:499.613333pt;}
.y7_c00209{bottom:521.746667pt;}
.y6_c00209{bottom:543.880000pt;}
.y5_c00209{bottom:565.613333pt;}
.y4_c00209{bottom:587.746667pt;}
.y3_c00209{bottom:609.880000pt;}
.y2_c00209{bottom:631.880000pt;}
.y1_c00209{bottom:654.413333pt;}
.h3_c00209{height:11.733399pt;}
.h4_c00209{height:38.937500pt;}
.h2_c00209{height:81.031250pt;}
.h1_c00209{height:701.333333pt;}
.h0_c00209{height:701.533333pt;}
.w2_c00209{width:93.222667pt;}
.w0_c00209{width:469.666667pt;}
.w1_c00209{width:470.000000pt;}
.x0_c00209{left:0.000000pt;}
.x2_c00209{left:93.333333pt;}
.x3_c00209{left:94.400000pt;}
.x4_c00209{left:95.600000pt;}
.x5_c00209{left:96.800000pt;}
.x7_c00209{left:97.733333pt;}
.x8_c00209{left:98.666667pt;}
.x6_c00209{left:115.466667pt;}
.x1_c00209{left:192.266667pt;}
.x9_c00209{left:400.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3bbc9d052069cacd55bdad0f.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.480469;font-style:normal;font-weight:normal;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_b8c9fa21e009de833a046e73.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:1.568848;font-style:normal;font-weight:normal;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_e15f4ce0443769241912307f.woff2')format("woff");}.ff3_c00210{font-family:ff3_c00210;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00210;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00210{font-family:ff4_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00210;src:url('chunks/assets/font_c0b530a2eb9e05f3e0d02e01.woff2')format("woff");}.ff5_c00210{font-family:ff5_c00210;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00210;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00210{font-family:ff6_c00210;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00210{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00210{vertical-align:0.000000px;}
.ls2_c00210{letter-spacing:0.000000px;}
.ls1_c00210{letter-spacing:3.000000px;}
.ls0_c00210{letter-spacing:6.000000px;}
.sc__c00210{text-shadow:none;}
.sc0_c00210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00210{-webkit-text-stroke:0px transparent;}
.sc0_c00210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00210{word-spacing:-43.500000px;}
.ws0_c00210{word-spacing:-24.750000px;}
.ws2_c00210{word-spacing:-17.352000px;}
.ws3_c00210{word-spacing:0.000000px;}
._12_c00210{margin-left:-8.256000px;}
._14_c00210{margin-left:-6.552000px;}
._c_c00210{margin-left:-5.352000px;}
._b_c00210{margin-left:-4.344000px;}
._a_c00210{margin-left:-3.096000px;}
._9_c00210{margin-left:-1.224000px;}
._8_c00210{width:1.152000px;}
._7_c00210{width:2.664000px;}
._10_c00210{width:4.032000px;}
._2_c00210{width:5.148000px;}
._4_c00210{width:7.128000px;}
._1_c00210{width:8.184000px;}
._3_c00210{width:9.900000px;}
._11_c00210{width:11.808000px;}
._0_c00210{width:12.936000px;}
._d_c00210{width:14.052000px;}
._f_c00210{width:15.984000px;}
._15_c00210{width:16.992000px;}
._e_c00210{width:18.216000px;}
._6_c00210{width:20.064000px;}
._16_c00210{width:28.872000px;}
._13_c00210{width:32.076000px;}
._17_c00210{width:218.304000px;}
._5_c00210{width:359.436000px;}
.fc2_c00210{color:transparent;}
.fc1_c00210{color:rgb(128,128,128);}
.fc0_c00210{color:rgb(0,0,0);}
.fs5_c00210{font-size:48.000000px;}
.fs0_c00210{font-size:66.000000px;}
.fs1_c00210{font-size:72.000000px;}
.fs2_c00210{font-size:75.000000px;}
.fs3_c00210{font-size:87.000000px;}
.fs4_c00210{font-size:90.000000px;}
.y0_c00210{bottom:0.000000px;}
.y1f_c00210{bottom:3.105000px;}
.y1e_c00210{bottom:7.228369px;}
.y1d_c00210{bottom:41.520000px;}
.y1c_c00210{bottom:67.770000px;}
.y1b_c00210{bottom:93.120000px;}
.y1a_c00210{bottom:118.770000px;}
.y19_c00210{bottom:143.670000px;}
.y18_c00210{bottom:169.020000px;}
.y17_c00210{bottom:194.670000px;}
.y16_c00210{bottom:218.070000px;}
.y15_c00210{bottom:244.020000px;}
.y14_c00210{bottom:268.320000px;}
.y13_c00210{bottom:293.520000px;}
.y12_c00210{bottom:315.870000px;}
.y11_c00210{bottom:339.120000px;}
.y10_c00210{bottom:364.170000px;}
.yf_c00210{bottom:389.520000px;}
.ye_c00210{bottom:413.670000px;}
.yd_c00210{bottom:439.320000px;}
.yc_c00210{bottom:464.070000px;}
.yb_c00210{bottom:488.670000px;}
.ya_c00210{bottom:514.320000px;}
.y9_c00210{bottom:538.920000px;}
.y8_c00210{bottom:563.520000px;}
.y7_c00210{bottom:588.570000px;}
.y6_c00210{bottom:612.570000px;}
.y5_c00210{bottom:638.520000px;}
.y4_c00210{bottom:662.220000px;}
.y3_c00210{bottom:686.820000px;}
.y2_c00210{bottom:711.720000px;}
.y1_c00210{bottom:737.070000px;}
.h4_c00210{height:13.200073px;}
.h5_c00210{height:43.804688px;}
.h2_c00210{height:77.247070px;}
.h3_c00210{height:91.160156px;}
.h0_c00210{height:789.450000px;}
.h1_c00210{height:789.750000px;}
.w2_c00210{width:104.875500px;}
.w0_c00210{width:544.350000px;}
.w1_c00210{width:544.500000px;}
.x0_c00210{left:0.000000px;}
.x2_c00210{left:37.200000px;}
.x3_c00210{left:39.750000px;}
.x4_c00210{left:41.100000px;}
.x5_c00210{left:42.150000px;}
.x1_c00210{left:157.200000px;}
.x7_c00210{left:223.989258px;}
.x6_c00210{left:292.950000px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls2_c00210{letter-spacing:0.000000pt;}
.ls1_c00210{letter-spacing:2.666667pt;}
.ls0_c00210{letter-spacing:5.333333pt;}
.ws1_c00210{word-spacing:-38.666667pt;}
.ws0_c00210{word-spacing:-22.000000pt;}
.ws2_c00210{word-spacing:-15.424000pt;}
.ws3_c00210{word-spacing:0.000000pt;}
._12_c00210{margin-left:-7.338667pt;}
._14_c00210{margin-left:-5.824000pt;}
._c_c00210{margin-left:-4.757333pt;}
._b_c00210{margin-left:-3.861333pt;}
._a_c00210{margin-left:-2.752000pt;}
._9_c00210{margin-left:-1.088000pt;}
._8_c00210{width:1.024000pt;}
._7_c00210{width:2.368000pt;}
._10_c00210{width:3.584000pt;}
._2_c00210{width:4.576000pt;}
._4_c00210{width:6.336000pt;}
._1_c00210{width:7.274667pt;}
._3_c00210{width:8.800000pt;}
._11_c00210{width:10.496000pt;}
._0_c00210{width:11.498667pt;}
._d_c00210{width:12.490667pt;}
._f_c00210{width:14.208000pt;}
._15_c00210{width:15.104000pt;}
._e_c00210{width:16.192000pt;}
._6_c00210{width:17.834667pt;}
._16_c00210{width:25.664000pt;}
._13_c00210{width:28.512000pt;}
._17_c00210{width:194.048000pt;}
._5_c00210{width:319.498667pt;}
.fs5_c00210{font-size:42.666667pt;}
.fs0_c00210{font-size:58.666667pt;}
.fs1_c00210{font-size:64.000000pt;}
.fs2_c00210{font-size:66.666667pt;}
.fs3_c00210{font-size:77.333333pt;}
.fs4_c00210{font-size:80.000000pt;}
.y0_c00210{bottom:0.000000pt;}
.y1f_c00210{bottom:2.760000pt;}
.y1e_c00210{bottom:6.425217pt;}
.y1d_c00210{bottom:36.906667pt;}
.y1c_c00210{bottom:60.240000pt;}
.y1b_c00210{bottom:82.773333pt;}
.y1a_c00210{bottom:105.573333pt;}
.y19_c00210{bottom:127.706667pt;}
.y18_c00210{bottom:150.240000pt;}
.y17_c00210{bottom:173.040000pt;}
.y16_c00210{bottom:193.840000pt;}
.y15_c00210{bottom:216.906667pt;}
.y14_c00210{bottom:238.506667pt;}
.y13_c00210{bottom:260.906667pt;}
.y12_c00210{bottom:280.773333pt;}
.y11_c00210{bottom:301.440000pt;}
.y10_c00210{bottom:323.706667pt;}
.yf_c00210{bottom:346.240000pt;}
.ye_c00210{bottom:367.706667pt;}
.yd_c00210{bottom:390.506667pt;}
.yc_c00210{bottom:412.506667pt;}
.yb_c00210{bottom:434.373333pt;}
.ya_c00210{bottom:457.173333pt;}
.y9_c00210{bottom:479.040000pt;}
.y8_c00210{bottom:500.906667pt;}
.y7_c00210{bottom:523.173333pt;}
.y6_c00210{bottom:544.506667pt;}
.y5_c00210{bottom:567.573333pt;}
.y4_c00210{bottom:588.640000pt;}
.y3_c00210{bottom:610.506667pt;}
.y2_c00210{bottom:632.640000pt;}
.y1_c00210{bottom:655.173333pt;}
.h4_c00210{height:11.733399pt;}
.h5_c00210{height:38.937500pt;}
.h2_c00210{height:68.664062pt;}
.h3_c00210{height:81.031250pt;}
.h0_c00210{height:701.733333pt;}
.h1_c00210{height:702.000000pt;}
.w2_c00210{width:93.222667pt;}
.w0_c00210{width:483.866667pt;}
.w1_c00210{width:484.000000pt;}
.x0_c00210{left:0.000000pt;}
.x2_c00210{left:33.066667pt;}
.x3_c00210{left:35.333333pt;}
.x4_c00210{left:36.533333pt;}
.x5_c00210{left:37.466667pt;}
.x1_c00210{left:139.733333pt;}
.x7_c00210{left:199.101563pt;}
.x6_c00210{left:260.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0ec1cbcec007c053bd713c8f.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00211;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00211;src:url('chunks/assets/font_7b2f3d9152904573c38976cd.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;line-height:1.568848;font-style:normal;font-weight:normal;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_edc8309ac197eeea1f287753.woff2')format("woff");}.ff4_c00211{font-family:ff4_c00211;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00211;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00211{font-family:ff5_c00211;line-height:1.219238;font-style: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:3.000000px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00211{word-spacing:-42.000000px;}
.ws1_c00211{word-spacing:-33.192000px;}
.ws2_c00211{word-spacing:-20.352000px;}
.ws3_c00211{word-spacing:0.000000px;}
._15_c00211{margin-left:-8.520000px;}
._3_c00211{margin-left:-7.056000px;}
._a_c00211{margin-left:-5.232000px;}
._6_c00211{margin-left:-3.672000px;}
._7_c00211{margin-left:-2.148000px;}
._5_c00211{margin-left:-1.032000px;}
._4_c00211{width:1.008000px;}
._1_c00211{width:2.604000px;}
._2_c00211{width:3.612000px;}
._0_c00211{width:4.788000px;}
._9_c00211{width:6.132000px;}
._d_c00211{width:7.416000px;}
._c_c00211{width:8.964000px;}
._17_c00211{width:10.620000px;}
._e_c00211{width:12.144000px;}
._8_c00211{width:13.896000px;}
._14_c00211{width:15.084000px;}
._b_c00211{width:16.536000px;}
._10_c00211{width:17.736000px;}
._12_c00211{width:22.548000px;}
._f_c00211{width:24.300000px;}
._11_c00211{width:25.836000px;}
._13_c00211{width:30.024000px;}
._16_c00211{width:31.968000px;}
.fc2_c00211{color:transparent;}
.fc1_c00211{color:rgb(128,128,128);}
.fc0_c00211{color:rgb(0,0,0);}
.fs2_c00211{font-size:48.000000px;}
.fs1_c00211{font-size:72.000000px;}
.fs0_c00211{font-size:84.000000px;}
.y0_c00211{bottom:0.000000px;}
.y1f_c00211{bottom:3.105000px;}
.y1e_c00211{bottom:7.228371px;}
.y1d_c00211{bottom:35.565000px;}
.y1c_c00211{bottom:58.365000px;}
.y1b_c00211{bottom:83.715000px;}
.y1a_c00211{bottom:109.065000px;}
.y19_c00211{bottom:133.965000px;}
.y18_c00211{bottom:158.715000px;}
.y17_c00211{bottom:184.365000px;}
.y16_c00211{bottom:208.965000px;}
.y15_c00211{bottom:234.615000px;}
.y14_c00211{bottom:259.515000px;}
.y13_c00211{bottom:283.215000px;}
.y12_c00211{bottom:308.115000px;}
.y11_c00211{bottom:332.415000px;}
.y10_c00211{bottom:356.715000px;}
.yf_c00211{bottom:382.065000px;}
.ye_c00211{bottom:406.665000px;}
.yd_c00211{bottom:431.565000px;}
.yc_c00211{bottom:456.315000px;}
.yb_c00211{bottom:481.065000px;}
.ya_c00211{bottom:505.365000px;}
.y9_c00211{bottom:529.965000px;}
.y8_c00211{bottom:554.715000px;}
.y7_c00211{bottom:579.615000px;}
.y6_c00211{bottom:604.515000px;}
.y5_c00211{bottom:629.415000px;}
.y4_c00211{bottom:653.715000px;}
.y3_c00211{bottom:678.465000px;}
.y2_c00211{bottom:703.665000px;}
.y1_c00211{bottom:729.465000px;}
.h4_c00211{height:13.200074px;}
.h5_c00211{height:43.804688px;}
.h2_c00211{height:82.441406px;}
.h3_c00211{height:91.160156px;}
.h0_c00211{height:781.125000px;}
.h1_c00211{height:781.500000px;}
.w2_c00211{width:104.875500px;}
.w1_c00211{width:513.750000px;}
.w0_c00211{width:513.825000px;}
.x0_c00211{left:0.000000px;}
.x2_c00211{left:106.350000px;}
.x3_c00211{left:107.700000px;}
.x4_c00211{left:109.050000px;}
.x6_c00211{left:208.726730px;}
.x1_c00211{left:218.400000px;}
.x5_c00211{left:463.500000px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls0_c00211{letter-spacing:0.000000pt;}
.ls1_c00211{letter-spacing:2.666667pt;}
.ws0_c00211{word-spacing:-37.333333pt;}
.ws1_c00211{word-spacing:-29.504000pt;}
.ws2_c00211{word-spacing:-18.090667pt;}
.ws3_c00211{word-spacing:0.000000pt;}
._15_c00211{margin-left:-7.573333pt;}
._3_c00211{margin-left:-6.272000pt;}
._a_c00211{margin-left:-4.650667pt;}
._6_c00211{margin-left:-3.264000pt;}
._7_c00211{margin-left:-1.909333pt;}
._5_c00211{margin-left:-0.917333pt;}
._4_c00211{width:0.896000pt;}
._1_c00211{width:2.314667pt;}
._2_c00211{width:3.210667pt;}
._0_c00211{width:4.256000pt;}
._9_c00211{width:5.450667pt;}
._d_c00211{width:6.592000pt;}
._c_c00211{width:7.968000pt;}
._17_c00211{width:9.440000pt;}
._e_c00211{width:10.794667pt;}
._8_c00211{width:12.352000pt;}
._14_c00211{width:13.408000pt;}
._b_c00211{width:14.698667pt;}
._10_c00211{width:15.765333pt;}
._12_c00211{width:20.042667pt;}
._f_c00211{width:21.600000pt;}
._11_c00211{width:22.965333pt;}
._13_c00211{width:26.688000pt;}
._16_c00211{width:28.416000pt;}
.fs2_c00211{font-size:42.666667pt;}
.fs1_c00211{font-size:64.000000pt;}
.fs0_c00211{font-size:74.666667pt;}
.y0_c00211{bottom:0.000000pt;}
.y1f_c00211{bottom:2.760000pt;}
.y1e_c00211{bottom:6.425219pt;}
.y1d_c00211{bottom:31.613333pt;}
.y1c_c00211{bottom:51.880000pt;}
.y1b_c00211{bottom:74.413333pt;}
.y1a_c00211{bottom:96.946667pt;}
.y19_c00211{bottom:119.080000pt;}
.y18_c00211{bottom:141.080000pt;}
.y17_c00211{bottom:163.880000pt;}
.y16_c00211{bottom:185.746667pt;}
.y15_c00211{bottom:208.546667pt;}
.y14_c00211{bottom:230.680000pt;}
.y13_c00211{bottom:251.746667pt;}
.y12_c00211{bottom:273.880000pt;}
.y11_c00211{bottom:295.480000pt;}
.y10_c00211{bottom:317.080000pt;}
.yf_c00211{bottom:339.613333pt;}
.ye_c00211{bottom:361.480000pt;}
.yd_c00211{bottom:383.613333pt;}
.yc_c00211{bottom:405.613333pt;}
.yb_c00211{bottom:427.613333pt;}
.ya_c00211{bottom:449.213333pt;}
.y9_c00211{bottom:471.080000pt;}
.y8_c00211{bottom:493.080000pt;}
.y7_c00211{bottom:515.213333pt;}
.y6_c00211{bottom:537.346667pt;}
.y5_c00211{bottom:559.480000pt;}
.y4_c00211{bottom:581.080000pt;}
.y3_c00211{bottom:603.080000pt;}
.y2_c00211{bottom:625.480000pt;}
.y1_c00211{bottom:648.413333pt;}
.h4_c00211{height:11.733399pt;}
.h5_c00211{height:38.937500pt;}
.h2_c00211{height:73.281250pt;}
.h3_c00211{height:81.031250pt;}
.h0_c00211{height:694.333333pt;}
.h1_c00211{height:694.666667pt;}
.w2_c00211{width:93.222667pt;}
.w1_c00211{width:456.666667pt;}
.w0_c00211{width:456.733333pt;}
.x0_c00211{left:0.000000pt;}
.x2_c00211{left:94.533333pt;}
.x3_c00211{left:95.733333pt;}
.x4_c00211{left:96.933333pt;}
.x6_c00211{left:185.534871pt;}
.x1_c00211{left:194.133333pt;}
.x5_c00211{left:412.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_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_8a2eb09046b44cbeef823f58.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.480469;font-style:normal;font-weight:normal;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_8df7a598986548f1ee0130d6.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00212{font-family:ff3_c00212;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00212{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00212{vertical-align:0.000000px;}
.ls0_c00212{letter-spacing:-3.000000px;}
.ls2_c00212{letter-spacing:0.000000px;}
.ls1_c00212{letter-spacing:3.000000px;}
.sc__c00212{text-shadow:none;}
.sc0_c00212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00212{-webkit-text-stroke:0px transparent;}
.sc0_c00212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00212{word-spacing:-20.352000px;}
.ws1_c00212{word-spacing:-15.798000px;}
.ws2_c00212{word-spacing:0.000000px;}
._13_c00212{margin-left:-9.378000px;}
._11_c00212{margin-left:-8.037000px;}
._14_c00212{margin-left:-6.627000px;}
._d_c00212{margin-left:-5.202000px;}
._8_c00212{margin-left:-4.176000px;}
._7_c00212{margin-left:-2.601000px;}
._5_c00212{margin-left:-1.008000px;}
._6_c00212{width:1.035000px;}
._2_c00212{width:2.175000px;}
._1_c00212{width:3.915000px;}
._0_c00212{width:5.655000px;}
._e_c00212{width:6.984000px;}
._9_c00212{width:9.225000px;}
._15_c00212{width:10.593000px;}
._a_c00212{width:11.679000px;}
._4_c00212{width:12.702000px;}
._10_c00212{width:14.175000px;}
._f_c00212{width:16.164000px;}
._c_c00212{width:18.396000px;}
._12_c00212{width:23.292000px;}
._b_c00212{width:24.987000px;}
._3_c00212{width:391.188000px;}
.fc2_c00212{color:transparent;}
.fc1_c00212{color:rgb(128,128,128);}
.fc0_c00212{color:rgb(0,0,0);}
.fs3_c00212{font-size:48.000000px;}
.fs1_c00212{font-size:72.000000px;}
.fs2_c00212{font-size:78.000000px;}
.fs0_c00212{font-size:87.000000px;}
.y0_c00212{bottom:0.000000px;}
.y1f_c00212{bottom:3.105000px;}
.y1e_c00212{bottom:7.228357px;}
.y1d_c00212{bottom:51.630000px;}
.y1c_c00212{bottom:79.080000px;}
.y1b_c00212{bottom:103.980000px;}
.y1a_c00212{bottom:129.330000px;}
.y19_c00212{bottom:154.980000px;}
.y18_c00212{bottom:182.580000px;}
.y17_c00212{bottom:203.280000px;}
.y16_c00212{bottom:230.580000px;}
.y15_c00212{bottom:255.480000px;}
.y14_c00212{bottom:280.830000px;}
.y13_c00212{bottom:303.780000px;}
.y12_c00212{bottom:325.230000px;}
.y11_c00212{bottom:350.430000px;}
.y10_c00212{bottom:375.630000px;}
.yf_c00212{bottom:400.680000px;}
.ye_c00212{bottom:425.580000px;}
.yd_c00212{bottom:450.630000px;}
.yc_c00212{bottom:475.530000px;}
.yb_c00212{bottom:500.130000px;}
.ya_c00212{bottom:524.880000px;}
.y9_c00212{bottom:550.080000px;}
.y8_c00212{bottom:574.830000px;}
.y7_c00212{bottom:599.730000px;}
.y6_c00212{bottom:624.480000px;}
.y5_c00212{bottom:649.080000px;}
.y4_c00212{bottom:673.680000px;}
.y3_c00212{bottom:698.730000px;}
.y2_c00212{bottom:723.630000px;}
.y1_c00212{bottom:749.280000px;}
.h5_c00212{height:13.200074px;}
.h6_c00212{height:43.804688px;}
.h3_c00212{height:91.160156px;}
.h4_c00212{height:98.756836px;}
.h2_c00212{height:110.151855px;}
.h0_c00212{height:787.350000px;}
.h1_c00212{height:787.500000px;}
.w2_c00212{width:104.875500px;}
.w0_c00212{width:542.175000px;}
.w1_c00212{width:542.250000px;}
.x0_c00212{left:0.000000px;}
.x2_c00212{left:35.400000px;}
.x3_c00212{left:36.450000px;}
.x4_c00212{left:37.800000px;}
.x5_c00212{left:38.850000px;}
.x6_c00212{left:41.850000px;}
.x7_c00212{left:42.900000px;}
.x8_c00212{left:66.600000px;}
.x1_c00212{left:146.700000px;}
.xa_c00212{left:222.901749px;}
.x9_c00212{left:397.650000px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls0_c00212{letter-spacing:-2.666667pt;}
.ls2_c00212{letter-spacing:0.000000pt;}
.ls1_c00212{letter-spacing:2.666667pt;}
.ws0_c00212{word-spacing:-18.090667pt;}
.ws1_c00212{word-spacing:-14.042667pt;}
.ws2_c00212{word-spacing:0.000000pt;}
._13_c00212{margin-left:-8.336000pt;}
._11_c00212{margin-left:-7.144000pt;}
._14_c00212{margin-left:-5.890667pt;}
._d_c00212{margin-left:-4.624000pt;}
._8_c00212{margin-left:-3.712000pt;}
._7_c00212{margin-left:-2.312000pt;}
._5_c00212{margin-left:-0.896000pt;}
._6_c00212{width:0.920000pt;}
._2_c00212{width:1.933333pt;}
._1_c00212{width:3.480000pt;}
._0_c00212{width:5.026667pt;}
._e_c00212{width:6.208000pt;}
._9_c00212{width:8.200000pt;}
._15_c00212{width:9.416000pt;}
._a_c00212{width:10.381333pt;}
._4_c00212{width:11.290667pt;}
._10_c00212{width:12.600000pt;}
._f_c00212{width:14.368000pt;}
._c_c00212{width:16.352000pt;}
._12_c00212{width:20.704000pt;}
._b_c00212{width:22.210667pt;}
._3_c00212{width:347.722667pt;}
.fs3_c00212{font-size:42.666667pt;}
.fs1_c00212{font-size:64.000000pt;}
.fs2_c00212{font-size:69.333333pt;}
.fs0_c00212{font-size:77.333333pt;}
.y0_c00212{bottom:0.000000pt;}
.y1f_c00212{bottom:2.760000pt;}
.y1e_c00212{bottom:6.425206pt;}
.y1d_c00212{bottom:45.893333pt;}
.y1c_c00212{bottom:70.293333pt;}
.y1b_c00212{bottom:92.426667pt;}
.y1a_c00212{bottom:114.960000pt;}
.y19_c00212{bottom:137.760000pt;}
.y18_c00212{bottom:162.293333pt;}
.y17_c00212{bottom:180.693333pt;}
.y16_c00212{bottom:204.960000pt;}
.y15_c00212{bottom:227.093333pt;}
.y14_c00212{bottom:249.626667pt;}
.y13_c00212{bottom:270.026667pt;}
.y12_c00212{bottom:289.093333pt;}
.y11_c00212{bottom:311.493333pt;}
.y10_c00212{bottom:333.893333pt;}
.yf_c00212{bottom:356.160000pt;}
.ye_c00212{bottom:378.293333pt;}
.yd_c00212{bottom:400.560000pt;}
.yc_c00212{bottom:422.693333pt;}
.yb_c00212{bottom:444.560000pt;}
.ya_c00212{bottom:466.560000pt;}
.y9_c00212{bottom:488.960000pt;}
.y8_c00212{bottom:510.960000pt;}
.y7_c00212{bottom:533.093333pt;}
.y6_c00212{bottom:555.093333pt;}
.y5_c00212{bottom:576.960000pt;}
.y4_c00212{bottom:598.826667pt;}
.y3_c00212{bottom:621.093333pt;}
.y2_c00212{bottom:643.226667pt;}
.y1_c00212{bottom:666.026667pt;}
.h5_c00212{height:11.733399pt;}
.h6_c00212{height:38.937500pt;}
.h3_c00212{height:81.031250pt;}
.h4_c00212{height:87.783854pt;}
.h2_c00212{height:97.912760pt;}
.h0_c00212{height:699.866667pt;}
.h1_c00212{height:700.000000pt;}
.w2_c00212{width:93.222667pt;}
.w0_c00212{width:481.933333pt;}
.w1_c00212{width:482.000000pt;}
.x0_c00212{left:0.000000pt;}
.x2_c00212{left:31.466667pt;}
.x3_c00212{left:32.400000pt;}
.x4_c00212{left:33.600000pt;}
.x5_c00212{left:34.533333pt;}
.x6_c00212{left:37.200000pt;}
.x7_c00212{left:38.133333pt;}
.x8_c00212{left:59.200000pt;}
.x1_c00212{left:130.400000pt;}
.xa_c00212{left:198.134888pt;}
.x9_c00212{left:353.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9ed70a2dec340baa5f50debd.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.592000;font-style:normal;font-weight:normal;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_5b6807fb0ef35667ab3b7189.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.568848;font-style:normal;font-weight:normal;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_85b27bdd5a7bf652ad99c9d1.woff2')format("woff");}.ff3_c00213{font-family:ff3_c00213;line-height:1.575000;font-style:normal;font-weight:normal;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_35c2456b0ad417b39ea9d6e6.woff2')format("woff");}.ff4_c00213{font-family:ff4_c00213;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00213;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00213{font-family:ff5_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00213;src:url('chunks/assets/font_bb5bee43aef706d51ce8d27f.woff2')format("woff");}.ff6_c00213{font-family:ff6_c00213;line-height:1.480469;font-style:normal;font-weight: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_c00213;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00213{font-family:ff7_c00213;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00213{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00213{vertical-align:0.000000px;}
.ls3_c00213{letter-spacing:0.000000px;}
.ls4_c00213{letter-spacing:3.000000px;}
.ls1_c00213{letter-spacing:6.000000px;}
.ls2_c00213{letter-spacing:9.000000px;}
.ls0_c00213{letter-spacing:20.388000px;}
.sc__c00213{text-shadow:none;}
.sc0_c00213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00213{-webkit-text-stroke:0px transparent;}
.sc0_c00213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00213{word-spacing:-35.970000px;}
.ws2_c00213{word-spacing:-33.192000px;}
.ws3_c00213{word-spacing:-20.352000px;}
.ws0_c00213{word-spacing:-13.260000px;}
.ws4_c00213{word-spacing:0.000000px;}
._14_c00213{margin-left:-11.160000px;}
._b_c00213{margin-left:-10.056000px;}
._15_c00213{margin-left:-8.496000px;}
._c_c00213{margin-left:-6.984000px;}
._12_c00213{margin-left:-5.436000px;}
._9_c00213{margin-left:-4.392000px;}
._5_c00213{margin-left:-3.168000px;}
._7_c00213{margin-left:-1.800000px;}
._d_c00213{width:1.080000px;}
._6_c00213{width:2.160000px;}
._f_c00213{width:3.168000px;}
._8_c00213{width:4.536000px;}
._10_c00213{width:6.204000px;}
._1_c00213{width:7.260000px;}
._11_c00213{width:8.280000px;}
._4_c00213{width:9.960000px;}
._3_c00213{width:10.980000px;}
._a_c00213{width:12.240000px;}
._13_c00213{width:13.320000px;}
._2_c00213{width:15.120000px;}
._16_c00213{width:16.200000px;}
._e_c00213{width:18.552000px;}
._0_c00213{width:20.820000px;}
.fc2_c00213{color:transparent;}
.fc1_c00213{color:rgb(128,128,128);}
.fc0_c00213{color:rgb(0,0,0);}
.fs5_c00213{font-size:24.000000px;}
.fs6_c00213{font-size:48.000000px;}
.fs4_c00213{font-size:57.000000px;}
.fs0_c00213{font-size:60.000000px;}
.fs2_c00213{font-size:63.000000px;}
.fs1_c00213{font-size:72.000000px;}
.fs3_c00213{font-size:90.000000px;}
.y0_c00213{bottom:0.000000px;}
.y1f_c00213{bottom:3.105000px;}
.y1e_c00213{bottom:7.228363px;}
.y1d_c00213{bottom:56.400000px;}
.y1c_c00213{bottom:81.000000px;}
.y1b_c00213{bottom:106.650000px;}
.y1a_c00213{bottom:131.550000px;}
.y19_c00213{bottom:156.900000px;}
.y18_c00213{bottom:182.550000px;}
.y17_c00213{bottom:207.600000px;}
.y16_c00213{bottom:232.500000px;}
.y15_c00213{bottom:257.100000px;}
.y14_c00213{bottom:281.700000px;}
.y13_c00213{bottom:306.150000px;}
.y12_c00213{bottom:330.450000px;}
.y11_c00213{bottom:355.050000px;}
.y10_c00213{bottom:379.650000px;}
.yf_c00213{bottom:405.300000px;}
.ye_c00213{bottom:429.900000px;}
.yd_c00213{bottom:454.650000px;}
.yc_c00213{bottom:478.500000px;}
.yb_c00213{bottom:503.250000px;}
.ya_c00213{bottom:528.150000px;}
.y9_c00213{bottom:553.200000px;}
.y8_c00213{bottom:577.350000px;}
.y7_c00213{bottom:602.400000px;}
.y6_c00213{bottom:627.300000px;}
.y5_c00213{bottom:651.900000px;}
.y4_c00213{bottom:676.800000px;}
.y3_c00213{bottom:701.700000px;}
.y2_c00213{bottom:726.600000px;}
.y1_c00213{bottom:751.950000px;}
.h4_c00213{height:13.200074px;}
.h5_c00213{height:43.804688px;}
.h2_c00213{height:65.040000px;}
.h3_c00213{height:91.160156px;}
.h0_c00213{height:799.200000px;}
.h1_c00213{height:799.500000px;}
.w2_c00213{width:104.875500px;}
.w1_c00213{width:523.500000px;}
.w0_c00213{width:523.800000px;}
.x0_c00213{left:0.000000px;}
.x2_c00213{left:107.700000px;}
.x3_c00213{left:108.900000px;}
.x4_c00213{left:110.400000px;}
.x5_c00213{left:111.600000px;}
.x6_c00213{left:112.950000px;}
.x8_c00213{left:213.714249px;}
.x1_c00213{left:228.150000px;}
.x7_c00213{left:437.100000px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls3_c00213{letter-spacing:0.000000pt;}
.ls4_c00213{letter-spacing:2.666667pt;}
.ls1_c00213{letter-spacing:5.333333pt;}
.ls2_c00213{letter-spacing:8.000000pt;}
.ls0_c00213{letter-spacing:18.122667pt;}
.ws1_c00213{word-spacing:-31.973333pt;}
.ws2_c00213{word-spacing:-29.504000pt;}
.ws3_c00213{word-spacing:-18.090667pt;}
.ws0_c00213{word-spacing:-11.786667pt;}
.ws4_c00213{word-spacing:0.000000pt;}
._14_c00213{margin-left:-9.920000pt;}
._b_c00213{margin-left:-8.938667pt;}
._15_c00213{margin-left:-7.552000pt;}
._c_c00213{margin-left:-6.208000pt;}
._12_c00213{margin-left:-4.832000pt;}
._9_c00213{margin-left:-3.904000pt;}
._5_c00213{margin-left:-2.816000pt;}
._7_c00213{margin-left:-1.600000pt;}
._d_c00213{width:0.960000pt;}
._6_c00213{width:1.920000pt;}
._f_c00213{width:2.816000pt;}
._8_c00213{width:4.032000pt;}
._10_c00213{width:5.514667pt;}
._1_c00213{width:6.453333pt;}
._11_c00213{width:7.360000pt;}
._4_c00213{width:8.853333pt;}
._3_c00213{width:9.760000pt;}
._a_c00213{width:10.880000pt;}
._13_c00213{width:11.840000pt;}
._2_c00213{width:13.440000pt;}
._16_c00213{width:14.400000pt;}
._e_c00213{width:16.490667pt;}
._0_c00213{width:18.506667pt;}
.fs5_c00213{font-size:21.333333pt;}
.fs6_c00213{font-size:42.666667pt;}
.fs4_c00213{font-size:50.666667pt;}
.fs0_c00213{font-size:53.333333pt;}
.fs2_c00213{font-size:56.000000pt;}
.fs1_c00213{font-size:64.000000pt;}
.fs3_c00213{font-size:80.000000pt;}
.y0_c00213{bottom:0.000000pt;}
.y1f_c00213{bottom:2.760000pt;}
.y1e_c00213{bottom:6.425212pt;}
.y1d_c00213{bottom:50.133333pt;}
.y1c_c00213{bottom:72.000000pt;}
.y1b_c00213{bottom:94.800000pt;}
.y1a_c00213{bottom:116.933333pt;}
.y19_c00213{bottom:139.466667pt;}
.y18_c00213{bottom:162.266667pt;}
.y17_c00213{bottom:184.533333pt;}
.y16_c00213{bottom:206.666667pt;}
.y15_c00213{bottom:228.533333pt;}
.y14_c00213{bottom:250.400000pt;}
.y13_c00213{bottom:272.133333pt;}
.y12_c00213{bottom:293.733333pt;}
.y11_c00213{bottom:315.600000pt;}
.y10_c00213{bottom:337.466667pt;}
.yf_c00213{bottom:360.266667pt;}
.ye_c00213{bottom:382.133333pt;}
.yd_c00213{bottom:404.133333pt;}
.yc_c00213{bottom:425.333333pt;}
.yb_c00213{bottom:447.333333pt;}
.ya_c00213{bottom:469.466667pt;}
.y9_c00213{bottom:491.733333pt;}
.y8_c00213{bottom:513.200000pt;}
.y7_c00213{bottom:535.466667pt;}
.y6_c00213{bottom:557.600000pt;}
.y5_c00213{bottom:579.466667pt;}
.y4_c00213{bottom:601.600000pt;}
.y3_c00213{bottom:623.733333pt;}
.y2_c00213{bottom:645.866667pt;}
.y1_c00213{bottom:668.400000pt;}
.h4_c00213{height:11.733399pt;}
.h5_c00213{height:38.937500pt;}
.h2_c00213{height:57.813333pt;}
.h3_c00213{height:81.031250pt;}
.h0_c00213{height:710.400000pt;}
.h1_c00213{height:710.666667pt;}
.w2_c00213{width:93.222667pt;}
.w1_c00213{width:465.333333pt;}
.w0_c00213{width:465.600000pt;}
.x0_c00213{left:0.000000pt;}
.x2_c00213{left:95.733333pt;}
.x3_c00213{left:96.800000pt;}
.x4_c00213{left:98.133333pt;}
.x5_c00213{left:99.200000pt;}
.x6_c00213{left:100.400000pt;}
.x8_c00213{left:189.968221pt;}
.x1_c00213{left:202.800000pt;}
.x7_c00213{left:388.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_20cd60d72e5e53774c5308da.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00214;src:url('chunks/assets/font_cf8de50812ba0dcece208281.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00214;src:url('chunks/assets/font_d1531ccf4d65d5f21b0319db.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:1.568848;font-style:normal;font-weight:normal;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_bb5bee43aef706d51ce8d27f.woff2')format("woff");}.ff4_c00214{font-family:ff4_c00214;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00214;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00214{font-family:ff5_c00214;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.ls1_c00214{letter-spacing:0.000000px;}
.ls0_c00214{letter-spacing:3.000000px;}
.ls2_c00214{letter-spacing:6.000000px;}
.sc__c00214{text-shadow:none;}
.sc0_c00214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00214{-webkit-text-stroke:0px transparent;}
.sc0_c00214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00214{word-spacing:-33.192000px;}
.ws1_c00214{word-spacing:-21.906000px;}
.ws2_c00214{word-spacing:0.000000px;}
._d_c00214{margin-left:-11.178000px;}
._11_c00214{margin-left:-8.940000px;}
._2_c00214{margin-left:-6.888000px;}
._8_c00214{margin-left:-5.505000px;}
._a_c00214{margin-left:-3.552000px;}
._9_c00214{margin-left:-2.436000px;}
._b_c00214{margin-left:-1.080000px;}
._3_c00214{width:1.260000px;}
._4_c00214{width:2.352000px;}
._5_c00214{width:3.696000px;}
._f_c00214{width:5.112000px;}
._1_c00214{width:7.140000px;}
._6_c00214{width:8.400000px;}
._10_c00214{width:10.224000px;}
._0_c00214{width:11.928000px;}
._12_c00214{width:13.284000px;}
._c_c00214{width:14.520000px;}
._e_c00214{width:16.272000px;}
._7_c00214{width:401.688000px;}
.fc2_c00214{color:transparent;}
.fc1_c00214{color:rgb(128,128,128);}
.fc0_c00214{color:rgb(0,0,0);}
.fs4_c00214{font-size:48.000000px;}
.fs3_c00214{font-size:66.000000px;}
.fs2_c00214{font-size:72.000000px;}
.fs1_c00214{font-size:81.000000px;}
.fs0_c00214{font-size:84.000000px;}
.y0_c00214{bottom:0.000000px;}
.y1f_c00214{bottom:3.105000px;}
.y1e_c00214{bottom:7.228357px;}
.y1d_c00214{bottom:46.530000px;}
.y1c_c00214{bottom:73.680000px;}
.y1b_c00214{bottom:99.180000px;}
.y1a_c00214{bottom:123.930000px;}
.y19_c00214{bottom:149.430000px;}
.y18_c00214{bottom:174.480000px;}
.y17_c00214{bottom:199.530000px;}
.y16_c00214{bottom:223.530000px;}
.y15_c00214{bottom:249.030000px;}
.y14_c00214{bottom:270.630000px;}
.y13_c00214{bottom:297.330000px;}
.y12_c00214{bottom:320.280000px;}
.y11_c00214{bottom:343.680000px;}
.y10_c00214{bottom:368.880000px;}
.yf_c00214{bottom:392.880000px;}
.ye_c00214{bottom:417.930000px;}
.yd_c00214{bottom:442.830000px;}
.yc_c00214{bottom:467.880000px;}
.yb_c00214{bottom:492.480000px;}
.ya_c00214{bottom:517.380000px;}
.y9_c00214{bottom:541.980000px;}
.y8_c00214{bottom:566.430000px;}
.y7_c00214{bottom:591.030000px;}
.y6_c00214{bottom:615.630000px;}
.y5_c00214{bottom:640.230000px;}
.y4_c00214{bottom:665.280000px;}
.y3_c00214{bottom:689.280000px;}
.y2_c00214{bottom:714.930000px;}
.y1_c00214{bottom:739.830000px;}
.h4_c00214{height:13.200074px;}
.h5_c00214{height:43.804688px;}
.h1_c00214{height:82.400391px;}
.h3_c00214{height:83.563477px;}
.h2_c00214{height:91.160156px;}
.h0_c00214{height:792.750000px;}
.w2_c00214{width:104.875500px;}
.w1_c00214{width:534.750000px;}
.w0_c00214{width:534.900000px;}
.x0_c00214{left:0.000000px;}
.x8_c00214{left:28.650000px;}
.x7_c00214{left:30.150000px;}
.x6_c00214{left:31.350000px;}
.x5_c00214{left:32.850000px;}
.x4_c00214{left:34.050000px;}
.x2_c00214{left:35.100000px;}
.x3_c00214{left:36.150000px;}
.x1_c00214{left:142.200000px;}
.xa_c00214{left:219.264267px;}
.x9_c00214{left:358.050000px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls1_c00214{letter-spacing:0.000000pt;}
.ls0_c00214{letter-spacing:2.666667pt;}
.ls2_c00214{letter-spacing:5.333333pt;}
.ws0_c00214{word-spacing:-29.504000pt;}
.ws1_c00214{word-spacing:-19.472000pt;}
.ws2_c00214{word-spacing:0.000000pt;}
._d_c00214{margin-left:-9.936000pt;}
._11_c00214{margin-left:-7.946667pt;}
._2_c00214{margin-left:-6.122667pt;}
._8_c00214{margin-left:-4.893333pt;}
._a_c00214{margin-left:-3.157333pt;}
._9_c00214{margin-left:-2.165333pt;}
._b_c00214{margin-left:-0.960000pt;}
._3_c00214{width:1.120000pt;}
._4_c00214{width:2.090667pt;}
._5_c00214{width:3.285333pt;}
._f_c00214{width:4.544000pt;}
._1_c00214{width:6.346667pt;}
._6_c00214{width:7.466667pt;}
._10_c00214{width:9.088000pt;}
._0_c00214{width:10.602667pt;}
._12_c00214{width:11.808000pt;}
._c_c00214{width:12.906667pt;}
._e_c00214{width:14.464000pt;}
._7_c00214{width:357.056000pt;}
.fs4_c00214{font-size:42.666667pt;}
.fs3_c00214{font-size:58.666667pt;}
.fs2_c00214{font-size:64.000000pt;}
.fs1_c00214{font-size:72.000000pt;}
.fs0_c00214{font-size:74.666667pt;}
.y0_c00214{bottom:0.000000pt;}
.y1f_c00214{bottom:2.760000pt;}
.y1e_c00214{bottom:6.425206pt;}
.y1d_c00214{bottom:41.360000pt;}
.y1c_c00214{bottom:65.493333pt;}
.y1b_c00214{bottom:88.160000pt;}
.y1a_c00214{bottom:110.160000pt;}
.y19_c00214{bottom:132.826667pt;}
.y18_c00214{bottom:155.093333pt;}
.y17_c00214{bottom:177.360000pt;}
.y16_c00214{bottom:198.693333pt;}
.y15_c00214{bottom:221.360000pt;}
.y14_c00214{bottom:240.560000pt;}
.y13_c00214{bottom:264.293333pt;}
.y12_c00214{bottom:284.693333pt;}
.y11_c00214{bottom:305.493333pt;}
.y10_c00214{bottom:327.893333pt;}
.yf_c00214{bottom:349.226667pt;}
.ye_c00214{bottom:371.493333pt;}
.yd_c00214{bottom:393.626667pt;}
.yc_c00214{bottom:415.893333pt;}
.yb_c00214{bottom:437.760000pt;}
.ya_c00214{bottom:459.893333pt;}
.y9_c00214{bottom:481.760000pt;}
.y8_c00214{bottom:503.493333pt;}
.y7_c00214{bottom:525.360000pt;}
.y6_c00214{bottom:547.226667pt;}
.y5_c00214{bottom:569.093333pt;}
.y4_c00214{bottom:591.360000pt;}
.y3_c00214{bottom:612.693333pt;}
.y2_c00214{bottom:635.493333pt;}
.y1_c00214{bottom:657.626667pt;}
.h4_c00214{height:11.733399pt;}
.h5_c00214{height:38.937500pt;}
.h1_c00214{height:73.244792pt;}
.h3_c00214{height:74.278646pt;}
.h2_c00214{height:81.031250pt;}
.h0_c00214{height:704.666667pt;}
.w2_c00214{width:93.222667pt;}
.w1_c00214{width:475.333333pt;}
.w0_c00214{width:475.466667pt;}
.x0_c00214{left:0.000000pt;}
.x8_c00214{left:25.466667pt;}
.x7_c00214{left:26.800000pt;}
.x6_c00214{left:27.866667pt;}
.x5_c00214{left:29.200000pt;}
.x4_c00214{left:30.266667pt;}
.x2_c00214{left:31.200000pt;}
.x3_c00214{left:32.133333pt;}
.x1_c00214{left:126.400000pt;}
.xa_c00214{left:194.901571pt;}
.x9_c00214{left:318.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_94b28d329a64caf393213978.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00215;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00215;src:url('chunks/assets/font_a8f19b0aefba307a605e009f.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;line-height:1.568848;font-style:normal;font-weight:normal;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_500a3642fe147afd2b4fd9f3.woff2')format("woff");}.ff4_c00215{font-family:ff4_c00215;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00215{font-family:ff5_c00215;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00215{vertical-align:0.000000px;}
.ls1_c00215{letter-spacing:0.000000px;}
.ls0_c00215{letter-spacing:3.000000px;}
.ls2_c00215{letter-spacing:6.000000px;}
.sc__c00215{text-shadow:none;}
.sc0_c00215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00215{-webkit-text-stroke:0px transparent;}
.sc0_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00215{word-spacing:-22.629000px;}
.ws1_c00215{word-spacing:0.000000px;}
._2_c00215{margin-left:-9.324000px;}
._7_c00215{margin-left:-7.644000px;}
._10_c00215{margin-left:-6.570000px;}
._8_c00215{margin-left:-5.391000px;}
._1_c00215{margin-left:-3.948000px;}
._0_c00215{margin-left:-1.932000px;}
._5_c00215{width:1.512000px;}
._4_c00215{width:2.856000px;}
._6_c00215{width:4.248000px;}
._3_c00215{width:5.376000px;}
._c_c00215{width:7.788000px;}
._11_c00215{width:8.904000px;}
._9_c00215{width:10.728000px;}
._b_c00215{width:12.399000px;}
._d_c00215{width:14.268000px;}
._e_c00215{width:16.164000px;}
._a_c00215{width:17.448000px;}
._12_c00215{width:18.540000px;}
._f_c00215{width:33.147000px;}
.fc2_c00215{color:transparent;}
.fc1_c00215{color:rgb(128,128,128);}
.fc0_c00215{color:rgb(0,0,0);}
.fs4_c00215{font-size:48.000000px;}
.fs3_c00215{font-size:63.000000px;}
.fs2_c00215{font-size:69.000000px;}
.fs1_c00215{font-size:72.000000px;}
.fs0_c00215{font-size:84.000000px;}
.y0_c00215{bottom:0.000000px;}
.y1f_c00215{bottom:3.105000px;}
.y1e_c00215{bottom:7.228355px;}
.y1d_c00215{bottom:41.535000px;}
.y1c_c00215{bottom:65.835000px;}
.y1b_c00215{bottom:90.735000px;}
.y1a_c00215{bottom:115.785000px;}
.y19_c00215{bottom:140.985000px;}
.y18_c00215{bottom:165.585000px;}
.y17_c00215{bottom:190.335000px;}
.y16_c00215{bottom:214.935000px;}
.y15_c00215{bottom:239.835000px;}
.y14_c00215{bottom:264.285000px;}
.y13_c00215{bottom:288.585000px;}
.y12_c00215{bottom:312.735000px;}
.y11_c00215{bottom:337.035000px;}
.y10_c00215{bottom:361.035000px;}
.yf_c00215{bottom:386.085000px;}
.ye_c00215{bottom:410.685000px;}
.yd_c00215{bottom:435.285000px;}
.yc_c00215{bottom:460.335000px;}
.yb_c00215{bottom:483.585000px;}
.ya_c00215{bottom:508.185000px;}
.y9_c00215{bottom:533.235000px;}
.y8_c00215{bottom:557.535000px;}
.y7_c00215{bottom:582.135000px;}
.y6_c00215{bottom:605.835000px;}
.y5_c00215{bottom:631.335000px;}
.y4_c00215{bottom:655.635000px;}
.y3_c00215{bottom:679.935000px;}
.y2_c00215{bottom:704.685000px;}
.y1_c00215{bottom:728.985000px;}
.h4_c00215{height:13.200074px;}
.h5_c00215{height:43.804688px;}
.h2_c00215{height:82.441406px;}
.h3_c00215{height:91.160156px;}
.h1_c00215{height:780.750000px;}
.h0_c00215{height:780.825000px;}
.w2_c00215{width:104.875500px;}
.w0_c00215{width:519.450000px;}
.w1_c00215{width:519.750000px;}
.x0_c00215{left:0.000000px;}
.x5_c00215{left:107.250000px;}
.x4_c00215{left:108.450000px;}
.x3_c00215{left:109.950000px;}
.x2_c00215{left:111.750000px;}
.x6_c00215{left:113.100000px;}
.x7_c00215{left:114.300000px;}
.x9_c00215{left:211.539230px;}
.x1_c00215{left:221.850000px;}
.x8_c00215{left:468.450000px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls1_c00215{letter-spacing:0.000000pt;}
.ls0_c00215{letter-spacing:2.666667pt;}
.ls2_c00215{letter-spacing:5.333333pt;}
.ws0_c00215{word-spacing:-20.114667pt;}
.ws1_c00215{word-spacing:0.000000pt;}
._2_c00215{margin-left:-8.288000pt;}
._7_c00215{margin-left:-6.794667pt;}
._10_c00215{margin-left:-5.840000pt;}
._8_c00215{margin-left:-4.792000pt;}
._1_c00215{margin-left:-3.509333pt;}
._0_c00215{margin-left:-1.717333pt;}
._5_c00215{width:1.344000pt;}
._4_c00215{width:2.538667pt;}
._6_c00215{width:3.776000pt;}
._3_c00215{width:4.778667pt;}
._c_c00215{width:6.922667pt;}
._11_c00215{width:7.914667pt;}
._9_c00215{width:9.536000pt;}
._b_c00215{width:11.021333pt;}
._d_c00215{width:12.682667pt;}
._e_c00215{width:14.368000pt;}
._a_c00215{width:15.509333pt;}
._12_c00215{width:16.480000pt;}
._f_c00215{width:29.464000pt;}
.fs4_c00215{font-size:42.666667pt;}
.fs3_c00215{font-size:56.000000pt;}
.fs2_c00215{font-size:61.333333pt;}
.fs1_c00215{font-size:64.000000pt;}
.fs0_c00215{font-size:74.666667pt;}
.y0_c00215{bottom:0.000000pt;}
.y1f_c00215{bottom:2.760000pt;}
.y1e_c00215{bottom:6.425204pt;}
.y1d_c00215{bottom:36.920000pt;}
.y1c_c00215{bottom:58.520000pt;}
.y1b_c00215{bottom:80.653333pt;}
.y1a_c00215{bottom:102.920000pt;}
.y19_c00215{bottom:125.320000pt;}
.y18_c00215{bottom:147.186667pt;}
.y17_c00215{bottom:169.186667pt;}
.y16_c00215{bottom:191.053333pt;}
.y15_c00215{bottom:213.186667pt;}
.y14_c00215{bottom:234.920000pt;}
.y13_c00215{bottom:256.520000pt;}
.y12_c00215{bottom:277.986667pt;}
.y11_c00215{bottom:299.586667pt;}
.y10_c00215{bottom:320.920000pt;}
.yf_c00215{bottom:343.186667pt;}
.ye_c00215{bottom:365.053333pt;}
.yd_c00215{bottom:386.920000pt;}
.yc_c00215{bottom:409.186667pt;}
.yb_c00215{bottom:429.853333pt;}
.ya_c00215{bottom:451.720000pt;}
.y9_c00215{bottom:473.986667pt;}
.y8_c00215{bottom:495.586667pt;}
.y7_c00215{bottom:517.453333pt;}
.y6_c00215{bottom:538.520000pt;}
.y5_c00215{bottom:561.186667pt;}
.y4_c00215{bottom:582.786667pt;}
.y3_c00215{bottom:604.386667pt;}
.y2_c00215{bottom:626.386667pt;}
.y1_c00215{bottom:647.986667pt;}
.h4_c00215{height:11.733399pt;}
.h5_c00215{height:38.937500pt;}
.h2_c00215{height:73.281250pt;}
.h3_c00215{height:81.031250pt;}
.h1_c00215{height:694.000000pt;}
.h0_c00215{height:694.066667pt;}
.w2_c00215{width:93.222667pt;}
.w0_c00215{width:461.733333pt;}
.w1_c00215{width:462.000000pt;}
.x0_c00215{left:0.000000pt;}
.x5_c00215{left:95.333333pt;}
.x4_c00215{left:96.400000pt;}
.x3_c00215{left:97.733333pt;}
.x2_c00215{left:99.333333pt;}
.x6_c00215{left:100.533333pt;}
.x7_c00215{left:101.600000pt;}
.x9_c00215{left:188.034871pt;}
.x1_c00215{left:197.200000pt;}
.x8_c00215{left:416.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_205e89145bddf5120ac9e54a.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.592000;font-style:normal;font-weight:normal;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_67cc6a30c67151d0e48875cd.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00216;src:url('chunks/assets/font_462582941f03f0b91606b4c1.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00216;src:url('chunks/assets/font_a0cae779b9311d2c51c9dc1a.woff2')format("woff");}.ff4_c00216{font-family:ff4_c00216;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00216;src:url('chunks/assets/font_b6d9ccb3ed9d955ec89e6391.woff2')format("woff");}.ff5_c00216{font-family:ff5_c00216;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00216;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00216{font-family:ff6_c00216;line-height:1.219238;font-style: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;}
.ls3_c00216{letter-spacing:0.000000px;}
.ls2_c00216{letter-spacing:3.000000px;}
.ls1_c00216{letter-spacing:6.000000px;}
.ls0_c00216{letter-spacing:16.188000px;}
.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:-33.192000px;}
.ws2_c00216{word-spacing:-22.629000px;}
.ws1_c00216{word-spacing:-20.352000px;}
.ws3_c00216{word-spacing:0.000000px;}
._1b_c00216{margin-left:-29.382000px;}
._19_c00216{margin-left:-15.801000px;}
._18_c00216{margin-left:-12.888000px;}
._17_c00216{margin-left:-10.236000px;}
._11_c00216{margin-left:-7.716000px;}
._10_c00216{margin-left:-6.408000px;}
._c_c00216{margin-left:-5.175000px;}
._2_c00216{margin-left:-3.780000px;}
._d_c00216{margin-left:-2.763000px;}
._b_c00216{margin-left:-1.716000px;}
._a_c00216{width:1.800000px;}
._4_c00216{width:2.880000px;}
._6_c00216{width:4.080000px;}
._f_c00216{width:5.511000px;}
._3_c00216{width:7.560000px;}
._1d_c00216{width:9.432000px;}
._8_c00216{width:10.500000px;}
._7_c00216{width:11.880000px;}
._e_c00216{width:13.743000px;}
._5_c00216{width:15.120000px;}
._1_c00216{width:16.440000px;}
._13_c00216{width:18.204000px;}
._0_c00216{width:21.420000px;}
._14_c00216{width:23.472000px;}
._15_c00216{width:25.056000px;}
._16_c00216{width:26.856000px;}
._12_c00216{width:28.284000px;}
._1c_c00216{width:30.933000px;}
._1a_c00216{width:33.840000px;}
._9_c00216{width:390.900000px;}
.fc2_c00216{color:transparent;}
.fc1_c00216{color:rgb(128,128,128);}
.fc0_c00216{color:rgb(0,0,0);}
.fs5_c00216{font-size:48.000000px;}
.fs0_c00216{font-size:60.000000px;}
.fs4_c00216{font-size:63.000000px;}
.fs2_c00216{font-size:66.000000px;}
.fs3_c00216{font-size:69.000000px;}
.fs1_c00216{font-size:72.000000px;}
.y0_c00216{bottom:0.000000px;}
.y1e_c00216{bottom:3.105000px;}
.y1d_c00216{bottom:7.228357px;}
.y1c_c00216{bottom:71.880000px;}
.y1b_c00216{bottom:97.830000px;}
.y1a_c00216{bottom:123.180000px;}
.y19_c00216{bottom:148.230000px;}
.y18_c00216{bottom:173.580000px;}
.y17_c00216{bottom:198.180000px;}
.y16_c00216{bottom:222.030000px;}
.y15_c00216{bottom:247.830000px;}
.y14_c00216{bottom:272.430000px;}
.y13_c00216{bottom:296.730000px;}
.y12_c00216{bottom:318.930000px;}
.y11_c00216{bottom:343.230000px;}
.y10_c00216{bottom:369.330000px;}
.yf_c00216{bottom:392.880000px;}
.ye_c00216{bottom:418.230000px;}
.yd_c00216{bottom:443.430000px;}
.yc_c00216{bottom:467.880000px;}
.yb_c00216{bottom:491.730000px;}
.ya_c00216{bottom:516.780000px;}
.y9_c00216{bottom:542.130000px;}
.y8_c00216{bottom:566.430000px;}
.y7_c00216{bottom:591.330000px;}
.y6_c00216{bottom:615.330000px;}
.y5_c00216{bottom:639.930000px;}
.y4_c00216{bottom:664.530000px;}
.y3_c00216{bottom:689.130000px;}
.y2_c00216{bottom:713.580000px;}
.y1_c00216{bottom:738.780000px;}
.h4_c00216{height:13.200074px;}
.h5_c00216{height:43.804688px;}
.h2_c00216{height:65.040000px;}
.h3_c00216{height:91.160156px;}
.h1_c00216{height:783.000000px;}
.h0_c00216{height:783.300000px;}
.w1_c00216{width:104.875500px;}
.w0_c00216{width:523.500000px;}
.x0_c00216{left:0.000000px;}
.x6_c00216{left:31.350000px;}
.x2_c00216{left:32.400000px;}
.x7_c00216{left:33.750000px;}
.x3_c00216{left:34.800000px;}
.x4_c00216{left:36.150000px;}
.x5_c00216{left:37.500000px;}
.x1_c00216{left:141.000000px;}
.x9_c00216{left:213.564240px;}
.x8_c00216{left:382.050000px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls3_c00216{letter-spacing:0.000000pt;}
.ls2_c00216{letter-spacing:2.666667pt;}
.ls1_c00216{letter-spacing:5.333333pt;}
.ls0_c00216{letter-spacing:14.389333pt;}
.ws0_c00216{word-spacing:-29.504000pt;}
.ws2_c00216{word-spacing:-20.114667pt;}
.ws1_c00216{word-spacing:-18.090667pt;}
.ws3_c00216{word-spacing:0.000000pt;}
._1b_c00216{margin-left:-26.117333pt;}
._19_c00216{margin-left:-14.045333pt;}
._18_c00216{margin-left:-11.456000pt;}
._17_c00216{margin-left:-9.098667pt;}
._11_c00216{margin-left:-6.858667pt;}
._10_c00216{margin-left:-5.696000pt;}
._c_c00216{margin-left:-4.600000pt;}
._2_c00216{margin-left:-3.360000pt;}
._d_c00216{margin-left:-2.456000pt;}
._b_c00216{margin-left:-1.525333pt;}
._a_c00216{width:1.600000pt;}
._4_c00216{width:2.560000pt;}
._6_c00216{width:3.626667pt;}
._f_c00216{width:4.898667pt;}
._3_c00216{width:6.720000pt;}
._1d_c00216{width:8.384000pt;}
._8_c00216{width:9.333333pt;}
._7_c00216{width:10.560000pt;}
._e_c00216{width:12.216000pt;}
._5_c00216{width:13.440000pt;}
._1_c00216{width:14.613333pt;}
._13_c00216{width:16.181333pt;}
._0_c00216{width:19.040000pt;}
._14_c00216{width:20.864000pt;}
._15_c00216{width:22.272000pt;}
._16_c00216{width:23.872000pt;}
._12_c00216{width:25.141333pt;}
._1c_c00216{width:27.496000pt;}
._1a_c00216{width:30.080000pt;}
._9_c00216{width:347.466667pt;}
.fs5_c00216{font-size:42.666667pt;}
.fs0_c00216{font-size:53.333333pt;}
.fs4_c00216{font-size:56.000000pt;}
.fs2_c00216{font-size:58.666667pt;}
.fs3_c00216{font-size:61.333333pt;}
.fs1_c00216{font-size:64.000000pt;}
.y0_c00216{bottom:0.000000pt;}
.y1e_c00216{bottom:2.760000pt;}
.y1d_c00216{bottom:6.425206pt;}
.y1c_c00216{bottom:63.893333pt;}
.y1b_c00216{bottom:86.960000pt;}
.y1a_c00216{bottom:109.493333pt;}
.y19_c00216{bottom:131.760000pt;}
.y18_c00216{bottom:154.293333pt;}
.y17_c00216{bottom:176.160000pt;}
.y16_c00216{bottom:197.360000pt;}
.y15_c00216{bottom:220.293333pt;}
.y14_c00216{bottom:242.160000pt;}
.y13_c00216{bottom:263.760000pt;}
.y12_c00216{bottom:283.493333pt;}
.y11_c00216{bottom:305.093333pt;}
.y10_c00216{bottom:328.293333pt;}
.yf_c00216{bottom:349.226667pt;}
.ye_c00216{bottom:371.760000pt;}
.yd_c00216{bottom:394.160000pt;}
.yc_c00216{bottom:415.893333pt;}
.yb_c00216{bottom:437.093333pt;}
.ya_c00216{bottom:459.360000pt;}
.y9_c00216{bottom:481.893333pt;}
.y8_c00216{bottom:503.493333pt;}
.y7_c00216{bottom:525.626667pt;}
.y6_c00216{bottom:546.960000pt;}
.y5_c00216{bottom:568.826667pt;}
.y4_c00216{bottom:590.693333pt;}
.y3_c00216{bottom:612.560000pt;}
.y2_c00216{bottom:634.293333pt;}
.y1_c00216{bottom:656.693333pt;}
.h4_c00216{height:11.733399pt;}
.h5_c00216{height:38.937500pt;}
.h2_c00216{height:57.813333pt;}
.h3_c00216{height:81.031250pt;}
.h1_c00216{height:696.000000pt;}
.h0_c00216{height:696.266667pt;}
.w1_c00216{width:93.222667pt;}
.w0_c00216{width:465.333333pt;}
.x0_c00216{left:0.000000pt;}
.x6_c00216{left:27.866667pt;}
.x2_c00216{left:28.800000pt;}
.x7_c00216{left:30.000000pt;}
.x3_c00216{left:30.933333pt;}
.x4_c00216{left:32.133333pt;}
.x5_c00216{left:33.333333pt;}
.x1_c00216{left:125.333333pt;}
.x9_c00216{left:189.834880pt;}
.x8_c00216{left:339.600000pt;}
}





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

.ir_c00217:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00217{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00217;src:url('chunks/assets/font_99f139a592096fd3705eaea6.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00217;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00217;src:url('chunks/assets/font_57924c0fd991650cdd937e80.woff2')format("woff");}.ff3_c00217{font-family:ff3_c00217;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00217;src:url('chunks/assets/font_8d0d7b4e797a5301a4b91ae1.woff2')format("woff");}.ff4_c00217{font-family:ff4_c00217;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00217;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00217{font-family:ff5_c00217;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00217{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00217{vertical-align:0.000000px;}
.ls0_c00217{letter-spacing:0.000000px;}
.ls1_c00217{letter-spacing:3.000000px;}
.ls2_c00217{letter-spacing:6.000000px;}
.sc__c00217{text-shadow:none;}
.sc0_c00217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00217{-webkit-text-stroke:0px transparent;}
.sc0_c00217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00217{word-spacing:-36.051000px;}
.ws0_c00217{word-spacing:-20.352000px;}
.ws2_c00217{word-spacing:0.000000px;}
._15_c00217{margin-left:-12.924000px;}
._6_c00217{margin-left:-11.268000px;}
._11_c00217{margin-left:-9.276000px;}
._a_c00217{margin-left:-7.116000px;}
._b_c00217{margin-left:-5.304000px;}
._e_c00217{margin-left:-4.104000px;}
._5_c00217{margin-left:-3.096000px;}
._4_c00217{margin-left:-1.944000px;}
._1_c00217{width:1.596000px;}
._0_c00217{width:3.528000px;}
._3_c00217{width:4.536000px;}
._2_c00217{width:5.544000px;}
._7_c00217{width:7.524000px;}
._10_c00217{width:8.712000px;}
._8_c00217{width:9.960000px;}
._f_c00217{width:11.736000px;}
._c_c00217{width:12.972000px;}
._9_c00217{width:14.748000px;}
._12_c00217{width:16.536000px;}
._14_c00217{width:18.480000px;}
._d_c00217{width:21.744000px;}
._13_c00217{width:27.972000px;}
.fc2_c00217{color:transparent;}
.fc1_c00217{color:rgb(128,128,128);}
.fc0_c00217{color:rgb(0,0,0);}
.fs3_c00217{font-size:48.000000px;}
.fs2_c00217{font-size:63.000000px;}
.fs1_c00217{font-size:72.000000px;}
.fs0_c00217{font-size:84.000000px;}
.y0_c00217{bottom:0.000000px;}
.y1f_c00217{bottom:3.105000px;}
.y1e_c00217{bottom:7.228363px;}
.y1d_c00217{bottom:52.350000px;}
.y1c_c00217{bottom:76.950000px;}
.y1b_c00217{bottom:102.150000px;}
.y1a_c00217{bottom:126.900000px;}
.y19_c00217{bottom:151.200000px;}
.y18_c00217{bottom:176.550000px;}
.y17_c00217{bottom:200.850000px;}
.y16_c00217{bottom:225.750000px;}
.y15_c00217{bottom:250.650000px;}
.y14_c00217{bottom:274.650000px;}
.y13_c00217{bottom:300.150000px;}
.y12_c00217{bottom:324.900000px;}
.y11_c00217{bottom:348.600000px;}
.y10_c00217{bottom:373.050000px;}
.yf_c00217{bottom:396.900000px;}
.ye_c00217{bottom:422.250000px;}
.yd_c00217{bottom:446.550000px;}
.yc_c00217{bottom:470.550000px;}
.yb_c00217{bottom:494.550000px;}
.ya_c00217{bottom:519.450000px;}
.y9_c00217{bottom:543.450000px;}
.y8_c00217{bottom:568.800000px;}
.y7_c00217{bottom:593.100000px;}
.y6_c00217{bottom:617.700000px;}
.y5_c00217{bottom:642.600000px;}
.y4_c00217{bottom:667.200000px;}
.y3_c00217{bottom:691.650000px;}
.y2_c00217{bottom:715.950000px;}
.y1_c00217{bottom:742.800000px;}
.h4_c00217{height:13.200074px;}
.h5_c00217{height:43.804688px;}
.h2_c00217{height:82.441406px;}
.h3_c00217{height:91.160156px;}
.h1_c00217{height:788.250000px;}
.h0_c00217{height:788.400000px;}
.w2_c00217{width:104.875500px;}
.w0_c00217{width:517.875000px;}
.w1_c00217{width:518.250000px;}
.x0_c00217{left:0.000000px;}
.x5_c00217{left:108.600000px;}
.x4_c00217{left:109.650000px;}
.x3_c00217{left:110.700000px;}
.x2_c00217{left:112.650000px;}
.x6_c00217{left:114.450000px;}
.x8_c00217{left:210.751740px;}
.x1_c00217{left:233.850000px;}
.x7_c00217{left:463.350000px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls0_c00217{letter-spacing:0.000000pt;}
.ls1_c00217{letter-spacing:2.666667pt;}
.ls2_c00217{letter-spacing:5.333333pt;}
.ws1_c00217{word-spacing:-32.045333pt;}
.ws0_c00217{word-spacing:-18.090667pt;}
.ws2_c00217{word-spacing:0.000000pt;}
._15_c00217{margin-left:-11.488000pt;}
._6_c00217{margin-left:-10.016000pt;}
._11_c00217{margin-left:-8.245333pt;}
._a_c00217{margin-left:-6.325333pt;}
._b_c00217{margin-left:-4.714667pt;}
._e_c00217{margin-left:-3.648000pt;}
._5_c00217{margin-left:-2.752000pt;}
._4_c00217{margin-left:-1.728000pt;}
._1_c00217{width:1.418667pt;}
._0_c00217{width:3.136000pt;}
._3_c00217{width:4.032000pt;}
._2_c00217{width:4.928000pt;}
._7_c00217{width:6.688000pt;}
._10_c00217{width:7.744000pt;}
._8_c00217{width:8.853333pt;}
._f_c00217{width:10.432000pt;}
._c_c00217{width:11.530667pt;}
._9_c00217{width:13.109333pt;}
._12_c00217{width:14.698667pt;}
._14_c00217{width:16.426667pt;}
._d_c00217{width:19.328000pt;}
._13_c00217{width:24.864000pt;}
.fs3_c00217{font-size:42.666667pt;}
.fs2_c00217{font-size:56.000000pt;}
.fs1_c00217{font-size:64.000000pt;}
.fs0_c00217{font-size:74.666667pt;}
.y0_c00217{bottom:0.000000pt;}
.y1f_c00217{bottom:2.760000pt;}
.y1e_c00217{bottom:6.425212pt;}
.y1d_c00217{bottom:46.533333pt;}
.y1c_c00217{bottom:68.400000pt;}
.y1b_c00217{bottom:90.800000pt;}
.y1a_c00217{bottom:112.800000pt;}
.y19_c00217{bottom:134.400000pt;}
.y18_c00217{bottom:156.933333pt;}
.y17_c00217{bottom:178.533333pt;}
.y16_c00217{bottom:200.666667pt;}
.y15_c00217{bottom:222.800000pt;}
.y14_c00217{bottom:244.133333pt;}
.y13_c00217{bottom:266.800000pt;}
.y12_c00217{bottom:288.800000pt;}
.y11_c00217{bottom:309.866667pt;}
.y10_c00217{bottom:331.600000pt;}
.yf_c00217{bottom:352.800000pt;}
.ye_c00217{bottom:375.333333pt;}
.yd_c00217{bottom:396.933333pt;}
.yc_c00217{bottom:418.266667pt;}
.yb_c00217{bottom:439.600000pt;}
.ya_c00217{bottom:461.733333pt;}
.y9_c00217{bottom:483.066667pt;}
.y8_c00217{bottom:505.600000pt;}
.y7_c00217{bottom:527.200000pt;}
.y6_c00217{bottom:549.066667pt;}
.y5_c00217{bottom:571.200000pt;}
.y4_c00217{bottom:593.066667pt;}
.y3_c00217{bottom:614.800000pt;}
.y2_c00217{bottom:636.400000pt;}
.y1_c00217{bottom:660.266667pt;}
.h4_c00217{height:11.733399pt;}
.h5_c00217{height:38.937500pt;}
.h2_c00217{height:73.281250pt;}
.h3_c00217{height:81.031250pt;}
.h1_c00217{height:700.666667pt;}
.h0_c00217{height:700.800000pt;}
.w2_c00217{width:93.222667pt;}
.w0_c00217{width:460.333333pt;}
.w1_c00217{width:460.666667pt;}
.x0_c00217{left:0.000000pt;}
.x5_c00217{left:96.533333pt;}
.x4_c00217{left:97.466667pt;}
.x3_c00217{left:98.400000pt;}
.x2_c00217{left:100.133333pt;}
.x6_c00217{left:101.733333pt;}
.x8_c00217{left:187.334880pt;}
.x1_c00217{left:207.866667pt;}
.x7_c00217{left:411.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_81a043448191fba11f572991.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.480469;font-style:normal;font-weight:normal;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_f75f73252a23f16c07cebfb8.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.568848;font-style:normal;font-weight:normal;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_4b1f411cef922222ad864ffe.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00218{font-family:ff4_c00218;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00218{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00218{vertical-align:0.000000px;}
.ls0_c00218{letter-spacing:0.000000px;}
.ls1_c00218{letter-spacing:3.000000px;}
.ls2_c00218{letter-spacing:6.000000px;}
.sc__c00218{text-shadow:none;}
.sc0_c00218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00218{-webkit-text-stroke:0px transparent;}
.sc0_c00218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00218{word-spacing:-36.051000px;}
.ws1_c00218{word-spacing:-20.352000px;}
.ws0_c00218{word-spacing:-10.140000px;}
.ws3_c00218{word-spacing:0.000000px;}
._11_c00218{margin-left:-12.732000px;}
._f_c00218{margin-left:-11.448000px;}
._e_c00218{margin-left:-10.080000px;}
._17_c00218{margin-left:-8.064000px;}
._15_c00218{margin-left:-6.768000px;}
._d_c00218{margin-left:-5.040000px;}
._6_c00218{margin-left:-3.960000px;}
._5_c00218{margin-left:-2.016000px;}
._9_c00218{margin-left:-1.008000px;}
._8_c00218{width:1.440000px;}
._c_c00218{width:3.024000px;}
._7_c00218{width:4.536000px;}
._16_c00218{width:6.048000px;}
._10_c00218{width:7.056000px;}
._a_c00218{width:8.568000px;}
._2_c00218{width:9.900000px;}
._4_c00218{width:10.980000px;}
._b_c00218{width:12.096000px;}
._14_c00218{width:14.220000px;}
._1_c00218{width:16.080000px;}
._13_c00218{width:18.864000px;}
._3_c00218{width:19.920000px;}
._0_c00218{width:25.560000px;}
._12_c00218{width:45.360000px;}
._18_c00218{width:153.480000px;}
.fc2_c00218{color:transparent;}
.fc1_c00218{color:rgb(128,128,128);}
.fc0_c00218{color:rgb(0,0,0);}
.fs3_c00218{font-size:48.000000px;}
.fs0_c00218{font-size:60.000000px;}
.fs2_c00218{font-size:63.000000px;}
.fs1_c00218{font-size:72.000000px;}
.y0_c00218{bottom:0.000000px;}
.y1f_c00218{bottom:3.105000px;}
.y1e_c00218{bottom:7.228363px;}
.y1d_c00218{bottom:59.400000px;}
.y1c_c00218{bottom:86.700000px;}
.y1b_c00218{bottom:111.300000px;}
.y1a_c00218{bottom:137.250000px;}
.y19_c00218{bottom:162.300000px;}
.y18_c00218{bottom:187.350000px;}
.y17_c00218{bottom:212.250000px;}
.y16_c00218{bottom:235.800000px;}
.y15_c00218{bottom:261.600000px;}
.y14_c00218{bottom:285.150000px;}
.y13_c00218{bottom:309.450000px;}
.y12_c00218{bottom:332.100000px;}
.y11_c00218{bottom:356.400000px;}
.y10_c00218{bottom:380.250000px;}
.yf_c00218{bottom:405.300000px;}
.ye_c00218{bottom:430.200000px;}
.yd_c00218{bottom:455.250000px;}
.yc_c00218{bottom:479.250000px;}
.yb_c00218{bottom:504.300000px;}
.ya_c00218{bottom:528.750000px;}
.y9_c00218{bottom:553.200000px;}
.y8_c00218{bottom:577.500000px;}
.y7_c00218{bottom:601.800000px;}
.y6_c00218{bottom:626.100000px;}
.y5_c00218{bottom:650.700000px;}
.y4_c00218{bottom:675.450000px;}
.y3_c00218{bottom:699.750000px;}
.y2_c00218{bottom:724.050000px;}
.y1_c00218{bottom:749.550000px;}
.h4_c00218{height:13.200074px;}
.h5_c00218{height:43.804688px;}
.h2_c00218{height:70.224609px;}
.h3_c00218{height:91.160156px;}
.h0_c00218{height:791.100000px;}
.h1_c00218{height:791.250000px;}
.w2_c00218{width:104.875500px;}
.w1_c00218{width:543.000000px;}
.w0_c00218{width:543.225000px;}
.x0_c00218{left:0.000000px;}
.xb_c00218{left:31.950000px;}
.x8_c00218{left:33.450000px;}
.xa_c00218{left:34.650000px;}
.x9_c00218{left:35.700000px;}
.x6_c00218{left:36.750000px;}
.x5_c00218{left:38.700000px;}
.x4_c00218{left:40.200000px;}
.x3_c00218{left:41.850000px;}
.x2_c00218{left:44.100000px;}
.x7_c00218{left:46.950000px;}
.x1_c00218{left:168.300000px;}
.xd_c00218{left:223.426758px;}
.xc_c00218{left:303.300000px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls0_c00218{letter-spacing:0.000000pt;}
.ls1_c00218{letter-spacing:2.666667pt;}
.ls2_c00218{letter-spacing:5.333333pt;}
.ws2_c00218{word-spacing:-32.045333pt;}
.ws1_c00218{word-spacing:-18.090667pt;}
.ws0_c00218{word-spacing:-9.013333pt;}
.ws3_c00218{word-spacing:0.000000pt;}
._11_c00218{margin-left:-11.317333pt;}
._f_c00218{margin-left:-10.176000pt;}
._e_c00218{margin-left:-8.960000pt;}
._17_c00218{margin-left:-7.168000pt;}
._15_c00218{margin-left:-6.016000pt;}
._d_c00218{margin-left:-4.480000pt;}
._6_c00218{margin-left:-3.520000pt;}
._5_c00218{margin-left:-1.792000pt;}
._9_c00218{margin-left:-0.896000pt;}
._8_c00218{width:1.280000pt;}
._c_c00218{width:2.688000pt;}
._7_c00218{width:4.032000pt;}
._16_c00218{width:5.376000pt;}
._10_c00218{width:6.272000pt;}
._a_c00218{width:7.616000pt;}
._2_c00218{width:8.800000pt;}
._4_c00218{width:9.760000pt;}
._b_c00218{width:10.752000pt;}
._14_c00218{width:12.640000pt;}
._1_c00218{width:14.293333pt;}
._13_c00218{width:16.768000pt;}
._3_c00218{width:17.706667pt;}
._0_c00218{width:22.720000pt;}
._12_c00218{width:40.320000pt;}
._18_c00218{width:136.426667pt;}
.fs3_c00218{font-size:42.666667pt;}
.fs0_c00218{font-size:53.333333pt;}
.fs2_c00218{font-size:56.000000pt;}
.fs1_c00218{font-size:64.000000pt;}
.y0_c00218{bottom:0.000000pt;}
.y1f_c00218{bottom:2.760000pt;}
.y1e_c00218{bottom:6.425212pt;}
.y1d_c00218{bottom:52.800000pt;}
.y1c_c00218{bottom:77.066667pt;}
.y1b_c00218{bottom:98.933333pt;}
.y1a_c00218{bottom:122.000000pt;}
.y19_c00218{bottom:144.266667pt;}
.y18_c00218{bottom:166.533333pt;}
.y17_c00218{bottom:188.666667pt;}
.y16_c00218{bottom:209.600000pt;}
.y15_c00218{bottom:232.533333pt;}
.y14_c00218{bottom:253.466667pt;}
.y13_c00218{bottom:275.066667pt;}
.y12_c00218{bottom:295.200000pt;}
.y11_c00218{bottom:316.800000pt;}
.y10_c00218{bottom:338.000000pt;}
.yf_c00218{bottom:360.266667pt;}
.ye_c00218{bottom:382.400000pt;}
.yd_c00218{bottom:404.666667pt;}
.yc_c00218{bottom:426.000000pt;}
.yb_c00218{bottom:448.266667pt;}
.ya_c00218{bottom:470.000000pt;}
.y9_c00218{bottom:491.733333pt;}
.y8_c00218{bottom:513.333333pt;}
.y7_c00218{bottom:534.933333pt;}
.y6_c00218{bottom:556.533333pt;}
.y5_c00218{bottom:578.400000pt;}
.y4_c00218{bottom:600.400000pt;}
.y3_c00218{bottom:622.000000pt;}
.y2_c00218{bottom:643.600000pt;}
.y1_c00218{bottom:666.266667pt;}
.h4_c00218{height:11.733399pt;}
.h5_c00218{height:38.937500pt;}
.h2_c00218{height:62.421875pt;}
.h3_c00218{height:81.031250pt;}
.h0_c00218{height:703.200000pt;}
.h1_c00218{height:703.333333pt;}
.w2_c00218{width:93.222667pt;}
.w1_c00218{width:482.666667pt;}
.w0_c00218{width:482.866667pt;}
.x0_c00218{left:0.000000pt;}
.xb_c00218{left:28.400000pt;}
.x8_c00218{left:29.733333pt;}
.xa_c00218{left:30.800000pt;}
.x9_c00218{left:31.733333pt;}
.x6_c00218{left:32.666667pt;}
.x5_c00218{left:34.400000pt;}
.x4_c00218{left:35.733333pt;}
.x3_c00218{left:37.200000pt;}
.x2_c00218{left:39.200000pt;}
.x7_c00218{left:41.733333pt;}
.x1_c00218{left:149.600000pt;}
.xd_c00218{left:198.601563pt;}
.xc_c00218{left:269.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6b5ac72f4ed644220b7300e6.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.480469;font-style:normal;font-weight:normal;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_83abb3c18d4582befa0dafa9.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:1.568848;font-style:normal;font-weight:normal;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_54521695bdd99534aa5e93fc.woff2')format("woff");}.ff3_c00219{font-family:ff3_c00219;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00219;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00219{font-family:ff4_c00219;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00219;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00219{font-family:ff5_c00219;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00219{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00219{vertical-align:0.000000px;}
.ls2_c00219{letter-spacing:-3.000000px;}
.ls3_c00219{letter-spacing:0.000000px;}
.ls0_c00219{letter-spacing:2.550000px;}
.ls1_c00219{letter-spacing:3.000000px;}
.ls4_c00219{letter-spacing:6.000000px;}
.sc__c00219{text-shadow:none;}
.sc0_c00219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00219{-webkit-text-stroke:0px transparent;}
.sc0_c00219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00219{word-spacing:-42.000000px;}
.ws2_c00219{word-spacing:-21.183000px;}
.ws1_c00219{word-spacing:-17.352000px;}
.ws3_c00219{word-spacing:0.000000px;}
._17_c00219{margin-left:-20.808000px;}
._15_c00219{margin-left:-15.618000px;}
._16_c00219{margin-left:-12.942000px;}
._11_c00219{margin-left:-11.178000px;}
._7_c00219{margin-left:-9.720000px;}
._6_c00219{margin-left:-8.244000px;}
._12_c00219{margin-left:-6.534000px;}
._d_c00219{margin-left:-5.448000px;}
._5_c00219{margin-left:-4.140000px;}
._4_c00219{margin-left:-3.096000px;}
._3_c00219{margin-left:-1.584000px;}
._0_c00219{width:1.740000px;}
._8_c00219{width:2.916000px;}
._1_c00219{width:4.002000px;}
._a_c00219{width:5.652000px;}
._2_c00219{width:7.482000px;}
._b_c00219{width:8.676000px;}
._10_c00219{width:9.996000px;}
._e_c00219{width:11.388000px;}
._14_c00219{width:13.344000px;}
._13_c00219{width:14.364000px;}
._c_c00219{width:16.050000px;}
._9_c00219{width:17.838000px;}
._f_c00219{width:35.496000px;}
.fc2_c00219{color:transparent;}
.fc1_c00219{color:rgb(128,128,128);}
.fc0_c00219{color:rgb(0,0,0);}
.fs5_c00219{font-size:48.000000px;}
.fs4_c00219{font-size:63.000000px;}
.fs1_c00219{font-size:72.000000px;}
.fs3_c00219{font-size:81.000000px;}
.fs2_c00219{font-size:84.000000px;}
.fs0_c00219{font-size:87.000000px;}
.y0_c00219{bottom:0.000000px;}
.y1f_c00219{bottom:3.105000px;}
.y1e_c00219{bottom:7.228357px;}
.y1d_c00219{bottom:60.030000px;}
.y1c_c00219{bottom:85.080000px;}
.y1b_c00219{bottom:110.130000px;}
.y1a_c00219{bottom:136.080000px;}
.y19_c00219{bottom:160.980000px;}
.y18_c00219{bottom:185.730000px;}
.y17_c00219{bottom:210.630000px;}
.y16_c00219{bottom:235.530000px;}
.y15_c00219{bottom:259.980000px;}
.y14_c00219{bottom:284.280000px;}
.y13_c00219{bottom:308.580000px;}
.y12_c00219{bottom:332.130000px;}
.y11_c00219{bottom:356.730000px;}
.y10_c00219{bottom:381.030000px;}
.yf_c00219{bottom:405.780000px;}
.ye_c00219{bottom:429.630000px;}
.yd_c00219{bottom:454.230000px;}
.yc_c00219{bottom:478.530000px;}
.yb_c00219{bottom:502.230000px;}
.ya_c00219{bottom:527.130000px;}
.y9_c00219{bottom:551.580000px;}
.y8_c00219{bottom:575.130000px;}
.y7_c00219{bottom:599.730000px;}
.y6_c00219{bottom:624.030000px;}
.y5_c00219{bottom:648.780000px;}
.y4_c00219{bottom:673.380000px;}
.y3_c00219{bottom:697.980000px;}
.y2_c00219{bottom:722.280000px;}
.y1_c00219{bottom:747.930000px;}
.h5_c00219{height:13.200074px;}
.h6_c00219{height:43.804688px;}
.h4_c00219{height:79.765137px;}
.h3_c00219{height:91.160156px;}
.h2_c00219{height:101.825684px;}
.h1_c00219{height:777.750000px;}
.h0_c00219{height:777.900000px;}
.w2_c00219{width:104.875500px;}
.w1_c00219{width:513.000000px;}
.w0_c00219{width:513.300000px;}
.x0_c00219{left:0.000000px;}
.x6_c00219{left:101.550000px;}
.x5_c00219{left:103.050000px;}
.x4_c00219{left:104.550000px;}
.x3_c00219{left:105.750000px;}
.x2_c00219{left:106.950000px;}
.x8_c00219{left:208.464249px;}
.x1_c00219{left:225.150000px;}
.x7_c00219{left:430.200000px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls2_c00219{letter-spacing:-2.666667pt;}
.ls3_c00219{letter-spacing:0.000000pt;}
.ls0_c00219{letter-spacing:2.266667pt;}
.ls1_c00219{letter-spacing:2.666667pt;}
.ls4_c00219{letter-spacing:5.333333pt;}
.ws0_c00219{word-spacing:-37.333333pt;}
.ws2_c00219{word-spacing:-18.829333pt;}
.ws1_c00219{word-spacing:-15.424000pt;}
.ws3_c00219{word-spacing:0.000000pt;}
._17_c00219{margin-left:-18.496000pt;}
._15_c00219{margin-left:-13.882667pt;}
._16_c00219{margin-left:-11.504000pt;}
._11_c00219{margin-left:-9.936000pt;}
._7_c00219{margin-left:-8.640000pt;}
._6_c00219{margin-left:-7.328000pt;}
._12_c00219{margin-left:-5.808000pt;}
._d_c00219{margin-left:-4.842667pt;}
._5_c00219{margin-left:-3.680000pt;}
._4_c00219{margin-left:-2.752000pt;}
._3_c00219{margin-left:-1.408000pt;}
._0_c00219{width:1.546667pt;}
._8_c00219{width:2.592000pt;}
._1_c00219{width:3.557333pt;}
._a_c00219{width:5.024000pt;}
._2_c00219{width:6.650667pt;}
._b_c00219{width:7.712000pt;}
._10_c00219{width:8.885333pt;}
._e_c00219{width:10.122667pt;}
._14_c00219{width:11.861333pt;}
._13_c00219{width:12.768000pt;}
._c_c00219{width:14.266667pt;}
._9_c00219{width:15.856000pt;}
._f_c00219{width:31.552000pt;}
.fs5_c00219{font-size:42.666667pt;}
.fs4_c00219{font-size:56.000000pt;}
.fs1_c00219{font-size:64.000000pt;}
.fs3_c00219{font-size:72.000000pt;}
.fs2_c00219{font-size:74.666667pt;}
.fs0_c00219{font-size:77.333333pt;}
.y0_c00219{bottom:0.000000pt;}
.y1f_c00219{bottom:2.760000pt;}
.y1e_c00219{bottom:6.425206pt;}
.y1d_c00219{bottom:53.360000pt;}
.y1c_c00219{bottom:75.626667pt;}
.y1b_c00219{bottom:97.893333pt;}
.y1a_c00219{bottom:120.960000pt;}
.y19_c00219{bottom:143.093333pt;}
.y18_c00219{bottom:165.093333pt;}
.y17_c00219{bottom:187.226667pt;}
.y16_c00219{bottom:209.360000pt;}
.y15_c00219{bottom:231.093333pt;}
.y14_c00219{bottom:252.693333pt;}
.y13_c00219{bottom:274.293333pt;}
.y12_c00219{bottom:295.226667pt;}
.y11_c00219{bottom:317.093333pt;}
.y10_c00219{bottom:338.693333pt;}
.yf_c00219{bottom:360.693333pt;}
.ye_c00219{bottom:381.893333pt;}
.yd_c00219{bottom:403.760000pt;}
.yc_c00219{bottom:425.360000pt;}
.yb_c00219{bottom:446.426667pt;}
.ya_c00219{bottom:468.560000pt;}
.y9_c00219{bottom:490.293333pt;}
.y8_c00219{bottom:511.226667pt;}
.y7_c00219{bottom:533.093333pt;}
.y6_c00219{bottom:554.693333pt;}
.y5_c00219{bottom:576.693333pt;}
.y4_c00219{bottom:598.560000pt;}
.y3_c00219{bottom:620.426667pt;}
.y2_c00219{bottom:642.026667pt;}
.y1_c00219{bottom:664.826667pt;}
.h5_c00219{height:11.733399pt;}
.h6_c00219{height:38.937500pt;}
.h4_c00219{height:70.902344pt;}
.h3_c00219{height:81.031250pt;}
.h2_c00219{height:90.511719pt;}
.h1_c00219{height:691.333333pt;}
.h0_c00219{height:691.466667pt;}
.w2_c00219{width:93.222667pt;}
.w1_c00219{width:456.000000pt;}
.w0_c00219{width:456.266667pt;}
.x0_c00219{left:0.000000pt;}
.x6_c00219{left:90.266667pt;}
.x5_c00219{left:91.600000pt;}
.x4_c00219{left:92.933333pt;}
.x3_c00219{left:94.000000pt;}
.x2_c00219{left:95.066667pt;}
.x8_c00219{left:185.301554pt;}
.x1_c00219{left:200.133333pt;}
.x7_c00219{left:382.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2acf8283407b60bb2021d6d0.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00220;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00220;src:url('chunks/assets/font_b679fa7997501ee20965217b.woff2')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:1.568848;font-style:normal;font-weight:normal;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_76d67cc3b982e419178e7485.woff2')format("woff");}.ff4_c00220{font-family:ff4_c00220;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00220{font-family:ff5_c00220;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00220{vertical-align:0.000000px;}
.ls0_c00220{letter-spacing:0.000000px;}
.ls1_c00220{letter-spacing:3.000000px;}
.ls2_c00220{letter-spacing:6.000000px;}
.ls3_c00220{letter-spacing:84.000000px;}
.sc__c00220{text-shadow:none;}
.sc0_c00220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00220{-webkit-text-stroke:0px transparent;}
.sc0_c00220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00220{word-spacing:-83.424000px;}
.ws0_c00220{word-spacing:-42.000000px;}
.ws1_c00220{word-spacing:-36.051000px;}
.ws3_c00220{word-spacing:0.000000px;}
._14_c00220{margin-left:-87.912000px;}
._10_c00220{margin-left:-9.432000px;}
._15_c00220{margin-left:-8.352000px;}
._b_c00220{margin-left:-5.976000px;}
._c_c00220{margin-left:-4.968000px;}
._8_c00220{margin-left:-3.888000px;}
._7_c00220{margin-left:-2.664000px;}
._5_c00220{margin-left:-1.656000px;}
._6_c00220{width:1.728000px;}
._9_c00220{width:3.168000px;}
._4_c00220{width:4.536000px;}
._2_c00220{width:5.796000px;}
._a_c00220{width:7.560000px;}
._1_c00220{width:8.904000px;}
._3_c00220{width:9.912000px;}
._d_c00220{width:11.832000px;}
._e_c00220{width:13.020000px;}
._0_c00220{width:14.616000px;}
._12_c00220{width:15.912000px;}
._13_c00220{width:18.936000px;}
._17_c00220{width:21.816000px;}
._11_c00220{width:24.984000px;}
._19_c00220{width:32.184000px;}
._16_c00220{width:34.248000px;}
._f_c00220{width:39.240000px;}
._1a_c00220{width:202.896000px;}
._18_c00220{width:874.368000px;}
.fc2_c00220{color:transparent;}
.fc1_c00220{color:rgb(128,128,128);}
.fc0_c00220{color:rgb(0,0,0);}
.fs3_c00220{font-size:48.000000px;}
.fs2_c00220{font-size:63.000000px;}
.fs1_c00220{font-size:72.000000px;}
.fs0_c00220{font-size:84.000000px;}
.y0_c00220{bottom:0.000000px;}
.y1f_c00220{bottom:3.105000px;}
.y1e_c00220{bottom:7.228369px;}
.y1d_c00220{bottom:43.920000px;}
.y1c_c00220{bottom:70.770000px;}
.y1b_c00220{bottom:96.420000px;}
.y1a_c00220{bottom:120.870000px;}
.y19_c00220{bottom:145.020000px;}
.y18_c00220{bottom:170.820000px;}
.y17_c00220{bottom:195.720000px;}
.y16_c00220{bottom:220.020000px;}
.y15_c00220{bottom:244.320000px;}
.y14_c00220{bottom:268.620000px;}
.y13_c00220{bottom:290.220000px;}
.y12_c00220{bottom:315.570000px;}
.y11_c00220{bottom:338.820000px;}
.y10_c00220{bottom:362.520000px;}
.yf_c00220{bottom:387.720000px;}
.ye_c00220{bottom:412.020000px;}
.yd_c00220{bottom:436.770000px;}
.yc_c00220{bottom:461.070000px;}
.yb_c00220{bottom:485.670000px;}
.ya_c00220{bottom:510.570000px;}
.y9_c00220{bottom:534.870000px;}
.y8_c00220{bottom:559.170000px;}
.y7_c00220{bottom:583.920000px;}
.y6_c00220{bottom:608.220000px;}
.y5_c00220{bottom:632.820000px;}
.y4_c00220{bottom:656.820000px;}
.y3_c00220{bottom:681.420000px;}
.y2_c00220{bottom:706.320000px;}
.y1_c00220{bottom:731.370000px;}
.h3_c00220{height:13.200073px;}
.h4_c00220{height:43.804688px;}
.h1_c00220{height:82.441406px;}
.h2_c00220{height:91.160156px;}
.h0_c00220{height:780.000000px;}
.w2_c00220{width:104.875500px;}
.w1_c00220{width:546.000000px;}
.w0_c00220{width:546.225000px;}
.x0_c00220{left:0.000000px;}
.x8_c00220{left:39.450000px;}
.x7_c00220{left:42.900000px;}
.x6_c00220{left:44.100000px;}
.x2_c00220{left:46.350000px;}
.x4_c00220{left:47.550000px;}
.x3_c00220{left:48.600000px;}
.x1_c00220{left:174.150000px;}
.x9_c00220{left:224.926758px;}
.x5_c00220{left:404.700000px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls0_c00220{letter-spacing:0.000000pt;}
.ls1_c00220{letter-spacing:2.666667pt;}
.ls2_c00220{letter-spacing:5.333333pt;}
.ls3_c00220{letter-spacing:74.666667pt;}
.ws2_c00220{word-spacing:-74.154667pt;}
.ws0_c00220{word-spacing:-37.333333pt;}
.ws1_c00220{word-spacing:-32.045333pt;}
.ws3_c00220{word-spacing:0.000000pt;}
._14_c00220{margin-left:-78.144000pt;}
._10_c00220{margin-left:-8.384000pt;}
._15_c00220{margin-left:-7.424000pt;}
._b_c00220{margin-left:-5.312000pt;}
._c_c00220{margin-left:-4.416000pt;}
._8_c00220{margin-left:-3.456000pt;}
._7_c00220{margin-left:-2.368000pt;}
._5_c00220{margin-left:-1.472000pt;}
._6_c00220{width:1.536000pt;}
._9_c00220{width:2.816000pt;}
._4_c00220{width:4.032000pt;}
._2_c00220{width:5.152000pt;}
._a_c00220{width:6.720000pt;}
._1_c00220{width:7.914667pt;}
._3_c00220{width:8.810667pt;}
._d_c00220{width:10.517333pt;}
._e_c00220{width:11.573333pt;}
._0_c00220{width:12.992000pt;}
._12_c00220{width:14.144000pt;}
._13_c00220{width:16.832000pt;}
._17_c00220{width:19.392000pt;}
._11_c00220{width:22.208000pt;}
._19_c00220{width:28.608000pt;}
._16_c00220{width:30.442667pt;}
._f_c00220{width:34.880000pt;}
._1a_c00220{width:180.352000pt;}
._18_c00220{width:777.216000pt;}
.fs3_c00220{font-size:42.666667pt;}
.fs2_c00220{font-size:56.000000pt;}
.fs1_c00220{font-size:64.000000pt;}
.fs0_c00220{font-size:74.666667pt;}
.y0_c00220{bottom:0.000000pt;}
.y1f_c00220{bottom:2.760000pt;}
.y1e_c00220{bottom:6.425217pt;}
.y1d_c00220{bottom:39.040000pt;}
.y1c_c00220{bottom:62.906667pt;}
.y1b_c00220{bottom:85.706667pt;}
.y1a_c00220{bottom:107.440000pt;}
.y19_c00220{bottom:128.906667pt;}
.y18_c00220{bottom:151.840000pt;}
.y17_c00220{bottom:173.973333pt;}
.y16_c00220{bottom:195.573333pt;}
.y15_c00220{bottom:217.173333pt;}
.y14_c00220{bottom:238.773333pt;}
.y13_c00220{bottom:257.973333pt;}
.y12_c00220{bottom:280.506667pt;}
.y11_c00220{bottom:301.173333pt;}
.y10_c00220{bottom:322.240000pt;}
.yf_c00220{bottom:344.640000pt;}
.ye_c00220{bottom:366.240000pt;}
.yd_c00220{bottom:388.240000pt;}
.yc_c00220{bottom:409.840000pt;}
.yb_c00220{bottom:431.706667pt;}
.ya_c00220{bottom:453.840000pt;}
.y9_c00220{bottom:475.440000pt;}
.y8_c00220{bottom:497.040000pt;}
.y7_c00220{bottom:519.040000pt;}
.y6_c00220{bottom:540.640000pt;}
.y5_c00220{bottom:562.506667pt;}
.y4_c00220{bottom:583.840000pt;}
.y3_c00220{bottom:605.706667pt;}
.y2_c00220{bottom:627.840000pt;}
.y1_c00220{bottom:650.106667pt;}
.h3_c00220{height:11.733399pt;}
.h4_c00220{height:38.937500pt;}
.h1_c00220{height:73.281250pt;}
.h2_c00220{height:81.031250pt;}
.h0_c00220{height:693.333333pt;}
.w2_c00220{width:93.222667pt;}
.w1_c00220{width:485.333333pt;}
.w0_c00220{width:485.533333pt;}
.x0_c00220{left:0.000000pt;}
.x8_c00220{left:35.066667pt;}
.x7_c00220{left:38.133333pt;}
.x6_c00220{left:39.200000pt;}
.x2_c00220{left:41.200000pt;}
.x4_c00220{left:42.266667pt;}
.x3_c00220{left:43.200000pt;}
.x1_c00220{left:154.800000pt;}
.x9_c00220{left:199.934896pt;}
.x5_c00220{left:359.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_026fbc97538b245ba16548df.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00221;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00221;src:url('chunks/assets/font_3daedb0c17429ee9ed17c0e9.woff2')format("woff");}.ff3_c00221{font-family:ff3_c00221;line-height:1.568848;font-style:normal;font-weight:normal;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_4b64010e469f20d433a1b3fe.woff2')format("woff");}.ff4_c00221{font-family:ff4_c00221;line-height:1.480469;font-style:normal;font-weight:normal;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_32e55f82d8311ef8eaac07b8.woff2')format("woff");}.ff5_c00221{font-family:ff5_c00221;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00221;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00221{font-family:ff6_c00221;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00221{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00221{vertical-align:0.000000px;}
.ls2_c00221{letter-spacing:0.000000px;}
.ls1_c00221{letter-spacing:3.000000px;}
.ls3_c00221{letter-spacing:6.000000px;}
.ls0_c00221{letter-spacing:10.188000px;}
.sc__c00221{text-shadow:none;}
.sc0_c00221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00221{-webkit-text-stroke:0px transparent;}
.sc0_c00221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00221{word-spacing:-36.051000px;}
.ws0_c00221{word-spacing:-33.192000px;}
.ws2_c00221{word-spacing:-20.352000px;}
.ws3_c00221{word-spacing:0.000000px;}
._17_c00221{margin-left:-40.896000px;}
._6_c00221{margin-left:-32.448000px;}
._20_c00221{margin-left:-20.952000px;}
._f_c00221{margin-left:-18.408000px;}
._15_c00221{margin-left:-15.576000px;}
._c_c00221{margin-left:-13.536000px;}
._1c_c00221{margin-left:-12.528000px;}
._b_c00221{margin-left:-11.340000px;}
._d_c00221{margin-left:-10.152000px;}
._26_c00221{margin-left:-8.928000px;}
._12_c00221{margin-left:-7.476000px;}
._14_c00221{margin-left:-6.264000px;}
._10_c00221{margin-left:-4.944000px;}
._11_c00221{margin-left:-3.780000px;}
._7_c00221{margin-left:-2.664000px;}
._e_c00221{margin-left:-1.188000px;}
._5_c00221{width:1.596000px;}
._19_c00221{width:2.598000px;}
._1_c00221{width:3.612000px;}
._3_c00221{width:4.872000px;}
._2_c00221{width:6.300000px;}
._9_c00221{width:7.476000px;}
._0_c00221{width:8.652000px;}
._18_c00221{width:9.978000px;}
._4_c00221{width:11.424000px;}
._a_c00221{width:13.248000px;}
._16_c00221{width:14.880000px;}
._13_c00221{width:17.304000px;}
._8_c00221{width:18.912000px;}
._1f_c00221{width:21.768000px;}
._1e_c00221{width:24.426000px;}
._1b_c00221{width:27.936000px;}
._1d_c00221{width:30.312000px;}
._1a_c00221{width:32.184000px;}
._25_c00221{width:63.324000px;}
._23_c00221{width:156.132000px;}
._24_c00221{width:185.256000px;}
._22_c00221{width:238.680000px;}
._21_c00221{width:625.536000px;}
.fc2_c00221{color:transparent;}
.fc1_c00221{color:rgb(128,128,128);}
.fc0_c00221{color:rgb(0,0,0);}
.fs5_c00221{font-size:48.000000px;}
.fs3_c00221{font-size:54.000000px;}
.fs4_c00221{font-size:60.000000px;}
.fs2_c00221{font-size:63.000000px;}
.fs1_c00221{font-size:72.000000px;}
.fs0_c00221{font-size:84.000000px;}
.y0_c00221{bottom:0.000000px;}
.y1f_c00221{bottom:3.105000px;}
.y1e_c00221{bottom:7.228355px;}
.y1d_c00221{bottom:48.885000px;}
.y1c_c00221{bottom:74.235000px;}
.y1b_c00221{bottom:99.585000px;}
.y1a_c00221{bottom:125.835000px;}
.y19_c00221{bottom:151.485000px;}
.y18_c00221{bottom:175.785000px;}
.y17_c00221{bottom:200.685000px;}
.y16_c00221{bottom:225.135000px;}
.y15_c00221{bottom:249.285000px;}
.y14_c00221{bottom:273.735000px;}
.y13_c00221{bottom:299.235000px;}
.y12_c00221{bottom:323.235000px;}
.y11_c00221{bottom:346.935000px;}
.y10_c00221{bottom:372.135000px;}
.yf_c00221{bottom:395.835000px;}
.ye_c00221{bottom:420.735000px;}
.yd_c00221{bottom:444.435000px;}
.yc_c00221{bottom:467.985000px;}
.yb_c00221{bottom:492.285000px;}
.ya_c00221{bottom:516.585000px;}
.y9_c00221{bottom:541.335000px;}
.y8_c00221{bottom:565.335000px;}
.y7_c00221{bottom:589.635000px;}
.y6_c00221{bottom:614.235000px;}
.y5_c00221{bottom:638.235000px;}
.y4_c00221{bottom:663.135000px;}
.y3_c00221{bottom:687.135000px;}
.y2_c00221{bottom:712.485000px;}
.y1_c00221{bottom:738.135000px;}
.h4_c00221{height:13.200074px;}
.h5_c00221{height:43.804688px;}
.h2_c00221{height:82.441406px;}
.h3_c00221{height:91.160156px;}
.h0_c00221{height:783.525000px;}
.h1_c00221{height:783.750000px;}
.w2_c00221{width:104.875500px;}
.w0_c00221{width:501.375000px;}
.w1_c00221{width:501.750000px;}
.x0_c00221{left:0.000000px;}
.xb_c00221{left:88.500000px;}
.xa_c00221{left:89.850000px;}
.x8_c00221{left:92.400000px;}
.x7_c00221{left:96.150000px;}
.x3_c00221{left:98.250000px;}
.x2_c00221{left:99.450000px;}
.x5_c00221{left:101.250000px;}
.x4_c00221{left:102.300000px;}
.x6_c00221{left:103.500000px;}
.x9_c00221{left:105.000000px;}
.xc_c00221{left:202.501740px;}
.x1_c00221{left:216.000000px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls2_c00221{letter-spacing:0.000000pt;}
.ls1_c00221{letter-spacing:2.666667pt;}
.ls3_c00221{letter-spacing:5.333333pt;}
.ls0_c00221{letter-spacing:9.056000pt;}
.ws1_c00221{word-spacing:-32.045333pt;}
.ws0_c00221{word-spacing:-29.504000pt;}
.ws2_c00221{word-spacing:-18.090667pt;}
.ws3_c00221{word-spacing:0.000000pt;}
._17_c00221{margin-left:-36.352000pt;}
._6_c00221{margin-left:-28.842667pt;}
._20_c00221{margin-left:-18.624000pt;}
._f_c00221{margin-left:-16.362667pt;}
._15_c00221{margin-left:-13.845333pt;}
._c_c00221{margin-left:-12.032000pt;}
._1c_c00221{margin-left:-11.136000pt;}
._b_c00221{margin-left:-10.080000pt;}
._d_c00221{margin-left:-9.024000pt;}
._26_c00221{margin-left:-7.936000pt;}
._12_c00221{margin-left:-6.645333pt;}
._14_c00221{margin-left:-5.568000pt;}
._10_c00221{margin-left:-4.394667pt;}
._11_c00221{margin-left:-3.360000pt;}
._7_c00221{margin-left:-2.368000pt;}
._e_c00221{margin-left:-1.056000pt;}
._5_c00221{width:1.418667pt;}
._19_c00221{width:2.309333pt;}
._1_c00221{width:3.210667pt;}
._3_c00221{width:4.330667pt;}
._2_c00221{width:5.600000pt;}
._9_c00221{width:6.645333pt;}
._0_c00221{width:7.690667pt;}
._18_c00221{width:8.869333pt;}
._4_c00221{width:10.154667pt;}
._a_c00221{width:11.776000pt;}
._16_c00221{width:13.226667pt;}
._13_c00221{width:15.381333pt;}
._8_c00221{width:16.810667pt;}
._1f_c00221{width:19.349333pt;}
._1e_c00221{width:21.712000pt;}
._1b_c00221{width:24.832000pt;}
._1d_c00221{width:26.944000pt;}
._1a_c00221{width:28.608000pt;}
._25_c00221{width:56.288000pt;}
._23_c00221{width:138.784000pt;}
._24_c00221{width:164.672000pt;}
._22_c00221{width:212.160000pt;}
._21_c00221{width:556.032000pt;}
.fs5_c00221{font-size:42.666667pt;}
.fs3_c00221{font-size:48.000000pt;}
.fs4_c00221{font-size:53.333333pt;}
.fs2_c00221{font-size:56.000000pt;}
.fs1_c00221{font-size:64.000000pt;}
.fs0_c00221{font-size:74.666667pt;}
.y0_c00221{bottom:0.000000pt;}
.y1f_c00221{bottom:2.760000pt;}
.y1e_c00221{bottom:6.425204pt;}
.y1d_c00221{bottom:43.453333pt;}
.y1c_c00221{bottom:65.986667pt;}
.y1b_c00221{bottom:88.520000pt;}
.y1a_c00221{bottom:111.853333pt;}
.y19_c00221{bottom:134.653333pt;}
.y18_c00221{bottom:156.253333pt;}
.y17_c00221{bottom:178.386667pt;}
.y16_c00221{bottom:200.120000pt;}
.y15_c00221{bottom:221.586667pt;}
.y14_c00221{bottom:243.320000pt;}
.y13_c00221{bottom:265.986667pt;}
.y12_c00221{bottom:287.320000pt;}
.y11_c00221{bottom:308.386667pt;}
.y10_c00221{bottom:330.786667pt;}
.yf_c00221{bottom:351.853333pt;}
.ye_c00221{bottom:373.986667pt;}
.yd_c00221{bottom:395.053333pt;}
.yc_c00221{bottom:415.986667pt;}
.yb_c00221{bottom:437.586667pt;}
.ya_c00221{bottom:459.186667pt;}
.y9_c00221{bottom:481.186667pt;}
.y8_c00221{bottom:502.520000pt;}
.y7_c00221{bottom:524.120000pt;}
.y6_c00221{bottom:545.986667pt;}
.y5_c00221{bottom:567.320000pt;}
.y4_c00221{bottom:589.453333pt;}
.y3_c00221{bottom:610.786667pt;}
.y2_c00221{bottom:633.320000pt;}
.y1_c00221{bottom:656.120000pt;}
.h4_c00221{height:11.733399pt;}
.h5_c00221{height:38.937500pt;}
.h2_c00221{height:73.281250pt;}
.h3_c00221{height:81.031250pt;}
.h0_c00221{height:696.466667pt;}
.h1_c00221{height:696.666667pt;}
.w2_c00221{width:93.222667pt;}
.w0_c00221{width:445.666667pt;}
.w1_c00221{width:446.000000pt;}
.x0_c00221{left:0.000000pt;}
.xb_c00221{left:78.666667pt;}
.xa_c00221{left:79.866667pt;}
.x8_c00221{left:82.133333pt;}
.x7_c00221{left:85.466667pt;}
.x3_c00221{left:87.333333pt;}
.x2_c00221{left:88.400000pt;}
.x5_c00221{left:90.000000pt;}
.x4_c00221{left:90.933333pt;}
.x6_c00221{left:92.000000pt;}
.x9_c00221{left:93.333333pt;}
.xc_c00221{left:180.001546pt;}
.x1_c00221{left:192.000000pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00222 {
      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_c00222 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00222 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00222 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_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_679a6265829e8cae170610cc.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00223;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00223;src:url('chunks/assets/font_5dd45a881008bd01a84f8905.woff2')format("woff");}.ff3_c00223{font-family:ff3_c00223;line-height:1.568848;font-style:normal;font-weight:normal;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_961d11b5fcae146b07355490.woff2')format("woff");}.ff4_c00223{font-family:ff4_c00223;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00223{font-family:ff5_c00223;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00223{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00223{vertical-align:0.000000px;}
.v1_c00223{vertical-align:6.000000px;}
.ls2_c00223{letter-spacing:0.000000px;}
.ls1_c00223{letter-spacing:3.000000px;}
.ls3_c00223{letter-spacing:6.000000px;}
.ls0_c00223{letter-spacing:12.600000px;}
.sc__c00223{text-shadow:none;}
.sc0_c00223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00223{-webkit-text-stroke:0px transparent;}
.sc0_c00223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00223{word-spacing:-33.192000px;}
.ws1_c00223{word-spacing:-20.352000px;}
.ws2_c00223{word-spacing:0.000000px;}
._f_c00223{margin-left:-11.688000px;}
._e_c00223{margin-left:-9.888000px;}
._2_c00223{margin-left:-7.644000px;}
._a_c00223{margin-left:-6.132000px;}
._7_c00223{margin-left:-4.104000px;}
._c_c00223{margin-left:-3.036000px;}
._8_c00223{margin-left:-2.016000px;}
._b_c00223{margin-left:-1.008000px;}
._1_c00223{width:1.596000px;}
._0_c00223{width:3.528000px;}
._9_c00223{width:4.608000px;}
._6_c00223{width:5.712000px;}
._11_c00223{width:6.942000px;}
._5_c00223{width:8.148000px;}
._10_c00223{width:9.324000px;}
._3_c00223{width:10.500000px;}
._d_c00223{width:12.516000px;}
._12_c00223{width:13.569000px;}
._4_c00223{width:14.952000px;}
._13_c00223{width:17.844000px;}
.fc2_c00223{color:transparent;}
.fc1_c00223{color:rgb(128,128,128);}
.fc0_c00223{color:rgb(0,0,0);}
.fs4_c00223{font-size:48.000000px;}
.fs3_c00223{font-size:60.000000px;}
.fs2_c00223{font-size:63.000000px;}
.fs1_c00223{font-size:72.000000px;}
.fs0_c00223{font-size:84.000000px;}
.y0_c00223{bottom:0.000000px;}
.y1f_c00223{bottom:3.105000px;}
.y1e_c00223{bottom:7.228355px;}
.y1d_c00223{bottom:49.935000px;}
.y1c_c00223{bottom:74.235000px;}
.y1b_c00223{bottom:99.585000px;}
.y1a_c00223{bottom:123.735000px;}
.y19_c00223{bottom:150.435000px;}
.y18_c00223{bottom:175.485000px;}
.y17_c00223{bottom:200.385000px;}
.y16_c00223{bottom:225.435000px;}
.y15_c00223{bottom:249.735000px;}
.y14_c00223{bottom:275.385000px;}
.y13_c00223{bottom:298.935000px;}
.y12_c00223{bottom:322.335000px;}
.y11_c00223{bottom:347.535000px;}
.y10_c00223{bottom:370.935000px;}
.yf_c00223{bottom:396.435000px;}
.ye_c00223{bottom:420.735000px;}
.yd_c00223{bottom:445.035000px;}
.yc_c00223{bottom:469.335000px;}
.yb_c00223{bottom:493.035000px;}
.ya_c00223{bottom:517.935000px;}
.y9_c00223{bottom:541.935000px;}
.y8_c00223{bottom:566.685000px;}
.y7_c00223{bottom:590.985000px;}
.y6_c00223{bottom:615.585000px;}
.y5_c00223{bottom:640.185000px;}
.y4_c00223{bottom:664.485000px;}
.y3_c00223{bottom:688.785000px;}
.y2_c00223{bottom:712.485000px;}
.y1_c00223{bottom:739.485000px;}
.h5_c00223{height:13.200074px;}
.h6_c00223{height:43.804688px;}
.h2_c00223{height:82.441406px;}
.h3_c00223{height:91.160156px;}
.h4_c00223{height:97.160156px;}
.h1_c00223{height:779.250000px;}
.h0_c00223{height:779.475000px;}
.w1_c00223{width:104.875500px;}
.w0_c00223{width:533.250000px;}
.x0_c00223{left:0.000000px;}
.x2_c00223{left:116.550000px;}
.x3_c00223{left:118.200000px;}
.x4_c00223{left:120.150000px;}
.x5_c00223{left:121.200000px;}
.x6_c00223{left:122.850000px;}
.x7_c00223{left:124.200000px;}
.x8_c00223{left:125.250000px;}
.x9_c00223{left:126.300000px;}
.xb_c00223{left:127.350000px;}
.xa_c00223{left:134.700000px;}
.xd_c00223{left:218.439240px;}
.x1_c00223{left:228.150000px;}
.xc_c00223{left:462.750000px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.v1_c00223{vertical-align:5.333333pt;}
.ls2_c00223{letter-spacing:0.000000pt;}
.ls1_c00223{letter-spacing:2.666667pt;}
.ls3_c00223{letter-spacing:5.333333pt;}
.ls0_c00223{letter-spacing:11.200000pt;}
.ws0_c00223{word-spacing:-29.504000pt;}
.ws1_c00223{word-spacing:-18.090667pt;}
.ws2_c00223{word-spacing:0.000000pt;}
._f_c00223{margin-left:-10.389333pt;}
._e_c00223{margin-left:-8.789333pt;}
._2_c00223{margin-left:-6.794667pt;}
._a_c00223{margin-left:-5.450667pt;}
._7_c00223{margin-left:-3.648000pt;}
._c_c00223{margin-left:-2.698667pt;}
._8_c00223{margin-left:-1.792000pt;}
._b_c00223{margin-left:-0.896000pt;}
._1_c00223{width:1.418667pt;}
._0_c00223{width:3.136000pt;}
._9_c00223{width:4.096000pt;}
._6_c00223{width:5.077333pt;}
._11_c00223{width:6.170667pt;}
._5_c00223{width:7.242667pt;}
._10_c00223{width:8.288000pt;}
._3_c00223{width:9.333333pt;}
._d_c00223{width:11.125333pt;}
._12_c00223{width:12.061333pt;}
._4_c00223{width:13.290667pt;}
._13_c00223{width:15.861333pt;}
.fs4_c00223{font-size:42.666667pt;}
.fs3_c00223{font-size:53.333333pt;}
.fs2_c00223{font-size:56.000000pt;}
.fs1_c00223{font-size:64.000000pt;}
.fs0_c00223{font-size:74.666667pt;}
.y0_c00223{bottom:0.000000pt;}
.y1f_c00223{bottom:2.760000pt;}
.y1e_c00223{bottom:6.425204pt;}
.y1d_c00223{bottom:44.386667pt;}
.y1c_c00223{bottom:65.986667pt;}
.y1b_c00223{bottom:88.520000pt;}
.y1a_c00223{bottom:109.986667pt;}
.y19_c00223{bottom:133.720000pt;}
.y18_c00223{bottom:155.986667pt;}
.y17_c00223{bottom:178.120000pt;}
.y16_c00223{bottom:200.386667pt;}
.y15_c00223{bottom:221.986667pt;}
.y14_c00223{bottom:244.786667pt;}
.y13_c00223{bottom:265.720000pt;}
.y12_c00223{bottom:286.520000pt;}
.y11_c00223{bottom:308.920000pt;}
.y10_c00223{bottom:329.720000pt;}
.yf_c00223{bottom:352.386667pt;}
.ye_c00223{bottom:373.986667pt;}
.yd_c00223{bottom:395.586667pt;}
.yc_c00223{bottom:417.186667pt;}
.yb_c00223{bottom:438.253333pt;}
.ya_c00223{bottom:460.386667pt;}
.y9_c00223{bottom:481.720000pt;}
.y8_c00223{bottom:503.720000pt;}
.y7_c00223{bottom:525.320000pt;}
.y6_c00223{bottom:547.186667pt;}
.y5_c00223{bottom:569.053333pt;}
.y4_c00223{bottom:590.653333pt;}
.y3_c00223{bottom:612.253333pt;}
.y2_c00223{bottom:633.320000pt;}
.y1_c00223{bottom:657.320000pt;}
.h5_c00223{height:11.733399pt;}
.h6_c00223{height:38.937500pt;}
.h2_c00223{height:73.281250pt;}
.h3_c00223{height:81.031250pt;}
.h4_c00223{height:86.364583pt;}
.h1_c00223{height:692.666667pt;}
.h0_c00223{height:692.866667pt;}
.w1_c00223{width:93.222667pt;}
.w0_c00223{width:474.000000pt;}
.x0_c00223{left:0.000000pt;}
.x2_c00223{left:103.600000pt;}
.x3_c00223{left:105.066667pt;}
.x4_c00223{left:106.800000pt;}
.x5_c00223{left:107.733333pt;}
.x6_c00223{left:109.200000pt;}
.x7_c00223{left:110.400000pt;}
.x8_c00223{left:111.333333pt;}
.x9_c00223{left:112.266667pt;}
.xb_c00223{left:113.200000pt;}
.xa_c00223{left:119.733333pt;}
.xd_c00223{left:194.168213pt;}
.x1_c00223{left:202.800000pt;}
.xc_c00223{left:411.333333pt;}
}





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

.ir_c00224:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00224{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00224;src:url('chunks/assets/font_1445e0a978ac4b0f90549f31.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.568848;font-style:normal;font-weight:normal;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_fa43c8b890354b62bb505512.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.480469;font-style:normal;font-weight:normal;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_daf46de7dbe91f9547153026.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;line-height:1.568848;font-style:normal;font-weight:normal;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_15b6d4430158fc9b303fc747.woff2')format("woff");}.ff4_c00224{font-family:ff4_c00224;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00224;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00224{font-family:ff5_c00224;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00224{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00224{vertical-align:0.000000px;}
.ls1_c00224{letter-spacing:-3.000000px;}
.ls3_c00224{letter-spacing:0.000000px;}
.ls2_c00224{letter-spacing:3.000000px;}
.ls0_c00224{letter-spacing:17.952000px;}
.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;}
}
.ws2_c00224{word-spacing:-53.211000px;}
.ws0_c00224{word-spacing:-20.352000px;}
.ws1_c00224{word-spacing:-15.801600px;}
.ws3_c00224{word-spacing:0.000000px;}
._1b_c00224{margin-left:-23.388000px;}
._0_c00224{margin-left:-19.923000px;}
._2_c00224{margin-left:-14.094000px;}
._1_c00224{margin-left:-10.701000px;}
._14_c00224{margin-left:-9.450000px;}
._d_c00224{margin-left:-8.049000px;}
._8_c00224{margin-left:-6.864000px;}
._e_c00224{margin-left:-5.547000px;}
._13_c00224{margin-left:-4.485000px;}
._a_c00224{margin-left:-3.480000px;}
._3_c00224{margin-left:-1.488000px;}
._6_c00224{width:1.305000px;}
._5_c00224{width:2.784000px;}
._11_c00224{width:3.822000px;}
._4_c00224{width:4.872000px;}
._9_c00224{width:6.786000px;}
._c_c00224{width:8.784000px;}
._17_c00224{width:9.912000px;}
._b_c00224{width:10.935000px;}
._f_c00224{width:12.195000px;}
._10_c00224{width:13.536000px;}
._16_c00224{width:14.697000px;}
._1a_c00224{width:16.302000px;}
._19_c00224{width:21.489000px;}
._15_c00224{width:23.151000px;}
._1c_c00224{width:37.851000px;}
._18_c00224{width:42.828000px;}
._1d_c00224{width:190.512000px;}
._7_c00224{width:294.321000px;}
._12_c00224{width:799.800000px;}
.fc2_c00224{color:transparent;}
.fc1_c00224{color:rgb(128,128,128);}
.fc0_c00224{color:rgb(0,0,0);}
.fs7_c00224{font-size:48.000000px;}
.fs5_c00224{font-size:50.400000px;}
.fs3_c00224{font-size:57.000000px;}
.fs4_c00224{font-size:60.000000px;}
.fs6_c00224{font-size:63.000000px;}
.fs0_c00224{font-size:72.000000px;}
.fs2_c00224{font-size:78.000000px;}
.fs1_c00224{font-size:87.000000px;}
.y0_c00224{bottom:0.000000px;}
.y1f_c00224{bottom:3.105000px;}
.y1e_c00224{bottom:7.228369px;}
.y1d_c00224{bottom:49.320000px;}
.y1c_c00224{bottom:74.520000px;}
.y1b_c00224{bottom:100.170000px;}
.y1a_c00224{bottom:125.220000px;}
.y19_c00224{bottom:150.120000px;}
.y18_c00224{bottom:174.720000px;}
.y17_c00224{bottom:199.770000px;}
.y16_c00224{bottom:224.670000px;}
.y15_c00224{bottom:248.970000px;}
.y14_c00224{bottom:272.670000px;}
.y13_c00224{bottom:296.220000px;}
.y12_c00224{bottom:317.970000px;}
.y11_c00224{bottom:341.820000px;}
.y10_c00224{bottom:366.870000px;}
.yf_c00224{bottom:391.770000px;}
.ye_c00224{bottom:416.820000px;}
.yd_c00224{bottom:440.820000px;}
.yc_c00224{bottom:465.420000px;}
.yb_c00224{bottom:489.420000px;}
.ya_c00224{bottom:514.020000px;}
.y9_c00224{bottom:538.920000px;}
.y8_c00224{bottom:562.920000px;}
.y7_c00224{bottom:587.970000px;}
.y6_c00224{bottom:611.820000px;}
.y5_c00224{bottom:636.120000px;}
.y4_c00224{bottom:660.420000px;}
.y3_c00224{bottom:686.070000px;}
.y2_c00224{bottom:710.370000px;}
.y1_c00224{bottom:735.120000px;}
.h5_c00224{height:13.200073px;}
.h6_c00224{height:43.804688px;}
.h3_c00224{height:91.160156px;}
.h4_c00224{height:98.756836px;}
.h2_c00224{height:110.151855px;}
.h0_c00224{height:774.600000px;}
.h1_c00224{height:774.750000px;}
.w2_c00224{width:104.875500px;}
.w0_c00224{width:531.600000px;}
.w1_c00224{width:531.750000px;}
.x0_c00224{left:0.000000px;}
.x6_c00224{left:45.600000px;}
.x2_c00224{left:49.200000px;}
.x3_c00224{left:50.250000px;}
.x4_c00224{left:51.300000px;}
.x5_c00224{left:53.250000px;}
.x1_c00224{left:168.300000px;}
.x8_c00224{left:217.614258px;}
.x7_c00224{left:289.500000px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls1_c00224{letter-spacing:-2.666667pt;}
.ls3_c00224{letter-spacing:0.000000pt;}
.ls2_c00224{letter-spacing:2.666667pt;}
.ls0_c00224{letter-spacing:15.957333pt;}
.ws2_c00224{word-spacing:-47.298667pt;}
.ws0_c00224{word-spacing:-18.090667pt;}
.ws1_c00224{word-spacing:-14.045867pt;}
.ws3_c00224{word-spacing:0.000000pt;}
._1b_c00224{margin-left:-20.789333pt;}
._0_c00224{margin-left:-17.709333pt;}
._2_c00224{margin-left:-12.528000pt;}
._1_c00224{margin-left:-9.512000pt;}
._14_c00224{margin-left:-8.400000pt;}
._d_c00224{margin-left:-7.154667pt;}
._8_c00224{margin-left:-6.101333pt;}
._e_c00224{margin-left:-4.930667pt;}
._13_c00224{margin-left:-3.986667pt;}
._a_c00224{margin-left:-3.093333pt;}
._3_c00224{margin-left:-1.322667pt;}
._6_c00224{width:1.160000pt;}
._5_c00224{width:2.474667pt;}
._11_c00224{width:3.397333pt;}
._4_c00224{width:4.330667pt;}
._9_c00224{width:6.032000pt;}
._c_c00224{width:7.808000pt;}
._17_c00224{width:8.810667pt;}
._b_c00224{width:9.720000pt;}
._f_c00224{width:10.840000pt;}
._10_c00224{width:12.032000pt;}
._16_c00224{width:13.064000pt;}
._1a_c00224{width:14.490667pt;}
._19_c00224{width:19.101333pt;}
._15_c00224{width:20.578667pt;}
._1c_c00224{width:33.645333pt;}
._18_c00224{width:38.069333pt;}
._1d_c00224{width:169.344000pt;}
._7_c00224{width:261.618667pt;}
._12_c00224{width:710.933333pt;}
.fs7_c00224{font-size:42.666667pt;}
.fs5_c00224{font-size:44.800000pt;}
.fs3_c00224{font-size:50.666667pt;}
.fs4_c00224{font-size:53.333333pt;}
.fs6_c00224{font-size:56.000000pt;}
.fs0_c00224{font-size:64.000000pt;}
.fs2_c00224{font-size:69.333333pt;}
.fs1_c00224{font-size:77.333333pt;}
.y0_c00224{bottom:0.000000pt;}
.y1f_c00224{bottom:2.760000pt;}
.y1e_c00224{bottom:6.425217pt;}
.y1d_c00224{bottom:43.840000pt;}
.y1c_c00224{bottom:66.240000pt;}
.y1b_c00224{bottom:89.040000pt;}
.y1a_c00224{bottom:111.306667pt;}
.y19_c00224{bottom:133.440000pt;}
.y18_c00224{bottom:155.306667pt;}
.y17_c00224{bottom:177.573333pt;}
.y16_c00224{bottom:199.706667pt;}
.y15_c00224{bottom:221.306667pt;}
.y14_c00224{bottom:242.373333pt;}
.y13_c00224{bottom:263.306667pt;}
.y12_c00224{bottom:282.640000pt;}
.y11_c00224{bottom:303.840000pt;}
.y10_c00224{bottom:326.106667pt;}
.yf_c00224{bottom:348.240000pt;}
.ye_c00224{bottom:370.506667pt;}
.yd_c00224{bottom:391.840000pt;}
.yc_c00224{bottom:413.706667pt;}
.yb_c00224{bottom:435.040000pt;}
.ya_c00224{bottom:456.906667pt;}
.y9_c00224{bottom:479.040000pt;}
.y8_c00224{bottom:500.373333pt;}
.y7_c00224{bottom:522.640000pt;}
.y6_c00224{bottom:543.840000pt;}
.y5_c00224{bottom:565.440000pt;}
.y4_c00224{bottom:587.040000pt;}
.y3_c00224{bottom:609.840000pt;}
.y2_c00224{bottom:631.440000pt;}
.y1_c00224{bottom:653.440000pt;}
.h5_c00224{height:11.733399pt;}
.h6_c00224{height:38.937500pt;}
.h3_c00224{height:81.031250pt;}
.h4_c00224{height:87.783854pt;}
.h2_c00224{height:97.912760pt;}
.h0_c00224{height:688.533333pt;}
.h1_c00224{height:688.666667pt;}
.w2_c00224{width:93.222667pt;}
.w0_c00224{width:472.533333pt;}
.w1_c00224{width:472.666667pt;}
.x0_c00224{left:0.000000pt;}
.x6_c00224{left:40.533333pt;}
.x2_c00224{left:43.733333pt;}
.x3_c00224{left:44.666667pt;}
.x4_c00224{left:45.600000pt;}
.x5_c00224{left:47.333333pt;}
.x1_c00224{left:149.600000pt;}
.x8_c00224{left:193.434896pt;}
.x7_c00224{left:257.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_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_d6134232104c33ded58f5fbd.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.568848;font-style:normal;font-weight:normal;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_92f26dc4b2534439b60ed78d.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00225{font-family:ff3_c00225;line-height:1.219238;font-style: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;}
.ls1_c00225{letter-spacing:0.000000px;}
.ls0_c00225{letter-spacing:3.000000px;}
.sc__c00225{text-shadow:none;}
.sc0_c00225{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00225{-webkit-text-stroke:0px transparent;}
.sc0_c00225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00225{word-spacing:-33.192000px;}
.ws1_c00225{word-spacing:-20.352000px;}
.ws2_c00225{word-spacing:0.000000px;}
._10_c00225{margin-left:-14.139000px;}
._11_c00225{margin-left:-9.072000px;}
._0_c00225{margin-left:-7.056000px;}
._c_c00225{margin-left:-4.851000px;}
._d_c00225{margin-left:-2.772000px;}
._8_c00225{margin-left:-1.728000px;}
._9_c00225{width:1.575000px;}
._2_c00225{width:2.592000px;}
._b_c00225{width:3.627000px;}
._4_c00225{width:4.968000px;}
._3_c00225{width:6.192000px;}
._a_c00225{width:7.308000px;}
._7_c00225{width:8.379000px;}
._5_c00225{width:9.828000px;}
._e_c00225{width:11.475000px;}
._f_c00225{width:13.023000px;}
._6_c00225{width:14.742000px;}
._12_c00225{width:16.002000px;}
._15_c00225{width:21.735000px;}
._13_c00225{width:24.984000px;}
._14_c00225{width:40.833000px;}
._1_c00225{width:402.024000px;}
.fc2_c00225{color:transparent;}
.fc1_c00225{color:rgb(128,128,128);}
.fc0_c00225{color:rgb(0,0,0);}
.fs2_c00225{font-size:48.000000px;}
.fs1_c00225{font-size:63.000000px;}
.fs0_c00225{font-size:72.000000px;}
.y0_c00225{bottom:0.000000px;}
.y1f_c00225{bottom:3.105000px;}
.y1e_c00225{bottom:7.228371px;}
.y1d_c00225{bottom:52.365000px;}
.y1c_c00225{bottom:75.615000px;}
.y1b_c00225{bottom:102.015000px;}
.y1a_c00225{bottom:126.315000px;}
.y19_c00225{bottom:151.665000px;}
.y18_c00225{bottom:176.865000px;}
.y17_c00225{bottom:201.915000px;}
.y16_c00225{bottom:225.915000px;}
.y15_c00225{bottom:251.565000px;}
.y14_c00225{bottom:275.415000px;}
.y13_c00225{bottom:302.415000px;}
.y12_c00225{bottom:325.365000px;}
.y11_c00225{bottom:349.065000px;}
.y10_c00225{bottom:372.615000px;}
.yf_c00225{bottom:397.665000px;}
.ye_c00225{bottom:421.215000px;}
.yd_c00225{bottom:446.265000px;}
.yc_c00225{bottom:470.115000px;}
.yb_c00225{bottom:494.115000px;}
.ya_c00225{bottom:519.165000px;}
.y9_c00225{bottom:543.165000px;}
.y8_c00225{bottom:567.465000px;}
.y7_c00225{bottom:592.665000px;}
.y6_c00225{bottom:616.665000px;}
.y5_c00225{bottom:641.565000px;}
.y4_c00225{bottom:666.015000px;}
.y3_c00225{bottom:690.315000px;}
.y2_c00225{bottom:714.615000px;}
.y1_c00225{bottom:740.565000px;}
.h4_c00225{height:13.200074px;}
.h5_c00225{height:43.804688px;}
.h3_c00225{height:79.765137px;}
.h2_c00225{height:91.160156px;}
.h0_c00225{height:781.125000px;}
.h1_c00225{height:781.500000px;}
.w2_c00225{width:104.875500px;}
.w0_c00225{width:535.125000px;}
.w1_c00225{width:535.500000px;}
.x0_c00225{left:0.000000px;}
.x2_c00225{left:104.700000px;}
.x3_c00225{left:105.750000px;}
.x4_c00225{left:107.700000px;}
.x5_c00225{left:108.900000px;}
.x6_c00225{left:110.100000px;}
.x7_c00225{left:111.150000px;}
.x8_c00225{left:112.350000px;}
.x1_c00225{left:114.300000px;}
.x9_c00225{left:115.500000px;}
.xa_c00225{left:117.150000px;}
.xb_c00225{left:118.200000px;}
.xc_c00225{left:119.250000px;}
.xe_c00225{left:219.376740px;}
.xd_c00225{left:445.800000px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls1_c00225{letter-spacing:0.000000pt;}
.ls0_c00225{letter-spacing:2.666667pt;}
.ws0_c00225{word-spacing:-29.504000pt;}
.ws1_c00225{word-spacing:-18.090667pt;}
.ws2_c00225{word-spacing:0.000000pt;}
._10_c00225{margin-left:-12.568000pt;}
._11_c00225{margin-left:-8.064000pt;}
._0_c00225{margin-left:-6.272000pt;}
._c_c00225{margin-left:-4.312000pt;}
._d_c00225{margin-left:-2.464000pt;}
._8_c00225{margin-left:-1.536000pt;}
._9_c00225{width:1.400000pt;}
._2_c00225{width:2.304000pt;}
._b_c00225{width:3.224000pt;}
._4_c00225{width:4.416000pt;}
._3_c00225{width:5.504000pt;}
._a_c00225{width:6.496000pt;}
._7_c00225{width:7.448000pt;}
._5_c00225{width:8.736000pt;}
._e_c00225{width:10.200000pt;}
._f_c00225{width:11.576000pt;}
._6_c00225{width:13.104000pt;}
._12_c00225{width:14.224000pt;}
._15_c00225{width:19.320000pt;}
._13_c00225{width:22.208000pt;}
._14_c00225{width:36.296000pt;}
._1_c00225{width:357.354667pt;}
.fs2_c00225{font-size:42.666667pt;}
.fs1_c00225{font-size:56.000000pt;}
.fs0_c00225{font-size:64.000000pt;}
.y0_c00225{bottom:0.000000pt;}
.y1f_c00225{bottom:2.760000pt;}
.y1e_c00225{bottom:6.425219pt;}
.y1d_c00225{bottom:46.546667pt;}
.y1c_c00225{bottom:67.213333pt;}
.y1b_c00225{bottom:90.680000pt;}
.y1a_c00225{bottom:112.280000pt;}
.y19_c00225{bottom:134.813333pt;}
.y18_c00225{bottom:157.213333pt;}
.y17_c00225{bottom:179.480000pt;}
.y16_c00225{bottom:200.813333pt;}
.y15_c00225{bottom:223.613333pt;}
.y14_c00225{bottom:244.813333pt;}
.y13_c00225{bottom:268.813333pt;}
.y12_c00225{bottom:289.213333pt;}
.y11_c00225{bottom:310.280000pt;}
.y10_c00225{bottom:331.213333pt;}
.yf_c00225{bottom:353.480000pt;}
.ye_c00225{bottom:374.413333pt;}
.yd_c00225{bottom:396.680000pt;}
.yc_c00225{bottom:417.880000pt;}
.yb_c00225{bottom:439.213333pt;}
.ya_c00225{bottom:461.480000pt;}
.y9_c00225{bottom:482.813333pt;}
.y8_c00225{bottom:504.413333pt;}
.y7_c00225{bottom:526.813333pt;}
.y6_c00225{bottom:548.146667pt;}
.y5_c00225{bottom:570.280000pt;}
.y4_c00225{bottom:592.013333pt;}
.y3_c00225{bottom:613.613333pt;}
.y2_c00225{bottom:635.213333pt;}
.y1_c00225{bottom:658.280000pt;}
.h4_c00225{height:11.733399pt;}
.h5_c00225{height:38.937500pt;}
.h3_c00225{height:70.902344pt;}
.h2_c00225{height:81.031250pt;}
.h0_c00225{height:694.333333pt;}
.h1_c00225{height:694.666667pt;}
.w2_c00225{width:93.222667pt;}
.w0_c00225{width:475.666667pt;}
.w1_c00225{width:476.000000pt;}
.x0_c00225{left:0.000000pt;}
.x2_c00225{left:93.066667pt;}
.x3_c00225{left:94.000000pt;}
.x4_c00225{left:95.733333pt;}
.x5_c00225{left:96.800000pt;}
.x6_c00225{left:97.866667pt;}
.x7_c00225{left:98.800000pt;}
.x8_c00225{left:99.866667pt;}
.x1_c00225{left:101.600000pt;}
.x9_c00225{left:102.666667pt;}
.xa_c00225{left:104.133333pt;}
.xb_c00225{left:105.066667pt;}
.xc_c00225{left:106.000000pt;}
.xe_c00225{left:195.001546pt;}
.xd_c00225{left:396.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dc25576c12e4ad992d6da2d8.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00226;src:url('chunks/assets/font_79fc4832832f6beabbb03217.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00226{font-family:ff3_c00226;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00226{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00226{vertical-align:0.000000px;}
.ls1_c00226{letter-spacing:-6.000000px;}
.ls3_c00226{letter-spacing:0.000000px;}
.ls0_c00226{letter-spacing:3.000000px;}
.ls2_c00226{letter-spacing:6.000000px;}
.sc__c00226{text-shadow:none;}
.sc0_c00226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00226{-webkit-text-stroke:0px transparent;}
.sc0_c00226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00226{word-spacing:-20.352000px;}
.ws0_c00226{word-spacing:-15.000000px;}
.ws2_c00226{word-spacing:0.000000px;}
._17_c00226{margin-left:-17.352000px;}
._12_c00226{margin-left:-12.816000px;}
._c_c00226{margin-left:-9.540000px;}
._6_c00226{margin-left:-7.812000px;}
._2_c00226{margin-left:-6.300000px;}
._5_c00226{margin-left:-4.620000px;}
._e_c00226{margin-left:-3.252000px;}
._a_c00226{margin-left:-2.064000px;}
._10_c00226{margin-left:-1.020000px;}
._3_c00226{width:1.176000px;}
._8_c00226{width:2.280000px;}
._7_c00226{width:3.720000px;}
._9_c00226{width:5.232000px;}
._13_c00226{width:6.336000px;}
._b_c00226{width:7.416000px;}
._1_c00226{width:9.180000px;}
._f_c00226{width:10.692000px;}
._d_c00226{width:11.712000px;}
._11_c00226{width:13.080000px;}
._0_c00226{width:15.876000px;}
._14_c00226{width:39.024000px;}
._16_c00226{width:41.280000px;}
._18_c00226{width:194.760000px;}
._4_c00226{width:299.964000px;}
._15_c00226{width:876.060000px;}
.fc2_c00226{color:transparent;}
.fc1_c00226{color:rgb(128,128,128);}
.fc0_c00226{color:rgb(0,0,0);}
.fs2_c00226{font-size:48.000000px;}
.fs1_c00226{font-size:72.000000px;}
.fs0_c00226{font-size:84.000000px;}
.y0_c00226{bottom:0.000000px;}
.y1f_c00226{bottom:3.105000px;}
.y1e_c00226{bottom:7.228371px;}
.y1d_c00226{bottom:50.415000px;}
.y1c_c00226{bottom:76.965000px;}
.y1b_c00226{bottom:103.365000px;}
.y1a_c00226{bottom:123.915000px;}
.y19_c00226{bottom:153.615000px;}
.y18_c00226{bottom:178.515000px;}
.y17_c00226{bottom:203.565000px;}
.y16_c00226{bottom:228.465000px;}
.y15_c00226{bottom:252.465000px;}
.y14_c00226{bottom:277.815000px;}
.y13_c00226{bottom:300.465000px;}
.y12_c00226{bottom:323.115000px;}
.y11_c00226{bottom:346.365000px;}
.y10_c00226{bottom:370.965000px;}
.yf_c00226{bottom:395.565000px;}
.ye_c00226{bottom:419.865000px;}
.yd_c00226{bottom:444.615000px;}
.yc_c00226{bottom:469.215000px;}
.yb_c00226{bottom:493.215000px;}
.ya_c00226{bottom:518.715000px;}
.y9_c00226{bottom:543.165000px;}
.y8_c00226{bottom:567.765000px;}
.y7_c00226{bottom:591.765000px;}
.y6_c00226{bottom:616.665000px;}
.y5_c00226{bottom:641.265000px;}
.y4_c00226{bottom:665.565000px;}
.y3_c00226{bottom:690.615000px;}
.y2_c00226{bottom:714.915000px;}
.y1_c00226{bottom:739.215000px;}
.h4_c00226{height:13.200074px;}
.h5_c00226{height:43.804688px;}
.h2_c00226{height:82.400391px;}
.h3_c00226{height:91.160156px;}
.h0_c00226{height:793.275000px;}
.h1_c00226{height:793.500000px;}
.w2_c00226{width:104.875500px;}
.w0_c00226{width:525.675000px;}
.w1_c00226{width:525.750000px;}
.x0_c00226{left:0.000000px;}
.x6_c00226{left:32.100000px;}
.x2_c00226{left:36.150000px;}
.x3_c00226{left:37.800000px;}
.x4_c00226{left:39.450000px;}
.x5_c00226{left:40.800000px;}
.x7_c00226{left:50.700000px;}
.x1_c00226{left:154.200000px;}
.x8_c00226{left:214.651749px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls1_c00226{letter-spacing:-5.333333pt;}
.ls3_c00226{letter-spacing:0.000000pt;}
.ls0_c00226{letter-spacing:2.666667pt;}
.ls2_c00226{letter-spacing:5.333333pt;}
.ws1_c00226{word-spacing:-18.090667pt;}
.ws0_c00226{word-spacing:-13.333333pt;}
.ws2_c00226{word-spacing:0.000000pt;}
._17_c00226{margin-left:-15.424000pt;}
._12_c00226{margin-left:-11.392000pt;}
._c_c00226{margin-left:-8.480000pt;}
._6_c00226{margin-left:-6.944000pt;}
._2_c00226{margin-left:-5.600000pt;}
._5_c00226{margin-left:-4.106667pt;}
._e_c00226{margin-left:-2.890667pt;}
._a_c00226{margin-left:-1.834667pt;}
._10_c00226{margin-left:-0.906667pt;}
._3_c00226{width:1.045333pt;}
._8_c00226{width:2.026667pt;}
._7_c00226{width:3.306667pt;}
._9_c00226{width:4.650667pt;}
._13_c00226{width:5.632000pt;}
._b_c00226{width:6.592000pt;}
._1_c00226{width:8.160000pt;}
._f_c00226{width:9.504000pt;}
._d_c00226{width:10.410667pt;}
._11_c00226{width:11.626667pt;}
._0_c00226{width:14.112000pt;}
._14_c00226{width:34.688000pt;}
._16_c00226{width:36.693333pt;}
._18_c00226{width:173.120000pt;}
._4_c00226{width:266.634667pt;}
._15_c00226{width:778.720000pt;}
.fs2_c00226{font-size:42.666667pt;}
.fs1_c00226{font-size:64.000000pt;}
.fs0_c00226{font-size:74.666667pt;}
.y0_c00226{bottom:0.000000pt;}
.y1f_c00226{bottom:2.760000pt;}
.y1e_c00226{bottom:6.425219pt;}
.y1d_c00226{bottom:44.813333pt;}
.y1c_c00226{bottom:68.413333pt;}
.y1b_c00226{bottom:91.880000pt;}
.y1a_c00226{bottom:110.146667pt;}
.y19_c00226{bottom:136.546667pt;}
.y18_c00226{bottom:158.680000pt;}
.y17_c00226{bottom:180.946667pt;}
.y16_c00226{bottom:203.080000pt;}
.y15_c00226{bottom:224.413333pt;}
.y14_c00226{bottom:246.946667pt;}
.y13_c00226{bottom:267.080000pt;}
.y12_c00226{bottom:287.213333pt;}
.y11_c00226{bottom:307.880000pt;}
.y10_c00226{bottom:329.746667pt;}
.yf_c00226{bottom:351.613333pt;}
.ye_c00226{bottom:373.213333pt;}
.yd_c00226{bottom:395.213333pt;}
.yc_c00226{bottom:417.080000pt;}
.yb_c00226{bottom:438.413333pt;}
.ya_c00226{bottom:461.080000pt;}
.y9_c00226{bottom:482.813333pt;}
.y8_c00226{bottom:504.680000pt;}
.y7_c00226{bottom:526.013333pt;}
.y6_c00226{bottom:548.146667pt;}
.y5_c00226{bottom:570.013333pt;}
.y4_c00226{bottom:591.613333pt;}
.y3_c00226{bottom:613.880000pt;}
.y2_c00226{bottom:635.480000pt;}
.y1_c00226{bottom:657.080000pt;}
.h4_c00226{height:11.733399pt;}
.h5_c00226{height:38.937500pt;}
.h2_c00226{height:73.244792pt;}
.h3_c00226{height:81.031250pt;}
.h0_c00226{height:705.133333pt;}
.h1_c00226{height:705.333333pt;}
.w2_c00226{width:93.222667pt;}
.w0_c00226{width:467.266667pt;}
.w1_c00226{width:467.333333pt;}
.x0_c00226{left:0.000000pt;}
.x6_c00226{left:28.533333pt;}
.x2_c00226{left:32.133333pt;}
.x3_c00226{left:33.600000pt;}
.x4_c00226{left:35.066667pt;}
.x5_c00226{left:36.266667pt;}
.x7_c00226{left:45.066667pt;}
.x1_c00226{left:137.066667pt;}
.x8_c00226{left:190.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cf06d5c3d899770d938fd497.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00227;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00227;src:url('chunks/assets/font_9f2f0e99210a205296a4f6c7.woff2')format("woff");}.ff3_c00227{font-family:ff3_c00227;line-height:1.568848;font-style:normal;font-weight:normal;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_cf3954a81c90e29c8a1d5754.woff2')format("woff");}.ff4_c00227{font-family:ff4_c00227;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00227{font-family:ff5_c00227;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00227{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00227{vertical-align:0.000000px;}
.ls1_c00227{letter-spacing:0.000000px;}
.ls0_c00227{letter-spacing:3.000000px;}
.sc__c00227{text-shadow:none;}
.sc0_c00227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00227{-webkit-text-stroke:0px transparent;}
.sc0_c00227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00227{word-spacing:-21.000000px;}
.ws1_c00227{word-spacing:-20.352000px;}
.ws2_c00227{word-spacing:0.000000px;}
._8_c00227{margin-left:-9.576000px;}
._6_c00227{margin-left:-8.496000px;}
._10_c00227{margin-left:-6.264000px;}
._7_c00227{margin-left:-4.752000px;}
._4_c00227{margin-left:-3.504000px;}
._3_c00227{margin-left:-1.596000px;}
._b_c00227{width:1.056000px;}
._1_c00227{width:2.184000px;}
._2_c00227{width:3.276000px;}
._0_c00227{width:5.040000px;}
._9_c00227{width:6.348000px;}
._a_c00227{width:7.464000px;}
._c_c00227{width:8.904000px;}
._11_c00227{width:11.124000px;}
._e_c00227{width:12.600000px;}
._5_c00227{width:13.992000px;}
._12_c00227{width:15.072000px;}
._d_c00227{width:16.560000px;}
._f_c00227{width:18.096000px;}
.fc2_c00227{color:transparent;}
.fc1_c00227{color:rgb(128,128,128);}
.fc0_c00227{color:rgb(0,0,0);}
.fs2_c00227{font-size:48.000000px;}
.fs1_c00227{font-size:72.000000px;}
.fs0_c00227{font-size:84.000000px;}
.y0_c00227{bottom:0.000000px;}
.y1f_c00227{bottom:3.105000px;}
.y1e_c00227{bottom:7.228369px;}
.y1d_c00227{bottom:43.170000px;}
.y1c_c00227{bottom:68.070000px;}
.y1b_c00227{bottom:93.420000px;}
.y1a_c00227{bottom:118.170000px;}
.y19_c00227{bottom:143.670000px;}
.y18_c00227{bottom:168.420000px;}
.y17_c00227{bottom:193.320000px;}
.y16_c00227{bottom:217.620000px;}
.y15_c00227{bottom:242.370000px;}
.y14_c00227{bottom:266.520000px;}
.y13_c00227{bottom:290.970000px;}
.y12_c00227{bottom:315.120000px;}
.y11_c00227{bottom:338.820000px;}
.y10_c00227{bottom:363.870000px;}
.yf_c00227{bottom:387.720000px;}
.ye_c00227{bottom:412.470000px;}
.yd_c00227{bottom:436.770000px;}
.yc_c00227{bottom:461.370000px;}
.yb_c00227{bottom:484.620000px;}
.ya_c00227{bottom:509.520000px;}
.y9_c00227{bottom:534.570000px;}
.y8_c00227{bottom:558.570000px;}
.y7_c00227{bottom:583.470000px;}
.y6_c00227{bottom:606.420000px;}
.y5_c00227{bottom:632.070000px;}
.y4_c00227{bottom:657.120000px;}
.y3_c00227{bottom:681.120000px;}
.y2_c00227{bottom:706.020000px;}
.y1_c00227{bottom:731.670000px;}
.h4_c00227{height:13.200073px;}
.h5_c00227{height:43.804688px;}
.h2_c00227{height:82.441406px;}
.h3_c00227{height:91.160156px;}
.h1_c00227{height:790.500000px;}
.h0_c00227{height:790.800000px;}
.w1_c00227{width:104.875500px;}
.w0_c00227{width:486.000000px;}
.x0_c00227{left:0.000000px;}
.x8_c00227{left:83.400000px;}
.x7_c00227{left:85.350000px;}
.x6_c00227{left:86.850000px;}
.x5_c00227{left:88.800000px;}
.x4_c00227{left:89.850000px;}
.x3_c00227{left:92.250000px;}
.x2_c00227{left:93.450000px;}
.xa_c00227{left:194.814240px;}
.x1_c00227{left:216.900000px;}
.x9_c00227{left:403.350000px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls1_c00227{letter-spacing:0.000000pt;}
.ls0_c00227{letter-spacing:2.666667pt;}
.ws0_c00227{word-spacing:-18.666667pt;}
.ws1_c00227{word-spacing:-18.090667pt;}
.ws2_c00227{word-spacing:0.000000pt;}
._8_c00227{margin-left:-8.512000pt;}
._6_c00227{margin-left:-7.552000pt;}
._10_c00227{margin-left:-5.568000pt;}
._7_c00227{margin-left:-4.224000pt;}
._4_c00227{margin-left:-3.114667pt;}
._3_c00227{margin-left:-1.418667pt;}
._b_c00227{width:0.938667pt;}
._1_c00227{width:1.941333pt;}
._2_c00227{width:2.912000pt;}
._0_c00227{width:4.480000pt;}
._9_c00227{width:5.642667pt;}
._a_c00227{width:6.634667pt;}
._c_c00227{width:7.914667pt;}
._11_c00227{width:9.888000pt;}
._e_c00227{width:11.200000pt;}
._5_c00227{width:12.437333pt;}
._12_c00227{width:13.397333pt;}
._d_c00227{width:14.720000pt;}
._f_c00227{width:16.085333pt;}
.fs2_c00227{font-size:42.666667pt;}
.fs1_c00227{font-size:64.000000pt;}
.fs0_c00227{font-size:74.666667pt;}
.y0_c00227{bottom:0.000000pt;}
.y1f_c00227{bottom:2.760000pt;}
.y1e_c00227{bottom:6.425217pt;}
.y1d_c00227{bottom:38.373333pt;}
.y1c_c00227{bottom:60.506667pt;}
.y1b_c00227{bottom:83.040000pt;}
.y1a_c00227{bottom:105.040000pt;}
.y19_c00227{bottom:127.706667pt;}
.y18_c00227{bottom:149.706667pt;}
.y17_c00227{bottom:171.840000pt;}
.y16_c00227{bottom:193.440000pt;}
.y15_c00227{bottom:215.440000pt;}
.y14_c00227{bottom:236.906667pt;}
.y13_c00227{bottom:258.640000pt;}
.y12_c00227{bottom:280.106667pt;}
.y11_c00227{bottom:301.173333pt;}
.y10_c00227{bottom:323.440000pt;}
.yf_c00227{bottom:344.640000pt;}
.ye_c00227{bottom:366.640000pt;}
.yd_c00227{bottom:388.240000pt;}
.yc_c00227{bottom:410.106667pt;}
.yb_c00227{bottom:430.773333pt;}
.ya_c00227{bottom:452.906667pt;}
.y9_c00227{bottom:475.173333pt;}
.y8_c00227{bottom:496.506667pt;}
.y7_c00227{bottom:518.640000pt;}
.y6_c00227{bottom:539.040000pt;}
.y5_c00227{bottom:561.840000pt;}
.y4_c00227{bottom:584.106667pt;}
.y3_c00227{bottom:605.440000pt;}
.y2_c00227{bottom:627.573333pt;}
.y1_c00227{bottom:650.373333pt;}
.h4_c00227{height:11.733399pt;}
.h5_c00227{height:38.937500pt;}
.h2_c00227{height:73.281250pt;}
.h3_c00227{height:81.031250pt;}
.h1_c00227{height:702.666667pt;}
.h0_c00227{height:702.933333pt;}
.w1_c00227{width:93.222667pt;}
.w0_c00227{width:432.000000pt;}
.x0_c00227{left:0.000000pt;}
.x8_c00227{left:74.133333pt;}
.x7_c00227{left:75.866667pt;}
.x6_c00227{left:77.200000pt;}
.x5_c00227{left:78.933333pt;}
.x4_c00227{left:79.866667pt;}
.x3_c00227{left:82.000000pt;}
.x2_c00227{left:83.066667pt;}
.xa_c00227{left:173.168213pt;}
.x1_c00227{left:192.800000pt;}
.x9_c00227{left:358.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_129e718532806d8611c8e78d.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.480469;font-style:normal;font-weight:normal;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_74c8d7bca81785af29c8a1fd.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00228{font-family:ff3_c00228;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00228{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00228{vertical-align:0.000000px;}
.ls1_c00228{letter-spacing:0.000000px;}
.ls0_c00228{letter-spacing:3.000000px;}
.sc__c00228{text-shadow:none;}
.sc0_c00228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00228{-webkit-text-stroke:0px transparent;}
.sc0_c00228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00228{word-spacing:-20.352000px;}
.ws1_c00228{word-spacing:0.000000px;}
._19_c00228{margin-left:-22.824000px;}
._15_c00228{margin-left:-16.632000px;}
._14_c00228{margin-left:-14.184000px;}
._e_c00228{margin-left:-7.500000px;}
._f_c00228{margin-left:-6.480000px;}
._17_c00228{margin-left:-5.256000px;}
._8_c00228{margin-left:-4.104000px;}
._a_c00228{margin-left:-2.736000px;}
._c_c00228{margin-left:-1.080000px;}
._9_c00228{width:1.368000px;}
._b_c00228{width:2.808000px;}
._7_c00228{width:4.752000px;}
._10_c00228{width:5.808000px;}
._11_c00228{width:6.936000px;}
._d_c00228{width:8.832000px;}
._2_c00228{width:9.900000px;}
._5_c00228{width:12.180000px;}
._12_c00228{width:13.464000px;}
._1_c00228{width:16.080000px;}
._18_c00228{width:17.244000px;}
._4_c00228{width:18.420000px;}
._3_c00228{width:19.920000px;}
._0_c00228{width:26.160000px;}
._6_c00228{width:352.560000px;}
._16_c00228{width:385.344000px;}
._13_c00228{width:773.280000px;}
.fc2_c00228{color:transparent;}
.fc1_c00228{color:rgb(128,128,128);}
.fc0_c00228{color:rgb(0,0,0);}
.fs2_c00228{font-size:48.000000px;}
.fs0_c00228{font-size:60.000000px;}
.fs1_c00228{font-size:72.000000px;}
.y0_c00228{bottom:0.000000px;}
.y1f_c00228{bottom:3.105000px;}
.y1e_c00228{bottom:7.228363px;}
.y1d_c00228{bottom:41.850000px;}
.y1c_c00228{bottom:69.900000px;}
.y1b_c00228{bottom:95.850000px;}
.y1a_c00228{bottom:121.800000px;}
.y19_c00228{bottom:146.400000px;}
.y18_c00228{bottom:169.350000px;}
.y17_c00228{bottom:195.750000px;}
.y16_c00228{bottom:220.050000px;}
.y15_c00228{bottom:245.700000px;}
.y14_c00228{bottom:269.550000px;}
.y13_c00228{bottom:294.600000px;}
.y12_c00228{bottom:316.800000px;}
.y11_c00228{bottom:338.850000px;}
.y10_c00228{bottom:363.450000px;}
.yf_c00228{bottom:389.100000px;}
.ye_c00228{bottom:413.400000px;}
.yd_c00228{bottom:438.450000px;}
.yc_c00228{bottom:463.500000px;}
.yb_c00228{bottom:487.800000px;}
.ya_c00228{bottom:512.250000px;}
.y9_c00228{bottom:537.000000px;}
.y8_c00228{bottom:561.600000px;}
.y7_c00228{bottom:586.650000px;}
.y6_c00228{bottom:611.250000px;}
.y5_c00228{bottom:635.250000px;}
.y4_c00228{bottom:660.150000px;}
.y3_c00228{bottom:684.150000px;}
.y2_c00228{bottom:709.500000px;}
.y1_c00228{bottom:734.700000px;}
.h4_c00228{height:13.200074px;}
.h5_c00228{height:43.804688px;}
.h2_c00228{height:70.224609px;}
.h3_c00228{height:91.160156px;}
.h1_c00228{height:788.250000px;}
.h0_c00228{height:788.400000px;}
.w2_c00228{width:104.875500px;}
.w0_c00228{width:522.450000px;}
.w1_c00228{width:522.750000px;}
.x0_c00228{left:0.000000px;}
.x2_c00228{left:31.050000px;}
.x3_c00228{left:32.100000px;}
.x4_c00228{left:33.750000px;}
.x5_c00228{left:35.400000px;}
.x6_c00228{left:36.450000px;}
.x7_c00228{left:38.700000px;}
.x8_c00228{left:40.500000px;}
.x1_c00228{left:139.050000px;}
.xa_c00228{left:213.039230px;}
.x9_c00228{left:349.650000px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls1_c00228{letter-spacing:0.000000pt;}
.ls0_c00228{letter-spacing:2.666667pt;}
.ws0_c00228{word-spacing:-18.090667pt;}
.ws1_c00228{word-spacing:0.000000pt;}
._19_c00228{margin-left:-20.288000pt;}
._15_c00228{margin-left:-14.784000pt;}
._14_c00228{margin-left:-12.608000pt;}
._e_c00228{margin-left:-6.666667pt;}
._f_c00228{margin-left:-5.760000pt;}
._17_c00228{margin-left:-4.672000pt;}
._8_c00228{margin-left:-3.648000pt;}
._a_c00228{margin-left:-2.432000pt;}
._c_c00228{margin-left:-0.960000pt;}
._9_c00228{width:1.216000pt;}
._b_c00228{width:2.496000pt;}
._7_c00228{width:4.224000pt;}
._10_c00228{width:5.162667pt;}
._11_c00228{width:6.165333pt;}
._d_c00228{width:7.850667pt;}
._2_c00228{width:8.800000pt;}
._5_c00228{width:10.826667pt;}
._12_c00228{width:11.968000pt;}
._1_c00228{width:14.293333pt;}
._18_c00228{width:15.328000pt;}
._4_c00228{width:16.373333pt;}
._3_c00228{width:17.706667pt;}
._0_c00228{width:23.253333pt;}
._6_c00228{width:313.386667pt;}
._16_c00228{width:342.528000pt;}
._13_c00228{width:687.360000pt;}
.fs2_c00228{font-size:42.666667pt;}
.fs0_c00228{font-size:53.333333pt;}
.fs1_c00228{font-size:64.000000pt;}
.y0_c00228{bottom:0.000000pt;}
.y1f_c00228{bottom:2.760000pt;}
.y1e_c00228{bottom:6.425212pt;}
.y1d_c00228{bottom:37.200000pt;}
.y1c_c00228{bottom:62.133333pt;}
.y1b_c00228{bottom:85.200000pt;}
.y1a_c00228{bottom:108.266667pt;}
.y19_c00228{bottom:130.133333pt;}
.y18_c00228{bottom:150.533333pt;}
.y17_c00228{bottom:174.000000pt;}
.y16_c00228{bottom:195.600000pt;}
.y15_c00228{bottom:218.400000pt;}
.y14_c00228{bottom:239.600000pt;}
.y13_c00228{bottom:261.866667pt;}
.y12_c00228{bottom:281.600000pt;}
.y11_c00228{bottom:301.200000pt;}
.y10_c00228{bottom:323.066667pt;}
.yf_c00228{bottom:345.866667pt;}
.ye_c00228{bottom:367.466667pt;}
.yd_c00228{bottom:389.733333pt;}
.yc_c00228{bottom:412.000000pt;}
.yb_c00228{bottom:433.600000pt;}
.ya_c00228{bottom:455.333333pt;}
.y9_c00228{bottom:477.333333pt;}
.y8_c00228{bottom:499.200000pt;}
.y7_c00228{bottom:521.466667pt;}
.y6_c00228{bottom:543.333333pt;}
.y5_c00228{bottom:564.666667pt;}
.y4_c00228{bottom:586.800000pt;}
.y3_c00228{bottom:608.133333pt;}
.y2_c00228{bottom:630.666667pt;}
.y1_c00228{bottom:653.066667pt;}
.h4_c00228{height:11.733399pt;}
.h5_c00228{height:38.937500pt;}
.h2_c00228{height:62.421875pt;}
.h3_c00228{height:81.031250pt;}
.h1_c00228{height:700.666667pt;}
.h0_c00228{height:700.800000pt;}
.w2_c00228{width:93.222667pt;}
.w0_c00228{width:464.400000pt;}
.w1_c00228{width:464.666667pt;}
.x0_c00228{left:0.000000pt;}
.x2_c00228{left:27.600000pt;}
.x3_c00228{left:28.533333pt;}
.x4_c00228{left:30.000000pt;}
.x5_c00228{left:31.466667pt;}
.x6_c00228{left:32.400000pt;}
.x7_c00228{left:34.400000pt;}
.x8_c00228{left:36.000000pt;}
.x1_c00228{left:123.600000pt;}
.xa_c00228{left:189.368205pt;}
.x9_c00228{left:310.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4ec8aaf88f870d697804e141.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.568848;font-style:normal;font-weight:normal;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_b7bf9dd545b0ac6bb285123d.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.480469;font-style:normal;font-weight:normal;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_ea06e8e44fd9af45e9ef5f00.woff2')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00229;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00229{font-family:ff4_c00229;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00229{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00229{vertical-align:0.000000px;}
.ls1_c00229{letter-spacing:0.000000px;}
.ls0_c00229{letter-spacing:3.000000px;}
.sc__c00229{text-shadow:none;}
.sc0_c00229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00229{-webkit-text-stroke:0px transparent;}
.sc0_c00229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00229{word-spacing:-42.000000px;}
.ws2_c00229{word-spacing:-20.352000px;}
.ws1_c00229{word-spacing:-17.352000px;}
.ws3_c00229{word-spacing:0.000000px;}
._11_c00229{margin-left:-11.076000px;}
._12_c00229{margin-left:-7.344000px;}
._10_c00229{margin-left:-5.616000px;}
._a_c00229{margin-left:-4.608000px;}
._9_c00229{margin-left:-3.456000px;}
._b_c00229{margin-left:-1.800000px;}
._8_c00229{width:1.296000px;}
._7_c00229{width:2.304000px;}
._6_c00229{width:3.996000px;}
._2_c00229{width:5.040000px;}
._d_c00229{width:6.624000px;}
._5_c00229{width:7.776000px;}
._4_c00229{width:8.784000px;}
._3_c00229{width:10.008000px;}
._13_c00229{width:11.520000px;}
._1_c00229{width:12.672000px;}
._c_c00229{width:13.896000px;}
._f_c00229{width:16.236000px;}
._e_c00229{width:18.072000px;}
._0_c00229{width:394.368000px;}
.fc2_c00229{color:transparent;}
.fc1_c00229{color:rgb(128,128,128);}
.fc0_c00229{color:rgb(0,0,0);}
.fs2_c00229{font-size:48.000000px;}
.fs0_c00229{font-size:72.000000px;}
.fs1_c00229{font-size:84.000000px;}
.y0_c00229{bottom:0.000000px;}
.y1f_c00229{bottom:3.105000px;}
.y1e_c00229{bottom:7.228371px;}
.y1d_c00229{bottom:46.215000px;}
.y1c_c00229{bottom:69.915000px;}
.y1b_c00229{bottom:95.565000px;}
.y1a_c00229{bottom:120.615000px;}
.y19_c00229{bottom:145.515000px;}
.y18_c00229{bottom:171.165000px;}
.y17_c00229{bottom:196.065000px;}
.y16_c00229{bottom:220.815000px;}
.y15_c00229{bottom:246.015000px;}
.y14_c00229{bottom:270.015000px;}
.y13_c00229{bottom:295.065000px;}
.y12_c00229{bottom:318.615000px;}
.y11_c00229{bottom:342.915000px;}
.y10_c00229{bottom:367.515000px;}
.yf_c00229{bottom:391.515000px;}
.ye_c00229{bottom:416.265000px;}
.yd_c00229{bottom:440.565000px;}
.yc_c00229{bottom:465.165000px;}
.yb_c00229{bottom:489.465000px;}
.ya_c00229{bottom:514.065000px;}
.y9_c00229{bottom:538.665000px;}
.y8_c00229{bottom:562.965000px;}
.y7_c00229{bottom:587.715000px;}
.y6_c00229{bottom:611.265000px;}
.y5_c00229{bottom:636.165000px;}
.y4_c00229{bottom:661.215000px;}
.y3_c00229{bottom:685.815000px;}
.y2_c00229{bottom:709.815000px;}
.y1_c00229{bottom:736.065000px;}
.h3_c00229{height:13.200074px;}
.h4_c00229{height:43.804688px;}
.h2_c00229{height:91.160156px;}
.h0_c00229{height:786.525000px;}
.h1_c00229{height:786.750000px;}
.w2_c00229{width:104.875500px;}
.w1_c00229{width:515.250000px;}
.w0_c00229{width:515.400000px;}
.x0_c00229{left:0.000000px;}
.x7_c00229{left:106.650000px;}
.x6_c00229{left:107.700000px;}
.x4_c00229{left:109.050000px;}
.x3_c00229{left:110.100000px;}
.x2_c00229{left:111.450000px;}
.x5_c00229{left:112.500000px;}
.x8_c00229{left:114.750000px;}
.x1_c00229{left:121.800000px;}
.xa_c00229{left:209.514267px;}
.x9_c00229{left:440.400000px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls1_c00229{letter-spacing:0.000000pt;}
.ls0_c00229{letter-spacing:2.666667pt;}
.ws0_c00229{word-spacing:-37.333333pt;}
.ws2_c00229{word-spacing:-18.090667pt;}
.ws1_c00229{word-spacing:-15.424000pt;}
.ws3_c00229{word-spacing:0.000000pt;}
._11_c00229{margin-left:-9.845333pt;}
._12_c00229{margin-left:-6.528000pt;}
._10_c00229{margin-left:-4.992000pt;}
._a_c00229{margin-left:-4.096000pt;}
._9_c00229{margin-left:-3.072000pt;}
._b_c00229{margin-left:-1.600000pt;}
._8_c00229{width:1.152000pt;}
._7_c00229{width:2.048000pt;}
._6_c00229{width:3.552000pt;}
._2_c00229{width:4.480000pt;}
._d_c00229{width:5.888000pt;}
._5_c00229{width:6.912000pt;}
._4_c00229{width:7.808000pt;}
._3_c00229{width:8.896000pt;}
._13_c00229{width:10.240000pt;}
._1_c00229{width:11.264000pt;}
._c_c00229{width:12.352000pt;}
._f_c00229{width:14.432000pt;}
._e_c00229{width:16.064000pt;}
._0_c00229{width:350.549333pt;}
.fs2_c00229{font-size:42.666667pt;}
.fs0_c00229{font-size:64.000000pt;}
.fs1_c00229{font-size:74.666667pt;}
.y0_c00229{bottom:0.000000pt;}
.y1f_c00229{bottom:2.760000pt;}
.y1e_c00229{bottom:6.425219pt;}
.y1d_c00229{bottom:41.080000pt;}
.y1c_c00229{bottom:62.146667pt;}
.y1b_c00229{bottom:84.946667pt;}
.y1a_c00229{bottom:107.213333pt;}
.y19_c00229{bottom:129.346667pt;}
.y18_c00229{bottom:152.146667pt;}
.y17_c00229{bottom:174.280000pt;}
.y16_c00229{bottom:196.280000pt;}
.y15_c00229{bottom:218.680000pt;}
.y14_c00229{bottom:240.013333pt;}
.y13_c00229{bottom:262.280000pt;}
.y12_c00229{bottom:283.213333pt;}
.y11_c00229{bottom:304.813333pt;}
.y10_c00229{bottom:326.680000pt;}
.yf_c00229{bottom:348.013333pt;}
.ye_c00229{bottom:370.013333pt;}
.yd_c00229{bottom:391.613333pt;}
.yc_c00229{bottom:413.480000pt;}
.yb_c00229{bottom:435.080000pt;}
.ya_c00229{bottom:456.946667pt;}
.y9_c00229{bottom:478.813333pt;}
.y8_c00229{bottom:500.413333pt;}
.y7_c00229{bottom:522.413333pt;}
.y6_c00229{bottom:543.346667pt;}
.y5_c00229{bottom:565.480000pt;}
.y4_c00229{bottom:587.746667pt;}
.y3_c00229{bottom:609.613333pt;}
.y2_c00229{bottom:630.946667pt;}
.y1_c00229{bottom:654.280000pt;}
.h3_c00229{height:11.733399pt;}
.h4_c00229{height:38.937500pt;}
.h2_c00229{height:81.031250pt;}
.h0_c00229{height:699.133333pt;}
.h1_c00229{height:699.333333pt;}
.w2_c00229{width:93.222667pt;}
.w1_c00229{width:458.000000pt;}
.w0_c00229{width:458.133333pt;}
.x0_c00229{left:0.000000pt;}
.x7_c00229{left:94.800000pt;}
.x6_c00229{left:95.733333pt;}
.x4_c00229{left:96.933333pt;}
.x3_c00229{left:97.866667pt;}
.x2_c00229{left:99.066667pt;}
.x5_c00229{left:100.000000pt;}
.x8_c00229{left:102.000000pt;}
.x1_c00229{left:108.266667pt;}
.xa_c00229{left:186.234904pt;}
.x9_c00229{left:391.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ed76beb4f7963a07cc0d18be.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00230;src:url('chunks/assets/font_8c11b0c6455d0ac244b9527d.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:1.568848;font-style:normal;font-weight:normal;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_d6970519dd6d656e71fc2f29.woff2')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00230{font-family:ff4_c00230;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00230{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00230{vertical-align:0.000000px;}
.ls1_c00230{letter-spacing:0.000000px;}
.ls0_c00230{letter-spacing:3.000000px;}
.sc__c00230{text-shadow:none;}
.sc0_c00230{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00230{-webkit-text-stroke:0px transparent;}
.sc0_c00230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00230{word-spacing:-20.352000px;}
.ws0_c00230{word-spacing:-17.352000px;}
.ws2_c00230{word-spacing:0.000000px;}
._17_c00230{margin-left:-58.824000px;}
._15_c00230{margin-left:-17.496000px;}
._13_c00230{margin-left:-11.928000px;}
._11_c00230{margin-left:-10.080000px;}
._10_c00230{margin-left:-8.304000px;}
._f_c00230{margin-left:-6.384000px;}
._2_c00230{margin-left:-4.788000px;}
._a_c00230{margin-left:-3.336000px;}
._9_c00230{margin-left:-1.824000px;}
._5_c00230{width:1.344000px;}
._3_c00230{width:2.688000px;}
._8_c00230{width:3.792000px;}
._4_c00230{width:5.544000px;}
._1_c00230{width:7.140000px;}
._d_c00230{width:9.096000px;}
._0_c00230{width:11.340000px;}
._12_c00230{width:12.552000px;}
._c_c00230{width:14.424000px;}
._b_c00230{width:15.504000px;}
._e_c00230{width:17.868000px;}
._7_c00230{width:19.656000px;}
._18_c00230{width:24.984000px;}
._16_c00230{width:37.512000px;}
._14_c00230{width:151.248000px;}
._6_c00230{width:311.808000px;}
.fc2_c00230{color:transparent;}
.fc1_c00230{color:rgb(128,128,128);}
.fc0_c00230{color:rgb(0,0,0);}
.fs2_c00230{font-size:48.000000px;}
.fs1_c00230{font-size:72.000000px;}
.fs0_c00230{font-size:84.000000px;}
.y0_c00230{bottom:0.000000px;}
.y1f_c00230{bottom:3.105000px;}
.y1e_c00230{bottom:7.228363px;}
.y1d_c00230{bottom:50.850000px;}
.y1c_c00230{bottom:77.550000px;}
.y1b_c00230{bottom:102.900000px;}
.y1a_c00230{bottom:127.500000px;}
.y19_c00230{bottom:152.550000px;}
.y18_c00230{bottom:175.800000px;}
.y17_c00230{bottom:200.850000px;}
.y16_c00230{bottom:225.450000px;}
.y15_c00230{bottom:251.700000px;}
.y14_c00230{bottom:276.450000px;}
.y13_c00230{bottom:298.650000px;}
.y12_c00230{bottom:322.650000px;}
.y11_c00230{bottom:344.850000px;}
.y10_c00230{bottom:371.850000px;}
.yf_c00230{bottom:394.800000px;}
.ye_c00230{bottom:419.550000px;}
.yd_c00230{bottom:444.150000px;}
.yc_c00230{bottom:468.450000px;}
.yb_c00230{bottom:493.500000px;}
.ya_c00230{bottom:517.950000px;}
.y9_c00230{bottom:542.700000px;}
.y8_c00230{bottom:567.300000px;}
.y7_c00230{bottom:591.750000px;}
.y6_c00230{bottom:616.650000px;}
.y5_c00230{bottom:641.550000px;}
.y4_c00230{bottom:665.850000px;}
.y3_c00230{bottom:690.150000px;}
.y2_c00230{bottom:715.500000px;}
.y1_c00230{bottom:740.100000px;}
.h3_c00230{height:13.200074px;}
.h4_c00230{height:43.804688px;}
.h1_c00230{height:82.400391px;}
.h2_c00230{height:91.160156px;}
.h0_c00230{height:789.750000px;}
.w2_c00230{width:104.875500px;}
.w1_c00230{width:540.750000px;}
.w0_c00230{width:540.825000px;}
.x0_c00230{left:0.000000px;}
.xb_c00230{left:22.950000px;}
.x8_c00230{left:30.000000px;}
.x6_c00230{left:33.450000px;}
.x2_c00230{left:35.100000px;}
.x4_c00230{left:36.450000px;}
.x3_c00230{left:37.800000px;}
.x5_c00230{left:39.450000px;}
.x9_c00230{left:40.950000px;}
.xa_c00230{left:46.350000px;}
.x7_c00230{left:120.450000px;}
.x1_c00230{left:151.800000px;}
.xd_c00230{left:222.226730px;}
.xc_c00230{left:372.300000px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls1_c00230{letter-spacing:0.000000pt;}
.ls0_c00230{letter-spacing:2.666667pt;}
.ws1_c00230{word-spacing:-18.090667pt;}
.ws0_c00230{word-spacing:-15.424000pt;}
.ws2_c00230{word-spacing:0.000000pt;}
._17_c00230{margin-left:-52.288000pt;}
._15_c00230{margin-left:-15.552000pt;}
._13_c00230{margin-left:-10.602667pt;}
._11_c00230{margin-left:-8.960000pt;}
._10_c00230{margin-left:-7.381333pt;}
._f_c00230{margin-left:-5.674667pt;}
._2_c00230{margin-left:-4.256000pt;}
._a_c00230{margin-left:-2.965333pt;}
._9_c00230{margin-left:-1.621333pt;}
._5_c00230{width:1.194667pt;}
._3_c00230{width:2.389333pt;}
._8_c00230{width:3.370667pt;}
._4_c00230{width:4.928000pt;}
._1_c00230{width:6.346667pt;}
._d_c00230{width:8.085333pt;}
._0_c00230{width:10.080000pt;}
._12_c00230{width:11.157333pt;}
._c_c00230{width:12.821333pt;}
._b_c00230{width:13.781333pt;}
._e_c00230{width:15.882667pt;}
._7_c00230{width:17.472000pt;}
._18_c00230{width:22.208000pt;}
._16_c00230{width:33.344000pt;}
._14_c00230{width:134.442667pt;}
._6_c00230{width:277.162667pt;}
.fs2_c00230{font-size:42.666667pt;}
.fs1_c00230{font-size:64.000000pt;}
.fs0_c00230{font-size:74.666667pt;}
.y0_c00230{bottom:0.000000pt;}
.y1f_c00230{bottom:2.760000pt;}
.y1e_c00230{bottom:6.425212pt;}
.y1d_c00230{bottom:45.200000pt;}
.y1c_c00230{bottom:68.933333pt;}
.y1b_c00230{bottom:91.466667pt;}
.y1a_c00230{bottom:113.333333pt;}
.y19_c00230{bottom:135.600000pt;}
.y18_c00230{bottom:156.266667pt;}
.y17_c00230{bottom:178.533333pt;}
.y16_c00230{bottom:200.400000pt;}
.y15_c00230{bottom:223.733333pt;}
.y14_c00230{bottom:245.733333pt;}
.y13_c00230{bottom:265.466667pt;}
.y12_c00230{bottom:286.800000pt;}
.y11_c00230{bottom:306.533333pt;}
.y10_c00230{bottom:330.533333pt;}
.yf_c00230{bottom:350.933333pt;}
.ye_c00230{bottom:372.933333pt;}
.yd_c00230{bottom:394.800000pt;}
.yc_c00230{bottom:416.400000pt;}
.yb_c00230{bottom:438.666667pt;}
.ya_c00230{bottom:460.400000pt;}
.y9_c00230{bottom:482.400000pt;}
.y8_c00230{bottom:504.266667pt;}
.y7_c00230{bottom:526.000000pt;}
.y6_c00230{bottom:548.133333pt;}
.y5_c00230{bottom:570.266667pt;}
.y4_c00230{bottom:591.866667pt;}
.y3_c00230{bottom:613.466667pt;}
.y2_c00230{bottom:636.000000pt;}
.y1_c00230{bottom:657.866667pt;}
.h3_c00230{height:11.733399pt;}
.h4_c00230{height:38.937500pt;}
.h1_c00230{height:73.244792pt;}
.h2_c00230{height:81.031250pt;}
.h0_c00230{height:702.000000pt;}
.w2_c00230{width:93.222667pt;}
.w1_c00230{width:480.666667pt;}
.w0_c00230{width:480.733333pt;}
.x0_c00230{left:0.000000pt;}
.xb_c00230{left:20.400000pt;}
.x8_c00230{left:26.666667pt;}
.x6_c00230{left:29.733333pt;}
.x2_c00230{left:31.200000pt;}
.x4_c00230{left:32.400000pt;}
.x3_c00230{left:33.600000pt;}
.x5_c00230{left:35.066667pt;}
.x9_c00230{left:36.400000pt;}
.xa_c00230{left:41.200000pt;}
.x7_c00230{left:107.066667pt;}
.x1_c00230{left:134.933333pt;}
.xd_c00230{left:197.534871pt;}
.xc_c00230{left:330.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1dcf4b4954c9b9fa0446940d.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00231;src:url('chunks/assets/font_009535cc311fd00c177ca82b.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.568848;font-style:normal;font-weight:normal;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_da026b4740e39ed81974d0d6.woff2')format("woff");}.ff3_c00231{font-family:ff3_c00231;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00231{font-family:ff4_c00231;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00231{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00231{vertical-align:0.000000px;}
.ls3_c00231{letter-spacing:-3.000000px;}
.ls1_c00231{letter-spacing:0.000000px;}
.ls0_c00231{letter-spacing:3.000000px;}
.ls4_c00231{letter-spacing:6.000000px;}
.ls2_c00231{letter-spacing:9.000000px;}
.sc__c00231{text-shadow:none;}
.sc0_c00231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00231{-webkit-text-stroke:0px transparent;}
.sc0_c00231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00231{word-spacing:-42.000000px;}
.ws1_c00231{word-spacing:-33.192000px;}
.ws2_c00231{word-spacing:0.000000px;}
._d_c00231{margin-left:-6.396000px;}
._7_c00231{margin-left:-4.992000px;}
._5_c00231{margin-left:-3.504000px;}
._6_c00231{margin-left:-1.800000px;}
._4_c00231{width:1.656000px;}
._1_c00231{width:3.612000px;}
._3_c00231{width:5.040000px;}
._2_c00231{width:6.300000px;}
._11_c00231{width:7.608000px;}
._0_c00231{width:8.988000px;}
._8_c00231{width:10.044000px;}
._a_c00231{width:11.844000px;}
._9_c00231{width:13.644000px;}
._12_c00231{width:15.648000px;}
._b_c00231{width:17.880000px;}
._f_c00231{width:19.542000px;}
._10_c00231{width:21.318000px;}
._e_c00231{width:23.934000px;}
._c_c00231{width:32.688000px;}
.fc2_c00231{color:transparent;}
.fc1_c00231{color:rgb(128,128,128);}
.fc0_c00231{color:rgb(0,0,0);}
.fs4_c00231{font-size:24.000000px;}
.fs2_c00231{font-size:33.000000px;}
.fs5_c00231{font-size:48.000000px;}
.fs1_c00231{font-size:72.000000px;}
.fs0_c00231{font-size:84.000000px;}
.fs3_c00231{font-size:87.000000px;}
.y0_c00231{bottom:0.000000px;}
.y1f_c00231{bottom:3.105000px;}
.y1e_c00231{bottom:7.228363px;}
.y1d_c00231{bottom:46.950000px;}
.y1c_c00231{bottom:69.900000px;}
.y1b_c00231{bottom:95.250000px;}
.y1a_c00231{bottom:120.600000px;}
.y19_c00231{bottom:144.900000px;}
.y18_c00231{bottom:169.500000px;}
.y17_c00231{bottom:194.400000px;}
.y16_c00231{bottom:219.450000px;}
.y15_c00231{bottom:243.750000px;}
.y14_c00231{bottom:268.050000px;}
.y13_c00231{bottom:292.350000px;}
.y12_c00231{bottom:316.950000px;}
.y11_c00231{bottom:342.000000px;}
.y10_c00231{bottom:367.500000px;}
.yf_c00231{bottom:389.850000px;}
.ye_c00231{bottom:414.900000px;}
.yd_c00231{bottom:438.450000px;}
.yc_c00231{bottom:462.450000px;}
.yb_c00231{bottom:487.050000px;}
.ya_c00231{bottom:511.650000px;}
.y9_c00231{bottom:536.400000px;}
.y8_c00231{bottom:561.000000px;}
.y7_c00231{bottom:584.700000px;}
.y6_c00231{bottom:609.300000px;}
.y5_c00231{bottom:633.900000px;}
.y4_c00231{bottom:657.900000px;}
.y3_c00231{bottom:682.500000px;}
.y2_c00231{bottom:707.400000px;}
.y1_c00231{bottom:732.750000px;}
.h5_c00231{height:13.200074px;}
.h6_c00231{height:43.804688px;}
.h2_c00231{height:82.400391px;}
.h3_c00231{height:91.160156px;}
.h4_c00231{height:110.151855px;}
.h0_c00231{height:784.350000px;}
.h1_c00231{height:784.500000px;}
.w2_c00231{width:104.875500px;}
.w1_c00231{width:534.750000px;}
.w0_c00231{width:534.900000px;}
.x0_c00231{left:0.000000px;}
.x4_c00231{left:113.400000px;}
.x3_c00231{left:115.050000px;}
.x2_c00231{left:116.400000px;}
.x5_c00231{left:118.350000px;}
.x6_c00231{left:119.400000px;}
.x8_c00231{left:219.264267px;}
.x1_c00231{left:228.450000px;}
.x7_c00231{left:460.950000px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls3_c00231{letter-spacing:-2.666667pt;}
.ls1_c00231{letter-spacing:0.000000pt;}
.ls0_c00231{letter-spacing:2.666667pt;}
.ls4_c00231{letter-spacing:5.333333pt;}
.ls2_c00231{letter-spacing:8.000000pt;}
.ws0_c00231{word-spacing:-37.333333pt;}
.ws1_c00231{word-spacing:-29.504000pt;}
.ws2_c00231{word-spacing:0.000000pt;}
._d_c00231{margin-left:-5.685333pt;}
._7_c00231{margin-left:-4.437333pt;}
._5_c00231{margin-left:-3.114667pt;}
._6_c00231{margin-left:-1.600000pt;}
._4_c00231{width:1.472000pt;}
._1_c00231{width:3.210667pt;}
._3_c00231{width:4.480000pt;}
._2_c00231{width:5.600000pt;}
._11_c00231{width:6.762667pt;}
._0_c00231{width:7.989333pt;}
._8_c00231{width:8.928000pt;}
._a_c00231{width:10.528000pt;}
._9_c00231{width:12.128000pt;}
._12_c00231{width:13.909333pt;}
._b_c00231{width:15.893333pt;}
._f_c00231{width:17.370667pt;}
._10_c00231{width:18.949333pt;}
._e_c00231{width:21.274667pt;}
._c_c00231{width:29.056000pt;}
.fs4_c00231{font-size:21.333333pt;}
.fs2_c00231{font-size:29.333333pt;}
.fs5_c00231{font-size:42.666667pt;}
.fs1_c00231{font-size:64.000000pt;}
.fs0_c00231{font-size:74.666667pt;}
.fs3_c00231{font-size:77.333333pt;}
.y0_c00231{bottom:0.000000pt;}
.y1f_c00231{bottom:2.760000pt;}
.y1e_c00231{bottom:6.425212pt;}
.y1d_c00231{bottom:41.733333pt;}
.y1c_c00231{bottom:62.133333pt;}
.y1b_c00231{bottom:84.666667pt;}
.y1a_c00231{bottom:107.200000pt;}
.y19_c00231{bottom:128.800000pt;}
.y18_c00231{bottom:150.666667pt;}
.y17_c00231{bottom:172.800000pt;}
.y16_c00231{bottom:195.066667pt;}
.y15_c00231{bottom:216.666667pt;}
.y14_c00231{bottom:238.266667pt;}
.y13_c00231{bottom:259.866667pt;}
.y12_c00231{bottom:281.733333pt;}
.y11_c00231{bottom:304.000000pt;}
.y10_c00231{bottom:326.666667pt;}
.yf_c00231{bottom:346.533333pt;}
.ye_c00231{bottom:368.800000pt;}
.yd_c00231{bottom:389.733333pt;}
.yc_c00231{bottom:411.066667pt;}
.yb_c00231{bottom:432.933333pt;}
.ya_c00231{bottom:454.800000pt;}
.y9_c00231{bottom:476.800000pt;}
.y8_c00231{bottom:498.666667pt;}
.y7_c00231{bottom:519.733333pt;}
.y6_c00231{bottom:541.600000pt;}
.y5_c00231{bottom:563.466667pt;}
.y4_c00231{bottom:584.800000pt;}
.y3_c00231{bottom:606.666667pt;}
.y2_c00231{bottom:628.800000pt;}
.y1_c00231{bottom:651.333333pt;}
.h5_c00231{height:11.733399pt;}
.h6_c00231{height:38.937500pt;}
.h2_c00231{height:73.244792pt;}
.h3_c00231{height:81.031250pt;}
.h4_c00231{height:97.912760pt;}
.h0_c00231{height:697.200000pt;}
.h1_c00231{height:697.333333pt;}
.w2_c00231{width:93.222667pt;}
.w1_c00231{width:475.333333pt;}
.w0_c00231{width:475.466667pt;}
.x0_c00231{left:0.000000pt;}
.x4_c00231{left:100.800000pt;}
.x3_c00231{left:102.266667pt;}
.x2_c00231{left:103.466667pt;}
.x5_c00231{left:105.200000pt;}
.x6_c00231{left:106.133333pt;}
.x8_c00231{left:194.901571pt;}
.x1_c00231{left:203.066667pt;}
.x7_c00231{left:409.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0105c3daf393d06fc60cd122.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.480469;font-style:normal;font-weight:normal;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_3653de67206f69c3775b4090.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.568848;font-style:normal;font-weight:normal;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_fff4fbec407a9f9b9261404d.woff2')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00232{font-family:ff4_c00232;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00232{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00232{vertical-align:0.000000px;}
.ls3_c00232{letter-spacing:-9.000000px;}
.ls1_c00232{letter-spacing:-6.000000px;}
.ls2_c00232{letter-spacing:0.000000px;}
.ls0_c00232{letter-spacing:3.000000px;}
.sc__c00232{text-shadow:none;}
.sc0_c00232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00232{-webkit-text-stroke:0px transparent;}
.sc0_c00232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00232{word-spacing:-20.352000px;}
.ws2_c00232{word-spacing:-19.629000px;}
.ws0_c00232{word-spacing:-17.352000px;}
.ws1_c00232{word-spacing:-8.352000px;}
.ws4_c00232{word-spacing:0.000000px;}
._10_c00232{margin-left:-17.496000px;}
._11_c00232{margin-left:-13.104000px;}
._18_c00232{margin-left:-10.656000px;}
._f_c00232{margin-left:-8.928000px;}
._15_c00232{margin-left:-7.308000px;}
._16_c00232{margin-left:-6.264000px;}
._9_c00232{margin-left:-4.824000px;}
._d_c00232{margin-left:-3.600000px;}
._a_c00232{margin-left:-2.376000px;}
._7_c00232{margin-left:-1.080000px;}
._b_c00232{width:1.224000px;}
._c_c00232{width:2.808000px;}
._e_c00232{width:4.032000px;}
._0_c00232{width:5.880000px;}
._1_c00232{width:6.960000px;}
._13_c00232{width:9.036000px;}
._14_c00232{width:10.200000px;}
._12_c00232{width:11.328000px;}
._3_c00232{width:13.260000px;}
._2_c00232{width:15.480000px;}
._4_c00232{width:16.560000px;}
._5_c00232{width:17.880000px;}
._17_c00232{width:22.332000px;}
._8_c00232{width:23.460000px;}
._1b_c00232{width:24.645000px;}
._19_c00232{width:25.755000px;}
._1c_c00232{width:26.787000px;}
._1d_c00232{width:28.173000px;}
._1a_c00232{width:32.733000px;}
._6_c00232{width:293.700000px;}
.fc2_c00232{color:transparent;}
.fc1_c00232{color:rgb(128,128,128);}
.fc0_c00232{color:rgb(0,0,0);}
.fs3_c00232{font-size:48.000000px;}
.fs0_c00232{font-size:60.000000px;}
.fs2_c00232{font-size:69.000000px;}
.fs1_c00232{font-size:72.000000px;}
.y0_c00232{bottom:0.000000px;}
.y1f_c00232{bottom:3.105000px;}
.y1e_c00232{bottom:7.228355px;}
.y1d_c00232{bottom:51.285000px;}
.y1c_c00232{bottom:78.285000px;}
.y1b_c00232{bottom:103.635000px;}
.y1a_c00232{bottom:126.435000px;}
.y19_c00232{bottom:153.885000px;}
.y18_c00232{bottom:178.785000px;}
.y17_c00232{bottom:203.535000px;}
.y16_c00232{bottom:227.835000px;}
.y15_c00232{bottom:252.735000px;}
.y14_c00232{bottom:277.335000px;}
.y13_c00232{bottom:300.585000px;}
.y12_c00232{bottom:322.935000px;}
.y11_c00232{bottom:346.485000px;}
.y10_c00232{bottom:370.935000px;}
.yf_c00232{bottom:396.135000px;}
.ye_c00232{bottom:420.885000px;}
.yd_c00232{bottom:445.485000px;}
.yc_c00232{bottom:470.685000px;}
.yb_c00232{bottom:494.985000px;}
.ya_c00232{bottom:520.635000px;}
.y9_c00232{bottom:543.285000px;}
.y8_c00232{bottom:568.935000px;}
.y7_c00232{bottom:594.285000px;}
.y6_c00232{bottom:618.585000px;}
.y5_c00232{bottom:643.485000px;}
.y4_c00232{bottom:666.885000px;}
.y3_c00232{bottom:691.185000px;}
.y2_c00232{bottom:715.785000px;}
.y1_c00232{bottom:740.835000px;}
.h4_c00232{height:13.200074px;}
.h5_c00232{height:43.804688px;}
.h2_c00232{height:75.966797px;}
.h3_c00232{height:91.160156px;}
.h0_c00232{height:784.875000px;}
.h1_c00232{height:785.250000px;}
.w2_c00232{width:104.875500px;}
.w1_c00232{width:541.500000px;}
.w0_c00232{width:541.650000px;}
.x0_c00232{left:0.000000px;}
.x2_c00232{left:23.250000px;}
.x3_c00232{left:25.200000px;}
.x4_c00232{left:26.550000px;}
.x6_c00232{left:27.750000px;}
.x7_c00232{left:29.400000px;}
.x5_c00232{left:31.500000px;}
.x9_c00232{left:33.450000px;}
.x8_c00232{left:34.500000px;}
.xa_c00232{left:36.450000px;}
.x1_c00232{left:142.950000px;}
.xc_c00232{left:222.639267px;}
.xb_c00232{left:362.100000px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls3_c00232{letter-spacing:-8.000000pt;}
.ls1_c00232{letter-spacing:-5.333333pt;}
.ls2_c00232{letter-spacing:0.000000pt;}
.ls0_c00232{letter-spacing:2.666667pt;}
.ws3_c00232{word-spacing:-18.090667pt;}
.ws2_c00232{word-spacing:-17.448000pt;}
.ws0_c00232{word-spacing:-15.424000pt;}
.ws1_c00232{word-spacing:-7.424000pt;}
.ws4_c00232{word-spacing:0.000000pt;}
._10_c00232{margin-left:-15.552000pt;}
._11_c00232{margin-left:-11.648000pt;}
._18_c00232{margin-left:-9.472000pt;}
._f_c00232{margin-left:-7.936000pt;}
._15_c00232{margin-left:-6.496000pt;}
._16_c00232{margin-left:-5.568000pt;}
._9_c00232{margin-left:-4.288000pt;}
._d_c00232{margin-left:-3.200000pt;}
._a_c00232{margin-left:-2.112000pt;}
._7_c00232{margin-left:-0.960000pt;}
._b_c00232{width:1.088000pt;}
._c_c00232{width:2.496000pt;}
._e_c00232{width:3.584000pt;}
._0_c00232{width:5.226667pt;}
._1_c00232{width:6.186667pt;}
._13_c00232{width:8.032000pt;}
._14_c00232{width:9.066667pt;}
._12_c00232{width:10.069333pt;}
._3_c00232{width:11.786667pt;}
._2_c00232{width:13.760000pt;}
._4_c00232{width:14.720000pt;}
._5_c00232{width:15.893333pt;}
._17_c00232{width:19.850667pt;}
._8_c00232{width:20.853333pt;}
._1b_c00232{width:21.906667pt;}
._19_c00232{width:22.893333pt;}
._1c_c00232{width:23.810667pt;}
._1d_c00232{width:25.042667pt;}
._1a_c00232{width:29.096000pt;}
._6_c00232{width:261.066667pt;}
.fs3_c00232{font-size:42.666667pt;}
.fs0_c00232{font-size:53.333333pt;}
.fs2_c00232{font-size:61.333333pt;}
.fs1_c00232{font-size:64.000000pt;}
.y0_c00232{bottom:0.000000pt;}
.y1f_c00232{bottom:2.760000pt;}
.y1e_c00232{bottom:6.425204pt;}
.y1d_c00232{bottom:45.586667pt;}
.y1c_c00232{bottom:69.586667pt;}
.y1b_c00232{bottom:92.120000pt;}
.y1a_c00232{bottom:112.386667pt;}
.y19_c00232{bottom:136.786667pt;}
.y18_c00232{bottom:158.920000pt;}
.y17_c00232{bottom:180.920000pt;}
.y16_c00232{bottom:202.520000pt;}
.y15_c00232{bottom:224.653333pt;}
.y14_c00232{bottom:246.520000pt;}
.y13_c00232{bottom:267.186667pt;}
.y12_c00232{bottom:287.053333pt;}
.y11_c00232{bottom:307.986667pt;}
.y10_c00232{bottom:329.720000pt;}
.yf_c00232{bottom:352.120000pt;}
.ye_c00232{bottom:374.120000pt;}
.yd_c00232{bottom:395.986667pt;}
.yc_c00232{bottom:418.386667pt;}
.yb_c00232{bottom:439.986667pt;}
.ya_c00232{bottom:462.786667pt;}
.y9_c00232{bottom:482.920000pt;}
.y8_c00232{bottom:505.720000pt;}
.y7_c00232{bottom:528.253333pt;}
.y6_c00232{bottom:549.853333pt;}
.y5_c00232{bottom:571.986667pt;}
.y4_c00232{bottom:592.786667pt;}
.y3_c00232{bottom:614.386667pt;}
.y2_c00232{bottom:636.253333pt;}
.y1_c00232{bottom:658.520000pt;}
.h4_c00232{height:11.733399pt;}
.h5_c00232{height:38.937500pt;}
.h2_c00232{height:67.526042pt;}
.h3_c00232{height:81.031250pt;}
.h0_c00232{height:697.666667pt;}
.h1_c00232{height:698.000000pt;}
.w2_c00232{width:93.222667pt;}
.w1_c00232{width:481.333333pt;}
.w0_c00232{width:481.466667pt;}
.x0_c00232{left:0.000000pt;}
.x2_c00232{left:20.666667pt;}
.x3_c00232{left:22.400000pt;}
.x4_c00232{left:23.600000pt;}
.x6_c00232{left:24.666667pt;}
.x7_c00232{left:26.133333pt;}
.x5_c00232{left:28.000000pt;}
.x9_c00232{left:29.733333pt;}
.x8_c00232{left:30.666667pt;}
.xa_c00232{left:32.400000pt;}
.x1_c00232{left:127.066667pt;}
.xc_c00232{left:197.901571pt;}
.xb_c00232{left:321.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6ce2ee08129ad6f799808114.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00233;src:url('chunks/assets/font_99f139a592096fd3705eaea6.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00233;src:url('chunks/assets/font_3bb2b04aa971ad17b6acacd4.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;line-height:1.568848;font-style:normal;font-weight:normal;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_b1ab2f4d5313005e2b752637.woff2')format("woff");}.ff4_c00233{font-family:ff4_c00233;line-height:1.480469;font-style:normal;font-weight:normal;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_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff5_c00233{font-family:ff5_c00233;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00233;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00233{font-family:ff6_c00233;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00233{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00233{vertical-align:0.000000px;}
.ls4_c00233{letter-spacing:0.000000px;}
.ls0_c00233{letter-spacing:2.802000px;}
.ls1_c00233{letter-spacing:3.000000px;}
.ls2_c00233{letter-spacing:6.000000px;}
.ls3_c00233{letter-spacing:17.448000px;}
.sc__c00233{text-shadow:none;}
.sc0_c00233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00233{-webkit-text-stroke:0px transparent;}
.sc0_c00233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00233{word-spacing:-20.352000px;}
.ws0_c00233{word-spacing:-17.352000px;}
.ws2_c00233{word-spacing:0.000000px;}
._15_c00233{margin-left:-28.416000px;}
._e_c00233{margin-left:-21.384000px;}
._c_c00233{margin-left:-20.304000px;}
._1b_c00233{margin-left:-17.616000px;}
._1c_c00233{margin-left:-9.360000px;}
._16_c00233{margin-left:-8.208000px;}
._9_c00233{margin-left:-6.840000px;}
._14_c00233{margin-left:-5.466000px;}
._5_c00233{margin-left:-4.200000px;}
._11_c00233{margin-left:-3.192000px;}
._8_c00233{margin-left:-2.166000px;}
._b_c00233{margin-left:-1.074000px;}
._4_c00233{width:1.848000px;}
._19_c00233{width:2.856000px;}
._3_c00233{width:3.864000px;}
._6_c00233{width:5.040000px;}
._7_c00233{width:7.014000px;}
._1f_c00233{width:9.102000px;}
._13_c00233{width:10.320000px;}
._a_c00233{width:13.782000px;}
._1a_c00233{width:15.648000px;}
._12_c00233{width:16.722000px;}
._1d_c00233{width:19.656000px;}
._1_c00233{width:20.736000px;}
._17_c00233{width:22.848000px;}
._18_c00233{width:25.872000px;}
._1e_c00233{width:28.164000px;}
._0_c00233{width:45.117000px;}
._f_c00233{width:80.136000px;}
._10_c00233{width:120.762000px;}
._d_c00233{width:174.024000px;}
._2_c00233{width:330.156000px;}
.fc2_c00233{color:transparent;}
.fc1_c00233{color:rgb(128,128,128);}
.fc0_c00233{color:rgb(0,0,0);}
.fs6_c00233{font-size:48.000000px;}
.fs4_c00233{font-size:54.000000px;}
.fs5_c00233{font-size:69.000000px;}
.fs3_c00233{font-size:72.000000px;}
.fs2_c00233{font-size:78.000000px;}
.fs0_c00233{font-size:81.000000px;}
.fs1_c00233{font-size:84.000000px;}
.y0_c00233{bottom:0.000000px;}
.y1f_c00233{bottom:3.105000px;}
.y1e_c00233{bottom:7.228357px;}
.y1d_c00233{bottom:53.430000px;}
.y1c_c00233{bottom:76.680000px;}
.y1b_c00233{bottom:104.280000px;}
.y1a_c00233{bottom:126.930000px;}
.y19_c00233{bottom:151.980000px;}
.y18_c00233{bottom:178.230000px;}
.y17_c00233{bottom:202.230000px;}
.y16_c00233{bottom:226.830000px;}
.y15_c00233{bottom:251.130000px;}
.y14_c00233{bottom:275.430000px;}
.y13_c00233{bottom:301.380000px;}
.y12_c00233{bottom:324.780000px;}
.y11_c00233{bottom:348.330000px;}
.y10_c00233{bottom:372.630000px;}
.yf_c00233{bottom:397.980000px;}
.ye_c00233{bottom:421.230000px;}
.yd_c00233{bottom:445.530000px;}
.yc_c00233{bottom:470.430000px;}
.yb_c00233{bottom:494.880000px;}
.ya_c00233{bottom:519.180000px;}
.y9_c00233{bottom:543.480000px;}
.y8_c00233{bottom:566.430000px;}
.y7_c00233{bottom:592.380000px;}
.y6_c00233{bottom:616.230000px;}
.y5_c00233{bottom:640.530000px;}
.y4_c00233{bottom:665.580000px;}
.y3_c00233{bottom:690.480000px;}
.y2_c00233{bottom:715.530000px;}
.y1_c00233{bottom:740.580000px;}
.h5_c00233{height:13.200074px;}
.h6_c00233{height:43.804688px;}
.h2_c00233{height:82.400391px;}
.h4_c00233{height:91.160156px;}
.h3_c00233{height:98.756836px;}
.h1_c00233{height:783.000000px;}
.h0_c00233{height:783.300000px;}
.w2_c00233{width:104.875500px;}
.w0_c00233{width:511.950000px;}
.w1_c00233{width:512.250000px;}
.x0_c00233{left:0.000000px;}
.x5_c00233{left:32.400000px;}
.xb_c00233{left:40.200000px;}
.x4_c00233{left:58.350000px;}
.x7_c00233{left:103.950000px;}
.x3_c00233{left:110.100000px;}
.x2_c00233{left:111.150000px;}
.x8_c00233{left:112.350000px;}
.x9_c00233{left:113.400000px;}
.x6_c00233{left:114.450000px;}
.x1_c00233{left:116.400000px;}
.xa_c00233{left:117.450000px;}
.xd_c00233{left:207.789230px;}
.xc_c00233{left:462.750000px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls4_c00233{letter-spacing:0.000000pt;}
.ls0_c00233{letter-spacing:2.490667pt;}
.ls1_c00233{letter-spacing:2.666667pt;}
.ls2_c00233{letter-spacing:5.333333pt;}
.ls3_c00233{letter-spacing:15.509333pt;}
.ws1_c00233{word-spacing:-18.090667pt;}
.ws0_c00233{word-spacing:-15.424000pt;}
.ws2_c00233{word-spacing:0.000000pt;}
._15_c00233{margin-left:-25.258667pt;}
._e_c00233{margin-left:-19.008000pt;}
._c_c00233{margin-left:-18.048000pt;}
._1b_c00233{margin-left:-15.658667pt;}
._1c_c00233{margin-left:-8.320000pt;}
._16_c00233{margin-left:-7.296000pt;}
._9_c00233{margin-left:-6.080000pt;}
._14_c00233{margin-left:-4.858667pt;}
._5_c00233{margin-left:-3.733333pt;}
._11_c00233{margin-left:-2.837333pt;}
._8_c00233{margin-left:-1.925333pt;}
._b_c00233{margin-left:-0.954667pt;}
._4_c00233{width:1.642667pt;}
._19_c00233{width:2.538667pt;}
._3_c00233{width:3.434667pt;}
._6_c00233{width:4.480000pt;}
._7_c00233{width:6.234667pt;}
._1f_c00233{width:8.090667pt;}
._13_c00233{width:9.173333pt;}
._a_c00233{width:12.250667pt;}
._1a_c00233{width:13.909333pt;}
._12_c00233{width:14.864000pt;}
._1d_c00233{width:17.472000pt;}
._1_c00233{width:18.432000pt;}
._17_c00233{width:20.309333pt;}
._18_c00233{width:22.997333pt;}
._1e_c00233{width:25.034667pt;}
._0_c00233{width:40.104000pt;}
._f_c00233{width:71.232000pt;}
._10_c00233{width:107.344000pt;}
._d_c00233{width:154.688000pt;}
._2_c00233{width:293.472000pt;}
.fs6_c00233{font-size:42.666667pt;}
.fs4_c00233{font-size:48.000000pt;}
.fs5_c00233{font-size:61.333333pt;}
.fs3_c00233{font-size:64.000000pt;}
.fs2_c00233{font-size:69.333333pt;}
.fs0_c00233{font-size:72.000000pt;}
.fs1_c00233{font-size:74.666667pt;}
.y0_c00233{bottom:0.000000pt;}
.y1f_c00233{bottom:2.760000pt;}
.y1e_c00233{bottom:6.425206pt;}
.y1d_c00233{bottom:47.493333pt;}
.y1c_c00233{bottom:68.160000pt;}
.y1b_c00233{bottom:92.693333pt;}
.y1a_c00233{bottom:112.826667pt;}
.y19_c00233{bottom:135.093333pt;}
.y18_c00233{bottom:158.426667pt;}
.y17_c00233{bottom:179.760000pt;}
.y16_c00233{bottom:201.626667pt;}
.y15_c00233{bottom:223.226667pt;}
.y14_c00233{bottom:244.826667pt;}
.y13_c00233{bottom:267.893333pt;}
.y12_c00233{bottom:288.693333pt;}
.y11_c00233{bottom:309.626667pt;}
.y10_c00233{bottom:331.226667pt;}
.yf_c00233{bottom:353.760000pt;}
.ye_c00233{bottom:374.426667pt;}
.yd_c00233{bottom:396.026667pt;}
.yc_c00233{bottom:418.160000pt;}
.yb_c00233{bottom:439.893333pt;}
.ya_c00233{bottom:461.493333pt;}
.y9_c00233{bottom:483.093333pt;}
.y8_c00233{bottom:503.493333pt;}
.y7_c00233{bottom:526.560000pt;}
.y6_c00233{bottom:547.760000pt;}
.y5_c00233{bottom:569.360000pt;}
.y4_c00233{bottom:591.626667pt;}
.y3_c00233{bottom:613.760000pt;}
.y2_c00233{bottom:636.026667pt;}
.y1_c00233{bottom:658.293333pt;}
.h5_c00233{height:11.733399pt;}
.h6_c00233{height:38.937500pt;}
.h2_c00233{height:73.244792pt;}
.h4_c00233{height:81.031250pt;}
.h3_c00233{height:87.783854pt;}
.h1_c00233{height:696.000000pt;}
.h0_c00233{height:696.266667pt;}
.w2_c00233{width:93.222667pt;}
.w0_c00233{width:455.066667pt;}
.w1_c00233{width:455.333333pt;}
.x0_c00233{left:0.000000pt;}
.x5_c00233{left:28.800000pt;}
.xb_c00233{left:35.733333pt;}
.x4_c00233{left:51.866667pt;}
.x7_c00233{left:92.400000pt;}
.x3_c00233{left:97.866667pt;}
.x2_c00233{left:98.800000pt;}
.x8_c00233{left:99.866667pt;}
.x9_c00233{left:100.800000pt;}
.x6_c00233{left:101.733333pt;}
.x1_c00233{left:103.466667pt;}
.xa_c00233{left:104.400000pt;}
.xd_c00233{left:184.701538pt;}
.xc_c00233{left:411.333333pt;}
}





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

.ir_c00234:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00234{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00234;src:url('chunks/assets/font_2d4e9d6038d953c8abe3dec2.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.480469;font-style:normal;font-weight:normal;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_d768e020b02fb4d871665022.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:1.568848;font-style:normal;font-weight:normal;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_96dac06f6a32f897b08c2c42.woff2')format("woff");}.ff3_c00234{font-family:ff3_c00234;line-height:1.575000;font-style:normal;font-weight:normal;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_83deb2ad5ad04e1dcf99f187.woff2')format("woff");}.ff4_c00234{font-family:ff4_c00234;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00234;src:url('chunks/assets/font_efd7637e814e821ab430fc04.woff2')format("woff");}.ff5_c00234{font-family:ff5_c00234;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00234;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00234{font-family:ff6_c00234;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00234{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00234{vertical-align:0.000000px;}
.ls3_c00234{letter-spacing:-9.000000px;}
.ls4_c00234{letter-spacing:-3.000000px;}
.ls2_c00234{letter-spacing:0.000000px;}
.ls1_c00234{letter-spacing:3.000000px;}
.ls0_c00234{letter-spacing:6.000000px;}
.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:-39.000000px;}
.ws0_c00234{word-spacing:-17.352000px;}
.ws3_c00234{word-spacing:-14.352000px;}
.ws2_c00234{word-spacing:-8.352000px;}
.ws4_c00234{word-spacing:0.000000px;}
._15_c00234{margin-left:-15.132000px;}
._13_c00234{margin-left:-12.696000px;}
._0_c00234{margin-left:-10.140000px;}
._3_c00234{margin-left:-8.034000px;}
._1_c00234{margin-left:-6.552000px;}
._14_c00234{margin-left:-5.532000px;}
._2_c00234{margin-left:-4.524000px;}
._a_c00234{margin-left:-3.012000px;}
._9_c00234{margin-left:-1.536000px;}
._8_c00234{width:1.800000px;}
._7_c00234{width:3.168000px;}
._b_c00234{width:4.188000px;}
._c_c00234{width:5.292000px;}
._12_c00234{width:7.056000px;}
._5_c00234{width:8.112000px;}
._6_c00234{width:9.516000px;}
._e_c00234{width:11.022000px;}
._f_c00234{width:12.096000px;}
._11_c00234{width:14.016000px;}
._d_c00234{width:15.468000px;}
._17_c00234{width:27.576000px;}
._16_c00234{width:59.142000px;}
._18_c00234{width:190.512000px;}
._10_c00234{width:272.604000px;}
._4_c00234{width:317.538000px;}
.fc2_c00234{color:transparent;}
.fc1_c00234{color:rgb(128,128,128);}
.fc0_c00234{color:rgb(0,0,0);}
.fs3_c00234{font-size:48.000000px;}
.fs2_c00234{font-size:63.000000px;}
.fs1_c00234{font-size:72.000000px;}
.fs0_c00234{font-size:78.000000px;}
.y0_c00234{bottom:0.000000px;}
.y1f_c00234{bottom:3.105000px;}
.y1e_c00234{bottom:7.228363px;}
.y1d_c00234{bottom:57.450000px;}
.y1c_c00234{bottom:83.700000px;}
.y1b_c00234{bottom:110.400000px;}
.y1a_c00234{bottom:135.450000px;}
.y19_c00234{bottom:160.650000px;}
.y18_c00234{bottom:185.700000px;}
.y17_c00234{bottom:211.050000px;}
.y16_c00234{bottom:235.650000px;}
.y15_c00234{bottom:260.550000px;}
.y14_c00234{bottom:285.600000px;}
.y13_c00234{bottom:308.850000px;}
.y12_c00234{bottom:331.050000px;}
.y11_c00234{bottom:355.050000px;}
.y10_c00234{bottom:379.650000px;}
.yf_c00234{bottom:404.700000px;}
.ye_c00234{bottom:429.750000px;}
.yd_c00234{bottom:454.950000px;}
.yc_c00234{bottom:478.950000px;}
.yb_c00234{bottom:504.300000px;}
.ya_c00234{bottom:528.300000px;}
.y9_c00234{bottom:553.500000px;}
.y8_c00234{bottom:579.150000px;}
.y7_c00234{bottom:602.100000px;}
.y6_c00234{bottom:628.800000px;}
.y5_c00234{bottom:652.350000px;}
.y4_c00234{bottom:675.750000px;}
.y3_c00234{bottom:700.050000px;}
.y2_c00234{bottom:725.400000px;}
.y1_c00234{bottom:750.300000px;}
.h5_c00234{height:13.200074px;}
.h6_c00234{height:43.804688px;}
.h4_c00234{height:84.269531px;}
.h3_c00234{height:91.160156px;}
.h2_c00234{height:91.291992px;}
.h0_c00234{height:791.100000px;}
.h1_c00234{height:791.250000px;}
.w2_c00234{width:104.875500px;}
.w0_c00234{width:528.675000px;}
.w1_c00234{width:528.750000px;}
.x0_c00234{left:0.000000px;}
.x5_c00234{left:27.300000px;}
.x3_c00234{left:28.350000px;}
.x2_c00234{left:29.400000px;}
.x4_c00234{left:31.050000px;}
.x1_c00234{left:149.400000px;}
.x7_c00234{left:216.151749px;}
.x6_c00234{left:324.300000px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls3_c00234{letter-spacing:-8.000000pt;}
.ls4_c00234{letter-spacing:-2.666667pt;}
.ls2_c00234{letter-spacing:0.000000pt;}
.ls1_c00234{letter-spacing:2.666667pt;}
.ls0_c00234{letter-spacing:5.333333pt;}
.ws1_c00234{word-spacing:-34.666667pt;}
.ws0_c00234{word-spacing:-15.424000pt;}
.ws3_c00234{word-spacing:-12.757333pt;}
.ws2_c00234{word-spacing:-7.424000pt;}
.ws4_c00234{word-spacing:0.000000pt;}
._15_c00234{margin-left:-13.450667pt;}
._13_c00234{margin-left:-11.285333pt;}
._0_c00234{margin-left:-9.013333pt;}
._3_c00234{margin-left:-7.141333pt;}
._1_c00234{margin-left:-5.824000pt;}
._14_c00234{margin-left:-4.917333pt;}
._2_c00234{margin-left:-4.021333pt;}
._a_c00234{margin-left:-2.677333pt;}
._9_c00234{margin-left:-1.365333pt;}
._8_c00234{width:1.600000pt;}
._7_c00234{width:2.816000pt;}
._b_c00234{width:3.722667pt;}
._c_c00234{width:4.704000pt;}
._12_c00234{width:6.272000pt;}
._5_c00234{width:7.210667pt;}
._6_c00234{width:8.458667pt;}
._e_c00234{width:9.797333pt;}
._f_c00234{width:10.752000pt;}
._11_c00234{width:12.458667pt;}
._d_c00234{width:13.749333pt;}
._17_c00234{width:24.512000pt;}
._16_c00234{width:52.570667pt;}
._18_c00234{width:169.344000pt;}
._10_c00234{width:242.314667pt;}
._4_c00234{width:282.256000pt;}
.fs3_c00234{font-size:42.666667pt;}
.fs2_c00234{font-size:56.000000pt;}
.fs1_c00234{font-size:64.000000pt;}
.fs0_c00234{font-size:69.333333pt;}
.y0_c00234{bottom:0.000000pt;}
.y1f_c00234{bottom:2.760000pt;}
.y1e_c00234{bottom:6.425212pt;}
.y1d_c00234{bottom:51.066667pt;}
.y1c_c00234{bottom:74.400000pt;}
.y1b_c00234{bottom:98.133333pt;}
.y1a_c00234{bottom:120.400000pt;}
.y19_c00234{bottom:142.800000pt;}
.y18_c00234{bottom:165.066667pt;}
.y17_c00234{bottom:187.600000pt;}
.y16_c00234{bottom:209.466667pt;}
.y15_c00234{bottom:231.600000pt;}
.y14_c00234{bottom:253.866667pt;}
.y13_c00234{bottom:274.533333pt;}
.y12_c00234{bottom:294.266667pt;}
.y11_c00234{bottom:315.600000pt;}
.y10_c00234{bottom:337.466667pt;}
.yf_c00234{bottom:359.733333pt;}
.ye_c00234{bottom:382.000000pt;}
.yd_c00234{bottom:404.400000pt;}
.yc_c00234{bottom:425.733333pt;}
.yb_c00234{bottom:448.266667pt;}
.ya_c00234{bottom:469.600000pt;}
.y9_c00234{bottom:492.000000pt;}
.y8_c00234{bottom:514.800000pt;}
.y7_c00234{bottom:535.200000pt;}
.y6_c00234{bottom:558.933333pt;}
.y5_c00234{bottom:579.866667pt;}
.y4_c00234{bottom:600.666667pt;}
.y3_c00234{bottom:622.266667pt;}
.y2_c00234{bottom:644.800000pt;}
.y1_c00234{bottom:666.933333pt;}
.h5_c00234{height:11.733399pt;}
.h6_c00234{height:38.937500pt;}
.h4_c00234{height:74.906250pt;}
.h3_c00234{height:81.031250pt;}
.h2_c00234{height:81.148438pt;}
.h0_c00234{height:703.200000pt;}
.h1_c00234{height:703.333333pt;}
.w2_c00234{width:93.222667pt;}
.w0_c00234{width:469.933333pt;}
.w1_c00234{width:470.000000pt;}
.x0_c00234{left:0.000000pt;}
.x5_c00234{left:24.266667pt;}
.x3_c00234{left:25.200000pt;}
.x2_c00234{left:26.133333pt;}
.x4_c00234{left:27.600000pt;}
.x1_c00234{left:132.800000pt;}
.x7_c00234{left:192.134888pt;}
.x6_c00234{left:288.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a1e226b6ad57825de79b19cb.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00235;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00235;src:url('chunks/assets/font_50120f1ab8f3be3e7c29ff35.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:1.568848;font-style:normal;font-weight:normal;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_edd2bc82ffd81ae5ce24885e.woff2')format("woff");}.ff4_c00235{font-family:ff4_c00235;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00235;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00235{font-family:ff5_c00235;line-height:1.219238;font-style: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;}
.ls4_c00235{letter-spacing:-3.000000px;}
.ls1_c00235{letter-spacing:0.000000px;}
.ls2_c00235{letter-spacing:3.000000px;}
.ls3_c00235{letter-spacing:6.000000px;}
.ls0_c00235{letter-spacing:16.881000px;}
.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:-42.000000px;}
.ws1_c00235{word-spacing:-14.352000px;}
.ws2_c00235{word-spacing:0.000000px;}
._1a_c00235{margin-left:-11.928000px;}
._c_c00235{margin-left:-10.296000px;}
._18_c00235{margin-left:-8.256000px;}
._4_c00235{margin-left:-5.976000px;}
._a_c00235{margin-left:-4.224000px;}
._3_c00235{margin-left:-2.952000px;}
._9_c00235{margin-left:-1.632000px;}
._5_c00235{width:1.128000px;}
._0_c00235{width:2.184000px;}
._2_c00235{width:3.528000px;}
._1_c00235{width:4.704000px;}
._b_c00235{width:5.736000px;}
._11_c00235{width:7.608000px;}
._10_c00235{width:9.072000px;}
._7_c00235{width:10.584000px;}
._12_c00235{width:11.592000px;}
._f_c00235{width:12.600000px;}
._8_c00235{width:14.376000px;}
._d_c00235{width:15.528000px;}
._6_c00235{width:17.184000px;}
._e_c00235{width:18.576000px;}
._19_c00235{width:22.176000px;}
._15_c00235{width:23.328000px;}
._17_c00235{width:24.432000px;}
._13_c00235{width:25.752000px;}
._16_c00235{width:27.432000px;}
._14_c00235{width:28.704000px;}
.fc2_c00235{color:transparent;}
.fc1_c00235{color:rgb(128,128,128);}
.fc0_c00235{color:rgb(0,0,0);}
.fs4_c00235{font-size:24.000000px;}
.fs2_c00235{font-size:39.000000px;}
.fs5_c00235{font-size:48.000000px;}
.fs3_c00235{font-size:63.000000px;}
.fs1_c00235{font-size:72.000000px;}
.fs0_c00235{font-size:84.000000px;}
.y0_c00235{bottom:0.000000px;}
.y1e_c00235{bottom:3.105000px;}
.y1d_c00235{bottom:7.228369px;}
.y1c_c00235{bottom:83.670000px;}
.y1b_c00235{bottom:108.720000px;}
.y1a_c00235{bottom:135.570000px;}
.y19_c00235{bottom:159.570000px;}
.y18_c00235{bottom:185.520000px;}
.y17_c00235{bottom:210.870000px;}
.y16_c00235{bottom:235.470000px;}
.y15_c00235{bottom:259.770000px;}
.y14_c00235{bottom:284.070000px;}
.y13_c00235{bottom:308.820000px;}
.y12_c00235{bottom:333.720000px;}
.y11_c00235{bottom:358.770000px;}
.y10_c00235{bottom:382.770000px;}
.yf_c00235{bottom:408.420000px;}
.ye_c00235{bottom:430.920000px;}
.yd_c00235{bottom:456.570000px;}
.yc_c00235{bottom:480.870000px;}
.yb_c00235{bottom:505.170000px;}
.ya_c00235{bottom:529.920000px;}
.y9_c00235{bottom:554.220000px;}
.y8_c00235{bottom:579.120000px;}
.y7_c00235{bottom:603.720000px;}
.y6_c00235{bottom:628.320000px;}
.y5_c00235{bottom:652.620000px;}
.y4_c00235{bottom:677.070000px;}
.y3_c00235{bottom:702.270000px;}
.y2_c00235{bottom:725.970000px;}
.y1_c00235{bottom:752.220000px;}
.h3_c00235{height:13.200073px;}
.h4_c00235{height:43.804688px;}
.h1_c00235{height:82.441406px;}
.h2_c00235{height:91.160156px;}
.h0_c00235{height:786.750000px;}
.w2_c00235{width:104.875500px;}
.w0_c00235{width:531.375000px;}
.w1_c00235{width:531.750000px;}
.x0_c00235{left:0.000000px;}
.x6_c00235{left:107.700000px;}
.x2_c00235{left:113.100000px;}
.x3_c00235{left:114.150000px;}
.x4_c00235{left:115.800000px;}
.x5_c00235{left:117.000000px;}
.x7_c00235{left:217.501740px;}
.x1_c00235{left:224.400000px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls4_c00235{letter-spacing:-2.666667pt;}
.ls1_c00235{letter-spacing:0.000000pt;}
.ls2_c00235{letter-spacing:2.666667pt;}
.ls3_c00235{letter-spacing:5.333333pt;}
.ls0_c00235{letter-spacing:15.005333pt;}
.ws0_c00235{word-spacing:-37.333333pt;}
.ws1_c00235{word-spacing:-12.757333pt;}
.ws2_c00235{word-spacing:0.000000pt;}
._1a_c00235{margin-left:-10.602667pt;}
._c_c00235{margin-left:-9.152000pt;}
._18_c00235{margin-left:-7.338667pt;}
._4_c00235{margin-left:-5.312000pt;}
._a_c00235{margin-left:-3.754667pt;}
._3_c00235{margin-left:-2.624000pt;}
._9_c00235{margin-left:-1.450667pt;}
._5_c00235{width:1.002667pt;}
._0_c00235{width:1.941333pt;}
._2_c00235{width:3.136000pt;}
._1_c00235{width:4.181333pt;}
._b_c00235{width:5.098667pt;}
._11_c00235{width:6.762667pt;}
._10_c00235{width:8.064000pt;}
._7_c00235{width:9.408000pt;}
._12_c00235{width:10.304000pt;}
._f_c00235{width:11.200000pt;}
._8_c00235{width:12.778667pt;}
._d_c00235{width:13.802667pt;}
._6_c00235{width:15.274667pt;}
._e_c00235{width:16.512000pt;}
._19_c00235{width:19.712000pt;}
._15_c00235{width:20.736000pt;}
._17_c00235{width:21.717333pt;}
._13_c00235{width:22.890667pt;}
._16_c00235{width:24.384000pt;}
._14_c00235{width:25.514667pt;}
.fs4_c00235{font-size:21.333333pt;}
.fs2_c00235{font-size:34.666667pt;}
.fs5_c00235{font-size:42.666667pt;}
.fs3_c00235{font-size:56.000000pt;}
.fs1_c00235{font-size:64.000000pt;}
.fs0_c00235{font-size:74.666667pt;}
.y0_c00235{bottom:0.000000pt;}
.y1e_c00235{bottom:2.760000pt;}
.y1d_c00235{bottom:6.425217pt;}
.y1c_c00235{bottom:74.373333pt;}
.y1b_c00235{bottom:96.640000pt;}
.y1a_c00235{bottom:120.506667pt;}
.y19_c00235{bottom:141.840000pt;}
.y18_c00235{bottom:164.906667pt;}
.y17_c00235{bottom:187.440000pt;}
.y16_c00235{bottom:209.306667pt;}
.y15_c00235{bottom:230.906667pt;}
.y14_c00235{bottom:252.506667pt;}
.y13_c00235{bottom:274.506667pt;}
.y12_c00235{bottom:296.640000pt;}
.y11_c00235{bottom:318.906667pt;}
.y10_c00235{bottom:340.240000pt;}
.yf_c00235{bottom:363.040000pt;}
.ye_c00235{bottom:383.040000pt;}
.yd_c00235{bottom:405.840000pt;}
.yc_c00235{bottom:427.440000pt;}
.yb_c00235{bottom:449.040000pt;}
.ya_c00235{bottom:471.040000pt;}
.y9_c00235{bottom:492.640000pt;}
.y8_c00235{bottom:514.773333pt;}
.y7_c00235{bottom:536.640000pt;}
.y6_c00235{bottom:558.506667pt;}
.y5_c00235{bottom:580.106667pt;}
.y4_c00235{bottom:601.840000pt;}
.y3_c00235{bottom:624.240000pt;}
.y2_c00235{bottom:645.306667pt;}
.y1_c00235{bottom:668.640000pt;}
.h3_c00235{height:11.733399pt;}
.h4_c00235{height:38.937500pt;}
.h1_c00235{height:73.281250pt;}
.h2_c00235{height:81.031250pt;}
.h0_c00235{height:699.333333pt;}
.w2_c00235{width:93.222667pt;}
.w0_c00235{width:472.333333pt;}
.w1_c00235{width:472.666667pt;}
.x0_c00235{left:0.000000pt;}
.x6_c00235{left:95.733333pt;}
.x2_c00235{left:100.533333pt;}
.x3_c00235{left:101.466667pt;}
.x4_c00235{left:102.933333pt;}
.x5_c00235{left:104.000000pt;}
.x7_c00235{left:193.334880pt;}
.x1_c00235{left:199.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0abd81dc0323b6e93763b986.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00236;src:url('chunks/assets/font_90c16dfddf83ab91cb18113d.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00236;src:url('chunks/assets/font_4e807d8c16c67794cd4eaf74.woff2')format("woff");}.ff3_c00236{font-family:ff3_c00236;line-height:1.568848;font-style:normal;font-weight:normal;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_f0c5b7e50c75a7d3b2e5cd3f.woff2')format("woff");}.ff4_c00236{font-family:ff4_c00236;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00236;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00236{font-family:ff5_c00236;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00236{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00236{vertical-align:0.000000px;}
.ls0_c00236{letter-spacing:0.000000px;}
.ls1_c00236{letter-spacing:3.000000px;}
.sc__c00236{text-shadow:none;}
.sc0_c00236{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00236{-webkit-text-stroke:0px transparent;}
.sc0_c00236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00236{word-spacing:-33.192000px;}
.ws2_c00236{word-spacing:0.000000px;}
.ws1_c00236{word-spacing:0.138000px;}
._18_c00236{margin-left:-10.908000px;}
._2_c00236{margin-left:-8.988000px;}
._8_c00236{margin-left:-6.015000px;}
._c_c00236{margin-left:-4.032000px;}
._d_c00236{margin-left:-2.784000px;}
._5_c00236{margin-left:-1.512000px;}
._3_c00236{width:1.260000px;}
._4_c00236{width:2.352000px;}
._6_c00236{width:3.696000px;}
._f_c00236{width:5.268000px;}
._15_c00236{width:6.372000px;}
._1_c00236{width:7.392000px;}
._b_c00236{width:9.144000px;}
._9_c00236{width:10.992000px;}
._0_c00236{width:12.264000px;}
._e_c00236{width:14.076000px;}
._14_c00236{width:15.120000px;}
._19_c00236{width:16.125000px;}
._a_c00236{width:17.136000px;}
._16_c00236{width:18.276000px;}
._13_c00236{width:21.912000px;}
._10_c00236{width:25.560000px;}
._11_c00236{width:26.895000px;}
._17_c00236{width:32.112000px;}
._1a_c00236{width:288.168000px;}
._12_c00236{width:335.508000px;}
._7_c00236{width:348.498000px;}
.fc2_c00236{color:transparent;}
.fc1_c00236{color:rgb(128,128,128);}
.fc0_c00236{color:rgb(0,0,0);}
.fs4_c00236{font-size:48.000000px;}
.fs3_c00236{font-size:69.000000px;}
.fs2_c00236{font-size:72.000000px;}
.fs1_c00236{font-size:81.000000px;}
.fs0_c00236{font-size:84.000000px;}
.y0_c00236{bottom:0.000000px;}
.y1f_c00236{bottom:3.105000px;}
.y1e_c00236{bottom:7.228357px;}
.y1d_c00236{bottom:44.580000px;}
.y1c_c00236{bottom:70.230000px;}
.y1b_c00236{bottom:96.180000px;}
.y1a_c00236{bottom:120.930000px;}
.y19_c00236{bottom:146.430000px;}
.y18_c00236{bottom:171.480000px;}
.y17_c00236{bottom:196.080000px;}
.y16_c00236{bottom:221.430000px;}
.y15_c00236{bottom:246.330000px;}
.y14_c00236{bottom:271.680000px;}
.y13_c00236{bottom:295.380000px;}
.y12_c00236{bottom:317.280000px;}
.y11_c00236{bottom:341.280000px;}
.y10_c00236{bottom:366.480000px;}
.yf_c00236{bottom:390.780000px;}
.ye_c00236{bottom:415.530000px;}
.yd_c00236{bottom:440.130000px;}
.yc_c00236{bottom:465.030000px;}
.yb_c00236{bottom:489.330000px;}
.ya_c00236{bottom:514.380000px;}
.y9_c00236{bottom:538.680000px;}
.y8_c00236{bottom:563.580000px;}
.y7_c00236{bottom:588.030000px;}
.y6_c00236{bottom:612.630000px;}
.y5_c00236{bottom:636.930000px;}
.y4_c00236{bottom:662.280000px;}
.y3_c00236{bottom:686.580000px;}
.y2_c00236{bottom:710.730000px;}
.y1_c00236{bottom:735.780000px;}
.h4_c00236{height:13.200074px;}
.h5_c00236{height:43.804688px;}
.h2_c00236{height:82.400391px;}
.h3_c00236{height:91.160156px;}
.h1_c00236{height:784.500000px;}
.h0_c00236{height:784.650000px;}
.w2_c00236{width:104.875500px;}
.w0_c00236{width:530.025000px;}
.w1_c00236{width:530.250000px;}
.x0_c00236{left:0.000000px;}
.x7_c00236{left:33.750000px;}
.x6_c00236{left:34.800000px;}
.x5_c00236{left:36.450000px;}
.x4_c00236{left:37.500000px;}
.x3_c00236{left:38.700000px;}
.x2_c00236{left:39.750000px;}
.x1_c00236{left:152.850000px;}
.x9_c00236{left:216.826767px;}
.x8_c00236{left:257.250000px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls0_c00236{letter-spacing:0.000000pt;}
.ls1_c00236{letter-spacing:2.666667pt;}
.ws0_c00236{word-spacing:-29.504000pt;}
.ws2_c00236{word-spacing:0.000000pt;}
.ws1_c00236{word-spacing:0.122667pt;}
._18_c00236{margin-left:-9.696000pt;}
._2_c00236{margin-left:-7.989333pt;}
._8_c00236{margin-left:-5.346667pt;}
._c_c00236{margin-left:-3.584000pt;}
._d_c00236{margin-left:-2.474667pt;}
._5_c00236{margin-left:-1.344000pt;}
._3_c00236{width:1.120000pt;}
._4_c00236{width:2.090667pt;}
._6_c00236{width:3.285333pt;}
._f_c00236{width:4.682667pt;}
._15_c00236{width:5.664000pt;}
._1_c00236{width:6.570667pt;}
._b_c00236{width:8.128000pt;}
._9_c00236{width:9.770667pt;}
._0_c00236{width:10.901333pt;}
._e_c00236{width:12.512000pt;}
._14_c00236{width:13.440000pt;}
._19_c00236{width:14.333333pt;}
._a_c00236{width:15.232000pt;}
._16_c00236{width:16.245333pt;}
._13_c00236{width:19.477333pt;}
._10_c00236{width:22.720000pt;}
._11_c00236{width:23.906667pt;}
._17_c00236{width:28.544000pt;}
._1a_c00236{width:256.149333pt;}
._12_c00236{width:298.229333pt;}
._7_c00236{width:309.776000pt;}
.fs4_c00236{font-size:42.666667pt;}
.fs3_c00236{font-size:61.333333pt;}
.fs2_c00236{font-size:64.000000pt;}
.fs1_c00236{font-size:72.000000pt;}
.fs0_c00236{font-size:74.666667pt;}
.y0_c00236{bottom:0.000000pt;}
.y1f_c00236{bottom:2.760000pt;}
.y1e_c00236{bottom:6.425206pt;}
.y1d_c00236{bottom:39.626667pt;}
.y1c_c00236{bottom:62.426667pt;}
.y1b_c00236{bottom:85.493333pt;}
.y1a_c00236{bottom:107.493333pt;}
.y19_c00236{bottom:130.160000pt;}
.y18_c00236{bottom:152.426667pt;}
.y17_c00236{bottom:174.293333pt;}
.y16_c00236{bottom:196.826667pt;}
.y15_c00236{bottom:218.960000pt;}
.y14_c00236{bottom:241.493333pt;}
.y13_c00236{bottom:262.560000pt;}
.y12_c00236{bottom:282.026667pt;}
.y11_c00236{bottom:303.360000pt;}
.y10_c00236{bottom:325.760000pt;}
.yf_c00236{bottom:347.360000pt;}
.ye_c00236{bottom:369.360000pt;}
.yd_c00236{bottom:391.226667pt;}
.yc_c00236{bottom:413.360000pt;}
.yb_c00236{bottom:434.960000pt;}
.ya_c00236{bottom:457.226667pt;}
.y9_c00236{bottom:478.826667pt;}
.y8_c00236{bottom:500.960000pt;}
.y7_c00236{bottom:522.693333pt;}
.y6_c00236{bottom:544.560000pt;}
.y5_c00236{bottom:566.160000pt;}
.y4_c00236{bottom:588.693333pt;}
.y3_c00236{bottom:610.293333pt;}
.y2_c00236{bottom:631.760000pt;}
.y1_c00236{bottom:654.026667pt;}
.h4_c00236{height:11.733399pt;}
.h5_c00236{height:38.937500pt;}
.h2_c00236{height:73.244792pt;}
.h3_c00236{height:81.031250pt;}
.h1_c00236{height:697.333333pt;}
.h0_c00236{height:697.466667pt;}
.w2_c00236{width:93.222667pt;}
.w0_c00236{width:471.133333pt;}
.w1_c00236{width:471.333333pt;}
.x0_c00236{left:0.000000pt;}
.x7_c00236{left:30.000000pt;}
.x6_c00236{left:30.933333pt;}
.x5_c00236{left:32.400000pt;}
.x4_c00236{left:33.333333pt;}
.x3_c00236{left:34.400000pt;}
.x2_c00236{left:35.333333pt;}
.x1_c00236{left:135.866667pt;}
.x9_c00236{left:192.734904pt;}
.x8_c00236{left:228.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_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_8df63fd2890f93fbb38e1307.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.480469;font-style:normal;font-weight:normal;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_281ea64f7c34908b41f1b818.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.568848;font-style:normal;font-weight:normal;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_fc98013bed6dd8153c2b71f3.woff2')format("woff");}.ff3_c00237{font-family:ff3_c00237;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00237{font-family:ff4_c00237;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00237{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00237{vertical-align:0.000000px;}
.ls2_c00237{letter-spacing:-3.000000px;}
.ls3_c00237{letter-spacing:0.000000px;}
.ls1_c00237{letter-spacing:3.000000px;}
.ls0_c00237{letter-spacing:6.000000px;}
.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:-20.352000px;}
.ws2_c00237{word-spacing:-17.352000px;}
.ws3_c00237{word-spacing:-14.460000px;}
.ws0_c00237{word-spacing:-6.180000px;}
.ws4_c00237{word-spacing:0.000000px;}
._13_c00237{margin-left:-17.928000px;}
._18_c00237{margin-left:-12.240000px;}
._17_c00237{margin-left:-10.872000px;}
._15_c00237{margin-left:-9.378000px;}
._b_c00237{margin-left:-7.632000px;}
._d_c00237{margin-left:-5.184000px;}
._a_c00237{margin-left:-3.960000px;}
._7_c00237{margin-left:-2.664000px;}
._9_c00237{margin-left:-1.224000px;}
._5_c00237{width:1.872000px;}
._10_c00237{width:3.672000px;}
._f_c00237{width:5.112000px;}
._11_c00237{width:6.720000px;}
._1_c00237{width:8.280000px;}
._6_c00237{width:10.224000px;}
._e_c00237{width:11.952000px;}
._c_c00237{width:13.392000px;}
._14_c00237{width:14.478000px;}
._3_c00237{width:15.900000px;}
._2_c00237{width:17.820000px;}
._4_c00237{width:19.560000px;}
._0_c00237{width:23.460000px;}
._16_c00237{width:24.912000px;}
._8_c00237{width:32.472000px;}
._12_c00237{width:33.984000px;}
.fc2_c00237{color:transparent;}
.fc1_c00237{color:rgb(128,128,128);}
.fc0_c00237{color:rgb(0,0,0);}
.fs3_c00237{font-size:39.000000px;}
.fs4_c00237{font-size:48.000000px;}
.fs2_c00237{font-size:54.000000px;}
.fs0_c00237{font-size:60.000000px;}
.fs1_c00237{font-size:72.000000px;}
.y0_c00237{bottom:0.000000px;}
.y1f_c00237{bottom:3.105000px;}
.y1e_c00237{bottom:7.228355px;}
.y1d_c00237{bottom:52.635000px;}
.y1c_c00237{bottom:76.185000px;}
.y1b_c00237{bottom:101.235000px;}
.y1a_c00237{bottom:126.585000px;}
.y19_c00237{bottom:151.785000px;}
.y18_c00237{bottom:177.885000px;}
.y17_c00237{bottom:200.835000px;}
.y16_c00237{bottom:226.485000px;}
.y15_c00237{bottom:252.435000px;}
.y14_c00237{bottom:275.085000px;}
.y13_c00237{bottom:300.585000px;}
.y12_c00237{bottom:324.585000px;}
.y11_c00237{bottom:350.235000px;}
.y10_c00237{bottom:373.485000px;}
.yf_c00237{bottom:397.485000px;}
.ye_c00237{bottom:422.235000px;}
.yd_c00237{bottom:446.535000px;}
.yc_c00237{bottom:472.035000px;}
.yb_c00237{bottom:494.985000px;}
.ya_c00237{bottom:519.285000px;}
.y9_c00237{bottom:543.735000px;}
.y8_c00237{bottom:568.335000px;}
.y7_c00237{bottom:592.935000px;}
.y6_c00237{bottom:617.535000px;}
.y5_c00237{bottom:641.535000px;}
.y4_c00237{bottom:666.585000px;}
.y3_c00237{bottom:690.885000px;}
.y2_c00237{bottom:715.485000px;}
.y1_c00237{bottom:741.135000px;}
.h4_c00237{height:13.200074px;}
.h5_c00237{height:43.804688px;}
.h2_c00237{height:75.966797px;}
.h3_c00237{height:91.160156px;}
.h0_c00237{height:783.525000px;}
.h1_c00237{height:783.750000px;}
.w2_c00237{width:104.875500px;}
.w0_c00237{width:515.700000px;}
.w1_c00237{width:516.000000px;}
.x0_c00237{left:0.000000px;}
.x2_c00237{left:93.600000px;}
.x4_c00237{left:95.550000px;}
.x5_c00237{left:96.900000px;}
.x7_c00237{left:97.950000px;}
.x8_c00237{left:99.450000px;}
.x9_c00237{left:100.800000px;}
.x6_c00237{left:102.000000px;}
.x3_c00237{left:168.450000px;}
.xb_c00237{left:209.664230px;}
.x1_c00237{left:214.950000px;}
.xa_c00237{left:422.850000px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls2_c00237{letter-spacing:-2.666667pt;}
.ls3_c00237{letter-spacing:0.000000pt;}
.ls1_c00237{letter-spacing:2.666667pt;}
.ls0_c00237{letter-spacing:5.333333pt;}
.ws1_c00237{word-spacing:-18.090667pt;}
.ws2_c00237{word-spacing:-15.424000pt;}
.ws3_c00237{word-spacing:-12.853333pt;}
.ws0_c00237{word-spacing:-5.493333pt;}
.ws4_c00237{word-spacing:0.000000pt;}
._13_c00237{margin-left:-15.936000pt;}
._18_c00237{margin-left:-10.880000pt;}
._17_c00237{margin-left:-9.664000pt;}
._15_c00237{margin-left:-8.336000pt;}
._b_c00237{margin-left:-6.784000pt;}
._d_c00237{margin-left:-4.608000pt;}
._a_c00237{margin-left:-3.520000pt;}
._7_c00237{margin-left:-2.368000pt;}
._9_c00237{margin-left:-1.088000pt;}
._5_c00237{width:1.664000pt;}
._10_c00237{width:3.264000pt;}
._f_c00237{width:4.544000pt;}
._11_c00237{width:5.973333pt;}
._1_c00237{width:7.360000pt;}
._6_c00237{width:9.088000pt;}
._e_c00237{width:10.624000pt;}
._c_c00237{width:11.904000pt;}
._14_c00237{width:12.869333pt;}
._3_c00237{width:14.133333pt;}
._2_c00237{width:15.840000pt;}
._4_c00237{width:17.386667pt;}
._0_c00237{width:20.853333pt;}
._16_c00237{width:22.144000pt;}
._8_c00237{width:28.864000pt;}
._12_c00237{width:30.208000pt;}
.fs3_c00237{font-size:34.666667pt;}
.fs4_c00237{font-size:42.666667pt;}
.fs2_c00237{font-size:48.000000pt;}
.fs0_c00237{font-size:53.333333pt;}
.fs1_c00237{font-size:64.000000pt;}
.y0_c00237{bottom:0.000000pt;}
.y1f_c00237{bottom:2.760000pt;}
.y1e_c00237{bottom:6.425204pt;}
.y1d_c00237{bottom:46.786667pt;}
.y1c_c00237{bottom:67.720000pt;}
.y1b_c00237{bottom:89.986667pt;}
.y1a_c00237{bottom:112.520000pt;}
.y19_c00237{bottom:134.920000pt;}
.y18_c00237{bottom:158.120000pt;}
.y17_c00237{bottom:178.520000pt;}
.y16_c00237{bottom:201.320000pt;}
.y15_c00237{bottom:224.386667pt;}
.y14_c00237{bottom:244.520000pt;}
.y13_c00237{bottom:267.186667pt;}
.y12_c00237{bottom:288.520000pt;}
.y11_c00237{bottom:311.320000pt;}
.y10_c00237{bottom:331.986667pt;}
.yf_c00237{bottom:353.320000pt;}
.ye_c00237{bottom:375.320000pt;}
.yd_c00237{bottom:396.920000pt;}
.yc_c00237{bottom:419.586667pt;}
.yb_c00237{bottom:439.986667pt;}
.ya_c00237{bottom:461.586667pt;}
.y9_c00237{bottom:483.320000pt;}
.y8_c00237{bottom:505.186667pt;}
.y7_c00237{bottom:527.053333pt;}
.y6_c00237{bottom:548.920000pt;}
.y5_c00237{bottom:570.253333pt;}
.y4_c00237{bottom:592.520000pt;}
.y3_c00237{bottom:614.120000pt;}
.y2_c00237{bottom:635.986667pt;}
.y1_c00237{bottom:658.786667pt;}
.h4_c00237{height:11.733399pt;}
.h5_c00237{height:38.937500pt;}
.h2_c00237{height:67.526042pt;}
.h3_c00237{height:81.031250pt;}
.h0_c00237{height:696.466667pt;}
.h1_c00237{height:696.666667pt;}
.w2_c00237{width:93.222667pt;}
.w0_c00237{width:458.400000pt;}
.w1_c00237{width:458.666667pt;}
.x0_c00237{left:0.000000pt;}
.x2_c00237{left:83.200000pt;}
.x4_c00237{left:84.933333pt;}
.x5_c00237{left:86.133333pt;}
.x7_c00237{left:87.066667pt;}
.x8_c00237{left:88.400000pt;}
.x9_c00237{left:89.600000pt;}
.x6_c00237{left:90.666667pt;}
.x3_c00237{left:149.733333pt;}
.xb_c00237{left:186.368205pt;}
.x1_c00237{left:191.066667pt;}
.xa_c00237{left:375.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3511d8821f4aa4619d0da683.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.480469;font-style:normal;font-weight:normal;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_c2b4813cd21d4895340174fe.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.592000;font-style:normal;font-weight:normal;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_a07b3152acc01958222cba3c.woff2')format("woff");}.ff3_c00238{font-family:ff3_c00238;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00238{font-family:ff4_c00238;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00238{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00238{vertical-align:0.000000px;}
.ls2_c00238{letter-spacing:-3.000000px;}
.ls1_c00238{letter-spacing:0.000000px;}
.ls3_c00238{letter-spacing:3.000000px;}
.ls4_c00238{letter-spacing:6.000000px;}
.ls0_c00238{letter-spacing:355.371000px;}
.sc__c00238{text-shadow:none;}
.sc0_c00238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00238{-webkit-text-stroke:0px transparent;}
.sc0_c00238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00238{word-spacing:-21.906000px;}
.ws0_c00238{word-spacing:-20.967000px;}
.ws2_c00238{word-spacing:0.000000px;}
._15_c00238{margin-left:-14.409000px;}
._16_c00238{margin-left:-12.519000px;}
._10_c00238{margin-left:-11.160000px;}
._f_c00238{margin-left:-10.071000px;}
._2_c00238{margin-left:-8.997000px;}
._e_c00238{margin-left:-7.074000px;}
._18_c00238{margin-left:-5.865000px;}
._9_c00238{margin-left:-4.815000px;}
._12_c00238{margin-left:-3.696000px;}
._a_c00238{margin-left:-2.304000px;}
._c_c00238{margin-left:-1.158000px;}
._b_c00238{width:1.086000px;}
._1_c00238{width:2.436000px;}
._0_c00238{width:3.567000px;}
._7_c00238{width:5.160000px;}
._11_c00238{width:6.468000px;}
._3_c00238{width:8.460000px;}
._17_c00238{width:9.612000px;}
._6_c00238{width:10.680000px;}
._d_c00238{width:11.946000px;}
._13_c00238{width:13.038000px;}
._8_c00238{width:14.040000px;}
._14_c00238{width:15.057000px;}
._5_c00238{width:21.204000px;}
._4_c00238{width:22.500000px;}
._19_c00238{width:31.245000px;}
._1a_c00238{width:243.459000px;}
.fc2_c00238{color:transparent;}
.fc1_c00238{color:rgb(128,128,128);}
.fc0_c00238{color:rgb(0,0,0);}
.fs5_c00238{font-size:48.000000px;}
.fs1_c00238{font-size:60.000000px;}
.fs4_c00238{font-size:66.000000px;}
.fs2_c00238{font-size:69.000000px;}
.fs3_c00238{font-size:72.000000px;}
.fs0_c00238{font-size:87.000000px;}
.y0_c00238{bottom:0.000000px;}
.y1f_c00238{bottom:3.105000px;}
.y1e_c00238{bottom:7.228355px;}
.y1d_c00238{bottom:48.285000px;}
.y1c_c00238{bottom:77.235000px;}
.y1b_c00238{bottom:102.135000px;}
.y1a_c00238{bottom:127.935000px;}
.y19_c00238{bottom:153.135000px;}
.y18_c00238{bottom:178.185000px;}
.y17_c00238{bottom:202.785000px;}
.y16_c00238{bottom:227.385000px;}
.y15_c00238{bottom:252.135000px;}
.y14_c00238{bottom:275.385000px;}
.y13_c00238{bottom:301.035000px;}
.y12_c00238{bottom:322.935000px;}
.y11_c00238{bottom:347.235000px;}
.y10_c00238{bottom:372.135000px;}
.yf_c00238{bottom:396.585000px;}
.ye_c00238{bottom:421.185000px;}
.yd_c00238{bottom:446.385000px;}
.yc_c00238{bottom:470.685000px;}
.yb_c00238{bottom:495.135000px;}
.ya_c00238{bottom:520.035000px;}
.y9_c00238{bottom:544.335000px;}
.y8_c00238{bottom:569.685000px;}
.y7_c00238{bottom:593.985000px;}
.y6_c00238{bottom:618.285000px;}
.y5_c00238{bottom:642.885000px;}
.y4_c00238{bottom:667.185000px;}
.y3_c00238{bottom:692.235000px;}
.y2_c00238{bottom:716.535000px;}
.y1_c00238{bottom:741.435000px;}
.h4_c00238{height:13.200074px;}
.h5_c00238{height:43.804688px;}
.h3_c00238{height:91.160156px;}
.h2_c00238{height:110.151855px;}
.h0_c00238{height:782.175000px;}
.h1_c00238{height:782.250000px;}
.w2_c00238{width:104.875500px;}
.w0_c00238{width:518.100000px;}
.w1_c00238{width:518.250000px;}
.x0_c00238{left:0.000000px;}
.x7_c00238{left:35.550000px;}
.x6_c00238{left:36.750000px;}
.x5_c00238{left:37.800000px;}
.x4_c00238{left:39.900000px;}
.x3_c00238{left:41.550000px;}
.x2_c00238{left:42.750000px;}
.x1_c00238{left:154.200000px;}
.x9_c00238{left:210.864258px;}
.x8_c00238{left:290.250000px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls2_c00238{letter-spacing:-2.666667pt;}
.ls1_c00238{letter-spacing:0.000000pt;}
.ls3_c00238{letter-spacing:2.666667pt;}
.ls4_c00238{letter-spacing:5.333333pt;}
.ls0_c00238{letter-spacing:315.885333pt;}
.ws1_c00238{word-spacing:-19.472000pt;}
.ws0_c00238{word-spacing:-18.637333pt;}
.ws2_c00238{word-spacing:0.000000pt;}
._15_c00238{margin-left:-12.808000pt;}
._16_c00238{margin-left:-11.128000pt;}
._10_c00238{margin-left:-9.920000pt;}
._f_c00238{margin-left:-8.952000pt;}
._2_c00238{margin-left:-7.997333pt;}
._e_c00238{margin-left:-6.288000pt;}
._18_c00238{margin-left:-5.213333pt;}
._9_c00238{margin-left:-4.280000pt;}
._12_c00238{margin-left:-3.285333pt;}
._a_c00238{margin-left:-2.048000pt;}
._c_c00238{margin-left:-1.029333pt;}
._b_c00238{width:0.965333pt;}
._1_c00238{width:2.165333pt;}
._0_c00238{width:3.170667pt;}
._7_c00238{width:4.586667pt;}
._11_c00238{width:5.749333pt;}
._3_c00238{width:7.520000pt;}
._17_c00238{width:8.544000pt;}
._6_c00238{width:9.493333pt;}
._d_c00238{width:10.618667pt;}
._13_c00238{width:11.589333pt;}
._8_c00238{width:12.480000pt;}
._14_c00238{width:13.384000pt;}
._5_c00238{width:18.848000pt;}
._4_c00238{width:20.000000pt;}
._19_c00238{width:27.773333pt;}
._1a_c00238{width:216.408000pt;}
.fs5_c00238{font-size:42.666667pt;}
.fs1_c00238{font-size:53.333333pt;}
.fs4_c00238{font-size:58.666667pt;}
.fs2_c00238{font-size:61.333333pt;}
.fs3_c00238{font-size:64.000000pt;}
.fs0_c00238{font-size:77.333333pt;}
.y0_c00238{bottom:0.000000pt;}
.y1f_c00238{bottom:2.760000pt;}
.y1e_c00238{bottom:6.425204pt;}
.y1d_c00238{bottom:42.920000pt;}
.y1c_c00238{bottom:68.653333pt;}
.y1b_c00238{bottom:90.786667pt;}
.y1a_c00238{bottom:113.720000pt;}
.y19_c00238{bottom:136.120000pt;}
.y18_c00238{bottom:158.386667pt;}
.y17_c00238{bottom:180.253333pt;}
.y16_c00238{bottom:202.120000pt;}
.y15_c00238{bottom:224.120000pt;}
.y14_c00238{bottom:244.786667pt;}
.y13_c00238{bottom:267.586667pt;}
.y12_c00238{bottom:287.053333pt;}
.y11_c00238{bottom:308.653333pt;}
.y10_c00238{bottom:330.786667pt;}
.yf_c00238{bottom:352.520000pt;}
.ye_c00238{bottom:374.386667pt;}
.yd_c00238{bottom:396.786667pt;}
.yc_c00238{bottom:418.386667pt;}
.yb_c00238{bottom:440.120000pt;}
.ya_c00238{bottom:462.253333pt;}
.y9_c00238{bottom:483.853333pt;}
.y8_c00238{bottom:506.386667pt;}
.y7_c00238{bottom:527.986667pt;}
.y6_c00238{bottom:549.586667pt;}
.y5_c00238{bottom:571.453333pt;}
.y4_c00238{bottom:593.053333pt;}
.y3_c00238{bottom:615.320000pt;}
.y2_c00238{bottom:636.920000pt;}
.y1_c00238{bottom:659.053333pt;}
.h4_c00238{height:11.733399pt;}
.h5_c00238{height:38.937500pt;}
.h3_c00238{height:81.031250pt;}
.h2_c00238{height:97.912760pt;}
.h0_c00238{height:695.266667pt;}
.h1_c00238{height:695.333333pt;}
.w2_c00238{width:93.222667pt;}
.w0_c00238{width:460.533333pt;}
.w1_c00238{width:460.666667pt;}
.x0_c00238{left:0.000000pt;}
.x7_c00238{left:31.600000pt;}
.x6_c00238{left:32.666667pt;}
.x5_c00238{left:33.600000pt;}
.x4_c00238{left:35.466667pt;}
.x3_c00238{left:36.933333pt;}
.x2_c00238{left:38.000000pt;}
.x1_c00238{left:137.066667pt;}
.x9_c00238{left:187.434896pt;}
.x8_c00238{left:258.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_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_f31f359ae7aedec26a8549c2.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.480469;font-style:normal;font-weight:normal;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_3cc8d2d0c4b1389ce9920a4f.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:1.568848;font-style:normal;font-weight:normal;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_3324c2d82dcb580728c44e4f.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00239;src:url('chunks/assets/font_0b0241cab31493e0c280f521.woff2')format("woff");}.ff4_c00239{font-family:ff4_c00239;line-height:1.575000;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00239{font-family:ff5_c00239;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00239;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00239{font-family:ff6_c00239;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00239{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m0_c00239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00239{vertical-align:0.000000px;}
.ls5_c00239{letter-spacing:-6.000000px;}
.ls4_c00239{letter-spacing:0.000000px;}
.ls3_c00239{letter-spacing:0.360000px;}
.ls1_c00239{letter-spacing:3.000000px;}
.ls0_c00239{letter-spacing:4.248000px;}
.ls2_c00239{letter-spacing:9.000000px;}
.sc__c00239{text-shadow:none;}
.sc0_c00239{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00239{-webkit-text-stroke:0px transparent;}
.sc0_c00239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00239{word-spacing:-57.000000px;}
.ws1_c00239{word-spacing:-24.051000px;}
.ws2_c00239{word-spacing:-16.629000px;}
.ws3_c00239{word-spacing:0.000000px;}
._8_c00239{margin-left:-16.740000px;}
._14_c00239{margin-left:-15.669000px;}
._11_c00239{margin-left:-9.750000px;}
._c_c00239{margin-left:-7.770000px;}
._d_c00239{margin-left:-6.336000px;}
._0_c00239{margin-left:-4.959000px;}
._1_c00239{margin-left:-2.958000px;}
._5_c00239{margin-left:-1.653000px;}
._7_c00239{width:1.494000px;}
._4_c00239{width:2.610000px;}
._9_c00239{width:3.888000px;}
._3_c00239{width:5.133000px;}
._10_c00239{width:6.180000px;}
._f_c00239{width:7.563000px;}
._6_c00239{width:8.733000px;}
._12_c00239{width:10.800000px;}
._b_c00239{width:11.811000px;}
._2_c00239{width:13.398000px;}
._13_c00239{width:14.457000px;}
._e_c00239{width:16.722000px;}
._a_c00239{width:18.024000px;}
._15_c00239{width:28.281000px;}
.fc2_c00239{color:transparent;}
.fc1_c00239{color:rgb(128,128,128);}
.fc0_c00239{color:rgb(0,0,0);}
.fs5_c00239{font-size:48.000000px;}
.fs3_c00239{font-size:63.000000px;}
.fs4_c00239{font-size:69.000000px;}
.fs1_c00239{font-size:72.000000px;}
.fs0_c00239{font-size:87.000000px;}
.fs2_c00239{font-size:96.000000px;}
.y0_c00239{bottom:0.000000px;}
.y1f_c00239{bottom:3.105000px;}
.y1e_c00239{bottom:7.228371px;}
.y1d_c00239{bottom:55.815000px;}
.y1c_c00239{bottom:81.465000px;}
.y1b_c00239{bottom:107.115000px;}
.y1a_c00239{bottom:132.765000px;}
.y19_c00239{bottom:157.665000px;}
.y18_c00239{bottom:183.015000px;}
.y17_c00239{bottom:208.215000px;}
.y16_c00239{bottom:232.515000px;}
.y15_c00239{bottom:256.515000px;}
.y14_c00239{bottom:281.115000px;}
.y13_c00239{bottom:306.165000px;}
.y12_c00239{bottom:330.165000px;}
.y11_c00239{bottom:354.765000px;}
.y10_c00239{bottom:379.065000px;}
.yf_c00239{bottom:403.965000px;}
.ye_c00239{bottom:427.965000px;}
.yd_c00239{bottom:452.265000px;}
.yc_c00239{bottom:476.565000px;}
.yb_c00239{bottom:500.865000px;}
.ya_c00239{bottom:525.915000px;}
.y9_c00239{bottom:550.215000px;}
.y8_c00239{bottom:574.515000px;}
.y7_c00239{bottom:599.115000px;}
.y6_c00239{bottom:623.115000px;}
.y5_c00239{bottom:648.015000px;}
.y4_c00239{bottom:672.615000px;}
.y3_c00239{bottom:697.065000px;}
.y2_c00239{bottom:721.665000px;}
.y1_c00239{bottom:747.315000px;}
.h7_c00239{height:13.200074px;}
.h8_c00239{height:43.804688px;}
.h6_c00239{height:87.361816px;}
.h3_c00239{height:91.160156px;}
.h4_c00239{height:94.171875px;}
.h5_c00239{height:94.218750px;}
.h2_c00239{height:110.151855px;}
.h1_c00239{height:790.500000px;}
.h0_c00239{height:790.575000px;}
.w2_c00239{width:104.875500px;}
.w1_c00239{width:528.000000px;}
.w0_c00239{width:528.150000px;}
.x0_c00239{left:0.000000px;}
.x5_c00239{left:122.550000px;}
.x2_c00239{left:123.900000px;}
.x6_c00239{left:125.850000px;}
.x7_c00239{left:127.950000px;}
.x9_c00239{left:129.300000px;}
.x8_c00239{left:130.350000px;}
.xb_c00239{left:132.000000px;}
.xc_c00239{left:215.889267px;}
.x1_c00239{left:238.650000px;}
.x3_c00239{left:406.350000px;}
.x4_c00239{left:425.700000px;}
.xa_c00239{left:483.600000px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.ls5_c00239{letter-spacing:-5.333333pt;}
.ls4_c00239{letter-spacing:0.000000pt;}
.ls3_c00239{letter-spacing:0.320000pt;}
.ls1_c00239{letter-spacing:2.666667pt;}
.ls0_c00239{letter-spacing:3.776000pt;}
.ls2_c00239{letter-spacing:8.000000pt;}
.ws0_c00239{word-spacing:-50.666667pt;}
.ws1_c00239{word-spacing:-21.378667pt;}
.ws2_c00239{word-spacing:-14.781333pt;}
.ws3_c00239{word-spacing:0.000000pt;}
._8_c00239{margin-left:-14.880000pt;}
._14_c00239{margin-left:-13.928000pt;}
._11_c00239{margin-left:-8.666667pt;}
._c_c00239{margin-left:-6.906667pt;}
._d_c00239{margin-left:-5.632000pt;}
._0_c00239{margin-left:-4.408000pt;}
._1_c00239{margin-left:-2.629333pt;}
._5_c00239{margin-left:-1.469333pt;}
._7_c00239{width:1.328000pt;}
._4_c00239{width:2.320000pt;}
._9_c00239{width:3.456000pt;}
._3_c00239{width:4.562667pt;}
._10_c00239{width:5.493333pt;}
._f_c00239{width:6.722667pt;}
._6_c00239{width:7.762667pt;}
._12_c00239{width:9.600000pt;}
._b_c00239{width:10.498667pt;}
._2_c00239{width:11.909333pt;}
._13_c00239{width:12.850667pt;}
._e_c00239{width:14.864000pt;}
._a_c00239{width:16.021333pt;}
._15_c00239{width:25.138667pt;}
.fs5_c00239{font-size:42.666667pt;}
.fs3_c00239{font-size:56.000000pt;}
.fs4_c00239{font-size:61.333333pt;}
.fs1_c00239{font-size:64.000000pt;}
.fs0_c00239{font-size:77.333333pt;}
.fs2_c00239{font-size:85.333333pt;}
.y0_c00239{bottom:0.000000pt;}
.y1f_c00239{bottom:2.760000pt;}
.y1e_c00239{bottom:6.425219pt;}
.y1d_c00239{bottom:49.613333pt;}
.y1c_c00239{bottom:72.413333pt;}
.y1b_c00239{bottom:95.213333pt;}
.y1a_c00239{bottom:118.013333pt;}
.y19_c00239{bottom:140.146667pt;}
.y18_c00239{bottom:162.680000pt;}
.y17_c00239{bottom:185.080000pt;}
.y16_c00239{bottom:206.680000pt;}
.y15_c00239{bottom:228.013333pt;}
.y14_c00239{bottom:249.880000pt;}
.y13_c00239{bottom:272.146667pt;}
.y12_c00239{bottom:293.480000pt;}
.y11_c00239{bottom:315.346667pt;}
.y10_c00239{bottom:336.946667pt;}
.yf_c00239{bottom:359.080000pt;}
.ye_c00239{bottom:380.413333pt;}
.yd_c00239{bottom:402.013333pt;}
.yc_c00239{bottom:423.613333pt;}
.yb_c00239{bottom:445.213333pt;}
.ya_c00239{bottom:467.480000pt;}
.y9_c00239{bottom:489.080000pt;}
.y8_c00239{bottom:510.680000pt;}
.y7_c00239{bottom:532.546667pt;}
.y6_c00239{bottom:553.880000pt;}
.y5_c00239{bottom:576.013333pt;}
.y4_c00239{bottom:597.880000pt;}
.y3_c00239{bottom:619.613333pt;}
.y2_c00239{bottom:641.480000pt;}
.y1_c00239{bottom:664.280000pt;}
.h7_c00239{height:11.733399pt;}
.h8_c00239{height:38.937500pt;}
.h6_c00239{height:77.654948pt;}
.h3_c00239{height:81.031250pt;}
.h4_c00239{height:83.708333pt;}
.h5_c00239{height:83.750000pt;}
.h2_c00239{height:97.912760pt;}
.h1_c00239{height:702.666667pt;}
.h0_c00239{height:702.733333pt;}
.w2_c00239{width:93.222667pt;}
.w1_c00239{width:469.333333pt;}
.w0_c00239{width:469.466667pt;}
.x0_c00239{left:0.000000pt;}
.x5_c00239{left:108.933333pt;}
.x2_c00239{left:110.133333pt;}
.x6_c00239{left:111.866667pt;}
.x7_c00239{left:113.733333pt;}
.x9_c00239{left:114.933333pt;}
.x8_c00239{left:115.866667pt;}
.xb_c00239{left:117.333333pt;}
.xc_c00239{left:191.901571pt;}
.x1_c00239{left:212.133333pt;}
.x3_c00239{left:361.200000pt;}
.x4_c00239{left:378.400000pt;}
.xa_c00239{left:429.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9b74410fad232dc6486db4ce.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.480469;font-style:normal;font-weight:normal;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_528a001f3606812a61eb9200.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.568848;font-style:normal;font-weight:normal;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_3d302b43dc0a56152f64b160.woff2')format("woff");}.ff3_c00240{font-family:ff3_c00240;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00240{font-family:ff4_c00240;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00240{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00240{vertical-align:0.000000px;}
.ls2_c00240{letter-spacing:-6.000000px;}
.ls0_c00240{letter-spacing:0.000000px;}
.ls1_c00240{letter-spacing:3.000000px;}
.sc__c00240{text-shadow:none;}
.sc0_c00240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00240{-webkit-text-stroke:0px transparent;}
.sc0_c00240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00240{word-spacing:-24.051000px;}
.ws1_c00240{word-spacing:0.000000px;}
._15_c00240{margin-left:-12.312000px;}
._7_c00240{margin-left:-10.962000px;}
._14_c00240{margin-left:-9.396000px;}
._16_c00240{margin-left:-7.824000px;}
._6_c00240{margin-left:-6.612000px;}
._11_c00240{margin-left:-5.580000px;}
._4_c00240{margin-left:-4.002000px;}
._2_c00240{margin-left:-2.697000px;}
._3_c00240{margin-left:-1.653000px;}
._8_c00240{width:1.866000px;}
._9_c00240{width:3.186000px;}
._1_c00240{width:4.524000px;}
._d_c00240{width:5.811000px;}
._0_c00240{width:6.873000px;}
._c_c00240{width:8.496000px;}
._a_c00240{width:9.720000px;}
._f_c00240{width:11.508000px;}
._e_c00240{width:13.038000px;}
._13_c00240{width:14.136000px;}
._10_c00240{width:16.161000px;}
._12_c00240{width:22.380000px;}
._b_c00240{width:27.129000px;}
._17_c00240{width:41.196000px;}
._18_c00240{width:187.017000px;}
._5_c00240{width:302.034000px;}
.fc2_c00240{color:transparent;}
.fc1_c00240{color:rgb(128,128,128);}
.fc0_c00240{color:rgb(0,0,0);}
.fs3_c00240{font-size:48.000000px;}
.fs2_c00240{font-size:63.000000px;}
.fs1_c00240{font-size:72.000000px;}
.fs0_c00240{font-size:87.000000px;}
.y0_c00240{bottom:0.000000px;}
.y1f_c00240{bottom:3.105000px;}
.y1e_c00240{bottom:7.228369px;}
.y1d_c00240{bottom:51.870000px;}
.y1c_c00240{bottom:77.220000px;}
.y1b_c00240{bottom:103.170000px;}
.y1a_c00240{bottom:127.170000px;}
.y19_c00240{bottom:152.820000px;}
.y18_c00240{bottom:177.870000px;}
.y17_c00240{bottom:203.070000px;}
.y16_c00240{bottom:227.820000px;}
.y15_c00240{bottom:252.420000px;}
.y14_c00240{bottom:277.020000px;}
.y13_c00240{bottom:300.420000px;}
.y12_c00240{bottom:323.220000px;}
.y11_c00240{bottom:347.220000px;}
.y10_c00240{bottom:371.970000px;}
.yf_c00240{bottom:396.870000px;}
.ye_c00240{bottom:422.520000px;}
.yd_c00240{bottom:446.820000px;}
.yc_c00240{bottom:471.720000px;}
.yb_c00240{bottom:496.170000px;}
.ya_c00240{bottom:520.770000px;}
.y9_c00240{bottom:545.370000px;}
.y8_c00240{bottom:569.970000px;}
.y7_c00240{bottom:594.270000px;}
.y6_c00240{bottom:619.620000px;}
.y5_c00240{bottom:644.520000px;}
.y4_c00240{bottom:668.220000px;}
.y3_c00240{bottom:693.120000px;}
.y2_c00240{bottom:717.420000px;}
.y1_c00240{bottom:742.470000px;}
.h4_c00240{height:13.200073px;}
.h5_c00240{height:43.804688px;}
.h3_c00240{height:91.160156px;}
.h2_c00240{height:110.151855px;}
.h1_c00240{height:785.250000px;}
.h0_c00240{height:785.400000px;}
.w2_c00240{width:104.875500px;}
.w1_c00240{width:534.750000px;}
.w0_c00240{width:534.900000px;}
.x0_c00240{left:0.000000px;}
.x2_c00240{left:36.900000px;}
.x3_c00240{left:39.150000px;}
.x4_c00240{left:40.200000px;}
.x1_c00240{left:158.550000px;}
.x6_c00240{left:219.264267px;}
.x5_c00240{left:306.750000px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls2_c00240{letter-spacing:-5.333333pt;}
.ls0_c00240{letter-spacing:0.000000pt;}
.ls1_c00240{letter-spacing:2.666667pt;}
.ws0_c00240{word-spacing:-21.378667pt;}
.ws1_c00240{word-spacing:0.000000pt;}
._15_c00240{margin-left:-10.944000pt;}
._7_c00240{margin-left:-9.744000pt;}
._14_c00240{margin-left:-8.352000pt;}
._16_c00240{margin-left:-6.954667pt;}
._6_c00240{margin-left:-5.877333pt;}
._11_c00240{margin-left:-4.960000pt;}
._4_c00240{margin-left:-3.557333pt;}
._2_c00240{margin-left:-2.397333pt;}
._3_c00240{margin-left:-1.469333pt;}
._8_c00240{width:1.658667pt;}
._9_c00240{width:2.832000pt;}
._1_c00240{width:4.021333pt;}
._d_c00240{width:5.165333pt;}
._0_c00240{width:6.109333pt;}
._c_c00240{width:7.552000pt;}
._a_c00240{width:8.640000pt;}
._f_c00240{width:10.229333pt;}
._e_c00240{width:11.589333pt;}
._13_c00240{width:12.565333pt;}
._10_c00240{width:14.365333pt;}
._12_c00240{width:19.893333pt;}
._b_c00240{width:24.114667pt;}
._17_c00240{width:36.618667pt;}
._18_c00240{width:166.237333pt;}
._5_c00240{width:268.474667pt;}
.fs3_c00240{font-size:42.666667pt;}
.fs2_c00240{font-size:56.000000pt;}
.fs1_c00240{font-size:64.000000pt;}
.fs0_c00240{font-size:77.333333pt;}
.y0_c00240{bottom:0.000000pt;}
.y1f_c00240{bottom:2.760000pt;}
.y1e_c00240{bottom:6.425217pt;}
.y1d_c00240{bottom:46.106667pt;}
.y1c_c00240{bottom:68.640000pt;}
.y1b_c00240{bottom:91.706667pt;}
.y1a_c00240{bottom:113.040000pt;}
.y19_c00240{bottom:135.840000pt;}
.y18_c00240{bottom:158.106667pt;}
.y17_c00240{bottom:180.506667pt;}
.y16_c00240{bottom:202.506667pt;}
.y15_c00240{bottom:224.373333pt;}
.y14_c00240{bottom:246.240000pt;}
.y13_c00240{bottom:267.040000pt;}
.y12_c00240{bottom:287.306667pt;}
.y11_c00240{bottom:308.640000pt;}
.y10_c00240{bottom:330.640000pt;}
.yf_c00240{bottom:352.773333pt;}
.ye_c00240{bottom:375.573333pt;}
.yd_c00240{bottom:397.173333pt;}
.yc_c00240{bottom:419.306667pt;}
.yb_c00240{bottom:441.040000pt;}
.ya_c00240{bottom:462.906667pt;}
.y9_c00240{bottom:484.773333pt;}
.y8_c00240{bottom:506.640000pt;}
.y7_c00240{bottom:528.240000pt;}
.y6_c00240{bottom:550.773333pt;}
.y5_c00240{bottom:572.906667pt;}
.y4_c00240{bottom:593.973333pt;}
.y3_c00240{bottom:616.106667pt;}
.y2_c00240{bottom:637.706667pt;}
.y1_c00240{bottom:659.973333pt;}
.h4_c00240{height:11.733399pt;}
.h5_c00240{height:38.937500pt;}
.h3_c00240{height:81.031250pt;}
.h2_c00240{height:97.912760pt;}
.h1_c00240{height:698.000000pt;}
.h0_c00240{height:698.133333pt;}
.w2_c00240{width:93.222667pt;}
.w1_c00240{width:475.333333pt;}
.w0_c00240{width:475.466667pt;}
.x0_c00240{left:0.000000pt;}
.x2_c00240{left:32.800000pt;}
.x3_c00240{left:34.800000pt;}
.x4_c00240{left:35.733333pt;}
.x1_c00240{left:140.933333pt;}
.x6_c00240{left:194.901571pt;}
.x5_c00240{left:272.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_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_273cc54ea30e2503aa9252e1.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.568848;font-style:normal;font-weight:normal;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_f136216e8b3da33de199f692.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00241{font-family:ff3_c00241;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00241{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00241{vertical-align:0.000000px;}
.ls1_c00241{letter-spacing:0.000000px;}
.ls0_c00241{letter-spacing:3.000000px;}
.ls2_c00241{letter-spacing:6.000000px;}
.sc__c00241{text-shadow:none;}
.sc0_c00241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00241{-webkit-text-stroke:0px transparent;}
.sc0_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00241{word-spacing:-17.352000px;}
.ws1_c00241{word-spacing:0.000000px;}
._2_c00241{margin-left:-21.096000px;}
._c_c00241{margin-left:-15.840000px;}
._d_c00241{margin-left:-14.040000px;}
._16_c00241{margin-left:-8.496000px;}
._7_c00241{margin-left:-6.336000px;}
._11_c00241{margin-left:-5.040000px;}
._14_c00241{margin-left:-3.744000px;}
._8_c00241{margin-left:-2.664000px;}
._a_c00241{margin-left:-1.152000px;}
._9_c00241{width:1.512000px;}
._5_c00241{width:2.664000px;}
._b_c00241{width:3.888000px;}
._6_c00241{width:5.472000px;}
._f_c00241{width:6.480000px;}
._4_c00241{width:7.560000px;}
._e_c00241{width:8.568000px;}
._15_c00241{width:9.792000px;}
._0_c00241{width:11.088000px;}
._10_c00241{width:12.960000px;}
._13_c00241{width:14.400000px;}
._17_c00241{width:15.624000px;}
._18_c00241{width:17.517000px;}
._1a_c00241{width:21.048000px;}
._19_c00241{width:24.384000px;}
._12_c00241{width:41.184000px;}
._1_c00241{width:66.960000px;}
._3_c00241{width:270.048000px;}
.fc2_c00241{color:transparent;}
.fc1_c00241{color:rgb(128,128,128);}
.fc0_c00241{color:rgb(0,0,0);}
.fs2_c00241{font-size:24.000000px;}
.fs3_c00241{font-size:48.000000px;}
.fs1_c00241{font-size:63.000000px;}
.fs0_c00241{font-size:72.000000px;}
.y0_c00241{bottom:0.000000px;}
.y1e_c00241{bottom:3.105000px;}
.y1d_c00241{bottom:7.228363px;}
.y1c_c00241{bottom:73.950000px;}
.y1b_c00241{bottom:99.600000px;}
.y1a_c00241{bottom:125.550000px;}
.y19_c00241{bottom:149.550000px;}
.y18_c00241{bottom:176.400000px;}
.y17_c00241{bottom:199.500000px;}
.y16_c00241{bottom:224.700000px;}
.y15_c00241{bottom:249.750000px;}
.y14_c00241{bottom:274.050000px;}
.y13_c00241{bottom:299.250000px;}
.y12_c00241{bottom:324.900000px;}
.y11_c00241{bottom:348.300000px;}
.y10_c00241{bottom:372.300000px;}
.yf_c00241{bottom:397.500000px;}
.ye_c00241{bottom:421.500000px;}
.yd_c00241{bottom:446.100000px;}
.yc_c00241{bottom:470.100000px;}
.yb_c00241{bottom:494.400000px;}
.ya_c00241{bottom:519.300000px;}
.y9_c00241{bottom:543.750000px;}
.y8_c00241{bottom:568.650000px;}
.y7_c00241{bottom:592.200000px;}
.y6_c00241{bottom:617.850000px;}
.y5_c00241{bottom:641.850000px;}
.y4_c00241{bottom:666.900000px;}
.y3_c00241{bottom:691.500000px;}
.y2_c00241{bottom:715.800000px;}
.y1_c00241{bottom:741.450000px;}
.h2_c00241{height:13.200074px;}
.h3_c00241{height:43.804688px;}
.h1_c00241{height:91.160156px;}
.h0_c00241{height:789.750000px;}
.w1_c00241{width:104.875500px;}
.w0_c00241{width:522.750000px;}
.x0_c00241{left:0.000000px;}
.x2_c00241{left:112.350000px;}
.x1_c00241{left:114.300000px;}
.x3_c00241{left:116.400000px;}
.x4_c00241{left:117.750000px;}
.x5_c00241{left:119.100000px;}
.x6_c00241{left:121.050000px;}
.x7_c00241{left:213.189240px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls1_c00241{letter-spacing:0.000000pt;}
.ls0_c00241{letter-spacing:2.666667pt;}
.ls2_c00241{letter-spacing:5.333333pt;}
.ws0_c00241{word-spacing:-15.424000pt;}
.ws1_c00241{word-spacing:0.000000pt;}
._2_c00241{margin-left:-18.752000pt;}
._c_c00241{margin-left:-14.080000pt;}
._d_c00241{margin-left:-12.480000pt;}
._16_c00241{margin-left:-7.552000pt;}
._7_c00241{margin-left:-5.632000pt;}
._11_c00241{margin-left:-4.480000pt;}
._14_c00241{margin-left:-3.328000pt;}
._8_c00241{margin-left:-2.368000pt;}
._a_c00241{margin-left:-1.024000pt;}
._9_c00241{width:1.344000pt;}
._5_c00241{width:2.368000pt;}
._b_c00241{width:3.456000pt;}
._6_c00241{width:4.864000pt;}
._f_c00241{width:5.760000pt;}
._4_c00241{width:6.720000pt;}
._e_c00241{width:7.616000pt;}
._15_c00241{width:8.704000pt;}
._0_c00241{width:9.856000pt;}
._10_c00241{width:11.520000pt;}
._13_c00241{width:12.800000pt;}
._17_c00241{width:13.888000pt;}
._18_c00241{width:15.570667pt;}
._1a_c00241{width:18.709333pt;}
._19_c00241{width:21.674667pt;}
._12_c00241{width:36.608000pt;}
._1_c00241{width:59.520000pt;}
._3_c00241{width:240.042667pt;}
.fs2_c00241{font-size:21.333333pt;}
.fs3_c00241{font-size:42.666667pt;}
.fs1_c00241{font-size:56.000000pt;}
.fs0_c00241{font-size:64.000000pt;}
.y0_c00241{bottom:0.000000pt;}
.y1e_c00241{bottom:2.760000pt;}
.y1d_c00241{bottom:6.425212pt;}
.y1c_c00241{bottom:65.733333pt;}
.y1b_c00241{bottom:88.533333pt;}
.y1a_c00241{bottom:111.600000pt;}
.y19_c00241{bottom:132.933333pt;}
.y18_c00241{bottom:156.800000pt;}
.y17_c00241{bottom:177.333333pt;}
.y16_c00241{bottom:199.733333pt;}
.y15_c00241{bottom:222.000000pt;}
.y14_c00241{bottom:243.600000pt;}
.y13_c00241{bottom:266.000000pt;}
.y12_c00241{bottom:288.800000pt;}
.y11_c00241{bottom:309.600000pt;}
.y10_c00241{bottom:330.933333pt;}
.yf_c00241{bottom:353.333333pt;}
.ye_c00241{bottom:374.666667pt;}
.yd_c00241{bottom:396.533333pt;}
.yc_c00241{bottom:417.866667pt;}
.yb_c00241{bottom:439.466667pt;}
.ya_c00241{bottom:461.600000pt;}
.y9_c00241{bottom:483.333333pt;}
.y8_c00241{bottom:505.466667pt;}
.y7_c00241{bottom:526.400000pt;}
.y6_c00241{bottom:549.200000pt;}
.y5_c00241{bottom:570.533333pt;}
.y4_c00241{bottom:592.800000pt;}
.y3_c00241{bottom:614.666667pt;}
.y2_c00241{bottom:636.266667pt;}
.y1_c00241{bottom:659.066667pt;}
.h2_c00241{height:11.733399pt;}
.h3_c00241{height:38.937500pt;}
.h1_c00241{height:81.031250pt;}
.h0_c00241{height:702.000000pt;}
.w1_c00241{width:93.222667pt;}
.w0_c00241{width:464.666667pt;}
.x0_c00241{left:0.000000pt;}
.x2_c00241{left:99.866667pt;}
.x1_c00241{left:101.600000pt;}
.x3_c00241{left:103.466667pt;}
.x4_c00241{left:104.666667pt;}
.x5_c00241{left:105.866667pt;}
.x6_c00241{left:107.600000pt;}
.x7_c00241{left:189.501546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0dcf964c47c19c767ada78f8.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.480469;font-style:normal;font-weight:normal;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_953abce546d127b74797d8d1.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00242{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.ls1_c00242{letter-spacing:0.000000px;}
.ls0_c00242{letter-spacing:3.000000px;}
.sc__c00242{text-shadow:none;}
.sc0_c00242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00242{-webkit-text-stroke:0px transparent;}
.sc0_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00242{word-spacing:0.000000px;}
._19_c00242{margin-left:-15.768000px;}
._8_c00242{margin-left:-12.384000px;}
._d_c00242{margin-left:-10.872000px;}
._9_c00242{margin-left:-9.000000px;}
._13_c00242{margin-left:-7.560000px;}
._17_c00242{margin-left:-5.976000px;}
._7_c00242{margin-left:-4.968000px;}
._b_c00242{margin-left:-3.888000px;}
._c_c00242{margin-left:-2.880000px;}
._f_c00242{margin-left:-1.296000px;}
._11_c00242{width:1.080000px;}
._a_c00242{width:2.160000px;}
._e_c00242{width:4.032000px;}
._10_c00242{width:5.688000px;}
._16_c00242{width:6.768000px;}
._2_c00242{width:8.100000px;}
._5_c00242{width:9.780000px;}
._14_c00242{width:10.800000px;}
._1_c00242{width:12.180000px;}
._4_c00242{width:13.620000px;}
._3_c00242{width:15.120000px;}
._15_c00242{width:16.416000px;}
._0_c00242{width:18.960000px;}
._12_c00242{width:39.096000px;}
._1a_c00242{width:179.496000px;}
._6_c00242{width:372.480000px;}
._18_c00242{width:945.288000px;}
.fc2_c00242{color:transparent;}
.fc1_c00242{color:rgb(128,128,128);}
.fc0_c00242{color:rgb(0,0,0);}
.fs2_c00242{font-size:48.000000px;}
.fs0_c00242{font-size:60.000000px;}
.fs1_c00242{font-size:72.000000px;}
.y0_c00242{bottom:0.000000px;}
.y1f_c00242{bottom:3.105000px;}
.y1e_c00242{bottom:7.228355px;}
.y1d_c00242{bottom:47.835000px;}
.y1c_c00242{bottom:74.235000px;}
.y1b_c00242{bottom:99.585000px;}
.y1a_c00242{bottom:124.485000px;}
.y19_c00242{bottom:149.085000px;}
.y18_c00242{bottom:175.035000px;}
.y17_c00242{bottom:199.785000px;}
.y16_c00242{bottom:225.135000px;}
.y15_c00242{bottom:248.685000px;}
.y14_c00242{bottom:274.035000px;}
.y13_c00242{bottom:298.335000px;}
.y12_c00242{bottom:321.585000px;}
.y11_c00242{bottom:345.285000px;}
.y10_c00242{bottom:370.485000px;}
.yf_c00242{bottom:394.485000px;}
.ye_c00242{bottom:419.535000px;}
.yd_c00242{bottom:445.185000px;}
.yc_c00242{bottom:469.335000px;}
.yb_c00242{bottom:494.385000px;}
.ya_c00242{bottom:518.385000px;}
.y9_c00242{bottom:543.735000px;}
.y8_c00242{bottom:568.335000px;}
.y7_c00242{bottom:593.685000px;}
.y6_c00242{bottom:617.535000px;}
.y5_c00242{bottom:642.285000px;}
.y4_c00242{bottom:667.785000px;}
.y3_c00242{bottom:691.785000px;}
.y2_c00242{bottom:716.085000px;}
.y1_c00242{bottom:742.035000px;}
.h4_c00242{height:13.200074px;}
.h5_c00242{height:43.804688px;}
.h2_c00242{height:70.224609px;}
.h3_c00242{height:91.160156px;}
.h0_c00242{height:790.275000px;}
.h1_c00242{height:790.500000px;}
.w1_c00242{width:104.875500px;}
.w0_c00242{width:530.250000px;}
.x0_c00242{left:0.000000px;}
.x2_c00242{left:30.000000px;}
.x3_c00242{left:36.000000px;}
.x4_c00242{left:37.350000px;}
.x5_c00242{left:38.700000px;}
.x6_c00242{left:40.200000px;}
.x7_c00242{left:41.250000px;}
.x8_c00242{left:42.450000px;}
.x9_c00242{left:54.000000px;}
.x1_c00242{left:143.700000px;}
.xa_c00242{left:216.939240px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls1_c00242{letter-spacing:0.000000pt;}
.ls0_c00242{letter-spacing:2.666667pt;}
.ws0_c00242{word-spacing:0.000000pt;}
._19_c00242{margin-left:-14.016000pt;}
._8_c00242{margin-left:-11.008000pt;}
._d_c00242{margin-left:-9.664000pt;}
._9_c00242{margin-left:-8.000000pt;}
._13_c00242{margin-left:-6.720000pt;}
._17_c00242{margin-left:-5.312000pt;}
._7_c00242{margin-left:-4.416000pt;}
._b_c00242{margin-left:-3.456000pt;}
._c_c00242{margin-left:-2.560000pt;}
._f_c00242{margin-left:-1.152000pt;}
._11_c00242{width:0.960000pt;}
._a_c00242{width:1.920000pt;}
._e_c00242{width:3.584000pt;}
._10_c00242{width:5.056000pt;}
._16_c00242{width:6.016000pt;}
._2_c00242{width:7.200000pt;}
._5_c00242{width:8.693333pt;}
._14_c00242{width:9.600000pt;}
._1_c00242{width:10.826667pt;}
._4_c00242{width:12.106667pt;}
._3_c00242{width:13.440000pt;}
._15_c00242{width:14.592000pt;}
._0_c00242{width:16.853333pt;}
._12_c00242{width:34.752000pt;}
._1a_c00242{width:159.552000pt;}
._6_c00242{width:331.093333pt;}
._18_c00242{width:840.256000pt;}
.fs2_c00242{font-size:42.666667pt;}
.fs0_c00242{font-size:53.333333pt;}
.fs1_c00242{font-size:64.000000pt;}
.y0_c00242{bottom:0.000000pt;}
.y1f_c00242{bottom:2.760000pt;}
.y1e_c00242{bottom:6.425204pt;}
.y1d_c00242{bottom:42.520000pt;}
.y1c_c00242{bottom:65.986667pt;}
.y1b_c00242{bottom:88.520000pt;}
.y1a_c00242{bottom:110.653333pt;}
.y19_c00242{bottom:132.520000pt;}
.y18_c00242{bottom:155.586667pt;}
.y17_c00242{bottom:177.586667pt;}
.y16_c00242{bottom:200.120000pt;}
.y15_c00242{bottom:221.053333pt;}
.y14_c00242{bottom:243.586667pt;}
.y13_c00242{bottom:265.186667pt;}
.y12_c00242{bottom:285.853333pt;}
.y11_c00242{bottom:306.920000pt;}
.y10_c00242{bottom:329.320000pt;}
.yf_c00242{bottom:350.653333pt;}
.ye_c00242{bottom:372.920000pt;}
.yd_c00242{bottom:395.720000pt;}
.yc_c00242{bottom:417.186667pt;}
.yb_c00242{bottom:439.453333pt;}
.ya_c00242{bottom:460.786667pt;}
.y9_c00242{bottom:483.320000pt;}
.y8_c00242{bottom:505.186667pt;}
.y7_c00242{bottom:527.720000pt;}
.y6_c00242{bottom:548.920000pt;}
.y5_c00242{bottom:570.920000pt;}
.y4_c00242{bottom:593.586667pt;}
.y3_c00242{bottom:614.920000pt;}
.y2_c00242{bottom:636.520000pt;}
.y1_c00242{bottom:659.586667pt;}
.h4_c00242{height:11.733399pt;}
.h5_c00242{height:38.937500pt;}
.h2_c00242{height:62.421875pt;}
.h3_c00242{height:81.031250pt;}
.h0_c00242{height:702.466667pt;}
.h1_c00242{height:702.666667pt;}
.w1_c00242{width:93.222667pt;}
.w0_c00242{width:471.333333pt;}
.x0_c00242{left:0.000000pt;}
.x2_c00242{left:26.666667pt;}
.x3_c00242{left:32.000000pt;}
.x4_c00242{left:33.200000pt;}
.x5_c00242{left:34.400000pt;}
.x6_c00242{left:35.733333pt;}
.x7_c00242{left:36.666667pt;}
.x8_c00242{left:37.733333pt;}
.x9_c00242{left:48.000000pt;}
.x1_c00242{left:127.733333pt;}
.xa_c00242{left:192.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_46ed35234ceee9c9ab0c37e8.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.480469;font-style:normal;font-weight:normal;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_0b35756fa50c14ec44a8046f.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:1.568848;font-style:normal;font-weight:normal;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_cb278d05e32409b54f19e573.woff2')format("woff");}.ff3_c00243{font-family:ff3_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00243;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00243{font-family:ff4_c00243;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00243{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00243{vertical-align:0.000000px;}
.ls0_c00243{letter-spacing:0.000000px;}
.ls1_c00243{letter-spacing:3.000000px;}
.ls2_c00243{letter-spacing:6.000000px;}
.sc__c00243{text-shadow:none;}
.sc0_c00243{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00243{-webkit-text-stroke:0px transparent;}
.sc0_c00243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00243{word-spacing:-20.352000px;}
.ws1_c00243{word-spacing:0.000000px;}
._14_c00243{margin-left:-14.808000px;}
._13_c00243{margin-left:-12.576000px;}
._d_c00243{margin-left:-10.464000px;}
._f_c00243{margin-left:-7.908000px;}
._8_c00243{margin-left:-6.330000px;}
._c_c00243{margin-left:-4.908000px;}
._0_c00243{margin-left:-2.784000px;}
._1_c00243{margin-left:-1.218000px;}
._3_c00243{width:1.368000px;}
._2_c00243{width:2.448000px;}
._6_c00243{width:4.104000px;}
._7_c00243{width:5.328000px;}
._b_c00243{width:6.696000px;}
._4_c00243{width:8.136000px;}
._11_c00243{width:9.192000px;}
._12_c00243{width:10.287000px;}
._5_c00243{width:11.448000px;}
._e_c00243{width:12.960000px;}
._a_c00243{width:14.472000px;}
._9_c00243{width:16.848000px;}
._10_c00243{width:37.062000px;}
.fc2_c00243{color:transparent;}
.fc1_c00243{color:rgb(128,128,128);}
.fc0_c00243{color:rgb(0,0,0);}
.fs3_c00243{font-size:48.000000px;}
.fs2_c00243{font-size:57.000000px;}
.fs1_c00243{font-size:72.000000px;}
.fs0_c00243{font-size:87.000000px;}
.y0_c00243{bottom:0.000000px;}
.y1f_c00243{bottom:3.105000px;}
.y1e_c00243{bottom:7.228355px;}
.y1d_c00243{bottom:51.885000px;}
.y1c_c00243{bottom:76.485000px;}
.y1b_c00243{bottom:101.535000px;}
.y1a_c00243{bottom:127.185000px;}
.y19_c00243{bottom:151.785000px;}
.y18_c00243{bottom:176.835000px;}
.y17_c00243{bottom:201.735000px;}
.y16_c00243{bottom:226.035000px;}
.y15_c00243{bottom:251.385000px;}
.y14_c00243{bottom:275.685000px;}
.y13_c00243{bottom:300.735000px;}
.y12_c00243{bottom:324.585000px;}
.y11_c00243{bottom:349.185000px;}
.y10_c00243{bottom:375.885000px;}
.yf_c00243{bottom:398.835000px;}
.ye_c00243{bottom:423.135000px;}
.yd_c00243{bottom:447.135000px;}
.yc_c00243{bottom:471.435000px;}
.yb_c00243{bottom:496.485000px;}
.ya_c00243{bottom:520.785000px;}
.y9_c00243{bottom:545.085000px;}
.y8_c00243{bottom:569.985000px;}
.y7_c00243{bottom:594.585000px;}
.y6_c00243{bottom:618.885000px;}
.y5_c00243{bottom:643.485000px;}
.y4_c00243{bottom:667.785000px;}
.y3_c00243{bottom:692.235000px;}
.y2_c00243{bottom:717.435000px;}
.y1_c00243{bottom:743.385000px;}
.h4_c00243{height:13.200074px;}
.h5_c00243{height:43.804688px;}
.h3_c00243{height:91.160156px;}
.h2_c00243{height:110.151855px;}
.h1_c00243{height:786.000000px;}
.h0_c00243{height:786.225000px;}
.w1_c00243{width:104.875500px;}
.w0_c00243{width:509.250000px;}
.x0_c00243{left:0.000000px;}
.x6_c00243{left:97.500000px;}
.x4_c00243{left:98.850000px;}
.x3_c00243{left:99.900000px;}
.x5_c00243{left:100.950000px;}
.x2_c00243{left:102.150000px;}
.x8_c00243{left:206.439240px;}
.x1_c00243{left:230.100000px;}
.x7_c00243{left:463.050000px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls0_c00243{letter-spacing:0.000000pt;}
.ls1_c00243{letter-spacing:2.666667pt;}
.ls2_c00243{letter-spacing:5.333333pt;}
.ws0_c00243{word-spacing:-18.090667pt;}
.ws1_c00243{word-spacing:0.000000pt;}
._14_c00243{margin-left:-13.162667pt;}
._13_c00243{margin-left:-11.178667pt;}
._d_c00243{margin-left:-9.301333pt;}
._f_c00243{margin-left:-7.029333pt;}
._8_c00243{margin-left:-5.626667pt;}
._c_c00243{margin-left:-4.362667pt;}
._0_c00243{margin-left:-2.474667pt;}
._1_c00243{margin-left:-1.082667pt;}
._3_c00243{width:1.216000pt;}
._2_c00243{width:2.176000pt;}
._6_c00243{width:3.648000pt;}
._7_c00243{width:4.736000pt;}
._b_c00243{width:5.952000pt;}
._4_c00243{width:7.232000pt;}
._11_c00243{width:8.170667pt;}
._12_c00243{width:9.144000pt;}
._5_c00243{width:10.176000pt;}
._e_c00243{width:11.520000pt;}
._a_c00243{width:12.864000pt;}
._9_c00243{width:14.976000pt;}
._10_c00243{width:32.944000pt;}
.fs3_c00243{font-size:42.666667pt;}
.fs2_c00243{font-size:50.666667pt;}
.fs1_c00243{font-size:64.000000pt;}
.fs0_c00243{font-size:77.333333pt;}
.y0_c00243{bottom:0.000000pt;}
.y1f_c00243{bottom:2.760000pt;}
.y1e_c00243{bottom:6.425204pt;}
.y1d_c00243{bottom:46.120000pt;}
.y1c_c00243{bottom:67.986667pt;}
.y1b_c00243{bottom:90.253333pt;}
.y1a_c00243{bottom:113.053333pt;}
.y19_c00243{bottom:134.920000pt;}
.y18_c00243{bottom:157.186667pt;}
.y17_c00243{bottom:179.320000pt;}
.y16_c00243{bottom:200.920000pt;}
.y15_c00243{bottom:223.453333pt;}
.y14_c00243{bottom:245.053333pt;}
.y13_c00243{bottom:267.320000pt;}
.y12_c00243{bottom:288.520000pt;}
.y11_c00243{bottom:310.386667pt;}
.y10_c00243{bottom:334.120000pt;}
.yf_c00243{bottom:354.520000pt;}
.ye_c00243{bottom:376.120000pt;}
.yd_c00243{bottom:397.453333pt;}
.yc_c00243{bottom:419.053333pt;}
.yb_c00243{bottom:441.320000pt;}
.ya_c00243{bottom:462.920000pt;}
.y9_c00243{bottom:484.520000pt;}
.y8_c00243{bottom:506.653333pt;}
.y7_c00243{bottom:528.520000pt;}
.y6_c00243{bottom:550.120000pt;}
.y5_c00243{bottom:571.986667pt;}
.y4_c00243{bottom:593.586667pt;}
.y3_c00243{bottom:615.320000pt;}
.y2_c00243{bottom:637.720000pt;}
.y1_c00243{bottom:660.786667pt;}
.h4_c00243{height:11.733399pt;}
.h5_c00243{height:38.937500pt;}
.h3_c00243{height:81.031250pt;}
.h2_c00243{height:97.912760pt;}
.h1_c00243{height:698.666667pt;}
.h0_c00243{height:698.866667pt;}
.w1_c00243{width:93.222667pt;}
.w0_c00243{width:452.666667pt;}
.x0_c00243{left:0.000000pt;}
.x6_c00243{left:86.666667pt;}
.x4_c00243{left:87.866667pt;}
.x3_c00243{left:88.800000pt;}
.x5_c00243{left:89.733333pt;}
.x2_c00243{left:90.800000pt;}
.x8_c00243{left:183.501546pt;}
.x1_c00243{left:204.533333pt;}
.x7_c00243{left:411.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_acbf6675545e18cd86560707.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.480469;font-style:normal;font-weight:normal;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_4550ceb0e85f3156eb89637c.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.568848;font-style:normal;font-weight:normal;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_a4b05e88879aa6ff5aad7705.woff2')format("woff");}.ff3_c00244{font-family:ff3_c00244;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00244;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00244{font-family:ff4_c00244;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00244{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00244{vertical-align:0.000000px;}
.ls1_c00244{letter-spacing:0.000000px;}
.ls0_c00244{letter-spacing:3.000000px;}
.ls2_c00244{letter-spacing:6.000000px;}
.sc__c00244{text-shadow:none;}
.sc0_c00244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00244{-webkit-text-stroke:0px transparent;}
.sc0_c00244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00244{word-spacing:-15.183000px;}
.ws1_c00244{word-spacing:0.000000px;}
._13_c00244{margin-left:-16.491000px;}
._11_c00244{margin-left:-14.184000px;}
._12_c00244{margin-left:-12.312000px;}
._f_c00244{margin-left:-10.941000px;}
._c_c00244{margin-left:-9.432000px;}
._d_c00244{margin-left:-8.280000px;}
._b_c00244{margin-left:-6.336000px;}
._2_c00244{margin-left:-4.785000px;}
._4_c00244{margin-left:-3.045000px;}
._3_c00244{margin-left:-1.392000px;}
._7_c00244{width:1.254000px;}
._9_c00244{width:2.304000px;}
._8_c00244{width:3.342000px;}
._1_c00244{width:4.872000px;}
._6_c00244{width:6.438000px;}
._0_c00244{width:8.004000px;}
._15_c00244{width:9.453000px;}
._a_c00244{width:10.536000px;}
._17_c00244{width:11.856000px;}
._e_c00244{width:12.903000px;}
._10_c00244{width:14.232000px;}
._16_c00244{width:15.891000px;}
._14_c00244{width:17.820000px;}
._5_c00244{width:304.500000px;}
.fc2_c00244{color:transparent;}
.fc1_c00244{color:rgb(128,128,128);}
.fc0_c00244{color:rgb(0,0,0);}
.fs6_c00244{font-size:48.000000px;}
.fs2_c00244{font-size:57.000000px;}
.fs5_c00244{font-size:63.000000px;}
.fs4_c00244{font-size:69.000000px;}
.fs3_c00244{font-size:72.000000px;}
.fs1_c00244{font-size:81.000000px;}
.fs0_c00244{font-size:87.000000px;}
.y0_c00244{bottom:0.000000px;}
.y1f_c00244{bottom:3.105000px;}
.y1e_c00244{bottom:7.228371px;}
.y1d_c00244{bottom:53.415000px;}
.y1c_c00244{bottom:81.465000px;}
.y1b_c00244{bottom:107.115000px;}
.y1a_c00244{bottom:131.265000px;}
.y19_c00244{bottom:156.315000px;}
.y18_c00244{bottom:181.365000px;}
.y17_c00244{bottom:207.015000px;}
.y16_c00244{bottom:231.315000px;}
.y15_c00244{bottom:256.215000px;}
.y14_c00244{bottom:280.515000px;}
.y13_c00244{bottom:305.565000px;}
.y12_c00244{bottom:328.065000px;}
.y11_c00244{bottom:351.765000px;}
.y10_c00244{bottom:376.965000px;}
.yf_c00244{bottom:401.715000px;}
.ye_c00244{bottom:426.615000px;}
.yd_c00244{bottom:451.365000px;}
.yc_c00244{bottom:476.565000px;}
.yb_c00244{bottom:501.615000px;}
.ya_c00244{bottom:526.515000px;}
.y9_c00244{bottom:550.815000px;}
.y8_c00244{bottom:575.865000px;}
.y7_c00244{bottom:600.165000px;}
.y6_c00244{bottom:624.465000px;}
.y5_c00244{bottom:649.365000px;}
.y4_c00244{bottom:674.115000px;}
.y3_c00244{bottom:698.715000px;}
.y2_c00244{bottom:723.615000px;}
.y1_c00244{bottom:748.215000px;}
.h5_c00244{height:13.200074px;}
.h6_c00244{height:43.804688px;}
.h4_c00244{height:79.765137px;}
.h3_c00244{height:91.160156px;}
.h2_c00244{height:110.151855px;}
.h0_c00244{height:794.625000px;}
.h1_c00244{height:795.000000px;}
.w2_c00244{width:104.875500px;}
.w1_c00244{width:521.250000px;}
.w0_c00244{width:521.400000px;}
.x0_c00244{left:0.000000px;}
.x2_c00244{left:26.700000px;}
.x3_c00244{left:29.400000px;}
.x4_c00244{left:30.450000px;}
.x5_c00244{left:31.500000px;}
.x6_c00244{left:33.150000px;}
.x7_c00244{left:35.550000px;}
.x8_c00244{left:37.200000px;}
.x9_c00244{left:39.900000px;}
.xa_c00244{left:41.850000px;}
.xb_c00244{left:43.200000px;}
.xc_c00244{left:44.250000px;}
.xd_c00244{left:45.450000px;}
.x1_c00244{left:142.200000px;}
.xf_c00244{left:212.514267px;}
.xe_c00244{left:385.500000px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls1_c00244{letter-spacing:0.000000pt;}
.ls0_c00244{letter-spacing:2.666667pt;}
.ls2_c00244{letter-spacing:5.333333pt;}
.ws0_c00244{word-spacing:-13.496000pt;}
.ws1_c00244{word-spacing:0.000000pt;}
._13_c00244{margin-left:-14.658667pt;}
._11_c00244{margin-left:-12.608000pt;}
._12_c00244{margin-left:-10.944000pt;}
._f_c00244{margin-left:-9.725333pt;}
._c_c00244{margin-left:-8.384000pt;}
._d_c00244{margin-left:-7.360000pt;}
._b_c00244{margin-left:-5.632000pt;}
._2_c00244{margin-left:-4.253333pt;}
._4_c00244{margin-left:-2.706667pt;}
._3_c00244{margin-left:-1.237333pt;}
._7_c00244{width:1.114667pt;}
._9_c00244{width:2.048000pt;}
._8_c00244{width:2.970667pt;}
._1_c00244{width:4.330667pt;}
._6_c00244{width:5.722667pt;}
._0_c00244{width:7.114667pt;}
._15_c00244{width:8.402667pt;}
._a_c00244{width:9.365333pt;}
._17_c00244{width:10.538667pt;}
._e_c00244{width:11.469333pt;}
._10_c00244{width:12.650667pt;}
._16_c00244{width:14.125333pt;}
._14_c00244{width:15.840000pt;}
._5_c00244{width:270.666667pt;}
.fs6_c00244{font-size:42.666667pt;}
.fs2_c00244{font-size:50.666667pt;}
.fs5_c00244{font-size:56.000000pt;}
.fs4_c00244{font-size:61.333333pt;}
.fs3_c00244{font-size:64.000000pt;}
.fs1_c00244{font-size:72.000000pt;}
.fs0_c00244{font-size:77.333333pt;}
.y0_c00244{bottom:0.000000pt;}
.y1f_c00244{bottom:2.760000pt;}
.y1e_c00244{bottom:6.425219pt;}
.y1d_c00244{bottom:47.480000pt;}
.y1c_c00244{bottom:72.413333pt;}
.y1b_c00244{bottom:95.213333pt;}
.y1a_c00244{bottom:116.680000pt;}
.y19_c00244{bottom:138.946667pt;}
.y18_c00244{bottom:161.213333pt;}
.y17_c00244{bottom:184.013333pt;}
.y16_c00244{bottom:205.613333pt;}
.y15_c00244{bottom:227.746667pt;}
.y14_c00244{bottom:249.346667pt;}
.y13_c00244{bottom:271.613333pt;}
.y12_c00244{bottom:291.613333pt;}
.y11_c00244{bottom:312.680000pt;}
.y10_c00244{bottom:335.080000pt;}
.yf_c00244{bottom:357.080000pt;}
.ye_c00244{bottom:379.213333pt;}
.yd_c00244{bottom:401.213333pt;}
.yc_c00244{bottom:423.613333pt;}
.yb_c00244{bottom:445.880000pt;}
.ya_c00244{bottom:468.013333pt;}
.y9_c00244{bottom:489.613333pt;}
.y8_c00244{bottom:511.880000pt;}
.y7_c00244{bottom:533.480000pt;}
.y6_c00244{bottom:555.080000pt;}
.y5_c00244{bottom:577.213333pt;}
.y4_c00244{bottom:599.213333pt;}
.y3_c00244{bottom:621.080000pt;}
.y2_c00244{bottom:643.213333pt;}
.y1_c00244{bottom:665.080000pt;}
.h5_c00244{height:11.733399pt;}
.h6_c00244{height:38.937500pt;}
.h4_c00244{height:70.902344pt;}
.h3_c00244{height:81.031250pt;}
.h2_c00244{height:97.912760pt;}
.h0_c00244{height:706.333333pt;}
.h1_c00244{height:706.666667pt;}
.w2_c00244{width:93.222667pt;}
.w1_c00244{width:463.333333pt;}
.w0_c00244{width:463.466667pt;}
.x0_c00244{left:0.000000pt;}
.x2_c00244{left:23.733333pt;}
.x3_c00244{left:26.133333pt;}
.x4_c00244{left:27.066667pt;}
.x5_c00244{left:28.000000pt;}
.x6_c00244{left:29.466667pt;}
.x7_c00244{left:31.600000pt;}
.x8_c00244{left:33.066667pt;}
.x9_c00244{left:35.466667pt;}
.xa_c00244{left:37.200000pt;}
.xb_c00244{left:38.400000pt;}
.xc_c00244{left:39.333333pt;}
.xd_c00244{left:40.400000pt;}
.x1_c00244{left:126.400000pt;}
.xf_c00244{left:188.901571pt;}
.xe_c00244{left:342.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_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_521af9d6e7327cb6f9cdb5d4.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.592000;font-style:normal;font-weight:normal;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_42ca6a7f4ee780e6466fa4ba.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:1.575000;font-style:normal;font-weight:normal;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_63806a51757107f6e1437acf.woff2')format("woff");}.ff3_c00245{font-family:ff3_c00245;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00245{font-family:ff4_c00245;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00245{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00245{vertical-align:0.000000px;}
.ls0_c00245{letter-spacing:-3.000000px;}
.ls2_c00245{letter-spacing:0.000000px;}
.ls1_c00245{letter-spacing:3.000000px;}
.sc__c00245{text-shadow:none;}
.sc0_c00245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00245{-webkit-text-stroke:0px transparent;}
.sc0_c00245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00245{word-spacing:-22.521000px;}
.ws1_c00245{word-spacing:0.000000px;}
._12_c00245{margin-left:-16.704000px;}
._16_c00245{margin-left:-10.536000px;}
._14_c00245{margin-left:-8.256000px;}
._15_c00245{margin-left:-6.792000px;}
._13_c00245{margin-left:-5.520000px;}
._11_c00245{margin-left:-4.464000px;}
._8_c00245{margin-left:-3.192000px;}
._a_c00245{margin-left:-1.512000px;}
._7_c00245{width:1.488000px;}
._b_c00245{width:2.568000px;}
._4_c00245{width:3.840000px;}
._9_c00245{width:4.872000px;}
._1_c00245{width:6.660000px;}
._d_c00245{width:7.692000px;}
._c_c00245{width:9.144000px;}
._6_c00245{width:11.160000px;}
._17_c00245{width:12.288000px;}
._e_c00245{width:13.368000px;}
._f_c00245{width:14.880000px;}
._10_c00245{width:16.080000px;}
._5_c00245{width:17.640000px;}
._2_c00245{width:18.900000px;}
._3_c00245{width:20.220000px;}
._0_c00245{width:25.020000px;}
.fc2_c00245{color:transparent;}
.fc1_c00245{color:rgb(128,128,128);}
.fc0_c00245{color:rgb(0,0,0);}
.fs3_c00245{font-size:48.000000px;}
.fs0_c00245{font-size:60.000000px;}
.fs1_c00245{font-size:72.000000px;}
.fs2_c00245{font-size:81.000000px;}
.y0_c00245{bottom:0.000000px;}
.y1f_c00245{bottom:3.105000px;}
.y1e_c00245{bottom:7.228369px;}
.y1d_c00245{bottom:56.070000px;}
.y1c_c00245{bottom:78.870000px;}
.y1b_c00245{bottom:104.670000px;}
.y1a_c00245{bottom:129.270000px;}
.y19_c00245{bottom:154.620000px;}
.y18_c00245{bottom:178.920000px;}
.y17_c00245{bottom:204.420000px;}
.y16_c00245{bottom:231.120000px;}
.y15_c00245{bottom:254.820000px;}
.y14_c00245{bottom:280.770000px;}
.y13_c00245{bottom:304.020000px;}
.y12_c00245{bottom:329.070000px;}
.y11_c00245{bottom:352.620000px;}
.y10_c00245{bottom:377.220000px;}
.yf_c00245{bottom:401.670000px;}
.ye_c00245{bottom:426.570000px;}
.yd_c00245{bottom:450.570000px;}
.yc_c00245{bottom:475.470000px;}
.yb_c00245{bottom:499.770000px;}
.ya_c00245{bottom:524.520000px;}
.y9_c00245{bottom:549.120000px;}
.y8_c00245{bottom:573.720000px;}
.y7_c00245{bottom:598.020000px;}
.y6_c00245{bottom:622.920000px;}
.y5_c00245{bottom:647.220000px;}
.y4_c00245{bottom:671.970000px;}
.y3_c00245{bottom:696.570000px;}
.y2_c00245{bottom:720.870000px;}
.y1_c00245{bottom:746.820000px;}
.h5_c00245{height:13.200073px;}
.h6_c00245{height:43.804688px;}
.h2_c00245{height:65.040000px;}
.h3_c00245{height:91.160156px;}
.h4_c00245{height:102.555176px;}
.h0_c00245{height:781.350000px;}
.h1_c00245{height:781.500000px;}
.w2_c00245{width:104.875500px;}
.w0_c00245{width:530.850000px;}
.w1_c00245{width:531.000000px;}
.x0_c00245{left:0.000000px;}
.x3_c00245{left:114.750000px;}
.x2_c00245{left:116.100000px;}
.x4_c00245{left:117.450000px;}
.x5_c00245{left:118.500000px;}
.x7_c00245{left:217.239258px;}
.x1_c00245{left:241.650000px;}
.x6_c00245{left:484.050000px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls0_c00245{letter-spacing:-2.666667pt;}
.ls2_c00245{letter-spacing:0.000000pt;}
.ls1_c00245{letter-spacing:2.666667pt;}
.ws0_c00245{word-spacing:-20.018667pt;}
.ws1_c00245{word-spacing:0.000000pt;}
._12_c00245{margin-left:-14.848000pt;}
._16_c00245{margin-left:-9.365333pt;}
._14_c00245{margin-left:-7.338667pt;}
._15_c00245{margin-left:-6.037333pt;}
._13_c00245{margin-left:-4.906667pt;}
._11_c00245{margin-left:-3.968000pt;}
._8_c00245{margin-left:-2.837333pt;}
._a_c00245{margin-left:-1.344000pt;}
._7_c00245{width:1.322667pt;}
._b_c00245{width:2.282667pt;}
._4_c00245{width:3.413333pt;}
._9_c00245{width:4.330667pt;}
._1_c00245{width:5.920000pt;}
._d_c00245{width:6.837333pt;}
._c_c00245{width:8.128000pt;}
._6_c00245{width:9.920000pt;}
._17_c00245{width:10.922667pt;}
._e_c00245{width:11.882667pt;}
._f_c00245{width:13.226667pt;}
._10_c00245{width:14.293333pt;}
._5_c00245{width:15.680000pt;}
._2_c00245{width:16.800000pt;}
._3_c00245{width:17.973333pt;}
._0_c00245{width:22.240000pt;}
.fs3_c00245{font-size:42.666667pt;}
.fs0_c00245{font-size:53.333333pt;}
.fs1_c00245{font-size:64.000000pt;}
.fs2_c00245{font-size:72.000000pt;}
.y0_c00245{bottom:0.000000pt;}
.y1f_c00245{bottom:2.760000pt;}
.y1e_c00245{bottom:6.425217pt;}
.y1d_c00245{bottom:49.840000pt;}
.y1c_c00245{bottom:70.106667pt;}
.y1b_c00245{bottom:93.040000pt;}
.y1a_c00245{bottom:114.906667pt;}
.y19_c00245{bottom:137.440000pt;}
.y18_c00245{bottom:159.040000pt;}
.y17_c00245{bottom:181.706667pt;}
.y16_c00245{bottom:205.440000pt;}
.y15_c00245{bottom:226.506667pt;}
.y14_c00245{bottom:249.573333pt;}
.y13_c00245{bottom:270.240000pt;}
.y12_c00245{bottom:292.506667pt;}
.y11_c00245{bottom:313.440000pt;}
.y10_c00245{bottom:335.306667pt;}
.yf_c00245{bottom:357.040000pt;}
.ye_c00245{bottom:379.173333pt;}
.yd_c00245{bottom:400.506667pt;}
.yc_c00245{bottom:422.640000pt;}
.yb_c00245{bottom:444.240000pt;}
.ya_c00245{bottom:466.240000pt;}
.y9_c00245{bottom:488.106667pt;}
.y8_c00245{bottom:509.973333pt;}
.y7_c00245{bottom:531.573333pt;}
.y6_c00245{bottom:553.706667pt;}
.y5_c00245{bottom:575.306667pt;}
.y4_c00245{bottom:597.306667pt;}
.y3_c00245{bottom:619.173333pt;}
.y2_c00245{bottom:640.773333pt;}
.y1_c00245{bottom:663.840000pt;}
.h5_c00245{height:11.733399pt;}
.h6_c00245{height:38.937500pt;}
.h2_c00245{height:57.813333pt;}
.h3_c00245{height:81.031250pt;}
.h4_c00245{height:91.160156pt;}
.h0_c00245{height:694.533333pt;}
.h1_c00245{height:694.666667pt;}
.w2_c00245{width:93.222667pt;}
.w0_c00245{width:471.866667pt;}
.w1_c00245{width:472.000000pt;}
.x0_c00245{left:0.000000pt;}
.x3_c00245{left:102.000000pt;}
.x2_c00245{left:103.200000pt;}
.x4_c00245{left:104.400000pt;}
.x5_c00245{left:105.333333pt;}
.x7_c00245{left:193.101563pt;}
.x1_c00245{left:214.800000pt;}
.x6_c00245{left:430.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_225618879576ca9f5923024b.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.480469;font-style:normal;font-weight:normal;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_a7b6df250aa56e3b517897d5.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00246{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00246{vertical-align:0.000000px;}
.ls1_c00246{letter-spacing:0.000000px;}
.ls0_c00246{letter-spacing:3.000000px;}
.sc__c00246{text-shadow:none;}
.sc0_c00246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00246{-webkit-text-stroke:0px transparent;}
.sc0_c00246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00246{word-spacing:-22.521000px;}
.ws1_c00246{word-spacing:0.000000px;}
._13_c00246{margin-left:-16.602000px;}
._12_c00246{margin-left:-13.248000px;}
._11_c00246{margin-left:-11.814000px;}
._c_c00246{margin-left:-9.942000px;}
._b_c00246{margin-left:-8.286000px;}
._f_c00246{margin-left:-7.080000px;}
._2_c00246{margin-left:-5.916000px;}
._14_c00246{margin-left:-4.872000px;}
._4_c00246{margin-left:-3.654000px;}
._3_c00246{margin-left:-1.740000px;}
._9_c00246{width:1.986000px;}
._10_c00246{width:3.000000px;}
._8_c00246{width:4.176000px;}
._7_c00246{width:5.868000px;}
._d_c00246{width:7.434000px;}
._a_c00246{width:8.568000px;}
._16_c00246{width:9.648000px;}
._1_c00246{width:10.788000px;}
._6_c00246{width:11.919000px;}
._e_c00246{width:13.644000px;}
._15_c00246{width:15.504000px;}
._0_c00246{width:17.052000px;}
._5_c00246{width:293.016000px;}
.fc2_c00246{color:transparent;}
.fc1_c00246{color:rgb(128,128,128);}
.fc0_c00246{color:rgb(0,0,0);}
.fs4_c00246{font-size:48.000000px;}
.fs2_c00246{font-size:63.000000px;}
.fs1_c00246{font-size:72.000000px;}
.fs3_c00246{font-size:81.000000px;}
.fs0_c00246{font-size:87.000000px;}
.y0_c00246{bottom:0.000000px;}
.y1f_c00246{bottom:3.105000px;}
.y1e_c00246{bottom:7.228369px;}
.y1d_c00246{bottom:57.270000px;}
.y1c_c00246{bottom:82.320000px;}
.y1b_c00246{bottom:110.370000px;}
.y1a_c00246{bottom:134.970000px;}
.y19_c00246{bottom:157.620000px;}
.y18_c00246{bottom:186.270000px;}
.y17_c00246{bottom:211.170000px;}
.y16_c00246{bottom:235.620000px;}
.y15_c00246{bottom:261.120000px;}
.y14_c00246{bottom:285.870000px;}
.y13_c00246{bottom:309.870000px;}
.y12_c00246{bottom:333.120000px;}
.y11_c00246{bottom:356.970000px;}
.y10_c00246{bottom:381.270000px;}
.yf_c00246{bottom:405.720000px;}
.ye_c00246{bottom:430.920000px;}
.yd_c00246{bottom:455.520000px;}
.yc_c00246{bottom:480.570000px;}
.yb_c00246{bottom:504.870000px;}
.ya_c00246{bottom:529.770000px;}
.y9_c00246{bottom:554.220000px;}
.y8_c00246{bottom:579.120000px;}
.y7_c00246{bottom:603.420000px;}
.y6_c00246{bottom:628.320000px;}
.y5_c00246{bottom:653.670000px;}
.y4_c00246{bottom:678.420000px;}
.y3_c00246{bottom:701.970000px;}
.y2_c00246{bottom:726.270000px;}
.y1_c00246{bottom:751.620000px;}
.h6_c00246{height:13.200073px;}
.h7_c00246{height:43.804688px;}
.h4_c00246{height:79.765137px;}
.h3_c00246{height:91.160156px;}
.h5_c00246{height:102.555176px;}
.h2_c00246{height:110.151855px;}
.h0_c00246{height:802.950000px;}
.h1_c00246{height:803.250000px;}
.w2_c00246{width:104.875500px;}
.w0_c00246{width:494.925000px;}
.w1_c00246{width:495.000000px;}
.x0_c00246{left:0.000000px;}
.x6_c00246{left:35.400000px;}
.x2_c00246{left:36.900000px;}
.x3_c00246{left:38.100000px;}
.x4_c00246{left:39.600000px;}
.x5_c00246{left:40.950000px;}
.x1_c00246{left:159.000000px;}
.x8_c00246{left:199.276749px;}
.x7_c00246{left:391.200000px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls1_c00246{letter-spacing:0.000000pt;}
.ls0_c00246{letter-spacing:2.666667pt;}
.ws0_c00246{word-spacing:-20.018667pt;}
.ws1_c00246{word-spacing:0.000000pt;}
._13_c00246{margin-left:-14.757333pt;}
._12_c00246{margin-left:-11.776000pt;}
._11_c00246{margin-left:-10.501333pt;}
._c_c00246{margin-left:-8.837333pt;}
._b_c00246{margin-left:-7.365333pt;}
._f_c00246{margin-left:-6.293333pt;}
._2_c00246{margin-left:-5.258667pt;}
._14_c00246{margin-left:-4.330667pt;}
._4_c00246{margin-left:-3.248000pt;}
._3_c00246{margin-left:-1.546667pt;}
._9_c00246{width:1.765333pt;}
._10_c00246{width:2.666667pt;}
._8_c00246{width:3.712000pt;}
._7_c00246{width:5.216000pt;}
._d_c00246{width:6.608000pt;}
._a_c00246{width:7.616000pt;}
._16_c00246{width:8.576000pt;}
._1_c00246{width:9.589333pt;}
._6_c00246{width:10.594667pt;}
._e_c00246{width:12.128000pt;}
._15_c00246{width:13.781333pt;}
._0_c00246{width:15.157333pt;}
._5_c00246{width:260.458667pt;}
.fs4_c00246{font-size:42.666667pt;}
.fs2_c00246{font-size:56.000000pt;}
.fs1_c00246{font-size:64.000000pt;}
.fs3_c00246{font-size:72.000000pt;}
.fs0_c00246{font-size:77.333333pt;}
.y0_c00246{bottom:0.000000pt;}
.y1f_c00246{bottom:2.760000pt;}
.y1e_c00246{bottom:6.425217pt;}
.y1d_c00246{bottom:50.906667pt;}
.y1c_c00246{bottom:73.173333pt;}
.y1b_c00246{bottom:98.106667pt;}
.y1a_c00246{bottom:119.973333pt;}
.y19_c00246{bottom:140.106667pt;}
.y18_c00246{bottom:165.573333pt;}
.y17_c00246{bottom:187.706667pt;}
.y16_c00246{bottom:209.440000pt;}
.y15_c00246{bottom:232.106667pt;}
.y14_c00246{bottom:254.106667pt;}
.y13_c00246{bottom:275.440000pt;}
.y12_c00246{bottom:296.106667pt;}
.y11_c00246{bottom:317.306667pt;}
.y10_c00246{bottom:338.906667pt;}
.yf_c00246{bottom:360.640000pt;}
.ye_c00246{bottom:383.040000pt;}
.yd_c00246{bottom:404.906667pt;}
.yc_c00246{bottom:427.173333pt;}
.yb_c00246{bottom:448.773333pt;}
.ya_c00246{bottom:470.906667pt;}
.y9_c00246{bottom:492.640000pt;}
.y8_c00246{bottom:514.773333pt;}
.y7_c00246{bottom:536.373333pt;}
.y6_c00246{bottom:558.506667pt;}
.y5_c00246{bottom:581.040000pt;}
.y4_c00246{bottom:603.040000pt;}
.y3_c00246{bottom:623.973333pt;}
.y2_c00246{bottom:645.573333pt;}
.y1_c00246{bottom:668.106667pt;}
.h6_c00246{height:11.733399pt;}
.h7_c00246{height:38.937500pt;}
.h4_c00246{height:70.902344pt;}
.h3_c00246{height:81.031250pt;}
.h5_c00246{height:91.160156pt;}
.h2_c00246{height:97.912760pt;}
.h0_c00246{height:713.733333pt;}
.h1_c00246{height:714.000000pt;}
.w2_c00246{width:93.222667pt;}
.w0_c00246{width:439.933333pt;}
.w1_c00246{width:440.000000pt;}
.x0_c00246{left:0.000000pt;}
.x6_c00246{left:31.466667pt;}
.x2_c00246{left:32.800000pt;}
.x3_c00246{left:33.866667pt;}
.x4_c00246{left:35.200000pt;}
.x5_c00246{left:36.400000pt;}
.x1_c00246{left:141.333333pt;}
.x8_c00246{left:177.134888pt;}
.x7_c00246{left:347.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_663b210cc0080e67e75ad56c.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.480469;font-style:normal;font-weight:normal;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_b617dceced5aaca82d60ba6e.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:1.568848;font-style:normal;font-weight:normal;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_54f9bb2a60eab11a9fb0de73.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00247;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00247{font-family:ff4_c00247;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00247{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00247{vertical-align:0.000000px;}
.ls0_c00247{letter-spacing:0.000000px;}
.ls1_c00247{letter-spacing:3.000000px;}
.ls2_c00247{letter-spacing:6.000000px;}
.sc__c00247{text-shadow:none;}
.sc0_c00247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00247{-webkit-text-stroke:0px transparent;}
.sc0_c00247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00247{word-spacing:-20.352000px;}
.ws0_c00247{word-spacing:-17.352000px;}
.ws2_c00247{word-spacing:0.000000px;}
._e_c00247{margin-left:-9.864000px;}
._11_c00247{margin-left:-7.848000px;}
._8_c00247{margin-left:-6.264000px;}
._f_c00247{margin-left:-5.112000px;}
._b_c00247{margin-left:-3.960000px;}
._6_c00247{margin-left:-2.520000px;}
._7_c00247{margin-left:-1.512000px;}
._5_c00247{width:1.872000px;}
._c_c00247{width:2.880000px;}
._9_c00247{width:3.888000px;}
._2_c00247{width:5.760000px;}
._1_c00247{width:7.080000px;}
._d_c00247{width:9.216000px;}
._4_c00247{width:11.040000px;}
._3_c00247{width:12.480000px;}
._a_c00247{width:14.208000px;}
._10_c00247{width:16.224000px;}
._0_c00247{width:18.060000px;}
._12_c00247{width:19.272000px;}
.fc2_c00247{color:transparent;}
.fc1_c00247{color:rgb(128,128,128);}
.fc0_c00247{color:rgb(0,0,0);}
.fs3_c00247{font-size:48.000000px;}
.fs2_c00247{font-size:57.000000px;}
.fs0_c00247{font-size:60.000000px;}
.fs1_c00247{font-size:72.000000px;}
.y0_c00247{bottom:0.000000px;}
.y1f_c00247{bottom:3.105000px;}
.y1e_c00247{bottom:7.228363px;}
.y1d_c00247{bottom:46.350000px;}
.y1c_c00247{bottom:68.550000px;}
.y1b_c00247{bottom:94.200000px;}
.y1a_c00247{bottom:119.100000px;}
.y19_c00247{bottom:144.900000px;}
.y18_c00247{bottom:169.350000px;}
.y17_c00247{bottom:194.700000px;}
.y16_c00247{bottom:219.450000px;}
.y15_c00247{bottom:244.350000px;}
.y14_c00247{bottom:268.950000px;}
.y13_c00247{bottom:294.000000px;}
.y12_c00247{bottom:318.300000px;}
.y11_c00247{bottom:342.000000px;}
.y10_c00247{bottom:369.000000px;}
.yf_c00247{bottom:391.500000px;}
.ye_c00247{bottom:416.100000px;}
.yd_c00247{bottom:441.450000px;}
.yc_c00247{bottom:465.750000px;}
.yb_c00247{bottom:490.050000px;}
.ya_c00247{bottom:514.800000px;}
.y9_c00247{bottom:539.400000px;}
.y8_c00247{bottom:564.000000px;}
.y7_c00247{bottom:588.900000px;}
.y6_c00247{bottom:613.500000px;}
.y5_c00247{bottom:638.100000px;}
.y4_c00247{bottom:662.250000px;}
.y3_c00247{bottom:687.450000px;}
.y2_c00247{bottom:711.750000px;}
.y1_c00247{bottom:737.400000px;}
.h3_c00247{height:13.200074px;}
.h4_c00247{height:43.804688px;}
.h1_c00247{height:75.966797px;}
.h2_c00247{height:91.160156px;}
.h0_c00247{height:783.000000px;}
.w1_c00247{width:104.875500px;}
.w0_c00247{width:522.750000px;}
.x0_c00247{left:0.000000px;}
.x4_c00247{left:104.250000px;}
.x2_c00247{left:105.300000px;}
.x3_c00247{left:106.350000px;}
.x5_c00247{left:107.400000px;}
.x6_c00247{left:108.750000px;}
.x7_c00247{left:110.400000px;}
.x8_c00247{left:112.350000px;}
.xa_c00247{left:213.189240px;}
.x1_c00247{left:230.850000px;}
.x9_c00247{left:445.800000px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls0_c00247{letter-spacing:0.000000pt;}
.ls1_c00247{letter-spacing:2.666667pt;}
.ls2_c00247{letter-spacing:5.333333pt;}
.ws1_c00247{word-spacing:-18.090667pt;}
.ws0_c00247{word-spacing:-15.424000pt;}
.ws2_c00247{word-spacing:0.000000pt;}
._e_c00247{margin-left:-8.768000pt;}
._11_c00247{margin-left:-6.976000pt;}
._8_c00247{margin-left:-5.568000pt;}
._f_c00247{margin-left:-4.544000pt;}
._b_c00247{margin-left:-3.520000pt;}
._6_c00247{margin-left:-2.240000pt;}
._7_c00247{margin-left:-1.344000pt;}
._5_c00247{width:1.664000pt;}
._c_c00247{width:2.560000pt;}
._9_c00247{width:3.456000pt;}
._2_c00247{width:5.120000pt;}
._1_c00247{width:6.293333pt;}
._d_c00247{width:8.192000pt;}
._4_c00247{width:9.813333pt;}
._3_c00247{width:11.093333pt;}
._a_c00247{width:12.629333pt;}
._10_c00247{width:14.421333pt;}
._0_c00247{width:16.053333pt;}
._12_c00247{width:17.130667pt;}
.fs3_c00247{font-size:42.666667pt;}
.fs2_c00247{font-size:50.666667pt;}
.fs0_c00247{font-size:53.333333pt;}
.fs1_c00247{font-size:64.000000pt;}
.y0_c00247{bottom:0.000000pt;}
.y1f_c00247{bottom:2.760000pt;}
.y1e_c00247{bottom:6.425212pt;}
.y1d_c00247{bottom:41.200000pt;}
.y1c_c00247{bottom:60.933333pt;}
.y1b_c00247{bottom:83.733333pt;}
.y1a_c00247{bottom:105.866667pt;}
.y19_c00247{bottom:128.800000pt;}
.y18_c00247{bottom:150.533333pt;}
.y17_c00247{bottom:173.066667pt;}
.y16_c00247{bottom:195.066667pt;}
.y15_c00247{bottom:217.200000pt;}
.y14_c00247{bottom:239.066667pt;}
.y13_c00247{bottom:261.333333pt;}
.y12_c00247{bottom:282.933333pt;}
.y11_c00247{bottom:304.000000pt;}
.y10_c00247{bottom:328.000000pt;}
.yf_c00247{bottom:348.000000pt;}
.ye_c00247{bottom:369.866667pt;}
.yd_c00247{bottom:392.400000pt;}
.yc_c00247{bottom:414.000000pt;}
.yb_c00247{bottom:435.600000pt;}
.ya_c00247{bottom:457.600000pt;}
.y9_c00247{bottom:479.466667pt;}
.y8_c00247{bottom:501.333333pt;}
.y7_c00247{bottom:523.466667pt;}
.y6_c00247{bottom:545.333333pt;}
.y5_c00247{bottom:567.200000pt;}
.y4_c00247{bottom:588.666667pt;}
.y3_c00247{bottom:611.066667pt;}
.y2_c00247{bottom:632.666667pt;}
.y1_c00247{bottom:655.466667pt;}
.h3_c00247{height:11.733399pt;}
.h4_c00247{height:38.937500pt;}
.h1_c00247{height:67.526042pt;}
.h2_c00247{height:81.031250pt;}
.h0_c00247{height:696.000000pt;}
.w1_c00247{width:93.222667pt;}
.w0_c00247{width:464.666667pt;}
.x0_c00247{left:0.000000pt;}
.x4_c00247{left:92.666667pt;}
.x2_c00247{left:93.600000pt;}
.x3_c00247{left:94.533333pt;}
.x5_c00247{left:95.466667pt;}
.x6_c00247{left:96.666667pt;}
.x7_c00247{left:98.133333pt;}
.x8_c00247{left:99.866667pt;}
.xa_c00247{left:189.501546pt;}
.x1_c00247{left:205.200000pt;}
.x9_c00247{left:396.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c4dbc28105c36f2050c2ff9b.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.480469;font-style:normal;font-weight:normal;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_0bc22d0fba2986fa9fa6f483.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00248{font-family:ff3_c00248;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00248{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00248{vertical-align:0.000000px;}
.ls2_c00248{letter-spacing:-6.000000px;}
.ls0_c00248{letter-spacing:0.000000px;}
.ls1_c00248{letter-spacing:3.000000px;}
.ls3_c00248{letter-spacing:6.000000px;}
.sc__c00248{text-shadow:none;}
.sc0_c00248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00248{-webkit-text-stroke:0px transparent;}
.sc0_c00248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00248{word-spacing:-20.352000px;}
.ws1_c00248{word-spacing:-17.352000px;}
.ws0_c00248{word-spacing:-9.906000px;}
.ws3_c00248{word-spacing:0.000000px;}
._9_c00248{margin-left:-6.261000px;}
._3_c00248{margin-left:-4.455000px;}
._2_c00248{margin-left:-2.529000px;}
._6_c00248{margin-left:-1.008000px;}
._0_c00248{width:1.305000px;}
._5_c00248{width:2.619000px;}
._4_c00248{width:4.536000px;}
._8_c00248{width:6.408000px;}
._7_c00248{width:7.992000px;}
._11_c00248{width:10.014000px;}
._10_c00248{width:11.295000px;}
._b_c00248{width:12.318000px;}
._a_c00248{width:13.647000px;}
._12_c00248{width:14.703000px;}
._c_c00248{width:16.461000px;}
._f_c00248{width:17.940000px;}
._e_c00248{width:24.900000px;}
._d_c00248{width:28.917000px;}
._1_c00248{width:360.963000px;}
.fc2_c00248{color:transparent;}
.fc1_c00248{color:rgb(128,128,128);}
.fc0_c00248{color:rgb(0,0,0);}
.fs5_c00248{font-size:48.000000px;}
.fs3_c00248{font-size:60.000000px;}
.fs2_c00248{font-size:66.000000px;}
.fs4_c00248{font-size:69.000000px;}
.fs1_c00248{font-size:72.000000px;}
.fs0_c00248{font-size:87.000000px;}
.y0_c00248{bottom:0.000000px;}
.y1f_c00248{bottom:3.105000px;}
.y1e_c00248{bottom:7.228363px;}
.y1d_c00248{bottom:52.350000px;}
.y1c_c00248{bottom:78.300000px;}
.y1b_c00248{bottom:105.300000px;}
.y1a_c00248{bottom:131.400000px;}
.y19_c00248{bottom:156.900000px;}
.y18_c00248{bottom:181.650000px;}
.y17_c00248{bottom:207.900000px;}
.y16_c00248{bottom:232.500000px;}
.y15_c00248{bottom:257.550000px;}
.y14_c00248{bottom:282.750000px;}
.y13_c00248{bottom:306.150000px;}
.y12_c00248{bottom:329.100000px;}
.y11_c00248{bottom:353.400000px;}
.y10_c00248{bottom:378.300000px;}
.yf_c00248{bottom:402.600000px;}
.ye_c00248{bottom:427.650000px;}
.yd_c00248{bottom:452.850000px;}
.yc_c00248{bottom:477.600000px;}
.yb_c00248{bottom:502.200000px;}
.ya_c00248{bottom:526.800000px;}
.y9_c00248{bottom:552.150000px;}
.y8_c00248{bottom:576.450000px;}
.y7_c00248{bottom:601.350000px;}
.y6_c00248{bottom:627.000000px;}
.y5_c00248{bottom:650.700000px;}
.y4_c00248{bottom:675.750000px;}
.y3_c00248{bottom:700.050000px;}
.y2_c00248{bottom:724.650000px;}
.y1_c00248{bottom:750.300000px;}
.h4_c00248{height:13.200074px;}
.h5_c00248{height:43.804688px;}
.h3_c00248{height:91.160156px;}
.h2_c00248{height:101.825684px;}
.h1_c00248{height:795.000000px;}
.h0_c00248{height:795.150000px;}
.w2_c00248{width:104.875500px;}
.w0_c00248{width:536.775000px;}
.w1_c00248{width:537.000000px;}
.x0_c00248{left:0.000000px;}
.x2_c00248{left:23.550000px;}
.x3_c00248{left:25.950000px;}
.x4_c00248{left:27.300000px;}
.x5_c00248{left:28.650000px;}
.x6_c00248{left:106.950000px;}
.x1_c00248{left:134.550000px;}
.x8_c00248{left:220.201767px;}
.x7_c00248{left:377.700000px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls2_c00248{letter-spacing:-5.333333pt;}
.ls0_c00248{letter-spacing:0.000000pt;}
.ls1_c00248{letter-spacing:2.666667pt;}
.ls3_c00248{letter-spacing:5.333333pt;}
.ws2_c00248{word-spacing:-18.090667pt;}
.ws1_c00248{word-spacing:-15.424000pt;}
.ws0_c00248{word-spacing:-8.805333pt;}
.ws3_c00248{word-spacing:0.000000pt;}
._9_c00248{margin-left:-5.565333pt;}
._3_c00248{margin-left:-3.960000pt;}
._2_c00248{margin-left:-2.248000pt;}
._6_c00248{margin-left:-0.896000pt;}
._0_c00248{width:1.160000pt;}
._5_c00248{width:2.328000pt;}
._4_c00248{width:4.032000pt;}
._8_c00248{width:5.696000pt;}
._7_c00248{width:7.104000pt;}
._11_c00248{width:8.901333pt;}
._10_c00248{width:10.040000pt;}
._b_c00248{width:10.949333pt;}
._a_c00248{width:12.130667pt;}
._12_c00248{width:13.069333pt;}
._c_c00248{width:14.632000pt;}
._f_c00248{width:15.946667pt;}
._e_c00248{width:22.133333pt;}
._d_c00248{width:25.704000pt;}
._1_c00248{width:320.856000pt;}
.fs5_c00248{font-size:42.666667pt;}
.fs3_c00248{font-size:53.333333pt;}
.fs2_c00248{font-size:58.666667pt;}
.fs4_c00248{font-size:61.333333pt;}
.fs1_c00248{font-size:64.000000pt;}
.fs0_c00248{font-size:77.333333pt;}
.y0_c00248{bottom:0.000000pt;}
.y1f_c00248{bottom:2.760000pt;}
.y1e_c00248{bottom:6.425212pt;}
.y1d_c00248{bottom:46.533333pt;}
.y1c_c00248{bottom:69.600000pt;}
.y1b_c00248{bottom:93.600000pt;}
.y1a_c00248{bottom:116.800000pt;}
.y19_c00248{bottom:139.466667pt;}
.y18_c00248{bottom:161.466667pt;}
.y17_c00248{bottom:184.800000pt;}
.y16_c00248{bottom:206.666667pt;}
.y15_c00248{bottom:228.933333pt;}
.y14_c00248{bottom:251.333333pt;}
.y13_c00248{bottom:272.133333pt;}
.y12_c00248{bottom:292.533333pt;}
.y11_c00248{bottom:314.133333pt;}
.y10_c00248{bottom:336.266667pt;}
.yf_c00248{bottom:357.866667pt;}
.ye_c00248{bottom:380.133333pt;}
.yd_c00248{bottom:402.533333pt;}
.yc_c00248{bottom:424.533333pt;}
.yb_c00248{bottom:446.400000pt;}
.ya_c00248{bottom:468.266667pt;}
.y9_c00248{bottom:490.800000pt;}
.y8_c00248{bottom:512.400000pt;}
.y7_c00248{bottom:534.533333pt;}
.y6_c00248{bottom:557.333333pt;}
.y5_c00248{bottom:578.400000pt;}
.y4_c00248{bottom:600.666667pt;}
.y3_c00248{bottom:622.266667pt;}
.y2_c00248{bottom:644.133333pt;}
.y1_c00248{bottom:666.933333pt;}
.h4_c00248{height:11.733399pt;}
.h5_c00248{height:38.937500pt;}
.h3_c00248{height:81.031250pt;}
.h2_c00248{height:90.511719pt;}
.h1_c00248{height:706.666667pt;}
.h0_c00248{height:706.800000pt;}
.w2_c00248{width:93.222667pt;}
.w0_c00248{width:477.133333pt;}
.w1_c00248{width:477.333333pt;}
.x0_c00248{left:0.000000pt;}
.x2_c00248{left:20.933333pt;}
.x3_c00248{left:23.066667pt;}
.x4_c00248{left:24.266667pt;}
.x5_c00248{left:25.466667pt;}
.x6_c00248{left:95.066667pt;}
.x1_c00248{left:119.600000pt;}
.x8_c00248{left:195.734904pt;}
.x7_c00248{left:335.733333pt;}
}





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

.ir_c00249:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00249{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00249;src:url('chunks/assets/font_87bebecda99df8c9262d68dc.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00249;src:url('chunks/assets/font_553c0525674899ce7c6e754a.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00249;src:url('chunks/assets/font_285fb940e0420e41197e4478.woff2')format("woff");}.ff3_c00249{font-family:ff3_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00249;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00249{font-family:ff4_c00249;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00249{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00249{vertical-align:0.000000px;}
.ls3_c00249{letter-spacing:-3.000000px;}
.ls1_c00249{letter-spacing:0.000000px;}
.ls2_c00249{letter-spacing:3.000000px;}
.ls0_c00249{letter-spacing:7.017000px;}
.sc__c00249{text-shadow:none;}
.sc0_c00249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00249{-webkit-text-stroke:0px transparent;}
.sc0_c00249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00249{word-spacing:-20.967000px;}
.ws0_c00249{word-spacing:-16.521000px;}
.ws1_c00249{word-spacing:-3.807000px;}
.ws3_c00249{word-spacing:0.000000px;}
._f_c00249{margin-left:-12.744000px;}
._12_c00249{margin-left:-10.368000px;}
._10_c00249{margin-left:-9.072000px;}
._e_c00249{margin-left:-7.488000px;}
._d_c00249{margin-left:-5.904000px;}
._b_c00249{margin-left:-4.752000px;}
._8_c00249{margin-left:-3.744000px;}
._a_c00249{margin-left:-2.520000px;}
._9_c00249{margin-left:-1.152000px;}
._5_c00249{width:1.080000px;}
._6_c00249{width:2.304000px;}
._7_c00249{width:4.104000px;}
._11_c00249{width:5.616000px;}
._1_c00249{width:6.780000px;}
._c_c00249{width:8.064000px;}
._4_c00249{width:10.440000px;}
._3_c00249{width:12.000000px;}
._2_c00249{width:13.320000px;}
._16_c00249{width:14.760000px;}
._13_c00249{width:15.768000px;}
._0_c00249{width:17.760000px;}
._14_c00249{width:21.672000px;}
._15_c00249{width:31.176000px;}
.fc2_c00249{color:transparent;}
.fc1_c00249{color:rgb(128,128,128);}
.fc0_c00249{color:rgb(0,0,0);}
.fs6_c00249{font-size:48.000000px;}
.fs0_c00249{font-size:60.000000px;}
.fs4_c00249{font-size:63.000000px;}
.fs3_c00249{font-size:69.000000px;}
.fs1_c00249{font-size:72.000000px;}
.fs2_c00249{font-size:81.000000px;}
.fs5_c00249{font-size:87.000000px;}
.y0_c00249{bottom:0.000000px;}
.y1f_c00249{bottom:3.105000px;}
.y1e_c00249{bottom:7.228355px;}
.y1d_c00249{bottom:47.835000px;}
.y1c_c00249{bottom:72.585000px;}
.y1b_c00249{bottom:98.235000px;}
.y1a_c00249{bottom:123.735000px;}
.y19_c00249{bottom:149.085000px;}
.y18_c00249{bottom:174.135000px;}
.y17_c00249{bottom:198.735000px;}
.y16_c00249{bottom:223.785000px;}
.y15_c00249{bottom:248.385000px;}
.y14_c00249{bottom:273.735000px;}
.y13_c00249{bottom:298.035000px;}
.y12_c00249{bottom:322.185000px;}
.y11_c00249{bottom:346.485000px;}
.y10_c00249{bottom:370.935000px;}
.yf_c00249{bottom:395.235000px;}
.ye_c00249{bottom:420.435000px;}
.yd_c00249{bottom:444.735000px;}
.yc_c00249{bottom:469.035000px;}
.yb_c00249{bottom:492.735000px;}
.ya_c00249{bottom:518.085000px;}
.y9_c00249{bottom:542.985000px;}
.y8_c00249{bottom:566.985000px;}
.y7_c00249{bottom:591.585000px;}
.y6_c00249{bottom:616.485000px;}
.y5_c00249{bottom:640.785000px;}
.y4_c00249{bottom:666.135000px;}
.y3_c00249{bottom:690.435000px;}
.y2_c00249{bottom:715.185000px;}
.y1_c00249{bottom:740.385000px;}
.h6_c00249{height:13.200074px;}
.h7_c00249{height:43.804688px;}
.h2_c00249{height:70.224609px;}
.h3_c00249{height:91.160156px;}
.h4_c00249{height:94.803223px;}
.h5_c00249{height:110.151855px;}
.h0_c00249{height:782.175000px;}
.h1_c00249{height:782.250000px;}
.w2_c00249{width:104.875500px;}
.w1_c00249{width:507.000000px;}
.w0_c00249{width:507.075000px;}
.x0_c00249{left:0.000000px;}
.x7_c00249{left:96.150000px;}
.x4_c00249{left:97.800000px;}
.x3_c00249{left:99.150000px;}
.x2_c00249{left:100.800000px;}
.x5_c00249{left:102.150000px;}
.x6_c00249{left:104.400000px;}
.x9_c00249{left:205.351730px;}
.x1_c00249{left:215.100000px;}
.x8_c00249{left:450.300000px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls3_c00249{letter-spacing:-2.666667pt;}
.ls1_c00249{letter-spacing:0.000000pt;}
.ls2_c00249{letter-spacing:2.666667pt;}
.ls0_c00249{letter-spacing:6.237333pt;}
.ws2_c00249{word-spacing:-18.637333pt;}
.ws0_c00249{word-spacing:-14.685333pt;}
.ws1_c00249{word-spacing:-3.384000pt;}
.ws3_c00249{word-spacing:0.000000pt;}
._f_c00249{margin-left:-11.328000pt;}
._12_c00249{margin-left:-9.216000pt;}
._10_c00249{margin-left:-8.064000pt;}
._e_c00249{margin-left:-6.656000pt;}
._d_c00249{margin-left:-5.248000pt;}
._b_c00249{margin-left:-4.224000pt;}
._8_c00249{margin-left:-3.328000pt;}
._a_c00249{margin-left:-2.240000pt;}
._9_c00249{margin-left:-1.024000pt;}
._5_c00249{width:0.960000pt;}
._6_c00249{width:2.048000pt;}
._7_c00249{width:3.648000pt;}
._11_c00249{width:4.992000pt;}
._1_c00249{width:6.026667pt;}
._c_c00249{width:7.168000pt;}
._4_c00249{width:9.280000pt;}
._3_c00249{width:10.666667pt;}
._2_c00249{width:11.840000pt;}
._16_c00249{width:13.120000pt;}
._13_c00249{width:14.016000pt;}
._0_c00249{width:15.786667pt;}
._14_c00249{width:19.264000pt;}
._15_c00249{width:27.712000pt;}
.fs6_c00249{font-size:42.666667pt;}
.fs0_c00249{font-size:53.333333pt;}
.fs4_c00249{font-size:56.000000pt;}
.fs3_c00249{font-size:61.333333pt;}
.fs1_c00249{font-size:64.000000pt;}
.fs2_c00249{font-size:72.000000pt;}
.fs5_c00249{font-size:77.333333pt;}
.y0_c00249{bottom:0.000000pt;}
.y1f_c00249{bottom:2.760000pt;}
.y1e_c00249{bottom:6.425204pt;}
.y1d_c00249{bottom:42.520000pt;}
.y1c_c00249{bottom:64.520000pt;}
.y1b_c00249{bottom:87.320000pt;}
.y1a_c00249{bottom:109.986667pt;}
.y19_c00249{bottom:132.520000pt;}
.y18_c00249{bottom:154.786667pt;}
.y17_c00249{bottom:176.653333pt;}
.y16_c00249{bottom:198.920000pt;}
.y15_c00249{bottom:220.786667pt;}
.y14_c00249{bottom:243.320000pt;}
.y13_c00249{bottom:264.920000pt;}
.y12_c00249{bottom:286.386667pt;}
.y11_c00249{bottom:307.986667pt;}
.y10_c00249{bottom:329.720000pt;}
.yf_c00249{bottom:351.320000pt;}
.ye_c00249{bottom:373.720000pt;}
.yd_c00249{bottom:395.320000pt;}
.yc_c00249{bottom:416.920000pt;}
.yb_c00249{bottom:437.986667pt;}
.ya_c00249{bottom:460.520000pt;}
.y9_c00249{bottom:482.653333pt;}
.y8_c00249{bottom:503.986667pt;}
.y7_c00249{bottom:525.853333pt;}
.y6_c00249{bottom:547.986667pt;}
.y5_c00249{bottom:569.586667pt;}
.y4_c00249{bottom:592.120000pt;}
.y3_c00249{bottom:613.720000pt;}
.y2_c00249{bottom:635.720000pt;}
.y1_c00249{bottom:658.120000pt;}
.h6_c00249{height:11.733399pt;}
.h7_c00249{height:38.937500pt;}
.h2_c00249{height:62.421875pt;}
.h3_c00249{height:81.031250pt;}
.h4_c00249{height:84.269531pt;}
.h5_c00249{height:97.912760pt;}
.h0_c00249{height:695.266667pt;}
.h1_c00249{height:695.333333pt;}
.w2_c00249{width:93.222667pt;}
.w1_c00249{width:450.666667pt;}
.w0_c00249{width:450.733333pt;}
.x0_c00249{left:0.000000pt;}
.x7_c00249{left:85.466667pt;}
.x4_c00249{left:86.933333pt;}
.x3_c00249{left:88.133333pt;}
.x2_c00249{left:89.600000pt;}
.x5_c00249{left:90.800000pt;}
.x6_c00249{left:92.800000pt;}
.x9_c00249{left:182.534871pt;}
.x1_c00249{left:191.200000pt;}
.x8_c00249{left:400.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7099ff5c1e8fbcfcca95a22c.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.480469;font-style:normal;font-weight:normal;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_ddd7819c15feb4dc577b08d0.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00250;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00250{font-family:ff3_c00250;line-height:1.219238;font-style: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;}
.ls1_c00250{letter-spacing:-3.000000px;}
.ls2_c00250{letter-spacing:0.000000px;}
.ls0_c00250{letter-spacing:6.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;}
}
.ws2_c00250{word-spacing:-18.075000px;}
.ws1_c00250{word-spacing:-15.075000px;}
.ws0_c00250{word-spacing:-0.900000px;}
.ws3_c00250{word-spacing:0.000000px;}
._15_c00250{margin-left:-12.453000px;}
._14_c00250{margin-left:-8.751000px;}
._a_c00250{margin-left:-7.347000px;}
._8_c00250{margin-left:-5.766000px;}
._10_c00250{margin-left:-4.725000px;}
._9_c00250{margin-left:-3.441000px;}
._e_c00250{margin-left:-2.217000px;}
._11_c00250{margin-left:-1.041000px;}
._c_c00250{width:1.266000px;}
._b_c00250{width:2.400000px;}
._1_c00250{width:3.540000px;}
._d_c00250{width:4.866000px;}
._12_c00250{width:5.934000px;}
._5_c00250{width:7.140000px;}
._f_c00250{width:8.910000px;}
._3_c00250{width:10.140000px;}
._13_c00250{width:11.685000px;}
._0_c00250{width:12.780000px;}
._17_c00250{width:13.800000px;}
._6_c00250{width:15.300000px;}
._4_c00250{width:16.500000px;}
._16_c00250{width:22.692000px;}
._2_c00250{width:24.840000px;}
._18_c00250{width:34.263000px;}
._7_c00250{width:316.383000px;}
.fc2_c00250{color:transparent;}
.fc1_c00250{color:rgb(128,128,128);}
.fc0_c00250{color:rgb(0,0,0);}
.fs3_c00250{font-size:48.000000px;}
.fs0_c00250{font-size:60.000000px;}
.fs2_c00250{font-size:75.000000px;}
.fs1_c00250{font-size:93.000000px;}
.y0_c00250{bottom:0.000000px;}
.y1f_c00250{bottom:3.105000px;}
.y1e_c00250{bottom:7.228355px;}
.y1d_c00250{bottom:48.885000px;}
.y1c_c00250{bottom:76.185000px;}
.y1b_c00250{bottom:101.235000px;}
.y1a_c00250{bottom:126.885000px;}
.y19_c00250{bottom:150.735000px;}
.y18_c00250{bottom:177.135000px;}
.y17_c00250{bottom:201.735000px;}
.y16_c00250{bottom:225.435000px;}
.y15_c00250{bottom:247.035000px;}
.y14_c00250{bottom:274.935000px;}
.y13_c00250{bottom:296.985000px;}
.y12_c00250{bottom:321.285000px;}
.y11_c00250{bottom:345.285000px;}
.y10_c00250{bottom:369.435000px;}
.yf_c00250{bottom:394.185000px;}
.ye_c00250{bottom:419.085000px;}
.yd_c00250{bottom:443.385000px;}
.yc_c00250{bottom:468.135000px;}
.yb_c00250{bottom:492.435000px;}
.ya_c00250{bottom:516.735000px;}
.y9_c00250{bottom:541.635000px;}
.y8_c00250{bottom:566.235000px;}
.y7_c00250{bottom:590.835000px;}
.y6_c00250{bottom:615.135000px;}
.y5_c00250{bottom:639.435000px;}
.y4_c00250{bottom:664.185000px;}
.y3_c00250{bottom:688.485000px;}
.y2_c00250{bottom:713.085000px;}
.y1_c00250{bottom:737.685000px;}
.h4_c00250{height:13.200074px;}
.h5_c00250{height:43.804688px;}
.h3_c00250{height:94.958496px;}
.h2_c00250{height:117.748535px;}
.h0_c00250{height:783.525000px;}
.h1_c00250{height:783.750000px;}
.w1_c00250{width:104.875500px;}
.w0_c00250{width:519.750000px;}
.x0_c00250{left:0.000000px;}
.xa_c00250{left:32.100000px;}
.x9_c00250{left:33.150000px;}
.x6_c00250{left:34.200000px;}
.x4_c00250{left:35.850000px;}
.x5_c00250{left:36.900000px;}
.x3_c00250{left:38.250000px;}
.x2_c00250{left:39.600000px;}
.x8_c00250{left:61.500000px;}
.x1_c00250{left:159.600000px;}
.xc_c00250{left:211.689240px;}
.x7_c00250{left:260.850000px;}
.xb_c00250{left:286.500000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls1_c00250{letter-spacing:-2.666667pt;}
.ls2_c00250{letter-spacing:0.000000pt;}
.ls0_c00250{letter-spacing:5.333333pt;}
.ws2_c00250{word-spacing:-16.066667pt;}
.ws1_c00250{word-spacing:-13.400000pt;}
.ws0_c00250{word-spacing:-0.800000pt;}
.ws3_c00250{word-spacing:0.000000pt;}
._15_c00250{margin-left:-11.069333pt;}
._14_c00250{margin-left:-7.778667pt;}
._a_c00250{margin-left:-6.530667pt;}
._8_c00250{margin-left:-5.125333pt;}
._10_c00250{margin-left:-4.200000pt;}
._9_c00250{margin-left:-3.058667pt;}
._e_c00250{margin-left:-1.970667pt;}
._11_c00250{margin-left:-0.925333pt;}
._c_c00250{width:1.125333pt;}
._b_c00250{width:2.133333pt;}
._1_c00250{width:3.146667pt;}
._d_c00250{width:4.325333pt;}
._12_c00250{width:5.274667pt;}
._5_c00250{width:6.346667pt;}
._f_c00250{width:7.920000pt;}
._3_c00250{width:9.013333pt;}
._13_c00250{width:10.386667pt;}
._0_c00250{width:11.360000pt;}
._17_c00250{width:12.266667pt;}
._6_c00250{width:13.600000pt;}
._4_c00250{width:14.666667pt;}
._16_c00250{width:20.170667pt;}
._2_c00250{width:22.080000pt;}
._18_c00250{width:30.456000pt;}
._7_c00250{width:281.229333pt;}
.fs3_c00250{font-size:42.666667pt;}
.fs0_c00250{font-size:53.333333pt;}
.fs2_c00250{font-size:66.666667pt;}
.fs1_c00250{font-size:82.666667pt;}
.y0_c00250{bottom:0.000000pt;}
.y1f_c00250{bottom:2.760000pt;}
.y1e_c00250{bottom:6.425204pt;}
.y1d_c00250{bottom:43.453333pt;}
.y1c_c00250{bottom:67.720000pt;}
.y1b_c00250{bottom:89.986667pt;}
.y1a_c00250{bottom:112.786667pt;}
.y19_c00250{bottom:133.986667pt;}
.y18_c00250{bottom:157.453333pt;}
.y17_c00250{bottom:179.320000pt;}
.y16_c00250{bottom:200.386667pt;}
.y15_c00250{bottom:219.586667pt;}
.y14_c00250{bottom:244.386667pt;}
.y13_c00250{bottom:263.986667pt;}
.y12_c00250{bottom:285.586667pt;}
.y11_c00250{bottom:306.920000pt;}
.y10_c00250{bottom:328.386667pt;}
.yf_c00250{bottom:350.386667pt;}
.ye_c00250{bottom:372.520000pt;}
.yd_c00250{bottom:394.120000pt;}
.yc_c00250{bottom:416.120000pt;}
.yb_c00250{bottom:437.720000pt;}
.ya_c00250{bottom:459.320000pt;}
.y9_c00250{bottom:481.453333pt;}
.y8_c00250{bottom:503.320000pt;}
.y7_c00250{bottom:525.186667pt;}
.y6_c00250{bottom:546.786667pt;}
.y5_c00250{bottom:568.386667pt;}
.y4_c00250{bottom:590.386667pt;}
.y3_c00250{bottom:611.986667pt;}
.y2_c00250{bottom:633.853333pt;}
.y1_c00250{bottom:655.720000pt;}
.h4_c00250{height:11.733399pt;}
.h5_c00250{height:38.937500pt;}
.h3_c00250{height:84.407552pt;}
.h2_c00250{height:104.665365pt;}
.h0_c00250{height:696.466667pt;}
.h1_c00250{height:696.666667pt;}
.w1_c00250{width:93.222667pt;}
.w0_c00250{width:462.000000pt;}
.x0_c00250{left:0.000000pt;}
.xa_c00250{left:28.533333pt;}
.x9_c00250{left:29.466667pt;}
.x6_c00250{left:30.400000pt;}
.x4_c00250{left:31.866667pt;}
.x5_c00250{left:32.800000pt;}
.x3_c00250{left:34.000000pt;}
.x2_c00250{left:35.200000pt;}
.x8_c00250{left:54.666667pt;}
.x1_c00250{left:141.866667pt;}
.xc_c00250{left:188.168213pt;}
.x7_c00250{left:231.866667pt;}
.xb_c00250{left:254.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_c00251 {
    display:none;
  }
  .loading-indicator_c00251.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00251 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00251 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00251" -> "#page-container .classname_c00251")
 */
.pf_c00251 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00251 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00251.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00251 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00251 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00251 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00251 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00251 {overflow:visible;}
  }
}
.c_c00251 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00251 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00251:after { /* webkit #35443 */
  content: '';
}
.t_c00251:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00251 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00251 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00251 { /* info for Javascript */
  display:none;
}
.l_c00251 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00251 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00251 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00251:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00251{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00251;src:url('chunks/assets/font_bce3d8ef17ff29088a479abe.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00251;src:url('chunks/assets/font_1c73edc5fc78800e630ab3b0.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00251;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00251{font-family:ff3_c00251;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00251{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00251{vertical-align:0.000000px;}
.ls2_c00251{letter-spacing:0.000000px;}
.ls1_c00251{letter-spacing:3.000000px;}
.ls0_c00251{letter-spacing:4.242000px;}
.ls3_c00251{letter-spacing:12.000000px;}
.sc__c00251{text-shadow:none;}
.sc0_c00251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00251{-webkit-text-stroke:0px transparent;}
.sc0_c00251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00251{word-spacing:-29.352000px;}
.ws0_c00251{word-spacing:-17.352000px;}
.ws1_c00251{word-spacing:-16.629000px;}
.ws3_c00251{word-spacing:0.000000px;}
._11_c00251{margin-left:-17.136000px;}
._f_c00251{margin-left:-13.680000px;}
._10_c00251{margin-left:-10.584000px;}
._12_c00251{margin-left:-8.928000px;}
._c_c00251{margin-left:-7.848000px;}
._b_c00251{margin-left:-6.336000px;}
._8_c00251{margin-left:-4.464000px;}
._a_c00251{margin-left:-3.456000px;}
._9_c00251{margin-left:-1.728000px;}
._5_c00251{width:1.368000px;}
._4_c00251{width:2.376000px;}
._3_c00251{width:3.456000px;}
._e_c00251{width:4.824000px;}
._d_c00251{width:6.768000px;}
._1_c00251{width:8.151000px;}
._0_c00251{width:10.032000px;}
._6_c00251{width:13.248000px;}
._7_c00251{width:15.465000px;}
._2_c00251{width:20.805000px;}
._14_c00251{width:24.396000px;}
._13_c00251{width:144.327000px;}
.fc2_c00251{color:transparent;}
.fc1_c00251{color:rgb(128,128,128);}
.fc0_c00251{color:rgb(0,0,0);}
.fs3_c00251{font-size:48.000000px;}
.fs0_c00251{font-size:57.000000px;}
.fs2_c00251{font-size:69.000000px;}
.fs1_c00251{font-size:72.000000px;}
.y0_c00251{bottom:0.000000px;}
.y1e_c00251{bottom:3.105000px;}
.y1d_c00251{bottom:7.228357px;}
.y1c_c00251{bottom:41.280000px;}
.y1b_c00251{bottom:92.130000px;}
.y1a_c00251{bottom:118.830000px;}
.y19_c00251{bottom:144.480000px;}
.y18_c00251{bottom:168.180000px;}
.y17_c00251{bottom:192.330000px;}
.y16_c00251{bottom:218.730000px;}
.y15_c00251{bottom:242.430000px;}
.y14_c00251{bottom:266.730000px;}
.y13_c00251{bottom:291.630000px;}
.y12_c00251{bottom:316.530000px;}
.y11_c00251{bottom:340.530000px;}
.y10_c00251{bottom:364.830000px;}
.yf_c00251{bottom:389.880000px;}
.ye_c00251{bottom:413.430000px;}
.yd_c00251{bottom:438.480000px;}
.yc_c00251{bottom:462.330000px;}
.yb_c00251{bottom:486.780000px;}
.ya_c00251{bottom:511.380000px;}
.y9_c00251{bottom:535.980000px;}
.y8_c00251{bottom:560.580000px;}
.y7_c00251{bottom:585.180000px;}
.y6_c00251{bottom:609.180000px;}
.y5_c00251{bottom:633.480000px;}
.y4_c00251{bottom:658.230000px;}
.y3_c00251{bottom:683.130000px;}
.y2_c00251{bottom:707.430000px;}
.y1_c00251{bottom:733.680000px;}
.h6_c00251{height:13.200074px;}
.h7_c00251{height:43.804688px;}
.h2_c00251{height:72.168457px;}
.h5_c00251{height:84.269531px;}
.h4_c00251{height:87.361816px;}
.h3_c00251{height:91.160156px;}
.h1_c00251{height:769.500000px;}
.h0_c00251{height:769.800000px;}
.w2_c00251{width:104.875500px;}
.w0_c00251{width:491.925000px;}
.w1_c00251{width:492.000000px;}
.x0_c00251{left:0.000000px;}
.x2_c00251{left:73.950000px;}
.x3_c00251{left:75.300000px;}
.x4_c00251{left:76.350000px;}
.x5_c00251{left:77.700000px;}
.x6_c00251{left:79.050000px;}
.x7_c00251{left:80.100000px;}
.x8_c00251{left:81.600000px;}
.x9_c00251{left:84.000000px;}
.xa_c00251{left:85.350000px;}
.xc_c00251{left:95.550000px;}
.xb_c00251{left:111.450000px;}
.x1_c00251{left:196.800000px;}
.xd_c00251{left:204.300000px;}
.xe_c00251{left:421.200000px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls2_c00251{letter-spacing:0.000000pt;}
.ls1_c00251{letter-spacing:2.666667pt;}
.ls0_c00251{letter-spacing:3.770667pt;}
.ls3_c00251{letter-spacing:10.666667pt;}
.ws2_c00251{word-spacing:-26.090667pt;}
.ws0_c00251{word-spacing:-15.424000pt;}
.ws1_c00251{word-spacing:-14.781333pt;}
.ws3_c00251{word-spacing:0.000000pt;}
._11_c00251{margin-left:-15.232000pt;}
._f_c00251{margin-left:-12.160000pt;}
._10_c00251{margin-left:-9.408000pt;}
._12_c00251{margin-left:-7.936000pt;}
._c_c00251{margin-left:-6.976000pt;}
._b_c00251{margin-left:-5.632000pt;}
._8_c00251{margin-left:-3.968000pt;}
._a_c00251{margin-left:-3.072000pt;}
._9_c00251{margin-left:-1.536000pt;}
._5_c00251{width:1.216000pt;}
._4_c00251{width:2.112000pt;}
._3_c00251{width:3.072000pt;}
._e_c00251{width:4.288000pt;}
._d_c00251{width:6.016000pt;}
._1_c00251{width:7.245333pt;}
._0_c00251{width:8.917333pt;}
._6_c00251{width:11.776000pt;}
._7_c00251{width:13.746667pt;}
._2_c00251{width:18.493333pt;}
._14_c00251{width:21.685333pt;}
._13_c00251{width:128.290667pt;}
.fs3_c00251{font-size:42.666667pt;}
.fs0_c00251{font-size:50.666667pt;}
.fs2_c00251{font-size:61.333333pt;}
.fs1_c00251{font-size:64.000000pt;}
.y0_c00251{bottom:0.000000pt;}
.y1e_c00251{bottom:2.760000pt;}
.y1d_c00251{bottom:6.425206pt;}
.y1c_c00251{bottom:36.693333pt;}
.y1b_c00251{bottom:81.893333pt;}
.y1a_c00251{bottom:105.626667pt;}
.y19_c00251{bottom:128.426667pt;}
.y18_c00251{bottom:149.493333pt;}
.y17_c00251{bottom:170.960000pt;}
.y16_c00251{bottom:194.426667pt;}
.y15_c00251{bottom:215.493333pt;}
.y14_c00251{bottom:237.093333pt;}
.y13_c00251{bottom:259.226667pt;}
.y12_c00251{bottom:281.360000pt;}
.y11_c00251{bottom:302.693333pt;}
.y10_c00251{bottom:324.293333pt;}
.yf_c00251{bottom:346.560000pt;}
.ye_c00251{bottom:367.493333pt;}
.yd_c00251{bottom:389.760000pt;}
.yc_c00251{bottom:410.960000pt;}
.yb_c00251{bottom:432.693333pt;}
.ya_c00251{bottom:454.560000pt;}
.y9_c00251{bottom:476.426667pt;}
.y8_c00251{bottom:498.293333pt;}
.y7_c00251{bottom:520.160000pt;}
.y6_c00251{bottom:541.493333pt;}
.y5_c00251{bottom:563.093333pt;}
.y4_c00251{bottom:585.093333pt;}
.y3_c00251{bottom:607.226667pt;}
.y2_c00251{bottom:628.826667pt;}
.y1_c00251{bottom:652.160000pt;}
.h6_c00251{height:11.733399pt;}
.h7_c00251{height:38.937500pt;}
.h2_c00251{height:64.149740pt;}
.h5_c00251{height:74.906250pt;}
.h4_c00251{height:77.654948pt;}
.h3_c00251{height:81.031250pt;}
.h1_c00251{height:684.000000pt;}
.h0_c00251{height:684.266667pt;}
.w2_c00251{width:93.222667pt;}
.w0_c00251{width:437.266667pt;}
.w1_c00251{width:437.333333pt;}
.x0_c00251{left:0.000000pt;}
.x2_c00251{left:65.733333pt;}
.x3_c00251{left:66.933333pt;}
.x4_c00251{left:67.866667pt;}
.x5_c00251{left:69.066667pt;}
.x6_c00251{left:70.266667pt;}
.x7_c00251{left:71.200000pt;}
.x8_c00251{left:72.533333pt;}
.x9_c00251{left:74.666667pt;}
.xa_c00251{left:75.866667pt;}
.xc_c00251{left:84.933333pt;}
.xb_c00251{left:99.066667pt;}
.x1_c00251{left:174.933333pt;}
.xd_c00251{left:181.600000pt;}
.xe_c00251{left:374.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a369986905ac6e6d7e01b499.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.568848;font-style:normal;font-weight:normal;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_e99544183810c52fc3edbfc0.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.480469;font-style:normal;font-weight:normal;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_d085a9915144e078803769c8.woff2')format("woff");}.ff3_c00252{font-family:ff3_c00252;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00252;src:url('chunks/assets/font_494ea771c39ea8b29026b5c8.woff2')format("woff");}.ff4_c00252{font-family:ff4_c00252;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00252;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00252{font-family:ff5_c00252;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00252{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00252{vertical-align:0.000000px;}
.ls5_c00252{letter-spacing:0.000000px;}
.ls1_c00252{letter-spacing:3.000000px;}
.ls2_c00252{letter-spacing:8.700000px;}
.ls4_c00252{letter-spacing:9.000000px;}
.ls0_c00252{letter-spacing:17.400000px;}
.ls3_c00252{letter-spacing:27.000000px;}
.sc__c00252{text-shadow:none;}
.sc0_c00252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00252{-webkit-text-stroke:0px transparent;}
.sc0_c00252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00252{word-spacing:-22.977000px;}
.ws2_c00252{word-spacing:-20.967000px;}
.ws0_c00252{word-spacing:-20.352000px;}
.ws4_c00252{word-spacing:-19.629000px;}
.ws3_c00252{word-spacing:-17.352000px;}
.ws6_c00252{word-spacing:-16.629000px;}
.ws1_c00252{word-spacing:-8.043000px;}
.ws7_c00252{word-spacing:0.000000px;}
._1f_c00252{margin-left:-25.029000px;}
._d_c00252{margin-left:-20.358000px;}
._9_c00252{margin-left:-16.965000px;}
._1d_c00252{margin-left:-14.022000px;}
._12_c00252{margin-left:-11.832000px;}
._1b_c00252{margin-left:-10.533000px;}
._e_c00252{margin-left:-9.483000px;}
._f_c00252{margin-left:-7.743000px;}
._15_c00252{margin-left:-6.735000px;}
._11_c00252{margin-left:-5.568000px;}
._b_c00252{margin-left:-4.089000px;}
._c_c00252{margin-left:-2.697000px;}
._a_c00252{margin-left:-1.653000px;}
._13_c00252{width:2.001000px;}
._14_c00252{width:3.045000px;}
._10_c00252{width:4.959000px;}
._2_c00252{width:6.438000px;}
._18_c00252{width:8.127000px;}
._3_c00252{width:9.483000px;}
._1_c00252{width:10.701000px;}
._19_c00252{width:12.138000px;}
._0_c00252{width:13.320000px;}
._1c_c00252{width:14.487000px;}
._17_c00252{width:16.017000px;}
._16_c00252{width:17.175000px;}
._4_c00252{width:20.802000px;}
._6_c00252{width:27.492000px;}
._1a_c00252{width:29.598000px;}
._20_c00252{width:31.842000px;}
._8_c00252{width:33.234000px;}
._5_c00252{width:36.714000px;}
._7_c00252{width:38.193000px;}
._1e_c00252{width:155.562000px;}
._21_c00252{width:201.417000px;}
.fc2_c00252{color:transparent;}
.fc1_c00252{color:rgb(128,128,128);}
.fc0_c00252{color:rgb(0,0,0);}
.fs4_c00252{font-size:48.000000px;}
.fs2_c00252{font-size:60.000000px;}
.fs3_c00252{font-size:69.000000px;}
.fs0_c00252{font-size:72.000000px;}
.fs1_c00252{font-size:87.000000px;}
.y0_c00252{bottom:0.000000px;}
.y19_c00252{bottom:3.105000px;}
.y18_c00252{bottom:7.228355px;}
.y17_c00252{bottom:50.985000px;}
.y16_c00252{bottom:76.935000px;}
.y15_c00252{bottom:101.535000px;}
.y14_c00252{bottom:125.535000px;}
.y13_c00252{bottom:152.535000px;}
.y12_c00252{bottom:176.085000px;}
.y11_c00252{bottom:201.735000px;}
.y10_c00252{bottom:226.635000px;}
.yf_c00252{bottom:250.335000px;}
.ye_c00252{bottom:274.035000px;}
.yd_c00252{bottom:297.585000px;}
.yc_c00252{bottom:345.135000px;}
.yb_c00252{bottom:369.585000px;}
.ya_c00252{bottom:394.185000px;}
.y9_c00252{bottom:418.785000px;}
.y8_c00252{bottom:523.335000px;}
.y7_c00252{bottom:550.335000px;}
.y6_c00252{bottom:578.835000px;}
.y5_c00252{bottom:605.685000px;}
.y4_c00252{bottom:633.135000px;}
.y3_c00252{bottom:660.735000px;}
.y2_c00252{bottom:707.985000px;}
.y1_c00252{bottom:736.635000px;}
.h6_c00252{height:13.200074px;}
.h7_c00252{height:43.804688px;}
.h5_c00252{height:87.361816px;}
.h2_c00252{height:91.160156px;}
.h3_c00252{height:101.825684px;}
.h4_c00252{height:110.151855px;}
.h1_c00252{height:786.000000px;}
.h0_c00252{height:786.225000px;}
.w2_c00252{width:104.875500px;}
.w1_c00252{width:542.250000px;}
.w0_c00252{width:542.400000px;}
.x0_c00252{left:0.000000px;}
.xa_c00252{left:37.800000px;}
.x4_c00252{left:39.150000px;}
.x3_c00252{left:40.500000px;}
.x2_c00252{left:54.900000px;}
.x5_c00252{left:63.450000px;}
.xb_c00252{left:79.200000px;}
.x6_c00252{left:120.600000px;}
.x8_c00252{left:162.750000px;}
.x7_c00252{left:177.300000px;}
.xd_c00252{left:223.014267px;}
.xc_c00252{left:267.600000px;}
.x9_c00252{left:288.900000px;}
.x1_c00252{left:381.000000px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls5_c00252{letter-spacing:0.000000pt;}
.ls1_c00252{letter-spacing:2.666667pt;}
.ls2_c00252{letter-spacing:7.733333pt;}
.ls4_c00252{letter-spacing:8.000000pt;}
.ls0_c00252{letter-spacing:15.466667pt;}
.ls3_c00252{letter-spacing:24.000000pt;}
.ws5_c00252{word-spacing:-20.424000pt;}
.ws2_c00252{word-spacing:-18.637333pt;}
.ws0_c00252{word-spacing:-18.090667pt;}
.ws4_c00252{word-spacing:-17.448000pt;}
.ws3_c00252{word-spacing:-15.424000pt;}
.ws6_c00252{word-spacing:-14.781333pt;}
.ws1_c00252{word-spacing:-7.149333pt;}
.ws7_c00252{word-spacing:0.000000pt;}
._1f_c00252{margin-left:-22.248000pt;}
._d_c00252{margin-left:-18.096000pt;}
._9_c00252{margin-left:-15.080000pt;}
._1d_c00252{margin-left:-12.464000pt;}
._12_c00252{margin-left:-10.517333pt;}
._1b_c00252{margin-left:-9.362667pt;}
._e_c00252{margin-left:-8.429333pt;}
._f_c00252{margin-left:-6.882667pt;}
._15_c00252{margin-left:-5.986667pt;}
._11_c00252{margin-left:-4.949333pt;}
._b_c00252{margin-left:-3.634667pt;}
._c_c00252{margin-left:-2.397333pt;}
._a_c00252{margin-left:-1.469333pt;}
._13_c00252{width:1.778667pt;}
._14_c00252{width:2.706667pt;}
._10_c00252{width:4.408000pt;}
._2_c00252{width:5.722667pt;}
._18_c00252{width:7.224000pt;}
._3_c00252{width:8.429333pt;}
._1_c00252{width:9.512000pt;}
._19_c00252{width:10.789333pt;}
._0_c00252{width:11.840000pt;}
._1c_c00252{width:12.877333pt;}
._17_c00252{width:14.237333pt;}
._16_c00252{width:15.266667pt;}
._4_c00252{width:18.490667pt;}
._6_c00252{width:24.437333pt;}
._1a_c00252{width:26.309333pt;}
._20_c00252{width:28.304000pt;}
._8_c00252{width:29.541333pt;}
._5_c00252{width:32.634667pt;}
._7_c00252{width:33.949333pt;}
._1e_c00252{width:138.277333pt;}
._21_c00252{width:179.037333pt;}
.fs4_c00252{font-size:42.666667pt;}
.fs2_c00252{font-size:53.333333pt;}
.fs3_c00252{font-size:61.333333pt;}
.fs0_c00252{font-size:64.000000pt;}
.fs1_c00252{font-size:77.333333pt;}
.y0_c00252{bottom:0.000000pt;}
.y19_c00252{bottom:2.760000pt;}
.y18_c00252{bottom:6.425204pt;}
.y17_c00252{bottom:45.320000pt;}
.y16_c00252{bottom:68.386667pt;}
.y15_c00252{bottom:90.253333pt;}
.y14_c00252{bottom:111.586667pt;}
.y13_c00252{bottom:135.586667pt;}
.y12_c00252{bottom:156.520000pt;}
.y11_c00252{bottom:179.320000pt;}
.y10_c00252{bottom:201.453333pt;}
.yf_c00252{bottom:222.520000pt;}
.ye_c00252{bottom:243.586667pt;}
.yd_c00252{bottom:264.520000pt;}
.yc_c00252{bottom:306.786667pt;}
.yb_c00252{bottom:328.520000pt;}
.ya_c00252{bottom:350.386667pt;}
.y9_c00252{bottom:372.253333pt;}
.y8_c00252{bottom:465.186667pt;}
.y7_c00252{bottom:489.186667pt;}
.y6_c00252{bottom:514.520000pt;}
.y5_c00252{bottom:538.386667pt;}
.y4_c00252{bottom:562.786667pt;}
.y3_c00252{bottom:587.320000pt;}
.y2_c00252{bottom:629.320000pt;}
.y1_c00252{bottom:654.786667pt;}
.h6_c00252{height:11.733399pt;}
.h7_c00252{height:38.937500pt;}
.h5_c00252{height:77.654948pt;}
.h2_c00252{height:81.031250pt;}
.h3_c00252{height:90.511719pt;}
.h4_c00252{height:97.912760pt;}
.h1_c00252{height:698.666667pt;}
.h0_c00252{height:698.866667pt;}
.w2_c00252{width:93.222667pt;}
.w1_c00252{width:482.000000pt;}
.w0_c00252{width:482.133333pt;}
.x0_c00252{left:0.000000pt;}
.xa_c00252{left:33.600000pt;}
.x4_c00252{left:34.800000pt;}
.x3_c00252{left:36.000000pt;}
.x2_c00252{left:48.800000pt;}
.x5_c00252{left:56.400000pt;}
.xb_c00252{left:70.400000pt;}
.x6_c00252{left:107.200000pt;}
.x8_c00252{left:144.666667pt;}
.x7_c00252{left:157.600000pt;}
.xd_c00252{left:198.234904pt;}
.xc_c00252{left:237.866667pt;}
.x9_c00252{left:256.800000pt;}
.x1_c00252{left:338.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_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_0fe235e14c7613f43ac65756.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.568848;font-style:normal;font-weight:normal;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_9272973d0729267518a34142.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00253{font-family:ff3_c00253;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00253{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.ls1_c00253{letter-spacing:-3.000000px;}
.ls0_c00253{letter-spacing:0.000000px;}
.ls2_c00253{letter-spacing:3.000000px;}
.sc__c00253{text-shadow:none;}
.sc0_c00253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00253{-webkit-text-stroke:0px transparent;}
.sc0_c00253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00253{word-spacing:-33.192000px;}
.ws0_c00253{word-spacing:-3.840000px;}
.ws2_c00253{word-spacing:0.000000px;}
._2_c00253{margin-left:-50.220000px;}
._19_c00253{margin-left:-14.472000px;}
._15_c00253{margin-left:-13.050000px;}
._12_c00253{margin-left:-11.232000px;}
._c_c00253{margin-left:-8.352000px;}
._a_c00253{margin-left:-6.102000px;}
._0_c00253{margin-left:-5.022000px;}
._8_c00253{margin-left:-3.456000px;}
._7_c00253{margin-left:-1.512000px;}
._9_c00253{width:1.854000px;}
._b_c00253{width:3.744000px;}
._f_c00253{width:5.526000px;}
._e_c00253{width:7.182000px;}
._13_c00253{width:8.346000px;}
._4_c00253{width:10.014000px;}
._10_c00253{width:11.448000px;}
._14_c00253{width:12.606000px;}
._17_c00253{width:14.208000px;}
._16_c00253{width:15.408000px;}
._d_c00253{width:16.614000px;}
._5_c00253{width:18.180000px;}
._6_c00253{width:19.800000px;}
._18_c00253{width:25.128000px;}
._1_c00253{width:26.226000px;}
._3_c00253{width:298.596000px;}
._11_c00253{width:563.130000px;}
.fc2_c00253{color:transparent;}
.fc1_c00253{color:rgb(128,128,128);}
.fc0_c00253{color:rgb(0,0,0);}
.fs3_c00253{font-size:48.000000px;}
.fs1_c00253{font-size:60.000000px;}
.fs2_c00253{font-size:72.000000px;}
.fs0_c00253{font-size:93.000000px;}
.y0_c00253{bottom:0.000000px;}
.y1e_c00253{bottom:3.105000px;}
.y1d_c00253{bottom:7.228371px;}
.y1c_c00253{bottom:72.015000px;}
.y1b_c00253{bottom:98.565000px;}
.y1a_c00253{bottom:123.315000px;}
.y19_c00253{bottom:147.615000px;}
.y18_c00253{bottom:172.815000px;}
.y17_c00253{bottom:197.565000px;}
.y16_c00253{bottom:223.215000px;}
.y15_c00253{bottom:247.515000px;}
.y14_c00253{bottom:272.415000px;}
.y13_c00253{bottom:296.715000px;}
.y12_c00253{bottom:320.715000px;}
.y11_c00253{bottom:345.015000px;}
.y10_c00253{bottom:369.315000px;}
.yf_c00253{bottom:394.215000px;}
.ye_c00253{bottom:416.865000px;}
.yd_c00253{bottom:441.465000px;}
.yc_c00253{bottom:466.515000px;}
.yb_c00253{bottom:490.815000px;}
.ya_c00253{bottom:514.815000px;}
.y9_c00253{bottom:539.715000px;}
.y8_c00253{bottom:564.615000px;}
.y7_c00253{bottom:588.315000px;}
.y6_c00253{bottom:612.615000px;}
.y5_c00253{bottom:637.965000px;}
.y4_c00253{bottom:662.265000px;}
.y3_c00253{bottom:687.165000px;}
.y2_c00253{bottom:711.465000px;}
.y1_c00253{bottom:737.415000px;}
.h4_c00253{height:13.200074px;}
.h5_c00253{height:43.804688px;}
.h3_c00253{height:91.160156px;}
.h2_c00253{height:117.748535px;}
.h1_c00253{height:783.750000px;}
.h0_c00253{height:783.825000px;}
.w2_c00253{width:104.875500px;}
.w1_c00253{width:497.250000px;}
.w0_c00253{width:497.325000px;}
.x0_c00253{left:0.000000px;}
.x2_c00253{left:76.200000px;}
.x3_c00253{left:78.900000px;}
.x4_c00253{left:80.250000px;}
.x5_c00253{left:81.600000px;}
.x8_c00253{left:82.650000px;}
.x6_c00253{left:86.400000px;}
.x7_c00253{left:87.750000px;}
.x1_c00253{left:99.150000px;}
.xa_c00253{left:129.600000px;}
.x9_c00253{left:156.900000px;}
.xb_c00253{left:200.476730px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls1_c00253{letter-spacing:-2.666667pt;}
.ls0_c00253{letter-spacing:0.000000pt;}
.ls2_c00253{letter-spacing:2.666667pt;}
.ws1_c00253{word-spacing:-29.504000pt;}
.ws0_c00253{word-spacing:-3.413333pt;}
.ws2_c00253{word-spacing:0.000000pt;}
._2_c00253{margin-left:-44.640000pt;}
._19_c00253{margin-left:-12.864000pt;}
._15_c00253{margin-left:-11.600000pt;}
._12_c00253{margin-left:-9.984000pt;}
._c_c00253{margin-left:-7.424000pt;}
._a_c00253{margin-left:-5.424000pt;}
._0_c00253{margin-left:-4.464000pt;}
._8_c00253{margin-left:-3.072000pt;}
._7_c00253{margin-left:-1.344000pt;}
._9_c00253{width:1.648000pt;}
._b_c00253{width:3.328000pt;}
._f_c00253{width:4.912000pt;}
._e_c00253{width:6.384000pt;}
._13_c00253{width:7.418667pt;}
._4_c00253{width:8.901333pt;}
._10_c00253{width:10.176000pt;}
._14_c00253{width:11.205333pt;}
._17_c00253{width:12.629333pt;}
._16_c00253{width:13.696000pt;}
._d_c00253{width:14.768000pt;}
._5_c00253{width:16.160000pt;}
._6_c00253{width:17.600000pt;}
._18_c00253{width:22.336000pt;}
._1_c00253{width:23.312000pt;}
._3_c00253{width:265.418667pt;}
._11_c00253{width:500.560000pt;}
.fs3_c00253{font-size:42.666667pt;}
.fs1_c00253{font-size:53.333333pt;}
.fs2_c00253{font-size:64.000000pt;}
.fs0_c00253{font-size:82.666667pt;}
.y0_c00253{bottom:0.000000pt;}
.y1e_c00253{bottom:2.760000pt;}
.y1d_c00253{bottom:6.425219pt;}
.y1c_c00253{bottom:64.013333pt;}
.y1b_c00253{bottom:87.613333pt;}
.y1a_c00253{bottom:109.613333pt;}
.y19_c00253{bottom:131.213333pt;}
.y18_c00253{bottom:153.613333pt;}
.y17_c00253{bottom:175.613333pt;}
.y16_c00253{bottom:198.413333pt;}
.y15_c00253{bottom:220.013333pt;}
.y14_c00253{bottom:242.146667pt;}
.y13_c00253{bottom:263.746667pt;}
.y12_c00253{bottom:285.080000pt;}
.y11_c00253{bottom:306.680000pt;}
.y10_c00253{bottom:328.280000pt;}
.yf_c00253{bottom:350.413333pt;}
.ye_c00253{bottom:370.546667pt;}
.yd_c00253{bottom:392.413333pt;}
.yc_c00253{bottom:414.680000pt;}
.yb_c00253{bottom:436.280000pt;}
.ya_c00253{bottom:457.613333pt;}
.y9_c00253{bottom:479.746667pt;}
.y8_c00253{bottom:501.880000pt;}
.y7_c00253{bottom:522.946667pt;}
.y6_c00253{bottom:544.546667pt;}
.y5_c00253{bottom:567.080000pt;}
.y4_c00253{bottom:588.680000pt;}
.y3_c00253{bottom:610.813333pt;}
.y2_c00253{bottom:632.413333pt;}
.y1_c00253{bottom:655.480000pt;}
.h4_c00253{height:11.733399pt;}
.h5_c00253{height:38.937500pt;}
.h3_c00253{height:81.031250pt;}
.h2_c00253{height:104.665365pt;}
.h1_c00253{height:696.666667pt;}
.h0_c00253{height:696.733333pt;}
.w2_c00253{width:93.222667pt;}
.w1_c00253{width:442.000000pt;}
.w0_c00253{width:442.066667pt;}
.x0_c00253{left:0.000000pt;}
.x2_c00253{left:67.733333pt;}
.x3_c00253{left:70.133333pt;}
.x4_c00253{left:71.333333pt;}
.x5_c00253{left:72.533333pt;}
.x8_c00253{left:73.466667pt;}
.x6_c00253{left:76.800000pt;}
.x7_c00253{left:78.000000pt;}
.x1_c00253{left:88.133333pt;}
.xa_c00253{left:115.200000pt;}
.x9_c00253{left:139.466667pt;}
.xb_c00253{left:178.201538pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_11841d1d5f385757a9def0ba.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.480469;font-style:normal;font-weight:normal;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_3488ae9d4204b1285dd3f84a.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.568848;font-style:normal;font-weight:normal;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_e0139a8bf19b443506e195b6.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00254;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00254{font-family:ff4_c00254;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00254{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.ls0_c00254{letter-spacing:0.000000px;}
.ls1_c00254{letter-spacing:3.000000px;}
.ls2_c00254{letter-spacing:63.000000px;}
.sc__c00254{text-shadow:none;}
.sc0_c00254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00254{-webkit-text-stroke:0px transparent;}
.sc0_c00254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00254{word-spacing:-79.629000px;}
.ws2_c00254{word-spacing:-22.977000px;}
.ws1_c00254{word-spacing:-19.629000px;}
.ws3_c00254{word-spacing:0.000000px;}
._19_c00254{margin-left:-27.195000px;}
._1a_c00254{margin-left:-18.078000px;}
._13_c00254{margin-left:-14.607000px;}
._16_c00254{margin-left:-11.751000px;}
._14_c00254{margin-left:-10.005000px;}
._18_c00254{margin-left:-8.730000px;}
._8_c00254{margin-left:-7.413000px;}
._15_c00254{margin-left:-6.204000px;}
._11_c00254{margin-left:-5.094000px;}
._d_c00254{margin-left:-3.801000px;}
._4_c00254{margin-left:-2.697000px;}
._5_c00254{margin-left:-1.044000px;}
._c_c00254{width:1.122000px;}
._9_c00254{width:2.514000px;}
._b_c00254{width:3.588000px;}
._a_c00254{width:5.007000px;}
._12_c00254{width:6.027000px;}
._2_c00254{width:7.047000px;}
._e_c00254{width:8.673000px;}
._f_c00254{width:10.053000px;}
._1_c00254{width:11.397000px;}
._10_c00254{width:12.657000px;}
._3_c00254{width:13.746000px;}
._0_c00254{width:15.486000px;}
._7_c00254{width:23.490000px;}
._1d_c00254{width:40.953000px;}
._1c_c00254{width:81.504000px;}
._1b_c00254{width:283.068000px;}
._17_c00254{width:306.633000px;}
._1e_c00254{width:324.063000px;}
._6_c00254{width:342.432000px;}
.fc2_c00254{color:transparent;}
.fc1_c00254{color:rgb(128,128,128);}
.fc0_c00254{color:rgb(0,0,0);}
.fs3_c00254{font-size:48.000000px;}
.fs1_c00254{font-size:69.000000px;}
.fs2_c00254{font-size:72.000000px;}
.fs0_c00254{font-size:87.000000px;}
.y0_c00254{bottom:0.000000px;}
.y1f_c00254{bottom:3.105000px;}
.y1e_c00254{bottom:7.228371px;}
.y1d_c00254{bottom:51.315000px;}
.y1c_c00254{bottom:77.415000px;}
.y1b_c00254{bottom:102.915000px;}
.y1a_c00254{bottom:128.565000px;}
.y19_c00254{bottom:153.615000px;}
.y18_c00254{bottom:178.665000px;}
.y17_c00254{bottom:203.865000px;}
.y16_c00254{bottom:228.615000px;}
.y15_c00254{bottom:252.915000px;}
.y14_c00254{bottom:278.415000px;}
.y13_c00254{bottom:303.165000px;}
.y12_c00254{bottom:324.465000px;}
.y11_c00254{bottom:348.015000px;}
.y10_c00254{bottom:373.065000px;}
.yf_c00254{bottom:398.565000px;}
.ye_c00254{bottom:422.565000px;}
.yd_c00254{bottom:447.315000px;}
.yc_c00254{bottom:472.215000px;}
.yb_c00254{bottom:496.215000px;}
.ya_c00254{bottom:521.415000px;}
.y9_c00254{bottom:545.865000px;}
.y8_c00254{bottom:570.765000px;}
.y7_c00254{bottom:595.815000px;}
.y6_c00254{bottom:620.115000px;}
.y5_c00254{bottom:645.315000px;}
.y4_c00254{bottom:669.315000px;}
.y3_c00254{bottom:694.215000px;}
.y2_c00254{bottom:718.665000px;}
.y1_c00254{bottom:743.565000px;}
.h5_c00254{height:13.200074px;}
.h6_c00254{height:43.804688px;}
.h3_c00254{height:87.361816px;}
.h4_c00254{height:91.160156px;}
.h2_c00254{height:101.825684px;}
.h1_c00254{height:789.000000px;}
.h0_c00254{height:789.225000px;}
.w2_c00254{width:104.875500px;}
.w0_c00254{width:537.600000px;}
.w1_c00254{width:537.750000px;}
.x0_c00254{left:0.000000px;}
.x5_c00254{left:38.400000px;}
.x4_c00254{left:40.500000px;}
.x3_c00254{left:42.300000px;}
.x2_c00254{left:43.950000px;}
.x1_c00254{left:152.250000px;}
.x7_c00254{left:220.614258px;}
.x6_c00254{left:265.800000px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls0_c00254{letter-spacing:0.000000pt;}
.ls1_c00254{letter-spacing:2.666667pt;}
.ls2_c00254{letter-spacing:56.000000pt;}
.ws0_c00254{word-spacing:-70.781333pt;}
.ws2_c00254{word-spacing:-20.424000pt;}
.ws1_c00254{word-spacing:-17.448000pt;}
.ws3_c00254{word-spacing:0.000000pt;}
._19_c00254{margin-left:-24.173333pt;}
._1a_c00254{margin-left:-16.069333pt;}
._13_c00254{margin-left:-12.984000pt;}
._16_c00254{margin-left:-10.445333pt;}
._14_c00254{margin-left:-8.893333pt;}
._18_c00254{margin-left:-7.760000pt;}
._8_c00254{margin-left:-6.589333pt;}
._15_c00254{margin-left:-5.514667pt;}
._11_c00254{margin-left:-4.528000pt;}
._d_c00254{margin-left:-3.378667pt;}
._4_c00254{margin-left:-2.397333pt;}
._5_c00254{margin-left:-0.928000pt;}
._c_c00254{width:0.997333pt;}
._9_c00254{width:2.234667pt;}
._b_c00254{width:3.189333pt;}
._a_c00254{width:4.450667pt;}
._12_c00254{width:5.357333pt;}
._2_c00254{width:6.264000pt;}
._e_c00254{width:7.709333pt;}
._f_c00254{width:8.936000pt;}
._1_c00254{width:10.130667pt;}
._10_c00254{width:11.250667pt;}
._3_c00254{width:12.218667pt;}
._0_c00254{width:13.765333pt;}
._7_c00254{width:20.880000pt;}
._1d_c00254{width:36.402667pt;}
._1c_c00254{width:72.448000pt;}
._1b_c00254{width:251.616000pt;}
._17_c00254{width:272.562667pt;}
._1e_c00254{width:288.056000pt;}
._6_c00254{width:304.384000pt;}
.fs3_c00254{font-size:42.666667pt;}
.fs1_c00254{font-size:61.333333pt;}
.fs2_c00254{font-size:64.000000pt;}
.fs0_c00254{font-size:77.333333pt;}
.y0_c00254{bottom:0.000000pt;}
.y1f_c00254{bottom:2.760000pt;}
.y1e_c00254{bottom:6.425219pt;}
.y1d_c00254{bottom:45.613333pt;}
.y1c_c00254{bottom:68.813333pt;}
.y1b_c00254{bottom:91.480000pt;}
.y1a_c00254{bottom:114.280000pt;}
.y19_c00254{bottom:136.546667pt;}
.y18_c00254{bottom:158.813333pt;}
.y17_c00254{bottom:181.213333pt;}
.y16_c00254{bottom:203.213333pt;}
.y15_c00254{bottom:224.813333pt;}
.y14_c00254{bottom:247.480000pt;}
.y13_c00254{bottom:269.480000pt;}
.y12_c00254{bottom:288.413333pt;}
.y11_c00254{bottom:309.346667pt;}
.y10_c00254{bottom:331.613333pt;}
.yf_c00254{bottom:354.280000pt;}
.ye_c00254{bottom:375.613333pt;}
.yd_c00254{bottom:397.613333pt;}
.yc_c00254{bottom:419.746667pt;}
.yb_c00254{bottom:441.080000pt;}
.ya_c00254{bottom:463.480000pt;}
.y9_c00254{bottom:485.213333pt;}
.y8_c00254{bottom:507.346667pt;}
.y7_c00254{bottom:529.613333pt;}
.y6_c00254{bottom:551.213333pt;}
.y5_c00254{bottom:573.613333pt;}
.y4_c00254{bottom:594.946667pt;}
.y3_c00254{bottom:617.080000pt;}
.y2_c00254{bottom:638.813333pt;}
.y1_c00254{bottom:660.946667pt;}
.h5_c00254{height:11.733399pt;}
.h6_c00254{height:38.937500pt;}
.h3_c00254{height:77.654948pt;}
.h4_c00254{height:81.031250pt;}
.h2_c00254{height:90.511719pt;}
.h1_c00254{height:701.333333pt;}
.h0_c00254{height:701.533333pt;}
.w2_c00254{width:93.222667pt;}
.w0_c00254{width:477.866667pt;}
.w1_c00254{width:478.000000pt;}
.x0_c00254{left:0.000000pt;}
.x5_c00254{left:34.133333pt;}
.x4_c00254{left:36.000000pt;}
.x3_c00254{left:37.600000pt;}
.x2_c00254{left:39.066667pt;}
.x1_c00254{left:135.333333pt;}
.x7_c00254{left:196.101563pt;}
.x6_c00254{left:236.266667pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00255 {
      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_c00255 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00255 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00255 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_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_ea934e03b1e017b777292ea3.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.480469;font-style:normal;font-weight:normal;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_5e78fec4f490cb409f3e2947.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.568848;font-style:normal;font-weight:normal;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_50272b0469fd45c45bc459df.woff2')format("woff");}.ff3_c00256{font-family:ff3_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00256;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00256{font-family:ff4_c00256;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00256{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00256{vertical-align:0.000000px;}
.ls0_c00256{letter-spacing:0.000000px;}
.ls1_c00256{letter-spacing:3.000000px;}
.ls2_c00256{letter-spacing:6.000000px;}
.sc__c00256{text-shadow:none;}
.sc0_c00256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00256{-webkit-text-stroke:0px transparent;}
.sc0_c00256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00256{word-spacing:-16.629000px;}
.ws1_c00256{word-spacing:0.000000px;}
._15_c00256{margin-left:-10.218000px;}
._11_c00256{margin-left:-8.214000px;}
._c_c00256{margin-left:-5.487000px;}
._2_c00256{margin-left:-3.567000px;}
._4_c00256{margin-left:-2.175000px;}
._3_c00256{margin-left:-1.044000px;}
._9_c00256{width:1.656000px;}
._1_c00256{width:2.697000px;}
._0_c00256{width:4.437000px;}
._a_c00256{width:6.273000px;}
._8_c00256{width:7.653000px;}
._f_c00256{width:9.177000px;}
._10_c00256{width:10.407000px;}
._19_c00256{width:11.898000px;}
._7_c00256{width:13.215000px;}
._18_c00256{width:14.304000px;}
._b_c00256{width:15.756000px;}
._16_c00256{width:17.049000px;}
._1b_c00256{width:18.243000px;}
._17_c00256{width:21.720000px;}
._14_c00256{width:24.003000px;}
._6_c00256{width:25.752000px;}
._12_c00256{width:31.119000px;}
._e_c00256{width:32.751000px;}
._13_c00256{width:34.989000px;}
._d_c00256{width:41.187000px;}
._5_c00256{width:284.751000px;}
._1c_c00256{width:311.880000px;}
._1a_c00256{width:349.275000px;}
.fc2_c00256{color:transparent;}
.fc1_c00256{color:rgb(128,128,128);}
.fc0_c00256{color:rgb(0,0,0);}
.fs3_c00256{font-size:48.000000px;}
.fs2_c00256{font-size:57.000000px;}
.fs1_c00256{font-size:69.000000px;}
.fs0_c00256{font-size:87.000000px;}
.y0_c00256{bottom:0.000000px;}
.y1f_c00256{bottom:3.105000px;}
.y1e_c00256{bottom:7.228357px;}
.y1d_c00256{bottom:54.330000px;}
.y1c_c00256{bottom:79.680000px;}
.y1b_c00256{bottom:105.030000px;}
.y1a_c00256{bottom:128.580000px;}
.y19_c00256{bottom:154.980000px;}
.y18_c00256{bottom:180.630000px;}
.y17_c00256{bottom:205.230000px;}
.y16_c00256{bottom:229.830000px;}
.y15_c00256{bottom:254.130000px;}
.y14_c00256{bottom:278.880000px;}
.y13_c00256{bottom:302.730000px;}
.y12_c00256{bottom:324.780000px;}
.y11_c00256{bottom:348.030000px;}
.y10_c00256{bottom:372.930000px;}
.yf_c00256{bottom:397.530000px;}
.ye_c00256{bottom:422.280000px;}
.yd_c00256{bottom:446.580000px;}
.yc_c00256{bottom:471.780000px;}
.yb_c00256{bottom:496.080000px;}
.ya_c00256{bottom:520.530000px;}
.y9_c00256{bottom:545.430000px;}
.y8_c00256{bottom:570.030000px;}
.y7_c00256{bottom:594.030000px;}
.y6_c00256{bottom:618.630000px;}
.y5_c00256{bottom:643.680000px;}
.y4_c00256{bottom:667.680000px;}
.y3_c00256{bottom:691.830000px;}
.y2_c00256{bottom:716.280000px;}
.y1_c00256{bottom:742.230000px;}
.h4_c00256{height:13.200074px;}
.h5_c00256{height:43.804688px;}
.h3_c00256{height:87.361816px;}
.h2_c00256{height:110.151855px;}
.h1_c00256{height:789.750000px;}
.h0_c00256{height:790.050000px;}
.w2_c00256{width:104.875500px;}
.w1_c00256{width:543.750000px;}
.w0_c00256{width:544.050000px;}
.x0_c00256{left:0.000000px;}
.x5_c00256{left:32.100000px;}
.x4_c00256{left:33.150000px;}
.x2_c00256{left:34.350000px;}
.x3_c00256{left:35.400000px;}
.x6_c00256{left:36.450000px;}
.x1_c00256{left:157.650000px;}
.x8_c00256{left:223.839249px;}
.x7_c00256{left:249.750000px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls0_c00256{letter-spacing:0.000000pt;}
.ls1_c00256{letter-spacing:2.666667pt;}
.ls2_c00256{letter-spacing:5.333333pt;}
.ws0_c00256{word-spacing:-14.781333pt;}
.ws1_c00256{word-spacing:0.000000pt;}
._15_c00256{margin-left:-9.082667pt;}
._11_c00256{margin-left:-7.301333pt;}
._c_c00256{margin-left:-4.877333pt;}
._2_c00256{margin-left:-3.170667pt;}
._4_c00256{margin-left:-1.933333pt;}
._3_c00256{margin-left:-0.928000pt;}
._9_c00256{width:1.472000pt;}
._1_c00256{width:2.397333pt;}
._0_c00256{width:3.944000pt;}
._a_c00256{width:5.576000pt;}
._8_c00256{width:6.802667pt;}
._f_c00256{width:8.157333pt;}
._10_c00256{width:9.250667pt;}
._19_c00256{width:10.576000pt;}
._7_c00256{width:11.746667pt;}
._18_c00256{width:12.714667pt;}
._b_c00256{width:14.005333pt;}
._16_c00256{width:15.154667pt;}
._1b_c00256{width:16.216000pt;}
._17_c00256{width:19.306667pt;}
._14_c00256{width:21.336000pt;}
._6_c00256{width:22.890667pt;}
._12_c00256{width:27.661333pt;}
._e_c00256{width:29.112000pt;}
._13_c00256{width:31.101333pt;}
._d_c00256{width:36.610667pt;}
._5_c00256{width:253.112000pt;}
._1c_c00256{width:277.226667pt;}
._1a_c00256{width:310.466667pt;}
.fs3_c00256{font-size:42.666667pt;}
.fs2_c00256{font-size:50.666667pt;}
.fs1_c00256{font-size:61.333333pt;}
.fs0_c00256{font-size:77.333333pt;}
.y0_c00256{bottom:0.000000pt;}
.y1f_c00256{bottom:2.760000pt;}
.y1e_c00256{bottom:6.425206pt;}
.y1d_c00256{bottom:48.293333pt;}
.y1c_c00256{bottom:70.826667pt;}
.y1b_c00256{bottom:93.360000pt;}
.y1a_c00256{bottom:114.293333pt;}
.y19_c00256{bottom:137.760000pt;}
.y18_c00256{bottom:160.560000pt;}
.y17_c00256{bottom:182.426667pt;}
.y16_c00256{bottom:204.293333pt;}
.y15_c00256{bottom:225.893333pt;}
.y14_c00256{bottom:247.893333pt;}
.y13_c00256{bottom:269.093333pt;}
.y12_c00256{bottom:288.693333pt;}
.y11_c00256{bottom:309.360000pt;}
.y10_c00256{bottom:331.493333pt;}
.yf_c00256{bottom:353.360000pt;}
.ye_c00256{bottom:375.360000pt;}
.yd_c00256{bottom:396.960000pt;}
.yc_c00256{bottom:419.360000pt;}
.yb_c00256{bottom:440.960000pt;}
.ya_c00256{bottom:462.693333pt;}
.y9_c00256{bottom:484.826667pt;}
.y8_c00256{bottom:506.693333pt;}
.y7_c00256{bottom:528.026667pt;}
.y6_c00256{bottom:549.893333pt;}
.y5_c00256{bottom:572.160000pt;}
.y4_c00256{bottom:593.493333pt;}
.y3_c00256{bottom:614.960000pt;}
.y2_c00256{bottom:636.693333pt;}
.y1_c00256{bottom:659.760000pt;}
.h4_c00256{height:11.733399pt;}
.h5_c00256{height:38.937500pt;}
.h3_c00256{height:77.654948pt;}
.h2_c00256{height:97.912760pt;}
.h1_c00256{height:702.000000pt;}
.h0_c00256{height:702.266667pt;}
.w2_c00256{width:93.222667pt;}
.w1_c00256{width:483.333333pt;}
.w0_c00256{width:483.600000pt;}
.x0_c00256{left:0.000000pt;}
.x5_c00256{left:28.533333pt;}
.x4_c00256{left:29.466667pt;}
.x2_c00256{left:30.533333pt;}
.x3_c00256{left:31.466667pt;}
.x6_c00256{left:32.400000pt;}
.x1_c00256{left:140.133333pt;}
.x8_c00256{left:198.968221pt;}
.x7_c00256{left:222.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_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_bf1b545398499f83d4f456c6.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00257;src:url('chunks/assets/font_2d07aec6b48f35ae77224292.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00257;src:url('chunks/assets/font_9567db5015991ef561188790.woff2')format("woff");}.ff3_c00257{font-family:ff3_c00257;line-height:1.568848;font-style:normal;font-weight:normal;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_8319ba39954abf830910e1fe.woff2')format("woff");}.ff4_c00257{font-family:ff4_c00257;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00257;src:url('chunks/assets/font_8f264a8f4bdc2c15b470f0c5.woff2')format("woff");}.ff5_c00257{font-family:ff5_c00257;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00257;src:url('chunks/assets/font_2b6382a7d5ea814f0477f8bd.woff2')format("woff");}.ff6_c00257{font-family:ff6_c00257;line-height:1.575000;font-style:normal;font-weight: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_c00257;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00257{font-family:ff7_c00257;line-height:1.219238;font-style: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);}
.v1_c00257{vertical-align:-87.600000px;}
.v0_c00257{vertical-align:0.000000px;}
.ls3_c00257{letter-spacing:-3.000000px;}
.ls1_c00257{letter-spacing:0.000000px;}
.ls2_c00257{letter-spacing:3.000000px;}
.ls4_c00257{letter-spacing:6.000000px;}
.ls0_c00257{letter-spacing:18.600000px;}
.sc__c00257{text-shadow:none;}
.sc0_c00257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00257{-webkit-text-stroke:0px transparent;}
.sc0_c00257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00257{word-spacing:-31.809000px;}
.ws0_c00257{word-spacing:-22.977000px;}
.ws3_c00257{word-spacing:-16.629000px;}
.ws2_c00257{word-spacing:-15.000000px;}
.ws4_c00257{word-spacing:-3.600000px;}
.ws5_c00257{word-spacing:0.000000px;}
._1a_c00257{margin-left:-32.910000px;}
._f_c00257{margin-left:-19.830000px;}
._d_c00257{margin-left:-14.943000px;}
._b_c00257{margin-left:-12.864000px;}
._e_c00257{margin-left:-10.902000px;}
._13_c00257{margin-left:-9.702000px;}
._a_c00257{margin-left:-8.694000px;}
._8_c00257{margin-left:-7.428000px;}
._9_c00257{margin-left:-5.451000px;}
._c_c00257{margin-left:-3.840000px;}
._5_c00257{margin-left:-2.370000px;}
._6_c00257{margin-left:-1.173000px;}
._1_c00257{width:1.848000px;}
._2_c00257{width:3.024000px;}
._14_c00257{width:4.035000px;}
._0_c00257{width:5.040000px;}
._7_c00257{width:6.366000px;}
._12_c00257{width:8.004000px;}
._17_c00257{width:9.039000px;}
._4_c00257{width:10.836000px;}
._3_c00257{width:12.516000px;}
._10_c00257{width:13.599000px;}
._15_c00257{width:15.180000px;}
._18_c00257{width:16.917000px;}
._16_c00257{width:18.024000px;}
._11_c00257{width:20.952000px;}
._19_c00257{width:22.635000px;}
._1b_c00257{width:34.599000px;}
._1c_c00257{width:181.587000px;}
.fc2_c00257{color:transparent;}
.fc1_c00257{color:rgb(128,128,128);}
.fc0_c00257{color:rgb(0,0,0);}
.fs6_c00257{font-size:48.000000px;}
.fs3_c00257{font-size:57.000000px;}
.fs4_c00257{font-size:60.000000px;}
.fs1_c00257{font-size:69.000000px;}
.fs5_c00257{font-size:72.000000px;}
.fs0_c00257{font-size:84.000000px;}
.fs2_c00257{font-size:87.000000px;}
.y0_c00257{bottom:0.000000px;}
.y1e_c00257{bottom:3.105000px;}
.y1d_c00257{bottom:7.228357px;}
.y1c_c00257{bottom:70.230000px;}
.y1b_c00257{bottom:96.930000px;}
.y1a_c00257{bottom:121.830000px;}
.y19_c00257{bottom:147.480000px;}
.y18_c00257{bottom:172.530000px;}
.y17_c00257{bottom:197.730000px;}
.y16_c00257{bottom:223.080000px;}
.y15_c00257{bottom:247.380000px;}
.y14_c00257{bottom:271.980000px;}
.y13_c00257{bottom:296.430000px;}
.y12_c00257{bottom:321.330000px;}
.y11_c00257{bottom:345.330000px;}
.y10_c00257{bottom:370.980000px;}
.yf_c00257{bottom:394.830000px;}
.ye_c00257{bottom:418.530000px;}
.yd_c00257{bottom:443.130000px;}
.yc_c00257{bottom:467.730000px;}
.yb_c00257{bottom:492.180000px;}
.ya_c00257{bottom:517.080000px;}
.y9_c00257{bottom:541.980000px;}
.y8_c00257{bottom:566.280000px;}
.y7_c00257{bottom:591.030000px;}
.y6_c00257{bottom:615.630000px;}
.y5_c00257{bottom:639.930000px;}
.y4_c00257{bottom:664.530000px;}
.y3_c00257{bottom:689.280000px;}
.y2_c00257{bottom:713.880000px;}
.y1_c00257{bottom:740.430000px;}
.h4_c00257{height:13.200074px;}
.h5_c00257{height:43.804688px;}
.h1_c00257{height:82.441406px;}
.h2_c00257{height:87.361816px;}
.h3_c00257{height:92.829000px;}
.h0_c00257{height:779.250000px;}
.w2_c00257{width:104.875500px;}
.w0_c00257{width:515.175000px;}
.w1_c00257{width:515.250000px;}
.x0_c00257{left:0.000000px;}
.x3_c00257{left:93.150000px;}
.x2_c00257{left:94.200000px;}
.x4_c00257{left:95.250000px;}
.x5_c00257{left:97.500000px;}
.x6_c00257{left:98.550000px;}
.x7_c00257{left:100.200000px;}
.x8_c00257{left:101.550000px;}
.x9_c00257{left:102.600000px;}
.xb_c00257{left:103.650000px;}
.xa_c00257{left:105.000000px;}
.xc_c00257{left:106.950000px;}
.xd_c00257{left:108.450000px;}
.xe_c00257{left:109.650000px;}
.xf_c00257{left:111.150000px;}
.x10_c00257{left:112.800000px;}
.x11_c00257{left:114.750000px;}
.x12_c00257{left:209.401749px;}
.x1_c00257{left:210.900000px;}
@media print{
.v1_c00257{vertical-align:-77.866667pt;}
.v0_c00257{vertical-align:0.000000pt;}
.ls3_c00257{letter-spacing:-2.666667pt;}
.ls1_c00257{letter-spacing:0.000000pt;}
.ls2_c00257{letter-spacing:2.666667pt;}
.ls4_c00257{letter-spacing:5.333333pt;}
.ls0_c00257{letter-spacing:16.533333pt;}
.ws1_c00257{word-spacing:-28.274667pt;}
.ws0_c00257{word-spacing:-20.424000pt;}
.ws3_c00257{word-spacing:-14.781333pt;}
.ws2_c00257{word-spacing:-13.333333pt;}
.ws4_c00257{word-spacing:-3.200000pt;}
.ws5_c00257{word-spacing:0.000000pt;}
._1a_c00257{margin-left:-29.253333pt;}
._f_c00257{margin-left:-17.626667pt;}
._d_c00257{margin-left:-13.282667pt;}
._b_c00257{margin-left:-11.434667pt;}
._e_c00257{margin-left:-9.690667pt;}
._13_c00257{margin-left:-8.624000pt;}
._a_c00257{margin-left:-7.728000pt;}
._8_c00257{margin-left:-6.602667pt;}
._9_c00257{margin-left:-4.845333pt;}
._c_c00257{margin-left:-3.413333pt;}
._5_c00257{margin-left:-2.106667pt;}
._6_c00257{margin-left:-1.042667pt;}
._1_c00257{width:1.642667pt;}
._2_c00257{width:2.688000pt;}
._14_c00257{width:3.586667pt;}
._0_c00257{width:4.480000pt;}
._7_c00257{width:5.658667pt;}
._12_c00257{width:7.114667pt;}
._17_c00257{width:8.034667pt;}
._4_c00257{width:9.632000pt;}
._3_c00257{width:11.125333pt;}
._10_c00257{width:12.088000pt;}
._15_c00257{width:13.493333pt;}
._18_c00257{width:15.037333pt;}
._16_c00257{width:16.021333pt;}
._11_c00257{width:18.624000pt;}
._19_c00257{width:20.120000pt;}
._1b_c00257{width:30.754667pt;}
._1c_c00257{width:161.410667pt;}
.fs6_c00257{font-size:42.666667pt;}
.fs3_c00257{font-size:50.666667pt;}
.fs4_c00257{font-size:53.333333pt;}
.fs1_c00257{font-size:61.333333pt;}
.fs5_c00257{font-size:64.000000pt;}
.fs0_c00257{font-size:74.666667pt;}
.fs2_c00257{font-size:77.333333pt;}
.y0_c00257{bottom:0.000000pt;}
.y1e_c00257{bottom:2.760000pt;}
.y1d_c00257{bottom:6.425206pt;}
.y1c_c00257{bottom:62.426667pt;}
.y1b_c00257{bottom:86.160000pt;}
.y1a_c00257{bottom:108.293333pt;}
.y19_c00257{bottom:131.093333pt;}
.y18_c00257{bottom:153.360000pt;}
.y17_c00257{bottom:175.760000pt;}
.y16_c00257{bottom:198.293333pt;}
.y15_c00257{bottom:219.893333pt;}
.y14_c00257{bottom:241.760000pt;}
.y13_c00257{bottom:263.493333pt;}
.y12_c00257{bottom:285.626667pt;}
.y11_c00257{bottom:306.960000pt;}
.y10_c00257{bottom:329.760000pt;}
.yf_c00257{bottom:350.960000pt;}
.ye_c00257{bottom:372.026667pt;}
.yd_c00257{bottom:393.893333pt;}
.yc_c00257{bottom:415.760000pt;}
.yb_c00257{bottom:437.493333pt;}
.ya_c00257{bottom:459.626667pt;}
.y9_c00257{bottom:481.760000pt;}
.y8_c00257{bottom:503.360000pt;}
.y7_c00257{bottom:525.360000pt;}
.y6_c00257{bottom:547.226667pt;}
.y5_c00257{bottom:568.826667pt;}
.y4_c00257{bottom:590.693333pt;}
.y3_c00257{bottom:612.693333pt;}
.y2_c00257{bottom:634.560000pt;}
.y1_c00257{bottom:658.160000pt;}
.h4_c00257{height:11.733399pt;}
.h5_c00257{height:38.937500pt;}
.h1_c00257{height:73.281250pt;}
.h2_c00257{height:77.654948pt;}
.h3_c00257{height:82.514667pt;}
.h0_c00257{height:692.666667pt;}
.w2_c00257{width:93.222667pt;}
.w0_c00257{width:457.933333pt;}
.w1_c00257{width:458.000000pt;}
.x0_c00257{left:0.000000pt;}
.x3_c00257{left:82.800000pt;}
.x2_c00257{left:83.733333pt;}
.x4_c00257{left:84.666667pt;}
.x5_c00257{left:86.666667pt;}
.x6_c00257{left:87.600000pt;}
.x7_c00257{left:89.066667pt;}
.x8_c00257{left:90.266667pt;}
.x9_c00257{left:91.200000pt;}
.xb_c00257{left:92.133333pt;}
.xa_c00257{left:93.333333pt;}
.xc_c00257{left:95.066667pt;}
.xd_c00257{left:96.400000pt;}
.xe_c00257{left:97.466667pt;}
.xf_c00257{left:98.800000pt;}
.x10_c00257{left:100.266667pt;}
.x11_c00257{left:102.000000pt;}
.x12_c00257{left:186.134888pt;}
.x1_c00257{left:187.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_da6e171847f58a080fa8c749.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.480469;font-style:normal;font-weight:normal;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_f52b5b78529a5bfa22a4cd41.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.568848;font-style:normal;font-weight:normal;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_170cd917db4d65af672f5534.woff2')format("woff");}.ff3_c00258{font-family:ff3_c00258;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00258;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00258{font-family:ff4_c00258;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00258{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00258{vertical-align:0.000000px;}
.ls0_c00258{letter-spacing:0.000000px;}
.ls1_c00258{letter-spacing:3.000000px;}
.sc__c00258{text-shadow:none;}
.sc0_c00258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00258{-webkit-text-stroke:0px transparent;}
.sc0_c00258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00258{word-spacing:-30.000000px;}
.ws0_c00258{word-spacing:-20.967000px;}
.ws2_c00258{word-spacing:-16.629000px;}
.ws6_c00258{word-spacing:0.000000px;}
.ws4_c00258{word-spacing:0.897000px;}
.ws1_c00258{word-spacing:16.215000px;}
.ws5_c00258{word-spacing:29.592000px;}
._26_c00258{margin-left:-48.495000px;}
._1c_c00258{margin-left:-31.737000px;}
._2a_c00258{margin-left:-27.666000px;}
._6_c00258{margin-left:-19.923000px;}
._22_c00258{margin-left:-17.226000px;}
._27_c00258{margin-left:-13.398000px;}
._0_c00258{margin-left:-10.701000px;}
._a_c00258{margin-left:-9.483000px;}
._9_c00258{margin-left:-8.352000px;}
._3_c00258{margin-left:-6.438000px;}
._4_c00258{margin-left:-4.698000px;}
._1_c00258{margin-left:-3.045000px;}
._2_c00258{margin-left:-1.653000px;}
._b_c00258{width:1.914000px;}
._8_c00258{width:3.585000px;}
._7_c00258{width:4.698000px;}
._15_c00258{width:6.693000px;}
._14_c00258{width:7.878000px;}
._5_c00258{width:9.483000px;}
._13_c00258{width:11.094000px;}
._17_c00258{width:12.411000px;}
._16_c00258{width:14.505000px;}
._1a_c00258{width:15.924000px;}
._e_c00258{width:17.526000px;}
._d_c00258{width:19.596000px;}
._19_c00258{width:21.804000px;}
._18_c00258{width:24.615000px;}
._29_c00258{width:26.457000px;}
._f_c00258{width:27.876000px;}
._1f_c00258{width:30.996000px;}
._10_c00258{width:34.293000px;}
._c_c00258{width:40.434000px;}
._12_c00258{width:46.767000px;}
._1d_c00258{width:50.577000px;}
._20_c00258{width:52.449000px;}
._11_c00258{width:53.613000px;}
._23_c00258{width:59.541000px;}
._21_c00258{width:73.167000px;}
._24_c00258{width:87.918000px;}
._25_c00258{width:115.884000px;}
._1e_c00258{width:132.096000px;}
._1b_c00258{width:235.446000px;}
._28_c00258{width:491.121000px;}
.fc2_c00258{color:transparent;}
.fc1_c00258{color:rgb(128,128,128);}
.fc0_c00258{color:rgb(0,0,0);}
.fs4_c00258{font-size:48.000000px;}
.fs2_c00258{font-size:60.000000px;}
.fs1_c00258{font-size:69.000000px;}
.fs3_c00258{font-size:72.000000px;}
.fs0_c00258{font-size:87.000000px;}
.y0_c00258{bottom:0.000000px;}
.y1a_c00258{bottom:3.105000px;}
.y19_c00258{bottom:7.228371px;}
.y18_c00258{bottom:46.215000px;}
.y17_c00258{bottom:79.365000px;}
.y16_c00258{bottom:106.965000px;}
.y15_c00258{bottom:136.065000px;}
.y14_c00258{bottom:164.115000px;}
.y13_c00258{bottom:191.115000px;}
.y12_c00258{bottom:217.365000px;}
.y11_c00258{bottom:246.465000px;}
.y10_c00258{bottom:275.115000px;}
.yf_c00258{bottom:323.415000px;}
.ye_c00258{bottom:345.915000px;}
.yd_c00258{bottom:370.215000px;}
.yc_c00258{bottom:394.665000px;}
.yb_c00258{bottom:420.165000px;}
.ya_c00258{bottom:444.915000px;}
.y9_c00258{bottom:469.815000px;}
.y8_c00258{bottom:494.565000px;}
.y7_c00258{bottom:519.465000px;}
.y6_c00258{bottom:544.065000px;}
.y5_c00258{bottom:568.365000px;}
.y4_c00258{bottom:617.415000px;}
.y3_c00258{bottom:645.015000px;}
.y2_c00258{bottom:672.765000px;}
.y1_c00258{bottom:700.665000px;}
.h6_c00258{height:13.200074px;}
.h7_c00258{height:43.804688px;}
.h5_c00258{height:84.269531px;}
.h4_c00258{height:87.361816px;}
.h3_c00258{height:101.825684px;}
.h2_c00258{height:110.151855px;}
.h0_c00258{height:791.925000px;}
.h1_c00258{height:792.000000px;}
.w2_c00258{width:104.875500px;}
.w0_c00258{width:524.100000px;}
.w1_c00258{width:524.250000px;}
.x0_c00258{left:0.000000px;}
.x4_c00258{left:38.100000px;}
.x5_c00258{left:39.600000px;}
.x6_c00258{left:40.800000px;}
.x7_c00258{left:42.600000px;}
.x8_c00258{left:43.950000px;}
.x9_c00258{left:45.000000px;}
.x1_c00258{left:72.000000px;}
.x2_c00258{left:73.200000px;}
.x3_c00258{left:75.300000px;}
.xa_c00258{left:86.100000px;}
.xb_c00258{left:87.150000px;}
.xc_c00258{left:88.200000px;}
.xd_c00258{left:90.450000px;}
.xf_c00258{left:213.864258px;}
.xe_c00258{left:255.150000px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls0_c00258{letter-spacing:0.000000pt;}
.ls1_c00258{letter-spacing:2.666667pt;}
.ws3_c00258{word-spacing:-26.666667pt;}
.ws0_c00258{word-spacing:-18.637333pt;}
.ws2_c00258{word-spacing:-14.781333pt;}
.ws6_c00258{word-spacing:0.000000pt;}
.ws4_c00258{word-spacing:0.797333pt;}
.ws1_c00258{word-spacing:14.413333pt;}
.ws5_c00258{word-spacing:26.304000pt;}
._26_c00258{margin-left:-43.106667pt;}
._1c_c00258{margin-left:-28.210667pt;}
._2a_c00258{margin-left:-24.592000pt;}
._6_c00258{margin-left:-17.709333pt;}
._22_c00258{margin-left:-15.312000pt;}
._27_c00258{margin-left:-11.909333pt;}
._0_c00258{margin-left:-9.512000pt;}
._a_c00258{margin-left:-8.429333pt;}
._9_c00258{margin-left:-7.424000pt;}
._3_c00258{margin-left:-5.722667pt;}
._4_c00258{margin-left:-4.176000pt;}
._1_c00258{margin-left:-2.706667pt;}
._2_c00258{margin-left:-1.469333pt;}
._b_c00258{width:1.701333pt;}
._8_c00258{width:3.186667pt;}
._7_c00258{width:4.176000pt;}
._15_c00258{width:5.949333pt;}
._14_c00258{width:7.002667pt;}
._5_c00258{width:8.429333pt;}
._13_c00258{width:9.861333pt;}
._17_c00258{width:11.032000pt;}
._16_c00258{width:12.893333pt;}
._1a_c00258{width:14.154667pt;}
._e_c00258{width:15.578667pt;}
._d_c00258{width:17.418667pt;}
._19_c00258{width:19.381333pt;}
._18_c00258{width:21.880000pt;}
._29_c00258{width:23.517333pt;}
._f_c00258{width:24.778667pt;}
._1f_c00258{width:27.552000pt;}
._10_c00258{width:30.482667pt;}
._c_c00258{width:35.941333pt;}
._12_c00258{width:41.570667pt;}
._1d_c00258{width:44.957333pt;}
._20_c00258{width:46.621333pt;}
._11_c00258{width:47.656000pt;}
._23_c00258{width:52.925333pt;}
._21_c00258{width:65.037333pt;}
._24_c00258{width:78.149333pt;}
._25_c00258{width:103.008000pt;}
._1e_c00258{width:117.418667pt;}
._1b_c00258{width:209.285333pt;}
._28_c00258{width:436.552000pt;}
.fs4_c00258{font-size:42.666667pt;}
.fs2_c00258{font-size:53.333333pt;}
.fs1_c00258{font-size:61.333333pt;}
.fs3_c00258{font-size:64.000000pt;}
.fs0_c00258{font-size:77.333333pt;}
.y0_c00258{bottom:0.000000pt;}
.y1a_c00258{bottom:2.760000pt;}
.y19_c00258{bottom:6.425219pt;}
.y18_c00258{bottom:41.080000pt;}
.y17_c00258{bottom:70.546667pt;}
.y16_c00258{bottom:95.080000pt;}
.y15_c00258{bottom:120.946667pt;}
.y14_c00258{bottom:145.880000pt;}
.y13_c00258{bottom:169.880000pt;}
.y12_c00258{bottom:193.213333pt;}
.y11_c00258{bottom:219.080000pt;}
.y10_c00258{bottom:244.546667pt;}
.yf_c00258{bottom:287.480000pt;}
.ye_c00258{bottom:307.480000pt;}
.yd_c00258{bottom:329.080000pt;}
.yc_c00258{bottom:350.813333pt;}
.yb_c00258{bottom:373.480000pt;}
.ya_c00258{bottom:395.480000pt;}
.y9_c00258{bottom:417.613333pt;}
.y8_c00258{bottom:439.613333pt;}
.y7_c00258{bottom:461.746667pt;}
.y6_c00258{bottom:483.613333pt;}
.y5_c00258{bottom:505.213333pt;}
.y4_c00258{bottom:548.813333pt;}
.y3_c00258{bottom:573.346667pt;}
.y2_c00258{bottom:598.013333pt;}
.y1_c00258{bottom:622.813333pt;}
.h6_c00258{height:11.733399pt;}
.h7_c00258{height:38.937500pt;}
.h5_c00258{height:74.906250pt;}
.h4_c00258{height:77.654948pt;}
.h3_c00258{height:90.511719pt;}
.h2_c00258{height:97.912760pt;}
.h0_c00258{height:703.933333pt;}
.h1_c00258{height:704.000000pt;}
.w2_c00258{width:93.222667pt;}
.w0_c00258{width:465.866667pt;}
.w1_c00258{width:466.000000pt;}
.x0_c00258{left:0.000000pt;}
.x4_c00258{left:33.866667pt;}
.x5_c00258{left:35.200000pt;}
.x6_c00258{left:36.266667pt;}
.x7_c00258{left:37.866667pt;}
.x8_c00258{left:39.066667pt;}
.x9_c00258{left:40.000000pt;}
.x1_c00258{left:64.000000pt;}
.x2_c00258{left:65.066667pt;}
.x3_c00258{left:66.933333pt;}
.xa_c00258{left:76.533333pt;}
.xb_c00258{left:77.466667pt;}
.xc_c00258{left:78.400000pt;}
.xd_c00258{left:80.400000pt;}
.xf_c00258{left:190.101563pt;}
.xe_c00258{left:226.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d0f4eb4a0506e4403c679620.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.480469;font-style:normal;font-weight:normal;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_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:1.568848;font-style:normal;font-weight:normal;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_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff3_c00259{font-family:ff3_c00259;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00259;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00259{font-family:ff4_c00259;line-height:1.219238;font-style: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);}
.v1_c00259{vertical-align:-109.800000px;}
.v0_c00259{vertical-align:0.000000px;}
.ls4_c00259{letter-spacing:-6.000000px;}
.ls1_c00259{letter-spacing:-3.000000px;}
.ls2_c00259{letter-spacing:0.000000px;}
.ls3_c00259{letter-spacing:6.000000px;}
.ls0_c00259{letter-spacing:9.000000px;}
.sc__c00259{text-shadow:none;}
.sc0_c00259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00259{-webkit-text-stroke:0px transparent;}
.sc0_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00259{word-spacing:-29.967000px;}
.ws1_c00259{word-spacing:-20.967000px;}
.ws2_c00259{word-spacing:-14.967000px;}
.ws3_c00259{word-spacing:0.000000px;}
._15_c00259{margin-left:-21.561000px;}
._19_c00259{margin-left:-20.535000px;}
._10_c00259{margin-left:-16.020000px;}
._e_c00259{margin-left:-14.295000px;}
._1a_c00259{margin-left:-12.747000px;}
._14_c00259{margin-left:-11.316000px;}
._11_c00259{margin-left:-10.029000px;}
._13_c00259{margin-left:-7.902000px;}
._9_c00259{margin-left:-6.663000px;}
._f_c00259{margin-left:-5.097000px;}
._c_c00259{margin-left:-4.038000px;}
._a_c00259{margin-left:-2.958000px;}
._d_c00259{margin-left:-1.320000px;}
._3_c00259{width:2.040000px;}
._b_c00259{width:3.045000px;}
._8_c00259{width:4.734000px;}
._2_c00259{width:5.880000px;}
._0_c00259{width:7.800000px;}
._5_c00259{width:9.480000px;}
._16_c00259{width:11.919000px;}
._7_c00259{width:13.311000px;}
._6_c00259{width:15.480000px;}
._1_c00259{width:16.560000px;}
._4_c00259{width:18.060000px;}
._1b_c00259{width:32.808000px;}
._17_c00259{width:34.752000px;}
._12_c00259{width:39.498000px;}
._18_c00259{width:40.977000px;}
._1c_c00259{width:257.763000px;}
.fc2_c00259{color:transparent;}
.fc1_c00259{color:rgb(128,128,128);}
.fc0_c00259{color:rgb(0,0,0);}
.fs2_c00259{font-size:24.000000px;}
.fs3_c00259{font-size:48.000000px;}
.fs0_c00259{font-size:60.000000px;}
.fs1_c00259{font-size:87.000000px;}
.y0_c00259{bottom:0.000000px;}
.y1b_c00259{bottom:3.105000px;}
.y1a_c00259{bottom:7.228369px;}
.y19_c00259{bottom:80.670000px;}
.y18_c00259{bottom:108.570000px;}
.y17_c00259{bottom:137.070000px;}
.y16_c00259{bottom:165.720000px;}
.y15_c00259{bottom:192.420000px;}
.y14_c00259{bottom:219.720000px;}
.y13_c00259{bottom:248.070000px;}
.y12_c00259{bottom:275.670000px;}
.y11_c00259{bottom:302.970000px;}
.y10_c00259{bottom:331.020000px;}
.yf_c00259{bottom:357.720000px;}
.ye_c00259{bottom:385.020000px;}
.yd_c00259{bottom:412.770000px;}
.yc_c00259{bottom:440.670000px;}
.yb_c00259{bottom:467.670000px;}
.ya_c00259{bottom:495.720000px;}
.y9_c00259{bottom:522.120000px;}
.y8_c00259{bottom:549.720000px;}
.y7_c00259{bottom:577.770000px;}
.y6_c00259{bottom:605.070000px;}
.y5_c00259{bottom:632.820000px;}
.y4_c00259{bottom:660.120000px;}
.y3_c00259{bottom:687.870000px;}
.y2_c00259{bottom:715.170000px;}
.y1_c00259{bottom:743.220000px;}
.h5_c00259{height:13.200073px;}
.h6_c00259{height:43.804688px;}
.h2_c00259{height:70.224609px;}
.h4_c00259{height:101.825684px;}
.h3_c00259{height:110.151855px;}
.h1_c00259{height:778.500000px;}
.h0_c00259{height:778.650000px;}
.w1_c00259{width:104.875500px;}
.w0_c00259{width:513.000000px;}
.x0_c00259{left:0.000000px;}
.x7_c00259{left:133.350000px;}
.x4_c00259{left:135.300000px;}
.x5_c00259{left:136.650000px;}
.x6_c00259{left:138.750000px;}
.x3_c00259{left:140.700000px;}
.x8_c00259{left:141.750000px;}
.x2_c00259{left:142.800000px;}
.x9_c00259{left:143.850000px;}
.xa_c00259{left:208.314240px;}
.x1_c00259{left:213.900000px;}
@media print{
.v1_c00259{vertical-align:-97.600000pt;}
.v0_c00259{vertical-align:0.000000pt;}
.ls4_c00259{letter-spacing:-5.333333pt;}
.ls1_c00259{letter-spacing:-2.666667pt;}
.ls2_c00259{letter-spacing:0.000000pt;}
.ls3_c00259{letter-spacing:5.333333pt;}
.ls0_c00259{letter-spacing:8.000000pt;}
.ws0_c00259{word-spacing:-26.637333pt;}
.ws1_c00259{word-spacing:-18.637333pt;}
.ws2_c00259{word-spacing:-13.304000pt;}
.ws3_c00259{word-spacing:0.000000pt;}
._15_c00259{margin-left:-19.165333pt;}
._19_c00259{margin-left:-18.253333pt;}
._10_c00259{margin-left:-14.240000pt;}
._e_c00259{margin-left:-12.706667pt;}
._1a_c00259{margin-left:-11.330667pt;}
._14_c00259{margin-left:-10.058667pt;}
._11_c00259{margin-left:-8.914667pt;}
._13_c00259{margin-left:-7.024000pt;}
._9_c00259{margin-left:-5.922667pt;}
._f_c00259{margin-left:-4.530667pt;}
._c_c00259{margin-left:-3.589333pt;}
._a_c00259{margin-left:-2.629333pt;}
._d_c00259{margin-left:-1.173333pt;}
._3_c00259{width:1.813333pt;}
._b_c00259{width:2.706667pt;}
._8_c00259{width:4.208000pt;}
._2_c00259{width:5.226667pt;}
._0_c00259{width:6.933333pt;}
._5_c00259{width:8.426667pt;}
._16_c00259{width:10.594667pt;}
._7_c00259{width:11.832000pt;}
._6_c00259{width:13.760000pt;}
._1_c00259{width:14.720000pt;}
._4_c00259{width:16.053333pt;}
._1b_c00259{width:29.162667pt;}
._17_c00259{width:30.890667pt;}
._12_c00259{width:35.109333pt;}
._18_c00259{width:36.424000pt;}
._1c_c00259{width:229.122667pt;}
.fs2_c00259{font-size:21.333333pt;}
.fs3_c00259{font-size:42.666667pt;}
.fs0_c00259{font-size:53.333333pt;}
.fs1_c00259{font-size:77.333333pt;}
.y0_c00259{bottom:0.000000pt;}
.y1b_c00259{bottom:2.760000pt;}
.y1a_c00259{bottom:6.425217pt;}
.y19_c00259{bottom:71.706667pt;}
.y18_c00259{bottom:96.506667pt;}
.y17_c00259{bottom:121.840000pt;}
.y16_c00259{bottom:147.306667pt;}
.y15_c00259{bottom:171.040000pt;}
.y14_c00259{bottom:195.306667pt;}
.y13_c00259{bottom:220.506667pt;}
.y12_c00259{bottom:245.040000pt;}
.y11_c00259{bottom:269.306667pt;}
.y10_c00259{bottom:294.240000pt;}
.yf_c00259{bottom:317.973333pt;}
.ye_c00259{bottom:342.240000pt;}
.yd_c00259{bottom:366.906667pt;}
.yc_c00259{bottom:391.706667pt;}
.yb_c00259{bottom:415.706667pt;}
.ya_c00259{bottom:440.640000pt;}
.y9_c00259{bottom:464.106667pt;}
.y8_c00259{bottom:488.640000pt;}
.y7_c00259{bottom:513.573333pt;}
.y6_c00259{bottom:537.840000pt;}
.y5_c00259{bottom:562.506667pt;}
.y4_c00259{bottom:586.773333pt;}
.y3_c00259{bottom:611.440000pt;}
.y2_c00259{bottom:635.706667pt;}
.y1_c00259{bottom:660.640000pt;}
.h5_c00259{height:11.733399pt;}
.h6_c00259{height:38.937500pt;}
.h2_c00259{height:62.421875pt;}
.h4_c00259{height:90.511719pt;}
.h3_c00259{height:97.912760pt;}
.h1_c00259{height:692.000000pt;}
.h0_c00259{height:692.133333pt;}
.w1_c00259{width:93.222667pt;}
.w0_c00259{width:456.000000pt;}
.x0_c00259{left:0.000000pt;}
.x7_c00259{left:118.533333pt;}
.x4_c00259{left:120.266667pt;}
.x5_c00259{left:121.466667pt;}
.x6_c00259{left:123.333333pt;}
.x3_c00259{left:125.066667pt;}
.x8_c00259{left:126.000000pt;}
.x2_c00259{left:126.933333pt;}
.x9_c00259{left:127.866667pt;}
.xa_c00259{left:185.168213pt;}
.x1_c00259{left:190.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_83ab03bbf0a0e953eda8fdfe.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.480469;font-style:normal;font-weight:normal;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_6dd50622abde2493a3273da2.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00260{font-family:ff3_c00260;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00260{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00260{vertical-align:0.000000px;}
.ls0_c00260{letter-spacing:0.000000px;}
.ls1_c00260{letter-spacing:3.000000px;}
.sc__c00260{text-shadow:none;}
.sc0_c00260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00260{-webkit-text-stroke:0px transparent;}
.sc0_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00260{word-spacing:-40.107000px;}
.ws1_c00260{word-spacing:-31.809000px;}
.ws2_c00260{word-spacing:0.000000px;}
._1d_c00260{margin-left:-20.322000px;}
._12_c00260{margin-left:-18.117000px;}
._1c_c00260{margin-left:-10.008000px;}
._1b_c00260{margin-left:-8.670000px;}
._4_c00260{margin-left:-7.221000px;}
._19_c00260{margin-left:-6.204000px;}
._8_c00260{margin-left:-5.133000px;}
._6_c00260{margin-left:-3.588000px;}
._7_c00260{margin-left:-2.415000px;}
._b_c00260{margin-left:-1.005000px;}
._a_c00260{width:1.173000px;}
._2_c00260{width:2.523000px;}
._1_c00260{width:3.915000px;}
._0_c00260{width:5.916000px;}
._c_c00260{width:7.101000px;}
._d_c00260{width:9.012000px;}
._f_c00260{width:10.182000px;}
._9_c00260{width:11.889000px;}
._11_c00260{width:12.912000px;}
._e_c00260{width:14.124000px;}
._10_c00260{width:15.726000px;}
._5_c00260{width:16.791000px;}
._13_c00260{width:20.955000px;}
._15_c00260{width:22.803000px;}
._17_c00260{width:25.005000px;}
._16_c00260{width:27.360000px;}
._1a_c00260{width:31.977000px;}
._14_c00260{width:42.807000px;}
._1e_c00260{width:67.002000px;}
._18_c00260{width:70.053000px;}
._3_c00260{width:351.573000px;}
.fc2_c00260{color:transparent;}
.fc1_c00260{color:rgb(128,128,128);}
.fc0_c00260{color:rgb(0,0,0);}
.fs3_c00260{font-size:48.000000px;}
.fs1_c00260{font-size:69.000000px;}
.fs2_c00260{font-size:72.000000px;}
.fs0_c00260{font-size:87.000000px;}
.y0_c00260{bottom:0.000000px;}
.y1e_c00260{bottom:3.105000px;}
.y1d_c00260{bottom:7.228369px;}
.y1c_c00260{bottom:69.120000px;}
.y1b_c00260{bottom:95.520000px;}
.y1a_c00260{bottom:123.120000px;}
.y19_c00260{bottom:148.470000px;}
.y18_c00260{bottom:172.020000px;}
.y17_c00260{bottom:198.420000px;}
.y16_c00260{bottom:222.120000px;}
.y15_c00260{bottom:248.070000px;}
.y14_c00260{bottom:272.370000px;}
.y13_c00260{bottom:296.370000px;}
.y12_c00260{bottom:319.620000px;}
.y11_c00260{bottom:342.570000px;}
.y10_c00260{bottom:367.470000px;}
.yf_c00260{bottom:392.070000px;}
.ye_c00260{bottom:417.120000px;}
.yd_c00260{bottom:441.720000px;}
.yc_c00260{bottom:466.770000px;}
.yb_c00260{bottom:491.670000px;}
.ya_c00260{bottom:516.270000px;}
.y9_c00260{bottom:541.320000px;}
.y8_c00260{bottom:565.620000px;}
.y7_c00260{bottom:590.670000px;}
.y6_c00260{bottom:614.970000px;}
.y5_c00260{bottom:639.570000px;}
.y4_c00260{bottom:664.170000px;}
.y3_c00260{bottom:688.770000px;}
.y2_c00260{bottom:713.520000px;}
.y1_c00260{bottom:738.420000px;}
.h5_c00260{height:13.200073px;}
.h6_c00260{height:43.804688px;}
.h3_c00260{height:87.361816px;}
.h4_c00260{height:91.160156px;}
.h2_c00260{height:110.151855px;}
.h1_c00260{height:790.500000px;}
.h0_c00260{height:790.800000px;}
.w2_c00260{width:104.875500px;}
.w1_c00260{width:542.250000px;}
.w0_c00260{width:542.400000px;}
.x0_c00260{left:0.000000px;}
.x2_c00260{left:31.800000px;}
.x3_c00260{left:33.750000px;}
.x4_c00260{left:34.800000px;}
.x1_c00260{left:142.800000px;}
.x6_c00260{left:223.014267px;}
.x5_c00260{left:342.450000px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls0_c00260{letter-spacing:0.000000pt;}
.ls1_c00260{letter-spacing:2.666667pt;}
.ws0_c00260{word-spacing:-35.650667pt;}
.ws1_c00260{word-spacing:-28.274667pt;}
.ws2_c00260{word-spacing:0.000000pt;}
._1d_c00260{margin-left:-18.064000pt;}
._12_c00260{margin-left:-16.104000pt;}
._1c_c00260{margin-left:-8.896000pt;}
._1b_c00260{margin-left:-7.706667pt;}
._4_c00260{margin-left:-6.418667pt;}
._19_c00260{margin-left:-5.514667pt;}
._8_c00260{margin-left:-4.562667pt;}
._6_c00260{margin-left:-3.189333pt;}
._7_c00260{margin-left:-2.146667pt;}
._b_c00260{margin-left:-0.893333pt;}
._a_c00260{width:1.042667pt;}
._2_c00260{width:2.242667pt;}
._1_c00260{width:3.480000pt;}
._0_c00260{width:5.258667pt;}
._c_c00260{width:6.312000pt;}
._d_c00260{width:8.010667pt;}
._f_c00260{width:9.050667pt;}
._9_c00260{width:10.568000pt;}
._11_c00260{width:11.477333pt;}
._e_c00260{width:12.554667pt;}
._10_c00260{width:13.978667pt;}
._5_c00260{width:14.925333pt;}
._13_c00260{width:18.626667pt;}
._15_c00260{width:20.269333pt;}
._17_c00260{width:22.226667pt;}
._16_c00260{width:24.320000pt;}
._1a_c00260{width:28.424000pt;}
._14_c00260{width:38.050667pt;}
._1e_c00260{width:59.557333pt;}
._18_c00260{width:62.269333pt;}
._3_c00260{width:312.509333pt;}
.fs3_c00260{font-size:42.666667pt;}
.fs1_c00260{font-size:61.333333pt;}
.fs2_c00260{font-size:64.000000pt;}
.fs0_c00260{font-size:77.333333pt;}
.y0_c00260{bottom:0.000000pt;}
.y1e_c00260{bottom:2.760000pt;}
.y1d_c00260{bottom:6.425217pt;}
.y1c_c00260{bottom:61.440000pt;}
.y1b_c00260{bottom:84.906667pt;}
.y1a_c00260{bottom:109.440000pt;}
.y19_c00260{bottom:131.973333pt;}
.y18_c00260{bottom:152.906667pt;}
.y17_c00260{bottom:176.373333pt;}
.y16_c00260{bottom:197.440000pt;}
.y15_c00260{bottom:220.506667pt;}
.y14_c00260{bottom:242.106667pt;}
.y13_c00260{bottom:263.440000pt;}
.y12_c00260{bottom:284.106667pt;}
.y11_c00260{bottom:304.506667pt;}
.y10_c00260{bottom:326.640000pt;}
.yf_c00260{bottom:348.506667pt;}
.ye_c00260{bottom:370.773333pt;}
.yd_c00260{bottom:392.640000pt;}
.yc_c00260{bottom:414.906667pt;}
.yb_c00260{bottom:437.040000pt;}
.ya_c00260{bottom:458.906667pt;}
.y9_c00260{bottom:481.173333pt;}
.y8_c00260{bottom:502.773333pt;}
.y7_c00260{bottom:525.040000pt;}
.y6_c00260{bottom:546.640000pt;}
.y5_c00260{bottom:568.506667pt;}
.y4_c00260{bottom:590.373333pt;}
.y3_c00260{bottom:612.240000pt;}
.y2_c00260{bottom:634.240000pt;}
.y1_c00260{bottom:656.373333pt;}
.h5_c00260{height:11.733399pt;}
.h6_c00260{height:38.937500pt;}
.h3_c00260{height:77.654948pt;}
.h4_c00260{height:81.031250pt;}
.h2_c00260{height:97.912760pt;}
.h1_c00260{height:702.666667pt;}
.h0_c00260{height:702.933333pt;}
.w2_c00260{width:93.222667pt;}
.w1_c00260{width:482.000000pt;}
.w0_c00260{width:482.133333pt;}
.x0_c00260{left:0.000000pt;}
.x2_c00260{left:28.266667pt;}
.x3_c00260{left:30.000000pt;}
.x4_c00260{left:30.933333pt;}
.x1_c00260{left:126.933333pt;}
.x6_c00260{left:198.234904pt;}
.x5_c00260{left:304.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6de31a7e0ef435f3ab7bd3b1.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.480469;font-style:normal;font-weight:normal;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_21843564c38c698703f519b2.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:1.568848;font-style:normal;font-weight:normal;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_dff17c857019f6c781e4c0f3.woff2')format("woff");}.ff3_c00261{font-family:ff3_c00261;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00261;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00261{font-family:ff4_c00261;line-height:1.219238;font-style: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;}
.ls3_c00261{letter-spacing:-6.000000px;}
.ls1_c00261{letter-spacing:0.000000px;}
.ls2_c00261{letter-spacing:3.000000px;}
.ls0_c00261{letter-spacing:204.048000px;}
.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:-33.192000px;}
.ws1_c00261{word-spacing:-24.051000px;}
.ws2_c00261{word-spacing:0.000000px;}
._17_c00261{margin-left:-31.188000px;}
._1a_c00261{margin-left:-17.640000px;}
._1c_c00261{margin-left:-15.648000px;}
._11_c00261{margin-left:-14.556000px;}
._1b_c00261{margin-left:-12.216000px;}
._b_c00261{margin-left:-10.872000px;}
._1d_c00261{margin-left:-9.792000px;}
._3_c00261{margin-left:-8.784000px;}
._c_c00261{margin-left:-7.416000px;}
._4_c00261{margin-left:-5.760000px;}
._7_c00261{margin-left:-4.536000px;}
._8_c00261{margin-left:-3.528000px;}
._9_c00261{margin-left:-2.016000px;}
._a_c00261{margin-left:-1.008000px;}
._5_c00261{width:1.296000px;}
._1_c00261{width:2.304000px;}
._6_c00261{width:3.312000px;}
._2_c00261{width:4.392000px;}
._0_c00261{width:5.472000px;}
._e_c00261{width:6.486000px;}
._10_c00261{width:7.500000px;}
._12_c00261{width:8.568000px;}
._f_c00261{width:10.470000px;}
._15_c00261{width:11.661000px;}
._13_c00261{width:12.987000px;}
._16_c00261{width:15.048000px;}
._14_c00261{width:18.384000px;}
._d_c00261{width:138.699000px;}
._1e_c00261{width:175.968000px;}
._19_c00261{width:222.246000px;}
._18_c00261{width:302.910000px;}
._1f_c00261{width:1243.512000px;}
.fc2_c00261{color:transparent;}
.fc1_c00261{color:rgb(128,128,128);}
.fc0_c00261{color:rgb(0,0,0);}
.fs3_c00261{font-size:48.000000px;}
.fs2_c00261{font-size:63.000000px;}
.fs1_c00261{font-size:69.000000px;}
.fs0_c00261{font-size:72.000000px;}
.y0_c00261{bottom:0.000000px;}
.y1e_c00261{bottom:3.105000px;}
.y1d_c00261{bottom:7.228355px;}
.y1c_c00261{bottom:52.935000px;}
.y1b_c00261{bottom:73.935000px;}
.y1a_c00261{bottom:102.885000px;}
.y19_c00261{bottom:125.835000px;}
.y18_c00261{bottom:152.085000px;}
.y17_c00261{bottom:176.385000px;}
.y16_c00261{bottom:200.835000px;}
.y15_c00261{bottom:228.135000px;}
.y14_c00261{bottom:251.985000px;}
.y13_c00261{bottom:277.335000px;}
.y12_c00261{bottom:300.585000px;}
.y11_c00261{bottom:327.735000px;}
.y10_c00261{bottom:349.635000px;}
.yf_c00261{bottom:377.535000px;}
.ye_c00261{bottom:399.135000px;}
.yd_c00261{bottom:423.885000px;}
.yc_c00261{bottom:447.885000px;}
.yb_c00261{bottom:473.085000px;}
.ya_c00261{bottom:497.385000px;}
.y9_c00261{bottom:521.685000px;}
.y8_c00261{bottom:547.035000px;}
.y7_c00261{bottom:570.285000px;}
.y6_c00261{bottom:593.985000px;}
.y5_c00261{bottom:645.285000px;}
.y4_c00261{bottom:669.135000px;}
.y3_c00261{bottom:694.185000px;}
.y2_c00261{bottom:718.485000px;}
.y1_c00261{bottom:743.835000px;}
.h4_c00261{height:13.200074px;}
.h5_c00261{height:43.804688px;}
.h3_c00261{height:87.361816px;}
.h2_c00261{height:91.160156px;}
.h0_c00261{height:798.375000px;}
.h1_c00261{height:798.750000px;}
.w1_c00261{width:104.875500px;}
.w0_c00261{width:543.000000px;}
.x0_c00261{left:0.000000px;}
.x7_c00261{left:37.200000px;}
.x8_c00261{left:46.200000px;}
.x5_c00261{left:47.550000px;}
.x6_c00261{left:49.050000px;}
.x9_c00261{left:94.500000px;}
.x4_c00261{left:124.500000px;}
.x3_c00261{left:125.550000px;}
.x2_c00261{left:127.350000px;}
.xa_c00261{left:223.314240px;}
.x1_c00261{left:257.400000px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls3_c00261{letter-spacing:-5.333333pt;}
.ls1_c00261{letter-spacing:0.000000pt;}
.ls2_c00261{letter-spacing:2.666667pt;}
.ls0_c00261{letter-spacing:181.376000pt;}
.ws0_c00261{word-spacing:-29.504000pt;}
.ws1_c00261{word-spacing:-21.378667pt;}
.ws2_c00261{word-spacing:0.000000pt;}
._17_c00261{margin-left:-27.722667pt;}
._1a_c00261{margin-left:-15.680000pt;}
._1c_c00261{margin-left:-13.909333pt;}
._11_c00261{margin-left:-12.938667pt;}
._1b_c00261{margin-left:-10.858667pt;}
._b_c00261{margin-left:-9.664000pt;}
._1d_c00261{margin-left:-8.704000pt;}
._3_c00261{margin-left:-7.808000pt;}
._c_c00261{margin-left:-6.592000pt;}
._4_c00261{margin-left:-5.120000pt;}
._7_c00261{margin-left:-4.032000pt;}
._8_c00261{margin-left:-3.136000pt;}
._9_c00261{margin-left:-1.792000pt;}
._a_c00261{margin-left:-0.896000pt;}
._5_c00261{width:1.152000pt;}
._1_c00261{width:2.048000pt;}
._6_c00261{width:2.944000pt;}
._2_c00261{width:3.904000pt;}
._0_c00261{width:4.864000pt;}
._e_c00261{width:5.765333pt;}
._10_c00261{width:6.666667pt;}
._12_c00261{width:7.616000pt;}
._f_c00261{width:9.306667pt;}
._15_c00261{width:10.365333pt;}
._13_c00261{width:11.544000pt;}
._16_c00261{width:13.376000pt;}
._14_c00261{width:16.341333pt;}
._d_c00261{width:123.288000pt;}
._1e_c00261{width:156.416000pt;}
._19_c00261{width:197.552000pt;}
._18_c00261{width:269.253333pt;}
._1f_c00261{width:1105.344000pt;}
.fs3_c00261{font-size:42.666667pt;}
.fs2_c00261{font-size:56.000000pt;}
.fs1_c00261{font-size:61.333333pt;}
.fs0_c00261{font-size:64.000000pt;}
.y0_c00261{bottom:0.000000pt;}
.y1e_c00261{bottom:2.760000pt;}
.y1d_c00261{bottom:6.425204pt;}
.y1c_c00261{bottom:47.053333pt;}
.y1b_c00261{bottom:65.720000pt;}
.y1a_c00261{bottom:91.453333pt;}
.y19_c00261{bottom:111.853333pt;}
.y18_c00261{bottom:135.186667pt;}
.y17_c00261{bottom:156.786667pt;}
.y16_c00261{bottom:178.520000pt;}
.y15_c00261{bottom:202.786667pt;}
.y14_c00261{bottom:223.986667pt;}
.y13_c00261{bottom:246.520000pt;}
.y12_c00261{bottom:267.186667pt;}
.y11_c00261{bottom:291.320000pt;}
.y10_c00261{bottom:310.786667pt;}
.yf_c00261{bottom:335.586667pt;}
.ye_c00261{bottom:354.786667pt;}
.yd_c00261{bottom:376.786667pt;}
.yc_c00261{bottom:398.120000pt;}
.yb_c00261{bottom:420.520000pt;}
.ya_c00261{bottom:442.120000pt;}
.y9_c00261{bottom:463.720000pt;}
.y8_c00261{bottom:486.253333pt;}
.y7_c00261{bottom:506.920000pt;}
.y6_c00261{bottom:527.986667pt;}
.y5_c00261{bottom:573.586667pt;}
.y4_c00261{bottom:594.786667pt;}
.y3_c00261{bottom:617.053333pt;}
.y2_c00261{bottom:638.653333pt;}
.y1_c00261{bottom:661.186667pt;}
.h4_c00261{height:11.733399pt;}
.h5_c00261{height:38.937500pt;}
.h3_c00261{height:77.654948pt;}
.h2_c00261{height:81.031250pt;}
.h0_c00261{height:709.666667pt;}
.h1_c00261{height:710.000000pt;}
.w1_c00261{width:93.222667pt;}
.w0_c00261{width:482.666667pt;}
.x0_c00261{left:0.000000pt;}
.x7_c00261{left:33.066667pt;}
.x8_c00261{left:41.066667pt;}
.x5_c00261{left:42.266667pt;}
.x6_c00261{left:43.600000pt;}
.x9_c00261{left:84.000000pt;}
.x4_c00261{left:110.666667pt;}
.x3_c00261{left:111.600000pt;}
.x2_c00261{left:113.200000pt;}
.xa_c00261{left:198.501546pt;}
.x1_c00261{left:228.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2e03291b6c49d8c032de0c9a.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.480469;font-style:normal;font-weight:normal;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_b1e7e2cd4794b2e04eef851f.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00262;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00262{font-family:ff3_c00262;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00262{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00262{vertical-align:0.000000px;}
.ls1_c00262{letter-spacing:-3.000000px;}
.ls0_c00262{letter-spacing:0.000000px;}
.ls2_c00262{letter-spacing:3.000000px;}
.sc__c00262{text-shadow:none;}
.sc0_c00262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00262{-webkit-text-stroke:0px transparent;}
.sc0_c00262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00262{word-spacing:0.000000px;}
.ws0_c00262{word-spacing:4.275000px;}
._18_c00262{margin-left:-18.576000px;}
._15_c00262{margin-left:-11.730000px;}
._2_c00262{margin-left:-10.179000px;}
._7_c00262{margin-left:-8.091000px;}
._4_c00262{margin-left:-6.003000px;}
._11_c00262{margin-left:-4.620000px;}
._8_c00262{margin-left:-3.330000px;}
._3_c00262{margin-left:-2.001000px;}
._a_c00262{width:1.062000px;}
._9_c00262{width:2.160000px;}
._1_c00262{width:3.654000px;}
._0_c00262{width:5.307000px;}
._6_c00262{width:6.873000px;}
._c_c00262{width:8.442000px;}
._13_c00262{width:9.624000px;}
._e_c00262{width:11.640000px;}
._17_c00262{width:13.467000px;}
._d_c00262{width:15.813000px;}
._16_c00262{width:18.207000px;}
._12_c00262{width:21.078000px;}
._f_c00262{width:24.111000px;}
._14_c00262{width:25.971000px;}
._10_c00262{width:28.503000px;}
._b_c00262{width:330.225000px;}
._5_c00262{width:350.730000px;}
._19_c00262{width:1344.672000px;}
.fc2_c00262{color:transparent;}
.fc1_c00262{color:rgb(128,128,128);}
.fc0_c00262{color:rgb(0,0,0);}
.fs5_c00262{font-size:48.000000px;}
.fs2_c00262{font-size:57.000000px;}
.fs4_c00262{font-size:63.000000px;}
.fs3_c00262{font-size:69.000000px;}
.fs1_c00262{font-size:72.000000px;}
.fs0_c00262{font-size:87.000000px;}
.y0_c00262{bottom:0.000000px;}
.y1e_c00262{bottom:3.105000px;}
.y1d_c00262{bottom:7.228371px;}
.y1c_c00262{bottom:51.765000px;}
.y1b_c00262{bottom:78.015000px;}
.y1a_c00262{bottom:104.265000px;}
.y19_c00262{bottom:126.315000px;}
.y18_c00262{bottom:153.915000px;}
.y17_c00262{bottom:176.865000px;}
.y16_c00262{bottom:204.315000px;}
.y15_c00262{bottom:227.865000px;}
.y14_c00262{bottom:253.515000px;}
.y13_c00262{bottom:276.465000px;}
.y12_c00262{bottom:301.815000px;}
.y11_c00262{bottom:348.615000px;}
.y10_c00262{bottom:372.915000px;}
.yf_c00262{bottom:397.965000px;}
.ye_c00262{bottom:422.865000px;}
.yd_c00262{bottom:447.315000px;}
.yc_c00262{bottom:471.615000px;}
.yb_c00262{bottom:496.515000px;}
.ya_c00262{bottom:521.415000px;}
.y9_c00262{bottom:546.765000px;}
.y8_c00262{bottom:572.715000px;}
.y7_c00262{bottom:596.415000px;}
.y6_c00262{bottom:621.765000px;}
.y5_c00262{bottom:645.615000px;}
.y4_c00262{bottom:669.915000px;}
.y3_c00262{bottom:694.665000px;}
.y2_c00262{bottom:720.915000px;}
.y1_c00262{bottom:744.315000px;}
.h6_c00262{height:13.200074px;}
.h7_c00262{height:43.804688px;}
.h5_c00262{height:79.765137px;}
.h4_c00262{height:87.361816px;}
.h3_c00262{height:91.160156px;}
.h2_c00262{height:110.151855px;}
.h0_c00262{height:798.675000px;}
.h1_c00262{height:798.750000px;}
.w2_c00262{width:104.875500px;}
.w0_c00262{width:525.675000px;}
.w1_c00262{width:525.750000px;}
.x0_c00262{left:0.000000px;}
.x2_c00262{left:32.100000px;}
.x3_c00262{left:34.050000px;}
.x4_c00262{left:35.400000px;}
.x7_c00262{left:36.450000px;}
.x5_c00262{left:37.500000px;}
.x1_c00262{left:145.050000px;}
.x8_c00262{left:214.651749px;}
.x6_c00262{left:231.150000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls1_c00262{letter-spacing:-2.666667pt;}
.ls0_c00262{letter-spacing:0.000000pt;}
.ls2_c00262{letter-spacing:2.666667pt;}
.ws1_c00262{word-spacing:0.000000pt;}
.ws0_c00262{word-spacing:3.800000pt;}
._18_c00262{margin-left:-16.512000pt;}
._15_c00262{margin-left:-10.426667pt;}
._2_c00262{margin-left:-9.048000pt;}
._7_c00262{margin-left:-7.192000pt;}
._4_c00262{margin-left:-5.336000pt;}
._11_c00262{margin-left:-4.106667pt;}
._8_c00262{margin-left:-2.960000pt;}
._3_c00262{margin-left:-1.778667pt;}
._a_c00262{width:0.944000pt;}
._9_c00262{width:1.920000pt;}
._1_c00262{width:3.248000pt;}
._0_c00262{width:4.717333pt;}
._6_c00262{width:6.109333pt;}
._c_c00262{width:7.504000pt;}
._13_c00262{width:8.554667pt;}
._e_c00262{width:10.346667pt;}
._17_c00262{width:11.970667pt;}
._d_c00262{width:14.056000pt;}
._16_c00262{width:16.184000pt;}
._12_c00262{width:18.736000pt;}
._f_c00262{width:21.432000pt;}
._14_c00262{width:23.085333pt;}
._10_c00262{width:25.336000pt;}
._b_c00262{width:293.533333pt;}
._5_c00262{width:311.760000pt;}
._19_c00262{width:1195.264000pt;}
.fs5_c00262{font-size:42.666667pt;}
.fs2_c00262{font-size:50.666667pt;}
.fs4_c00262{font-size:56.000000pt;}
.fs3_c00262{font-size:61.333333pt;}
.fs1_c00262{font-size:64.000000pt;}
.fs0_c00262{font-size:77.333333pt;}
.y0_c00262{bottom:0.000000pt;}
.y1e_c00262{bottom:2.760000pt;}
.y1d_c00262{bottom:6.425219pt;}
.y1c_c00262{bottom:46.013333pt;}
.y1b_c00262{bottom:69.346667pt;}
.y1a_c00262{bottom:92.680000pt;}
.y19_c00262{bottom:112.280000pt;}
.y18_c00262{bottom:136.813333pt;}
.y17_c00262{bottom:157.213333pt;}
.y16_c00262{bottom:181.613333pt;}
.y15_c00262{bottom:202.546667pt;}
.y14_c00262{bottom:225.346667pt;}
.y13_c00262{bottom:245.746667pt;}
.y12_c00262{bottom:268.280000pt;}
.y11_c00262{bottom:309.880000pt;}
.y10_c00262{bottom:331.480000pt;}
.yf_c00262{bottom:353.746667pt;}
.ye_c00262{bottom:375.880000pt;}
.yd_c00262{bottom:397.613333pt;}
.yc_c00262{bottom:419.213333pt;}
.yb_c00262{bottom:441.346667pt;}
.ya_c00262{bottom:463.480000pt;}
.y9_c00262{bottom:486.013333pt;}
.y8_c00262{bottom:509.080000pt;}
.y7_c00262{bottom:530.146667pt;}
.y6_c00262{bottom:552.680000pt;}
.y5_c00262{bottom:573.880000pt;}
.y4_c00262{bottom:595.480000pt;}
.y3_c00262{bottom:617.480000pt;}
.y2_c00262{bottom:640.813333pt;}
.y1_c00262{bottom:661.613333pt;}
.h6_c00262{height:11.733399pt;}
.h7_c00262{height:38.937500pt;}
.h5_c00262{height:70.902344pt;}
.h4_c00262{height:77.654948pt;}
.h3_c00262{height:81.031250pt;}
.h2_c00262{height:97.912760pt;}
.h0_c00262{height:709.933333pt;}
.h1_c00262{height:710.000000pt;}
.w2_c00262{width:93.222667pt;}
.w0_c00262{width:467.266667pt;}
.w1_c00262{width:467.333333pt;}
.x0_c00262{left:0.000000pt;}
.x2_c00262{left:28.533333pt;}
.x3_c00262{left:30.266667pt;}
.x4_c00262{left:31.466667pt;}
.x7_c00262{left:32.400000pt;}
.x5_c00262{left:33.333333pt;}
.x1_c00262{left:128.933333pt;}
.x8_c00262{left:190.801554pt;}
.x6_c00262{left:205.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_03561fdff179c18b5e41b518.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00263;src:url('chunks/assets/font_f3ecac9449ada7e2a17532fe.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00263;src:url('chunks/assets/font_b7f1a1db719634af42340282.woff2')format("woff");}.ff3_c00263{font-family:ff3_c00263;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00263;src:url('chunks/assets/font_5e50f160c75fd3fb55400f76.woff2')format("woff");}.ff4_c00263{font-family:ff4_c00263;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00263;src:url('chunks/assets/font_e0139a8bf19b443506e195b6.woff2')format("woff");}.ff5_c00263{font-family:ff5_c00263;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00263;src:url('chunks/assets/font_a40e329ed41ef2cce0ae0b9c.woff2')format("woff");}.ff6_c00263{font-family:ff6_c00263;line-height:1.575000;font-style:normal;font-weight: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_c00263;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00263{font-family:ff7_c00263;line-height:1.219238;font-style: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;}
.ls2_c00263{letter-spacing:0.000000px;}
.ls0_c00263{letter-spacing:3.000000px;}
.ls1_c00263{letter-spacing:212.100000px;}
.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;}
}
.ws4_c00263{word-spacing:-42.957000px;}
.ws1_c00263{word-spacing:-38.052000px;}
.ws0_c00263{word-spacing:-30.441600px;}
.ws2_c00263{word-spacing:-20.352000px;}
.ws3_c00263{word-spacing:-14.460000px;}
.ws5_c00263{word-spacing:0.000000px;}
._18_c00263{margin-left:-35.298000px;}
._1d_c00263{margin-left:-17.424000px;}
._1e_c00263{margin-left:-16.236000px;}
._1b_c00263{margin-left:-12.381000px;}
._1a_c00263{margin-left:-11.304000px;}
._16_c00263{margin-left:-8.631000px;}
._10_c00263{margin-left:-7.392000px;}
._19_c00263{margin-left:-6.180000px;}
._17_c00263{margin-left:-4.851000px;}
._15_c00263{margin-left:-3.087000px;}
._5_c00263{margin-left:-1.764000px;}
._1_c00263{width:1.428000px;}
._0_c00263{width:2.520000px;}
._7_c00263{width:3.717000px;}
._6_c00263{width:4.788000px;}
._c_c00263{width:5.922000px;}
._4_c00263{width:6.972000px;}
._8_c00263{width:8.400000px;}
._a_c00263{width:9.702000px;}
._3_c00263{width:11.088000px;}
._2_c00263{width:12.936000px;}
._d_c00263{width:14.154000px;}
._14_c00263{width:17.010000px;}
._9_c00263{width:18.795000px;}
._e_c00263{width:20.328000px;}
._b_c00263{width:23.016000px;}
._12_c00263{width:24.612000px;}
._f_c00263{width:25.767000px;}
._1c_c00263{width:26.976000px;}
._13_c00263{width:28.959000px;}
._11_c00263{width:30.744000px;}
._1f_c00263{width:1123.716000px;}
.fc2_c00263{color:transparent;}
.fc1_c00263{color:rgb(128,128,128);}
.fc0_c00263{color:rgb(0,0,0);}
.fs8_c00263{font-size:48.000000px;}
.fs2_c00263{font-size:50.400000px;}
.fs4_c00263{font-size:60.000000px;}
.fs1_c00263{font-size:63.000000px;}
.fs7_c00263{font-size:66.000000px;}
.fs3_c00263{font-size:72.000000px;}
.fs6_c00263{font-size:81.000000px;}
.fs0_c00263{font-size:84.000000px;}
.fs5_c00263{font-size:129.000000px;}
.y0_c00263{bottom:0.000000px;}
.y1f_c00263{bottom:3.105000px;}
.y1e_c00263{bottom:7.228357px;}
.y1d_c00263{bottom:47.880000px;}
.y1c_c00263{bottom:68.880000px;}
.y1b_c00263{bottom:96.180000px;}
.y1a_c00263{bottom:119.880000px;}
.y19_c00263{bottom:148.230000px;}
.y18_c00263{bottom:173.880000px;}
.y17_c00263{bottom:197.730000px;}
.y16_c00263{bottom:223.080000px;}
.y15_c00263{bottom:245.130000px;}
.y14_c00263{bottom:273.330000px;}
.y13_c00263{bottom:297.630000px;}
.y12_c00263{bottom:318.330000px;}
.y11_c00263{bottom:342.630000px;}
.y10_c00263{bottom:369.180000px;}
.yf_c00263{bottom:394.230000px;}
.ye_c00263{bottom:416.880000px;}
.yd_c00263{bottom:441.180000px;}
.yc_c00263{bottom:465.180000px;}
.yb_c00263{bottom:489.330000px;}
.ya_c00263{bottom:514.380000px;}
.y9_c00263{bottom:538.380000px;}
.y8_c00263{bottom:563.580000px;}
.y7_c00263{bottom:587.730000px;}
.y6_c00263{bottom:612.330000px;}
.y5_c00263{bottom:636.930000px;}
.y4_c00263{bottom:661.530000px;}
.y3_c00263{bottom:686.430000px;}
.y2_c00263{bottom:710.730000px;}
.y1_c00263{bottom:736.830000px;}
.h8_c00263{height:13.200074px;}
.h9_c00263{height:43.804688px;}
.h7_c00263{height:70.422000px;}
.h6_c00263{height:79.497070px;}
.h3_c00263{height:79.765137px;}
.h2_c00263{height:82.441406px;}
.h4_c00263{height:91.160156px;}
.h5_c00263{height:130.007812px;}
.h1_c00263{height:784.500000px;}
.h0_c00263{height:784.650000px;}
.w2_c00263{width:104.875500px;}
.w0_c00263{width:530.850000px;}
.w1_c00263{width:531.000000px;}
.x0_c00263{left:0.000000px;}
.x3_c00263{left:110.100000px;}
.x2_c00263{left:111.600000px;}
.x4_c00263{left:113.700000px;}
.x5_c00263{left:115.650000px;}
.x6_c00263{left:148.950000px;}
.x7_c00263{left:217.239258px;}
.x1_c00263{left:229.200000px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls2_c00263{letter-spacing:0.000000pt;}
.ls0_c00263{letter-spacing:2.666667pt;}
.ls1_c00263{letter-spacing:188.533333pt;}
.ws4_c00263{word-spacing:-38.184000pt;}
.ws1_c00263{word-spacing:-33.824000pt;}
.ws0_c00263{word-spacing:-27.059200pt;}
.ws2_c00263{word-spacing:-18.090667pt;}
.ws3_c00263{word-spacing:-12.853333pt;}
.ws5_c00263{word-spacing:0.000000pt;}
._18_c00263{margin-left:-31.376000pt;}
._1d_c00263{margin-left:-15.488000pt;}
._1e_c00263{margin-left:-14.432000pt;}
._1b_c00263{margin-left:-11.005333pt;}
._1a_c00263{margin-left:-10.048000pt;}
._16_c00263{margin-left:-7.672000pt;}
._10_c00263{margin-left:-6.570667pt;}
._19_c00263{margin-left:-5.493333pt;}
._17_c00263{margin-left:-4.312000pt;}
._15_c00263{margin-left:-2.744000pt;}
._5_c00263{margin-left:-1.568000pt;}
._1_c00263{width:1.269333pt;}
._0_c00263{width:2.240000pt;}
._7_c00263{width:3.304000pt;}
._6_c00263{width:4.256000pt;}
._c_c00263{width:5.264000pt;}
._4_c00263{width:6.197333pt;}
._8_c00263{width:7.466667pt;}
._a_c00263{width:8.624000pt;}
._3_c00263{width:9.856000pt;}
._2_c00263{width:11.498667pt;}
._d_c00263{width:12.581333pt;}
._14_c00263{width:15.120000pt;}
._9_c00263{width:16.706667pt;}
._e_c00263{width:18.069333pt;}
._b_c00263{width:20.458667pt;}
._12_c00263{width:21.877333pt;}
._f_c00263{width:22.904000pt;}
._1c_c00263{width:23.978667pt;}
._13_c00263{width:25.741333pt;}
._11_c00263{width:27.328000pt;}
._1f_c00263{width:998.858667pt;}
.fs8_c00263{font-size:42.666667pt;}
.fs2_c00263{font-size:44.800000pt;}
.fs4_c00263{font-size:53.333333pt;}
.fs1_c00263{font-size:56.000000pt;}
.fs7_c00263{font-size:58.666667pt;}
.fs3_c00263{font-size:64.000000pt;}
.fs6_c00263{font-size:72.000000pt;}
.fs0_c00263{font-size:74.666667pt;}
.fs5_c00263{font-size:114.666667pt;}
.y0_c00263{bottom:0.000000pt;}
.y1f_c00263{bottom:2.760000pt;}
.y1e_c00263{bottom:6.425206pt;}
.y1d_c00263{bottom:42.560000pt;}
.y1c_c00263{bottom:61.226667pt;}
.y1b_c00263{bottom:85.493333pt;}
.y1a_c00263{bottom:106.560000pt;}
.y19_c00263{bottom:131.760000pt;}
.y18_c00263{bottom:154.560000pt;}
.y17_c00263{bottom:175.760000pt;}
.y16_c00263{bottom:198.293333pt;}
.y15_c00263{bottom:217.893333pt;}
.y14_c00263{bottom:242.960000pt;}
.y13_c00263{bottom:264.560000pt;}
.y12_c00263{bottom:282.960000pt;}
.y11_c00263{bottom:304.560000pt;}
.y10_c00263{bottom:328.160000pt;}
.yf_c00263{bottom:350.426667pt;}
.ye_c00263{bottom:370.560000pt;}
.yd_c00263{bottom:392.160000pt;}
.yc_c00263{bottom:413.493333pt;}
.yb_c00263{bottom:434.960000pt;}
.ya_c00263{bottom:457.226667pt;}
.y9_c00263{bottom:478.560000pt;}
.y8_c00263{bottom:500.960000pt;}
.y7_c00263{bottom:522.426667pt;}
.y6_c00263{bottom:544.293333pt;}
.y5_c00263{bottom:566.160000pt;}
.y4_c00263{bottom:588.026667pt;}
.y3_c00263{bottom:610.160000pt;}
.y2_c00263{bottom:631.760000pt;}
.y1_c00263{bottom:654.960000pt;}
.h8_c00263{height:11.733399pt;}
.h9_c00263{height:38.937500pt;}
.h7_c00263{height:62.597333pt;}
.h6_c00263{height:70.664062pt;}
.h3_c00263{height:70.902344pt;}
.h2_c00263{height:73.281250pt;}
.h4_c00263{height:81.031250pt;}
.h5_c00263{height:115.562500pt;}
.h1_c00263{height:697.333333pt;}
.h0_c00263{height:697.466667pt;}
.w2_c00263{width:93.222667pt;}
.w0_c00263{width:471.866667pt;}
.w1_c00263{width:472.000000pt;}
.x0_c00263{left:0.000000pt;}
.x3_c00263{left:97.866667pt;}
.x2_c00263{left:99.200000pt;}
.x4_c00263{left:101.066667pt;}
.x5_c00263{left:102.800000pt;}
.x6_c00263{left:132.400000pt;}
.x7_c00263{left:193.101563pt;}
.x1_c00263{left:203.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aedd35e46d6b8b2219c3d542.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.592000;font-style:normal;font-weight:normal;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_f788c8449133d8dc60f7a662.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:1.480469;font-style:normal;font-weight:normal;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_3262ba22a86d4836b6b7badd.woff2')format("woff");}.ff3_c00264{font-family:ff3_c00264;line-height:1.568848;font-style:normal;font-weight:normal;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_068a49ca4c1a46a37a7d97b4.woff2')format("woff");}.ff4_c00264{font-family:ff4_c00264;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00264;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00264{font-family:ff5_c00264;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00264{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00264{vertical-align:0.000000px;}
.ls1_c00264{letter-spacing:-3.000000px;}
.ls3_c00264{letter-spacing:0.000000px;}
.ls4_c00264{letter-spacing:3.000000px;}
.ls0_c00264{letter-spacing:3.060000px;}
.ls2_c00264{letter-spacing:15.000000px;}
.sc__c00264{text-shadow:none;}
.sc0_c00264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00264{-webkit-text-stroke:0px transparent;}
.sc0_c00264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00264{word-spacing:-42.660000px;}
.ws1_c00264{word-spacing:-18.798000px;}
.ws2_c00264{word-spacing:0.000000px;}
._19_c00264{margin-left:-11.070000px;}
._11_c00264{margin-left:-8.943000px;}
._15_c00264{margin-left:-7.635000px;}
._18_c00264{margin-left:-5.985000px;}
._16_c00264{margin-left:-4.338000px;}
._12_c00264{margin-left:-3.168000px;}
._10_c00264{margin-left:-1.488000px;}
._e_c00264{width:1.008000px;}
._8_c00264{width:2.700000px;}
._9_c00264{width:3.960000px;}
._c_c00264{width:5.577000px;}
._3_c00264{width:6.660000px;}
._a_c00264{width:7.902000px;}
._b_c00264{width:9.078000px;}
._6_c00264{width:10.200000px;}
._5_c00264{width:11.460000px;}
._1_c00264{width:13.020000px;}
._13_c00264{width:14.112000px;}
._f_c00264{width:16.443000px;}
._4_c00264{width:17.880000px;}
._2_c00264{width:19.440000px;}
._0_c00264{width:21.060000px;}
._17_c00264{width:22.350000px;}
._d_c00264{width:23.991000px;}
._7_c00264{width:353.820000px;}
._14_c00264{width:710.481000px;}
.fc2_c00264{color:transparent;}
.fc1_c00264{color:rgb(128,128,128);}
.fc0_c00264{color:rgb(0,0,0);}
.fs4_c00264{font-size:48.000000px;}
.fs0_c00264{font-size:60.000000px;}
.fs1_c00264{font-size:63.000000px;}
.fs3_c00264{font-size:78.000000px;}
.fs2_c00264{font-size:90.000000px;}
.y0_c00264{bottom:0.000000px;}
.y1f_c00264{bottom:3.105000px;}
.y1e_c00264{bottom:7.228369px;}
.y1d_c00264{bottom:46.470000px;}
.y1c_c00264{bottom:74.820000px;}
.y1b_c00264{bottom:100.170000px;}
.y1a_c00264{bottom:126.120000px;}
.y19_c00264{bottom:151.170000px;}
.y18_c00264{bottom:175.770000px;}
.y17_c00264{bottom:199.470000px;}
.y16_c00264{bottom:225.720000px;}
.y15_c00264{bottom:248.670000px;}
.y14_c00264{bottom:275.970000px;}
.y13_c00264{bottom:295.920000px;}
.y12_c00264{bottom:321.270000px;}
.y11_c00264{bottom:344.970000px;}
.y10_c00264{bottom:369.570000px;}
.yf_c00264{bottom:394.470000px;}
.ye_c00264{bottom:419.220000px;}
.yd_c00264{bottom:443.520000px;}
.yc_c00264{bottom:468.720000px;}
.yb_c00264{bottom:493.020000px;}
.ya_c00264{bottom:517.770000px;}
.y9_c00264{bottom:542.670000px;}
.y8_c00264{bottom:566.970000px;}
.y7_c00264{bottom:591.270000px;}
.y6_c00264{bottom:616.620000px;}
.y5_c00264{bottom:640.920000px;}
.y4_c00264{bottom:665.520000px;}
.y3_c00264{bottom:690.420000px;}
.y2_c00264{bottom:714.870000px;}
.y1_c00264{bottom:740.520000px;}
.h5_c00264{height:13.200073px;}
.h6_c00264{height:43.804688px;}
.h2_c00264{height:70.224609px;}
.h3_c00264{height:79.765137px;}
.h4_c00264{height:98.756836px;}
.h0_c00264{height:788.100000px;}
.h1_c00264{height:788.250000px;}
.w2_c00264{width:104.875500px;}
.w1_c00264{width:530.250000px;}
.w0_c00264{width:530.550000px;}
.x0_c00264{left:0.000000px;}
.x2_c00264{left:27.000000px;}
.x3_c00264{left:28.650000px;}
.x4_c00264{left:30.000000px;}
.x5_c00264{left:31.500000px;}
.x8_c00264{left:33.000000px;}
.x7_c00264{left:34.650000px;}
.x1_c00264{left:135.900000px;}
.xa_c00264{left:217.089249px;}
.x6_c00264{left:256.800000px;}
.x9_c00264{left:359.100000px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls1_c00264{letter-spacing:-2.666667pt;}
.ls3_c00264{letter-spacing:0.000000pt;}
.ls4_c00264{letter-spacing:2.666667pt;}
.ls0_c00264{letter-spacing:2.720000pt;}
.ls2_c00264{letter-spacing:13.333333pt;}
.ws0_c00264{word-spacing:-37.920000pt;}
.ws1_c00264{word-spacing:-16.709333pt;}
.ws2_c00264{word-spacing:0.000000pt;}
._19_c00264{margin-left:-9.840000pt;}
._11_c00264{margin-left:-7.949333pt;}
._15_c00264{margin-left:-6.786667pt;}
._18_c00264{margin-left:-5.320000pt;}
._16_c00264{margin-left:-3.856000pt;}
._12_c00264{margin-left:-2.816000pt;}
._10_c00264{margin-left:-1.322667pt;}
._e_c00264{width:0.896000pt;}
._8_c00264{width:2.400000pt;}
._9_c00264{width:3.520000pt;}
._c_c00264{width:4.957333pt;}
._3_c00264{width:5.920000pt;}
._a_c00264{width:7.024000pt;}
._b_c00264{width:8.069333pt;}
._6_c00264{width:9.066667pt;}
._5_c00264{width:10.186667pt;}
._1_c00264{width:11.573333pt;}
._13_c00264{width:12.544000pt;}
._f_c00264{width:14.616000pt;}
._4_c00264{width:15.893333pt;}
._2_c00264{width:17.280000pt;}
._0_c00264{width:18.720000pt;}
._17_c00264{width:19.866667pt;}
._d_c00264{width:21.325333pt;}
._7_c00264{width:314.506667pt;}
._14_c00264{width:631.538667pt;}
.fs4_c00264{font-size:42.666667pt;}
.fs0_c00264{font-size:53.333333pt;}
.fs1_c00264{font-size:56.000000pt;}
.fs3_c00264{font-size:69.333333pt;}
.fs2_c00264{font-size:80.000000pt;}
.y0_c00264{bottom:0.000000pt;}
.y1f_c00264{bottom:2.760000pt;}
.y1e_c00264{bottom:6.425217pt;}
.y1d_c00264{bottom:41.306667pt;}
.y1c_c00264{bottom:66.506667pt;}
.y1b_c00264{bottom:89.040000pt;}
.y1a_c00264{bottom:112.106667pt;}
.y19_c00264{bottom:134.373333pt;}
.y18_c00264{bottom:156.240000pt;}
.y17_c00264{bottom:177.306667pt;}
.y16_c00264{bottom:200.640000pt;}
.y15_c00264{bottom:221.040000pt;}
.y14_c00264{bottom:245.306667pt;}
.y13_c00264{bottom:263.040000pt;}
.y12_c00264{bottom:285.573333pt;}
.y11_c00264{bottom:306.640000pt;}
.y10_c00264{bottom:328.506667pt;}
.yf_c00264{bottom:350.640000pt;}
.ye_c00264{bottom:372.640000pt;}
.yd_c00264{bottom:394.240000pt;}
.yc_c00264{bottom:416.640000pt;}
.yb_c00264{bottom:438.240000pt;}
.ya_c00264{bottom:460.240000pt;}
.y9_c00264{bottom:482.373333pt;}
.y8_c00264{bottom:503.973333pt;}
.y7_c00264{bottom:525.573333pt;}
.y6_c00264{bottom:548.106667pt;}
.y5_c00264{bottom:569.706667pt;}
.y4_c00264{bottom:591.573333pt;}
.y3_c00264{bottom:613.706667pt;}
.y2_c00264{bottom:635.440000pt;}
.y1_c00264{bottom:658.240000pt;}
.h5_c00264{height:11.733399pt;}
.h6_c00264{height:38.937500pt;}
.h2_c00264{height:62.421875pt;}
.h3_c00264{height:70.902344pt;}
.h4_c00264{height:87.783854pt;}
.h0_c00264{height:700.533333pt;}
.h1_c00264{height:700.666667pt;}
.w2_c00264{width:93.222667pt;}
.w1_c00264{width:471.333333pt;}
.w0_c00264{width:471.600000pt;}
.x0_c00264{left:0.000000pt;}
.x2_c00264{left:24.000000pt;}
.x3_c00264{left:25.466667pt;}
.x4_c00264{left:26.666667pt;}
.x5_c00264{left:28.000000pt;}
.x8_c00264{left:29.333333pt;}
.x7_c00264{left:30.800000pt;}
.x1_c00264{left:120.800000pt;}
.xa_c00264{left:192.968221pt;}
.x6_c00264{left:228.266667pt;}
.x9_c00264{left:319.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_24bab5e56251d639b6a32057.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.480469;font-style:normal;font-weight:normal;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_84abe99ed6abd708d912416f.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;line-height:1.568848;font-style:normal;font-weight:normal;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_a801d5bb859d489c0f4220c1.woff2')format("woff");}.ff3_c00265{font-family:ff3_c00265;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00265;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00265{font-family:ff4_c00265;line-height:1.219238;font-style: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;}
.ls2_c00265{letter-spacing:0.000000px;}
.ls0_c00265{letter-spacing:5.880000px;}
.ls3_c00265{letter-spacing:6.000000px;}
.ls1_c00265{letter-spacing:13.320000px;}
.sc__c00265{text-shadow:none;}
.sc0_c00265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00265{-webkit-text-stroke:0px transparent;}
.sc0_c00265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00265{word-spacing:-15.183000px;}
.ws0_c00265{word-spacing:-14.460000px;}
.ws3_c00265{word-spacing:0.000000px;}
.ws1_c00265{word-spacing:0.720000px;}
._11_c00265{margin-left:-10.395000px;}
._14_c00265{margin-left:-6.906000px;}
._a_c00265{margin-left:-5.688000px;}
._d_c00265{margin-left:-2.973000px;}
._f_c00265{margin-left:-1.398000px;}
._10_c00265{width:1.197000px;}
._8_c00265{width:2.205000px;}
._b_c00265{width:3.507000px;}
._7_c00265{width:4.524000px;}
._4_c00265{width:6.120000px;}
._5_c00265{width:7.320000px;}
._6_c00265{width:9.135000px;}
._9_c00265{width:10.521000px;}
._2_c00265{width:11.640000px;}
._3_c00265{width:12.900000px;}
._c_c00265{width:14.127000px;}
._13_c00265{width:16.398000px;}
._12_c00265{width:17.754000px;}
._1_c00265{width:18.900000px;}
._15_c00265{width:20.172000px;}
._e_c00265{width:21.192000px;}
._0_c00265{width:25.860000px;}
.fc2_c00265{color:transparent;}
.fc1_c00265{color:rgb(128,128,128);}
.fc0_c00265{color:rgb(0,0,0);}
.fs4_c00265{font-size:48.000000px;}
.fs3_c00265{font-size:57.000000px;}
.fs0_c00265{font-size:60.000000px;}
.fs1_c00265{font-size:63.000000px;}
.fs2_c00265{font-size:69.000000px;}
.y0_c00265{bottom:0.000000px;}
.y1e_c00265{bottom:3.105000px;}
.y1d_c00265{bottom:7.228355px;}
.y1c_c00265{bottom:81.585000px;}
.y1b_c00265{bottom:106.335000px;}
.y1a_c00265{bottom:131.985000px;}
.y19_c00265{bottom:157.185000px;}
.y18_c00265{bottom:181.485000px;}
.y17_c00265{bottom:206.535000px;}
.y16_c00265{bottom:231.435000px;}
.y15_c00265{bottom:255.735000px;}
.y14_c00265{bottom:279.435000px;}
.y13_c00265{bottom:304.335000px;}
.y12_c00265{bottom:329.085000px;}
.y11_c00265{bottom:354.285000px;}
.y10_c00265{bottom:379.035000px;}
.yf_c00265{bottom:402.585000px;}
.ye_c00265{bottom:426.885000px;}
.yd_c00265{bottom:451.935000px;}
.yc_c00265{bottom:474.885000px;}
.yb_c00265{bottom:500.085000px;}
.ya_c00265{bottom:524.685000px;}
.y9_c00265{bottom:549.135000px;}
.y8_c00265{bottom:573.435000px;}
.y7_c00265{bottom:599.085000px;}
.y6_c00265{bottom:623.235000px;}
.y5_c00265{bottom:647.985000px;}
.y4_c00265{bottom:672.585000px;}
.y3_c00265{bottom:696.885000px;}
.y2_c00265{bottom:720.885000px;}
.y1_c00265{bottom:747.585000px;}
.h5_c00265{height:13.200074px;}
.h6_c00265{height:43.804688px;}
.h2_c00265{height:70.224609px;}
.h3_c00265{height:79.765137px;}
.h4_c00265{height:87.361816px;}
.h0_c00265{height:795.675000px;}
.h1_c00265{height:795.750000px;}
.w2_c00265{width:104.875500px;}
.w1_c00265{width:513.750000px;}
.w0_c00265{width:514.050000px;}
.x0_c00265{left:0.000000px;}
.xb_c00265{left:106.200000px;}
.xa_c00265{left:107.250000px;}
.x9_c00265{left:109.050000px;}
.x8_c00265{left:110.400000px;}
.x7_c00265{left:112.050000px;}
.x6_c00265{left:115.050000px;}
.x5_c00265{left:116.400000px;}
.x4_c00265{left:117.750000px;}
.x3_c00265{left:118.800000px;}
.x2_c00265{left:121.800000px;}
.xc_c00265{left:208.839249px;}
.x1_c00265{left:246.750000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls2_c00265{letter-spacing:0.000000pt;}
.ls0_c00265{letter-spacing:5.226667pt;}
.ls3_c00265{letter-spacing:5.333333pt;}
.ls1_c00265{letter-spacing:11.840000pt;}
.ws2_c00265{word-spacing:-13.496000pt;}
.ws0_c00265{word-spacing:-12.853333pt;}
.ws3_c00265{word-spacing:0.000000pt;}
.ws1_c00265{word-spacing:0.640000pt;}
._11_c00265{margin-left:-9.240000pt;}
._14_c00265{margin-left:-6.138667pt;}
._a_c00265{margin-left:-5.056000pt;}
._d_c00265{margin-left:-2.642667pt;}
._f_c00265{margin-left:-1.242667pt;}
._10_c00265{width:1.064000pt;}
._8_c00265{width:1.960000pt;}
._b_c00265{width:3.117333pt;}
._7_c00265{width:4.021333pt;}
._4_c00265{width:5.440000pt;}
._5_c00265{width:6.506667pt;}
._6_c00265{width:8.120000pt;}
._9_c00265{width:9.352000pt;}
._2_c00265{width:10.346667pt;}
._3_c00265{width:11.466667pt;}
._c_c00265{width:12.557333pt;}
._13_c00265{width:14.576000pt;}
._12_c00265{width:15.781333pt;}
._1_c00265{width:16.800000pt;}
._15_c00265{width:17.930667pt;}
._e_c00265{width:18.837333pt;}
._0_c00265{width:22.986667pt;}
.fs4_c00265{font-size:42.666667pt;}
.fs3_c00265{font-size:50.666667pt;}
.fs0_c00265{font-size:53.333333pt;}
.fs1_c00265{font-size:56.000000pt;}
.fs2_c00265{font-size:61.333333pt;}
.y0_c00265{bottom:0.000000pt;}
.y1e_c00265{bottom:2.760000pt;}
.y1d_c00265{bottom:6.425204pt;}
.y1c_c00265{bottom:72.520000pt;}
.y1b_c00265{bottom:94.520000pt;}
.y1a_c00265{bottom:117.320000pt;}
.y19_c00265{bottom:139.720000pt;}
.y18_c00265{bottom:161.320000pt;}
.y17_c00265{bottom:183.586667pt;}
.y16_c00265{bottom:205.720000pt;}
.y15_c00265{bottom:227.320000pt;}
.y14_c00265{bottom:248.386667pt;}
.y13_c00265{bottom:270.520000pt;}
.y12_c00265{bottom:292.520000pt;}
.y11_c00265{bottom:314.920000pt;}
.y10_c00265{bottom:336.920000pt;}
.yf_c00265{bottom:357.853333pt;}
.ye_c00265{bottom:379.453333pt;}
.yd_c00265{bottom:401.720000pt;}
.yc_c00265{bottom:422.120000pt;}
.yb_c00265{bottom:444.520000pt;}
.ya_c00265{bottom:466.386667pt;}
.y9_c00265{bottom:488.120000pt;}
.y8_c00265{bottom:509.720000pt;}
.y7_c00265{bottom:532.520000pt;}
.y6_c00265{bottom:553.986667pt;}
.y5_c00265{bottom:575.986667pt;}
.y4_c00265{bottom:597.853333pt;}
.y3_c00265{bottom:619.453333pt;}
.y2_c00265{bottom:640.786667pt;}
.y1_c00265{bottom:664.520000pt;}
.h5_c00265{height:11.733399pt;}
.h6_c00265{height:38.937500pt;}
.h2_c00265{height:62.421875pt;}
.h3_c00265{height:70.902344pt;}
.h4_c00265{height:77.654948pt;}
.h0_c00265{height:707.266667pt;}
.h1_c00265{height:707.333333pt;}
.w2_c00265{width:93.222667pt;}
.w1_c00265{width:456.666667pt;}
.w0_c00265{width:456.933333pt;}
.x0_c00265{left:0.000000pt;}
.xb_c00265{left:94.400000pt;}
.xa_c00265{left:95.333333pt;}
.x9_c00265{left:96.933333pt;}
.x8_c00265{left:98.133333pt;}
.x7_c00265{left:99.600000pt;}
.x6_c00265{left:102.266667pt;}
.x5_c00265{left:103.466667pt;}
.x4_c00265{left:104.666667pt;}
.x3_c00265{left:105.600000pt;}
.x2_c00265{left:108.266667pt;}
.xc_c00265{left:185.634888pt;}
.x1_c00265{left:219.333333pt;}
}





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

.ir_c00266:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00266{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00266;src:url('chunks/assets/font_efc7b0c5f5479d294482b830.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.480469;font-style:normal;font-weight:normal;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_d6093931ebd98839a6943839.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00266;src:url('chunks/assets/font_0b9cecfa9f7873f9e96641b8.woff2')format("woff");}.ff3_c00266{font-family:ff3_c00266;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00266;src:url('chunks/assets/font_b8c28788d64bd0591980f989.woff2')format("woff");}.ff4_c00266{font-family:ff4_c00266;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00266;src:url('chunks/assets/font_27cc03ec9c17b5ebf24a5b72.woff2')format("woff");}.ff5_c00266{font-family:ff5_c00266;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00266;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00266{font-family:ff6_c00266;line-height:1.219238;font-style: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:-6.000000px;}
.ls2_c00266{letter-spacing:-3.000000px;}
.ls0_c00266{letter-spacing:0.000000px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00266{word-spacing:-5.460000px;}
.ws1_c00266{word-spacing:0.000000px;}
._1d_c00266{margin-left:-13.005000px;}
._19_c00266{margin-left:-11.016000px;}
._d_c00266{margin-left:-9.192000px;}
._1c_c00266{margin-left:-8.169000px;}
._c_c00266{margin-left:-6.924000px;}
._b_c00266{margin-left:-5.076000px;}
._12_c00266{margin-left:-3.966000px;}
._3_c00266{margin-left:-2.016000px;}
._5_c00266{width:1.512000px;}
._4_c00266{width:2.808000px;}
._6_c00266{width:4.104000px;}
._9_c00266{width:5.934000px;}
._e_c00266{width:7.077000px;}
._a_c00266{width:8.097000px;}
._f_c00266{width:9.177000px;}
._10_c00266{width:10.182000px;}
._11_c00266{width:11.214000px;}
._1_c00266{width:12.240000px;}
._14_c00266{width:13.362000px;}
._13_c00266{width:14.985000px;}
._2_c00266{width:18.792000px;}
._0_c00266{width:19.872000px;}
._15_c00266{width:21.918000px;}
._16_c00266{width:23.517000px;}
._18_c00266{width:25.599000px;}
._8_c00266{width:27.000000px;}
._17_c00266{width:29.877000px;}
._1e_c00266{width:58.512000px;}
._1b_c00266{width:60.759000px;}
._1a_c00266{width:176.574000px;}
._7_c00266{width:349.128000px;}
.fc2_c00266{color:transparent;}
.fc1_c00266{color:rgb(128,128,128);}
.fc0_c00266{color:rgb(0,0,0);}
.fs6_c00266{font-size:48.000000px;}
.fs5_c00266{font-size:60.000000px;}
.fs4_c00266{font-size:63.000000px;}
.fs3_c00266{font-size:66.000000px;}
.fs1_c00266{font-size:69.000000px;}
.fs0_c00266{font-size:72.000000px;}
.fs2_c00266{font-size:87.000000px;}
.y0_c00266{bottom:0.000000px;}
.y1d_c00266{bottom:3.105000px;}
.y1c_c00266{bottom:7.228369px;}
.y1b_c00266{bottom:77.970000px;}
.y1a_c00266{bottom:104.520000px;}
.y19_c00266{bottom:129.270000px;}
.y18_c00266{bottom:152.220000px;}
.y17_c00266{bottom:180.270000px;}
.y16_c00266{bottom:204.870000px;}
.y15_c00266{bottom:230.220000px;}
.y14_c00266{bottom:254.070000px;}
.y13_c00266{bottom:279.720000px;}
.y12_c00266{bottom:325.320000px;}
.y11_c00266{bottom:349.620000px;}
.y10_c00266{bottom:373.170000px;}
.yf_c00266{bottom:399.270000px;}
.ye_c00266{bottom:424.170000px;}
.yd_c00266{bottom:449.220000px;}
.yc_c00266{bottom:473.070000px;}
.yb_c00266{bottom:498.120000px;}
.ya_c00266{bottom:523.170000px;}
.y9_c00266{bottom:548.070000px;}
.y8_c00266{bottom:572.070000px;}
.y7_c00266{bottom:596.670000px;}
.y6_c00266{bottom:621.270000px;}
.y5_c00266{bottom:645.870000px;}
.y4_c00266{bottom:671.220000px;}
.y3_c00266{bottom:695.220000px;}
.y2_c00266{bottom:720.120000px;}
.y1_c00266{bottom:745.170000px;}
.h5_c00266{height:13.200073px;}
.h6_c00266{height:43.804688px;}
.h2_c00266{height:84.269531px;}
.h4_c00266{height:87.361816px;}
.h3_c00266{height:110.151855px;}
.h0_c00266{height:794.850000px;}
.h1_c00266{height:795.000000px;}
.w2_c00266{width:104.875500px;}
.w0_c00266{width:535.425000px;}
.w1_c00266{width:535.500000px;}
.x0_c00266{left:0.000000px;}
.x6_c00266{left:25.050000px;}
.x8_c00266{left:26.400000px;}
.x5_c00266{left:27.450000px;}
.x7_c00266{left:28.800000px;}
.x3_c00266{left:31.350000px;}
.x4_c00266{left:32.850000px;}
.x2_c00266{left:71.250000px;}
.x9_c00266{left:108.000000px;}
.x1_c00266{left:141.450000px;}
.xa_c00266{left:219.526749px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls1_c00266{letter-spacing:-5.333333pt;}
.ls2_c00266{letter-spacing:-2.666667pt;}
.ls0_c00266{letter-spacing:0.000000pt;}
.ws0_c00266{word-spacing:-4.853333pt;}
.ws1_c00266{word-spacing:0.000000pt;}
._1d_c00266{margin-left:-11.560000pt;}
._19_c00266{margin-left:-9.792000pt;}
._d_c00266{margin-left:-8.170667pt;}
._1c_c00266{margin-left:-7.261333pt;}
._c_c00266{margin-left:-6.154667pt;}
._b_c00266{margin-left:-4.512000pt;}
._12_c00266{margin-left:-3.525333pt;}
._3_c00266{margin-left:-1.792000pt;}
._5_c00266{width:1.344000pt;}
._4_c00266{width:2.496000pt;}
._6_c00266{width:3.648000pt;}
._9_c00266{width:5.274667pt;}
._e_c00266{width:6.290667pt;}
._a_c00266{width:7.197333pt;}
._f_c00266{width:8.157333pt;}
._10_c00266{width:9.050667pt;}
._11_c00266{width:9.968000pt;}
._1_c00266{width:10.880000pt;}
._14_c00266{width:11.877333pt;}
._13_c00266{width:13.320000pt;}
._2_c00266{width:16.704000pt;}
._0_c00266{width:17.664000pt;}
._15_c00266{width:19.482667pt;}
._16_c00266{width:20.904000pt;}
._18_c00266{width:22.754667pt;}
._8_c00266{width:24.000000pt;}
._17_c00266{width:26.557333pt;}
._1e_c00266{width:52.010667pt;}
._1b_c00266{width:54.008000pt;}
._1a_c00266{width:156.954667pt;}
._7_c00266{width:310.336000pt;}
.fs6_c00266{font-size:42.666667pt;}
.fs5_c00266{font-size:53.333333pt;}
.fs4_c00266{font-size:56.000000pt;}
.fs3_c00266{font-size:58.666667pt;}
.fs1_c00266{font-size:61.333333pt;}
.fs0_c00266{font-size:64.000000pt;}
.fs2_c00266{font-size:77.333333pt;}
.y0_c00266{bottom:0.000000pt;}
.y1d_c00266{bottom:2.760000pt;}
.y1c_c00266{bottom:6.425217pt;}
.y1b_c00266{bottom:69.306667pt;}
.y1a_c00266{bottom:92.906667pt;}
.y19_c00266{bottom:114.906667pt;}
.y18_c00266{bottom:135.306667pt;}
.y17_c00266{bottom:160.240000pt;}
.y16_c00266{bottom:182.106667pt;}
.y15_c00266{bottom:204.640000pt;}
.y14_c00266{bottom:225.840000pt;}
.y13_c00266{bottom:248.640000pt;}
.y12_c00266{bottom:289.173333pt;}
.y11_c00266{bottom:310.773333pt;}
.y10_c00266{bottom:331.706667pt;}
.yf_c00266{bottom:354.906667pt;}
.ye_c00266{bottom:377.040000pt;}
.yd_c00266{bottom:399.306667pt;}
.yc_c00266{bottom:420.506667pt;}
.yb_c00266{bottom:442.773333pt;}
.ya_c00266{bottom:465.040000pt;}
.y9_c00266{bottom:487.173333pt;}
.y8_c00266{bottom:508.506667pt;}
.y7_c00266{bottom:530.373333pt;}
.y6_c00266{bottom:552.240000pt;}
.y5_c00266{bottom:574.106667pt;}
.y4_c00266{bottom:596.640000pt;}
.y3_c00266{bottom:617.973333pt;}
.y2_c00266{bottom:640.106667pt;}
.y1_c00266{bottom:662.373333pt;}
.h5_c00266{height:11.733399pt;}
.h6_c00266{height:38.937500pt;}
.h2_c00266{height:74.906250pt;}
.h4_c00266{height:77.654948pt;}
.h3_c00266{height:97.912760pt;}
.h0_c00266{height:706.533333pt;}
.h1_c00266{height:706.666667pt;}
.w2_c00266{width:93.222667pt;}
.w0_c00266{width:475.933333pt;}
.w1_c00266{width:476.000000pt;}
.x0_c00266{left:0.000000pt;}
.x6_c00266{left:22.266667pt;}
.x8_c00266{left:23.466667pt;}
.x5_c00266{left:24.400000pt;}
.x7_c00266{left:25.600000pt;}
.x3_c00266{left:27.866667pt;}
.x4_c00266{left:29.200000pt;}
.x2_c00266{left:63.333333pt;}
.x9_c00266{left:96.000000pt;}
.x1_c00266{left:125.733333pt;}
.xa_c00266{left:195.134888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2e61d0ea7a1b54779710104.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.568848;font-style:normal;font-weight:normal;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_e0f4d019897a8180515c771d.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00267;src:url('chunks/assets/font_81c7ac36106fb87d6b709b58.woff2')format("woff");}.ff3_c00267{font-family:ff3_c00267;line-height:1.480469;font-style:normal;font-weight:normal;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_578bb67c94c6fdde58b3efe6.woff2')format("woff");}.ff4_c00267{font-family:ff4_c00267;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00267;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00267{font-family:ff5_c00267;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00267{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00267{vertical-align:0.000000px;}
.ls6_c00267{letter-spacing:-6.000000px;}
.ls5_c00267{letter-spacing:0.000000px;}
.ls1_c00267{letter-spacing:0.600000px;}
.ls2_c00267{letter-spacing:2.460000px;}
.ls7_c00267{letter-spacing:3.000000px;}
.ls0_c00267{letter-spacing:5.100000px;}
.ls4_c00267{letter-spacing:14.400000px;}
.ls3_c00267{letter-spacing:32.100000px;}
.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;}
}
.ws3_c00267{word-spacing:-31.891200px;}
.ws0_c00267{word-spacing:-27.660000px;}
.ws4_c00267{word-spacing:-18.798000px;}
.ws1_c00267{word-spacing:-14.460000px;}
.ws2_c00267{word-spacing:-11.352000px;}
.ws5_c00267{word-spacing:0.000000px;}
._16_c00267{margin-left:-14.430000px;}
._1a_c00267{margin-left:-11.850000px;}
._11_c00267{margin-left:-9.972000px;}
._a_c00267{margin-left:-8.163000px;}
._b_c00267{margin-left:-6.453000px;}
._10_c00267{margin-left:-5.394000px;}
._d_c00267{margin-left:-4.128000px;}
._9_c00267{margin-left:-2.691000px;}
._8_c00267{margin-left:-1.587000px;}
._3_c00267{width:1.794000px;}
._c_c00267{width:2.922000px;}
._2_c00267{width:3.933000px;}
._1_c00267{width:5.451000px;}
._0_c00267{width:6.555000px;}
._e_c00267{width:7.674000px;}
._4_c00267{width:9.660000px;}
._12_c00267{width:11.190000px;}
._7_c00267{width:12.489000px;}
._6_c00267{width:14.283000px;}
._15_c00267{width:15.657000px;}
._14_c00267{width:17.019000px;}
._5_c00267{width:19.734000px;}
._f_c00267{width:21.384000px;}
._17_c00267{width:35.604000px;}
._19_c00267{width:37.143000px;}
._13_c00267{width:162.108000px;}
._18_c00267{width:469.716000px;}
._1b_c00267{width:528.888000px;}
.fc2_c00267{color:transparent;}
.fc1_c00267{color:rgb(128,128,128);}
.fc0_c00267{color:rgb(0,0,0);}
.fs9_c00267{font-size:48.000000px;}
.fs3_c00267{font-size:51.000000px;}
.fs5_c00267{font-size:52.800000px;}
.fs8_c00267{font-size:54.000000px;}
.fs2_c00267{font-size:60.000000px;}
.fs4_c00267{font-size:66.000000px;}
.fs0_c00267{font-size:69.000000px;}
.fs1_c00267{font-size:72.000000px;}
.fs6_c00267{font-size:78.000000px;}
.fs7_c00267{font-size:81.000000px;}
.y0_c00267{bottom:0.000000px;}
.y1e_c00267{bottom:3.105000px;}
.y1d_c00267{bottom:7.228357px;}
.y1c_c00267{bottom:57.480000px;}
.y1b_c00267{bottom:81.330000px;}
.y1a_c00267{bottom:104.580000px;}
.y19_c00267{bottom:130.680000px;}
.y18_c00267{bottom:156.930000px;}
.y17_c00267{bottom:181.230000px;}
.y16_c00267{bottom:205.830000px;}
.y15_c00267{bottom:233.580000px;}
.y14_c00267{bottom:255.930000px;}
.y13_c00267{bottom:278.880000px;}
.y12_c00267{bottom:305.130000px;}
.y11_c00267{bottom:331.080000px;}
.y10_c00267{bottom:357.030000px;}
.yf_c00267{bottom:379.980000px;}
.ye_c00267{bottom:403.680000px;}
.yd_c00267{bottom:430.080000px;}
.yc_c00267{bottom:454.380000px;}
.yb_c00267{bottom:476.580000px;}
.ya_c00267{bottom:501.480000px;}
.y9_c00267{bottom:527.280000px;}
.y8_c00267{bottom:550.080000px;}
.y7_c00267{bottom:575.730000px;}
.y6_c00267{bottom:600.180000px;}
.y5_c00267{bottom:624.030000px;}
.y4_c00267{bottom:648.630000px;}
.y3_c00267{bottom:673.380000px;}
.y2_c00267{bottom:698.580000px;}
.y1_c00267{bottom:723.330000px;}
.h8_c00267{height:13.200074px;}
.h9_c00267{height:43.804688px;}
.h3_c00267{height:64.571777px;}
.h7_c00267{height:68.370117px;}
.h6_c00267{height:79.497070px;}
.h4_c00267{height:83.563477px;}
.h1_c00267{height:87.361816px;}
.h2_c00267{height:91.160156px;}
.h5_c00267{height:98.756836px;}
.h0_c00267{height:792.750000px;}
.w2_c00267{width:104.875500px;}
.w0_c00267{width:497.625000px;}
.w1_c00267{width:498.000000px;}
.x0_c00267{left:0.000000px;}
.xc_c00267{left:67.200000px;}
.x2_c00267{left:68.550000px;}
.x1_c00267{left:69.900000px;}
.x3_c00267{left:72.150000px;}
.x4_c00267{left:74.250000px;}
.x5_c00267{left:75.600000px;}
.x6_c00267{left:77.250000px;}
.x7_c00267{left:78.600000px;}
.x8_c00267{left:80.700000px;}
.x9_c00267{left:82.350000px;}
.xa_c00267{left:84.000000px;}
.xb_c00267{left:85.050000px;}
.xd_c00267{left:88.200000px;}
.xe_c00267{left:89.400000px;}
.xf_c00267{left:90.900000px;}
.x10_c00267{left:92.100000px;}
.x12_c00267{left:94.050000px;}
.x13_c00267{left:95.550000px;}
.x11_c00267{left:116.400000px;}
.x15_c00267{left:200.626740px;}
.x14_c00267{left:286.200000px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls6_c00267{letter-spacing:-5.333333pt;}
.ls5_c00267{letter-spacing:0.000000pt;}
.ls1_c00267{letter-spacing:0.533333pt;}
.ls2_c00267{letter-spacing:2.186667pt;}
.ls7_c00267{letter-spacing:2.666667pt;}
.ls0_c00267{letter-spacing:4.533333pt;}
.ls4_c00267{letter-spacing:12.800000pt;}
.ls3_c00267{letter-spacing:28.533333pt;}
.ws3_c00267{word-spacing:-28.347733pt;}
.ws0_c00267{word-spacing:-24.586667pt;}
.ws4_c00267{word-spacing:-16.709333pt;}
.ws1_c00267{word-spacing:-12.853333pt;}
.ws2_c00267{word-spacing:-10.090667pt;}
.ws5_c00267{word-spacing:0.000000pt;}
._16_c00267{margin-left:-12.826667pt;}
._1a_c00267{margin-left:-10.533333pt;}
._11_c00267{margin-left:-8.864000pt;}
._a_c00267{margin-left:-7.256000pt;}
._b_c00267{margin-left:-5.736000pt;}
._10_c00267{margin-left:-4.794667pt;}
._d_c00267{margin-left:-3.669333pt;}
._9_c00267{margin-left:-2.392000pt;}
._8_c00267{margin-left:-1.410667pt;}
._3_c00267{width:1.594667pt;}
._c_c00267{width:2.597333pt;}
._2_c00267{width:3.496000pt;}
._1_c00267{width:4.845333pt;}
._0_c00267{width:5.826667pt;}
._e_c00267{width:6.821333pt;}
._4_c00267{width:8.586667pt;}
._12_c00267{width:9.946667pt;}
._7_c00267{width:11.101333pt;}
._6_c00267{width:12.696000pt;}
._15_c00267{width:13.917333pt;}
._14_c00267{width:15.128000pt;}
._5_c00267{width:17.541333pt;}
._f_c00267{width:19.008000pt;}
._17_c00267{width:31.648000pt;}
._19_c00267{width:33.016000pt;}
._13_c00267{width:144.096000pt;}
._18_c00267{width:417.525333pt;}
._1b_c00267{width:470.122667pt;}
.fs9_c00267{font-size:42.666667pt;}
.fs3_c00267{font-size:45.333333pt;}
.fs5_c00267{font-size:46.933333pt;}
.fs8_c00267{font-size:48.000000pt;}
.fs2_c00267{font-size:53.333333pt;}
.fs4_c00267{font-size:58.666667pt;}
.fs0_c00267{font-size:61.333333pt;}
.fs1_c00267{font-size:64.000000pt;}
.fs6_c00267{font-size:69.333333pt;}
.fs7_c00267{font-size:72.000000pt;}
.y0_c00267{bottom:0.000000pt;}
.y1e_c00267{bottom:2.760000pt;}
.y1d_c00267{bottom:6.425206pt;}
.y1c_c00267{bottom:51.093333pt;}
.y1b_c00267{bottom:72.293333pt;}
.y1a_c00267{bottom:92.960000pt;}
.y19_c00267{bottom:116.160000pt;}
.y18_c00267{bottom:139.493333pt;}
.y17_c00267{bottom:161.093333pt;}
.y16_c00267{bottom:182.960000pt;}
.y15_c00267{bottom:207.626667pt;}
.y14_c00267{bottom:227.493333pt;}
.y13_c00267{bottom:247.893333pt;}
.y12_c00267{bottom:271.226667pt;}
.y11_c00267{bottom:294.293333pt;}
.y10_c00267{bottom:317.360000pt;}
.yf_c00267{bottom:337.760000pt;}
.ye_c00267{bottom:358.826667pt;}
.yd_c00267{bottom:382.293333pt;}
.yc_c00267{bottom:403.893333pt;}
.yb_c00267{bottom:423.626667pt;}
.ya_c00267{bottom:445.760000pt;}
.y9_c00267{bottom:468.693333pt;}
.y8_c00267{bottom:488.960000pt;}
.y7_c00267{bottom:511.760000pt;}
.y6_c00267{bottom:533.493333pt;}
.y5_c00267{bottom:554.693333pt;}
.y4_c00267{bottom:576.560000pt;}
.y3_c00267{bottom:598.560000pt;}
.y2_c00267{bottom:620.960000pt;}
.y1_c00267{bottom:642.960000pt;}
.h8_c00267{height:11.733399pt;}
.h9_c00267{height:38.937500pt;}
.h3_c00267{height:57.397135pt;}
.h7_c00267{height:60.773438pt;}
.h6_c00267{height:70.664062pt;}
.h4_c00267{height:74.278646pt;}
.h1_c00267{height:77.654948pt;}
.h2_c00267{height:81.031250pt;}
.h5_c00267{height:87.783854pt;}
.h0_c00267{height:704.666667pt;}
.w2_c00267{width:93.222667pt;}
.w0_c00267{width:442.333333pt;}
.w1_c00267{width:442.666667pt;}
.x0_c00267{left:0.000000pt;}
.xc_c00267{left:59.733333pt;}
.x2_c00267{left:60.933333pt;}
.x1_c00267{left:62.133333pt;}
.x3_c00267{left:64.133333pt;}
.x4_c00267{left:66.000000pt;}
.x5_c00267{left:67.200000pt;}
.x6_c00267{left:68.666667pt;}
.x7_c00267{left:69.866667pt;}
.x8_c00267{left:71.733333pt;}
.x9_c00267{left:73.200000pt;}
.xa_c00267{left:74.666667pt;}
.xb_c00267{left:75.600000pt;}
.xd_c00267{left:78.400000pt;}
.xe_c00267{left:79.466667pt;}
.xf_c00267{left:80.800000pt;}
.x10_c00267{left:81.866667pt;}
.x12_c00267{left:83.600000pt;}
.x13_c00267{left:84.933333pt;}
.x11_c00267{left:103.466667pt;}
.x15_c00267{left:178.334880pt;}
.x14_c00267{left:254.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0ef733763e7e760941c136e3.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.480469;font-style:normal;font-weight:normal;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_b4fb417b6f373409660d3e12.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00268;src:url('chunks/assets/font_885139266e271594c96988e3.woff2')format("woff");}.ff3_c00268{font-family:ff3_c00268;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00268;src:url('chunks/assets/font_7f4d624e24694ad3677ad0f5.woff2')format("woff");}.ff4_c00268{font-family:ff4_c00268;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00268;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00268{font-family:ff5_c00268;line-height:1.219238;font-style: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);}
.v2_c00268{vertical-align:-102.600000px;}
.v0_c00268{vertical-align:0.000000px;}
.v1_c00268{vertical-align:4.200000px;}
.ls1_c00268{letter-spacing:0.000000px;}
.ls2_c00268{letter-spacing:3.000000px;}
.ls0_c00268{letter-spacing:30.600000px;}
.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:-27.144000px;}
.ws1_c00268{word-spacing:-20.352000px;}
.ws2_c00268{word-spacing:0.000000px;}
._17_c00268{margin-left:-39.828600px;}
._18_c00268{margin-left:-25.416000px;}
._15_c00268{margin-left:-15.696000px;}
._11_c00268{margin-left:-12.789000px;}
._19_c00268{margin-left:-11.358000px;}
._16_c00268{margin-left:-9.820800px;}
._d_c00268{margin-left:-8.784000px;}
._e_c00268{margin-left:-6.498000px;}
._9_c00268{margin-left:-5.175000px;}
._a_c00268{margin-left:-3.213000px;}
._0_c00268{margin-left:-1.305000px;}
._7_c00268{width:1.089000px;}
._8_c00268{width:2.556000px;}
._5_c00268{width:4.315200px;}
._3_c00268{width:5.846400px;}
._f_c00268{width:7.191600px;}
._6_c00268{width:8.352000px;}
._2_c00268{width:9.744000px;}
._4_c00268{width:10.800000px;}
._10_c00268{width:12.568800px;}
._12_c00268{width:14.202000px;}
._b_c00268{width:16.240800px;}
._c_c00268{width:18.414000px;}
._14_c00268{width:22.468800px;}
._13_c00268{width:25.726200px;}
._1a_c00268{width:60.705000px;}
._1b_c00268{width:271.077600px;}
._1_c00268{width:316.419000px;}
.fc2_c00268{color:transparent;}
.fc1_c00268{color:rgb(128,128,128);}
.fc0_c00268{color:rgb(0,0,0);}
.fs4_c00268{font-size:48.000000px;}
.fs3_c00268{font-size:60.000000px;}
.fs1_c00268{font-size:69.600000px;}
.fs2_c00268{font-size:72.000000px;}
.fs0_c00268{font-size:87.000000px;}
.y0_c00268{bottom:0.000000px;}
.y1e_c00268{bottom:3.105000px;}
.y1d_c00268{bottom:7.228357px;}
.y1c_c00268{bottom:74.880000px;}
.y1b_c00268{bottom:100.980000px;}
.y1a_c00268{bottom:126.180000px;}
.y19_c00268{bottom:150.930000px;}
.y18_c00268{bottom:174.930000px;}
.y17_c00268{bottom:200.130000px;}
.y16_c00268{bottom:225.480000px;}
.y15_c00268{bottom:250.380000px;}
.y14_c00268{bottom:275.130000px;}
.y13_c00268{bottom:299.130000px;}
.y12_c00268{bottom:320.280000px;}
.y11_c00268{bottom:345.030000px;}
.y10_c00268{bottom:369.930000px;}
.yf_c00268{bottom:394.530000px;}
.ye_c00268{bottom:419.130000px;}
.yd_c00268{bottom:444.180000px;}
.yc_c00268{bottom:468.480000px;}
.yb_c00268{bottom:493.380000px;}
.ya_c00268{bottom:518.130000px;}
.y9_c00268{bottom:542.130000px;}
.y8_c00268{bottom:566.430000px;}
.y7_c00268{bottom:591.330000px;}
.y6_c00268{bottom:615.330000px;}
.y5_c00268{bottom:641.280000px;}
.y4_c00268{bottom:664.530000px;}
.y3_c00268{bottom:688.830000px;}
.y2_c00268{bottom:713.430000px;}
.y1_c00268{bottom:739.230000px;}
.h4_c00268{height:13.200074px;}
.h5_c00268{height:43.804688px;}
.h2_c00268{height:91.160156px;}
.h3_c00268{height:95.360156px;}
.h1_c00268{height:101.825684px;}
.h0_c00268{height:786.000000px;}
.w2_c00268{width:104.875500px;}
.w1_c00268{width:512.250000px;}
.w0_c00268{width:512.475000px;}
.x0_c00268{left:0.000000px;}
.x9_c00268{left:26.700000px;}
.x5_c00268{left:28.350000px;}
.x7_c00268{left:30.300000px;}
.x8_c00268{left:31.350000px;}
.x4_c00268{left:32.400000px;}
.x3_c00268{left:33.450000px;}
.x2_c00268{left:35.400000px;}
.x6_c00268{left:46.800000px;}
.x1_c00268{left:155.250000px;}
.xa_c00268{left:208.051758px;}
@media print{
.v2_c00268{vertical-align:-91.200000pt;}
.v0_c00268{vertical-align:0.000000pt;}
.v1_c00268{vertical-align:3.733333pt;}
.ls1_c00268{letter-spacing:0.000000pt;}
.ls2_c00268{letter-spacing:2.666667pt;}
.ls0_c00268{letter-spacing:27.200000pt;}
.ws0_c00268{word-spacing:-24.128000pt;}
.ws1_c00268{word-spacing:-18.090667pt;}
.ws2_c00268{word-spacing:0.000000pt;}
._17_c00268{margin-left:-35.403200pt;}
._18_c00268{margin-left:-22.592000pt;}
._15_c00268{margin-left:-13.952000pt;}
._11_c00268{margin-left:-11.368000pt;}
._19_c00268{margin-left:-10.096000pt;}
._16_c00268{margin-left:-8.729600pt;}
._d_c00268{margin-left:-7.808000pt;}
._e_c00268{margin-left:-5.776000pt;}
._9_c00268{margin-left:-4.600000pt;}
._a_c00268{margin-left:-2.856000pt;}
._0_c00268{margin-left:-1.160000pt;}
._7_c00268{width:0.968000pt;}
._8_c00268{width:2.272000pt;}
._5_c00268{width:3.835733pt;}
._3_c00268{width:5.196800pt;}
._f_c00268{width:6.392533pt;}
._6_c00268{width:7.424000pt;}
._2_c00268{width:8.661333pt;}
._4_c00268{width:9.600000pt;}
._10_c00268{width:11.172267pt;}
._12_c00268{width:12.624000pt;}
._b_c00268{width:14.436267pt;}
._c_c00268{width:16.368000pt;}
._14_c00268{width:19.972267pt;}
._13_c00268{width:22.867733pt;}
._1a_c00268{width:53.960000pt;}
._1b_c00268{width:240.957867pt;}
._1_c00268{width:281.261333pt;}
.fs4_c00268{font-size:42.666667pt;}
.fs3_c00268{font-size:53.333333pt;}
.fs1_c00268{font-size:61.866667pt;}
.fs2_c00268{font-size:64.000000pt;}
.fs0_c00268{font-size:77.333333pt;}
.y0_c00268{bottom:0.000000pt;}
.y1e_c00268{bottom:2.760000pt;}
.y1d_c00268{bottom:6.425206pt;}
.y1c_c00268{bottom:66.560000pt;}
.y1b_c00268{bottom:89.760000pt;}
.y1a_c00268{bottom:112.160000pt;}
.y19_c00268{bottom:134.160000pt;}
.y18_c00268{bottom:155.493333pt;}
.y17_c00268{bottom:177.893333pt;}
.y16_c00268{bottom:200.426667pt;}
.y15_c00268{bottom:222.560000pt;}
.y14_c00268{bottom:244.560000pt;}
.y13_c00268{bottom:265.893333pt;}
.y12_c00268{bottom:284.693333pt;}
.y11_c00268{bottom:306.693333pt;}
.y10_c00268{bottom:328.826667pt;}
.yf_c00268{bottom:350.693333pt;}
.ye_c00268{bottom:372.560000pt;}
.yd_c00268{bottom:394.826667pt;}
.yc_c00268{bottom:416.426667pt;}
.yb_c00268{bottom:438.560000pt;}
.ya_c00268{bottom:460.560000pt;}
.y9_c00268{bottom:481.893333pt;}
.y8_c00268{bottom:503.493333pt;}
.y7_c00268{bottom:525.626667pt;}
.y6_c00268{bottom:546.960000pt;}
.y5_c00268{bottom:570.026667pt;}
.y4_c00268{bottom:590.693333pt;}
.y3_c00268{bottom:612.293333pt;}
.y2_c00268{bottom:634.160000pt;}
.y1_c00268{bottom:657.093333pt;}
.h4_c00268{height:11.733399pt;}
.h5_c00268{height:38.937500pt;}
.h2_c00268{height:81.031250pt;}
.h3_c00268{height:84.764583pt;}
.h1_c00268{height:90.511719pt;}
.h0_c00268{height:698.666667pt;}
.w2_c00268{width:93.222667pt;}
.w1_c00268{width:455.333333pt;}
.w0_c00268{width:455.533333pt;}
.x0_c00268{left:0.000000pt;}
.x9_c00268{left:23.733333pt;}
.x5_c00268{left:25.200000pt;}
.x7_c00268{left:26.933333pt;}
.x8_c00268{left:27.866667pt;}
.x4_c00268{left:28.800000pt;}
.x3_c00268{left:29.733333pt;}
.x2_c00268{left:31.466667pt;}
.x6_c00268{left:41.600000pt;}
.x1_c00268{left:138.000000pt;}
.xa_c00268{left:184.934896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_744c77960ed674fc1b9be949.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.480469;font-style:normal;font-weight:normal;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_b1c6b0633a182c075ec3fe6a.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:1.568848;font-style:normal;font-weight:normal;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_9a1a93d61b9e90c73a69b8da.woff2')format("woff");}.ff3_c00269{font-family:ff3_c00269;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00269;src:url('chunks/assets/font_99950d329cdcec5cbd2cbd99.woff2')format("woff");}.ff4_c00269{font-family:ff4_c00269;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00269;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00269{font-family:ff5_c00269;line-height:1.219238;font-style: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;}
.ls5_c00269{letter-spacing:-12.000000px;}
.ls4_c00269{letter-spacing:0.000000px;}
.ls2_c00269{letter-spacing:0.492000px;}
.ls0_c00269{letter-spacing:3.000000px;}
.ls3_c00269{letter-spacing:11.616000px;}
.ls6_c00269{letter-spacing:12.000000px;}
.ls1_c00269{letter-spacing:24.120000px;}
.sc__c00269{text-shadow:none;}
.sc0_c00269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00269{-webkit-text-stroke:0px transparent;}
.sc0_c00269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00269{word-spacing:-27.000000px;}
.ws0_c00269{word-spacing:-17.352000px;}
.ws2_c00269{word-spacing:0.000000px;}
._1b_c00269{margin-left:-19.812000px;}
._e_c00269{margin-left:-15.840000px;}
._1a_c00269{margin-left:-14.784000px;}
._15_c00269{margin-left:-12.153000px;}
._c_c00269{margin-left:-10.368000px;}
._0_c00269{margin-left:-9.048000px;}
._3_c00269{margin-left:-7.344000px;}
._4_c00269{margin-left:-6.048000px;}
._9_c00269{margin-left:-4.680000px;}
._5_c00269{margin-left:-3.600000px;}
._1_c00269{margin-left:-2.088000px;}
._13_c00269{margin-left:-1.008000px;}
._2_c00269{width:1.800000px;}
._a_c00269{width:2.808000px;}
._12_c00269{width:3.927000px;}
._7_c00269{width:5.112000px;}
._6_c00269{width:6.888000px;}
._8_c00269{width:8.808000px;}
._10_c00269{width:10.656000px;}
._11_c00269{width:11.736000px;}
._19_c00269{width:12.753000px;}
._d_c00269{width:14.232000px;}
._b_c00269{width:15.984000px;}
._16_c00269{width:17.157000px;}
._1d_c00269{width:18.306000px;}
._18_c00269{width:21.738000px;}
._f_c00269{width:24.048000px;}
._17_c00269{width:27.321000px;}
._14_c00269{width:32.235000px;}
._1c_c00269{width:162.336000px;}
._1f_c00269{width:349.032000px;}
._1e_c00269{width:384.297000px;}
.fc2_c00269{color:transparent;}
.fc1_c00269{color:rgb(128,128,128);}
.fc0_c00269{color:rgb(0,0,0);}
.fs7_c00269{font-size:24.000000px;}
.fs9_c00269{font-size:48.000000px;}
.fs8_c00269{font-size:51.000000px;}
.fs6_c00269{font-size:57.000000px;}
.fs5_c00269{font-size:63.000000px;}
.fs1_c00269{font-size:72.000000px;}
.fs2_c00269{font-size:75.000000px;}
.fs4_c00269{font-size:78.000000px;}
.fs3_c00269{font-size:81.000000px;}
.fs0_c00269{font-size:87.000000px;}
.y0_c00269{bottom:0.000000px;}
.y1f_c00269{bottom:3.105000px;}
.y1e_c00269{bottom:7.228355px;}
.y1d_c00269{bottom:46.185000px;}
.y1c_c00269{bottom:71.085000px;}
.y1b_c00269{bottom:98.085000px;}
.y1a_c00269{bottom:122.535000px;}
.y19_c00269{bottom:148.035000px;}
.y18_c00269{bottom:172.485000px;}
.y17_c00269{bottom:196.035000px;}
.y16_c00269{bottom:222.435000px;}
.y15_c00269{bottom:247.035000px;}
.y14_c00269{bottom:271.335000px;}
.y13_c00269{bottom:295.635000px;}
.y12_c00269{bottom:319.935000px;}
.y11_c00269{bottom:344.835000px;}
.y10_c00269{bottom:369.135000px;}
.yf_c00269{bottom:393.735000px;}
.ye_c00269{bottom:418.035000px;}
.yd_c00269{bottom:442.335000px;}
.yc_c00269{bottom:466.635000px;}
.yb_c00269{bottom:490.635000px;}
.ya_c00269{bottom:514.935000px;}
.y9_c00269{bottom:539.535000px;}
.y8_c00269{bottom:561.885000px;}
.y7_c00269{bottom:587.235000px;}
.y6_c00269{bottom:613.185000px;}
.y5_c00269{bottom:637.485000px;}
.y4_c00269{bottom:662.085000px;}
.y3_c00269{bottom:686.385000px;}
.y2_c00269{bottom:710.085000px;}
.y1_c00269{bottom:735.735000px;}
.h7_c00269{height:13.200074px;}
.h8_c00269{height:43.804688px;}
.h6_c00269{height:64.571777px;}
.h4_c00269{height:79.497070px;}
.h3_c00269{height:91.160156px;}
.h5_c00269{height:102.555176px;}
.h2_c00269{height:110.151855px;}
.h0_c00269{height:783.525000px;}
.h1_c00269{height:783.750000px;}
.w2_c00269{width:104.875500px;}
.w0_c00269{width:492.450000px;}
.w1_c00269{width:492.750000px;}
.x0_c00269{left:0.000000px;}
.x2_c00269{left:81.750000px;}
.x3_c00269{left:84.150000px;}
.x5_c00269{left:85.800000px;}
.x7_c00269{left:87.000000px;}
.x6_c00269{left:88.050000px;}
.x4_c00269{left:90.150000px;}
.x8_c00269{left:102.600000px;}
.x9_c00269{left:198.039230px;}
.x1_c00269{left:208.950000px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls5_c00269{letter-spacing:-10.666667pt;}
.ls4_c00269{letter-spacing:0.000000pt;}
.ls2_c00269{letter-spacing:0.437333pt;}
.ls0_c00269{letter-spacing:2.666667pt;}
.ls3_c00269{letter-spacing:10.325333pt;}
.ls6_c00269{letter-spacing:10.666667pt;}
.ls1_c00269{letter-spacing:21.440000pt;}
.ws1_c00269{word-spacing:-24.000000pt;}
.ws0_c00269{word-spacing:-15.424000pt;}
.ws2_c00269{word-spacing:0.000000pt;}
._1b_c00269{margin-left:-17.610667pt;}
._e_c00269{margin-left:-14.080000pt;}
._1a_c00269{margin-left:-13.141333pt;}
._15_c00269{margin-left:-10.802667pt;}
._c_c00269{margin-left:-9.216000pt;}
._0_c00269{margin-left:-8.042667pt;}
._3_c00269{margin-left:-6.528000pt;}
._4_c00269{margin-left:-5.376000pt;}
._9_c00269{margin-left:-4.160000pt;}
._5_c00269{margin-left:-3.200000pt;}
._1_c00269{margin-left:-1.856000pt;}
._13_c00269{margin-left:-0.896000pt;}
._2_c00269{width:1.600000pt;}
._a_c00269{width:2.496000pt;}
._12_c00269{width:3.490667pt;}
._7_c00269{width:4.544000pt;}
._6_c00269{width:6.122667pt;}
._8_c00269{width:7.829333pt;}
._10_c00269{width:9.472000pt;}
._11_c00269{width:10.432000pt;}
._19_c00269{width:11.336000pt;}
._d_c00269{width:12.650667pt;}
._b_c00269{width:14.208000pt;}
._16_c00269{width:15.250667pt;}
._1d_c00269{width:16.272000pt;}
._18_c00269{width:19.322667pt;}
._f_c00269{width:21.376000pt;}
._17_c00269{width:24.285333pt;}
._14_c00269{width:28.653333pt;}
._1c_c00269{width:144.298667pt;}
._1f_c00269{width:310.250667pt;}
._1e_c00269{width:341.597333pt;}
.fs7_c00269{font-size:21.333333pt;}
.fs9_c00269{font-size:42.666667pt;}
.fs8_c00269{font-size:45.333333pt;}
.fs6_c00269{font-size:50.666667pt;}
.fs5_c00269{font-size:56.000000pt;}
.fs1_c00269{font-size:64.000000pt;}
.fs2_c00269{font-size:66.666667pt;}
.fs4_c00269{font-size:69.333333pt;}
.fs3_c00269{font-size:72.000000pt;}
.fs0_c00269{font-size:77.333333pt;}
.y0_c00269{bottom:0.000000pt;}
.y1f_c00269{bottom:2.760000pt;}
.y1e_c00269{bottom:6.425204pt;}
.y1d_c00269{bottom:41.053333pt;}
.y1c_c00269{bottom:63.186667pt;}
.y1b_c00269{bottom:87.186667pt;}
.y1a_c00269{bottom:108.920000pt;}
.y19_c00269{bottom:131.586667pt;}
.y18_c00269{bottom:153.320000pt;}
.y17_c00269{bottom:174.253333pt;}
.y16_c00269{bottom:197.720000pt;}
.y15_c00269{bottom:219.586667pt;}
.y14_c00269{bottom:241.186667pt;}
.y13_c00269{bottom:262.786667pt;}
.y12_c00269{bottom:284.386667pt;}
.y11_c00269{bottom:306.520000pt;}
.y10_c00269{bottom:328.120000pt;}
.yf_c00269{bottom:349.986667pt;}
.ye_c00269{bottom:371.586667pt;}
.yd_c00269{bottom:393.186667pt;}
.yc_c00269{bottom:414.786667pt;}
.yb_c00269{bottom:436.120000pt;}
.ya_c00269{bottom:457.720000pt;}
.y9_c00269{bottom:479.586667pt;}
.y8_c00269{bottom:499.453333pt;}
.y7_c00269{bottom:521.986667pt;}
.y6_c00269{bottom:545.053333pt;}
.y5_c00269{bottom:566.653333pt;}
.y4_c00269{bottom:588.520000pt;}
.y3_c00269{bottom:610.120000pt;}
.y2_c00269{bottom:631.186667pt;}
.y1_c00269{bottom:653.986667pt;}
.h7_c00269{height:11.733399pt;}
.h8_c00269{height:38.937500pt;}
.h6_c00269{height:57.397135pt;}
.h4_c00269{height:70.664062pt;}
.h3_c00269{height:81.031250pt;}
.h5_c00269{height:91.160156pt;}
.h2_c00269{height:97.912760pt;}
.h0_c00269{height:696.466667pt;}
.h1_c00269{height:696.666667pt;}
.w2_c00269{width:93.222667pt;}
.w0_c00269{width:437.733333pt;}
.w1_c00269{width:438.000000pt;}
.x0_c00269{left:0.000000pt;}
.x2_c00269{left:72.666667pt;}
.x3_c00269{left:74.800000pt;}
.x5_c00269{left:76.266667pt;}
.x7_c00269{left:77.333333pt;}
.x6_c00269{left:78.266667pt;}
.x4_c00269{left:80.133333pt;}
.x8_c00269{left:91.200000pt;}
.x9_c00269{left:176.034871pt;}
.x1_c00269{left:185.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2b2f021ff06dfd028ab4c244.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.480469;font-style:normal;font-weight:normal;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_3a7b8a4de4d1c55e78ff8ef1.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00270;src:url('chunks/assets/font_542b9d55db086d70a7303da3.woff2')format("woff");}.ff3_c00270{font-family:ff3_c00270;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00270;src:url('chunks/assets/font_a24603ac00521eddfd8ae2af.woff2')format("woff");}.ff4_c00270{font-family:ff4_c00270;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00270;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00270{font-family:ff5_c00270;line-height:1.219238;font-style: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;}
.ls2_c00270{letter-spacing:0.000000px;}
.ls1_c00270{letter-spacing:1.215000px;}
.ls3_c00270{letter-spacing:3.000000px;}
.ls0_c00270{letter-spacing:23.400000px;}
.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;}
}
.ws1_c00270{word-spacing:-20.352000px;}
.ws0_c00270{word-spacing:-17.352000px;}
.ws2_c00270{word-spacing:0.000000px;}
._16_c00270{margin-left:-21.384000px;}
._15_c00270{margin-left:-19.728000px;}
._1a_c00270{margin-left:-18.360000px;}
._7_c00270{margin-left:-12.384000px;}
._14_c00270{margin-left:-11.232000px;}
._12_c00270{margin-left:-9.432000px;}
._18_c00270{margin-left:-7.272000px;}
._f_c00270{margin-left:-6.192000px;}
._d_c00270{margin-left:-5.112000px;}
._c_c00270{margin-left:-4.032000px;}
._2_c00270{margin-left:-2.376000px;}
._a_c00270{margin-left:-1.296000px;}
._9_c00270{width:1.080000px;}
._5_c00270{width:2.160000px;}
._3_c00270{width:3.168000px;}
._11_c00270{width:4.176000px;}
._b_c00270{width:5.184000px;}
._4_c00270{width:6.408000px;}
._10_c00270{width:8.784000px;}
._13_c00270{width:10.224000px;}
._1_c00270{width:11.664000px;}
._17_c00270{width:12.888000px;}
._e_c00270{width:14.904000px;}
._19_c00270{width:16.488000px;}
._0_c00270{width:18.360000px;}
._8_c00270{width:36.672000px;}
._1b_c00270{width:67.680000px;}
._6_c00270{width:302.664000px;}
._1c_c00270{width:361.584000px;}
.fc2_c00270{color:transparent;}
.fc1_c00270{color:rgb(128,128,128);}
.fc0_c00270{color:rgb(0,0,0);}
.fs3_c00270{font-size:48.000000px;}
.fs0_c00270{font-size:72.000000px;}
.fs1_c00270{font-size:78.000000px;}
.fs2_c00270{font-size:81.000000px;}
.y0_c00270{bottom:0.000000px;}
.y1f_c00270{bottom:3.105000px;}
.y1e_c00270{bottom:7.228357px;}
.y1d_c00270{bottom:47.280000px;}
.y1c_c00270{bottom:75.030000px;}
.y1b_c00270{bottom:96.930000px;}
.y1a_c00270{bottom:125.580000px;}
.y19_c00270{bottom:150.480000px;}
.y18_c00270{bottom:175.230000px;}
.y17_c00270{bottom:200.880000px;}
.y16_c00270{bottom:225.480000px;}
.y15_c00270{bottom:249.780000px;}
.y14_c00270{bottom:274.680000px;}
.y13_c00270{bottom:298.980000px;}
.y12_c00270{bottom:321.330000px;}
.y11_c00270{bottom:345.030000px;}
.y10_c00270{bottom:369.630000px;}
.yf_c00270{bottom:394.230000px;}
.ye_c00270{bottom:419.130000px;}
.yd_c00270{bottom:443.880000px;}
.yc_c00270{bottom:468.480000px;}
.yb_c00270{bottom:493.080000px;}
.ya_c00270{bottom:517.380000px;}
.y9_c00270{bottom:542.130000px;}
.y8_c00270{bottom:567.030000px;}
.y7_c00270{bottom:591.630000px;}
.y6_c00270{bottom:616.380000px;}
.y5_c00270{bottom:640.680000px;}
.y4_c00270{bottom:665.880000px;}
.y3_c00270{bottom:690.180000px;}
.y2_c00270{bottom:714.930000px;}
.y1_c00270{bottom:740.430000px;}
.h3_c00270{height:13.200074px;}
.h4_c00270{height:43.804688px;}
.h2_c00270{height:91.160156px;}
.h0_c00270{height:781.950000px;}
.h1_c00270{height:782.250000px;}
.w2_c00270{width:104.875500px;}
.w1_c00270{width:516.000000px;}
.w0_c00270{width:516.225000px;}
.x0_c00270{left:0.000000px;}
.xb_c00270{left:33.450000px;}
.xa_c00270{left:35.400000px;}
.x9_c00270{left:36.750000px;}
.x8_c00270{left:38.250000px;}
.x6_c00270{left:39.750000px;}
.x7_c00270{left:40.800000px;}
.x5_c00270{left:41.850000px;}
.x4_c00270{left:43.200000px;}
.x3_c00270{left:44.250000px;}
.x2_c00270{left:45.600000px;}
.x1_c00270{left:171.150000px;}
.xd_c00270{left:209.926758px;}
.xc_c00270{left:230.700000px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls2_c00270{letter-spacing:0.000000pt;}
.ls1_c00270{letter-spacing:1.080000pt;}
.ls3_c00270{letter-spacing:2.666667pt;}
.ls0_c00270{letter-spacing:20.800000pt;}
.ws1_c00270{word-spacing:-18.090667pt;}
.ws0_c00270{word-spacing:-15.424000pt;}
.ws2_c00270{word-spacing:0.000000pt;}
._16_c00270{margin-left:-19.008000pt;}
._15_c00270{margin-left:-17.536000pt;}
._1a_c00270{margin-left:-16.320000pt;}
._7_c00270{margin-left:-11.008000pt;}
._14_c00270{margin-left:-9.984000pt;}
._12_c00270{margin-left:-8.384000pt;}
._18_c00270{margin-left:-6.464000pt;}
._f_c00270{margin-left:-5.504000pt;}
._d_c00270{margin-left:-4.544000pt;}
._c_c00270{margin-left:-3.584000pt;}
._2_c00270{margin-left:-2.112000pt;}
._a_c00270{margin-left:-1.152000pt;}
._9_c00270{width:0.960000pt;}
._5_c00270{width:1.920000pt;}
._3_c00270{width:2.816000pt;}
._11_c00270{width:3.712000pt;}
._b_c00270{width:4.608000pt;}
._4_c00270{width:5.696000pt;}
._10_c00270{width:7.808000pt;}
._13_c00270{width:9.088000pt;}
._1_c00270{width:10.368000pt;}
._17_c00270{width:11.456000pt;}
._e_c00270{width:13.248000pt;}
._19_c00270{width:14.656000pt;}
._0_c00270{width:16.320000pt;}
._8_c00270{width:32.597333pt;}
._1b_c00270{width:60.160000pt;}
._6_c00270{width:269.034667pt;}
._1c_c00270{width:321.408000pt;}
.fs3_c00270{font-size:42.666667pt;}
.fs0_c00270{font-size:64.000000pt;}
.fs1_c00270{font-size:69.333333pt;}
.fs2_c00270{font-size:72.000000pt;}
.y0_c00270{bottom:0.000000pt;}
.y1f_c00270{bottom:2.760000pt;}
.y1e_c00270{bottom:6.425206pt;}
.y1d_c00270{bottom:42.026667pt;}
.y1c_c00270{bottom:66.693333pt;}
.y1b_c00270{bottom:86.160000pt;}
.y1a_c00270{bottom:111.626667pt;}
.y19_c00270{bottom:133.760000pt;}
.y18_c00270{bottom:155.760000pt;}
.y17_c00270{bottom:178.560000pt;}
.y16_c00270{bottom:200.426667pt;}
.y15_c00270{bottom:222.026667pt;}
.y14_c00270{bottom:244.160000pt;}
.y13_c00270{bottom:265.760000pt;}
.y12_c00270{bottom:285.626667pt;}
.y11_c00270{bottom:306.693333pt;}
.y10_c00270{bottom:328.560000pt;}
.yf_c00270{bottom:350.426667pt;}
.ye_c00270{bottom:372.560000pt;}
.yd_c00270{bottom:394.560000pt;}
.yc_c00270{bottom:416.426667pt;}
.yb_c00270{bottom:438.293333pt;}
.ya_c00270{bottom:459.893333pt;}
.y9_c00270{bottom:481.893333pt;}
.y8_c00270{bottom:504.026667pt;}
.y7_c00270{bottom:525.893333pt;}
.y6_c00270{bottom:547.893333pt;}
.y5_c00270{bottom:569.493333pt;}
.y4_c00270{bottom:591.893333pt;}
.y3_c00270{bottom:613.493333pt;}
.y2_c00270{bottom:635.493333pt;}
.y1_c00270{bottom:658.160000pt;}
.h3_c00270{height:11.733399pt;}
.h4_c00270{height:38.937500pt;}
.h2_c00270{height:81.031250pt;}
.h0_c00270{height:695.066667pt;}
.h1_c00270{height:695.333333pt;}
.w2_c00270{width:93.222667pt;}
.w1_c00270{width:458.666667pt;}
.w0_c00270{width:458.866667pt;}
.x0_c00270{left:0.000000pt;}
.xb_c00270{left:29.733333pt;}
.xa_c00270{left:31.466667pt;}
.x9_c00270{left:32.666667pt;}
.x8_c00270{left:34.000000pt;}
.x6_c00270{left:35.333333pt;}
.x7_c00270{left:36.266667pt;}
.x5_c00270{left:37.200000pt;}
.x4_c00270{left:38.400000pt;}
.x3_c00270{left:39.333333pt;}
.x2_c00270{left:40.533333pt;}
.x1_c00270{left:152.133333pt;}
.xd_c00270{left:186.601563pt;}
.xc_c00270{left:205.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5fc9f9381305cc0480ef3f21.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00271;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00271;src:url('chunks/assets/font_d02a684833af290d9b0c0e0f.woff2')format("woff");}.ff3_c00271{font-family:ff3_c00271;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00271;src:url('chunks/assets/font_fb240dc9a6d3240341050f3a.woff2')format("woff");}.ff4_c00271{font-family:ff4_c00271;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00271;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00271{font-family:ff5_c00271;line-height:1.219238;font-style: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;}
.ls3_c00271{letter-spacing:-6.000000px;}
.ls2_c00271{letter-spacing:0.000000px;}
.ls1_c00271{letter-spacing:3.000000px;}
.ls0_c00271{letter-spacing:4.788000px;}
.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:-24.051000px;}
.ws1_c00271{word-spacing:-20.352000px;}
.ws2_c00271{word-spacing:0.000000px;}
._15_c00271{margin-left:-20.304000px;}
._14_c00271{margin-left:-19.032000px;}
._12_c00271{margin-left:-13.632000px;}
._13_c00271{margin-left:-11.832000px;}
._10_c00271{margin-left:-10.800000px;}
._f_c00271{margin-left:-9.408000px;}
._11_c00271{margin-left:-7.488000px;}
._4_c00271{margin-left:-5.964000px;}
._b_c00271{margin-left:-4.740000px;}
._d_c00271{margin-left:-2.748000px;}
._c_c00271{margin-left:-1.440000px;}
._6_c00271{width:1.872000px;}
._5_c00271{width:3.780000px;}
._1_c00271{width:5.460000px;}
._9_c00271{width:6.696000px;}
._3_c00271{width:8.316000px;}
._2_c00271{width:9.912000px;}
._7_c00271{width:11.700000px;}
._16_c00271{width:12.828000px;}
._0_c00271{width:14.028000px;}
._a_c00271{width:15.408000px;}
._e_c00271{width:17.772000px;}
._17_c00271{width:18.948000px;}
._8_c00271{width:21.528000px;}
.fc2_c00271{color:transparent;}
.fc1_c00271{color:rgb(128,128,128);}
.fc0_c00271{color:rgb(0,0,0);}
.fs3_c00271{font-size:48.000000px;}
.fs2_c00271{font-size:63.000000px;}
.fs1_c00271{font-size:72.000000px;}
.fs0_c00271{font-size:84.000000px;}
.y0_c00271{bottom:0.000000px;}
.y1f_c00271{bottom:3.105000px;}
.y1e_c00271{bottom:7.228363px;}
.y1d_c00271{bottom:59.700000px;}
.y1c_c00271{bottom:82.950000px;}
.y1b_c00271{bottom:109.050000px;}
.y1a_c00271{bottom:133.950000px;}
.y19_c00271{bottom:159.000000px;}
.y18_c00271{bottom:184.200000px;}
.y17_c00271{bottom:209.250000px;}
.y16_c00271{bottom:234.150000px;}
.y15_c00271{bottom:259.200000px;}
.y14_c00271{bottom:283.200000px;}
.y13_c00271{bottom:308.400000px;}
.y12_c00271{bottom:333.150000px;}
.y11_c00271{bottom:356.100000px;}
.y10_c00271{bottom:382.050000px;}
.yf_c00271{bottom:406.950000px;}
.ye_c00271{bottom:430.350000px;}
.yd_c00271{bottom:455.550000px;}
.yc_c00271{bottom:479.550000px;}
.yb_c00271{bottom:504.600000px;}
.ya_c00271{bottom:529.500000px;}
.y9_c00271{bottom:552.900000px;}
.y8_c00271{bottom:578.850000px;}
.y7_c00271{bottom:603.150000px;}
.y6_c00271{bottom:627.750000px;}
.y5_c00271{bottom:652.500000px;}
.y4_c00271{bottom:677.400000px;}
.y3_c00271{bottom:702.000000px;}
.y2_c00271{bottom:726.600000px;}
.y1_c00271{bottom:752.400000px;}
.h4_c00271{height:13.200074px;}
.h5_c00271{height:43.804688px;}
.h2_c00271{height:82.441406px;}
.h3_c00271{height:91.160156px;}
.h1_c00271{height:795.000000px;}
.h0_c00271{height:795.150000px;}
.w2_c00271{width:104.875500px;}
.w0_c00271{width:507.600000px;}
.w1_c00271{width:507.750000px;}
.x0_c00271{left:0.000000px;}
.x2_c00271{left:89.100000px;}
.x3_c00271{left:90.750000px;}
.x4_c00271{left:92.100000px;}
.x5_c00271{left:93.150000px;}
.x6_c00271{left:94.500000px;}
.x7_c00271{left:95.550000px;}
.x8_c00271{left:96.900000px;}
.x9_c00271{left:98.100000px;}
.xa_c00271{left:99.600000px;}
.xc_c00271{left:205.614258px;}
.x1_c00271{left:209.850000px;}
.xb_c00271{left:451.650000px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls3_c00271{letter-spacing:-5.333333pt;}
.ls2_c00271{letter-spacing:0.000000pt;}
.ls1_c00271{letter-spacing:2.666667pt;}
.ls0_c00271{letter-spacing:4.256000pt;}
.ws0_c00271{word-spacing:-21.378667pt;}
.ws1_c00271{word-spacing:-18.090667pt;}
.ws2_c00271{word-spacing:0.000000pt;}
._15_c00271{margin-left:-18.048000pt;}
._14_c00271{margin-left:-16.917333pt;}
._12_c00271{margin-left:-12.117333pt;}
._13_c00271{margin-left:-10.517333pt;}
._10_c00271{margin-left:-9.600000pt;}
._f_c00271{margin-left:-8.362667pt;}
._11_c00271{margin-left:-6.656000pt;}
._4_c00271{margin-left:-5.301333pt;}
._b_c00271{margin-left:-4.213333pt;}
._d_c00271{margin-left:-2.442667pt;}
._c_c00271{margin-left:-1.280000pt;}
._6_c00271{width:1.664000pt;}
._5_c00271{width:3.360000pt;}
._1_c00271{width:4.853333pt;}
._9_c00271{width:5.952000pt;}
._3_c00271{width:7.392000pt;}
._2_c00271{width:8.810667pt;}
._7_c00271{width:10.400000pt;}
._16_c00271{width:11.402667pt;}
._0_c00271{width:12.469333pt;}
._a_c00271{width:13.696000pt;}
._e_c00271{width:15.797333pt;}
._17_c00271{width:16.842667pt;}
._8_c00271{width:19.136000pt;}
.fs3_c00271{font-size:42.666667pt;}
.fs2_c00271{font-size:56.000000pt;}
.fs1_c00271{font-size:64.000000pt;}
.fs0_c00271{font-size:74.666667pt;}
.y0_c00271{bottom:0.000000pt;}
.y1f_c00271{bottom:2.760000pt;}
.y1e_c00271{bottom:6.425212pt;}
.y1d_c00271{bottom:53.066667pt;}
.y1c_c00271{bottom:73.733333pt;}
.y1b_c00271{bottom:96.933333pt;}
.y1a_c00271{bottom:119.066667pt;}
.y19_c00271{bottom:141.333333pt;}
.y18_c00271{bottom:163.733333pt;}
.y17_c00271{bottom:186.000000pt;}
.y16_c00271{bottom:208.133333pt;}
.y15_c00271{bottom:230.400000pt;}
.y14_c00271{bottom:251.733333pt;}
.y13_c00271{bottom:274.133333pt;}
.y12_c00271{bottom:296.133333pt;}
.y11_c00271{bottom:316.533333pt;}
.y10_c00271{bottom:339.600000pt;}
.yf_c00271{bottom:361.733333pt;}
.ye_c00271{bottom:382.533333pt;}
.yd_c00271{bottom:404.933333pt;}
.yc_c00271{bottom:426.266667pt;}
.yb_c00271{bottom:448.533333pt;}
.ya_c00271{bottom:470.666667pt;}
.y9_c00271{bottom:491.466667pt;}
.y8_c00271{bottom:514.533333pt;}
.y7_c00271{bottom:536.133333pt;}
.y6_c00271{bottom:558.000000pt;}
.y5_c00271{bottom:580.000000pt;}
.y4_c00271{bottom:602.133333pt;}
.y3_c00271{bottom:624.000000pt;}
.y2_c00271{bottom:645.866667pt;}
.y1_c00271{bottom:668.800000pt;}
.h4_c00271{height:11.733399pt;}
.h5_c00271{height:38.937500pt;}
.h2_c00271{height:73.281250pt;}
.h3_c00271{height:81.031250pt;}
.h1_c00271{height:706.666667pt;}
.h0_c00271{height:706.800000pt;}
.w2_c00271{width:93.222667pt;}
.w0_c00271{width:451.200000pt;}
.w1_c00271{width:451.333333pt;}
.x0_c00271{left:0.000000pt;}
.x2_c00271{left:79.200000pt;}
.x3_c00271{left:80.666667pt;}
.x4_c00271{left:81.866667pt;}
.x5_c00271{left:82.800000pt;}
.x6_c00271{left:84.000000pt;}
.x7_c00271{left:84.933333pt;}
.x8_c00271{left:86.133333pt;}
.x9_c00271{left:87.200000pt;}
.xa_c00271{left:88.533333pt;}
.xc_c00271{left:182.768229pt;}
.x1_c00271{left:186.533333pt;}
.xb_c00271{left:401.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_778628ea4f5e014bb8f19feb.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00272;src:url('chunks/assets/font_c7d78a20af7276637bb03f75.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00272;src:url('chunks/assets/font_92364be4b6cfdeccd036a178.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00272;src:url('chunks/assets/font_3dd3d03f9a99b4ab965c7e4c.woff2')format("woff");}.ff4_c00272{font-family:ff4_c00272;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00272;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00272{font-family:ff5_c00272;line-height:1.219238;font-style: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:3.000000px;}
.sc__c00272{text-shadow:none;}
.sc0_c00272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00272{-webkit-text-stroke:0px transparent;}
.sc0_c00272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00272{word-spacing:0.000000px;}
._10_c00272{margin-left:-7.236000px;}
._2_c00272{margin-left:-5.964000px;}
._b_c00272{margin-left:-4.800000px;}
._8_c00272{margin-left:-3.780000px;}
._7_c00272{margin-left:-2.376000px;}
._9_c00272{margin-left:-1.008000px;}
._6_c00272{width:1.224000px;}
._1_c00272{width:2.268000px;}
._0_c00272{width:4.032000px;}
._11_c00272{width:5.160000px;}
._3_c00272{width:6.216000px;}
._f_c00272{width:7.500000px;}
._c_c00272{width:8.784000px;}
._d_c00272{width:10.800000px;}
._5_c00272{width:12.312000px;}
._a_c00272{width:14.100000px;}
._e_c00272{width:15.348000px;}
._14_c00272{width:16.440000px;}
._15_c00272{width:17.460000px;}
._12_c00272{width:18.840000px;}
._13_c00272{width:20.076000px;}
._16_c00272{width:320.952000px;}
._4_c00272{width:338.580000px;}
.fc2_c00272{color:transparent;}
.fc1_c00272{color:rgb(128,128,128);}
.fc0_c00272{color:rgb(0,0,0);}
.fs4_c00272{font-size:48.000000px;}
.fs3_c00272{font-size:60.000000px;}
.fs2_c00272{font-size:72.000000px;}
.fs1_c00272{font-size:81.000000px;}
.fs0_c00272{font-size:84.000000px;}
.y0_c00272{bottom:0.000000px;}
.y1f_c00272{bottom:3.105000px;}
.y1e_c00272{bottom:7.228371px;}
.y1d_c00272{bottom:49.665000px;}
.y1c_c00272{bottom:75.915000px;}
.y1b_c00272{bottom:101.565000px;}
.y1a_c00272{bottom:125.265000px;}
.y19_c00272{bottom:151.665000px;}
.y18_c00272{bottom:176.865000px;}
.y17_c00272{bottom:201.615000px;}
.y16_c00272{bottom:226.815000px;}
.y15_c00272{bottom:251.415000px;}
.y14_c00272{bottom:276.765000px;}
.y13_c00272{bottom:300.465000px;}
.y12_c00272{bottom:323.715000px;}
.y11_c00272{bottom:347.265000px;}
.y10_c00272{bottom:372.315000px;}
.yf_c00272{bottom:396.915000px;}
.ye_c00272{bottom:421.665000px;}
.yd_c00272{bottom:446.565000px;}
.yc_c00272{bottom:470.865000px;}
.yb_c00272{bottom:495.465000px;}
.ya_c00272{bottom:520.215000px;}
.y9_c00272{bottom:545.115000px;}
.y8_c00272{bottom:569.715000px;}
.y7_c00272{bottom:594.315000px;}
.y6_c00272{bottom:618.615000px;}
.y5_c00272{bottom:643.065000px;}
.y4_c00272{bottom:667.665000px;}
.y3_c00272{bottom:692.565000px;}
.y2_c00272{bottom:717.315000px;}
.y1_c00272{bottom:742.215000px;}
.h5_c00272{height:13.200074px;}
.h6_c00272{height:43.804688px;}
.h4_c00272{height:75.966797px;}
.h2_c00272{height:82.400391px;}
.h3_c00272{height:91.160156px;}
.h0_c00272{height:794.625000px;}
.h1_c00272{height:795.000000px;}
.w2_c00272{width:104.875500px;}
.w1_c00272{width:527.250000px;}
.w0_c00272{width:527.550000px;}
.x0_c00272{left:0.000000px;}
.x6_c00272{left:31.350000px;}
.x5_c00272{left:34.500000px;}
.x4_c00272{left:36.750000px;}
.x3_c00272{left:37.800000px;}
.x2_c00272{left:39.150000px;}
.x1_c00272{left:151.800000px;}
.x8_c00272{left:215.589249px;}
.x7_c00272{left:244.800000px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls1_c00272{letter-spacing:0.000000pt;}
.ls0_c00272{letter-spacing:2.666667pt;}
.ws0_c00272{word-spacing:0.000000pt;}
._10_c00272{margin-left:-6.432000pt;}
._2_c00272{margin-left:-5.301333pt;}
._b_c00272{margin-left:-4.266667pt;}
._8_c00272{margin-left:-3.360000pt;}
._7_c00272{margin-left:-2.112000pt;}
._9_c00272{margin-left:-0.896000pt;}
._6_c00272{width:1.088000pt;}
._1_c00272{width:2.016000pt;}
._0_c00272{width:3.584000pt;}
._11_c00272{width:4.586667pt;}
._3_c00272{width:5.525333pt;}
._f_c00272{width:6.666667pt;}
._c_c00272{width:7.808000pt;}
._d_c00272{width:9.600000pt;}
._5_c00272{width:10.944000pt;}
._a_c00272{width:12.533333pt;}
._e_c00272{width:13.642667pt;}
._14_c00272{width:14.613333pt;}
._15_c00272{width:15.520000pt;}
._12_c00272{width:16.746667pt;}
._13_c00272{width:17.845333pt;}
._16_c00272{width:285.290667pt;}
._4_c00272{width:300.960000pt;}
.fs4_c00272{font-size:42.666667pt;}
.fs3_c00272{font-size:53.333333pt;}
.fs2_c00272{font-size:64.000000pt;}
.fs1_c00272{font-size:72.000000pt;}
.fs0_c00272{font-size:74.666667pt;}
.y0_c00272{bottom:0.000000pt;}
.y1f_c00272{bottom:2.760000pt;}
.y1e_c00272{bottom:6.425219pt;}
.y1d_c00272{bottom:44.146667pt;}
.y1c_c00272{bottom:67.480000pt;}
.y1b_c00272{bottom:90.280000pt;}
.y1a_c00272{bottom:111.346667pt;}
.y19_c00272{bottom:134.813333pt;}
.y18_c00272{bottom:157.213333pt;}
.y17_c00272{bottom:179.213333pt;}
.y16_c00272{bottom:201.613333pt;}
.y15_c00272{bottom:223.480000pt;}
.y14_c00272{bottom:246.013333pt;}
.y13_c00272{bottom:267.080000pt;}
.y12_c00272{bottom:287.746667pt;}
.y11_c00272{bottom:308.680000pt;}
.y10_c00272{bottom:330.946667pt;}
.yf_c00272{bottom:352.813333pt;}
.ye_c00272{bottom:374.813333pt;}
.yd_c00272{bottom:396.946667pt;}
.yc_c00272{bottom:418.546667pt;}
.yb_c00272{bottom:440.413333pt;}
.ya_c00272{bottom:462.413333pt;}
.y9_c00272{bottom:484.546667pt;}
.y8_c00272{bottom:506.413333pt;}
.y7_c00272{bottom:528.280000pt;}
.y6_c00272{bottom:549.880000pt;}
.y5_c00272{bottom:571.613333pt;}
.y4_c00272{bottom:593.480000pt;}
.y3_c00272{bottom:615.613333pt;}
.y2_c00272{bottom:637.613333pt;}
.y1_c00272{bottom:659.746667pt;}
.h5_c00272{height:11.733399pt;}
.h6_c00272{height:38.937500pt;}
.h4_c00272{height:67.526042pt;}
.h2_c00272{height:73.244792pt;}
.h3_c00272{height:81.031250pt;}
.h0_c00272{height:706.333333pt;}
.h1_c00272{height:706.666667pt;}
.w2_c00272{width:93.222667pt;}
.w1_c00272{width:468.666667pt;}
.w0_c00272{width:468.933333pt;}
.x0_c00272{left:0.000000pt;}
.x6_c00272{left:27.866667pt;}
.x5_c00272{left:30.666667pt;}
.x4_c00272{left:32.666667pt;}
.x3_c00272{left:33.600000pt;}
.x2_c00272{left:34.800000pt;}
.x1_c00272{left:134.933333pt;}
.x8_c00272{left:191.634888pt;}
.x7_c00272{left:217.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74a015dc483182bc47bf47.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.480469;font-style:normal;font-weight:normal;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_5c0d611bc1576e596b203685.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:1.568848;font-style:normal;font-weight:normal;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_d856e6b35ca2b6dd37d9b4ec.woff2')format("woff");}.ff3_c00273{font-family:ff3_c00273;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00273{font-family:ff4_c00273;line-height:1.219238;font-style: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;}
.ls1_c00273{letter-spacing:-6.000000px;}
.ls2_c00273{letter-spacing:0.000000px;}
.ls0_c00273{letter-spacing:3.000000px;}
.sc__c00273{text-shadow:none;}
.sc0_c00273{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00273{-webkit-text-stroke:0px transparent;}
.sc0_c00273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00273{word-spacing:-20.967000px;}
.ws0_c00273{word-spacing:-18.240000px;}
.ws2_c00273{word-spacing:0.000000px;}
._e_c00273{margin-left:-25.008000px;}
._10_c00273{margin-left:-10.224000px;}
._13_c00273{margin-left:-8.352000px;}
._12_c00273{margin-left:-6.792000px;}
._b_c00273{margin-left:-5.688000px;}
._a_c00273{margin-left:-3.756000px;}
._7_c00273{margin-left:-2.088000px;}
._8_c00273{margin-left:-1.080000px;}
._6_c00273{width:1.020000px;}
._9_c00273{width:2.340000px;}
._0_c00273{width:3.360000px;}
._5_c00273{width:4.380000px;}
._2_c00273{width:5.640000px;}
._c_c00273{width:7.464000px;}
._d_c00273{width:9.444000px;}
._4_c00273{width:10.920000px;}
._3_c00273{width:12.000000px;}
._11_c00273{width:14.112000px;}
._1_c00273{width:15.660000px;}
._f_c00273{width:17.496000px;}
.fc2_c00273{color:transparent;}
.fc1_c00273{color:rgb(128,128,128);}
.fc0_c00273{color:rgb(0,0,0);}
.fs5_c00273{font-size:48.000000px;}
.fs0_c00273{font-size:60.000000px;}
.fs2_c00273{font-size:63.000000px;}
.fs3_c00273{font-size:69.000000px;}
.fs1_c00273{font-size:72.000000px;}
.fs4_c00273{font-size:87.000000px;}
.y0_c00273{bottom:0.000000px;}
.y1f_c00273{bottom:3.105000px;}
.y1e_c00273{bottom:7.228371px;}
.y1d_c00273{bottom:39.915000px;}
.y1c_c00273{bottom:64.515000px;}
.y1b_c00273{bottom:89.865000px;}
.y1a_c00273{bottom:115.815000px;}
.y19_c00273{bottom:140.865000px;}
.y18_c00273{bottom:166.065000px;}
.y17_c00273{bottom:190.815000px;}
.y16_c00273{bottom:215.115000px;}
.y15_c00273{bottom:240.015000px;}
.y14_c00273{bottom:265.065000px;}
.y13_c00273{bottom:290.565000px;}
.y12_c00273{bottom:315.015000px;}
.y11_c00273{bottom:338.265000px;}
.y10_c00273{bottom:362.565000px;}
.yf_c00273{bottom:387.465000px;}
.ye_c00273{bottom:412.215000px;}
.yd_c00273{bottom:436.365000px;}
.yc_c00273{bottom:460.815000px;}
.yb_c00273{bottom:485.115000px;}
.ya_c00273{bottom:510.015000px;}
.y9_c00273{bottom:534.015000px;}
.y8_c00273{bottom:558.915000px;}
.y7_c00273{bottom:583.515000px;}
.y6_c00273{bottom:607.965000px;}
.y5_c00273{bottom:632.265000px;}
.y4_c00273{bottom:656.865000px;}
.y3_c00273{bottom:682.065000px;}
.y2_c00273{bottom:706.065000px;}
.y1_c00273{bottom:732.165000px;}
.h5_c00273{height:13.200074px;}
.h6_c00273{height:43.804688px;}
.h2_c00273{height:75.966797px;}
.h3_c00273{height:91.160156px;}
.h4_c00273{height:110.151855px;}
.h0_c00273{height:773.025000px;}
.h1_c00273{height:773.250000px;}
.w1_c00273{width:104.875500px;}
.w0_c00273{width:510.000000px;}
.x0_c00273{left:0.000000px;}
.x2_c00273{left:100.350000px;}
.x3_c00273{left:101.550000px;}
.x4_c00273{left:102.900000px;}
.x5_c00273{left:103.950000px;}
.x6_c00273{left:105.300000px;}
.x7_c00273{left:106.350000px;}
.x9_c00273{left:206.814240px;}
.x1_c00273{left:210.600000px;}
.x8_c00273{left:441.000000px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls1_c00273{letter-spacing:-5.333333pt;}
.ls2_c00273{letter-spacing:0.000000pt;}
.ls0_c00273{letter-spacing:2.666667pt;}
.ws1_c00273{word-spacing:-18.637333pt;}
.ws0_c00273{word-spacing:-16.213333pt;}
.ws2_c00273{word-spacing:0.000000pt;}
._e_c00273{margin-left:-22.229333pt;}
._10_c00273{margin-left:-9.088000pt;}
._13_c00273{margin-left:-7.424000pt;}
._12_c00273{margin-left:-6.037333pt;}
._b_c00273{margin-left:-5.056000pt;}
._a_c00273{margin-left:-3.338667pt;}
._7_c00273{margin-left:-1.856000pt;}
._8_c00273{margin-left:-0.960000pt;}
._6_c00273{width:0.906667pt;}
._9_c00273{width:2.080000pt;}
._0_c00273{width:2.986667pt;}
._5_c00273{width:3.893333pt;}
._2_c00273{width:5.013333pt;}
._c_c00273{width:6.634667pt;}
._d_c00273{width:8.394667pt;}
._4_c00273{width:9.706667pt;}
._3_c00273{width:10.666667pt;}
._11_c00273{width:12.544000pt;}
._1_c00273{width:13.920000pt;}
._f_c00273{width:15.552000pt;}
.fs5_c00273{font-size:42.666667pt;}
.fs0_c00273{font-size:53.333333pt;}
.fs2_c00273{font-size:56.000000pt;}
.fs3_c00273{font-size:61.333333pt;}
.fs1_c00273{font-size:64.000000pt;}
.fs4_c00273{font-size:77.333333pt;}
.y0_c00273{bottom:0.000000pt;}
.y1f_c00273{bottom:2.760000pt;}
.y1e_c00273{bottom:6.425219pt;}
.y1d_c00273{bottom:35.480000pt;}
.y1c_c00273{bottom:57.346667pt;}
.y1b_c00273{bottom:79.880000pt;}
.y1a_c00273{bottom:102.946667pt;}
.y19_c00273{bottom:125.213333pt;}
.y18_c00273{bottom:147.613333pt;}
.y17_c00273{bottom:169.613333pt;}
.y16_c00273{bottom:191.213333pt;}
.y15_c00273{bottom:213.346667pt;}
.y14_c00273{bottom:235.613333pt;}
.y13_c00273{bottom:258.280000pt;}
.y12_c00273{bottom:280.013333pt;}
.y11_c00273{bottom:300.680000pt;}
.y10_c00273{bottom:322.280000pt;}
.yf_c00273{bottom:344.413333pt;}
.ye_c00273{bottom:366.413333pt;}
.yd_c00273{bottom:387.880000pt;}
.yc_c00273{bottom:409.613333pt;}
.yb_c00273{bottom:431.213333pt;}
.ya_c00273{bottom:453.346667pt;}
.y9_c00273{bottom:474.680000pt;}
.y8_c00273{bottom:496.813333pt;}
.y7_c00273{bottom:518.680000pt;}
.y6_c00273{bottom:540.413333pt;}
.y5_c00273{bottom:562.013333pt;}
.y4_c00273{bottom:583.880000pt;}
.y3_c00273{bottom:606.280000pt;}
.y2_c00273{bottom:627.613333pt;}
.y1_c00273{bottom:650.813333pt;}
.h5_c00273{height:11.733399pt;}
.h6_c00273{height:38.937500pt;}
.h2_c00273{height:67.526042pt;}
.h3_c00273{height:81.031250pt;}
.h4_c00273{height:97.912760pt;}
.h0_c00273{height:687.133333pt;}
.h1_c00273{height:687.333333pt;}
.w1_c00273{width:93.222667pt;}
.w0_c00273{width:453.333333pt;}
.x0_c00273{left:0.000000pt;}
.x2_c00273{left:89.200000pt;}
.x3_c00273{left:90.266667pt;}
.x4_c00273{left:91.466667pt;}
.x5_c00273{left:92.400000pt;}
.x6_c00273{left:93.600000pt;}
.x7_c00273{left:94.533333pt;}
.x9_c00273{left:183.834880pt;}
.x1_c00273{left:187.200000pt;}
.x8_c00273{left:392.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_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_86ba49228a7da5e72e357173.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00274;src:url('chunks/assets/font_a956e65d1383220a0902def9.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.568848;font-style:normal;font-weight:normal;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_95545a6dbbcfe9865c1d2a9b.woff2')format("woff");}.ff3_c00274{font-family:ff3_c00274;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00274;src:url('chunks/assets/font_b7f721d36495ea7be5ce4750.woff2')format("woff");}.ff4_c00274{font-family:ff4_c00274;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00274;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00274{font-family:ff5_c00274;line-height:1.219238;font-style: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:1.650000px;}
.ls2_c00274{letter-spacing:3.000000px;}
.ls3_c00274{letter-spacing:6.000000px;}
.sc__c00274{text-shadow:none;}
.sc0_c00274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00274{-webkit-text-stroke:0px transparent;}
.sc0_c00274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00274{word-spacing:-33.192000px;}
.ws1_c00274{word-spacing:-21.000000px;}
.ws2_c00274{word-spacing:0.000000px;}
._18_c00274{margin-left:-18.336000px;}
._19_c00274{margin-left:-15.192000px;}
._12_c00274{margin-left:-11.820000px;}
._13_c00274{margin-left:-10.140000px;}
._11_c00274{margin-left:-8.340000px;}
._e_c00274{margin-left:-7.176000px;}
._17_c00274{margin-left:-5.916000px;}
._d_c00274{margin-left:-4.896000px;}
._2_c00274{margin-left:-3.528000px;}
._10_c00274{margin-left:-2.520000px;}
._5_c00274{margin-left:-1.512000px;}
._14_c00274{width:1.008000px;}
._3_c00274{width:2.100000px;}
._4_c00274{width:3.612000px;}
._6_c00274{width:4.788000px;}
._15_c00274{width:6.264000px;}
._1_c00274{width:7.476000px;}
._7_c00274{width:8.568000px;}
._b_c00274{width:9.588000px;}
._1a_c00274{width:10.920000px;}
._f_c00274{width:12.252000px;}
._16_c00274{width:15.660000px;}
._c_c00274{width:16.740000px;}
._0_c00274{width:19.488000px;}
._9_c00274{width:22.512000px;}
._a_c00274{width:31.836000px;}
._8_c00274{width:312.900000px;}
._1b_c00274{width:321.048000px;}
.fc2_c00274{color:transparent;}
.fc1_c00274{color:rgb(128,128,128);}
.fc0_c00274{color:rgb(0,0,0);}
.fs6_c00274{font-size:48.000000px;}
.fs4_c00274{font-size:54.000000px;}
.fs2_c00274{font-size:60.000000px;}
.fs5_c00274{font-size:63.000000px;}
.fs1_c00274{font-size:72.000000px;}
.fs3_c00274{font-size:75.000000px;}
.fs0_c00274{font-size:84.000000px;}
.y0_c00274{bottom:0.000000px;}
.y1f_c00274{bottom:3.105000px;}
.y1e_c00274{bottom:7.228363px;}
.y1d_c00274{bottom:52.350000px;}
.y1c_c00274{bottom:79.650000px;}
.y1b_c00274{bottom:105.000000px;}
.y1a_c00274{bottom:130.950000px;}
.y19_c00274{bottom:156.600000px;}
.y18_c00274{bottom:181.950000px;}
.y17_c00274{bottom:205.950000px;}
.y16_c00274{bottom:231.900000px;}
.y15_c00274{bottom:256.800000px;}
.y14_c00274{bottom:281.400000px;}
.y13_c00274{bottom:306.450000px;}
.y12_c00274{bottom:328.800000px;}
.y11_c00274{bottom:354.750000px;}
.y10_c00274{bottom:377.700000px;}
.yf_c00274{bottom:403.650000px;}
.ye_c00274{bottom:428.250000px;}
.yd_c00274{bottom:453.600000px;}
.yc_c00274{bottom:477.600000px;}
.yb_c00274{bottom:503.100000px;}
.ya_c00274{bottom:527.100000px;}
.y9_c00274{bottom:552.750000px;}
.y8_c00274{bottom:576.150000px;}
.y7_c00274{bottom:601.050000px;}
.y6_c00274{bottom:625.350000px;}
.y5_c00274{bottom:649.800000px;}
.y4_c00274{bottom:674.400000px;}
.y3_c00274{bottom:699.000000px;}
.y2_c00274{bottom:723.900000px;}
.y1_c00274{bottom:749.250000px;}
.h4_c00274{height:13.200074px;}
.h5_c00274{height:43.804688px;}
.h2_c00274{height:82.400391px;}
.h3_c00274{height:91.160156px;}
.h1_c00274{height:795.000000px;}
.h0_c00274{height:795.150000px;}
.w2_c00274{width:104.875500px;}
.w0_c00274{width:540.525000px;}
.w1_c00274{width:540.750000px;}
.x0_c00274{left:0.000000px;}
.x2_c00274{left:34.050000px;}
.x3_c00274{left:36.750000px;}
.x4_c00274{left:38.700000px;}
.x5_c00274{left:40.200000px;}
.x6_c00274{left:41.400000px;}
.x7_c00274{left:42.900000px;}
.x1_c00274{left:157.200000px;}
.x9_c00274{left:222.076767px;}
.x8_c00274{left:245.700000px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls1_c00274{letter-spacing:0.000000pt;}
.ls0_c00274{letter-spacing:1.466667pt;}
.ls2_c00274{letter-spacing:2.666667pt;}
.ls3_c00274{letter-spacing:5.333333pt;}
.ws0_c00274{word-spacing:-29.504000pt;}
.ws1_c00274{word-spacing:-18.666667pt;}
.ws2_c00274{word-spacing:0.000000pt;}
._18_c00274{margin-left:-16.298667pt;}
._19_c00274{margin-left:-13.504000pt;}
._12_c00274{margin-left:-10.506667pt;}
._13_c00274{margin-left:-9.013333pt;}
._11_c00274{margin-left:-7.413333pt;}
._e_c00274{margin-left:-6.378667pt;}
._17_c00274{margin-left:-5.258667pt;}
._d_c00274{margin-left:-4.352000pt;}
._2_c00274{margin-left:-3.136000pt;}
._10_c00274{margin-left:-2.240000pt;}
._5_c00274{margin-left:-1.344000pt;}
._14_c00274{width:0.896000pt;}
._3_c00274{width:1.866667pt;}
._4_c00274{width:3.210667pt;}
._6_c00274{width:4.256000pt;}
._15_c00274{width:5.568000pt;}
._1_c00274{width:6.645333pt;}
._7_c00274{width:7.616000pt;}
._b_c00274{width:8.522667pt;}
._1a_c00274{width:9.706667pt;}
._f_c00274{width:10.890667pt;}
._16_c00274{width:13.920000pt;}
._c_c00274{width:14.880000pt;}
._0_c00274{width:17.322667pt;}
._9_c00274{width:20.010667pt;}
._a_c00274{width:28.298667pt;}
._8_c00274{width:278.133333pt;}
._1b_c00274{width:285.376000pt;}
.fs6_c00274{font-size:42.666667pt;}
.fs4_c00274{font-size:48.000000pt;}
.fs2_c00274{font-size:53.333333pt;}
.fs5_c00274{font-size:56.000000pt;}
.fs1_c00274{font-size:64.000000pt;}
.fs3_c00274{font-size:66.666667pt;}
.fs0_c00274{font-size:74.666667pt;}
.y0_c00274{bottom:0.000000pt;}
.y1f_c00274{bottom:2.760000pt;}
.y1e_c00274{bottom:6.425212pt;}
.y1d_c00274{bottom:46.533333pt;}
.y1c_c00274{bottom:70.800000pt;}
.y1b_c00274{bottom:93.333333pt;}
.y1a_c00274{bottom:116.400000pt;}
.y19_c00274{bottom:139.200000pt;}
.y18_c00274{bottom:161.733333pt;}
.y17_c00274{bottom:183.066667pt;}
.y16_c00274{bottom:206.133333pt;}
.y15_c00274{bottom:228.266667pt;}
.y14_c00274{bottom:250.133333pt;}
.y13_c00274{bottom:272.400000pt;}
.y12_c00274{bottom:292.266667pt;}
.y11_c00274{bottom:315.333333pt;}
.y10_c00274{bottom:335.733333pt;}
.yf_c00274{bottom:358.800000pt;}
.ye_c00274{bottom:380.666667pt;}
.yd_c00274{bottom:403.200000pt;}
.yc_c00274{bottom:424.533333pt;}
.yb_c00274{bottom:447.200000pt;}
.ya_c00274{bottom:468.533333pt;}
.y9_c00274{bottom:491.333333pt;}
.y8_c00274{bottom:512.133333pt;}
.y7_c00274{bottom:534.266667pt;}
.y6_c00274{bottom:555.866667pt;}
.y5_c00274{bottom:577.600000pt;}
.y4_c00274{bottom:599.466667pt;}
.y3_c00274{bottom:621.333333pt;}
.y2_c00274{bottom:643.466667pt;}
.y1_c00274{bottom:666.000000pt;}
.h4_c00274{height:11.733399pt;}
.h5_c00274{height:38.937500pt;}
.h2_c00274{height:73.244792pt;}
.h3_c00274{height:81.031250pt;}
.h1_c00274{height:706.666667pt;}
.h0_c00274{height:706.800000pt;}
.w2_c00274{width:93.222667pt;}
.w0_c00274{width:480.466667pt;}
.w1_c00274{width:480.666667pt;}
.x0_c00274{left:0.000000pt;}
.x2_c00274{left:30.266667pt;}
.x3_c00274{left:32.666667pt;}
.x4_c00274{left:34.400000pt;}
.x5_c00274{left:35.733333pt;}
.x6_c00274{left:36.800000pt;}
.x7_c00274{left:38.133333pt;}
.x1_c00274{left:139.733333pt;}
.x9_c00274{left:197.401571pt;}
.x8_c00274{left:218.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2817e8dcffd376ad8c42130d.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.480469;font-style:normal;font-weight:normal;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_87490d46f35e8faa9f219a87.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:1.568848;font-style:normal;font-weight:normal;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_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff3_c00275{font-family:ff3_c00275;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00275;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00275{font-family:ff4_c00275;line-height:1.219238;font-style: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:3.000000px;}
.sc__c00275{text-shadow:none;}
.sc0_c00275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00275{-webkit-text-stroke:0px transparent;}
.sc0_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00275{word-spacing:-39.000000px;}
.ws2_c00275{word-spacing:-20.352000px;}
.ws0_c00275{word-spacing:-17.352000px;}
.ws3_c00275{word-spacing:0.000000px;}
._f_c00275{margin-left:-23.994000px;}
._10_c00275{margin-left:-22.176000px;}
._12_c00275{margin-left:-20.400000px;}
._11_c00275{margin-left:-17.544000px;}
._14_c00275{margin-left:-13.254000px;}
._b_c00275{margin-left:-6.552000px;}
._6_c00275{margin-left:-5.040000px;}
._a_c00275{margin-left:-3.240000px;}
._1_c00275{margin-left:-2.088000px;}
._2_c00275{margin-left:-1.074000px;}
._3_c00275{width:1.440000px;}
._4_c00275{width:2.448000px;}
._5_c00275{width:3.888000px;}
._9_c00275{width:5.112000px;}
._c_c00275{width:6.192000px;}
._7_c00275{width:7.344000px;}
._d_c00275{width:9.072000px;}
._13_c00275{width:10.080000px;}
._0_c00275{width:11.484000px;}
._15_c00275{width:13.536000px;}
._e_c00275{width:15.114000px;}
._8_c00275{width:17.640000px;}
.fc2_c00275{color:transparent;}
.fc1_c00275{color:rgb(128,128,128);}
.fc0_c00275{color:rgb(0,0,0);}
.fs3_c00275{font-size:48.000000px;}
.fs1_c00275{font-size:72.000000px;}
.fs2_c00275{font-size:78.000000px;}
.fs0_c00275{font-size:87.000000px;}
.y0_c00275{bottom:0.000000px;}
.y1f_c00275{bottom:3.105000px;}
.y1e_c00275{bottom:7.228357px;}
.y1d_c00275{bottom:43.230000px;}
.y1c_c00275{bottom:66.180000px;}
.y1b_c00275{bottom:90.480000px;}
.y1a_c00275{bottom:115.380000px;}
.y19_c00275{bottom:140.730000px;}
.y18_c00275{bottom:165.780000px;}
.y17_c00275{bottom:190.380000px;}
.y16_c00275{bottom:215.430000px;}
.y15_c00275{bottom:239.730000px;}
.y14_c00275{bottom:264.330000px;}
.y13_c00275{bottom:290.580000px;}
.y12_c00275{bottom:313.530000px;}
.y11_c00275{bottom:338.130000px;}
.y10_c00275{bottom:362.580000px;}
.yf_c00275{bottom:387.180000px;}
.ye_c00275{bottom:412.080000px;}
.yd_c00275{bottom:437.730000px;}
.yc_c00275{bottom:461.130000px;}
.yb_c00275{bottom:485.430000px;}
.ya_c00275{bottom:510.630000px;}
.y9_c00275{bottom:534.630000px;}
.y8_c00275{bottom:559.530000px;}
.y7_c00275{bottom:583.980000px;}
.y6_c00275{bottom:608.880000px;}
.y5_c00275{bottom:633.480000px;}
.y4_c00275{bottom:658.530000px;}
.y3_c00275{bottom:682.830000px;}
.y2_c00275{bottom:708.030000px;}
.y1_c00275{bottom:733.380000px;}
.h4_c00275{height:13.200074px;}
.h5_c00275{height:43.804688px;}
.h3_c00275{height:91.160156px;}
.h2_c00275{height:110.151855px;}
.h0_c00275{height:773.850000px;}
.h1_c00275{height:774.000000px;}
.w2_c00275{width:104.875500px;}
.w0_c00275{width:508.425000px;}
.w1_c00275{width:508.500000px;}
.x0_c00275{left:0.000000px;}
.x4_c00275{left:92.550000px;}
.x3_c00275{left:93.750000px;}
.x2_c00275{left:95.250000px;}
.x6_c00275{left:206.026749px;}
.x1_c00275{left:211.950000px;}
.x5_c00275{left:408.300000px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls0_c00275{letter-spacing:0.000000pt;}
.ls1_c00275{letter-spacing:2.666667pt;}
.ws1_c00275{word-spacing:-34.666667pt;}
.ws2_c00275{word-spacing:-18.090667pt;}
.ws0_c00275{word-spacing:-15.424000pt;}
.ws3_c00275{word-spacing:0.000000pt;}
._f_c00275{margin-left:-21.328000pt;}
._10_c00275{margin-left:-19.712000pt;}
._12_c00275{margin-left:-18.133333pt;}
._11_c00275{margin-left:-15.594667pt;}
._14_c00275{margin-left:-11.781333pt;}
._b_c00275{margin-left:-5.824000pt;}
._6_c00275{margin-left:-4.480000pt;}
._a_c00275{margin-left:-2.880000pt;}
._1_c00275{margin-left:-1.856000pt;}
._2_c00275{margin-left:-0.954667pt;}
._3_c00275{width:1.280000pt;}
._4_c00275{width:2.176000pt;}
._5_c00275{width:3.456000pt;}
._9_c00275{width:4.544000pt;}
._c_c00275{width:5.504000pt;}
._7_c00275{width:6.528000pt;}
._d_c00275{width:8.064000pt;}
._13_c00275{width:8.960000pt;}
._0_c00275{width:10.208000pt;}
._15_c00275{width:12.032000pt;}
._e_c00275{width:13.434667pt;}
._8_c00275{width:15.680000pt;}
.fs3_c00275{font-size:42.666667pt;}
.fs1_c00275{font-size:64.000000pt;}
.fs2_c00275{font-size:69.333333pt;}
.fs0_c00275{font-size:77.333333pt;}
.y0_c00275{bottom:0.000000pt;}
.y1f_c00275{bottom:2.760000pt;}
.y1e_c00275{bottom:6.425206pt;}
.y1d_c00275{bottom:38.426667pt;}
.y1c_c00275{bottom:58.826667pt;}
.y1b_c00275{bottom:80.426667pt;}
.y1a_c00275{bottom:102.560000pt;}
.y19_c00275{bottom:125.093333pt;}
.y18_c00275{bottom:147.360000pt;}
.y17_c00275{bottom:169.226667pt;}
.y16_c00275{bottom:191.493333pt;}
.y15_c00275{bottom:213.093333pt;}
.y14_c00275{bottom:234.960000pt;}
.y13_c00275{bottom:258.293333pt;}
.y12_c00275{bottom:278.693333pt;}
.y11_c00275{bottom:300.560000pt;}
.y10_c00275{bottom:322.293333pt;}
.yf_c00275{bottom:344.160000pt;}
.ye_c00275{bottom:366.293333pt;}
.yd_c00275{bottom:389.093333pt;}
.yc_c00275{bottom:409.893333pt;}
.yb_c00275{bottom:431.493333pt;}
.ya_c00275{bottom:453.893333pt;}
.y9_c00275{bottom:475.226667pt;}
.y8_c00275{bottom:497.360000pt;}
.y7_c00275{bottom:519.093333pt;}
.y6_c00275{bottom:541.226667pt;}
.y5_c00275{bottom:563.093333pt;}
.y4_c00275{bottom:585.360000pt;}
.y3_c00275{bottom:606.960000pt;}
.y2_c00275{bottom:629.360000pt;}
.y1_c00275{bottom:651.893333pt;}
.h4_c00275{height:11.733399pt;}
.h5_c00275{height:38.937500pt;}
.h3_c00275{height:81.031250pt;}
.h2_c00275{height:97.912760pt;}
.h0_c00275{height:687.866667pt;}
.h1_c00275{height:688.000000pt;}
.w2_c00275{width:93.222667pt;}
.w0_c00275{width:451.933333pt;}
.w1_c00275{width:452.000000pt;}
.x0_c00275{left:0.000000pt;}
.x4_c00275{left:82.266667pt;}
.x3_c00275{left:83.333333pt;}
.x2_c00275{left:84.666667pt;}
.x6_c00275{left:183.134888pt;}
.x1_c00275{left:188.400000pt;}
.x5_c00275{left:362.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_43d36dcdb06a09aa3e32aea6.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.480469;font-style:normal;font-weight:normal;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_1de7c887d825e5a693378741.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.568848;font-style:normal;font-weight:normal;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_8edaf58e8cf0cde9939a7918.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00276;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00276{font-family:ff4_c00276;line-height:1.219238;font-style: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;}
.ls3_c00276{letter-spacing:0.000000px;}
.ls1_c00276{letter-spacing:1.257600px;}
.ls2_c00276{letter-spacing:3.000000px;}
.ls0_c00276{letter-spacing:13.536000px;}
.sc__c00276{text-shadow:none;}
.sc0_c00276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00276{-webkit-text-stroke:0px transparent;}
.sc0_c00276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00276{word-spacing:-46.488000px;}
.ws0_c00276{word-spacing:-20.352000px;}
.ws2_c00276{word-spacing:0.000000px;}
._11_c00276{margin-left:-10.116000px;}
._10_c00276{margin-left:-7.860000px;}
._f_c00276{margin-left:-6.456000px;}
._e_c00276{margin-left:-5.376000px;}
._a_c00276{margin-left:-3.756000px;}
._c_c00276{margin-left:-2.352000px;}
._b_c00276{margin-left:-1.284000px;}
._9_c00276{width:1.020000px;}
._4_c00276{width:2.100000px;}
._5_c00276{width:3.480000px;}
._3_c00276{width:5.160000px;}
._1_c00276{width:6.480000px;}
._2_c00276{width:8.580000px;}
._0_c00276{width:9.960000px;}
._d_c00276{width:11.628000px;}
._12_c00276{width:12.696000px;}
._13_c00276{width:16.116000px;}
._14_c00276{width:17.256000px;}
._8_c00276{width:19.440000px;}
._7_c00276{width:24.900000px;}
._6_c00276{width:347.100000px;}
.fc2_c00276{color:transparent;}
.fc1_c00276{color:rgb(128,128,128);}
.fc0_c00276{color:rgb(0,0,0);}
.fs4_c00276{font-size:48.000000px;}
.fs2_c00276{font-size:54.000000px;}
.fs3_c00276{font-size:57.600000px;}
.fs0_c00276{font-size:60.000000px;}
.fs1_c00276{font-size:72.000000px;}
.y0_c00276{bottom:0.000000px;}
.y1f_c00276{bottom:3.105000px;}
.y1e_c00276{bottom:7.228371px;}
.y1d_c00276{bottom:54.015000px;}
.y1c_c00276{bottom:82.665000px;}
.y1b_c00276{bottom:108.315000px;}
.y1a_c00276{bottom:133.965000px;}
.y19_c00276{bottom:159.015000px;}
.y18_c00276{bottom:183.615000px;}
.y17_c00276{bottom:209.265000px;}
.y16_c00276{bottom:232.515000px;}
.y15_c00276{bottom:259.215000px;}
.y14_c00276{bottom:279.765000px;}
.y13_c00276{bottom:304.515000px;}
.y12_c00276{bottom:329.565000px;}
.y11_c00276{bottom:354.015000px;}
.y10_c00276{bottom:378.465000px;}
.yf_c00276{bottom:404.115000px;}
.ye_c00276{bottom:429.165000px;}
.yd_c00276{bottom:454.065000px;}
.yc_c00276{bottom:478.965000px;}
.yb_c00276{bottom:503.265000px;}
.ya_c00276{bottom:528.165000px;}
.y9_c00276{bottom:552.915000px;}
.y8_c00276{bottom:577.815000px;}
.y7_c00276{bottom:602.115000px;}
.y6_c00276{bottom:627.165000px;}
.y5_c00276{bottom:652.065000px;}
.y4_c00276{bottom:676.665000px;}
.y3_c00276{bottom:700.965000px;}
.y2_c00276{bottom:725.715000px;}
.y1_c00276{bottom:751.365000px;}
.h4_c00276{height:13.200074px;}
.h5_c00276{height:43.804688px;}
.h2_c00276{height:70.224609px;}
.h3_c00276{height:91.160156px;}
.h0_c00276{height:798.675000px;}
.h1_c00276{height:798.750000px;}
.w1_c00276{width:104.875500px;}
.w0_c00276{width:533.250000px;}
.x0_c00276{left:0.000000px;}
.x2_c00276{left:30.450000px;}
.x3_c00276{left:32.100000px;}
.x4_c00276{left:33.750000px;}
.x8_c00276{left:34.800000px;}
.x5_c00276{left:35.850000px;}
.x6_c00276{left:37.050000px;}
.x7_c00276{left:38.100000px;}
.x1_c00276{left:141.450000px;}
.xa_c00276{left:218.439240px;}
.x9_c00276{left:361.500000px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls3_c00276{letter-spacing:0.000000pt;}
.ls1_c00276{letter-spacing:1.117867pt;}
.ls2_c00276{letter-spacing:2.666667pt;}
.ls0_c00276{letter-spacing:12.032000pt;}
.ws1_c00276{word-spacing:-41.322667pt;}
.ws0_c00276{word-spacing:-18.090667pt;}
.ws2_c00276{word-spacing:0.000000pt;}
._11_c00276{margin-left:-8.992000pt;}
._10_c00276{margin-left:-6.986667pt;}
._f_c00276{margin-left:-5.738667pt;}
._e_c00276{margin-left:-4.778667pt;}
._a_c00276{margin-left:-3.338667pt;}
._c_c00276{margin-left:-2.090667pt;}
._b_c00276{margin-left:-1.141333pt;}
._9_c00276{width:0.906667pt;}
._4_c00276{width:1.866667pt;}
._5_c00276{width:3.093333pt;}
._3_c00276{width:4.586667pt;}
._1_c00276{width:5.760000pt;}
._2_c00276{width:7.626667pt;}
._0_c00276{width:8.853333pt;}
._d_c00276{width:10.336000pt;}
._12_c00276{width:11.285333pt;}
._13_c00276{width:14.325333pt;}
._14_c00276{width:15.338667pt;}
._8_c00276{width:17.280000pt;}
._7_c00276{width:22.133333pt;}
._6_c00276{width:308.533333pt;}
.fs4_c00276{font-size:42.666667pt;}
.fs2_c00276{font-size:48.000000pt;}
.fs3_c00276{font-size:51.200000pt;}
.fs0_c00276{font-size:53.333333pt;}
.fs1_c00276{font-size:64.000000pt;}
.y0_c00276{bottom:0.000000pt;}
.y1f_c00276{bottom:2.760000pt;}
.y1e_c00276{bottom:6.425219pt;}
.y1d_c00276{bottom:48.013333pt;}
.y1c_c00276{bottom:73.480000pt;}
.y1b_c00276{bottom:96.280000pt;}
.y1a_c00276{bottom:119.080000pt;}
.y19_c00276{bottom:141.346667pt;}
.y18_c00276{bottom:163.213333pt;}
.y17_c00276{bottom:186.013333pt;}
.y16_c00276{bottom:206.680000pt;}
.y15_c00276{bottom:230.413333pt;}
.y14_c00276{bottom:248.680000pt;}
.y13_c00276{bottom:270.680000pt;}
.y12_c00276{bottom:292.946667pt;}
.y11_c00276{bottom:314.680000pt;}
.y10_c00276{bottom:336.413333pt;}
.yf_c00276{bottom:359.213333pt;}
.ye_c00276{bottom:381.480000pt;}
.yd_c00276{bottom:403.613333pt;}
.yc_c00276{bottom:425.746667pt;}
.yb_c00276{bottom:447.346667pt;}
.ya_c00276{bottom:469.480000pt;}
.y9_c00276{bottom:491.480000pt;}
.y8_c00276{bottom:513.613333pt;}
.y7_c00276{bottom:535.213333pt;}
.y6_c00276{bottom:557.480000pt;}
.y5_c00276{bottom:579.613333pt;}
.y4_c00276{bottom:601.480000pt;}
.y3_c00276{bottom:623.080000pt;}
.y2_c00276{bottom:645.080000pt;}
.y1_c00276{bottom:667.880000pt;}
.h4_c00276{height:11.733399pt;}
.h5_c00276{height:38.937500pt;}
.h2_c00276{height:62.421875pt;}
.h3_c00276{height:81.031250pt;}
.h0_c00276{height:709.933333pt;}
.h1_c00276{height:710.000000pt;}
.w1_c00276{width:93.222667pt;}
.w0_c00276{width:474.000000pt;}
.x0_c00276{left:0.000000pt;}
.x2_c00276{left:27.066667pt;}
.x3_c00276{left:28.533333pt;}
.x4_c00276{left:30.000000pt;}
.x8_c00276{left:30.933333pt;}
.x5_c00276{left:31.866667pt;}
.x6_c00276{left:32.933333pt;}
.x7_c00276{left:33.866667pt;}
.x1_c00276{left:125.733333pt;}
.xa_c00276{left:194.168213pt;}
.x9_c00276{left:321.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_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_dd49e9bc5e86918a43dcb321.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.480469;font-style:normal;font-weight:normal;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_7f03dcac0354c95e3ee5d082.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:1.568848;font-style:normal;font-weight:normal;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_971eacc0ec651fdd81fefb67.woff2')format("woff");}.ff3_c00277{font-family:ff3_c00277;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00277;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00277{font-family:ff4_c00277;line-height:1.219238;font-style: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;}
.ls2_c00277{letter-spacing:0.000000px;}
.ls0_c00277{letter-spacing:3.000000px;}
.ls1_c00277{letter-spacing:18.600000px;}
.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:-19.629000px;}
.ws1_c00277{word-spacing:0.000000px;}
._c_c00277{margin-left:-6.984000px;}
._b_c00277{margin-left:-4.968000px;}
._7_c00277{margin-left:-3.960000px;}
._6_c00277{margin-left:-2.880000px;}
._5_c00277{margin-left:-1.872000px;}
._4_c00277{width:1.440000px;}
._3_c00277{width:2.952000px;}
._1_c00277{width:4.536000px;}
._9_c00277{width:5.904000px;}
._2_c00277{width:7.344000px;}
._d_c00277{width:8.640000px;}
._0_c00277{width:9.936000px;}
._f_c00277{width:11.808000px;}
._11_c00277{width:13.308000px;}
._e_c00277{width:15.336000px;}
._8_c00277{width:17.064000px;}
._12_c00277{width:18.156000px;}
._10_c00277{width:19.596000px;}
._a_c00277{width:21.456000px;}
.fc2_c00277{color:transparent;}
.fc1_c00277{color:rgb(128,128,128);}
.fc0_c00277{color:rgb(0,0,0);}
.fs4_c00277{font-size:48.000000px;}
.fs1_c00277{font-size:60.000000px;}
.fs3_c00277{font-size:69.000000px;}
.fs0_c00277{font-size:72.000000px;}
.fs2_c00277{font-size:81.000000px;}
.y0_c00277{bottom:0.000000px;}
.y1f_c00277{bottom:3.105000px;}
.y1e_c00277{bottom:7.228369px;}
.y1d_c00277{bottom:53.670000px;}
.y1c_c00277{bottom:80.370000px;}
.y1b_c00277{bottom:100.920000px;}
.y1a_c00277{bottom:126.270000px;}
.y19_c00277{bottom:151.770000px;}
.y18_c00277{bottom:176.520000px;}
.y17_c00277{bottom:201.420000px;}
.y16_c00277{bottom:226.170000px;}
.y15_c00277{bottom:250.470000px;}
.y14_c00277{bottom:274.770000px;}
.y13_c00277{bottom:300.270000px;}
.y12_c00277{bottom:324.570000px;}
.y11_c00277{bottom:349.020000px;}
.y10_c00277{bottom:373.620000px;}
.yf_c00277{bottom:398.520000px;}
.ye_c00277{bottom:424.920000px;}
.yd_c00277{bottom:447.870000px;}
.yc_c00277{bottom:472.170000px;}
.yb_c00277{bottom:497.820000px;}
.ya_c00277{bottom:521.820000px;}
.y9_c00277{bottom:545.970000px;}
.y8_c00277{bottom:571.020000px;}
.y7_c00277{bottom:595.620000px;}
.y6_c00277{bottom:619.920000px;}
.y5_c00277{bottom:644.970000px;}
.y4_c00277{bottom:669.570000px;}
.y3_c00277{bottom:694.620000px;}
.y2_c00277{bottom:719.220000px;}
.y1_c00277{bottom:746.220000px;}
.h5_c00277{height:13.200073px;}
.h6_c00277{height:43.804688px;}
.h3_c00277{height:81.632812px;}
.h4_c00277{height:87.361816px;}
.h2_c00277{height:91.160156px;}
.h1_c00277{height:790.500000px;}
.h0_c00277{height:790.800000px;}
.w2_c00277{width:104.875500px;}
.w0_c00277{width:510.600000px;}
.w1_c00277{width:510.750000px;}
.x0_c00277{left:0.000000px;}
.x6_c00277{left:98.850000px;}
.x5_c00277{left:99.900000px;}
.x4_c00277{left:101.700000px;}
.x3_c00277{left:102.900000px;}
.x2_c00277{left:103.950000px;}
.x8_c00277{left:207.114258px;}
.x1_c00277{left:229.800000px;}
.x7_c00277{left:450.000000px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls2_c00277{letter-spacing:0.000000pt;}
.ls0_c00277{letter-spacing:2.666667pt;}
.ls1_c00277{letter-spacing:16.533333pt;}
.ws0_c00277{word-spacing:-17.448000pt;}
.ws1_c00277{word-spacing:0.000000pt;}
._c_c00277{margin-left:-6.208000pt;}
._b_c00277{margin-left:-4.416000pt;}
._7_c00277{margin-left:-3.520000pt;}
._6_c00277{margin-left:-2.560000pt;}
._5_c00277{margin-left:-1.664000pt;}
._4_c00277{width:1.280000pt;}
._3_c00277{width:2.624000pt;}
._1_c00277{width:4.032000pt;}
._9_c00277{width:5.248000pt;}
._2_c00277{width:6.528000pt;}
._d_c00277{width:7.680000pt;}
._0_c00277{width:8.832000pt;}
._f_c00277{width:10.496000pt;}
._11_c00277{width:11.829333pt;}
._e_c00277{width:13.632000pt;}
._8_c00277{width:15.168000pt;}
._12_c00277{width:16.138667pt;}
._10_c00277{width:17.418667pt;}
._a_c00277{width:19.072000pt;}
.fs4_c00277{font-size:42.666667pt;}
.fs1_c00277{font-size:53.333333pt;}
.fs3_c00277{font-size:61.333333pt;}
.fs0_c00277{font-size:64.000000pt;}
.fs2_c00277{font-size:72.000000pt;}
.y0_c00277{bottom:0.000000pt;}
.y1f_c00277{bottom:2.760000pt;}
.y1e_c00277{bottom:6.425217pt;}
.y1d_c00277{bottom:47.706667pt;}
.y1c_c00277{bottom:71.440000pt;}
.y1b_c00277{bottom:89.706667pt;}
.y1a_c00277{bottom:112.240000pt;}
.y19_c00277{bottom:134.906667pt;}
.y18_c00277{bottom:156.906667pt;}
.y17_c00277{bottom:179.040000pt;}
.y16_c00277{bottom:201.040000pt;}
.y15_c00277{bottom:222.640000pt;}
.y14_c00277{bottom:244.240000pt;}
.y13_c00277{bottom:266.906667pt;}
.y12_c00277{bottom:288.506667pt;}
.y11_c00277{bottom:310.240000pt;}
.y10_c00277{bottom:332.106667pt;}
.yf_c00277{bottom:354.240000pt;}
.ye_c00277{bottom:377.706667pt;}
.yd_c00277{bottom:398.106667pt;}
.yc_c00277{bottom:419.706667pt;}
.yb_c00277{bottom:442.506667pt;}
.ya_c00277{bottom:463.840000pt;}
.y9_c00277{bottom:485.306667pt;}
.y8_c00277{bottom:507.573333pt;}
.y7_c00277{bottom:529.440000pt;}
.y6_c00277{bottom:551.040000pt;}
.y5_c00277{bottom:573.306667pt;}
.y4_c00277{bottom:595.173333pt;}
.y3_c00277{bottom:617.440000pt;}
.y2_c00277{bottom:639.306667pt;}
.y1_c00277{bottom:663.306667pt;}
.h5_c00277{height:11.733399pt;}
.h6_c00277{height:38.937500pt;}
.h3_c00277{height:72.562500pt;}
.h4_c00277{height:77.654948pt;}
.h2_c00277{height:81.031250pt;}
.h1_c00277{height:702.666667pt;}
.h0_c00277{height:702.933333pt;}
.w2_c00277{width:93.222667pt;}
.w0_c00277{width:453.866667pt;}
.w1_c00277{width:454.000000pt;}
.x0_c00277{left:0.000000pt;}
.x6_c00277{left:87.866667pt;}
.x5_c00277{left:88.800000pt;}
.x4_c00277{left:90.400000pt;}
.x3_c00277{left:91.466667pt;}
.x2_c00277{left:92.400000pt;}
.x8_c00277{left:184.101563pt;}
.x1_c00277{left:204.266667pt;}
.x7_c00277{left:400.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_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_84624bb9d088bec4a69fd412.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.480469;font-style:normal;font-weight:normal;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_053c463f4ef3b24fac5a1be1.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00278;src:url('chunks/assets/font_07b7abae3836132cec3bef84.woff2')format("woff");}.ff3_c00278{font-family:ff3_c00278;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00278;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00278{font-family:ff4_c00278;line-height:1.219238;font-style: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;}
.ls2_c00278{letter-spacing:3.000000px;}
.ls3_c00278{letter-spacing:6.000000px;}
.ls0_c00278{letter-spacing:12.600000px;}
.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:-20.352000px;}
.ws1_c00278{word-spacing:0.000000px;}
._19_c00278{margin-left:-14.688000px;}
._16_c00278{margin-left:-13.032000px;}
._9_c00278{margin-left:-10.800000px;}
._a_c00278{margin-left:-8.712000px;}
._18_c00278{margin-left:-7.560000px;}
._10_c00278{margin-left:-6.480000px;}
._b_c00278{margin-left:-4.968000px;}
._7_c00278{margin-left:-3.528000px;}
._c_c00278{margin-left:-2.376000px;}
._f_c00278{margin-left:-1.080000px;}
._6_c00278{width:1.944000px;}
._3_c00278{width:3.744000px;}
._1_c00278{width:4.824000px;}
._1a_c00278{width:5.832000px;}
._2_c00278{width:6.840000px;}
._0_c00278{width:8.208000px;}
._d_c00278{width:9.456000px;}
._15_c00278{width:11.376000px;}
._e_c00278{width:12.456000px;}
._8_c00278{width:13.608000px;}
._17_c00278{width:15.120000px;}
._12_c00278{width:18.144000px;}
._13_c00278{width:19.272000px;}
._11_c00278{width:21.048000px;}
._14_c00278{width:22.512000px;}
._5_c00278{width:34.416000px;}
._4_c00278{width:358.416000px;}
.fc2_c00278{color:transparent;}
.fc1_c00278{color:rgb(128,128,128);}
.fc0_c00278{color:rgb(0,0,0);}
.fs2_c00278{font-size:24.000000px;}
.fs4_c00278{font-size:48.000000px;}
.fs3_c00278{font-size:69.000000px;}
.fs0_c00278{font-size:72.000000px;}
.fs1_c00278{font-size:78.000000px;}
.y0_c00278{bottom:0.000000px;}
.y1f_c00278{bottom:3.105000px;}
.y1e_c00278{bottom:7.228355px;}
.y1d_c00278{bottom:59.985000px;}
.y1c_c00278{bottom:86.685000px;}
.y1b_c00278{bottom:112.185000px;}
.y1a_c00278{bottom:137.235000px;}
.y19_c00278{bottom:162.285000px;}
.y18_c00278{bottom:187.185000px;}
.y17_c00278{bottom:211.185000px;}
.y16_c00278{bottom:236.835000px;}
.y15_c00278{bottom:261.435000px;}
.y14_c00278{bottom:285.735000px;}
.y13_c00278{bottom:310.185000px;}
.y12_c00278{bottom:332.685000px;}
.y11_c00278{bottom:356.985000px;}
.y10_c00278{bottom:381.285000px;}
.yf_c00278{bottom:406.035000px;}
.ye_c00278{bottom:430.935000px;}
.yd_c00278{bottom:455.835000px;}
.yc_c00278{bottom:480.585000px;}
.yb_c00278{bottom:504.435000px;}
.ya_c00278{bottom:529.485000px;}
.y9_c00278{bottom:553.785000px;}
.y8_c00278{bottom:579.135000px;}
.y7_c00278{bottom:603.435000px;}
.y6_c00278{bottom:628.035000px;}
.y5_c00278{bottom:651.585000px;}
.y4_c00278{bottom:676.635000px;}
.y3_c00278{bottom:700.335000px;}
.y2_c00278{bottom:725.235000px;}
.y1_c00278{bottom:750.585000px;}
.h4_c00278{height:13.200074px;}
.h5_c00278{height:43.804688px;}
.h2_c00278{height:84.269531px;}
.h3_c00278{height:91.160156px;}
.h0_c00278{height:798.375000px;}
.h1_c00278{height:798.750000px;}
.w2_c00278{width:104.875500px;}
.w0_c00278{width:547.275000px;}
.w1_c00278{width:547.500000px;}
.x0_c00278{left:0.000000px;}
.x2_c00278{left:34.800000px;}
.x3_c00278{left:36.450000px;}
.x4_c00278{left:38.100000px;}
.x5_c00278{left:39.150000px;}
.x6_c00278{left:40.500000px;}
.x7_c00278{left:42.450000px;}
.x8_c00278{left:43.800000px;}
.x9_c00278{left:45.450000px;}
.x1_c00278{left:142.050000px;}
.xb_c00278{left:225.451767px;}
.xa_c00278{left:396.450000px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls1_c00278{letter-spacing:0.000000pt;}
.ls2_c00278{letter-spacing:2.666667pt;}
.ls3_c00278{letter-spacing:5.333333pt;}
.ls0_c00278{letter-spacing:11.200000pt;}
.ws0_c00278{word-spacing:-18.090667pt;}
.ws1_c00278{word-spacing:0.000000pt;}
._19_c00278{margin-left:-13.056000pt;}
._16_c00278{margin-left:-11.584000pt;}
._9_c00278{margin-left:-9.600000pt;}
._a_c00278{margin-left:-7.744000pt;}
._18_c00278{margin-left:-6.720000pt;}
._10_c00278{margin-left:-5.760000pt;}
._b_c00278{margin-left:-4.416000pt;}
._7_c00278{margin-left:-3.136000pt;}
._c_c00278{margin-left:-2.112000pt;}
._f_c00278{margin-left:-0.960000pt;}
._6_c00278{width:1.728000pt;}
._3_c00278{width:3.328000pt;}
._1_c00278{width:4.288000pt;}
._1a_c00278{width:5.184000pt;}
._2_c00278{width:6.080000pt;}
._0_c00278{width:7.296000pt;}
._d_c00278{width:8.405333pt;}
._15_c00278{width:10.112000pt;}
._e_c00278{width:11.072000pt;}
._8_c00278{width:12.096000pt;}
._17_c00278{width:13.440000pt;}
._12_c00278{width:16.128000pt;}
._13_c00278{width:17.130667pt;}
._11_c00278{width:18.709333pt;}
._14_c00278{width:20.010667pt;}
._5_c00278{width:30.592000pt;}
._4_c00278{width:318.592000pt;}
.fs2_c00278{font-size:21.333333pt;}
.fs4_c00278{font-size:42.666667pt;}
.fs3_c00278{font-size:61.333333pt;}
.fs0_c00278{font-size:64.000000pt;}
.fs1_c00278{font-size:69.333333pt;}
.y0_c00278{bottom:0.000000pt;}
.y1f_c00278{bottom:2.760000pt;}
.y1e_c00278{bottom:6.425204pt;}
.y1d_c00278{bottom:53.320000pt;}
.y1c_c00278{bottom:77.053333pt;}
.y1b_c00278{bottom:99.720000pt;}
.y1a_c00278{bottom:121.986667pt;}
.y19_c00278{bottom:144.253333pt;}
.y18_c00278{bottom:166.386667pt;}
.y17_c00278{bottom:187.720000pt;}
.y16_c00278{bottom:210.520000pt;}
.y15_c00278{bottom:232.386667pt;}
.y14_c00278{bottom:253.986667pt;}
.y13_c00278{bottom:275.720000pt;}
.y12_c00278{bottom:295.720000pt;}
.y11_c00278{bottom:317.320000pt;}
.y10_c00278{bottom:338.920000pt;}
.yf_c00278{bottom:360.920000pt;}
.ye_c00278{bottom:383.053333pt;}
.yd_c00278{bottom:405.186667pt;}
.yc_c00278{bottom:427.186667pt;}
.yb_c00278{bottom:448.386667pt;}
.ya_c00278{bottom:470.653333pt;}
.y9_c00278{bottom:492.253333pt;}
.y8_c00278{bottom:514.786667pt;}
.y7_c00278{bottom:536.386667pt;}
.y6_c00278{bottom:558.253333pt;}
.y5_c00278{bottom:579.186667pt;}
.y4_c00278{bottom:601.453333pt;}
.y3_c00278{bottom:622.520000pt;}
.y2_c00278{bottom:644.653333pt;}
.y1_c00278{bottom:667.186667pt;}
.h4_c00278{height:11.733399pt;}
.h5_c00278{height:38.937500pt;}
.h2_c00278{height:74.906250pt;}
.h3_c00278{height:81.031250pt;}
.h0_c00278{height:709.666667pt;}
.h1_c00278{height:710.000000pt;}
.w2_c00278{width:93.222667pt;}
.w0_c00278{width:486.466667pt;}
.w1_c00278{width:486.666667pt;}
.x0_c00278{left:0.000000pt;}
.x2_c00278{left:30.933333pt;}
.x3_c00278{left:32.400000pt;}
.x4_c00278{left:33.866667pt;}
.x5_c00278{left:34.800000pt;}
.x6_c00278{left:36.000000pt;}
.x7_c00278{left:37.733333pt;}
.x8_c00278{left:38.933333pt;}
.x9_c00278{left:40.400000pt;}
.x1_c00278{left:126.266667pt;}
.xb_c00278{left:200.401571pt;}
.xa_c00278{left:352.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fb94616d4bd5457a5349c651.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.480469;font-style:normal;font-weight:normal;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_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:1.568848;font-style:normal;font-weight:normal;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_291455051a097bb83d35c979.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00279;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00279{font-family:ff4_c00279;line-height:1.219238;font-style: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:3.000000px;}
.sc__c00279{text-shadow:none;}
.sc0_c00279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00279{-webkit-text-stroke:0px transparent;}
.sc0_c00279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00279{word-spacing:-21.750000px;}
.ws0_c00279{word-spacing:-15.906000px;}
.ws2_c00279{word-spacing:0.000000px;}
._18_c00279{margin-left:-25.500000px;}
._14_c00279{margin-left:-18.813000px;}
._12_c00279{margin-left:-17.565000px;}
._11_c00279{margin-left:-15.882000px;}
._10_c00279{margin-left:-14.703000px;}
._5_c00279{margin-left:-13.659000px;}
._2_c00279{margin-left:-11.310000px;}
._6_c00279{margin-left:-10.116000px;}
._b_c00279{margin-left:-8.091000px;}
._13_c00279{margin-left:-6.924000px;}
._a_c00279{margin-left:-5.715000px;}
._3_c00279{margin-left:-3.915000px;}
._4_c00279{margin-left:-2.436000px;}
._9_c00279{margin-left:-1.434000px;}
._1_c00279{width:1.479000px;}
._0_c00279{width:3.045000px;}
._7_c00279{width:4.500000px;}
._8_c00279{width:6.150000px;}
._c_c00279{width:7.287000px;}
._15_c00279{width:8.535000px;}
._d_c00279{width:9.750000px;}
._f_c00279{width:11.007000px;}
._1a_c00279{width:12.321000px;}
._e_c00279{width:13.422000px;}
._1b_c00279{width:18.660000px;}
._1c_c00279{width:23.268000px;}
._17_c00279{width:68.589000px;}
._19_c00279{width:238.350000px;}
._16_c00279{width:315.054000px;}
.fc2_c00279{color:transparent;}
.fc1_c00279{color:rgb(128,128,128);}
.fc0_c00279{color:rgb(0,0,0);}
.fs3_c00279{font-size:48.000000px;}
.fs2_c00279{font-size:66.000000px;}
.fs1_c00279{font-size:75.000000px;}
.fs0_c00279{font-size:87.000000px;}
.y0_c00279{bottom:0.000000px;}
.y1f_c00279{bottom:3.105000px;}
.y1e_c00279{bottom:7.228363px;}
.y1d_c00279{bottom:58.050000px;}
.y1c_c00279{bottom:81.900000px;}
.y1b_c00279{bottom:107.700000px;}
.y1a_c00279{bottom:131.700000px;}
.y19_c00279{bottom:157.050000px;}
.y18_c00279{bottom:182.550000px;}
.y17_c00279{bottom:208.950000px;}
.y16_c00279{bottom:230.850000px;}
.y15_c00279{bottom:256.200000px;}
.y14_c00279{bottom:279.750000px;}
.y13_c00279{bottom:304.650000px;}
.y12_c00279{bottom:330.000000px;}
.y11_c00279{bottom:353.250000px;}
.y10_c00279{bottom:377.700000px;}
.yf_c00279{bottom:402.000000px;}
.ye_c00279{bottom:426.600000px;}
.yd_c00279{bottom:451.200000px;}
.yc_c00279{bottom:475.200000px;}
.yb_c00279{bottom:499.500000px;}
.ya_c00279{bottom:524.250000px;}
.y9_c00279{bottom:548.100000px;}
.y8_c00279{bottom:573.450000px;}
.y7_c00279{bottom:597.750000px;}
.y6_c00279{bottom:622.650000px;}
.y5_c00279{bottom:647.250000px;}
.y4_c00279{bottom:670.950000px;}
.y3_c00279{bottom:695.850000px;}
.y2_c00279{bottom:720.600000px;}
.y1_c00279{bottom:745.650000px;}
.h5_c00279{height:13.200074px;}
.h6_c00279{height:43.804688px;}
.h3_c00279{height:73.608398px;}
.h4_c00279{height:77.247070px;}
.h2_c00279{height:110.151855px;}
.h1_c00279{height:788.250000px;}
.h0_c00279{height:788.400000px;}
.w2_c00279{width:104.875500px;}
.w1_c00279{width:514.500000px;}
.w0_c00279{width:514.650000px;}
.x0_c00279{left:0.000000px;}
.x8_c00279{left:24.600000px;}
.x7_c00279{left:26.250000px;}
.x9_c00279{left:31.650000px;}
.x6_c00279{left:101.250000px;}
.x5_c00279{left:103.650000px;}
.x4_c00279{left:105.000000px;}
.x3_c00279{left:106.650000px;}
.x2_c00279{left:108.000000px;}
.xb_c00279{left:209.139267px;}
.x1_c00279{left:227.100000px;}
.xa_c00279{left:451.200000px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls0_c00279{letter-spacing:0.000000pt;}
.ls1_c00279{letter-spacing:2.666667pt;}
.ws1_c00279{word-spacing:-19.333333pt;}
.ws0_c00279{word-spacing:-14.138667pt;}
.ws2_c00279{word-spacing:0.000000pt;}
._18_c00279{margin-left:-22.666667pt;}
._14_c00279{margin-left:-16.722667pt;}
._12_c00279{margin-left:-15.613333pt;}
._11_c00279{margin-left:-14.117333pt;}
._10_c00279{margin-left:-13.069333pt;}
._5_c00279{margin-left:-12.141333pt;}
._2_c00279{margin-left:-10.053333pt;}
._6_c00279{margin-left:-8.992000pt;}
._b_c00279{margin-left:-7.192000pt;}
._13_c00279{margin-left:-6.154667pt;}
._a_c00279{margin-left:-5.080000pt;}
._3_c00279{margin-left:-3.480000pt;}
._4_c00279{margin-left:-2.165333pt;}
._9_c00279{margin-left:-1.274667pt;}
._1_c00279{width:1.314667pt;}
._0_c00279{width:2.706667pt;}
._7_c00279{width:4.000000pt;}
._8_c00279{width:5.466667pt;}
._c_c00279{width:6.477333pt;}
._15_c00279{width:7.586667pt;}
._d_c00279{width:8.666667pt;}
._f_c00279{width:9.784000pt;}
._1a_c00279{width:10.952000pt;}
._e_c00279{width:11.930667pt;}
._1b_c00279{width:16.586667pt;}
._1c_c00279{width:20.682667pt;}
._17_c00279{width:60.968000pt;}
._19_c00279{width:211.866667pt;}
._16_c00279{width:280.048000pt;}
.fs3_c00279{font-size:42.666667pt;}
.fs2_c00279{font-size:58.666667pt;}
.fs1_c00279{font-size:66.666667pt;}
.fs0_c00279{font-size:77.333333pt;}
.y0_c00279{bottom:0.000000pt;}
.y1f_c00279{bottom:2.760000pt;}
.y1e_c00279{bottom:6.425212pt;}
.y1d_c00279{bottom:51.600000pt;}
.y1c_c00279{bottom:72.800000pt;}
.y1b_c00279{bottom:95.733333pt;}
.y1a_c00279{bottom:117.066667pt;}
.y19_c00279{bottom:139.600000pt;}
.y18_c00279{bottom:162.266667pt;}
.y17_c00279{bottom:185.733333pt;}
.y16_c00279{bottom:205.200000pt;}
.y15_c00279{bottom:227.733333pt;}
.y14_c00279{bottom:248.666667pt;}
.y13_c00279{bottom:270.800000pt;}
.y12_c00279{bottom:293.333333pt;}
.y11_c00279{bottom:314.000000pt;}
.y10_c00279{bottom:335.733333pt;}
.yf_c00279{bottom:357.333333pt;}
.ye_c00279{bottom:379.200000pt;}
.yd_c00279{bottom:401.066667pt;}
.yc_c00279{bottom:422.400000pt;}
.yb_c00279{bottom:444.000000pt;}
.ya_c00279{bottom:466.000000pt;}
.y9_c00279{bottom:487.200000pt;}
.y8_c00279{bottom:509.733333pt;}
.y7_c00279{bottom:531.333333pt;}
.y6_c00279{bottom:553.466667pt;}
.y5_c00279{bottom:575.333333pt;}
.y4_c00279{bottom:596.400000pt;}
.y3_c00279{bottom:618.533333pt;}
.y2_c00279{bottom:640.533333pt;}
.y1_c00279{bottom:662.800000pt;}
.h5_c00279{height:11.733399pt;}
.h6_c00279{height:38.937500pt;}
.h3_c00279{height:65.429688pt;}
.h4_c00279{height:68.664062pt;}
.h2_c00279{height:97.912760pt;}
.h1_c00279{height:700.666667pt;}
.h0_c00279{height:700.800000pt;}
.w2_c00279{width:93.222667pt;}
.w1_c00279{width:457.333333pt;}
.w0_c00279{width:457.466667pt;}
.x0_c00279{left:0.000000pt;}
.x8_c00279{left:21.866667pt;}
.x7_c00279{left:23.333333pt;}
.x9_c00279{left:28.133333pt;}
.x6_c00279{left:90.000000pt;}
.x5_c00279{left:92.133333pt;}
.x4_c00279{left:93.333333pt;}
.x3_c00279{left:94.800000pt;}
.x2_c00279{left:96.000000pt;}
.xb_c00279{left:185.901571pt;}
.x1_c00279{left:201.866667pt;}
.xa_c00279{left:401.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c94bb42f5806084c008c14cb.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.480469;font-style:normal;font-weight:normal;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_672993dee1aebe288cb8f661.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00280;src:url('chunks/assets/font_7595bd164b826cd6f6e9f833.woff2')format("woff");}.ff3_c00280{font-family:ff3_c00280;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00280;src:url('chunks/assets/font_cb734af931d4a38a65501d86.woff2')format("woff");}.ff4_c00280{font-family:ff4_c00280;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00280;src:url('chunks/assets/font_31d50a648e375613dace6381.woff2')format("woff");}.ff5_c00280{font-family:ff5_c00280;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00280;src:url('chunks/assets/font_beb798d6a90e9a26de050043.woff2')format("woff");}.ff6_c00280{font-family:ff6_c00280;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00280;src:url('chunks/assets/font_fa4d7505dda73f1898bc0e6b.woff2')format("woff");}.ff7_c00280{font-family:ff7_c00280;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00280;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff8_c00280{font-family:ff8_c00280;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00280{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00280{vertical-align:0.000000px;}
.ls0_c00280{letter-spacing:0.000000px;}
.ls1_c00280{letter-spacing:3.000000px;}
.sc__c00280{text-shadow:none;}
.sc0_c00280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00280{-webkit-text-stroke:0px transparent;}
.sc0_c00280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00280{word-spacing:-62.166000px;}
.ws1_c00280{word-spacing:-53.430000px;}
.ws0_c00280{word-spacing:-40.107000px;}
.ws3_c00280{word-spacing:-21.000000px;}
.ws5_c00280{word-spacing:-20.250000px;}
.ws4_c00280{word-spacing:-0.064800px;}
.ws6_c00280{word-spacing:0.000000px;}
._11_c00280{margin-left:-22.176000px;}
._1e_c00280{margin-left:-20.940000px;}
._16_c00280{margin-left:-18.144000px;}
._12_c00280{margin-left:-15.960000px;}
._15_c00280{margin-left:-14.226000px;}
._13_c00280{margin-left:-13.065000px;}
._20_c00280{margin-left:-11.949000px;}
._17_c00280{margin-left:-10.836000px;}
._1f_c00280{margin-left:-9.411000px;}
._f_c00280{margin-left:-8.322000px;}
._19_c00280{margin-left:-7.293000px;}
._e_c00280{margin-left:-6.273000px;}
._9_c00280{margin-left:-4.872000px;}
._a_c00280{margin-left:-3.864000px;}
._c_c00280{margin-left:-2.604000px;}
._14_c00280{margin-left:-1.008000px;}
._1_c00280{width:1.305000px;}
._0_c00280{width:2.610000px;}
._b_c00280{width:4.392000px;}
._d_c00280{width:5.655000px;}
._4_c00280{width:6.873000px;}
._5_c00280{width:8.148000px;}
._10_c00280{width:9.444000px;}
._3_c00280{width:10.788000px;}
._6_c00280{width:12.732000px;}
._8_c00280{width:13.776000px;}
._7_c00280{width:15.288000px;}
._1b_c00280{width:16.551000px;}
._18_c00280{width:17.628000px;}
._1c_c00280{width:20.670000px;}
._1d_c00280{width:21.927000px;}
._21_c00280{width:113.352000px;}
._2_c00280{width:372.489000px;}
._1a_c00280{width:1189.590000px;}
.fc2_c00280{color:transparent;}
.fc1_c00280{color:rgb(128,128,128);}
.fc0_c00280{color:rgb(0,0,0);}
.fs7_c00280{font-size:48.000000px;}
.fs5_c00280{font-size:63.000000px;}
.fs4_c00280{font-size:64.800000px;}
.fs6_c00280{font-size:72.000000px;}
.fs2_c00280{font-size:78.000000px;}
.fs3_c00280{font-size:81.000000px;}
.fs1_c00280{font-size:84.000000px;}
.fs0_c00280{font-size:87.000000px;}
.y0_c00280{bottom:0.000000px;}
.y1f_c00280{bottom:3.105000px;}
.y1e_c00280{bottom:7.228355px;}
.y1d_c00280{bottom:38.085000px;}
.y1c_c00280{bottom:65.835000px;}
.y1b_c00280{bottom:91.485000px;}
.y1a_c00280{bottom:116.985000px;}
.y19_c00280{bottom:139.935000px;}
.y18_c00280{bottom:166.035000px;}
.y17_c00280{bottom:191.985000px;}
.y16_c00280{bottom:216.585000px;}
.y15_c00280{bottom:242.535000px;}
.y14_c00280{bottom:267.585000px;}
.y13_c00280{bottom:293.835000px;}
.y12_c00280{bottom:314.535000px;}
.y11_c00280{bottom:338.535000px;}
.y10_c00280{bottom:363.435000px;}
.yf_c00280{bottom:388.035000px;}
.ye_c00280{bottom:413.385000px;}
.yd_c00280{bottom:437.685000px;}
.yc_c00280{bottom:461.985000px;}
.yb_c00280{bottom:486.885000px;}
.ya_c00280{bottom:511.335000px;}
.y9_c00280{bottom:535.635000px;}
.y8_c00280{bottom:560.835000px;}
.y7_c00280{bottom:585.135000px;}
.y6_c00280{bottom:610.185000px;}
.y5_c00280{bottom:634.485000px;}
.y4_c00280{bottom:659.385000px;}
.y3_c00280{bottom:683.685000px;}
.y2_c00280{bottom:708.285000px;}
.y1_c00280{bottom:733.335000px;}
.ha_c00280{height:13.200074px;}
.hb_c00280{height:43.804688px;}
.h9_c00280{height:79.497070px;}
.h7_c00280{height:79.765137px;}
.h6_c00280{height:81.632812px;}
.h4_c00280{height:82.441406px;}
.h8_c00280{height:91.160156px;}
.h3_c00280{height:91.291992px;}
.h5_c00280{height:98.756836px;}
.h2_c00280{height:110.151855px;}
.h0_c00280{height:782.175000px;}
.h1_c00280{height:782.250000px;}
.w2_c00280{width:104.875500px;}
.w0_c00280{width:542.175000px;}
.w1_c00280{width:542.250000px;}
.x0_c00280{left:0.000000px;}
.x2_c00280{left:23.250000px;}
.x3_c00280{left:24.300000px;}
.x4_c00280{left:25.350000px;}
.x5_c00280{left:26.400000px;}
.x6_c00280{left:27.750000px;}
.x7_c00280{left:28.800000px;}
.x8_c00280{left:30.000000px;}
.x9_c00280{left:31.950000px;}
.xa_c00280{left:73.950000px;}
.x1_c00280{left:131.700000px;}
.xc_c00280{left:222.901749px;}
.xb_c00280{left:372.900000px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls0_c00280{letter-spacing:0.000000pt;}
.ls1_c00280{letter-spacing:2.666667pt;}
.ws2_c00280{word-spacing:-55.258667pt;}
.ws1_c00280{word-spacing:-47.493333pt;}
.ws0_c00280{word-spacing:-35.650667pt;}
.ws3_c00280{word-spacing:-18.666667pt;}
.ws5_c00280{word-spacing:-18.000000pt;}
.ws4_c00280{word-spacing:-0.057600pt;}
.ws6_c00280{word-spacing:0.000000pt;}
._11_c00280{margin-left:-19.712000pt;}
._1e_c00280{margin-left:-18.613333pt;}
._16_c00280{margin-left:-16.128000pt;}
._12_c00280{margin-left:-14.186667pt;}
._15_c00280{margin-left:-12.645333pt;}
._13_c00280{margin-left:-11.613333pt;}
._20_c00280{margin-left:-10.621333pt;}
._17_c00280{margin-left:-9.632000pt;}
._1f_c00280{margin-left:-8.365333pt;}
._f_c00280{margin-left:-7.397333pt;}
._19_c00280{margin-left:-6.482667pt;}
._e_c00280{margin-left:-5.576000pt;}
._9_c00280{margin-left:-4.330667pt;}
._a_c00280{margin-left:-3.434667pt;}
._c_c00280{margin-left:-2.314667pt;}
._14_c00280{margin-left:-0.896000pt;}
._1_c00280{width:1.160000pt;}
._0_c00280{width:2.320000pt;}
._b_c00280{width:3.904000pt;}
._d_c00280{width:5.026667pt;}
._4_c00280{width:6.109333pt;}
._5_c00280{width:7.242667pt;}
._10_c00280{width:8.394667pt;}
._3_c00280{width:9.589333pt;}
._6_c00280{width:11.317333pt;}
._8_c00280{width:12.245333pt;}
._7_c00280{width:13.589333pt;}
._1b_c00280{width:14.712000pt;}
._18_c00280{width:15.669333pt;}
._1c_c00280{width:18.373333pt;}
._1d_c00280{width:19.490667pt;}
._21_c00280{width:100.757333pt;}
._2_c00280{width:331.101333pt;}
._1a_c00280{width:1057.413333pt;}
.fs7_c00280{font-size:42.666667pt;}
.fs5_c00280{font-size:56.000000pt;}
.fs4_c00280{font-size:57.600000pt;}
.fs6_c00280{font-size:64.000000pt;}
.fs2_c00280{font-size:69.333333pt;}
.fs3_c00280{font-size:72.000000pt;}
.fs1_c00280{font-size:74.666667pt;}
.fs0_c00280{font-size:77.333333pt;}
.y0_c00280{bottom:0.000000pt;}
.y1f_c00280{bottom:2.760000pt;}
.y1e_c00280{bottom:6.425204pt;}
.y1d_c00280{bottom:33.853333pt;}
.y1c_c00280{bottom:58.520000pt;}
.y1b_c00280{bottom:81.320000pt;}
.y1a_c00280{bottom:103.986667pt;}
.y19_c00280{bottom:124.386667pt;}
.y18_c00280{bottom:147.586667pt;}
.y17_c00280{bottom:170.653333pt;}
.y16_c00280{bottom:192.520000pt;}
.y15_c00280{bottom:215.586667pt;}
.y14_c00280{bottom:237.853333pt;}
.y13_c00280{bottom:261.186667pt;}
.y12_c00280{bottom:279.586667pt;}
.y11_c00280{bottom:300.920000pt;}
.y10_c00280{bottom:323.053333pt;}
.yf_c00280{bottom:344.920000pt;}
.ye_c00280{bottom:367.453333pt;}
.yd_c00280{bottom:389.053333pt;}
.yc_c00280{bottom:410.653333pt;}
.yb_c00280{bottom:432.786667pt;}
.ya_c00280{bottom:454.520000pt;}
.y9_c00280{bottom:476.120000pt;}
.y8_c00280{bottom:498.520000pt;}
.y7_c00280{bottom:520.120000pt;}
.y6_c00280{bottom:542.386667pt;}
.y5_c00280{bottom:563.986667pt;}
.y4_c00280{bottom:586.120000pt;}
.y3_c00280{bottom:607.720000pt;}
.y2_c00280{bottom:629.586667pt;}
.y1_c00280{bottom:651.853333pt;}
.ha_c00280{height:11.733399pt;}
.hb_c00280{height:38.937500pt;}
.h9_c00280{height:70.664062pt;}
.h7_c00280{height:70.902344pt;}
.h6_c00280{height:72.562500pt;}
.h4_c00280{height:73.281250pt;}
.h8_c00280{height:81.031250pt;}
.h3_c00280{height:81.148438pt;}
.h5_c00280{height:87.783854pt;}
.h2_c00280{height:97.912760pt;}
.h0_c00280{height:695.266667pt;}
.h1_c00280{height:695.333333pt;}
.w2_c00280{width:93.222667pt;}
.w0_c00280{width:481.933333pt;}
.w1_c00280{width:482.000000pt;}
.x0_c00280{left:0.000000pt;}
.x2_c00280{left:20.666667pt;}
.x3_c00280{left:21.600000pt;}
.x4_c00280{left:22.533333pt;}
.x5_c00280{left:23.466667pt;}
.x6_c00280{left:24.666667pt;}
.x7_c00280{left:25.600000pt;}
.x8_c00280{left:26.666667pt;}
.x9_c00280{left:28.400000pt;}
.xa_c00280{left:65.733333pt;}
.x1_c00280{left:117.066667pt;}
.xc_c00280{left:198.134888pt;}
.xb_c00280{left:331.466667pt;}
}





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

.ir_c00281:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00281{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00281;src:url('chunks/assets/font_ee35c8c710f7179345c89d86.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.480469;font-style:normal;font-weight:normal;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_73b5c768e3782d91642b36fe.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00281;src:url('chunks/assets/font_061399f7e4486315cceebc10.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00281;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00281{font-family:ff4_c00281;line-height:1.219238;font-style: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;}
.ls2_c00281{letter-spacing:-6.000000px;}
.ls4_c00281{letter-spacing:-3.000000px;}
.ls3_c00281{letter-spacing:0.000000px;}
.ls0_c00281{letter-spacing:3.060000px;}
.ls1_c00281{letter-spacing:7.560000px;}
.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;}
}
.ws2_c00281{word-spacing:-42.000000px;}
.ws0_c00281{word-spacing:-16.521000px;}
.ws1_c00281{word-spacing:-15.183000px;}
.ws3_c00281{word-spacing:0.000000px;}
._f_c00281{margin-left:-5.721000px;}
._8_c00281{margin-left:-3.228000px;}
._e_c00281{margin-left:-2.193000px;}
._6_c00281{margin-left:-1.083000px;}
._4_c00281{width:1.998000px;}
._1_c00281{width:3.480000px;}
._10_c00281{width:4.539000px;}
._5_c00281{width:5.577000px;}
._3_c00281{width:6.873000px;}
._2_c00281{width:8.091000px;}
._c_c00281{width:9.126000px;}
._0_c00281{width:10.179000px;}
._b_c00281{width:11.238000px;}
._d_c00281{width:12.321000px;}
._a_c00281{width:13.419000px;}
._7_c00281{width:16.413000px;}
._9_c00281{width:18.144000px;}
._11_c00281{width:21.207000px;}
._12_c00281{width:23.964000px;}
.fc2_c00281{color:transparent;}
.fc1_c00281{color:rgb(128,128,128);}
.fc0_c00281{color:rgb(0,0,0);}
.fs5_c00281{font-size:48.000000px;}
.fs2_c00281{font-size:60.000000px;}
.fs1_c00281{font-size:63.000000px;}
.fs3_c00281{font-size:81.000000px;}
.fs4_c00281{font-size:84.000000px;}
.fs0_c00281{font-size:87.000000px;}
.y0_c00281{bottom:0.000000px;}
.y1f_c00281{bottom:3.105000px;}
.y1e_c00281{bottom:7.228355px;}
.y1d_c00281{bottom:41.385000px;}
.y1c_c00281{bottom:69.735000px;}
.y1b_c00281{bottom:95.535000px;}
.y1a_c00281{bottom:120.435000px;}
.y19_c00281{bottom:146.085000px;}
.y18_c00281{bottom:170.685000px;}
.y17_c00281{bottom:195.435000px;}
.y16_c00281{bottom:220.335000px;}
.y15_c00281{bottom:244.335000px;}
.y14_c00281{bottom:269.235000px;}
.y13_c00281{bottom:293.835000px;}
.y12_c00281{bottom:317.835000px;}
.y11_c00281{bottom:342.435000px;}
.y10_c00281{bottom:366.735000px;}
.yf_c00281{bottom:391.485000px;}
.ye_c00281{bottom:415.785000px;}
.yd_c00281{bottom:440.985000px;}
.yc_c00281{bottom:464.985000px;}
.yb_c00281{bottom:489.285000px;}
.ya_c00281{bottom:513.885000px;}
.y9_c00281{bottom:538.635000px;}
.y8_c00281{bottom:563.535000px;}
.y7_c00281{bottom:587.535000px;}
.y6_c00281{bottom:612.435000px;}
.y5_c00281{bottom:636.885000px;}
.y4_c00281{bottom:661.035000px;}
.y3_c00281{bottom:685.035000px;}
.y2_c00281{bottom:710.085000px;}
.y1_c00281{bottom:736.335000px;}
.h6_c00281{height:13.200074px;}
.h7_c00281{height:43.804688px;}
.h3_c00281{height:79.765137px;}
.h5_c00281{height:82.400391px;}
.h4_c00281{height:94.803223px;}
.h2_c00281{height:110.151855px;}
.h1_c00281{height:779.250000px;}
.h0_c00281{height:779.475000px;}
.w2_c00281{width:104.875500px;}
.w0_c00281{width:501.675000px;}
.w1_c00281{width:501.750000px;}
.x0_c00281{left:0.000000px;}
.x9_c00281{left:99.000000px;}
.x8_c00281{left:100.200000px;}
.x7_c00281{left:102.000000px;}
.x6_c00281{left:103.650000px;}
.x5_c00281{left:105.750000px;}
.x4_c00281{left:107.100000px;}
.x3_c00281{left:108.300000px;}
.x2_c00281{left:111.600000px;}
.xb_c00281{left:202.651749px;}
.x1_c00281{left:229.800000px;}
.xa_c00281{left:454.950000px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls2_c00281{letter-spacing:-5.333333pt;}
.ls4_c00281{letter-spacing:-2.666667pt;}
.ls3_c00281{letter-spacing:0.000000pt;}
.ls0_c00281{letter-spacing:2.720000pt;}
.ls1_c00281{letter-spacing:6.720000pt;}
.ws2_c00281{word-spacing:-37.333333pt;}
.ws0_c00281{word-spacing:-14.685333pt;}
.ws1_c00281{word-spacing:-13.496000pt;}
.ws3_c00281{word-spacing:0.000000pt;}
._f_c00281{margin-left:-5.085333pt;}
._8_c00281{margin-left:-2.869333pt;}
._e_c00281{margin-left:-1.949333pt;}
._6_c00281{margin-left:-0.962667pt;}
._4_c00281{width:1.776000pt;}
._1_c00281{width:3.093333pt;}
._10_c00281{width:4.034667pt;}
._5_c00281{width:4.957333pt;}
._3_c00281{width:6.109333pt;}
._2_c00281{width:7.192000pt;}
._c_c00281{width:8.112000pt;}
._0_c00281{width:9.048000pt;}
._b_c00281{width:9.989333pt;}
._d_c00281{width:10.952000pt;}
._a_c00281{width:11.928000pt;}
._7_c00281{width:14.589333pt;}
._9_c00281{width:16.128000pt;}
._11_c00281{width:18.850667pt;}
._12_c00281{width:21.301333pt;}
.fs5_c00281{font-size:42.666667pt;}
.fs2_c00281{font-size:53.333333pt;}
.fs1_c00281{font-size:56.000000pt;}
.fs3_c00281{font-size:72.000000pt;}
.fs4_c00281{font-size:74.666667pt;}
.fs0_c00281{font-size:77.333333pt;}
.y0_c00281{bottom:0.000000pt;}
.y1f_c00281{bottom:2.760000pt;}
.y1e_c00281{bottom:6.425204pt;}
.y1d_c00281{bottom:36.786667pt;}
.y1c_c00281{bottom:61.986667pt;}
.y1b_c00281{bottom:84.920000pt;}
.y1a_c00281{bottom:107.053333pt;}
.y19_c00281{bottom:129.853333pt;}
.y18_c00281{bottom:151.720000pt;}
.y17_c00281{bottom:173.720000pt;}
.y16_c00281{bottom:195.853333pt;}
.y15_c00281{bottom:217.186667pt;}
.y14_c00281{bottom:239.320000pt;}
.y13_c00281{bottom:261.186667pt;}
.y12_c00281{bottom:282.520000pt;}
.y11_c00281{bottom:304.386667pt;}
.y10_c00281{bottom:325.986667pt;}
.yf_c00281{bottom:347.986667pt;}
.ye_c00281{bottom:369.586667pt;}
.yd_c00281{bottom:391.986667pt;}
.yc_c00281{bottom:413.320000pt;}
.yb_c00281{bottom:434.920000pt;}
.ya_c00281{bottom:456.786667pt;}
.y9_c00281{bottom:478.786667pt;}
.y8_c00281{bottom:500.920000pt;}
.y7_c00281{bottom:522.253333pt;}
.y6_c00281{bottom:544.386667pt;}
.y5_c00281{bottom:566.120000pt;}
.y4_c00281{bottom:587.586667pt;}
.y3_c00281{bottom:608.920000pt;}
.y2_c00281{bottom:631.186667pt;}
.y1_c00281{bottom:654.520000pt;}
.h6_c00281{height:11.733399pt;}
.h7_c00281{height:38.937500pt;}
.h3_c00281{height:70.902344pt;}
.h5_c00281{height:73.244792pt;}
.h4_c00281{height:84.269531pt;}
.h2_c00281{height:97.912760pt;}
.h1_c00281{height:692.666667pt;}
.h0_c00281{height:692.866667pt;}
.w2_c00281{width:93.222667pt;}
.w0_c00281{width:445.933333pt;}
.w1_c00281{width:446.000000pt;}
.x0_c00281{left:0.000000pt;}
.x9_c00281{left:88.000000pt;}
.x8_c00281{left:89.066667pt;}
.x7_c00281{left:90.666667pt;}
.x6_c00281{left:92.133333pt;}
.x5_c00281{left:94.000000pt;}
.x4_c00281{left:95.200000pt;}
.x3_c00281{left:96.266667pt;}
.x2_c00281{left:99.200000pt;}
.xb_c00281{left:180.134888pt;}
.x1_c00281{left:204.266667pt;}
.xa_c00281{left:404.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_32067d95af544f2a1344c675.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00282;src:url('chunks/assets/font_7ebb0a0c3b16ef3dca39f644.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00282;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:1.219238;font-style: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;}
.ls3_c00282{letter-spacing:-9.000000px;}
.ls2_c00282{letter-spacing:0.000000px;}
.ls1_c00282{letter-spacing:3.000000px;}
.ls0_c00282{letter-spacing:8.460000px;}
.sc__c00282{text-shadow:none;}
.sc0_c00282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00282{-webkit-text-stroke:0px transparent;}
.sc0_c00282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00282{word-spacing:0.000000px;}
.ws0_c00282{word-spacing:13.752000px;}
._16_c00282{margin-left:-28.836000px;}
._4_c00282{margin-left:-14.460000px;}
._7_c00282{margin-left:-12.480000px;}
._10_c00282{margin-left:-7.992000px;}
._b_c00282{margin-left:-5.616000px;}
._d_c00282{margin-left:-4.020000px;}
._9_c00282{margin-left:-2.868000px;}
._2_c00282{margin-left:-1.560000px;}
._f_c00282{width:1.542000px;}
._a_c00282{width:2.634000px;}
._13_c00282{width:3.996000px;}
._6_c00282{width:5.400000px;}
._5_c00282{width:7.080000px;}
._0_c00282{width:8.400000px;}
._11_c00282{width:9.624000px;}
._c_c00282{width:11.880000px;}
._e_c00282{width:13.116000px;}
._12_c00282{width:14.448000px;}
._17_c00282{width:15.828000px;}
._1_c00282{width:16.920000px;}
._1b_c00282{width:18.210000px;}
._3_c00282{width:22.020000px;}
._14_c00282{width:23.748000px;}
._1c_c00282{width:25.422000px;}
._19_c00282{width:26.592000px;}
._15_c00282{width:29.400000px;}
._18_c00282{width:132.528000px;}
._1d_c00282{width:360.924000px;}
._8_c00282{width:419.382000px;}
._1a_c00282{width:577.704000px;}
.fc2_c00282{color:transparent;}
.fc1_c00282{color:rgb(128,128,128);}
.fc0_c00282{color:rgb(0,0,0);}
.fs4_c00282{font-size:48.000000px;}
.fs1_c00282{font-size:54.000000px;}
.fs0_c00282{font-size:60.000000px;}
.fs3_c00282{font-size:69.000000px;}
.fs2_c00282{font-size:72.000000px;}
.y0_c00282{bottom:0.000000px;}
.y1f_c00282{bottom:3.105000px;}
.y1e_c00282{bottom:7.228355px;}
.y1d_c00282{bottom:52.185000px;}
.y1c_c00282{bottom:79.635000px;}
.y1b_c00282{bottom:104.235000px;}
.y1a_c00282{bottom:131.535000px;}
.y19_c00282{bottom:157.485000px;}
.y18_c00282{bottom:181.935000px;}
.y17_c00282{bottom:206.835000px;}
.y16_c00282{bottom:228.435000px;}
.y15_c00282{bottom:256.485000px;}
.y14_c00282{bottom:281.385000px;}
.y13_c00282{bottom:304.635000px;}
.y12_c00282{bottom:327.585000px;}
.y11_c00282{bottom:350.685000px;}
.y10_c00282{bottom:375.585000px;}
.yf_c00282{bottom:400.485000px;}
.ye_c00282{bottom:424.785000px;}
.yd_c00282{bottom:449.535000px;}
.yc_c00282{bottom:474.735000px;}
.yb_c00282{bottom:499.035000px;}
.ya_c00282{bottom:523.485000px;}
.y9_c00282{bottom:548.385000px;}
.y8_c00282{bottom:573.285000px;}
.y7_c00282{bottom:597.585000px;}
.y6_c00282{bottom:622.635000px;}
.y5_c00282{bottom:646.635000px;}
.y4_c00282{bottom:671.235000px;}
.y3_c00282{bottom:696.135000px;}
.y2_c00282{bottom:720.585000px;}
.y1_c00282{bottom:745.785000px;}
.h4_c00282{height:13.200074px;}
.h5_c00282{height:43.804688px;}
.h2_c00282{height:75.966797px;}
.h3_c00282{height:91.160156px;}
.h0_c00282{height:788.925000px;}
.h1_c00282{height:789.000000px;}
.w2_c00282{width:104.875500px;}
.w1_c00282{width:531.750000px;}
.w0_c00282{width:531.900000px;}
.x0_c00282{left:0.000000px;}
.xe_c00282{left:20.700000px;}
.xd_c00282{left:23.250000px;}
.xc_c00282{left:24.750000px;}
.xb_c00282{left:26.100000px;}
.xa_c00282{left:27.300000px;}
.x9_c00282{left:28.350000px;}
.x8_c00282{left:30.000000px;}
.x7_c00282{left:32.100000px;}
.x6_c00282{left:33.150000px;}
.x5_c00282{left:34.500000px;}
.x3_c00282{left:35.850000px;}
.x4_c00282{left:36.900000px;}
.x2_c00282{left:38.100000px;}
.x1_c00282{left:180.900000px;}
.x10_c00282{left:217.764267px;}
.xf_c00282{left:251.850000px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls3_c00282{letter-spacing:-8.000000pt;}
.ls2_c00282{letter-spacing:0.000000pt;}
.ls1_c00282{letter-spacing:2.666667pt;}
.ls0_c00282{letter-spacing:7.520000pt;}
.ws1_c00282{word-spacing:0.000000pt;}
.ws0_c00282{word-spacing:12.224000pt;}
._16_c00282{margin-left:-25.632000pt;}
._4_c00282{margin-left:-12.853333pt;}
._7_c00282{margin-left:-11.093333pt;}
._10_c00282{margin-left:-7.104000pt;}
._b_c00282{margin-left:-4.992000pt;}
._d_c00282{margin-left:-3.573333pt;}
._9_c00282{margin-left:-2.549333pt;}
._2_c00282{margin-left:-1.386667pt;}
._f_c00282{width:1.370667pt;}
._a_c00282{width:2.341333pt;}
._13_c00282{width:3.552000pt;}
._6_c00282{width:4.800000pt;}
._5_c00282{width:6.293333pt;}
._0_c00282{width:7.466667pt;}
._11_c00282{width:8.554667pt;}
._c_c00282{width:10.560000pt;}
._e_c00282{width:11.658667pt;}
._12_c00282{width:12.842667pt;}
._17_c00282{width:14.069333pt;}
._1_c00282{width:15.040000pt;}
._1b_c00282{width:16.186667pt;}
._3_c00282{width:19.573333pt;}
._14_c00282{width:21.109333pt;}
._1c_c00282{width:22.597333pt;}
._19_c00282{width:23.637333pt;}
._15_c00282{width:26.133333pt;}
._18_c00282{width:117.802667pt;}
._1d_c00282{width:320.821333pt;}
._8_c00282{width:372.784000pt;}
._1a_c00282{width:513.514667pt;}
.fs4_c00282{font-size:42.666667pt;}
.fs1_c00282{font-size:48.000000pt;}
.fs0_c00282{font-size:53.333333pt;}
.fs3_c00282{font-size:61.333333pt;}
.fs2_c00282{font-size:64.000000pt;}
.y0_c00282{bottom:0.000000pt;}
.y1f_c00282{bottom:2.760000pt;}
.y1e_c00282{bottom:6.425204pt;}
.y1d_c00282{bottom:46.386667pt;}
.y1c_c00282{bottom:70.786667pt;}
.y1b_c00282{bottom:92.653333pt;}
.y1a_c00282{bottom:116.920000pt;}
.y19_c00282{bottom:139.986667pt;}
.y18_c00282{bottom:161.720000pt;}
.y17_c00282{bottom:183.853333pt;}
.y16_c00282{bottom:203.053333pt;}
.y15_c00282{bottom:227.986667pt;}
.y14_c00282{bottom:250.120000pt;}
.y13_c00282{bottom:270.786667pt;}
.y12_c00282{bottom:291.186667pt;}
.y11_c00282{bottom:311.720000pt;}
.y10_c00282{bottom:333.853333pt;}
.yf_c00282{bottom:355.986667pt;}
.ye_c00282{bottom:377.586667pt;}
.yd_c00282{bottom:399.586667pt;}
.yc_c00282{bottom:421.986667pt;}
.yb_c00282{bottom:443.586667pt;}
.ya_c00282{bottom:465.320000pt;}
.y9_c00282{bottom:487.453333pt;}
.y8_c00282{bottom:509.586667pt;}
.y7_c00282{bottom:531.186667pt;}
.y6_c00282{bottom:553.453333pt;}
.y5_c00282{bottom:574.786667pt;}
.y4_c00282{bottom:596.653333pt;}
.y3_c00282{bottom:618.786667pt;}
.y2_c00282{bottom:640.520000pt;}
.y1_c00282{bottom:662.920000pt;}
.h4_c00282{height:11.733399pt;}
.h5_c00282{height:38.937500pt;}
.h2_c00282{height:67.526042pt;}
.h3_c00282{height:81.031250pt;}
.h0_c00282{height:701.266667pt;}
.h1_c00282{height:701.333333pt;}
.w2_c00282{width:93.222667pt;}
.w1_c00282{width:472.666667pt;}
.w0_c00282{width:472.800000pt;}
.x0_c00282{left:0.000000pt;}
.xe_c00282{left:18.400000pt;}
.xd_c00282{left:20.666667pt;}
.xc_c00282{left:22.000000pt;}
.xb_c00282{left:23.200000pt;}
.xa_c00282{left:24.266667pt;}
.x9_c00282{left:25.200000pt;}
.x8_c00282{left:26.666667pt;}
.x7_c00282{left:28.533333pt;}
.x6_c00282{left:29.466667pt;}
.x5_c00282{left:30.666667pt;}
.x3_c00282{left:31.866667pt;}
.x4_c00282{left:32.800000pt;}
.x2_c00282{left:33.866667pt;}
.x1_c00282{left:160.800000pt;}
.x10_c00282{left:193.568237pt;}
.xf_c00282{left:223.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7077e2520dd5ad40ed010dbf.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.480469;font-style:normal;font-weight:normal;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_82eb782556b7f76e1c65861d.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00283;src:url('chunks/assets/font_02d8b801ad754985dab9db53.woff2')format("woff");}.ff3_c00283{font-family:ff3_c00283;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00283;src:url('chunks/assets/font_49a22a90591b8008e1bc9efb.woff2')format("woff");}.ff4_c00283{font-family:ff4_c00283;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00283;src:url('chunks/assets/font_9f751882472ac6e64dbe46b2.woff2')format("woff");}.ff5_c00283{font-family:ff5_c00283;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00283;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00283{font-family:ff6_c00283;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00283{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00283{vertical-align:0.000000px;}
.ls4_c00283{letter-spacing:-3.000000px;}
.ls1_c00283{letter-spacing:0.000000px;}
.ls3_c00283{letter-spacing:3.000000px;}
.ls0_c00283{letter-spacing:3.888000px;}
.ls2_c00283{letter-spacing:9.000000px;}
.sc__c00283{text-shadow:none;}
.sc0_c00283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00283{-webkit-text-stroke:0px transparent;}
.sc0_c00283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00283{word-spacing:-30.000000px;}
.ws0_c00283{word-spacing:-21.000000px;}
.ws3_c00283{word-spacing:-11.460000px;}
.ws4_c00283{word-spacing:0.000000px;}
.ws2_c00283{word-spacing:1.323000px;}
._14_c00283{margin-left:-18.009000px;}
._11_c00283{margin-left:-16.221000px;}
._e_c00283{margin-left:-14.166000px;}
._10_c00283{margin-left:-12.819000px;}
._12_c00283{margin-left:-11.541000px;}
._17_c00283{margin-left:-10.533000px;}
._d_c00283{margin-left:-9.426000px;}
._c_c00283{margin-left:-7.938000px;}
._8_c00283{margin-left:-6.081000px;}
._a_c00283{margin-left:-4.734000px;}
._6_c00283{margin-left:-3.066000px;}
._0_c00283{margin-left:-1.827000px;}
._2_c00283{width:1.947000px;}
._1_c00283{width:3.480000px;}
._3_c00283{width:4.944000px;}
._7_c00283{width:5.994000px;}
._4_c00283{width:7.131000px;}
._5_c00283{width:8.247000px;}
._b_c00283{width:9.690000px;}
._9_c00283{width:11.343000px;}
._f_c00283{width:12.996000px;}
._18_c00283{width:20.235000px;}
._15_c00283{width:33.324000px;}
._13_c00283{width:49.332000px;}
._16_c00283{width:366.798000px;}
.fc2_c00283{color:transparent;}
.fc1_c00283{color:rgb(128,128,128);}
.fc0_c00283{color:rgb(0,0,0);}
.fs6_c00283{font-size:48.000000px;}
.fs4_c00283{font-size:57.000000px;}
.fs5_c00283{font-size:60.000000px;}
.fs3_c00283{font-size:69.000000px;}
.fs1_c00283{font-size:81.000000px;}
.fs2_c00283{font-size:84.000000px;}
.fs0_c00283{font-size:87.000000px;}
.y0_c00283{bottom:0.000000px;}
.y1e_c00283{bottom:3.105000px;}
.y1d_c00283{bottom:7.228369px;}
.y1c_c00283{bottom:76.170000px;}
.y1b_c00283{bottom:100.920000px;}
.y1a_c00283{bottom:127.620000px;}
.y19_c00283{bottom:151.770000px;}
.y18_c00283{bottom:177.420000px;}
.y17_c00283{bottom:201.870000px;}
.y16_c00283{bottom:226.770000px;}
.y15_c00283{bottom:251.670000px;}
.y14_c00283{bottom:275.670000px;}
.y13_c00283{bottom:299.070000px;}
.y12_c00283{bottom:322.020000px;}
.y11_c00283{bottom:346.320000px;}
.y10_c00283{bottom:376.020000px;}
.yf_c00283{bottom:397.470000px;}
.ye_c00283{bottom:422.220000px;}
.yd_c00283{bottom:445.470000px;}
.yc_c00283{bottom:469.170000px;}
.yb_c00283{bottom:494.070000px;}
.ya_c00283{bottom:518.670000px;}
.y9_c00283{bottom:542.970000px;}
.y8_c00283{bottom:567.570000px;}
.y7_c00283{bottom:592.020000px;}
.y6_c00283{bottom:616.320000px;}
.y5_c00283{bottom:640.470000px;}
.y4_c00283{bottom:665.220000px;}
.y3_c00283{bottom:689.820000px;}
.y2_c00283{bottom:713.520000px;}
.y1_c00283{bottom:740.070000px;}
.h6_c00283{height:13.200073px;}
.h7_c00283{height:43.804688px;}
.h3_c00283{height:79.497070px;}
.h4_c00283{height:82.400391px;}
.h5_c00283{height:87.361816px;}
.h2_c00283{height:110.151855px;}
.h0_c00283{height:769.200000px;}
.h1_c00283{height:769.500000px;}
.w1_c00283{width:104.875500px;}
.w0_c00283{width:526.500000px;}
.x0_c00283{left:0.000000px;}
.x9_c00283{left:37.050000px;}
.x6_c00283{left:38.100000px;}
.x7_c00283{left:39.450000px;}
.x8_c00283{left:40.500000px;}
.x2_c00283{left:106.650000px;}
.x3_c00283{left:109.050000px;}
.x4_c00283{left:110.250000px;}
.x5_c00283{left:112.050000px;}
.xb_c00283{left:116.400000px;}
.xc_c00283{left:117.750000px;}
.xd_c00283{left:118.800000px;}
.xe_c00283{left:121.050000px;}
.xf_c00283{left:122.400000px;}
.x10_c00283{left:123.900000px;}
.x11_c00283{left:126.150000px;}
.x12_c00283{left:215.064240px;}
.x1_c00283{left:229.800000px;}
.xa_c00283{left:238.650000px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls4_c00283{letter-spacing:-2.666667pt;}
.ls1_c00283{letter-spacing:0.000000pt;}
.ls3_c00283{letter-spacing:2.666667pt;}
.ls0_c00283{letter-spacing:3.456000pt;}
.ls2_c00283{letter-spacing:8.000000pt;}
.ws1_c00283{word-spacing:-26.666667pt;}
.ws0_c00283{word-spacing:-18.666667pt;}
.ws3_c00283{word-spacing:-10.186667pt;}
.ws4_c00283{word-spacing:0.000000pt;}
.ws2_c00283{word-spacing:1.176000pt;}
._14_c00283{margin-left:-16.008000pt;}
._11_c00283{margin-left:-14.418667pt;}
._e_c00283{margin-left:-12.592000pt;}
._10_c00283{margin-left:-11.394667pt;}
._12_c00283{margin-left:-10.258667pt;}
._17_c00283{margin-left:-9.362667pt;}
._d_c00283{margin-left:-8.378667pt;}
._c_c00283{margin-left:-7.056000pt;}
._8_c00283{margin-left:-5.405333pt;}
._a_c00283{margin-left:-4.208000pt;}
._6_c00283{margin-left:-2.725333pt;}
._0_c00283{margin-left:-1.624000pt;}
._2_c00283{width:1.730667pt;}
._1_c00283{width:3.093333pt;}
._3_c00283{width:4.394667pt;}
._7_c00283{width:5.328000pt;}
._4_c00283{width:6.338667pt;}
._5_c00283{width:7.330667pt;}
._b_c00283{width:8.613333pt;}
._9_c00283{width:10.082667pt;}
._f_c00283{width:11.552000pt;}
._18_c00283{width:17.986667pt;}
._15_c00283{width:29.621333pt;}
._13_c00283{width:43.850667pt;}
._16_c00283{width:326.042667pt;}
.fs6_c00283{font-size:42.666667pt;}
.fs4_c00283{font-size:50.666667pt;}
.fs5_c00283{font-size:53.333333pt;}
.fs3_c00283{font-size:61.333333pt;}
.fs1_c00283{font-size:72.000000pt;}
.fs2_c00283{font-size:74.666667pt;}
.fs0_c00283{font-size:77.333333pt;}
.y0_c00283{bottom:0.000000pt;}
.y1e_c00283{bottom:2.760000pt;}
.y1d_c00283{bottom:6.425217pt;}
.y1c_c00283{bottom:67.706667pt;}
.y1b_c00283{bottom:89.706667pt;}
.y1a_c00283{bottom:113.440000pt;}
.y19_c00283{bottom:134.906667pt;}
.y18_c00283{bottom:157.706667pt;}
.y17_c00283{bottom:179.440000pt;}
.y16_c00283{bottom:201.573333pt;}
.y15_c00283{bottom:223.706667pt;}
.y14_c00283{bottom:245.040000pt;}
.y13_c00283{bottom:265.840000pt;}
.y12_c00283{bottom:286.240000pt;}
.y11_c00283{bottom:307.840000pt;}
.y10_c00283{bottom:334.240000pt;}
.yf_c00283{bottom:353.306667pt;}
.ye_c00283{bottom:375.306667pt;}
.yd_c00283{bottom:395.973333pt;}
.yc_c00283{bottom:417.040000pt;}
.yb_c00283{bottom:439.173333pt;}
.ya_c00283{bottom:461.040000pt;}
.y9_c00283{bottom:482.640000pt;}
.y8_c00283{bottom:504.506667pt;}
.y7_c00283{bottom:526.240000pt;}
.y6_c00283{bottom:547.840000pt;}
.y5_c00283{bottom:569.306667pt;}
.y4_c00283{bottom:591.306667pt;}
.y3_c00283{bottom:613.173333pt;}
.y2_c00283{bottom:634.240000pt;}
.y1_c00283{bottom:657.840000pt;}
.h6_c00283{height:11.733399pt;}
.h7_c00283{height:38.937500pt;}
.h3_c00283{height:70.664062pt;}
.h4_c00283{height:73.244792pt;}
.h5_c00283{height:77.654948pt;}
.h2_c00283{height:97.912760pt;}
.h0_c00283{height:683.733333pt;}
.h1_c00283{height:684.000000pt;}
.w1_c00283{width:93.222667pt;}
.w0_c00283{width:468.000000pt;}
.x0_c00283{left:0.000000pt;}
.x9_c00283{left:32.933333pt;}
.x6_c00283{left:33.866667pt;}
.x7_c00283{left:35.066667pt;}
.x8_c00283{left:36.000000pt;}
.x2_c00283{left:94.800000pt;}
.x3_c00283{left:96.933333pt;}
.x4_c00283{left:98.000000pt;}
.x5_c00283{left:99.600000pt;}
.xb_c00283{left:103.466667pt;}
.xc_c00283{left:104.666667pt;}
.xd_c00283{left:105.600000pt;}
.xe_c00283{left:107.600000pt;}
.xf_c00283{left:108.800000pt;}
.x10_c00283{left:110.133333pt;}
.x11_c00283{left:112.133333pt;}
.x12_c00283{left:191.168213pt;}
.x1_c00283{left:204.266667pt;}
.xa_c00283{left:212.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5a9d3bd59ecff6c58fb73a35.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00284;src:url('chunks/assets/font_d262bca5672363e59ce70555.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00284;src:url('chunks/assets/font_97630e79570c762edc3ca998.woff2')format("woff");}.ff3_c00284{font-family:ff3_c00284;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00284;src:url('chunks/assets/font_38f8fff00fb47cfad7fe2b8c.woff2')format("woff");}.ff4_c00284{font-family:ff4_c00284;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00284;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00284{font-family:ff5_c00284;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00284{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00284{vertical-align:0.000000px;}
.ls2_c00284{letter-spacing:0.000000px;}
.ls3_c00284{letter-spacing:3.000000px;}
.ls0_c00284{letter-spacing:6.600000px;}
.ls1_c00284{letter-spacing:7.800000px;}
.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:-42.000000px;}
.ws1_c00284{word-spacing:-20.250000px;}
.ws2_c00284{word-spacing:0.000000px;}
._12_c00284{margin-left:-19.821000px;}
._9_c00284{margin-left:-10.944000px;}
._6_c00284{margin-left:-7.035000px;}
._2_c00284{margin-left:-6.003000px;}
._3_c00284{margin-left:-4.800000px;}
._8_c00284{margin-left:-2.916000px;}
._7_c00284{margin-left:-1.458000px;}
._4_c00284{width:1.260000px;}
._5_c00284{width:2.940000px;}
._1_c00284{width:4.524000px;}
._b_c00284{width:5.664000px;}
._0_c00284{width:6.873000px;}
._a_c00284{width:8.100000px;}
._c_c00284{width:9.141000px;}
._f_c00284{width:11.340000px;}
._d_c00284{width:13.794000px;}
._e_c00284{width:15.903000px;}
._13_c00284{width:17.094000px;}
._14_c00284{width:23.571000px;}
._10_c00284{width:29.703000px;}
._15_c00284{width:35.316000px;}
._16_c00284{width:315.900000px;}
._11_c00284{width:943.884000px;}
.fc2_c00284{color:transparent;}
.fc1_c00284{color:rgb(128,128,128);}
.fc0_c00284{color:rgb(0,0,0);}
.fs5_c00284{font-size:48.000000px;}
.fs3_c00284{font-size:60.000000px;}
.fs4_c00284{font-size:72.000000px;}
.fs2_c00284{font-size:81.000000px;}
.fs1_c00284{font-size:84.000000px;}
.fs0_c00284{font-size:87.000000px;}
.y0_c00284{bottom:0.000000px;}
.y20_c00284{bottom:3.105000px;}
.y1e_c00284{bottom:4.830000px;}
.y1f_c00284{bottom:7.228357px;}
.y1d_c00284{bottom:38.880000px;}
.y1c_c00284{bottom:64.230000px;}
.y1b_c00284{bottom:89.730000px;}
.y1a_c00284{bottom:114.180000px;}
.y19_c00284{bottom:139.680000px;}
.y18_c00284{bottom:164.130000px;}
.y17_c00284{bottom:189.330000px;}
.y16_c00284{bottom:214.080000px;}
.y15_c00284{bottom:238.380000px;}
.y14_c00284{bottom:263.280000px;}
.y13_c00284{bottom:287.880000px;}
.y12_c00284{bottom:309.480000px;}
.y11_c00284{bottom:333.780000px;}
.y10_c00284{bottom:357.180000px;}
.yf_c00284{bottom:382.080000px;}
.ye_c00284{bottom:406.680000px;}
.yd_c00284{bottom:430.980000px;}
.yc_c00284{bottom:456.630000px;}
.yb_c00284{bottom:482.280000px;}
.ya_c00284{bottom:504.930000px;}
.y9_c00284{bottom:529.530000px;}
.y8_c00284{bottom:553.530000px;}
.y7_c00284{bottom:578.430000px;}
.y6_c00284{bottom:602.430000px;}
.y5_c00284{bottom:627.780000px;}
.y4_c00284{bottom:651.030000px;}
.y3_c00284{bottom:675.330000px;}
.y2_c00284{bottom:699.330000px;}
.y1_c00284{bottom:724.380000px;}
.h8_c00284{height:13.200074px;}
.h9_c00284{height:43.804688px;}
.h3_c00284{height:79.497070px;}
.h5_c00284{height:82.400391px;}
.h4_c00284{height:82.441406px;}
.h7_c00284{height:91.160156px;}
.h2_c00284{height:101.825684px;}
.h6_c00284{height:110.151855px;}
.h0_c00284{height:781.950000px;}
.h1_c00284{height:782.250000px;}
.w2_c00284{width:104.875500px;}
.w1_c00284{width:543.750000px;}
.w0_c00284{width:544.050000px;}
.x0_c00284{left:0.000000px;}
.x2_c00284{left:32.100000px;}
.x3_c00284{left:33.450000px;}
.x4_c00284{left:35.400000px;}
.x5_c00284{left:36.450000px;}
.x6_c00284{left:37.500000px;}
.x7_c00284{left:42.150000px;}
.x8_c00284{left:43.200000px;}
.xa_c00284{left:84.450000px;}
.x1_c00284{left:139.350000px;}
.xb_c00284{left:223.839249px;}
.x9_c00284{left:254.100000px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls2_c00284{letter-spacing:0.000000pt;}
.ls3_c00284{letter-spacing:2.666667pt;}
.ls0_c00284{letter-spacing:5.866667pt;}
.ls1_c00284{letter-spacing:6.933333pt;}
.ws0_c00284{word-spacing:-37.333333pt;}
.ws1_c00284{word-spacing:-18.000000pt;}
.ws2_c00284{word-spacing:0.000000pt;}
._12_c00284{margin-left:-17.618667pt;}
._9_c00284{margin-left:-9.728000pt;}
._6_c00284{margin-left:-6.253333pt;}
._2_c00284{margin-left:-5.336000pt;}
._3_c00284{margin-left:-4.266667pt;}
._8_c00284{margin-left:-2.592000pt;}
._7_c00284{margin-left:-1.296000pt;}
._4_c00284{width:1.120000pt;}
._5_c00284{width:2.613333pt;}
._1_c00284{width:4.021333pt;}
._b_c00284{width:5.034667pt;}
._0_c00284{width:6.109333pt;}
._a_c00284{width:7.200000pt;}
._c_c00284{width:8.125333pt;}
._f_c00284{width:10.080000pt;}
._d_c00284{width:12.261333pt;}
._e_c00284{width:14.136000pt;}
._13_c00284{width:15.194667pt;}
._14_c00284{width:20.952000pt;}
._10_c00284{width:26.402667pt;}
._15_c00284{width:31.392000pt;}
._16_c00284{width:280.800000pt;}
._11_c00284{width:839.008000pt;}
.fs5_c00284{font-size:42.666667pt;}
.fs3_c00284{font-size:53.333333pt;}
.fs4_c00284{font-size:64.000000pt;}
.fs2_c00284{font-size:72.000000pt;}
.fs1_c00284{font-size:74.666667pt;}
.fs0_c00284{font-size:77.333333pt;}
.y0_c00284{bottom:0.000000pt;}
.y20_c00284{bottom:2.760000pt;}
.y1e_c00284{bottom:4.293333pt;}
.y1f_c00284{bottom:6.425206pt;}
.y1d_c00284{bottom:34.560000pt;}
.y1c_c00284{bottom:57.093333pt;}
.y1b_c00284{bottom:79.760000pt;}
.y1a_c00284{bottom:101.493333pt;}
.y19_c00284{bottom:124.160000pt;}
.y18_c00284{bottom:145.893333pt;}
.y17_c00284{bottom:168.293333pt;}
.y16_c00284{bottom:190.293333pt;}
.y15_c00284{bottom:211.893333pt;}
.y14_c00284{bottom:234.026667pt;}
.y13_c00284{bottom:255.893333pt;}
.y12_c00284{bottom:275.093333pt;}
.y11_c00284{bottom:296.693333pt;}
.y10_c00284{bottom:317.493333pt;}
.yf_c00284{bottom:339.626667pt;}
.ye_c00284{bottom:361.493333pt;}
.yd_c00284{bottom:383.093333pt;}
.yc_c00284{bottom:405.893333pt;}
.yb_c00284{bottom:428.693333pt;}
.ya_c00284{bottom:448.826667pt;}
.y9_c00284{bottom:470.693333pt;}
.y8_c00284{bottom:492.026667pt;}
.y7_c00284{bottom:514.160000pt;}
.y6_c00284{bottom:535.493333pt;}
.y5_c00284{bottom:558.026667pt;}
.y4_c00284{bottom:578.693333pt;}
.y3_c00284{bottom:600.293333pt;}
.y2_c00284{bottom:621.626667pt;}
.y1_c00284{bottom:643.893333pt;}
.h8_c00284{height:11.733399pt;}
.h9_c00284{height:38.937500pt;}
.h3_c00284{height:70.664062pt;}
.h5_c00284{height:73.244792pt;}
.h4_c00284{height:73.281250pt;}
.h7_c00284{height:81.031250pt;}
.h2_c00284{height:90.511719pt;}
.h6_c00284{height:97.912760pt;}
.h0_c00284{height:695.066667pt;}
.h1_c00284{height:695.333333pt;}
.w2_c00284{width:93.222667pt;}
.w1_c00284{width:483.333333pt;}
.w0_c00284{width:483.600000pt;}
.x0_c00284{left:0.000000pt;}
.x2_c00284{left:28.533333pt;}
.x3_c00284{left:29.733333pt;}
.x4_c00284{left:31.466667pt;}
.x5_c00284{left:32.400000pt;}
.x6_c00284{left:33.333333pt;}
.x7_c00284{left:37.466667pt;}
.x8_c00284{left:38.400000pt;}
.xa_c00284{left:75.066667pt;}
.x1_c00284{left:123.866667pt;}
.xb_c00284{left:198.968221pt;}
.x9_c00284{left:225.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ffc10bcc6771832127e63420.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.568848;font-style:normal;font-weight:normal;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_6be04f9976617862be11dbee.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00285;src:url('chunks/assets/font_aba7b6b7f8d18d0b2e86d6b6.woff2')format("woff");}.ff3_c00285{font-family:ff3_c00285;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00285;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00285{font-family:ff4_c00285;line-height:1.219238;font-style: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;}
.ls4_c00285{letter-spacing:-3.000000px;}
.ls3_c00285{letter-spacing:0.000000px;}
.ls5_c00285{letter-spacing:3.000000px;}
.ls2_c00285{letter-spacing:6.000000px;}
.ls1_c00285{letter-spacing:14.400000px;}
.ls0_c00285{letter-spacing:20.400000px;}
.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;}
}
.ws3_c00285{word-spacing:-20.352000px;}
.ws0_c00285{word-spacing:-19.737000px;}
.ws1_c00285{word-spacing:-13.800000px;}
.ws4_c00285{word-spacing:0.000000px;}
.ws2_c00285{word-spacing:4.368000px;}
._17_c00285{margin-left:-13.203000px;}
._d_c00285{margin-left:-10.731000px;}
._4_c00285{margin-left:-9.537000px;}
._16_c00285{margin-left:-8.244000px;}
._10_c00285{margin-left:-6.057000px;}
._11_c00285{margin-left:-4.179000px;}
._e_c00285{margin-left:-2.436000px;}
._a_c00285{margin-left:-1.425000px;}
._c_c00285{width:1.260000px;}
._6_c00285{width:2.874000px;}
._1_c00285{width:4.845000px;}
._2_c00285{width:6.213000px;}
._0_c00285{width:7.809000px;}
._9_c00285{width:8.856000px;}
._3_c00285{width:10.182000px;}
._8_c00285{width:11.514000px;}
._f_c00285{width:12.624000px;}
._7_c00285{width:13.665000px;}
._13_c00285{width:15.618000px;}
._5_c00285{width:17.613000px;}
._15_c00285{width:18.954000px;}
._14_c00285{width:20.811000px;}
._b_c00285{width:25.260000px;}
._18_c00285{width:27.243000px;}
._12_c00285{width:40.755000px;}
.fc2_c00285{color:transparent;}
.fc1_c00285{color:rgb(128,128,128);}
.fc0_c00285{color:rgb(0,0,0);}
.fs4_c00285{font-size:48.000000px;}
.fs0_c00285{font-size:57.000000px;}
.fs1_c00285{font-size:60.000000px;}
.fs2_c00285{font-size:63.000000px;}
.fs3_c00285{font-size:72.000000px;}
.y0_c00285{bottom:0.000000px;}
.y1e_c00285{bottom:3.105000px;}
.y1d_c00285{bottom:7.228363px;}
.y1c_c00285{bottom:38.700000px;}
.y1b_c00285{bottom:62.700000px;}
.y1a_c00285{bottom:88.050000px;}
.y19_c00285{bottom:113.100000px;}
.y18_c00285{bottom:138.600000px;}
.y17_c00285{bottom:163.950000px;}
.y16_c00285{bottom:189.900000px;}
.y15_c00285{bottom:213.900000px;}
.y14_c00285{bottom:238.200000px;}
.y13_c00285{bottom:262.800000px;}
.y12_c00285{bottom:287.550000px;}
.y11_c00285{bottom:312.450000px;}
.y10_c00285{bottom:336.150000px;}
.yf_c00285{bottom:361.050000px;}
.ye_c00285{bottom:385.800000px;}
.yd_c00285{bottom:410.700000px;}
.yc_c00285{bottom:435.300000px;}
.yb_c00285{bottom:459.600000px;}
.ya_c00285{bottom:484.350000px;}
.y9_c00285{bottom:508.200000px;}
.y8_c00285{bottom:533.250000px;}
.y7_c00285{bottom:556.800000px;}
.y6_c00285{bottom:582.450000px;}
.y5_c00285{bottom:607.200000px;}
.y4_c00285{bottom:631.500000px;}
.y3_c00285{bottom:656.100000px;}
.y2_c00285{bottom:679.050000px;}
.y1_c00285{bottom:706.350000px;}
.h5_c00285{height:13.200074px;}
.h6_c00285{height:43.804688px;}
.h2_c00285{height:72.168457px;}
.h1_c00285{height:75.966797px;}
.h3_c00285{height:79.765137px;}
.h4_c00285{height:91.160156px;}
.h0_c00285{height:783.000000px;}
.w1_c00285{width:104.875500px;}
.w0_c00285{width:516.000000px;}
.x0_c00285{left:0.000000px;}
.x2_c00285{left:111.000000px;}
.x1_c00285{left:112.350000px;}
.x3_c00285{left:113.700000px;}
.x4_c00285{left:115.200000px;}
.x5_c00285{left:116.550000px;}
.x6_c00285{left:117.750000px;}
.x8_c00285{left:209.814240px;}
.x7_c00285{left:448.500000px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls4_c00285{letter-spacing:-2.666667pt;}
.ls3_c00285{letter-spacing:0.000000pt;}
.ls5_c00285{letter-spacing:2.666667pt;}
.ls2_c00285{letter-spacing:5.333333pt;}
.ls1_c00285{letter-spacing:12.800000pt;}
.ls0_c00285{letter-spacing:18.133333pt;}
.ws3_c00285{word-spacing:-18.090667pt;}
.ws0_c00285{word-spacing:-17.544000pt;}
.ws1_c00285{word-spacing:-12.266667pt;}
.ws4_c00285{word-spacing:0.000000pt;}
.ws2_c00285{word-spacing:3.882667pt;}
._17_c00285{margin-left:-11.736000pt;}
._d_c00285{margin-left:-9.538667pt;}
._4_c00285{margin-left:-8.477333pt;}
._16_c00285{margin-left:-7.328000pt;}
._10_c00285{margin-left:-5.384000pt;}
._11_c00285{margin-left:-3.714667pt;}
._e_c00285{margin-left:-2.165333pt;}
._a_c00285{margin-left:-1.266667pt;}
._c_c00285{width:1.120000pt;}
._6_c00285{width:2.554667pt;}
._1_c00285{width:4.306667pt;}
._2_c00285{width:5.522667pt;}
._0_c00285{width:6.941333pt;}
._9_c00285{width:7.872000pt;}
._3_c00285{width:9.050667pt;}
._8_c00285{width:10.234667pt;}
._f_c00285{width:11.221333pt;}
._7_c00285{width:12.146667pt;}
._13_c00285{width:13.882667pt;}
._5_c00285{width:15.656000pt;}
._15_c00285{width:16.848000pt;}
._14_c00285{width:18.498667pt;}
._b_c00285{width:22.453333pt;}
._18_c00285{width:24.216000pt;}
._12_c00285{width:36.226667pt;}
.fs4_c00285{font-size:42.666667pt;}
.fs0_c00285{font-size:50.666667pt;}
.fs1_c00285{font-size:53.333333pt;}
.fs2_c00285{font-size:56.000000pt;}
.fs3_c00285{font-size:64.000000pt;}
.y0_c00285{bottom:0.000000pt;}
.y1e_c00285{bottom:2.760000pt;}
.y1d_c00285{bottom:6.425212pt;}
.y1c_c00285{bottom:34.400000pt;}
.y1b_c00285{bottom:55.733333pt;}
.y1a_c00285{bottom:78.266667pt;}
.y19_c00285{bottom:100.533333pt;}
.y18_c00285{bottom:123.200000pt;}
.y17_c00285{bottom:145.733333pt;}
.y16_c00285{bottom:168.800000pt;}
.y15_c00285{bottom:190.133333pt;}
.y14_c00285{bottom:211.733333pt;}
.y13_c00285{bottom:233.600000pt;}
.y12_c00285{bottom:255.600000pt;}
.y11_c00285{bottom:277.733333pt;}
.y10_c00285{bottom:298.800000pt;}
.yf_c00285{bottom:320.933333pt;}
.ye_c00285{bottom:342.933333pt;}
.yd_c00285{bottom:365.066667pt;}
.yc_c00285{bottom:386.933333pt;}
.yb_c00285{bottom:408.533333pt;}
.ya_c00285{bottom:430.533333pt;}
.y9_c00285{bottom:451.733333pt;}
.y8_c00285{bottom:474.000000pt;}
.y7_c00285{bottom:494.933333pt;}
.y6_c00285{bottom:517.733333pt;}
.y5_c00285{bottom:539.733333pt;}
.y4_c00285{bottom:561.333333pt;}
.y3_c00285{bottom:583.200000pt;}
.y2_c00285{bottom:603.600000pt;}
.y1_c00285{bottom:627.866667pt;}
.h5_c00285{height:11.733399pt;}
.h6_c00285{height:38.937500pt;}
.h2_c00285{height:64.149740pt;}
.h1_c00285{height:67.526042pt;}
.h3_c00285{height:70.902344pt;}
.h4_c00285{height:81.031250pt;}
.h0_c00285{height:696.000000pt;}
.w1_c00285{width:93.222667pt;}
.w0_c00285{width:458.666667pt;}
.x0_c00285{left:0.000000pt;}
.x2_c00285{left:98.666667pt;}
.x1_c00285{left:99.866667pt;}
.x3_c00285{left:101.066667pt;}
.x4_c00285{left:102.400000pt;}
.x5_c00285{left:103.600000pt;}
.x6_c00285{left:104.666667pt;}
.x8_c00285{left:186.501546pt;}
.x7_c00285{left:398.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_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_ed135f3ab11f9b0d1f5421ad.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.480469;font-style:normal;font-weight:normal;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_f7e3ccf516b620e1e35bbcc4.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:1.219238;font-style: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;}
.ls1_c00286{letter-spacing:0.000000px;}
.ls0_c00286{letter-spacing:3.000000px;}
.sc__c00286{text-shadow:none;}
.sc0_c00286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00286{-webkit-text-stroke:0px transparent;}
.sc0_c00286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00286{word-spacing:-17.352000px;}
.ws1_c00286{word-spacing:0.000000px;}
._4_c00286{margin-left:-12.267000px;}
._15_c00286{margin-left:-10.893000px;}
._c_c00286{margin-left:-8.952000px;}
._7_c00286{margin-left:-7.200000px;}
._8_c00286{margin-left:-6.048000px;}
._16_c00286{margin-left:-4.884000px;}
._9_c00286{margin-left:-3.600000px;}
._a_c00286{margin-left:-2.232000px;}
._d_c00286{margin-left:-1.080000px;}
._5_c00286{width:1.044000px;}
._2_c00286{width:2.784000px;}
._b_c00286{width:3.864000px;}
._1_c00286{width:5.220000px;}
._3_c00286{width:6.264000px;}
._12_c00286{width:7.416000px;}
._0_c00286{width:8.613000px;}
._e_c00286{width:9.828000px;}
._10_c00286{width:11.088000px;}
._11_c00286{width:12.318000px;}
._f_c00286{width:13.488000px;}
._13_c00286{width:18.348000px;}
._14_c00286{width:22.419000px;}
._17_c00286{width:38.403000px;}
._6_c00286{width:319.644000px;}
._18_c00286{width:399.483000px;}
.fc2_c00286{color:transparent;}
.fc1_c00286{color:rgb(128,128,128);}
.fc0_c00286{color:rgb(0,0,0);}
.fs2_c00286{font-size:48.000000px;}
.fs1_c00286{font-size:72.000000px;}
.fs0_c00286{font-size:87.000000px;}
.y0_c00286{bottom:0.000000px;}
.y1e_c00286{bottom:3.105000px;}
.y1d_c00286{bottom:7.228357px;}
.y1c_c00286{bottom:49.380000px;}
.y1b_c00286{bottom:76.680000px;}
.y1a_c00286{bottom:102.030000px;}
.y19_c00286{bottom:127.230000px;}
.y18_c00286{bottom:151.980000px;}
.y17_c00286{bottom:176.880000px;}
.y16_c00286{bottom:201.930000px;}
.y15_c00286{bottom:226.230000px;}
.y14_c00286{bottom:251.130000px;}
.y13_c00286{bottom:276.180000px;}
.y12_c00286{bottom:321.630000px;}
.y11_c00286{bottom:345.630000px;}
.y10_c00286{bottom:370.980000px;}
.yf_c00286{bottom:394.830000px;}
.ye_c00286{bottom:419.580000px;}
.yd_c00286{bottom:443.880000px;}
.yc_c00286{bottom:468.180000px;}
.yb_c00286{bottom:493.380000px;}
.ya_c00286{bottom:517.380000px;}
.y9_c00286{bottom:541.680000px;}
.y8_c00286{bottom:565.980000px;}
.y7_c00286{bottom:590.580000px;}
.y6_c00286{bottom:615.330000px;}
.y5_c00286{bottom:639.180000px;}
.y4_c00286{bottom:664.230000px;}
.y3_c00286{bottom:688.530000px;}
.y2_c00286{bottom:712.530000px;}
.y1_c00286{bottom:738.480000px;}
.h3_c00286{height:13.200074px;}
.h4_c00286{height:43.804688px;}
.h2_c00286{height:91.160156px;}
.h1_c00286{height:110.151855px;}
.h0_c00286{height:779.250000px;}
.w2_c00286{width:104.875500px;}
.w0_c00286{width:535.950000px;}
.w1_c00286{width:536.250000px;}
.x0_c00286{left:0.000000px;}
.x7_c00286{left:31.050000px;}
.x8_c00286{left:32.700000px;}
.x9_c00286{left:33.750000px;}
.x6_c00286{left:34.800000px;}
.x5_c00286{left:35.850000px;}
.x4_c00286{left:36.900000px;}
.x3_c00286{left:38.100000px;}
.x2_c00286{left:39.450000px;}
.x1_c00286{left:161.100000px;}
.xb_c00286{left:219.789230px;}
.xa_c00286{left:244.950000px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls1_c00286{letter-spacing:0.000000pt;}
.ls0_c00286{letter-spacing:2.666667pt;}
.ws0_c00286{word-spacing:-15.424000pt;}
.ws1_c00286{word-spacing:0.000000pt;}
._4_c00286{margin-left:-10.904000pt;}
._15_c00286{margin-left:-9.682667pt;}
._c_c00286{margin-left:-7.957333pt;}
._7_c00286{margin-left:-6.400000pt;}
._8_c00286{margin-left:-5.376000pt;}
._16_c00286{margin-left:-4.341333pt;}
._9_c00286{margin-left:-3.200000pt;}
._a_c00286{margin-left:-1.984000pt;}
._d_c00286{margin-left:-0.960000pt;}
._5_c00286{width:0.928000pt;}
._2_c00286{width:2.474667pt;}
._b_c00286{width:3.434667pt;}
._1_c00286{width:4.640000pt;}
._3_c00286{width:5.568000pt;}
._12_c00286{width:6.592000pt;}
._0_c00286{width:7.656000pt;}
._e_c00286{width:8.736000pt;}
._10_c00286{width:9.856000pt;}
._11_c00286{width:10.949333pt;}
._f_c00286{width:11.989333pt;}
._13_c00286{width:16.309333pt;}
._14_c00286{width:19.928000pt;}
._17_c00286{width:34.136000pt;}
._6_c00286{width:284.128000pt;}
._18_c00286{width:355.096000pt;}
.fs2_c00286{font-size:42.666667pt;}
.fs1_c00286{font-size:64.000000pt;}
.fs0_c00286{font-size:77.333333pt;}
.y0_c00286{bottom:0.000000pt;}
.y1e_c00286{bottom:2.760000pt;}
.y1d_c00286{bottom:6.425206pt;}
.y1c_c00286{bottom:43.893333pt;}
.y1b_c00286{bottom:68.160000pt;}
.y1a_c00286{bottom:90.693333pt;}
.y19_c00286{bottom:113.093333pt;}
.y18_c00286{bottom:135.093333pt;}
.y17_c00286{bottom:157.226667pt;}
.y16_c00286{bottom:179.493333pt;}
.y15_c00286{bottom:201.093333pt;}
.y14_c00286{bottom:223.226667pt;}
.y13_c00286{bottom:245.493333pt;}
.y12_c00286{bottom:285.893333pt;}
.y11_c00286{bottom:307.226667pt;}
.y10_c00286{bottom:329.760000pt;}
.yf_c00286{bottom:350.960000pt;}
.ye_c00286{bottom:372.960000pt;}
.yd_c00286{bottom:394.560000pt;}
.yc_c00286{bottom:416.160000pt;}
.yb_c00286{bottom:438.560000pt;}
.ya_c00286{bottom:459.893333pt;}
.y9_c00286{bottom:481.493333pt;}
.y8_c00286{bottom:503.093333pt;}
.y7_c00286{bottom:524.960000pt;}
.y6_c00286{bottom:546.960000pt;}
.y5_c00286{bottom:568.160000pt;}
.y4_c00286{bottom:590.426667pt;}
.y3_c00286{bottom:612.026667pt;}
.y2_c00286{bottom:633.360000pt;}
.y1_c00286{bottom:656.426667pt;}
.h3_c00286{height:11.733399pt;}
.h4_c00286{height:38.937500pt;}
.h2_c00286{height:81.031250pt;}
.h1_c00286{height:97.912760pt;}
.h0_c00286{height:692.666667pt;}
.w2_c00286{width:93.222667pt;}
.w0_c00286{width:476.400000pt;}
.w1_c00286{width:476.666667pt;}
.x0_c00286{left:0.000000pt;}
.x7_c00286{left:27.600000pt;}
.x8_c00286{left:29.066667pt;}
.x9_c00286{left:30.000000pt;}
.x6_c00286{left:30.933333pt;}
.x5_c00286{left:31.866667pt;}
.x4_c00286{left:32.800000pt;}
.x3_c00286{left:33.866667pt;}
.x2_c00286{left:35.066667pt;}
.x1_c00286{left:143.200000pt;}
.xb_c00286{left:195.368205pt;}
.xa_c00286{left:217.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b3eea65f3858b7ed23051fdc.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00287;src:url('chunks/assets/font_221cbfd07420f5780e014310.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00287;src:url('chunks/assets/font_cebd84169333db0030d8227a.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00287{font-family:ff4_c00287;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00287{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00287{vertical-align:0.000000px;}
.ls1_c00287{letter-spacing:0.000000px;}
.ls0_c00287{letter-spacing:3.000000px;}
.sc__c00287{text-shadow:none;}
.sc0_c00287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00287{-webkit-text-stroke:0px transparent;}
.sc0_c00287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00287{word-spacing:-14.460000px;}
.ws1_c00287{word-spacing:0.000000px;}
._10_c00287{margin-left:-18.534000px;}
._14_c00287{margin-left:-13.482000px;}
._13_c00287{margin-left:-12.348000px;}
._d_c00287{margin-left:-10.512000px;}
._c_c00287{margin-left:-8.628000px;}
._b_c00287{margin-left:-7.410000px;}
._2_c00287{margin-left:-6.384000px;}
._8_c00287{margin-left:-4.680000px;}
._5_c00287{margin-left:-2.730000px;}
._9_c00287{margin-left:-1.422000px;}
._1_c00287{width:1.008000px;}
._0_c00287{width:2.016000px;}
._4_c00287{width:3.360000px;}
._7_c00287{width:4.470000px;}
._3_c00287{width:5.712000px;}
._e_c00287{width:6.738000px;}
._6_c00287{width:8.046000px;}
._a_c00287{width:9.384000px;}
._f_c00287{width:11.880000px;}
._15_c00287{width:13.128000px;}
._12_c00287{width:15.048000px;}
._11_c00287{width:17.562000px;}
.fc2_c00287{color:transparent;}
.fc1_c00287{color:rgb(128,128,128);}
.fc0_c00287{color:rgb(0,0,0);}
.fs4_c00287{font-size:48.000000px;}
.fs1_c00287{font-size:60.000000px;}
.fs3_c00287{font-size:72.000000px;}
.fs2_c00287{font-size:78.000000px;}
.fs0_c00287{font-size:84.000000px;}
.y0_c00287{bottom:0.000000px;}
.y20_c00287{bottom:3.105000px;}
.y1f_c00287{bottom:7.228363px;}
.y1e_c00287{bottom:61.350000px;}
.y1d_c00287{bottom:84.300000px;}
.y1c_c00287{bottom:110.250000px;}
.y1b_c00287{bottom:134.700000px;}
.y1a_c00287{bottom:160.200000px;}
.y19_c00287{bottom:184.650000px;}
.y18_c00287{bottom:209.550000px;}
.y17_c00287{bottom:234.450000px;}
.y16_c00287{bottom:258.750000px;}
.y15_c00287{bottom:282.750000px;}
.y14_c00287{bottom:307.500000px;}
.y13_c00287{bottom:330.750000px;}
.y12_c00287{bottom:355.050000px;}
.y11_c00287{bottom:379.650000px;}
.y10_c00287{bottom:404.700000px;}
.yf_c00287{bottom:428.550000px;}
.ye_c00287{bottom:452.250000px;}
.yd_c00287{bottom:476.550000px;}
.yc_c00287{bottom:500.850000px;}
.yb_c00287{bottom:525.150000px;}
.ya_c00287{bottom:549.150000px;}
.y9_c00287{bottom:573.450000px;}
.y8_c00287{bottom:598.350000px;}
.y7_c00287{bottom:621.000000px;}
.y6_c00287{bottom:646.050000px;}
.y5_c00287{bottom:671.400000px;}
.y4_c00287{bottom:696.000000px;}
.y3_c00287{bottom:718.500000px;}
.y2_c00287{bottom:720.000000px;}
.y1_c00287{bottom:745.500000px;}
.h7_c00287{height:13.200074px;}
.h8_c00287{height:43.804688px;}
.h3_c00287{height:58.886719px;}
.h6_c00287{height:75.966797px;}
.h4_c00287{height:76.552734px;}
.h2_c00287{height:82.400391px;}
.h5_c00287{height:91.160156px;}
.h1_c00287{height:780.000000px;}
.h0_c00287{height:780.300000px;}
.w2_c00287{width:104.875500px;}
.w0_c00287{width:511.950000px;}
.w1_c00287{width:512.250000px;}
.x0_c00287{left:0.000000px;}
.x2_c00287{left:92.100000px;}
.x3_c00287{left:93.150000px;}
.x5_c00287{left:94.500000px;}
.x6_c00287{left:96.150000px;}
.x7_c00287{left:97.200000px;}
.x8_c00287{left:98.250000px;}
.x9_c00287{left:99.450000px;}
.xa_c00287{left:100.950000px;}
.x4_c00287{left:104.250000px;}
.x1_c00287{left:206.100000px;}
.xc_c00287{left:207.789230px;}
.xb_c00287{left:450.600000px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls1_c00287{letter-spacing:0.000000pt;}
.ls0_c00287{letter-spacing:2.666667pt;}
.ws0_c00287{word-spacing:-12.853333pt;}
.ws1_c00287{word-spacing:0.000000pt;}
._10_c00287{margin-left:-16.474667pt;}
._14_c00287{margin-left:-11.984000pt;}
._13_c00287{margin-left:-10.976000pt;}
._d_c00287{margin-left:-9.344000pt;}
._c_c00287{margin-left:-7.669333pt;}
._b_c00287{margin-left:-6.586667pt;}
._2_c00287{margin-left:-5.674667pt;}
._8_c00287{margin-left:-4.160000pt;}
._5_c00287{margin-left:-2.426667pt;}
._9_c00287{margin-left:-1.264000pt;}
._1_c00287{width:0.896000pt;}
._0_c00287{width:1.792000pt;}
._4_c00287{width:2.986667pt;}
._7_c00287{width:3.973333pt;}
._3_c00287{width:5.077333pt;}
._e_c00287{width:5.989333pt;}
._6_c00287{width:7.152000pt;}
._a_c00287{width:8.341333pt;}
._f_c00287{width:10.560000pt;}
._15_c00287{width:11.669333pt;}
._12_c00287{width:13.376000pt;}
._11_c00287{width:15.610667pt;}
.fs4_c00287{font-size:42.666667pt;}
.fs1_c00287{font-size:53.333333pt;}
.fs3_c00287{font-size:64.000000pt;}
.fs2_c00287{font-size:69.333333pt;}
.fs0_c00287{font-size:74.666667pt;}
.y0_c00287{bottom:0.000000pt;}
.y20_c00287{bottom:2.760000pt;}
.y1f_c00287{bottom:6.425212pt;}
.y1e_c00287{bottom:54.533333pt;}
.y1d_c00287{bottom:74.933333pt;}
.y1c_c00287{bottom:98.000000pt;}
.y1b_c00287{bottom:119.733333pt;}
.y1a_c00287{bottom:142.400000pt;}
.y19_c00287{bottom:164.133333pt;}
.y18_c00287{bottom:186.266667pt;}
.y17_c00287{bottom:208.400000pt;}
.y16_c00287{bottom:230.000000pt;}
.y15_c00287{bottom:251.333333pt;}
.y14_c00287{bottom:273.333333pt;}
.y13_c00287{bottom:294.000000pt;}
.y12_c00287{bottom:315.600000pt;}
.y11_c00287{bottom:337.466667pt;}
.y10_c00287{bottom:359.733333pt;}
.yf_c00287{bottom:380.933333pt;}
.ye_c00287{bottom:402.000000pt;}
.yd_c00287{bottom:423.600000pt;}
.yc_c00287{bottom:445.200000pt;}
.yb_c00287{bottom:466.800000pt;}
.ya_c00287{bottom:488.133333pt;}
.y9_c00287{bottom:509.733333pt;}
.y8_c00287{bottom:531.866667pt;}
.y7_c00287{bottom:552.000000pt;}
.y6_c00287{bottom:574.266667pt;}
.y5_c00287{bottom:596.800000pt;}
.y4_c00287{bottom:618.666667pt;}
.y3_c00287{bottom:638.666667pt;}
.y2_c00287{bottom:640.000000pt;}
.y1_c00287{bottom:662.666667pt;}
.h7_c00287{height:11.733399pt;}
.h8_c00287{height:38.937500pt;}
.h3_c00287{height:52.343750pt;}
.h6_c00287{height:67.526042pt;}
.h4_c00287{height:68.046875pt;}
.h2_c00287{height:73.244792pt;}
.h5_c00287{height:81.031250pt;}
.h1_c00287{height:693.333333pt;}
.h0_c00287{height:693.600000pt;}
.w2_c00287{width:93.222667pt;}
.w0_c00287{width:455.066667pt;}
.w1_c00287{width:455.333333pt;}
.x0_c00287{left:0.000000pt;}
.x2_c00287{left:81.866667pt;}
.x3_c00287{left:82.800000pt;}
.x5_c00287{left:84.000000pt;}
.x6_c00287{left:85.466667pt;}
.x7_c00287{left:86.400000pt;}
.x8_c00287{left:87.333333pt;}
.x9_c00287{left:88.400000pt;}
.xa_c00287{left:89.733333pt;}
.x4_c00287{left:92.666667pt;}
.x1_c00287{left:183.200000pt;}
.xc_c00287{left:184.701538pt;}
.xb_c00287{left:400.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3439333169c1b988becc560d.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00288;src:url('chunks/assets/font_f413af5b8ab09c79525d2881.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00288{font-family:ff3_c00288;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00288{vertical-align:0.000000px;}
.ls0_c00288{letter-spacing:0.000000px;}
.ls1_c00288{letter-spacing:3.000000px;}
.sc__c00288{text-shadow:none;}
.sc0_c00288{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00288{-webkit-text-stroke:0px transparent;}
.sc0_c00288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00288{word-spacing:-12.291000px;}
.ws1_c00288{word-spacing:0.000000px;}
._18_c00288{margin-left:-15.696000px;}
._16_c00288{margin-left:-13.884000px;}
._15_c00288{margin-left:-10.584000px;}
._10_c00288{margin-left:-8.820000px;}
._f_c00288{margin-left:-6.948000px;}
._e_c00288{margin-left:-5.856000px;}
._2_c00288{margin-left:-4.788000px;}
._a_c00288{margin-left:-3.600000px;}
._b_c00288{margin-left:-2.520000px;}
._5_c00288{margin-left:-1.512000px;}
._3_c00288{width:1.260000px;}
._4_c00288{width:2.436000px;}
._d_c00288{width:3.504000px;}
._7_c00288{width:4.536000px;}
._6_c00288{width:6.552000px;}
._1_c00288{width:7.980000px;}
._c_c00288{width:9.732000px;}
._8_c00288{width:11.340000px;}
._0_c00288{width:12.852000px;}
._12_c00288{width:15.180000px;}
._11_c00288{width:16.368000px;}
._14_c00288{width:28.080000px;}
._13_c00288{width:29.268000px;}
._17_c00288{width:32.652000px;}
._9_c00288{width:218.316000px;}
._19_c00288{width:316.584000px;}
.fc2_c00288{color:transparent;}
.fc1_c00288{color:rgb(128,128,128);}
.fc0_c00288{color:rgb(0,0,0);}
.fs3_c00288{font-size:48.000000px;}
.fs2_c00288{font-size:51.000000px;}
.fs1_c00288{font-size:72.000000px;}
.fs0_c00288{font-size:84.000000px;}
.y0_c00288{bottom:0.000000px;}
.y20_c00288{bottom:3.105000px;}
.y1f_c00288{bottom:7.228363px;}
.y1e_c00288{bottom:55.650000px;}
.y1d_c00288{bottom:58.650000px;}
.y1c_c00288{bottom:85.800000px;}
.y1b_c00288{bottom:110.400000px;}
.y1a_c00288{bottom:135.900000px;}
.y19_c00288{bottom:160.650000px;}
.y18_c00288{bottom:185.700000px;}
.y17_c00288{bottom:210.150000px;}
.y16_c00288{bottom:235.200000px;}
.y15_c00288{bottom:259.950000px;}
.y14_c00288{bottom:284.850000px;}
.y13_c00288{bottom:308.100000px;}
.y12_c00288{bottom:330.150000px;}
.y11_c00288{bottom:354.000000px;}
.y10_c00288{bottom:378.450000px;}
.yf_c00288{bottom:402.900000px;}
.ye_c00288{bottom:427.050000px;}
.yd_c00288{bottom:451.500000px;}
.yc_c00288{bottom:475.650000px;}
.yb_c00288{bottom:499.950000px;}
.ya_c00288{bottom:524.550000px;}
.y9_c00288{bottom:549.000000px;}
.y8_c00288{bottom:573.150000px;}
.y7_c00288{bottom:598.050000px;}
.y6_c00288{bottom:621.750000px;}
.y5_c00288{bottom:646.350000px;}
.y4_c00288{bottom:670.650000px;}
.y3_c00288{bottom:694.950000px;}
.y2_c00288{bottom:718.950000px;}
.y1_c00288{bottom:744.150000px;}
.h5_c00288{height:13.200074px;}
.h6_c00288{height:43.804688px;}
.h4_c00288{height:64.571777px;}
.h2_c00288{height:82.400391px;}
.h3_c00288{height:91.160156px;}
.h1_c00288{height:788.250000px;}
.h0_c00288{height:788.400000px;}
.w2_c00288{width:104.875500px;}
.w1_c00288{width:531.750000px;}
.w0_c00288{width:531.900000px;}
.x0_c00288{left:0.000000px;}
.xa_c00288{left:28.350000px;}
.x2_c00288{left:36.150000px;}
.x3_c00288{left:37.350000px;}
.x4_c00288{left:38.850000px;}
.x5_c00288{left:40.050000px;}
.x6_c00288{left:41.100000px;}
.x7_c00288{left:42.750000px;}
.x8_c00288{left:46.200000px;}
.x1_c00288{left:158.250000px;}
.xb_c00288{left:217.764267px;}
.x9_c00288{left:266.400000px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls0_c00288{letter-spacing:0.000000pt;}
.ls1_c00288{letter-spacing:2.666667pt;}
.ws0_c00288{word-spacing:-10.925333pt;}
.ws1_c00288{word-spacing:0.000000pt;}
._18_c00288{margin-left:-13.952000pt;}
._16_c00288{margin-left:-12.341333pt;}
._15_c00288{margin-left:-9.408000pt;}
._10_c00288{margin-left:-7.840000pt;}
._f_c00288{margin-left:-6.176000pt;}
._e_c00288{margin-left:-5.205333pt;}
._2_c00288{margin-left:-4.256000pt;}
._a_c00288{margin-left:-3.200000pt;}
._b_c00288{margin-left:-2.240000pt;}
._5_c00288{margin-left:-1.344000pt;}
._3_c00288{width:1.120000pt;}
._4_c00288{width:2.165333pt;}
._d_c00288{width:3.114667pt;}
._7_c00288{width:4.032000pt;}
._6_c00288{width:5.824000pt;}
._1_c00288{width:7.093333pt;}
._c_c00288{width:8.650667pt;}
._8_c00288{width:10.080000pt;}
._0_c00288{width:11.424000pt;}
._12_c00288{width:13.493333pt;}
._11_c00288{width:14.549333pt;}
._14_c00288{width:24.960000pt;}
._13_c00288{width:26.016000pt;}
._17_c00288{width:29.024000pt;}
._9_c00288{width:194.058667pt;}
._19_c00288{width:281.408000pt;}
.fs3_c00288{font-size:42.666667pt;}
.fs2_c00288{font-size:45.333333pt;}
.fs1_c00288{font-size:64.000000pt;}
.fs0_c00288{font-size:74.666667pt;}
.y0_c00288{bottom:0.000000pt;}
.y20_c00288{bottom:2.760000pt;}
.y1f_c00288{bottom:6.425212pt;}
.y1e_c00288{bottom:49.466667pt;}
.y1d_c00288{bottom:52.133333pt;}
.y1c_c00288{bottom:76.266667pt;}
.y1b_c00288{bottom:98.133333pt;}
.y1a_c00288{bottom:120.800000pt;}
.y19_c00288{bottom:142.800000pt;}
.y18_c00288{bottom:165.066667pt;}
.y17_c00288{bottom:186.800000pt;}
.y16_c00288{bottom:209.066667pt;}
.y15_c00288{bottom:231.066667pt;}
.y14_c00288{bottom:253.200000pt;}
.y13_c00288{bottom:273.866667pt;}
.y12_c00288{bottom:293.466667pt;}
.y11_c00288{bottom:314.666667pt;}
.y10_c00288{bottom:336.400000pt;}
.yf_c00288{bottom:358.133333pt;}
.ye_c00288{bottom:379.600000pt;}
.yd_c00288{bottom:401.333333pt;}
.yc_c00288{bottom:422.800000pt;}
.yb_c00288{bottom:444.400000pt;}
.ya_c00288{bottom:466.266667pt;}
.y9_c00288{bottom:488.000000pt;}
.y8_c00288{bottom:509.466667pt;}
.y7_c00288{bottom:531.600000pt;}
.y6_c00288{bottom:552.666667pt;}
.y5_c00288{bottom:574.533333pt;}
.y4_c00288{bottom:596.133333pt;}
.y3_c00288{bottom:617.733333pt;}
.y2_c00288{bottom:639.066667pt;}
.y1_c00288{bottom:661.466667pt;}
.h5_c00288{height:11.733399pt;}
.h6_c00288{height:38.937500pt;}
.h4_c00288{height:57.397135pt;}
.h2_c00288{height:73.244792pt;}
.h3_c00288{height:81.031250pt;}
.h1_c00288{height:700.666667pt;}
.h0_c00288{height:700.800000pt;}
.w2_c00288{width:93.222667pt;}
.w1_c00288{width:472.666667pt;}
.w0_c00288{width:472.800000pt;}
.x0_c00288{left:0.000000pt;}
.xa_c00288{left:25.200000pt;}
.x2_c00288{left:32.133333pt;}
.x3_c00288{left:33.200000pt;}
.x4_c00288{left:34.533333pt;}
.x5_c00288{left:35.600000pt;}
.x6_c00288{left:36.533333pt;}
.x7_c00288{left:38.000000pt;}
.x8_c00288{left:41.066667pt;}
.x1_c00288{left:140.666667pt;}
.xb_c00288{left:193.568237pt;}
.x9_c00288{left:236.800000pt;}
}





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

.ir_c00289:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00289{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00289;src:url('chunks/assets/font_078856a9e1641c3834d39eea.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.480469;font-style:normal;font-weight:normal;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_16e6c4a49f162a1cdfe960a7.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00289{font-family:ff3_c00289;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00289{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00289{vertical-align:0.000000px;}
.ls1_c00289{letter-spacing:-9.000000px;}
.ls0_c00289{letter-spacing:0.000000px;}
.sc__c00289{text-shadow:none;}
.sc0_c00289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00289{-webkit-text-stroke:0px transparent;}
.sc0_c00289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00289{word-spacing:-20.967000px;}
.ws2_c00289{word-spacing:0.000000px;}
.ws0_c00289{word-spacing:8.034000px;}
._13_c00289{margin-left:-10.896000px;}
._12_c00289{margin-left:-8.079000px;}
._6_c00289{margin-left:-5.631000px;}
._10_c00289{margin-left:-3.897000px;}
._11_c00289{margin-left:-2.514000px;}
._8_c00289{margin-left:-1.356000px;}
._9_c00289{width:1.326000px;}
._3_c00289{width:2.400000px;}
._4_c00289{width:4.140000px;}
._5_c00289{width:5.700000px;}
._a_c00289{width:6.900000px;}
._1_c00289{width:7.980000px;}
._7_c00289{width:9.531000px;}
._c_c00289{width:10.668000px;}
._b_c00289{width:12.240000px;}
._d_c00289{width:14.118000px;}
._2_c00289{width:16.020000px;}
._e_c00289{width:18.699000px;}
._f_c00289{width:20.286000px;}
._0_c00289{width:21.360000px;}
._15_c00289{width:24.762000px;}
._14_c00289{width:175.965000px;}
.fc2_c00289{color:transparent;}
.fc1_c00289{color:rgb(128,128,128);}
.fc0_c00289{color:rgb(0,0,0);}
.fs3_c00289{font-size:48.000000px;}
.fs0_c00289{font-size:60.000000px;}
.fs1_c00289{font-size:69.000000px;}
.fs2_c00289{font-size:87.000000px;}
.y0_c00289{bottom:0.000000px;}
.y1f_c00289{bottom:3.105000px;}
.y1e_c00289{bottom:7.228363px;}
.y1d_c00289{bottom:57.150000px;}
.y1c_c00289{bottom:81.450000px;}
.y1b_c00289{bottom:107.100000px;}
.y1a_c00289{bottom:132.600000px;}
.y19_c00289{bottom:156.600000px;}
.y18_c00289{bottom:181.950000px;}
.y17_c00289{bottom:207.000000px;}
.y16_c00289{bottom:231.600000px;}
.y15_c00289{bottom:257.550000px;}
.y14_c00289{bottom:280.800000px;}
.y13_c00289{bottom:305.400000px;}
.y12_c00289{bottom:329.700000px;}
.y11_c00289{bottom:354.000000px;}
.y10_c00289{bottom:377.700000px;}
.yf_c00289{bottom:402.300000px;}
.ye_c00289{bottom:426.900000px;}
.yd_c00289{bottom:451.500000px;}
.yc_c00289{bottom:475.200000px;}
.yb_c00289{bottom:499.200000px;}
.ya_c00289{bottom:524.100000px;}
.y9_c00289{bottom:548.100000px;}
.y8_c00289{bottom:570.750000px;}
.y7_c00289{bottom:597.150000px;}
.y6_c00289{bottom:621.750000px;}
.y5_c00289{bottom:646.050000px;}
.y4_c00289{bottom:670.650000px;}
.y3_c00289{bottom:694.500000px;}
.y2_c00289{bottom:719.100000px;}
.y1_c00289{bottom:744.750000px;}
.h5_c00289{height:13.200074px;}
.h6_c00289{height:43.804688px;}
.h2_c00289{height:75.966797px;}
.h3_c00289{height:87.361816px;}
.h4_c00289{height:110.151855px;}
.h0_c00289{height:791.100000px;}
.h1_c00289{height:791.250000px;}
.w2_c00289{width:104.875500px;}
.w0_c00289{width:519.450000px;}
.w1_c00289{width:519.750000px;}
.x0_c00289{left:0.000000px;}
.x2_c00289{left:106.950000px;}
.x3_c00289{left:108.750000px;}
.x4_c00289{left:109.800000px;}
.x5_c00289{left:111.750000px;}
.x6_c00289{left:112.800000px;}
.x7_c00289{left:113.850000px;}
.x8_c00289{left:115.500000px;}
.x9_c00289{left:117.900000px;}
.xb_c00289{left:211.539230px;}
.x1_c00289{left:231.150000px;}
.xa_c00289{left:483.000000px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls1_c00289{letter-spacing:-8.000000pt;}
.ls0_c00289{letter-spacing:0.000000pt;}
.ws1_c00289{word-spacing:-18.637333pt;}
.ws2_c00289{word-spacing:0.000000pt;}
.ws0_c00289{word-spacing:7.141333pt;}
._13_c00289{margin-left:-9.685333pt;}
._12_c00289{margin-left:-7.181333pt;}
._6_c00289{margin-left:-5.005333pt;}
._10_c00289{margin-left:-3.464000pt;}
._11_c00289{margin-left:-2.234667pt;}
._8_c00289{margin-left:-1.205333pt;}
._9_c00289{width:1.178667pt;}
._3_c00289{width:2.133333pt;}
._4_c00289{width:3.680000pt;}
._5_c00289{width:5.066667pt;}
._a_c00289{width:6.133333pt;}
._1_c00289{width:7.093333pt;}
._7_c00289{width:8.472000pt;}
._c_c00289{width:9.482667pt;}
._b_c00289{width:10.880000pt;}
._d_c00289{width:12.549333pt;}
._2_c00289{width:14.240000pt;}
._e_c00289{width:16.621333pt;}
._f_c00289{width:18.032000pt;}
._0_c00289{width:18.986667pt;}
._15_c00289{width:22.010667pt;}
._14_c00289{width:156.413333pt;}
.fs3_c00289{font-size:42.666667pt;}
.fs0_c00289{font-size:53.333333pt;}
.fs1_c00289{font-size:61.333333pt;}
.fs2_c00289{font-size:77.333333pt;}
.y0_c00289{bottom:0.000000pt;}
.y1f_c00289{bottom:2.760000pt;}
.y1e_c00289{bottom:6.425212pt;}
.y1d_c00289{bottom:50.800000pt;}
.y1c_c00289{bottom:72.400000pt;}
.y1b_c00289{bottom:95.200000pt;}
.y1a_c00289{bottom:117.866667pt;}
.y19_c00289{bottom:139.200000pt;}
.y18_c00289{bottom:161.733333pt;}
.y17_c00289{bottom:184.000000pt;}
.y16_c00289{bottom:205.866667pt;}
.y15_c00289{bottom:228.933333pt;}
.y14_c00289{bottom:249.600000pt;}
.y13_c00289{bottom:271.466667pt;}
.y12_c00289{bottom:293.066667pt;}
.y11_c00289{bottom:314.666667pt;}
.y10_c00289{bottom:335.733333pt;}
.yf_c00289{bottom:357.600000pt;}
.ye_c00289{bottom:379.466667pt;}
.yd_c00289{bottom:401.333333pt;}
.yc_c00289{bottom:422.400000pt;}
.yb_c00289{bottom:443.733333pt;}
.ya_c00289{bottom:465.866667pt;}
.y9_c00289{bottom:487.200000pt;}
.y8_c00289{bottom:507.333333pt;}
.y7_c00289{bottom:530.800000pt;}
.y6_c00289{bottom:552.666667pt;}
.y5_c00289{bottom:574.266667pt;}
.y4_c00289{bottom:596.133333pt;}
.y3_c00289{bottom:617.333333pt;}
.y2_c00289{bottom:639.200000pt;}
.y1_c00289{bottom:662.000000pt;}
.h5_c00289{height:11.733399pt;}
.h6_c00289{height:38.937500pt;}
.h2_c00289{height:67.526042pt;}
.h3_c00289{height:77.654948pt;}
.h4_c00289{height:97.912760pt;}
.h0_c00289{height:703.200000pt;}
.h1_c00289{height:703.333333pt;}
.w2_c00289{width:93.222667pt;}
.w0_c00289{width:461.733333pt;}
.w1_c00289{width:462.000000pt;}
.x0_c00289{left:0.000000pt;}
.x2_c00289{left:95.066667pt;}
.x3_c00289{left:96.666667pt;}
.x4_c00289{left:97.600000pt;}
.x5_c00289{left:99.333333pt;}
.x6_c00289{left:100.266667pt;}
.x7_c00289{left:101.200000pt;}
.x8_c00289{left:102.666667pt;}
.x9_c00289{left:104.800000pt;}
.xb_c00289{left:188.034871pt;}
.x1_c00289{left:205.466667pt;}
.xa_c00289{left:429.333333pt;}
}





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

.ir_c00290:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00290{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00290;src:url('chunks/assets/font_879cff56c2bc8a4b42eb72ec.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.480469;font-style:normal;font-weight:normal;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_d4ac57e4e1a307101da1123b.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.568848;font-style:normal;font-weight:normal;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_4b274c153c6b57fc6638af6b.woff2')format("woff");}.ff3_c00290{font-family:ff3_c00290;line-height:1.575000;font-style:normal;font-weight:normal;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_3a10b7abbafd0d0e1f7f8a45.woff2')format("woff");}.ff4_c00290{font-family:ff4_c00290;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00290;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00290{font-family:ff5_c00290;line-height:1.219238;font-style: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;}
.ls3_c00290{letter-spacing:-6.000000px;}
.ls2_c00290{letter-spacing:0.000000px;}
.ls1_c00290{letter-spacing:3.000000px;}
.ls0_c00290{letter-spacing:9.588000px;}
.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:-24.051000px;}
.ws1_c00290{word-spacing:-17.352000px;}
.ws2_c00290{word-spacing:0.000000px;}
._1d_c00290{margin-left:-22.752000px;}
._18_c00290{margin-left:-21.120000px;}
._15_c00290{margin-left:-15.948000px;}
._14_c00290{margin-left:-13.248000px;}
._12_c00290{margin-left:-12.108000px;}
._11_c00290{margin-left:-10.944000px;}
._10_c00290{margin-left:-9.360000px;}
._c_c00290{margin-left:-7.632000px;}
._b_c00290{margin-left:-5.832000px;}
._a_c00290{margin-left:-4.752000px;}
._d_c00290{margin-left:-3.528000px;}
._f_c00290{margin-left:-2.088000px;}
._8_c00290{margin-left:-1.080000px;}
._13_c00290{width:1.008000px;}
._e_c00290{width:2.016000px;}
._19_c00290{width:3.024000px;}
._9_c00290{width:4.032000px;}
._0_c00290{width:5.616000px;}
._3_c00290{width:7.344000px;}
._1a_c00290{width:8.352000px;}
._2_c00290{width:9.576000px;}
._1_c00290{width:11.520000px;}
._4_c00290{width:12.528000px;}
._1b_c00290{width:14.616000px;}
._17_c00290{width:18.072000px;}
._16_c00290{width:21.528000px;}
._6_c00290{width:23.616000px;}
._7_c00290{width:35.568000px;}
._1e_c00290{width:37.800000px;}
._1f_c00290{width:285.696000px;}
._5_c00290{width:372.744000px;}
._1c_c00290{width:468.144000px;}
.fc2_c00290{color:transparent;}
.fc1_c00290{color:rgb(128,128,128);}
.fc0_c00290{color:rgb(0,0,0);}
.fs2_c00290{font-size:48.000000px;}
.fs1_c00290{font-size:63.000000px;}
.fs0_c00290{font-size:72.000000px;}
.y0_c00290{bottom:0.000000px;}
.y1f_c00290{bottom:3.105000px;}
.y1e_c00290{bottom:7.228369px;}
.y1d_c00290{bottom:47.220000px;}
.y1c_c00290{bottom:73.920000px;}
.y1b_c00290{bottom:98.520000px;}
.y1a_c00290{bottom:124.470000px;}
.y19_c00290{bottom:149.820000px;}
.y18_c00290{bottom:174.420000px;}
.y17_c00290{bottom:198.720000px;}
.y16_c00290{bottom:224.370000px;}
.y15_c00290{bottom:249.120000px;}
.y14_c00290{bottom:274.020000px;}
.y13_c00290{bottom:298.020000px;}
.y12_c00290{bottom:320.220000px;}
.y11_c00290{bottom:344.220000px;}
.y10_c00290{bottom:368.520000px;}
.yf_c00290{bottom:393.420000px;}
.ye_c00290{bottom:417.870000px;}
.yd_c00290{bottom:442.770000px;}
.yc_c00290{bottom:467.670000px;}
.yb_c00290{bottom:491.670000px;}
.ya_c00290{bottom:516.270000px;}
.y9_c00290{bottom:541.920000px;}
.y8_c00290{bottom:565.020000px;}
.y7_c00290{bottom:589.320000px;}
.y6_c00290{bottom:613.620000px;}
.y5_c00290{bottom:638.220000px;}
.y4_c00290{bottom:662.220000px;}
.y3_c00290{bottom:686.820000px;}
.y2_c00290{bottom:711.120000px;}
.y1_c00290{bottom:737.370000px;}
.h3_c00290{height:13.200073px;}
.h4_c00290{height:43.804688px;}
.h1_c00290{height:84.269531px;}
.h2_c00290{height:91.160156px;}
.h0_c00290{height:786.750000px;}
.w2_c00290{width:104.875500px;}
.w0_c00290{width:547.275000px;}
.w1_c00290{width:547.500000px;}
.x0_c00290{left:0.000000px;}
.x2_c00290{left:45.000000px;}
.x3_c00290{left:46.500000px;}
.x4_c00290{left:48.600000px;}
.x5_c00290{left:52.200000px;}
.x6_c00290{left:54.300000px;}
.x7_c00290{left:55.650000px;}
.x8_c00290{left:56.700000px;}
.x9_c00290{left:58.950000px;}
.x1_c00290{left:155.850000px;}
.xb_c00290{left:225.451767px;}
.xa_c00290{left:262.200000px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls3_c00290{letter-spacing:-5.333333pt;}
.ls2_c00290{letter-spacing:0.000000pt;}
.ls1_c00290{letter-spacing:2.666667pt;}
.ls0_c00290{letter-spacing:8.522667pt;}
.ws0_c00290{word-spacing:-21.378667pt;}
.ws1_c00290{word-spacing:-15.424000pt;}
.ws2_c00290{word-spacing:0.000000pt;}
._1d_c00290{margin-left:-20.224000pt;}
._18_c00290{margin-left:-18.773333pt;}
._15_c00290{margin-left:-14.176000pt;}
._14_c00290{margin-left:-11.776000pt;}
._12_c00290{margin-left:-10.762667pt;}
._11_c00290{margin-left:-9.728000pt;}
._10_c00290{margin-left:-8.320000pt;}
._c_c00290{margin-left:-6.784000pt;}
._b_c00290{margin-left:-5.184000pt;}
._a_c00290{margin-left:-4.224000pt;}
._d_c00290{margin-left:-3.136000pt;}
._f_c00290{margin-left:-1.856000pt;}
._8_c00290{margin-left:-0.960000pt;}
._13_c00290{width:0.896000pt;}
._e_c00290{width:1.792000pt;}
._19_c00290{width:2.688000pt;}
._9_c00290{width:3.584000pt;}
._0_c00290{width:4.992000pt;}
._3_c00290{width:6.528000pt;}
._1a_c00290{width:7.424000pt;}
._2_c00290{width:8.512000pt;}
._1_c00290{width:10.240000pt;}
._4_c00290{width:11.136000pt;}
._1b_c00290{width:12.992000pt;}
._17_c00290{width:16.064000pt;}
._16_c00290{width:19.136000pt;}
._6_c00290{width:20.992000pt;}
._7_c00290{width:31.616000pt;}
._1e_c00290{width:33.600000pt;}
._1f_c00290{width:253.952000pt;}
._5_c00290{width:331.328000pt;}
._1c_c00290{width:416.128000pt;}
.fs2_c00290{font-size:42.666667pt;}
.fs1_c00290{font-size:56.000000pt;}
.fs0_c00290{font-size:64.000000pt;}
.y0_c00290{bottom:0.000000pt;}
.y1f_c00290{bottom:2.760000pt;}
.y1e_c00290{bottom:6.425217pt;}
.y1d_c00290{bottom:41.973333pt;}
.y1c_c00290{bottom:65.706667pt;}
.y1b_c00290{bottom:87.573333pt;}
.y1a_c00290{bottom:110.640000pt;}
.y19_c00290{bottom:133.173333pt;}
.y18_c00290{bottom:155.040000pt;}
.y17_c00290{bottom:176.640000pt;}
.y16_c00290{bottom:199.440000pt;}
.y15_c00290{bottom:221.440000pt;}
.y14_c00290{bottom:243.573333pt;}
.y13_c00290{bottom:264.906667pt;}
.y12_c00290{bottom:284.640000pt;}
.y11_c00290{bottom:305.973333pt;}
.y10_c00290{bottom:327.573333pt;}
.yf_c00290{bottom:349.706667pt;}
.ye_c00290{bottom:371.440000pt;}
.yd_c00290{bottom:393.573333pt;}
.yc_c00290{bottom:415.706667pt;}
.yb_c00290{bottom:437.040000pt;}
.ya_c00290{bottom:458.906667pt;}
.y9_c00290{bottom:481.706667pt;}
.y8_c00290{bottom:502.240000pt;}
.y7_c00290{bottom:523.840000pt;}
.y6_c00290{bottom:545.440000pt;}
.y5_c00290{bottom:567.306667pt;}
.y4_c00290{bottom:588.640000pt;}
.y3_c00290{bottom:610.506667pt;}
.y2_c00290{bottom:632.106667pt;}
.y1_c00290{bottom:655.440000pt;}
.h3_c00290{height:11.733399pt;}
.h4_c00290{height:38.937500pt;}
.h1_c00290{height:74.906250pt;}
.h2_c00290{height:81.031250pt;}
.h0_c00290{height:699.333333pt;}
.w2_c00290{width:93.222667pt;}
.w0_c00290{width:486.466667pt;}
.w1_c00290{width:486.666667pt;}
.x0_c00290{left:0.000000pt;}
.x2_c00290{left:40.000000pt;}
.x3_c00290{left:41.333333pt;}
.x4_c00290{left:43.200000pt;}
.x5_c00290{left:46.400000pt;}
.x6_c00290{left:48.266667pt;}
.x7_c00290{left:49.466667pt;}
.x8_c00290{left:50.400000pt;}
.x9_c00290{left:52.400000pt;}
.x1_c00290{left:138.533333pt;}
.xb_c00290{left:200.401571pt;}
.xa_c00290{left:233.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d21299bbaaeb7d850bc65b0c.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00291;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00291;src:url('chunks/assets/font_d77f741440c11d5359452817.woff2')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:1.568848;font-style:normal;font-weight:normal;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_578bb67c94c6fdde58b3efe6.woff2')format("woff");}.ff4_c00291{font-family:ff4_c00291;line-height:1.568848;font-style:normal;font-weight:normal;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_ca101aeb8ab8dba98fef4809.woff2')format("woff");}.ff5_c00291{font-family:ff5_c00291;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00291{font-family:ff6_c00291;line-height:1.219238;font-style: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.000000px;}
.ls0_c00291{letter-spacing:3.000000px;}
.ls2_c00291{letter-spacing:6.000000px;}
.sc__c00291{text-shadow:none;}
.sc0_c00291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00291{-webkit-text-stroke:0px transparent;}
.sc0_c00291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00291{word-spacing:-43.488000px;}
.ws3_c00291{word-spacing:-34.790400px;}
.ws4_c00291{word-spacing:-33.192000px;}
.ws0_c00291{word-spacing:-21.906000px;}
.ws1_c00291{word-spacing:-20.352000px;}
.ws5_c00291{word-spacing:0.000000px;}
._4_c00291{margin-left:-8.988000px;}
._e_c00291{margin-left:-6.408000px;}
._9_c00291{margin-left:-4.752000px;}
._b_c00291{margin-left:-3.360000px;}
._a_c00291{margin-left:-2.088000px;}
._8_c00291{margin-left:-1.008000px;}
._7_c00291{width:1.872000px;}
._6_c00291{width:3.024000px;}
._5_c00291{width:4.788000px;}
._1_c00291{width:6.636000px;}
._c_c00291{width:7.728000px;}
._11_c00291{width:8.880000px;}
._3_c00291{width:10.080000px;}
._2_c00291{width:12.012000px;}
._f_c00291{width:14.460000px;}
._10_c00291{width:16.368000px;}
._0_c00291{width:17.388000px;}
._d_c00291{width:19.248000px;}
.fc2_c00291{color:transparent;}
.fc1_c00291{color:rgb(128,128,128);}
.fc0_c00291{color:rgb(0,0,0);}
.fs4_c00291{font-size:48.000000px;}
.fs3_c00291{font-size:57.600000px;}
.fs2_c00291{font-size:66.000000px;}
.fs1_c00291{font-size:72.000000px;}
.fs0_c00291{font-size:84.000000px;}
.y0_c00291{bottom:0.000000px;}
.y1f_c00291{bottom:3.105000px;}
.y1e_c00291{bottom:7.228355px;}
.y1d_c00291{bottom:68.535000px;}
.y1c_c00291{bottom:92.685000px;}
.y1b_c00291{bottom:116.985000px;}
.y1a_c00291{bottom:142.035000px;}
.y19_c00291{bottom:166.035000px;}
.y18_c00291{bottom:190.935000px;}
.y17_c00291{bottom:215.535000px;}
.y16_c00291{bottom:239.985000px;}
.y15_c00291{bottom:264.135000px;}
.y14_c00291{bottom:288.135000px;}
.y13_c00291{bottom:314.085000px;}
.y12_c00291{bottom:336.735000px;}
.y11_c00291{bottom:361.035000px;}
.y10_c00291{bottom:385.035000px;}
.yf_c00291{bottom:409.935000px;}
.ye_c00291{bottom:433.635000px;}
.yd_c00291{bottom:457.935000px;}
.yc_c00291{bottom:482.235000px;}
.yb_c00291{bottom:506.235000px;}
.ya_c00291{bottom:530.835000px;}
.y9_c00291{bottom:555.135000px;}
.y8_c00291{bottom:578.685000px;}
.y7_c00291{bottom:603.435000px;}
.y6_c00291{bottom:628.035000px;}
.y5_c00291{bottom:652.035000px;}
.y4_c00291{bottom:676.335000px;}
.y3_c00291{bottom:700.635000px;}
.y2_c00291{bottom:725.235000px;}
.y1_c00291{bottom:750.285000px;}
.h4_c00291{height:13.200074px;}
.h5_c00291{height:43.804688px;}
.h2_c00291{height:82.441406px;}
.h3_c00291{height:91.160156px;}
.h0_c00291{height:791.625000px;}
.h1_c00291{height:792.000000px;}
.w2_c00291{width:104.875500px;}
.w1_c00291{width:520.500000px;}
.w0_c00291{width:520.575000px;}
.x0_c00291{left:0.000000px;}
.x2_c00291{left:100.950000px;}
.x3_c00291{left:102.150000px;}
.x4_c00291{left:103.650000px;}
.x5_c00291{left:105.300000px;}
.x7_c00291{left:212.101730px;}
.x1_c00291{left:222.450000px;}
.x6_c00291{left:425.250000px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls1_c00291{letter-spacing:0.000000pt;}
.ls0_c00291{letter-spacing:2.666667pt;}
.ls2_c00291{letter-spacing:5.333333pt;}
.ws2_c00291{word-spacing:-38.656000pt;}
.ws3_c00291{word-spacing:-30.924800pt;}
.ws4_c00291{word-spacing:-29.504000pt;}
.ws0_c00291{word-spacing:-19.472000pt;}
.ws1_c00291{word-spacing:-18.090667pt;}
.ws5_c00291{word-spacing:0.000000pt;}
._4_c00291{margin-left:-7.989333pt;}
._e_c00291{margin-left:-5.696000pt;}
._9_c00291{margin-left:-4.224000pt;}
._b_c00291{margin-left:-2.986667pt;}
._a_c00291{margin-left:-1.856000pt;}
._8_c00291{margin-left:-0.896000pt;}
._7_c00291{width:1.664000pt;}
._6_c00291{width:2.688000pt;}
._5_c00291{width:4.256000pt;}
._1_c00291{width:5.898667pt;}
._c_c00291{width:6.869333pt;}
._11_c00291{width:7.893333pt;}
._3_c00291{width:8.960000pt;}
._2_c00291{width:10.677333pt;}
._f_c00291{width:12.853333pt;}
._10_c00291{width:14.549333pt;}
._0_c00291{width:15.456000pt;}
._d_c00291{width:17.109333pt;}
.fs4_c00291{font-size:42.666667pt;}
.fs3_c00291{font-size:51.200000pt;}
.fs2_c00291{font-size:58.666667pt;}
.fs1_c00291{font-size:64.000000pt;}
.fs0_c00291{font-size:74.666667pt;}
.y0_c00291{bottom:0.000000pt;}
.y1f_c00291{bottom:2.760000pt;}
.y1e_c00291{bottom:6.425204pt;}
.y1d_c00291{bottom:60.920000pt;}
.y1c_c00291{bottom:82.386667pt;}
.y1b_c00291{bottom:103.986667pt;}
.y1a_c00291{bottom:126.253333pt;}
.y19_c00291{bottom:147.586667pt;}
.y18_c00291{bottom:169.720000pt;}
.y17_c00291{bottom:191.586667pt;}
.y16_c00291{bottom:213.320000pt;}
.y15_c00291{bottom:234.786667pt;}
.y14_c00291{bottom:256.120000pt;}
.y13_c00291{bottom:279.186667pt;}
.y12_c00291{bottom:299.320000pt;}
.y11_c00291{bottom:320.920000pt;}
.y10_c00291{bottom:342.253333pt;}
.yf_c00291{bottom:364.386667pt;}
.ye_c00291{bottom:385.453333pt;}
.yd_c00291{bottom:407.053333pt;}
.yc_c00291{bottom:428.653333pt;}
.yb_c00291{bottom:449.986667pt;}
.ya_c00291{bottom:471.853333pt;}
.y9_c00291{bottom:493.453333pt;}
.y8_c00291{bottom:514.386667pt;}
.y7_c00291{bottom:536.386667pt;}
.y6_c00291{bottom:558.253333pt;}
.y5_c00291{bottom:579.586667pt;}
.y4_c00291{bottom:601.186667pt;}
.y3_c00291{bottom:622.786667pt;}
.y2_c00291{bottom:644.653333pt;}
.y1_c00291{bottom:666.920000pt;}
.h4_c00291{height:11.733399pt;}
.h5_c00291{height:38.937500pt;}
.h2_c00291{height:73.281250pt;}
.h3_c00291{height:81.031250pt;}
.h0_c00291{height:703.666667pt;}
.h1_c00291{height:704.000000pt;}
.w2_c00291{width:93.222667pt;}
.w1_c00291{width:462.666667pt;}
.w0_c00291{width:462.733333pt;}
.x0_c00291{left:0.000000pt;}
.x2_c00291{left:89.733333pt;}
.x3_c00291{left:90.800000pt;}
.x4_c00291{left:92.133333pt;}
.x5_c00291{left:93.600000pt;}
.x7_c00291{left:188.534871pt;}
.x1_c00291{left:197.733333pt;}
.x6_c00291{left:378.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_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_b49983e638a126c08e8cf1a0.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.568848;font-style:normal;font-weight:normal;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_fe1485b16e64d67c04b761ea.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:1.480469;font-style:normal;font-weight:normal;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_3595802e9fe487deccc5bb74.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;line-height:1.568848;font-style:normal;font-weight:normal;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_7aa74c8f3fb62def0042ac3e.woff2')format("woff");}.ff4_c00292{font-family:ff4_c00292;line-height:1.575000;font-style:normal;font-weight:normal;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_4c0bab56035bfed350b231e8.woff2')format("woff");}.ff5_c00292{font-family:ff5_c00292;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00292;src:url('chunks/assets/font_6927947a5690ad77b93eb1c3.woff2')format("woff");}.ff6_c00292{font-family:ff6_c00292;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00292;src:url('chunks/assets/font_ba572fea441269b019582005.woff2')format("woff");}.ff7_c00292{font-family:ff7_c00292;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00292;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff8_c00292{font-family:ff8_c00292;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00292{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00292{vertical-align:0.000000px;}
.ls3_c00292{letter-spacing:-9.000000px;}
.ls4_c00292{letter-spacing:0.000000px;}
.ls5_c00292{letter-spacing:3.000000px;}
.ls0_c00292{letter-spacing:11.388000px;}
.ls6_c00292{letter-spacing:15.000000px;}
.ls1_c00292{letter-spacing:17.802000px;}
.ls2_c00292{letter-spacing:71.985000px;}
.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;}
}
.ws3_c00292{word-spacing:-88.500000px;}
.ws4_c00292{word-spacing:-42.000000px;}
.ws0_c00292{word-spacing:-20.352000px;}
.ws2_c00292{word-spacing:-19.521000px;}
.ws1_c00292{word-spacing:-14.460000px;}
.ws5_c00292{word-spacing:0.000000px;}
._1a_c00292{margin-left:-55.500000px;}
._17_c00292{margin-left:-18.207000px;}
._16_c00292{margin-left:-15.726000px;}
._e_c00292{margin-left:-13.896000px;}
._14_c00292{margin-left:-12.792000px;}
._c_c00292{margin-left:-11.520000px;}
._b_c00292{margin-left:-9.456000px;}
._f_c00292{margin-left:-8.280000px;}
._d_c00292{margin-left:-6.984000px;}
._3_c00292{margin-left:-5.133000px;}
._9_c00292{margin-left:-3.834000px;}
._4_c00292{margin-left:-2.262000px;}
._10_c00292{margin-left:-1.005000px;}
._11_c00292{width:1.080000px;}
._6_c00292{width:2.187000px;}
._5_c00292{width:4.008000px;}
._0_c00292{width:5.049000px;}
._2_c00292{width:7.047000px;}
._12_c00292{width:8.397000px;}
._13_c00292{width:9.819000px;}
._1_c00292{width:11.664000px;}
._a_c00292{width:13.914000px;}
._8_c00292{width:17.010000px;}
._15_c00292{width:31.473000px;}
._19_c00292{width:63.390000px;}
._18_c00292{width:309.891000px;}
._7_c00292{width:323.193000px;}
._1b_c00292{width:745.857000px;}
.fc2_c00292{color:transparent;}
.fc1_c00292{color:rgb(128,128,128);}
.fc0_c00292{color:rgb(0,0,0);}
.fs9_c00292{font-size:48.000000px;}
.fs4_c00292{font-size:60.000000px;}
.fs0_c00292{font-size:63.000000px;}
.fs8_c00292{font-size:69.000000px;}
.fs3_c00292{font-size:72.000000px;}
.fs5_c00292{font-size:78.000000px;}
.fs1_c00292{font-size:81.000000px;}
.fs7_c00292{font-size:84.000000px;}
.fs2_c00292{font-size:87.000000px;}
.fs6_c00292{font-size:177.000000px;}
.y0_c00292{bottom:0.000000px;}
.y1b_c00292{bottom:3.105000px;}
.y1a_c00292{bottom:7.228371px;}
.y19_c00292{bottom:41.865000px;}
.y18_c00292{bottom:71.265000px;}
.y17_c00292{bottom:125.565000px;}
.y16_c00292{bottom:148.515000px;}
.y15_c00292{bottom:173.865000px;}
.y14_c00292{bottom:198.915000px;}
.y13_c00292{bottom:252.165000px;}
.y12_c00292{bottom:279.915000px;}
.y11_c00292{bottom:306.765000px;}
.y10_c00292{bottom:329.415000px;}
.yf_c00292{bottom:358.215000px;}
.ye_c00292{bottom:384.465000px;}
.yd_c00292{bottom:439.815000px;}
.yc_c00292{bottom:464.715000px;}
.yb_c00292{bottom:489.165000px;}
.ya_c00292{bottom:513.315000px;}
.y9_c00292{bottom:536.715000px;}
.y8_c00292{bottom:561.615000px;}
.y7_c00292{bottom:586.215000px;}
.y6_c00292{bottom:610.515000px;}
.y5_c00292{bottom:634.815000px;}
.y4_c00292{bottom:658.815000px;}
.y3_c00292{bottom:683.565000px;}
.y2_c00292{bottom:707.865000px;}
.y1_c00292{bottom:732.165000px;}
.hb_c00292{height:13.200074px;}
.hc_c00292{height:43.804688px;}
.h8_c00292{height:79.497070px;}
.ha_c00292{height:84.269531px;}
.h9_c00292{height:87.361816px;}
.h3_c00292{height:91.160156px;}
.h5_c00292{height:94.803223px;}
.h4_c00292{height:98.756836px;}
.h2_c00292{height:101.825684px;}
.h7_c00292{height:102.555176px;}
.h6_c00292{height:173.629395px;}
.h0_c00292{height:779.775000px;}
.h1_c00292{height:780.000000px;}
.w2_c00292{width:104.875500px;}
.w0_c00292{width:545.100000px;}
.w1_c00292{width:545.250000px;}
.x0_c00292{left:0.000000px;}
.x2_c00292{left:20.850000px;}
.x3_c00292{left:21.900000px;}
.x4_c00292{left:23.250000px;}
.x5_c00292{left:25.200000px;}
.x6_c00292{left:26.250000px;}
.x7_c00292{left:27.600000px;}
.x8_c00292{left:28.950000px;}
.x9_c00292{left:30.000000px;}
.xa_c00292{left:57.450000px;}
.x1_c00292{left:133.800000px;}
.xc_c00292{left:224.364258px;}
.xb_c00292{left:353.400000px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls3_c00292{letter-spacing:-8.000000pt;}
.ls4_c00292{letter-spacing:0.000000pt;}
.ls5_c00292{letter-spacing:2.666667pt;}
.ls0_c00292{letter-spacing:10.122667pt;}
.ls6_c00292{letter-spacing:13.333333pt;}
.ls1_c00292{letter-spacing:15.824000pt;}
.ls2_c00292{letter-spacing:63.986667pt;}
.ws3_c00292{word-spacing:-78.666667pt;}
.ws4_c00292{word-spacing:-37.333333pt;}
.ws0_c00292{word-spacing:-18.090667pt;}
.ws2_c00292{word-spacing:-17.352000pt;}
.ws1_c00292{word-spacing:-12.853333pt;}
.ws5_c00292{word-spacing:0.000000pt;}
._1a_c00292{margin-left:-49.333333pt;}
._17_c00292{margin-left:-16.184000pt;}
._16_c00292{margin-left:-13.978667pt;}
._e_c00292{margin-left:-12.352000pt;}
._14_c00292{margin-left:-11.370667pt;}
._c_c00292{margin-left:-10.240000pt;}
._b_c00292{margin-left:-8.405333pt;}
._f_c00292{margin-left:-7.360000pt;}
._d_c00292{margin-left:-6.208000pt;}
._3_c00292{margin-left:-4.562667pt;}
._9_c00292{margin-left:-3.408000pt;}
._4_c00292{margin-left:-2.010667pt;}
._10_c00292{margin-left:-0.893333pt;}
._11_c00292{width:0.960000pt;}
._6_c00292{width:1.944000pt;}
._5_c00292{width:3.562667pt;}
._0_c00292{width:4.488000pt;}
._2_c00292{width:6.264000pt;}
._12_c00292{width:7.464000pt;}
._13_c00292{width:8.728000pt;}
._1_c00292{width:10.368000pt;}
._a_c00292{width:12.368000pt;}
._8_c00292{width:15.120000pt;}
._15_c00292{width:27.976000pt;}
._19_c00292{width:56.346667pt;}
._18_c00292{width:275.458667pt;}
._7_c00292{width:287.282667pt;}
._1b_c00292{width:662.984000pt;}
.fs9_c00292{font-size:42.666667pt;}
.fs4_c00292{font-size:53.333333pt;}
.fs0_c00292{font-size:56.000000pt;}
.fs8_c00292{font-size:61.333333pt;}
.fs3_c00292{font-size:64.000000pt;}
.fs5_c00292{font-size:69.333333pt;}
.fs1_c00292{font-size:72.000000pt;}
.fs7_c00292{font-size:74.666667pt;}
.fs2_c00292{font-size:77.333333pt;}
.fs6_c00292{font-size:157.333333pt;}
.y0_c00292{bottom:0.000000pt;}
.y1b_c00292{bottom:2.760000pt;}
.y1a_c00292{bottom:6.425219pt;}
.y19_c00292{bottom:37.213333pt;}
.y18_c00292{bottom:63.346667pt;}
.y17_c00292{bottom:111.613333pt;}
.y16_c00292{bottom:132.013333pt;}
.y15_c00292{bottom:154.546667pt;}
.y14_c00292{bottom:176.813333pt;}
.y13_c00292{bottom:224.146667pt;}
.y12_c00292{bottom:248.813333pt;}
.y11_c00292{bottom:272.680000pt;}
.y10_c00292{bottom:292.813333pt;}
.yf_c00292{bottom:318.413333pt;}
.ye_c00292{bottom:341.746667pt;}
.yd_c00292{bottom:390.946667pt;}
.yc_c00292{bottom:413.080000pt;}
.yb_c00292{bottom:434.813333pt;}
.ya_c00292{bottom:456.280000pt;}
.y9_c00292{bottom:477.080000pt;}
.y8_c00292{bottom:499.213333pt;}
.y7_c00292{bottom:521.080000pt;}
.y6_c00292{bottom:542.680000pt;}
.y5_c00292{bottom:564.280000pt;}
.y4_c00292{bottom:585.613333pt;}
.y3_c00292{bottom:607.613333pt;}
.y2_c00292{bottom:629.213333pt;}
.y1_c00292{bottom:650.813333pt;}
.hb_c00292{height:11.733399pt;}
.hc_c00292{height:38.937500pt;}
.h8_c00292{height:70.664062pt;}
.ha_c00292{height:74.906250pt;}
.h9_c00292{height:77.654948pt;}
.h3_c00292{height:81.031250pt;}
.h5_c00292{height:84.269531pt;}
.h4_c00292{height:87.783854pt;}
.h2_c00292{height:90.511719pt;}
.h7_c00292{height:91.160156pt;}
.h6_c00292{height:154.337240pt;}
.h0_c00292{height:693.133333pt;}
.h1_c00292{height:693.333333pt;}
.w2_c00292{width:93.222667pt;}
.w0_c00292{width:484.533333pt;}
.w1_c00292{width:484.666667pt;}
.x0_c00292{left:0.000000pt;}
.x2_c00292{left:18.533333pt;}
.x3_c00292{left:19.466667pt;}
.x4_c00292{left:20.666667pt;}
.x5_c00292{left:22.400000pt;}
.x6_c00292{left:23.333333pt;}
.x7_c00292{left:24.533333pt;}
.x8_c00292{left:25.733333pt;}
.x9_c00292{left:26.666667pt;}
.xa_c00292{left:51.066667pt;}
.x1_c00292{left:118.933333pt;}
.xc_c00292{left:199.434896pt;}
.xb_c00292{left:314.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7519fb4e7d844e809219704d.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.480469;font-style:normal;font-weight:normal;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_5af1e4a14de4131d3df5c7d9.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:1.568848;font-style:normal;font-weight:normal;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_469cdfc8e7e3efe11cab6741.woff2')format("woff");}.ff3_c00293{font-family:ff3_c00293;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00293;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00293{font-family:ff4_c00293;line-height:1.219238;font-style: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;}
.ls4_c00293{letter-spacing:-9.000000px;}
.ls2_c00293{letter-spacing:-6.000000px;}
.ls0_c00293{letter-spacing:0.000000px;}
.ls3_c00293{letter-spacing:3.000000px;}
.ls5_c00293{letter-spacing:6.000000px;}
.ls1_c00293{letter-spacing:9.000000px;}
.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:-29.967000px;}
.ws4_c00293{word-spacing:-20.250000px;}
.ws2_c00293{word-spacing:-16.629000px;}
.ws1_c00293{word-spacing:-10.629000px;}
.ws5_c00293{word-spacing:0.000000px;}
.ws3_c00293{word-spacing:8.586000px;}
._e_c00293{margin-left:-20.445000px;}
._11_c00293{margin-left:-19.332000px;}
._12_c00293{margin-left:-17.748000px;}
._d_c00293{margin-left:-14.877000px;}
._15_c00293{margin-left:-13.485000px;}
._f_c00293{margin-left:-11.091000px;}
._2_c00293{margin-left:-9.483000px;}
._9_c00293{margin-left:-8.091000px;}
._b_c00293{margin-left:-7.047000px;}
._a_c00293{margin-left:-5.568000px;}
._c_c00293{margin-left:-4.176000px;}
._8_c00293{margin-left:-2.871000px;}
._3_c00293{margin-left:-1.740000px;}
._1_c00293{width:1.479000px;}
._0_c00293{width:3.393000px;}
._6_c00293{width:4.611000px;}
._4_c00293{width:6.003000px;}
._7_c00293{width:7.308000px;}
._5_c00293{width:8.874000px;}
._14_c00293{width:10.266000px;}
._19_c00293{width:11.454000px;}
._13_c00293{width:13.137000px;}
._1a_c00293{width:14.145000px;}
._18_c00293{width:15.267000px;}
._1c_c00293{width:16.353000px;}
._17_c00293{width:17.565000px;}
._16_c00293{width:19.401000px;}
._1b_c00293{width:22.068000px;}
._10_c00293{width:26.169000px;}
.fc2_c00293{color:transparent;}
.fc1_c00293{color:rgb(128,128,128);}
.fc0_c00293{color:rgb(0,0,0);}
.fs4_c00293{font-size:48.000000px;}
.fs3_c00293{font-size:57.000000px;}
.fs2_c00293{font-size:69.000000px;}
.fs1_c00293{font-size:81.000000px;}
.fs0_c00293{font-size:87.000000px;}
.y0_c00293{bottom:0.000000px;}
.y1d_c00293{bottom:3.105000px;}
.y1c_c00293{bottom:7.228363px;}
.y1b_c00293{bottom:46.200000px;}
.y1a_c00293{bottom:69.750000px;}
.y19_c00293{bottom:95.100000px;}
.y18_c00293{bottom:120.450000px;}
.y17_c00293{bottom:145.350000px;}
.y16_c00293{bottom:171.000000px;}
.y15_c00293{bottom:195.300000px;}
.y14_c00293{bottom:219.750000px;}
.y13_c00293{bottom:245.250000px;}
.y12_c00293{bottom:268.950000px;}
.y11_c00293{bottom:293.550000px;}
.y10_c00293{bottom:318.150000px;}
.yf_c00293{bottom:342.150000px;}
.ye_c00293{bottom:366.750000px;}
.yd_c00293{bottom:390.750000px;}
.yc_c00293{bottom:415.050000px;}
.yb_c00293{bottom:439.350000px;}
.ya_c00293{bottom:491.100000px;}
.y9_c00293{bottom:518.400000px;}
.y8_c00293{bottom:546.450000px;}
.y7_c00293{bottom:573.450000px;}
.y6_c00293{bottom:601.350000px;}
.y5_c00293{bottom:627.450000px;}
.y4_c00293{bottom:655.650000px;}
.y3_c00293{bottom:682.050000px;}
.y2_c00293{bottom:709.050000px;}
.y1_c00293{bottom:737.100000px;}
.h5_c00293{height:13.200074px;}
.h6_c00293{height:43.804688px;}
.h4_c00293{height:55.942383px;}
.h3_c00293{height:87.361816px;}
.h2_c00293{height:101.825684px;}
.h1_c00293{height:110.151855px;}
.h0_c00293{height:783.000000px;}
.w2_c00293{width:104.875500px;}
.w0_c00293{width:494.100000px;}
.w1_c00293{width:494.250000px;}
.x0_c00293{left:0.000000px;}
.xe_c00293{left:84.600000px;}
.xd_c00293{left:87.000000px;}
.xc_c00293{left:88.050000px;}
.xb_c00293{left:91.050000px;}
.xa_c00293{left:92.700000px;}
.x6_c00293{left:96.450000px;}
.x4_c00293{left:99.150000px;}
.x9_c00293{left:115.650000px;}
.x8_c00293{left:118.800000px;}
.x7_c00293{left:122.400000px;}
.x3_c00293{left:124.650000px;}
.x5_c00293{left:126.900000px;}
.x2_c00293{left:130.950000px;}
.x10_c00293{left:198.864258px;}
.x1_c00293{left:223.800000px;}
.xf_c00293{left:423.600000px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls4_c00293{letter-spacing:-8.000000pt;}
.ls2_c00293{letter-spacing:-5.333333pt;}
.ls0_c00293{letter-spacing:0.000000pt;}
.ls3_c00293{letter-spacing:2.666667pt;}
.ls5_c00293{letter-spacing:5.333333pt;}
.ls1_c00293{letter-spacing:8.000000pt;}
.ws0_c00293{word-spacing:-26.637333pt;}
.ws4_c00293{word-spacing:-18.000000pt;}
.ws2_c00293{word-spacing:-14.781333pt;}
.ws1_c00293{word-spacing:-9.448000pt;}
.ws5_c00293{word-spacing:0.000000pt;}
.ws3_c00293{word-spacing:7.632000pt;}
._e_c00293{margin-left:-18.173333pt;}
._11_c00293{margin-left:-17.184000pt;}
._12_c00293{margin-left:-15.776000pt;}
._d_c00293{margin-left:-13.224000pt;}
._15_c00293{margin-left:-11.986667pt;}
._f_c00293{margin-left:-9.858667pt;}
._2_c00293{margin-left:-8.429333pt;}
._9_c00293{margin-left:-7.192000pt;}
._b_c00293{margin-left:-6.264000pt;}
._a_c00293{margin-left:-4.949333pt;}
._c_c00293{margin-left:-3.712000pt;}
._8_c00293{margin-left:-2.552000pt;}
._3_c00293{margin-left:-1.546667pt;}
._1_c00293{width:1.314667pt;}
._0_c00293{width:3.016000pt;}
._6_c00293{width:4.098667pt;}
._4_c00293{width:5.336000pt;}
._7_c00293{width:6.496000pt;}
._5_c00293{width:7.888000pt;}
._14_c00293{width:9.125333pt;}
._19_c00293{width:10.181333pt;}
._13_c00293{width:11.677333pt;}
._1a_c00293{width:12.573333pt;}
._18_c00293{width:13.570667pt;}
._1c_c00293{width:14.536000pt;}
._17_c00293{width:15.613333pt;}
._16_c00293{width:17.245333pt;}
._1b_c00293{width:19.616000pt;}
._10_c00293{width:23.261333pt;}
.fs4_c00293{font-size:42.666667pt;}
.fs3_c00293{font-size:50.666667pt;}
.fs2_c00293{font-size:61.333333pt;}
.fs1_c00293{font-size:72.000000pt;}
.fs0_c00293{font-size:77.333333pt;}
.y0_c00293{bottom:0.000000pt;}
.y1d_c00293{bottom:2.760000pt;}
.y1c_c00293{bottom:6.425212pt;}
.y1b_c00293{bottom:41.066667pt;}
.y1a_c00293{bottom:62.000000pt;}
.y19_c00293{bottom:84.533333pt;}
.y18_c00293{bottom:107.066667pt;}
.y17_c00293{bottom:129.200000pt;}
.y16_c00293{bottom:152.000000pt;}
.y15_c00293{bottom:173.600000pt;}
.y14_c00293{bottom:195.333333pt;}
.y13_c00293{bottom:218.000000pt;}
.y12_c00293{bottom:239.066667pt;}
.y11_c00293{bottom:260.933333pt;}
.y10_c00293{bottom:282.800000pt;}
.yf_c00293{bottom:304.133333pt;}
.ye_c00293{bottom:326.000000pt;}
.yd_c00293{bottom:347.333333pt;}
.yc_c00293{bottom:368.933333pt;}
.yb_c00293{bottom:390.533333pt;}
.ya_c00293{bottom:436.533333pt;}
.y9_c00293{bottom:460.800000pt;}
.y8_c00293{bottom:485.733333pt;}
.y7_c00293{bottom:509.733333pt;}
.y6_c00293{bottom:534.533333pt;}
.y5_c00293{bottom:557.733333pt;}
.y4_c00293{bottom:582.800000pt;}
.y3_c00293{bottom:606.266667pt;}
.y2_c00293{bottom:630.266667pt;}
.y1_c00293{bottom:655.200000pt;}
.h5_c00293{height:11.733399pt;}
.h6_c00293{height:38.937500pt;}
.h4_c00293{height:49.726562pt;}
.h3_c00293{height:77.654948pt;}
.h2_c00293{height:90.511719pt;}
.h1_c00293{height:97.912760pt;}
.h0_c00293{height:696.000000pt;}
.w2_c00293{width:93.222667pt;}
.w0_c00293{width:439.200000pt;}
.w1_c00293{width:439.333333pt;}
.x0_c00293{left:0.000000pt;}
.xe_c00293{left:75.200000pt;}
.xd_c00293{left:77.333333pt;}
.xc_c00293{left:78.266667pt;}
.xb_c00293{left:80.933333pt;}
.xa_c00293{left:82.400000pt;}
.x6_c00293{left:85.733333pt;}
.x4_c00293{left:88.133333pt;}
.x9_c00293{left:102.800000pt;}
.x8_c00293{left:105.600000pt;}
.x7_c00293{left:108.800000pt;}
.x3_c00293{left:110.800000pt;}
.x5_c00293{left:112.800000pt;}
.x2_c00293{left:116.400000pt;}
.x10_c00293{left:176.768229pt;}
.x1_c00293{left:198.933333pt;}
.xf_c00293{left:376.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_746cec3f2500dabc3af25efd.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.480469;font-style:normal;font-weight:normal;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_6791c990735cde46652bd6c9.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.568848;font-style:normal;font-weight:normal;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_ac3d8ea130b2299380ee1e35.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00294;src:url('chunks/assets/font_dc17dd0b79ec48d9e0d69647.woff2')format("woff");}.ff4_c00294{font-family:ff4_c00294;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00294;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00294{font-family:ff5_c00294;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00294{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00294{vertical-align:0.000000px;}
.ls4_c00294{letter-spacing:-6.000000px;}
.ls3_c00294{letter-spacing:0.000000px;}
.ls2_c00294{letter-spacing:3.000000px;}
.ls0_c00294{letter-spacing:15.300000px;}
.ls1_c00294{letter-spacing:16.371000px;}
.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:-22.977000px;}
.ws2_c00294{word-spacing:-19.629000px;}
.ws0_c00294{word-spacing:-16.629000px;}
.ws3_c00294{word-spacing:-10.629000px;}
.ws4_c00294{word-spacing:0.000000px;}
._15_c00294{margin-left:-15.657000px;}
._13_c00294{margin-left:-13.317000px;}
._16_c00294{margin-left:-12.117000px;}
._17_c00294{margin-left:-10.452000px;}
._a_c00294{margin-left:-8.901000px;}
._12_c00294{margin-left:-7.347000px;}
._f_c00294{margin-left:-6.294000px;}
._c_c00294{margin-left:-5.154000px;}
._d_c00294{margin-left:-3.726000px;}
._10_c00294{margin-left:-2.520000px;}
._9_c00294{margin-left:-1.518000px;}
._8_c00294{width:1.587000px;}
._e_c00294{width:2.877000px;}
._b_c00294{width:3.885000px;}
._2_c00294{width:5.544000px;}
._5_c00294{width:7.056000px;}
._14_c00294{width:8.424000px;}
._1_c00294{width:9.504000px;}
._11_c00294{width:10.899000px;}
._3_c00294{width:12.168000px;}
._4_c00294{width:13.392000px;}
._0_c00294{width:15.408000px;}
._18_c00294{width:17.127000px;}
._1a_c00294{width:21.258000px;}
._7_c00294{width:29.304000px;}
._19_c00294{width:171.399000px;}
._6_c00294{width:291.384000px;}
.fc2_c00294{color:transparent;}
.fc1_c00294{color:rgb(128,128,128);}
.fc0_c00294{color:rgb(0,0,0);}
.fs4_c00294{font-size:48.000000px;}
.fs2_c00294{font-size:66.000000px;}
.fs1_c00294{font-size:69.000000px;}
.fs0_c00294{font-size:72.000000px;}
.fs3_c00294{font-size:75.000000px;}
.y0_c00294{bottom:0.000000px;}
.y1f_c00294{bottom:3.105000px;}
.y1e_c00294{bottom:7.228357px;}
.y1d_c00294{bottom:37.830000px;}
.y1c_c00294{bottom:65.430000px;}
.y1b_c00294{bottom:91.830000px;}
.y1a_c00294{bottom:117.780000px;}
.y19_c00294{bottom:142.830000px;}
.y18_c00294{bottom:163.380000px;}
.y17_c00294{bottom:189.780000px;}
.y16_c00294{bottom:219.030000px;}
.y15_c00294{bottom:241.680000px;}
.y14_c00294{bottom:268.980000px;}
.y13_c00294{bottom:291.930000px;}
.y12_c00294{bottom:316.230000px;}
.y11_c00294{bottom:340.680000px;}
.y10_c00294{bottom:365.130000px;}
.yf_c00294{bottom:389.580000px;}
.ye_c00294{bottom:414.780000px;}
.yd_c00294{bottom:439.530000px;}
.yc_c00294{bottom:464.130000px;}
.yb_c00294{bottom:488.730000px;}
.ya_c00294{bottom:513.330000px;}
.y9_c00294{bottom:537.930000px;}
.y8_c00294{bottom:562.980000px;}
.y7_c00294{bottom:587.580000px;}
.y6_c00294{bottom:612.630000px;}
.y5_c00294{bottom:637.980000px;}
.y4_c00294{bottom:661.230000px;}
.y3_c00294{bottom:685.230000px;}
.y2_c00294{bottom:709.830000px;}
.y1_c00294{bottom:735.780000px;}
.h5_c00294{height:13.200074px;}
.h6_c00294{height:43.804688px;}
.h4_c00294{height:73.608398px;}
.h2_c00294{height:84.269531px;}
.h3_c00294{height:87.361816px;}
.h1_c00294{height:791.250000px;}
.h0_c00294{height:791.400000px;}
.w2_c00294{width:104.875500px;}
.w0_c00294{width:541.350000px;}
.w1_c00294{width:541.500000px;}
.x0_c00294{left:0.000000px;}
.x2_c00294{left:36.450000px;}
.x3_c00294{left:37.800000px;}
.x4_c00294{left:39.150000px;}
.x5_c00294{left:41.100000px;}
.x6_c00294{left:42.450000px;}
.x7_c00294{left:44.100000px;}
.x9_c00294{left:150.150000px;}
.x1_c00294{left:160.350000px;}
.xb_c00294{left:222.489258px;}
.x8_c00294{left:316.500000px;}
.xa_c00294{left:358.050000px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls4_c00294{letter-spacing:-5.333333pt;}
.ls3_c00294{letter-spacing:0.000000pt;}
.ls2_c00294{letter-spacing:2.666667pt;}
.ls0_c00294{letter-spacing:13.600000pt;}
.ls1_c00294{letter-spacing:14.552000pt;}
.ws1_c00294{word-spacing:-20.424000pt;}
.ws2_c00294{word-spacing:-17.448000pt;}
.ws0_c00294{word-spacing:-14.781333pt;}
.ws3_c00294{word-spacing:-9.448000pt;}
.ws4_c00294{word-spacing:0.000000pt;}
._15_c00294{margin-left:-13.917333pt;}
._13_c00294{margin-left:-11.837333pt;}
._16_c00294{margin-left:-10.770667pt;}
._17_c00294{margin-left:-9.290667pt;}
._a_c00294{margin-left:-7.912000pt;}
._12_c00294{margin-left:-6.530667pt;}
._f_c00294{margin-left:-5.594667pt;}
._c_c00294{margin-left:-4.581333pt;}
._d_c00294{margin-left:-3.312000pt;}
._10_c00294{margin-left:-2.240000pt;}
._9_c00294{margin-left:-1.349333pt;}
._8_c00294{width:1.410667pt;}
._e_c00294{width:2.557333pt;}
._b_c00294{width:3.453333pt;}
._2_c00294{width:4.928000pt;}
._5_c00294{width:6.272000pt;}
._14_c00294{width:7.488000pt;}
._1_c00294{width:8.448000pt;}
._11_c00294{width:9.688000pt;}
._3_c00294{width:10.816000pt;}
._4_c00294{width:11.904000pt;}
._0_c00294{width:13.696000pt;}
._18_c00294{width:15.224000pt;}
._1a_c00294{width:18.896000pt;}
._7_c00294{width:26.048000pt;}
._19_c00294{width:152.354667pt;}
._6_c00294{width:259.008000pt;}
.fs4_c00294{font-size:42.666667pt;}
.fs2_c00294{font-size:58.666667pt;}
.fs1_c00294{font-size:61.333333pt;}
.fs0_c00294{font-size:64.000000pt;}
.fs3_c00294{font-size:66.666667pt;}
.y0_c00294{bottom:0.000000pt;}
.y1f_c00294{bottom:2.760000pt;}
.y1e_c00294{bottom:6.425206pt;}
.y1d_c00294{bottom:33.626667pt;}
.y1c_c00294{bottom:58.160000pt;}
.y1b_c00294{bottom:81.626667pt;}
.y1a_c00294{bottom:104.693333pt;}
.y19_c00294{bottom:126.960000pt;}
.y18_c00294{bottom:145.226667pt;}
.y17_c00294{bottom:168.693333pt;}
.y16_c00294{bottom:194.693333pt;}
.y15_c00294{bottom:214.826667pt;}
.y14_c00294{bottom:239.093333pt;}
.y13_c00294{bottom:259.493333pt;}
.y12_c00294{bottom:281.093333pt;}
.y11_c00294{bottom:302.826667pt;}
.y10_c00294{bottom:324.560000pt;}
.yf_c00294{bottom:346.293333pt;}
.ye_c00294{bottom:368.693333pt;}
.yd_c00294{bottom:390.693333pt;}
.yc_c00294{bottom:412.560000pt;}
.yb_c00294{bottom:434.426667pt;}
.ya_c00294{bottom:456.293333pt;}
.y9_c00294{bottom:478.160000pt;}
.y8_c00294{bottom:500.426667pt;}
.y7_c00294{bottom:522.293333pt;}
.y6_c00294{bottom:544.560000pt;}
.y5_c00294{bottom:567.093333pt;}
.y4_c00294{bottom:587.760000pt;}
.y3_c00294{bottom:609.093333pt;}
.y2_c00294{bottom:630.960000pt;}
.y1_c00294{bottom:654.026667pt;}
.h5_c00294{height:11.733399pt;}
.h6_c00294{height:38.937500pt;}
.h4_c00294{height:65.429688pt;}
.h2_c00294{height:74.906250pt;}
.h3_c00294{height:77.654948pt;}
.h1_c00294{height:703.333333pt;}
.h0_c00294{height:703.466667pt;}
.w2_c00294{width:93.222667pt;}
.w0_c00294{width:481.200000pt;}
.w1_c00294{width:481.333333pt;}
.x0_c00294{left:0.000000pt;}
.x2_c00294{left:32.400000pt;}
.x3_c00294{left:33.600000pt;}
.x4_c00294{left:34.800000pt;}
.x5_c00294{left:36.533333pt;}
.x6_c00294{left:37.733333pt;}
.x7_c00294{left:39.200000pt;}
.x9_c00294{left:133.466667pt;}
.x1_c00294{left:142.533333pt;}
.xb_c00294{left:197.768229pt;}
.x8_c00294{left:281.333333pt;}
.xa_c00294{left:318.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ce3b68c1488caea02de88c8.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.480469;font-style:normal;font-weight:normal;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_c95b98b15e2ad77642d8e2fa.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00295{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00295{vertical-align:0.000000px;}
.ls0_c00295{letter-spacing:-3.000000px;}
.ls2_c00295{letter-spacing:0.000000px;}
.ls1_c00295{letter-spacing:3.000000px;}
.sc__c00295{text-shadow:none;}
.sc0_c00295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00295{-webkit-text-stroke:0px transparent;}
.sc0_c00295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00295{word-spacing:-37.341000px;}
.ws0_c00295{word-spacing:-37.107000px;}
.ws2_c00295{word-spacing:-18.183000px;}
.ws3_c00295{word-spacing:0.000000px;}
._12_c00295{margin-left:-13.452000px;}
._11_c00295{margin-left:-9.675000px;}
._b_c00295{margin-left:-7.056000px;}
._7_c00295{margin-left:-5.607000px;}
._a_c00295{margin-left:-4.473000px;}
._9_c00295{margin-left:-2.850000px;}
._5_c00295{margin-left:-1.194000px;}
._1_c00295{width:1.218000px;}
._2_c00295{width:2.349000px;}
._0_c00295{width:3.567000px;}
._3_c00295{width:5.568000px;}
._4_c00295{width:7.278000px;}
._f_c00295{width:8.307000px;}
._8_c00295{width:9.324000px;}
._6_c00295{width:10.914000px;}
._10_c00295{width:12.255000px;}
._d_c00295{width:13.482000px;}
._c_c00295{width:14.775000px;}
._e_c00295{width:15.990000px;}
.fc2_c00295{color:transparent;}
.fc1_c00295{color:rgb(128,128,128);}
.fc0_c00295{color:rgb(0,0,0);}
.fs5_c00295{font-size:48.000000px;}
.fs4_c00295{font-size:57.000000px;}
.fs1_c00295{font-size:63.000000px;}
.fs3_c00295{font-size:69.000000px;}
.fs2_c00295{font-size:81.000000px;}
.fs0_c00295{font-size:87.000000px;}
.y0_c00295{bottom:0.000000px;}
.y1f_c00295{bottom:3.105000px;}
.y1e_c00295{bottom:7.228363px;}
.y1d_c00295{bottom:46.500000px;}
.y1c_c00295{bottom:68.550000px;}
.y1b_c00295{bottom:93.750000px;}
.y1a_c00295{bottom:119.400000px;}
.y19_c00295{bottom:144.000000px;}
.y18_c00295{bottom:169.350000px;}
.y17_c00295{bottom:193.650000px;}
.y16_c00295{bottom:217.950000px;}
.y15_c00295{bottom:242.550000px;}
.y14_c00295{bottom:266.250000px;}
.y13_c00295{bottom:291.150000px;}
.y12_c00295{bottom:315.450000px;}
.y11_c00295{bottom:339.750000px;}
.y10_c00295{bottom:363.750000px;}
.yf_c00295{bottom:388.500000px;}
.ye_c00295{bottom:412.650000px;}
.yd_c00295{bottom:437.100000px;}
.yc_c00295{bottom:461.250000px;}
.yb_c00295{bottom:485.550000px;}
.ya_c00295{bottom:510.000000px;}
.y9_c00295{bottom:534.600000px;}
.y8_c00295{bottom:558.900000px;}
.y7_c00295{bottom:583.200000px;}
.y6_c00295{bottom:608.100000px;}
.y5_c00295{bottom:632.250000px;}
.y4_c00295{bottom:656.550000px;}
.y3_c00295{bottom:680.700000px;}
.y2_c00295{bottom:705.450000px;}
.y1_c00295{bottom:730.650000px;}
.h6_c00295{height:13.200074px;}
.h7_c00295{height:43.804688px;}
.h3_c00295{height:79.765137px;}
.h5_c00295{height:87.361816px;}
.h4_c00295{height:102.555176px;}
.h2_c00295{height:110.151855px;}
.h1_c00295{height:780.000000px;}
.h0_c00295{height:780.300000px;}
.w2_c00295{width:104.875500px;}
.w1_c00295{width:527.250000px;}
.w0_c00295{width:527.550000px;}
.x0_c00295{left:0.000000px;}
.x4_c00295{left:104.400000px;}
.x2_c00295{left:106.050000px;}
.x3_c00295{left:107.100000px;}
.x5_c00295{left:108.300000px;}
.x1_c00295{left:216.300000px;}
.x6_c00295{left:470.100000px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls0_c00295{letter-spacing:-2.666667pt;}
.ls2_c00295{letter-spacing:0.000000pt;}
.ls1_c00295{letter-spacing:2.666667pt;}
.ws1_c00295{word-spacing:-33.192000pt;}
.ws0_c00295{word-spacing:-32.984000pt;}
.ws2_c00295{word-spacing:-16.162667pt;}
.ws3_c00295{word-spacing:0.000000pt;}
._12_c00295{margin-left:-11.957333pt;}
._11_c00295{margin-left:-8.600000pt;}
._b_c00295{margin-left:-6.272000pt;}
._7_c00295{margin-left:-4.984000pt;}
._a_c00295{margin-left:-3.976000pt;}
._9_c00295{margin-left:-2.533333pt;}
._5_c00295{margin-left:-1.061333pt;}
._1_c00295{width:1.082667pt;}
._2_c00295{width:2.088000pt;}
._0_c00295{width:3.170667pt;}
._3_c00295{width:4.949333pt;}
._4_c00295{width:6.469333pt;}
._f_c00295{width:7.384000pt;}
._8_c00295{width:8.288000pt;}
._6_c00295{width:9.701333pt;}
._10_c00295{width:10.893333pt;}
._d_c00295{width:11.984000pt;}
._c_c00295{width:13.133333pt;}
._e_c00295{width:14.213333pt;}
.fs5_c00295{font-size:42.666667pt;}
.fs4_c00295{font-size:50.666667pt;}
.fs1_c00295{font-size:56.000000pt;}
.fs3_c00295{font-size:61.333333pt;}
.fs2_c00295{font-size:72.000000pt;}
.fs0_c00295{font-size:77.333333pt;}
.y0_c00295{bottom:0.000000pt;}
.y1f_c00295{bottom:2.760000pt;}
.y1e_c00295{bottom:6.425212pt;}
.y1d_c00295{bottom:41.333333pt;}
.y1c_c00295{bottom:60.933333pt;}
.y1b_c00295{bottom:83.333333pt;}
.y1a_c00295{bottom:106.133333pt;}
.y19_c00295{bottom:128.000000pt;}
.y18_c00295{bottom:150.533333pt;}
.y17_c00295{bottom:172.133333pt;}
.y16_c00295{bottom:193.733333pt;}
.y15_c00295{bottom:215.600000pt;}
.y14_c00295{bottom:236.666667pt;}
.y13_c00295{bottom:258.800000pt;}
.y12_c00295{bottom:280.400000pt;}
.y11_c00295{bottom:302.000000pt;}
.y10_c00295{bottom:323.333333pt;}
.yf_c00295{bottom:345.333333pt;}
.ye_c00295{bottom:366.800000pt;}
.yd_c00295{bottom:388.533333pt;}
.yc_c00295{bottom:410.000000pt;}
.yb_c00295{bottom:431.600000pt;}
.ya_c00295{bottom:453.333333pt;}
.y9_c00295{bottom:475.200000pt;}
.y8_c00295{bottom:496.800000pt;}
.y7_c00295{bottom:518.400000pt;}
.y6_c00295{bottom:540.533333pt;}
.y5_c00295{bottom:562.000000pt;}
.y4_c00295{bottom:583.600000pt;}
.y3_c00295{bottom:605.066667pt;}
.y2_c00295{bottom:627.066667pt;}
.y1_c00295{bottom:649.466667pt;}
.h6_c00295{height:11.733399pt;}
.h7_c00295{height:38.937500pt;}
.h3_c00295{height:70.902344pt;}
.h5_c00295{height:77.654948pt;}
.h4_c00295{height:91.160156pt;}
.h2_c00295{height:97.912760pt;}
.h1_c00295{height:693.333333pt;}
.h0_c00295{height:693.600000pt;}
.w2_c00295{width:93.222667pt;}
.w1_c00295{width:468.666667pt;}
.w0_c00295{width:468.933333pt;}
.x0_c00295{left:0.000000pt;}
.x4_c00295{left:92.800000pt;}
.x2_c00295{left:94.266667pt;}
.x3_c00295{left:95.200000pt;}
.x5_c00295{left:96.266667pt;}
.x1_c00295{left:192.266667pt;}
.x6_c00295{left:417.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_64af9fea952b7de4e0931783.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.480469;font-style:normal;font-weight:normal;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_9ef694d87bebb81ac77b365e.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:1.568848;font-style:normal;font-weight:normal;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_6b9eae3d6401f5c9f62f82e5.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00296;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00296{font-family:ff4_c00296;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00296{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00296{vertical-align:0.000000px;}
.ls0_c00296{letter-spacing:-3.000000px;}
.ls2_c00296{letter-spacing:0.000000px;}
.ls1_c00296{letter-spacing:3.000000px;}
.ls3_c00296{letter-spacing:30.000000px;}
.sc__c00296{text-shadow:none;}
.sc0_c00296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00296{-webkit-text-stroke:0px transparent;}
.sc0_c00296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00296{word-spacing:-48.981000px;}
.ws0_c00296{word-spacing:-19.521000px;}
.ws1_c00296{word-spacing:-18.183000px;}
.ws3_c00296{word-spacing:0.000000px;}
._14_c00296{margin-left:-42.627000px;}
._11_c00296{margin-left:-12.054000px;}
._10_c00296{margin-left:-8.673000px;}
._12_c00296{margin-left:-6.042000px;}
._e_c00296{margin-left:-4.851000px;}
._2_c00296{margin-left:-2.958000px;}
._b_c00296{margin-left:-1.071000px;}
._5_c00296{width:1.218000px;}
._4_c00296{width:3.045000px;}
._3_c00296{width:4.437000px;}
._6_c00296{width:5.481000px;}
._a_c00296{width:6.792000px;}
._1_c00296{width:7.830000px;}
._c_c00296{width:9.747000px;}
._9_c00296{width:11.397000px;}
._0_c00296{width:12.876000px;}
._d_c00296{width:14.994000px;}
._f_c00296{width:16.269000px;}
._8_c00296{width:30.276000px;}
._7_c00296{width:312.330000px;}
._13_c00296{width:374.712000px;}
.fc2_c00296{color:transparent;}
.fc1_c00296{color:rgb(128,128,128);}
.fc0_c00296{color:rgb(0,0,0);}
.fs4_c00296{font-size:48.000000px;}
.fs3_c00296{font-size:57.000000px;}
.fs1_c00296{font-size:63.000000px;}
.fs2_c00296{font-size:81.000000px;}
.fs0_c00296{font-size:87.000000px;}
.y0_c00296{bottom:0.000000px;}
.y1f_c00296{bottom:3.105000px;}
.y1e_c00296{bottom:7.228363px;}
.y1d_c00296{bottom:47.700000px;}
.y1c_c00296{bottom:73.650000px;}
.y1b_c00296{bottom:98.550000px;}
.y1a_c00296{bottom:123.600000px;}
.y19_c00296{bottom:149.250000px;}
.y18_c00296{bottom:173.850000px;}
.y17_c00296{bottom:199.200000px;}
.y16_c00296{bottom:223.500000px;}
.y15_c00296{bottom:248.850000px;}
.y14_c00296{bottom:273.750000px;}
.y13_c00296{bottom:295.350000px;}
.y12_c00296{bottom:319.650000px;}
.y11_c00296{bottom:343.200000px;}
.y10_c00296{bottom:368.250000px;}
.yf_c00296{bottom:392.550000px;}
.ye_c00296{bottom:417.150000px;}
.yd_c00296{bottom:441.750000px;}
.yc_c00296{bottom:466.800000px;}
.yb_c00296{bottom:491.100000px;}
.ya_c00296{bottom:515.400000px;}
.y9_c00296{bottom:540.000000px;}
.y8_c00296{bottom:564.600000px;}
.y7_c00296{bottom:589.050000px;}
.y6_c00296{bottom:613.500000px;}
.y5_c00296{bottom:637.650000px;}
.y4_c00296{bottom:662.250000px;}
.y3_c00296{bottom:686.550000px;}
.y2_c00296{bottom:711.150000px;}
.y1_c00296{bottom:736.800000px;}
.h5_c00296{height:13.200074px;}
.h6_c00296{height:43.804688px;}
.h3_c00296{height:79.765137px;}
.h4_c00296{height:94.803223px;}
.h2_c00296{height:101.825684px;}
.h1_c00296{height:780.000000px;}
.h0_c00296{height:780.300000px;}
.w2_c00296{width:104.875500px;}
.w0_c00296{width:548.925000px;}
.w1_c00296{width:549.000000px;}
.x0_c00296{left:0.000000px;}
.x2_c00296{left:28.350000px;}
.x3_c00296{left:30.600000px;}
.x4_c00296{left:31.650000px;}
.x5_c00296{left:32.700000px;}
.x6_c00296{left:34.650000px;}
.x8_c00296{left:35.700000px;}
.x9_c00296{left:36.750000px;}
.x1_c00296{left:148.800000px;}
.xb_c00296{left:226.276749px;}
.x7_c00296{left:357.150000px;}
.xa_c00296{left:358.650000px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls0_c00296{letter-spacing:-2.666667pt;}
.ls2_c00296{letter-spacing:0.000000pt;}
.ls1_c00296{letter-spacing:2.666667pt;}
.ls3_c00296{letter-spacing:26.666667pt;}
.ws2_c00296{word-spacing:-43.538667pt;}
.ws0_c00296{word-spacing:-17.352000pt;}
.ws1_c00296{word-spacing:-16.162667pt;}
.ws3_c00296{word-spacing:0.000000pt;}
._14_c00296{margin-left:-37.890667pt;}
._11_c00296{margin-left:-10.714667pt;}
._10_c00296{margin-left:-7.709333pt;}
._12_c00296{margin-left:-5.370667pt;}
._e_c00296{margin-left:-4.312000pt;}
._2_c00296{margin-left:-2.629333pt;}
._b_c00296{margin-left:-0.952000pt;}
._5_c00296{width:1.082667pt;}
._4_c00296{width:2.706667pt;}
._3_c00296{width:3.944000pt;}
._6_c00296{width:4.872000pt;}
._a_c00296{width:6.037333pt;}
._1_c00296{width:6.960000pt;}
._c_c00296{width:8.664000pt;}
._9_c00296{width:10.130667pt;}
._0_c00296{width:11.445333pt;}
._d_c00296{width:13.328000pt;}
._f_c00296{width:14.461333pt;}
._8_c00296{width:26.912000pt;}
._7_c00296{width:277.626667pt;}
._13_c00296{width:333.077333pt;}
.fs4_c00296{font-size:42.666667pt;}
.fs3_c00296{font-size:50.666667pt;}
.fs1_c00296{font-size:56.000000pt;}
.fs2_c00296{font-size:72.000000pt;}
.fs0_c00296{font-size:77.333333pt;}
.y0_c00296{bottom:0.000000pt;}
.y1f_c00296{bottom:2.760000pt;}
.y1e_c00296{bottom:6.425212pt;}
.y1d_c00296{bottom:42.400000pt;}
.y1c_c00296{bottom:65.466667pt;}
.y1b_c00296{bottom:87.600000pt;}
.y1a_c00296{bottom:109.866667pt;}
.y19_c00296{bottom:132.666667pt;}
.y18_c00296{bottom:154.533333pt;}
.y17_c00296{bottom:177.066667pt;}
.y16_c00296{bottom:198.666667pt;}
.y15_c00296{bottom:221.200000pt;}
.y14_c00296{bottom:243.333333pt;}
.y13_c00296{bottom:262.533333pt;}
.y12_c00296{bottom:284.133333pt;}
.y11_c00296{bottom:305.066667pt;}
.y10_c00296{bottom:327.333333pt;}
.yf_c00296{bottom:348.933333pt;}
.ye_c00296{bottom:370.800000pt;}
.yd_c00296{bottom:392.666667pt;}
.yc_c00296{bottom:414.933333pt;}
.yb_c00296{bottom:436.533333pt;}
.ya_c00296{bottom:458.133333pt;}
.y9_c00296{bottom:480.000000pt;}
.y8_c00296{bottom:501.866667pt;}
.y7_c00296{bottom:523.600000pt;}
.y6_c00296{bottom:545.333333pt;}
.y5_c00296{bottom:566.800000pt;}
.y4_c00296{bottom:588.666667pt;}
.y3_c00296{bottom:610.266667pt;}
.y2_c00296{bottom:632.133333pt;}
.y1_c00296{bottom:654.933333pt;}
.h5_c00296{height:11.733399pt;}
.h6_c00296{height:38.937500pt;}
.h3_c00296{height:70.902344pt;}
.h4_c00296{height:84.269531pt;}
.h2_c00296{height:90.511719pt;}
.h1_c00296{height:693.333333pt;}
.h0_c00296{height:693.600000pt;}
.w2_c00296{width:93.222667pt;}
.w0_c00296{width:487.933333pt;}
.w1_c00296{width:488.000000pt;}
.x0_c00296{left:0.000000pt;}
.x2_c00296{left:25.200000pt;}
.x3_c00296{left:27.200000pt;}
.x4_c00296{left:28.133333pt;}
.x5_c00296{left:29.066667pt;}
.x6_c00296{left:30.800000pt;}
.x8_c00296{left:31.733333pt;}
.x9_c00296{left:32.666667pt;}
.x1_c00296{left:132.266667pt;}
.xb_c00296{left:201.134888pt;}
.x7_c00296{left:317.466667pt;}
.xa_c00296{left:318.800000pt;}
}





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

.ir_c00297:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00297{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00297;src:url('chunks/assets/font_e1b59c3c97aa0601cd485110.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.480469;font-style:normal;font-weight:normal;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_09cab3b75029e0a3eb338986.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:1.568848;font-style:normal;font-weight:normal;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_5f4fb55e4fbd4a35798e0d52.woff2')format("woff");}.ff3_c00297{font-family:ff3_c00297;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00297;src:url('chunks/assets/font_0bf2c6d8c68b133749bd52cd.woff2')format("woff");}.ff4_c00297{font-family:ff4_c00297;line-height:1.575000;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00297{font-family:ff5_c00297;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00297;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00297{font-family:ff6_c00297;line-height:1.219238;font-style: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;}
.ls3_c00297{letter-spacing:0.000000px;}
.ls4_c00297{letter-spacing:3.000000px;}
.ls5_c00297{letter-spacing:6.000000px;}
.ls0_c00297{letter-spacing:14.400000px;}
.ls1_c00297{letter-spacing:22.617000px;}
.ls2_c00297{letter-spacing:225.150000px;}
.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:-19.521000px;}
.ws1_c00297{word-spacing:0.000000px;}
._19_c00297{margin-left:-16.386000px;}
._1b_c00297{margin-left:-14.952000px;}
._1a_c00297{margin-left:-13.746000px;}
._18_c00297{margin-left:-12.717000px;}
._a_c00297{margin-left:-11.040000px;}
._9_c00297{margin-left:-9.591000px;}
._c_c00297{margin-left:-8.253000px;}
._17_c00297{margin-left:-6.903000px;}
._10_c00297{margin-left:-5.418000px;}
._d_c00297{margin-left:-4.410000px;}
._e_c00297{margin-left:-3.150000px;}
._b_c00297{margin-left:-1.449000px;}
._14_c00297{width:1.110000px;}
._8_c00297{width:2.193000px;}
._7_c00297{width:3.843000px;}
._6_c00297{width:4.851000px;}
._5_c00297{width:6.060000px;}
._4_c00297{width:7.380000px;}
._1_c00297{width:8.580000px;}
._13_c00297{width:9.816000px;}
._15_c00297{width:11.193000px;}
._3_c00297{width:13.200000px;}
._f_c00297{width:15.168000px;}
._2_c00297{width:16.920000px;}
._1c_c00297{width:20.376000px;}
._0_c00297{width:21.960000px;}
._11_c00297{width:28.287000px;}
._12_c00297{width:222.642000px;}
._16_c00297{width:287.862000px;}
._1d_c00297{width:1162.134000px;}
.fc2_c00297{color:transparent;}
.fc1_c00297{color:rgb(128,128,128);}
.fc0_c00297{color:rgb(0,0,0);}
.fs6_c00297{font-size:39.000000px;}
.fs8_c00297{font-size:48.000000px;}
.fs7_c00297{font-size:57.000000px;}
.fs0_c00297{font-size:60.000000px;}
.fs1_c00297{font-size:63.000000px;}
.fs5_c00297{font-size:69.000000px;}
.fs4_c00297{font-size:72.000000px;}
.fs2_c00297{font-size:78.000000px;}
.fs3_c00297{font-size:81.000000px;}
.y0_c00297{bottom:0.000000px;}
.y1f_c00297{bottom:3.105000px;}
.y1e_c00297{bottom:7.228371px;}
.y1d_c00297{bottom:64.515000px;}
.y1c_c00297{bottom:86.115000px;}
.y1b_c00297{bottom:112.515000px;}
.y1a_c00297{bottom:136.665000px;}
.y19_c00297{bottom:163.065000px;}
.y18_c00297{bottom:187.965000px;}
.y17_c00297{bottom:211.965000px;}
.y16_c00297{bottom:235.665000px;}
.y15_c00297{bottom:259.515000px;}
.y14_c00297{bottom:284.865000px;}
.y13_c00297{bottom:309.915000px;}
.y12_c00297{bottom:334.215000px;}
.y11_c00297{bottom:358.515000px;}
.y10_c00297{bottom:383.115000px;}
.yf_c00297{bottom:407.115000px;}
.ye_c00297{bottom:432.315000px;}
.yd_c00297{bottom:456.315000px;}
.yc_c00297{bottom:480.615000px;}
.yb_c00297{bottom:505.365000px;}
.ya_c00297{bottom:529.965000px;}
.y9_c00297{bottom:553.965000px;}
.y8_c00297{bottom:578.865000px;}
.y7_c00297{bottom:603.465000px;}
.y6_c00297{bottom:628.065000px;}
.y5_c00297{bottom:652.815000px;}
.y4_c00297{bottom:677.415000px;}
.y3_c00297{bottom:701.715000px;}
.y2_c00297{bottom:726.765000px;}
.y1_c00297{bottom:751.965000px;}
.h8_c00297{height:13.200074px;}
.h9_c00297{height:43.804688px;}
.h2_c00297{height:75.966797px;}
.h5_c00297{height:79.765137px;}
.h6_c00297{height:91.160156px;}
.h7_c00297{height:94.803223px;}
.h3_c00297{height:98.756836px;}
.h4_c00297{height:102.555176px;}
.h0_c00297{height:793.275000px;}
.h1_c00297{height:793.500000px;}
.w2_c00297{width:104.875500px;}
.w1_c00297{width:523.500000px;}
.w0_c00297{width:523.800000px;}
.x0_c00297{left:0.000000px;}
.x8_c00297{left:36.150000px;}
.xa_c00297{left:37.500000px;}
.x5_c00297{left:38.550000px;}
.x3_c00297{left:41.250000px;}
.x9_c00297{left:58.800000px;}
.x7_c00297{left:116.100000px;}
.x6_c00297{left:117.750000px;}
.x4_c00297{left:118.800000px;}
.x2_c00297{left:120.150000px;}
.xb_c00297{left:147.150000px;}
.xc_c00297{left:213.714249px;}
.x1_c00297{left:244.650000px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls3_c00297{letter-spacing:0.000000pt;}
.ls4_c00297{letter-spacing:2.666667pt;}
.ls5_c00297{letter-spacing:5.333333pt;}
.ls0_c00297{letter-spacing:12.800000pt;}
.ls1_c00297{letter-spacing:20.104000pt;}
.ls2_c00297{letter-spacing:200.133333pt;}
.ws0_c00297{word-spacing:-17.352000pt;}
.ws1_c00297{word-spacing:0.000000pt;}
._19_c00297{margin-left:-14.565333pt;}
._1b_c00297{margin-left:-13.290667pt;}
._1a_c00297{margin-left:-12.218667pt;}
._18_c00297{margin-left:-11.304000pt;}
._a_c00297{margin-left:-9.813333pt;}
._9_c00297{margin-left:-8.525333pt;}
._c_c00297{margin-left:-7.336000pt;}
._17_c00297{margin-left:-6.136000pt;}
._10_c00297{margin-left:-4.816000pt;}
._d_c00297{margin-left:-3.920000pt;}
._e_c00297{margin-left:-2.800000pt;}
._b_c00297{margin-left:-1.288000pt;}
._14_c00297{width:0.986667pt;}
._8_c00297{width:1.949333pt;}
._7_c00297{width:3.416000pt;}
._6_c00297{width:4.312000pt;}
._5_c00297{width:5.386667pt;}
._4_c00297{width:6.560000pt;}
._1_c00297{width:7.626667pt;}
._13_c00297{width:8.725333pt;}
._15_c00297{width:9.949333pt;}
._3_c00297{width:11.733333pt;}
._f_c00297{width:13.482667pt;}
._2_c00297{width:15.040000pt;}
._1c_c00297{width:18.112000pt;}
._0_c00297{width:19.520000pt;}
._11_c00297{width:25.144000pt;}
._12_c00297{width:197.904000pt;}
._16_c00297{width:255.877333pt;}
._1d_c00297{width:1033.008000pt;}
.fs6_c00297{font-size:34.666667pt;}
.fs8_c00297{font-size:42.666667pt;}
.fs7_c00297{font-size:50.666667pt;}
.fs0_c00297{font-size:53.333333pt;}
.fs1_c00297{font-size:56.000000pt;}
.fs5_c00297{font-size:61.333333pt;}
.fs4_c00297{font-size:64.000000pt;}
.fs2_c00297{font-size:69.333333pt;}
.fs3_c00297{font-size:72.000000pt;}
.y0_c00297{bottom:0.000000pt;}
.y1f_c00297{bottom:2.760000pt;}
.y1e_c00297{bottom:6.425219pt;}
.y1d_c00297{bottom:57.346667pt;}
.y1c_c00297{bottom:76.546667pt;}
.y1b_c00297{bottom:100.013333pt;}
.y1a_c00297{bottom:121.480000pt;}
.y19_c00297{bottom:144.946667pt;}
.y18_c00297{bottom:167.080000pt;}
.y17_c00297{bottom:188.413333pt;}
.y16_c00297{bottom:209.480000pt;}
.y15_c00297{bottom:230.680000pt;}
.y14_c00297{bottom:253.213333pt;}
.y13_c00297{bottom:275.480000pt;}
.y12_c00297{bottom:297.080000pt;}
.y11_c00297{bottom:318.680000pt;}
.y10_c00297{bottom:340.546667pt;}
.yf_c00297{bottom:361.880000pt;}
.ye_c00297{bottom:384.280000pt;}
.yd_c00297{bottom:405.613333pt;}
.yc_c00297{bottom:427.213333pt;}
.yb_c00297{bottom:449.213333pt;}
.ya_c00297{bottom:471.080000pt;}
.y9_c00297{bottom:492.413333pt;}
.y8_c00297{bottom:514.546667pt;}
.y7_c00297{bottom:536.413333pt;}
.y6_c00297{bottom:558.280000pt;}
.y5_c00297{bottom:580.280000pt;}
.y4_c00297{bottom:602.146667pt;}
.y3_c00297{bottom:623.746667pt;}
.y2_c00297{bottom:646.013333pt;}
.y1_c00297{bottom:668.413333pt;}
.h8_c00297{height:11.733399pt;}
.h9_c00297{height:38.937500pt;}
.h2_c00297{height:67.526042pt;}
.h5_c00297{height:70.902344pt;}
.h6_c00297{height:81.031250pt;}
.h7_c00297{height:84.269531pt;}
.h3_c00297{height:87.783854pt;}
.h4_c00297{height:91.160156pt;}
.h0_c00297{height:705.133333pt;}
.h1_c00297{height:705.333333pt;}
.w2_c00297{width:93.222667pt;}
.w1_c00297{width:465.333333pt;}
.w0_c00297{width:465.600000pt;}
.x0_c00297{left:0.000000pt;}
.x8_c00297{left:32.133333pt;}
.xa_c00297{left:33.333333pt;}
.x5_c00297{left:34.266667pt;}
.x3_c00297{left:36.666667pt;}
.x9_c00297{left:52.266667pt;}
.x7_c00297{left:103.200000pt;}
.x6_c00297{left:104.666667pt;}
.x4_c00297{left:105.600000pt;}
.x2_c00297{left:106.800000pt;}
.xb_c00297{left:130.800000pt;}
.xc_c00297{left:189.968221pt;}
.x1_c00297{left:217.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c9554441326ccc47b049f216.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.480469;font-style:normal;font-weight:normal;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_a85e25ae9629c772d2be879f.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00298{font-family:ff3_c00298;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00298{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00298{vertical-align:0.000000px;}
.ls0_c00298{letter-spacing:0.000000px;}
.ls1_c00298{letter-spacing:3.000000px;}
.sc__c00298{text-shadow:none;}
.sc0_c00298{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00298{-webkit-text-stroke:0px transparent;}
.sc0_c00298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00298{word-spacing:-19.521000px;}
.ws1_c00298{word-spacing:0.000000px;}
._f_c00298{margin-left:-13.959000px;}
._15_c00298{margin-left:-12.150000px;}
._11_c00298{margin-left:-11.133000px;}
._12_c00298{margin-left:-9.939000px;}
._2_c00298{margin-left:-8.091000px;}
._10_c00298{margin-left:-6.210000px;}
._4_c00298{margin-left:-5.133000px;}
._13_c00298{margin-left:-4.116000px;}
._3_c00298{margin-left:-2.610000px;}
._e_c00298{margin-left:-1.164000px;}
._5_c00298{width:1.740000px;}
._7_c00298{width:3.528000px;}
._1_c00298{width:4.872000px;}
._8_c00298{width:6.033000px;}
._0_c00298{width:7.743000px;}
._b_c00298{width:8.757000px;}
._9_c00298{width:9.780000px;}
._a_c00298{width:11.763000px;}
._c_c00298{width:12.822000px;}
._d_c00298{width:14.544000px;}
._14_c00298{width:15.750000px;}
._1b_c00298{width:20.736000px;}
._18_c00298{width:24.633000px;}
._17_c00298{width:30.195000px;}
._1a_c00298{width:32.445000px;}
._19_c00298{width:40.446000px;}
._16_c00298{width:54.360000px;}
._6_c00298{width:309.855000px;}
._1c_c00298{width:320.040000px;}
.fc2_c00298{color:transparent;}
.fc1_c00298{color:rgb(128,128,128);}
.fc0_c00298{color:rgb(0,0,0);}
.fs3_c00298{font-size:48.000000px;}
.fs1_c00298{font-size:63.000000px;}
.fs2_c00298{font-size:81.000000px;}
.fs0_c00298{font-size:87.000000px;}
.y0_c00298{bottom:0.000000px;}
.y1e_c00298{bottom:3.105000px;}
.y1d_c00298{bottom:7.228355px;}
.y1c_c00298{bottom:60.735000px;}
.y1b_c00298{bottom:86.685000px;}
.y1a_c00298{bottom:111.285000px;}
.y19_c00298{bottom:137.385000px;}
.y18_c00298{bottom:162.885000px;}
.y17_c00298{bottom:187.635000px;}
.y16_c00298{bottom:212.835000px;}
.y15_c00298{bottom:237.285000px;}
.y14_c00298{bottom:262.185000px;}
.y13_c00298{bottom:286.185000px;}
.y12_c00298{bottom:334.335000px;}
.y11_c00298{bottom:358.035000px;}
.y10_c00298{bottom:382.335000px;}
.yf_c00298{bottom:407.235000px;}
.ye_c00298{bottom:431.985000px;}
.yd_c00298{bottom:457.635000px;}
.yc_c00298{bottom:480.885000px;}
.yb_c00298{bottom:505.785000px;}
.ya_c00298{bottom:530.085000px;}
.y9_c00298{bottom:554.535000px;}
.y8_c00298{bottom:579.435000px;}
.y7_c00298{bottom:604.035000px;}
.y6_c00298{bottom:628.335000px;}
.y5_c00298{bottom:653.385000px;}
.y4_c00298{bottom:677.685000px;}
.y3_c00298{bottom:702.585000px;}
.y2_c00298{bottom:726.885000px;}
.y1_c00298{bottom:751.935000px;}
.h6_c00298{height:13.200074px;}
.h7_c00298{height:43.804688px;}
.h3_c00298{height:79.765137px;}
.h5_c00298{height:94.803223px;}
.h4_c00298{height:102.555176px;}
.h2_c00298{height:110.151855px;}
.h0_c00298{height:791.625000px;}
.h1_c00298{height:792.000000px;}
.w2_c00298{width:104.875500px;}
.w0_c00298{width:533.775000px;}
.w1_c00298{width:534.000000px;}
.x0_c00298{left:0.000000px;}
.x6_c00298{left:27.300000px;}
.x4_c00298{left:28.650000px;}
.x2_c00298{left:31.050000px;}
.x3_c00298{left:32.100000px;}
.x5_c00298{left:53.550000px;}
.x1_c00298{left:148.500000px;}
.x8_c00298{left:218.701767px;}
.x7_c00298{left:279.150000px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls0_c00298{letter-spacing:0.000000pt;}
.ls1_c00298{letter-spacing:2.666667pt;}
.ws0_c00298{word-spacing:-17.352000pt;}
.ws1_c00298{word-spacing:0.000000pt;}
._f_c00298{margin-left:-12.408000pt;}
._15_c00298{margin-left:-10.800000pt;}
._11_c00298{margin-left:-9.896000pt;}
._12_c00298{margin-left:-8.834667pt;}
._2_c00298{margin-left:-7.192000pt;}
._10_c00298{margin-left:-5.520000pt;}
._4_c00298{margin-left:-4.562667pt;}
._13_c00298{margin-left:-3.658667pt;}
._3_c00298{margin-left:-2.320000pt;}
._e_c00298{margin-left:-1.034667pt;}
._5_c00298{width:1.546667pt;}
._7_c00298{width:3.136000pt;}
._1_c00298{width:4.330667pt;}
._8_c00298{width:5.362667pt;}
._0_c00298{width:6.882667pt;}
._b_c00298{width:7.784000pt;}
._9_c00298{width:8.693333pt;}
._a_c00298{width:10.456000pt;}
._c_c00298{width:11.397333pt;}
._d_c00298{width:12.928000pt;}
._14_c00298{width:14.000000pt;}
._1b_c00298{width:18.432000pt;}
._18_c00298{width:21.896000pt;}
._17_c00298{width:26.840000pt;}
._1a_c00298{width:28.840000pt;}
._19_c00298{width:35.952000pt;}
._16_c00298{width:48.320000pt;}
._6_c00298{width:275.426667pt;}
._1c_c00298{width:284.480000pt;}
.fs3_c00298{font-size:42.666667pt;}
.fs1_c00298{font-size:56.000000pt;}
.fs2_c00298{font-size:72.000000pt;}
.fs0_c00298{font-size:77.333333pt;}
.y0_c00298{bottom:0.000000pt;}
.y1e_c00298{bottom:2.760000pt;}
.y1d_c00298{bottom:6.425204pt;}
.y1c_c00298{bottom:53.986667pt;}
.y1b_c00298{bottom:77.053333pt;}
.y1a_c00298{bottom:98.920000pt;}
.y19_c00298{bottom:122.120000pt;}
.y18_c00298{bottom:144.786667pt;}
.y17_c00298{bottom:166.786667pt;}
.y16_c00298{bottom:189.186667pt;}
.y15_c00298{bottom:210.920000pt;}
.y14_c00298{bottom:233.053333pt;}
.y13_c00298{bottom:254.386667pt;}
.y12_c00298{bottom:297.186667pt;}
.y11_c00298{bottom:318.253333pt;}
.y10_c00298{bottom:339.853333pt;}
.yf_c00298{bottom:361.986667pt;}
.ye_c00298{bottom:383.986667pt;}
.yd_c00298{bottom:406.786667pt;}
.yc_c00298{bottom:427.453333pt;}
.yb_c00298{bottom:449.586667pt;}
.ya_c00298{bottom:471.186667pt;}
.y9_c00298{bottom:492.920000pt;}
.y8_c00298{bottom:515.053333pt;}
.y7_c00298{bottom:536.920000pt;}
.y6_c00298{bottom:558.520000pt;}
.y5_c00298{bottom:580.786667pt;}
.y4_c00298{bottom:602.386667pt;}
.y3_c00298{bottom:624.520000pt;}
.y2_c00298{bottom:646.120000pt;}
.y1_c00298{bottom:668.386667pt;}
.h6_c00298{height:11.733399pt;}
.h7_c00298{height:38.937500pt;}
.h3_c00298{height:70.902344pt;}
.h5_c00298{height:84.269531pt;}
.h4_c00298{height:91.160156pt;}
.h2_c00298{height:97.912760pt;}
.h0_c00298{height:703.666667pt;}
.h1_c00298{height:704.000000pt;}
.w2_c00298{width:93.222667pt;}
.w0_c00298{width:474.466667pt;}
.w1_c00298{width:474.666667pt;}
.x0_c00298{left:0.000000pt;}
.x6_c00298{left:24.266667pt;}
.x4_c00298{left:25.466667pt;}
.x2_c00298{left:27.600000pt;}
.x3_c00298{left:28.533333pt;}
.x5_c00298{left:47.600000pt;}
.x1_c00298{left:132.000000pt;}
.x8_c00298{left:194.401571pt;}
.x7_c00298{left:248.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_415191c3e210282e65187585.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.480469;font-style:normal;font-weight:normal;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_3cb59a0f05d23dc2a9608084.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.568848;font-style:normal;font-weight:normal;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_44ecd21e6f33c8b1a948b684.woff2')format("woff");}.ff3_c00299{font-family:ff3_c00299;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00299;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00299{font-family:ff4_c00299;line-height:1.219238;font-style: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:-3.000000px;}
.ls1_c00299{letter-spacing:0.000000px;}
.ls2_c00299{letter-spacing:3.000000px;}
.sc__c00299{text-shadow:none;}
.sc0_c00299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00299{-webkit-text-stroke:0px transparent;}
.sc0_c00299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00299{word-spacing:-18.075000px;}
.ws1_c00299{word-spacing:0.000000px;}
._1c_c00299{margin-left:-13.722000px;}
._18_c00299{margin-left:-12.705000px;}
._19_c00299{margin-left:-11.532000px;}
._16_c00299{margin-left:-9.813000px;}
._15_c00299{margin-left:-8.640000px;}
._13_c00299{margin-left:-6.696000px;}
._12_c00299{margin-left:-4.815000px;}
._10_c00299{margin-left:-3.768000px;}
._e_c00299{margin-left:-2.526000px;}
._f_c00299{margin-left:-1.443000px;}
._9_c00299{width:1.950000px;}
._11_c00299{width:3.699000px;}
._c_c00299{width:4.743000px;}
._d_c00299{width:6.306000px;}
._a_c00299{width:7.428000px;}
._1_c00299{width:9.180000px;}
._6_c00299{width:10.380000px;}
._14_c00299{width:11.655000px;}
._4_c00299{width:13.320000px;}
._b_c00299{width:15.198000px;}
._3_c00299{width:18.000000px;}
._2_c00299{width:19.920000px;}
._8_c00299{width:21.780000px;}
._7_c00299{width:22.800000px;}
._0_c00299{width:26.760000px;}
._1b_c00299{width:28.836000px;}
._5_c00299{width:35.160000px;}
._1a_c00299{width:46.989000px;}
._17_c00299{width:49.203000px;}
.fc2_c00299{color:transparent;}
.fc1_c00299{color:rgb(128,128,128);}
.fc0_c00299{color:rgb(0,0,0);}
.fs4_c00299{font-size:48.000000px;}
.fs0_c00299{font-size:60.000000px;}
.fs2_c00299{font-size:63.000000px;}
.fs1_c00299{font-size:75.000000px;}
.fs3_c00299{font-size:81.000000px;}
.y0_c00299{bottom:0.000000px;}
.y1e_c00299{bottom:3.105000px;}
.y1d_c00299{bottom:7.228371px;}
.y1c_c00299{bottom:53.415000px;}
.y1b_c00299{bottom:77.415000px;}
.y1a_c00299{bottom:103.965000px;}
.y19_c00299{bottom:128.565000px;}
.y18_c00299{bottom:153.915000px;}
.y17_c00299{bottom:178.665000px;}
.y16_c00299{bottom:203.865000px;}
.y15_c00299{bottom:228.615000px;}
.y14_c00299{bottom:253.215000px;}
.y13_c00299{bottom:278.565000px;}
.y12_c00299{bottom:302.115000px;}
.y11_c00299{bottom:326.115000px;}
.y10_c00299{bottom:348.765000px;}
.yf_c00299{bottom:398.565000px;}
.ye_c00299{bottom:423.315000px;}
.yd_c00299{bottom:447.165000px;}
.yc_c00299{bottom:470.865000px;}
.yb_c00299{bottom:496.215000px;}
.ya_c00299{bottom:521.115000px;}
.y9_c00299{bottom:544.815000px;}
.y8_c00299{bottom:570.165000px;}
.y7_c00299{bottom:594.765000px;}
.y6_c00299{bottom:619.065000px;}
.y5_c00299{bottom:643.665000px;}
.y4_c00299{bottom:667.665000px;}
.y3_c00299{bottom:693.315000px;}
.y2_c00299{bottom:717.615000px;}
.y1_c00299{bottom:743.865000px;}
.h6_c00299{height:13.200074px;}
.h7_c00299{height:43.804688px;}
.h2_c00299{height:75.966797px;}
.h5_c00299{height:79.497070px;}
.h4_c00299{height:79.765137px;}
.h3_c00299{height:94.958496px;}
.h0_c00299{height:781.125000px;}
.h1_c00299{height:781.500000px;}
.w2_c00299{width:104.875500px;}
.w0_c00299{width:511.350000px;}
.w1_c00299{width:511.500000px;}
.x0_c00299{left:0.000000px;}
.x2_c00299{left:100.200000px;}
.x3_c00299{left:101.250000px;}
.x4_c00299{left:102.300000px;}
.x5_c00299{left:104.550000px;}
.x6_c00299{left:105.900000px;}
.x7_c00299{left:108.600000px;}
.x8_c00299{left:109.950000px;}
.x9_c00299{left:111.300000px;}
.xa_c00299{left:112.350000px;}
.xb_c00299{left:113.400000px;}
.xd_c00299{left:207.489258px;}
.x1_c00299{left:216.300000px;}
.xc_c00299{left:457.200000px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls0_c00299{letter-spacing:-2.666667pt;}
.ls1_c00299{letter-spacing:0.000000pt;}
.ls2_c00299{letter-spacing:2.666667pt;}
.ws0_c00299{word-spacing:-16.066667pt;}
.ws1_c00299{word-spacing:0.000000pt;}
._1c_c00299{margin-left:-12.197333pt;}
._18_c00299{margin-left:-11.293333pt;}
._19_c00299{margin-left:-10.250667pt;}
._16_c00299{margin-left:-8.722667pt;}
._15_c00299{margin-left:-7.680000pt;}
._13_c00299{margin-left:-5.952000pt;}
._12_c00299{margin-left:-4.280000pt;}
._10_c00299{margin-left:-3.349333pt;}
._e_c00299{margin-left:-2.245333pt;}
._f_c00299{margin-left:-1.282667pt;}
._9_c00299{width:1.733333pt;}
._11_c00299{width:3.288000pt;}
._c_c00299{width:4.216000pt;}
._d_c00299{width:5.605333pt;}
._a_c00299{width:6.602667pt;}
._1_c00299{width:8.160000pt;}
._6_c00299{width:9.226667pt;}
._14_c00299{width:10.360000pt;}
._4_c00299{width:11.840000pt;}
._b_c00299{width:13.509333pt;}
._3_c00299{width:16.000000pt;}
._2_c00299{width:17.706667pt;}
._8_c00299{width:19.360000pt;}
._7_c00299{width:20.266667pt;}
._0_c00299{width:23.786667pt;}
._1b_c00299{width:25.632000pt;}
._5_c00299{width:31.253333pt;}
._1a_c00299{width:41.768000pt;}
._17_c00299{width:43.736000pt;}
.fs4_c00299{font-size:42.666667pt;}
.fs0_c00299{font-size:53.333333pt;}
.fs2_c00299{font-size:56.000000pt;}
.fs1_c00299{font-size:66.666667pt;}
.fs3_c00299{font-size:72.000000pt;}
.y0_c00299{bottom:0.000000pt;}
.y1e_c00299{bottom:2.760000pt;}
.y1d_c00299{bottom:6.425219pt;}
.y1c_c00299{bottom:47.480000pt;}
.y1b_c00299{bottom:68.813333pt;}
.y1a_c00299{bottom:92.413333pt;}
.y19_c00299{bottom:114.280000pt;}
.y18_c00299{bottom:136.813333pt;}
.y17_c00299{bottom:158.813333pt;}
.y16_c00299{bottom:181.213333pt;}
.y15_c00299{bottom:203.213333pt;}
.y14_c00299{bottom:225.080000pt;}
.y13_c00299{bottom:247.613333pt;}
.y12_c00299{bottom:268.546667pt;}
.y11_c00299{bottom:289.880000pt;}
.y10_c00299{bottom:310.013333pt;}
.yf_c00299{bottom:354.280000pt;}
.ye_c00299{bottom:376.280000pt;}
.yd_c00299{bottom:397.480000pt;}
.yc_c00299{bottom:418.546667pt;}
.yb_c00299{bottom:441.080000pt;}
.ya_c00299{bottom:463.213333pt;}
.y9_c00299{bottom:484.280000pt;}
.y8_c00299{bottom:506.813333pt;}
.y7_c00299{bottom:528.680000pt;}
.y6_c00299{bottom:550.280000pt;}
.y5_c00299{bottom:572.146667pt;}
.y4_c00299{bottom:593.480000pt;}
.y3_c00299{bottom:616.280000pt;}
.y2_c00299{bottom:637.880000pt;}
.y1_c00299{bottom:661.213333pt;}
.h6_c00299{height:11.733399pt;}
.h7_c00299{height:38.937500pt;}
.h2_c00299{height:67.526042pt;}
.h5_c00299{height:70.664062pt;}
.h4_c00299{height:70.902344pt;}
.h3_c00299{height:84.407552pt;}
.h0_c00299{height:694.333333pt;}
.h1_c00299{height:694.666667pt;}
.w2_c00299{width:93.222667pt;}
.w0_c00299{width:454.533333pt;}
.w1_c00299{width:454.666667pt;}
.x0_c00299{left:0.000000pt;}
.x2_c00299{left:89.066667pt;}
.x3_c00299{left:90.000000pt;}
.x4_c00299{left:90.933333pt;}
.x5_c00299{left:92.933333pt;}
.x6_c00299{left:94.133333pt;}
.x7_c00299{left:96.533333pt;}
.x8_c00299{left:97.733333pt;}
.x9_c00299{left:98.933333pt;}
.xa_c00299{left:99.866667pt;}
.xb_c00299{left:100.800000pt;}
.xd_c00299{left:184.434896pt;}
.x1_c00299{left:192.266667pt;}
.xc_c00299{left:406.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4d900e24991e2ec131c4a09c.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.568848;font-style:normal;font-weight:normal;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_248d9457dac8787243814d1e.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:1.480469;font-style:normal;font-weight:normal;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_a83546f543b0ff78a68c2c03.woff2')format("woff");}.ff3_c00300{font-family:ff3_c00300;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00300;src:url('chunks/assets/font_28c0cd9d3a3aa4f93bfb1ebb.woff2')format("woff");}.ff4_c00300{font-family:ff4_c00300;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00300;src:url('chunks/assets/font_8dde9a9fe608afcf0a2557d9.woff2')format("woff");}.ff5_c00300{font-family:ff5_c00300;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00300;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00300{font-family:ff6_c00300;line-height:1.219238;font-style: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);}
.v1_c00300{vertical-align:-18.600000px;}
.v0_c00300{vertical-align:0.000000px;}
.ls1_c00300{letter-spacing:0.000000px;}
.ls2_c00300{letter-spacing:3.000000px;}
.ls0_c00300{letter-spacing:16.500000px;}
.ls3_c00300{letter-spacing:30.000000px;}
.sc__c00300{text-shadow:none;}
.sc0_c00300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00300{-webkit-text-stroke:0px transparent;}
.sc0_c00300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00300{word-spacing:-41.100000px;}
.ws2_c00300{word-spacing:-37.341000px;}
.ws1_c00300{word-spacing:-28.500000px;}
.ws3_c00300{word-spacing:-18.183000px;}
.ws4_c00300{word-spacing:0.000000px;}
._16_c00300{margin-left:-20.853000px;}
._14_c00300{margin-left:-15.084000px;}
._15_c00300{margin-left:-12.396000px;}
._11_c00300{margin-left:-10.998000px;}
._13_c00300{margin-left:-9.639000px;}
._12_c00300{margin-left:-8.343000px;}
._10_c00300{margin-left:-5.148000px;}
._b_c00300{margin-left:-3.540000px;}
._c_c00300{margin-left:-1.944000px;}
._f_c00300{width:1.254000px;}
._d_c00300{width:2.409000px;}
._3_c00300{width:3.900000px;}
._1_c00300{width:5.400000px;}
._8_c00300{width:6.840000px;}
._0_c00300{width:8.220000px;}
._4_c00300{width:9.360000px;}
._2_c00300{width:10.500000px;}
._7_c00300{width:11.520000px;}
._5_c00300{width:12.600000px;}
._17_c00300{width:14.124000px;}
._6_c00300{width:16.800000px;}
._a_c00300{width:21.240000px;}
._e_c00300{width:29.391000px;}
._18_c00300{width:35.796000px;}
._9_c00300{width:54.840000px;}
._19_c00300{width:356.220000px;}
.fc2_c00300{color:transparent;}
.fc1_c00300{color:rgb(128,128,128);}
.fc0_c00300{color:rgb(0,0,0);}
.fs5_c00300{font-size:48.000000px;}
.fs2_c00300{font-size:57.000000px;}
.fs0_c00300{font-size:60.000000px;}
.fs1_c00300{font-size:63.000000px;}
.fs4_c00300{font-size:72.000000px;}
.fs3_c00300{font-size:81.000000px;}
.y0_c00300{bottom:0.000000px;}
.y1d_c00300{bottom:3.105000px;}
.y1c_c00300{bottom:7.228357px;}
.y1b_c00300{bottom:56.730000px;}
.y1a_c00300{bottom:81.480000px;}
.y19_c00300{bottom:107.130000px;}
.y18_c00300{bottom:132.330000px;}
.y17_c00300{bottom:157.080000px;}
.y16_c00300{bottom:181.680000px;}
.y15_c00300{bottom:207.030000px;}
.y14_c00300{bottom:232.230000px;}
.y13_c00300{bottom:257.280000px;}
.y12_c00300{bottom:281.280000px;}
.y11_c00300{bottom:325.080000px;}
.y10_c00300{bottom:351.480000px;}
.yf_c00300{bottom:376.080000px;}
.ye_c00300{bottom:400.680000px;}
.yd_c00300{bottom:425.280000px;}
.yc_c00300{bottom:450.930000px;}
.yb_c00300{bottom:474.630000px;}
.ya_c00300{bottom:499.530000px;}
.y9_c00300{bottom:523.530000px;}
.y8_c00300{bottom:550.230000px;}
.y7_c00300{bottom:572.880000px;}
.y6_c00300{bottom:600.780000px;}
.y5_c00300{bottom:622.380000px;}
.y4_c00300{bottom:651.330000px;}
.y3_c00300{bottom:673.680000px;}
.y2_c00300{bottom:701.430000px;}
.y1_c00300{bottom:725.580000px;}
.h6_c00300{height:13.200074px;}
.h7_c00300{height:43.804688px;}
.h2_c00300{height:75.966797px;}
.h3_c00300{height:79.765137px;}
.h5_c00300{height:91.160156px;}
.h4_c00300{height:102.555176px;}
.h1_c00300{height:789.750000px;}
.h0_c00300{height:790.050000px;}
.w2_c00300{width:104.875500px;}
.w0_c00300{width:530.850000px;}
.w1_c00300{width:531.000000px;}
.x0_c00300{left:0.000000px;}
.x1_c00300{left:30.000000px;}
.x2_c00300{left:31.650000px;}
.x3_c00300{left:33.000000px;}
.x4_c00300{left:34.050000px;}
.x5_c00300{left:35.100000px;}
.x6_c00300{left:36.450000px;}
.x8_c00300{left:38.100000px;}
.x9_c00300{left:39.450000px;}
.xa_c00300{left:40.800000px;}
.x7_c00300{left:44.550000px;}
.xc_c00300{left:217.239258px;}
.xb_c00300{left:236.550000px;}
@media print{
.v1_c00300{vertical-align:-16.533333pt;}
.v0_c00300{vertical-align:0.000000pt;}
.ls1_c00300{letter-spacing:0.000000pt;}
.ls2_c00300{letter-spacing:2.666667pt;}
.ls0_c00300{letter-spacing:14.666667pt;}
.ls3_c00300{letter-spacing:26.666667pt;}
.ws0_c00300{word-spacing:-36.533333pt;}
.ws2_c00300{word-spacing:-33.192000pt;}
.ws1_c00300{word-spacing:-25.333333pt;}
.ws3_c00300{word-spacing:-16.162667pt;}
.ws4_c00300{word-spacing:0.000000pt;}
._16_c00300{margin-left:-18.536000pt;}
._14_c00300{margin-left:-13.408000pt;}
._15_c00300{margin-left:-11.018667pt;}
._11_c00300{margin-left:-9.776000pt;}
._13_c00300{margin-left:-8.568000pt;}
._12_c00300{margin-left:-7.416000pt;}
._10_c00300{margin-left:-4.576000pt;}
._b_c00300{margin-left:-3.146667pt;}
._c_c00300{margin-left:-1.728000pt;}
._f_c00300{width:1.114667pt;}
._d_c00300{width:2.141333pt;}
._3_c00300{width:3.466667pt;}
._1_c00300{width:4.800000pt;}
._8_c00300{width:6.080000pt;}
._0_c00300{width:7.306667pt;}
._4_c00300{width:8.320000pt;}
._2_c00300{width:9.333333pt;}
._7_c00300{width:10.240000pt;}
._5_c00300{width:11.200000pt;}
._17_c00300{width:12.554667pt;}
._6_c00300{width:14.933333pt;}
._a_c00300{width:18.880000pt;}
._e_c00300{width:26.125333pt;}
._18_c00300{width:31.818667pt;}
._9_c00300{width:48.746667pt;}
._19_c00300{width:316.640000pt;}
.fs5_c00300{font-size:42.666667pt;}
.fs2_c00300{font-size:50.666667pt;}
.fs0_c00300{font-size:53.333333pt;}
.fs1_c00300{font-size:56.000000pt;}
.fs4_c00300{font-size:64.000000pt;}
.fs3_c00300{font-size:72.000000pt;}
.y0_c00300{bottom:0.000000pt;}
.y1d_c00300{bottom:2.760000pt;}
.y1c_c00300{bottom:6.425206pt;}
.y1b_c00300{bottom:50.426667pt;}
.y1a_c00300{bottom:72.426667pt;}
.y19_c00300{bottom:95.226667pt;}
.y18_c00300{bottom:117.626667pt;}
.y17_c00300{bottom:139.626667pt;}
.y16_c00300{bottom:161.493333pt;}
.y15_c00300{bottom:184.026667pt;}
.y14_c00300{bottom:206.426667pt;}
.y13_c00300{bottom:228.693333pt;}
.y12_c00300{bottom:250.026667pt;}
.y11_c00300{bottom:288.960000pt;}
.y10_c00300{bottom:312.426667pt;}
.yf_c00300{bottom:334.293333pt;}
.ye_c00300{bottom:356.160000pt;}
.yd_c00300{bottom:378.026667pt;}
.yc_c00300{bottom:400.826667pt;}
.yb_c00300{bottom:421.893333pt;}
.ya_c00300{bottom:444.026667pt;}
.y9_c00300{bottom:465.360000pt;}
.y8_c00300{bottom:489.093333pt;}
.y7_c00300{bottom:509.226667pt;}
.y6_c00300{bottom:534.026667pt;}
.y5_c00300{bottom:553.226667pt;}
.y4_c00300{bottom:578.960000pt;}
.y3_c00300{bottom:598.826667pt;}
.y2_c00300{bottom:623.493333pt;}
.y1_c00300{bottom:644.960000pt;}
.h6_c00300{height:11.733399pt;}
.h7_c00300{height:38.937500pt;}
.h2_c00300{height:67.526042pt;}
.h3_c00300{height:70.902344pt;}
.h5_c00300{height:81.031250pt;}
.h4_c00300{height:91.160156pt;}
.h1_c00300{height:702.000000pt;}
.h0_c00300{height:702.266667pt;}
.w2_c00300{width:93.222667pt;}
.w0_c00300{width:471.866667pt;}
.w1_c00300{width:472.000000pt;}
.x0_c00300{left:0.000000pt;}
.x1_c00300{left:26.666667pt;}
.x2_c00300{left:28.133333pt;}
.x3_c00300{left:29.333333pt;}
.x4_c00300{left:30.266667pt;}
.x5_c00300{left:31.200000pt;}
.x6_c00300{left:32.400000pt;}
.x8_c00300{left:33.866667pt;}
.x9_c00300{left:35.066667pt;}
.xa_c00300{left:36.266667pt;}
.x7_c00300{left:39.600000pt;}
.xc_c00300{left:193.101563pt;}
.xb_c00300{left:210.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_322ecfc55133a5087000bae6.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.480469;font-style:normal;font-weight:normal;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_85f547c8cf5353358f608a5a.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:1.219238;font-style: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:3.000000px;}
.ls2_c00301{letter-spacing:6.000000px;}
.sc__c00301{text-shadow:none;}
.sc0_c00301{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00301{-webkit-text-stroke:0px transparent;}
.sc0_c00301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00301{word-spacing:-19.521000px;}
.ws1_c00301{word-spacing:-18.183000px;}
.ws2_c00301{word-spacing:0.000000px;}
._12_c00301{margin-left:-9.120000px;}
._f_c00301{margin-left:-6.237000px;}
._b_c00301{margin-left:-4.143000px;}
._d_c00301{margin-left:-2.874000px;}
._4_c00301{margin-left:-1.560000px;}
._a_c00301{width:1.512000px;}
._8_c00301{width:2.628000px;}
._7_c00301{width:4.392000px;}
._9_c00301{width:5.514000px;}
._6_c00301{width:6.720000px;}
._1_c00301{width:8.580000px;}
._c_c00301{width:9.846000px;}
._0_c00301{width:10.980000px;}
._10_c00301{width:12.027000px;}
._5_c00301{width:13.200000px;}
._13_c00301{width:14.460000px;}
._11_c00301{width:15.492000px;}
._3_c00301{width:16.680000px;}
._2_c00301{width:19.020000px;}
._14_c00301{width:20.151000px;}
._e_c00301{width:25.647000px;}
.fc2_c00301{color:transparent;}
.fc1_c00301{color:rgb(128,128,128);}
.fc0_c00301{color:rgb(0,0,0);}
.fs3_c00301{font-size:48.000000px;}
.fs0_c00301{font-size:60.000000px;}
.fs1_c00301{font-size:63.000000px;}
.fs2_c00301{font-size:81.000000px;}
.y0_c00301{bottom:0.000000px;}
.y1f_c00301{bottom:3.105000px;}
.y1e_c00301{bottom:7.228355px;}
.y1d_c00301{bottom:53.235000px;}
.y1c_c00301{bottom:74.535000px;}
.y1b_c00301{bottom:100.785000px;}
.y1a_c00301{bottom:125.535000px;}
.y19_c00301{bottom:151.185000px;}
.y18_c00301{bottom:177.885000px;}
.y17_c00301{bottom:201.735000px;}
.y16_c00301{bottom:225.735000px;}
.y15_c00301{bottom:250.335000px;}
.y14_c00301{bottom:274.935000px;}
.y13_c00301{bottom:300.285000px;}
.y12_c00301{bottom:323.685000px;}
.y11_c00301{bottom:348.285000px;}
.y10_c00301{bottom:373.185000px;}
.yf_c00301{bottom:399.585000px;}
.ye_c00301{bottom:422.535000px;}
.yd_c00301{bottom:446.535000px;}
.yc_c00301{bottom:470.835000px;}
.yb_c00301{bottom:495.135000px;}
.ya_c00301{bottom:519.735000px;}
.y9_c00301{bottom:543.735000px;}
.y8_c00301{bottom:568.935000px;}
.y7_c00301{bottom:592.635000px;}
.y6_c00301{bottom:618.285000px;}
.y5_c00301{bottom:642.585000px;}
.y4_c00301{bottom:666.885000px;}
.y3_c00301{bottom:691.635000px;}
.y2_c00301{bottom:716.835000px;}
.y1_c00301{bottom:742.035000px;}
.h5_c00301{height:13.200074px;}
.h6_c00301{height:43.804688px;}
.h2_c00301{height:70.224609px;}
.h3_c00301{height:79.765137px;}
.h4_c00301{height:94.803223px;}
.h0_c00301{height:783.525000px;}
.h1_c00301{height:783.750000px;}
.w2_c00301{width:104.875500px;}
.w1_c00301{width:497.250000px;}
.w0_c00301{width:497.325000px;}
.x0_c00301{left:0.000000px;}
.x2_c00301{left:85.050000px;}
.x3_c00301{left:86.850000px;}
.x4_c00301{left:88.050000px;}
.x5_c00301{left:89.400000px;}
.x6_c00301{left:90.450000px;}
.x7_c00301{left:91.800000px;}
.x8_c00301{left:93.900000px;}
.x9_c00301{left:96.150000px;}
.xa_c00301{left:97.500000px;}
.xb_c00301{left:98.850000px;}
.xd_c00301{left:200.476730px;}
.x1_c00301{left:207.450000px;}
.xc_c00301{left:431.100000px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls0_c00301{letter-spacing:0.000000pt;}
.ls1_c00301{letter-spacing:2.666667pt;}
.ls2_c00301{letter-spacing:5.333333pt;}
.ws0_c00301{word-spacing:-17.352000pt;}
.ws1_c00301{word-spacing:-16.162667pt;}
.ws2_c00301{word-spacing:0.000000pt;}
._12_c00301{margin-left:-8.106667pt;}
._f_c00301{margin-left:-5.544000pt;}
._b_c00301{margin-left:-3.682667pt;}
._d_c00301{margin-left:-2.554667pt;}
._4_c00301{margin-left:-1.386667pt;}
._a_c00301{width:1.344000pt;}
._8_c00301{width:2.336000pt;}
._7_c00301{width:3.904000pt;}
._9_c00301{width:4.901333pt;}
._6_c00301{width:5.973333pt;}
._1_c00301{width:7.626667pt;}
._c_c00301{width:8.752000pt;}
._0_c00301{width:9.760000pt;}
._10_c00301{width:10.690667pt;}
._5_c00301{width:11.733333pt;}
._13_c00301{width:12.853333pt;}
._11_c00301{width:13.770667pt;}
._3_c00301{width:14.826667pt;}
._2_c00301{width:16.906667pt;}
._14_c00301{width:17.912000pt;}
._e_c00301{width:22.797333pt;}
.fs3_c00301{font-size:42.666667pt;}
.fs0_c00301{font-size:53.333333pt;}
.fs1_c00301{font-size:56.000000pt;}
.fs2_c00301{font-size:72.000000pt;}
.y0_c00301{bottom:0.000000pt;}
.y1f_c00301{bottom:2.760000pt;}
.y1e_c00301{bottom:6.425204pt;}
.y1d_c00301{bottom:47.320000pt;}
.y1c_c00301{bottom:66.253333pt;}
.y1b_c00301{bottom:89.586667pt;}
.y1a_c00301{bottom:111.586667pt;}
.y19_c00301{bottom:134.386667pt;}
.y18_c00301{bottom:158.120000pt;}
.y17_c00301{bottom:179.320000pt;}
.y16_c00301{bottom:200.653333pt;}
.y15_c00301{bottom:222.520000pt;}
.y14_c00301{bottom:244.386667pt;}
.y13_c00301{bottom:266.920000pt;}
.y12_c00301{bottom:287.720000pt;}
.y11_c00301{bottom:309.586667pt;}
.y10_c00301{bottom:331.720000pt;}
.yf_c00301{bottom:355.186667pt;}
.ye_c00301{bottom:375.586667pt;}
.yd_c00301{bottom:396.920000pt;}
.yc_c00301{bottom:418.520000pt;}
.yb_c00301{bottom:440.120000pt;}
.ya_c00301{bottom:461.986667pt;}
.y9_c00301{bottom:483.320000pt;}
.y8_c00301{bottom:505.720000pt;}
.y7_c00301{bottom:526.786667pt;}
.y6_c00301{bottom:549.586667pt;}
.y5_c00301{bottom:571.186667pt;}
.y4_c00301{bottom:592.786667pt;}
.y3_c00301{bottom:614.786667pt;}
.y2_c00301{bottom:637.186667pt;}
.y1_c00301{bottom:659.586667pt;}
.h5_c00301{height:11.733399pt;}
.h6_c00301{height:38.937500pt;}
.h2_c00301{height:62.421875pt;}
.h3_c00301{height:70.902344pt;}
.h4_c00301{height:84.269531pt;}
.h0_c00301{height:696.466667pt;}
.h1_c00301{height:696.666667pt;}
.w2_c00301{width:93.222667pt;}
.w1_c00301{width:442.000000pt;}
.w0_c00301{width:442.066667pt;}
.x0_c00301{left:0.000000pt;}
.x2_c00301{left:75.600000pt;}
.x3_c00301{left:77.200000pt;}
.x4_c00301{left:78.266667pt;}
.x5_c00301{left:79.466667pt;}
.x6_c00301{left:80.400000pt;}
.x7_c00301{left:81.600000pt;}
.x8_c00301{left:83.466667pt;}
.x9_c00301{left:85.466667pt;}
.xa_c00301{left:86.666667pt;}
.xb_c00301{left:87.866667pt;}
.xd_c00301{left:178.201538pt;}
.x1_c00301{left:184.400000pt;}
.xc_c00301{left:383.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7a71dd9f189175bd5be9c767.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.480469;font-style:normal;font-weight:normal;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_52e6fe5f74cb045902666e97.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00302;src:url('chunks/assets/font_8a2633eade60543b9dded225.woff2')format("woff");}.ff3_c00302{font-family:ff3_c00302;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00302;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00302{font-family:ff4_c00302;line-height:1.219238;font-style: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.000000px;}
.ls0_c00302{letter-spacing:2.100000px;}
.ls3_c00302{letter-spacing:3.000000px;}
.ls1_c00302{letter-spacing:9.300000px;}
.ls4_c00302{letter-spacing:30.000000px;}
.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:-53.430000px;}
.ws3_c00302{word-spacing:-48.981000px;}
.ws2_c00302{word-spacing:-18.183000px;}
.ws4_c00302{word-spacing:0.000000px;}
.ws1_c00302{word-spacing:3.111000px;}
._16_c00302{margin-left:-31.179000px;}
._10_c00302{margin-left:-9.018000px;}
._14_c00302{margin-left:-7.056000px;}
._15_c00302{margin-left:-5.439000px;}
._c_c00302{margin-left:-4.281000px;}
._4_c00302{margin-left:-2.817000px;}
._7_c00302{margin-left:-1.122000px;}
._2_c00302{width:1.638000px;}
._0_c00302{width:3.354000px;}
._1_c00302{width:4.368000px;}
._a_c00302{width:5.394000px;}
._3_c00302{width:6.411000px;}
._f_c00302{width:7.434000px;}
._5_c00302{width:8.448000px;}
._e_c00302{width:9.483000px;}
._6_c00302{width:10.521000px;}
._9_c00302{width:12.243000px;}
._d_c00302{width:13.416000px;}
._8_c00302{width:15.045000px;}
._b_c00302{width:16.410000px;}
._11_c00302{width:19.377000px;}
._13_c00302{width:27.126000px;}
._12_c00302{width:28.530000px;}
._18_c00302{width:324.462000px;}
._17_c00302{width:900.744000px;}
.fc2_c00302{color:transparent;}
.fc1_c00302{color:rgb(128,128,128);}
.fc0_c00302{color:rgb(0,0,0);}
.fs3_c00302{font-size:48.000000px;}
.fs2_c00302{font-size:57.000000px;}
.fs1_c00302{font-size:63.000000px;}
.fs0_c00302{font-size:78.000000px;}
.y0_c00302{bottom:0.000000px;}
.y20_c00302{bottom:3.105000px;}
.y1f_c00302{bottom:7.228355px;}
.y1e_c00302{bottom:44.085000px;}
.y1d_c00302{bottom:53.985000px;}
.y1c_c00302{bottom:71.235000px;}
.y1b_c00302{bottom:96.885000px;}
.y1a_c00302{bottom:122.085000px;}
.y19_c00302{bottom:147.135000px;}
.y18_c00302{bottom:171.135000px;}
.y17_c00302{bottom:197.085000px;}
.y16_c00302{bottom:221.385000px;}
.y15_c00302{bottom:246.285000px;}
.y14_c00302{bottom:270.585000px;}
.y13_c00302{bottom:293.835000px;}
.y12_c00302{bottom:316.935000px;}
.y11_c00302{bottom:341.835000px;}
.y10_c00302{bottom:366.135000px;}
.yf_c00302{bottom:390.735000px;}
.ye_c00302{bottom:415.485000px;}
.yd_c00302{bottom:440.085000px;}
.yc_c00302{bottom:464.985000px;}
.yb_c00302{bottom:489.285000px;}
.ya_c00302{bottom:513.885000px;}
.y9_c00302{bottom:538.335000px;}
.y8_c00302{bottom:563.235000px;}
.y7_c00302{bottom:587.835000px;}
.y6_c00302{bottom:612.585000px;}
.y5_c00302{bottom:636.885000px;}
.y4_c00302{bottom:661.035000px;}
.y3_c00302{bottom:685.485000px;}
.y2_c00302{bottom:709.785000px;}
.y1_c00302{bottom:735.435000px;}
.h4_c00302{height:13.200074px;}
.h5_c00302{height:43.804688px;}
.h3_c00302{height:79.765137px;}
.h2_c00302{height:91.291992px;}
.h0_c00302{height:778.125000px;}
.h1_c00302{height:778.500000px;}
.w2_c00302{width:104.875500px;}
.w1_c00302{width:515.250000px;}
.w0_c00302{width:515.400000px;}
.x0_c00302{left:0.000000px;}
.xb_c00302{left:35.550000px;}
.xa_c00302{left:37.200000px;}
.x9_c00302{left:39.450000px;}
.x8_c00302{left:40.500000px;}
.x7_c00302{left:42.450000px;}
.x6_c00302{left:45.000000px;}
.x5_c00302{left:46.950000px;}
.x4_c00302{left:48.600000px;}
.x3_c00302{left:49.950000px;}
.x2_c00302{left:51.000000px;}
.x1_c00302{left:173.850000px;}
.xd_c00302{left:209.514267px;}
.xc_c00302{left:274.800000px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls2_c00302{letter-spacing:0.000000pt;}
.ls0_c00302{letter-spacing:1.866667pt;}
.ls3_c00302{letter-spacing:2.666667pt;}
.ls1_c00302{letter-spacing:8.266667pt;}
.ls4_c00302{letter-spacing:26.666667pt;}
.ws0_c00302{word-spacing:-47.493333pt;}
.ws3_c00302{word-spacing:-43.538667pt;}
.ws2_c00302{word-spacing:-16.162667pt;}
.ws4_c00302{word-spacing:0.000000pt;}
.ws1_c00302{word-spacing:2.765333pt;}
._16_c00302{margin-left:-27.714667pt;}
._10_c00302{margin-left:-8.016000pt;}
._14_c00302{margin-left:-6.272000pt;}
._15_c00302{margin-left:-4.834667pt;}
._c_c00302{margin-left:-3.805333pt;}
._4_c00302{margin-left:-2.504000pt;}
._7_c00302{margin-left:-0.997333pt;}
._2_c00302{width:1.456000pt;}
._0_c00302{width:2.981333pt;}
._1_c00302{width:3.882667pt;}
._a_c00302{width:4.794667pt;}
._3_c00302{width:5.698667pt;}
._f_c00302{width:6.608000pt;}
._5_c00302{width:7.509333pt;}
._e_c00302{width:8.429333pt;}
._6_c00302{width:9.352000pt;}
._9_c00302{width:10.882667pt;}
._d_c00302{width:11.925333pt;}
._8_c00302{width:13.373333pt;}
._b_c00302{width:14.586667pt;}
._11_c00302{width:17.224000pt;}
._13_c00302{width:24.112000pt;}
._12_c00302{width:25.360000pt;}
._18_c00302{width:288.410667pt;}
._17_c00302{width:800.661333pt;}
.fs3_c00302{font-size:42.666667pt;}
.fs2_c00302{font-size:50.666667pt;}
.fs1_c00302{font-size:56.000000pt;}
.fs0_c00302{font-size:69.333333pt;}
.y0_c00302{bottom:0.000000pt;}
.y20_c00302{bottom:2.760000pt;}
.y1f_c00302{bottom:6.425204pt;}
.y1e_c00302{bottom:39.186667pt;}
.y1d_c00302{bottom:47.986667pt;}
.y1c_c00302{bottom:63.320000pt;}
.y1b_c00302{bottom:86.120000pt;}
.y1a_c00302{bottom:108.520000pt;}
.y19_c00302{bottom:130.786667pt;}
.y18_c00302{bottom:152.120000pt;}
.y17_c00302{bottom:175.186667pt;}
.y16_c00302{bottom:196.786667pt;}
.y15_c00302{bottom:218.920000pt;}
.y14_c00302{bottom:240.520000pt;}
.y13_c00302{bottom:261.186667pt;}
.y12_c00302{bottom:281.720000pt;}
.y11_c00302{bottom:303.853333pt;}
.y10_c00302{bottom:325.453333pt;}
.yf_c00302{bottom:347.320000pt;}
.ye_c00302{bottom:369.320000pt;}
.yd_c00302{bottom:391.186667pt;}
.yc_c00302{bottom:413.320000pt;}
.yb_c00302{bottom:434.920000pt;}
.ya_c00302{bottom:456.786667pt;}
.y9_c00302{bottom:478.520000pt;}
.y8_c00302{bottom:500.653333pt;}
.y7_c00302{bottom:522.520000pt;}
.y6_c00302{bottom:544.520000pt;}
.y5_c00302{bottom:566.120000pt;}
.y4_c00302{bottom:587.586667pt;}
.y3_c00302{bottom:609.320000pt;}
.y2_c00302{bottom:630.920000pt;}
.y1_c00302{bottom:653.720000pt;}
.h4_c00302{height:11.733399pt;}
.h5_c00302{height:38.937500pt;}
.h3_c00302{height:70.902344pt;}
.h2_c00302{height:81.148438pt;}
.h0_c00302{height:691.666667pt;}
.h1_c00302{height:692.000000pt;}
.w2_c00302{width:93.222667pt;}
.w1_c00302{width:458.000000pt;}
.w0_c00302{width:458.133333pt;}
.x0_c00302{left:0.000000pt;}
.xb_c00302{left:31.600000pt;}
.xa_c00302{left:33.066667pt;}
.x9_c00302{left:35.066667pt;}
.x8_c00302{left:36.000000pt;}
.x7_c00302{left:37.733333pt;}
.x6_c00302{left:40.000000pt;}
.x5_c00302{left:41.733333pt;}
.x4_c00302{left:43.200000pt;}
.x3_c00302{left:44.400000pt;}
.x2_c00302{left:45.333333pt;}
.x1_c00302{left:154.533333pt;}
.xd_c00302{left:186.234904pt;}
.xc_c00302{left:244.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_710be776e0f3b54842ea5ca4.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.480469;font-style:normal;font-weight:normal;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_ed4043842499b5bfa879f58d.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:1.568848;font-style:normal;font-weight:normal;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_2bfd9fb1db14e8667b5c714c.woff2')format("woff");}.ff3_c00303{font-family:ff3_c00303;line-height:1.575000;font-style:normal;font-weight:normal;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_63bba7e2c951074509232b2a.woff2')format("woff");}.ff4_c00303{font-family:ff4_c00303;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00303;src:url('chunks/assets/font_4d81bb6d180c3b5c8c6008c0.woff2')format("woff");}.ff5_c00303{font-family:ff5_c00303;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00303;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00303{font-family:ff6_c00303;line-height:1.219238;font-style: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;}
.ls3_c00303{letter-spacing:-3.000000px;}
.ls0_c00303{letter-spacing:0.000000px;}
.ls4_c00303{letter-spacing:3.000000px;}
.ls1_c00303{letter-spacing:6.000000px;}
.ls2_c00303{letter-spacing:27.000000px;}
.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:-38.511000px;}
.ws1_c00303{word-spacing:-26.658000px;}
.ws4_c00303{word-spacing:-19.521000px;}
.ws5_c00303{word-spacing:-18.183000px;}
.ws2_c00303{word-spacing:-17.616000px;}
.ws3_c00303{word-spacing:-17.352000px;}
.ws6_c00303{word-spacing:0.000000px;}
._15_c00303{margin-left:-13.419000px;}
._3_c00303{margin-left:-11.988000px;}
._12_c00303{margin-left:-10.224000px;}
._9_c00303{margin-left:-8.697000px;}
._11_c00303{margin-left:-6.702000px;}
._b_c00303{margin-left:-5.511000px;}
._0_c00303{margin-left:-4.212000px;}
._2_c00303{margin-left:-2.673000px;}
._1_c00303{margin-left:-1.377000px;}
._8_c00303{width:1.233000px;}
._c_c00303{width:2.313000px;}
._4_c00303{width:3.321000px;}
._5_c00303{width:5.022000px;}
._6_c00303{width:6.300000px;}
._18_c00303{width:7.305000px;}
._7_c00303{width:8.328000px;}
._e_c00303{width:9.522000px;}
._d_c00303{width:10.557000px;}
._a_c00303{width:12.411000px;}
._13_c00303{width:13.698000px;}
._16_c00303{width:16.605000px;}
._17_c00303{width:20.022000px;}
._10_c00303{width:35.109000px;}
._f_c00303{width:62.481000px;}
._14_c00303{width:391.770000px;}
.fc2_c00303{color:transparent;}
.fc1_c00303{color:rgb(128,128,128);}
.fc0_c00303{color:rgb(0,0,0);}
.fs5_c00303{font-size:48.000000px;}
.fs7_c00303{font-size:63.000000px;}
.fs3_c00303{font-size:66.000000px;}
.fs1_c00303{font-size:69.000000px;}
.fs6_c00303{font-size:72.000000px;}
.fs0_c00303{font-size:81.000000px;}
.fs4_c00303{font-size:87.000000px;}
.fs2_c00303{font-size:99.000000px;}
.y0_c00303{bottom:0.000000px;}
.y1c_c00303{bottom:3.105000px;}
.y1b_c00303{bottom:7.228355px;}
.y1a_c00303{bottom:62.385000px;}
.y19_c00303{bottom:85.935000px;}
.y18_c00303{bottom:112.335000px;}
.y17_c00303{bottom:137.235000px;}
.y16_c00303{bottom:162.585000px;}
.y15_c00303{bottom:187.935000px;}
.y14_c00303{bottom:212.835000px;}
.y13_c00303{bottom:237.585000px;}
.y12_c00303{bottom:262.785000px;}
.y11_c00303{bottom:286.785000px;}
.y10_c00303{bottom:311.835000px;}
.yf_c00303{bottom:336.435000px;}
.ye_c00303{bottom:361.485000px;}
.yd_c00303{bottom:385.035000px;}
.yc_c00303{bottom:409.635000px;}
.yb_c00303{bottom:434.685000px;}
.ya_c00303{bottom:491.685000px;}
.y9_c00303{bottom:527.085000px;}
.y8_c00303{bottom:543.285000px;}
.y7_c00303{bottom:569.685000px;}
.y6_c00303{bottom:597.735000px;}
.y5_c00303{bottom:625.335000px;}
.y4_c00303{bottom:652.335000px;}
.y3_c00303{bottom:704.385000px;}
.y2_c00303{bottom:728.685000px;}
.y1_c00303{bottom:754.335000px;}
.hb_c00303{height:13.200074px;}
.hc_c00303{height:43.804688px;}
.h7_c00303{height:52.032000px;}
.h9_c00303{height:79.765137px;}
.h8_c00303{height:84.269531px;}
.h4_c00303{height:87.361816px;}
.ha_c00303{height:94.803223px;}
.h5_c00303{height:101.825684px;}
.h2_c00303{height:102.555176px;}
.h3_c00303{height:105.633000px;}
.h6_c00303{height:110.151855px;}
.h0_c00303{height:788.925000px;}
.h1_c00303{height:789.000000px;}
.w2_c00303{width:104.875500px;}
.w0_c00303{width:504.375000px;}
.w1_c00303{width:504.750000px;}
.x0_c00303{left:0.000000px;}
.x9_c00303{left:84.750000px;}
.x2_c00303{left:86.100000px;}
.x3_c00303{left:87.150000px;}
.x5_c00303{left:89.400000px;}
.xc_c00303{left:98.250000px;}
.xd_c00303{left:99.300000px;}
.xe_c00303{left:101.250000px;}
.xf_c00303{left:103.950000px;}
.x6_c00303{left:105.600000px;}
.x4_c00303{left:113.100000px;}
.x7_c00303{left:150.900000px;}
.x11_c00303{left:204.001740px;}
.x1_c00303{left:212.400000px;}
.xb_c00303{left:213.750000px;}
.x8_c00303{left:216.750000px;}
.xa_c00303{left:246.750000px;}
.x10_c00303{left:465.000000px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls3_c00303{letter-spacing:-2.666667pt;}
.ls0_c00303{letter-spacing:0.000000pt;}
.ls4_c00303{letter-spacing:2.666667pt;}
.ls1_c00303{letter-spacing:5.333333pt;}
.ls2_c00303{letter-spacing:24.000000pt;}
.ws0_c00303{word-spacing:-34.232000pt;}
.ws1_c00303{word-spacing:-23.696000pt;}
.ws4_c00303{word-spacing:-17.352000pt;}
.ws5_c00303{word-spacing:-16.162667pt;}
.ws2_c00303{word-spacing:-15.658667pt;}
.ws3_c00303{word-spacing:-15.424000pt;}
.ws6_c00303{word-spacing:0.000000pt;}
._15_c00303{margin-left:-11.928000pt;}
._3_c00303{margin-left:-10.656000pt;}
._12_c00303{margin-left:-9.088000pt;}
._9_c00303{margin-left:-7.730667pt;}
._11_c00303{margin-left:-5.957333pt;}
._b_c00303{margin-left:-4.898667pt;}
._0_c00303{margin-left:-3.744000pt;}
._2_c00303{margin-left:-2.376000pt;}
._1_c00303{margin-left:-1.224000pt;}
._8_c00303{width:1.096000pt;}
._c_c00303{width:2.056000pt;}
._4_c00303{width:2.952000pt;}
._5_c00303{width:4.464000pt;}
._6_c00303{width:5.600000pt;}
._18_c00303{width:6.493333pt;}
._7_c00303{width:7.402667pt;}
._e_c00303{width:8.464000pt;}
._d_c00303{width:9.384000pt;}
._a_c00303{width:11.032000pt;}
._13_c00303{width:12.176000pt;}
._16_c00303{width:14.760000pt;}
._17_c00303{width:17.797333pt;}
._10_c00303{width:31.208000pt;}
._f_c00303{width:55.538667pt;}
._14_c00303{width:348.240000pt;}
.fs5_c00303{font-size:42.666667pt;}
.fs7_c00303{font-size:56.000000pt;}
.fs3_c00303{font-size:58.666667pt;}
.fs1_c00303{font-size:61.333333pt;}
.fs6_c00303{font-size:64.000000pt;}
.fs0_c00303{font-size:72.000000pt;}
.fs4_c00303{font-size:77.333333pt;}
.fs2_c00303{font-size:88.000000pt;}
.y0_c00303{bottom:0.000000pt;}
.y1c_c00303{bottom:2.760000pt;}
.y1b_c00303{bottom:6.425204pt;}
.y1a_c00303{bottom:55.453333pt;}
.y19_c00303{bottom:76.386667pt;}
.y18_c00303{bottom:99.853333pt;}
.y17_c00303{bottom:121.986667pt;}
.y16_c00303{bottom:144.520000pt;}
.y15_c00303{bottom:167.053333pt;}
.y14_c00303{bottom:189.186667pt;}
.y13_c00303{bottom:211.186667pt;}
.y12_c00303{bottom:233.586667pt;}
.y11_c00303{bottom:254.920000pt;}
.y10_c00303{bottom:277.186667pt;}
.yf_c00303{bottom:299.053333pt;}
.ye_c00303{bottom:321.320000pt;}
.yd_c00303{bottom:342.253333pt;}
.yc_c00303{bottom:364.120000pt;}
.yb_c00303{bottom:386.386667pt;}
.ya_c00303{bottom:437.053333pt;}
.y9_c00303{bottom:468.520000pt;}
.y8_c00303{bottom:482.920000pt;}
.y7_c00303{bottom:506.386667pt;}
.y6_c00303{bottom:531.320000pt;}
.y5_c00303{bottom:555.853333pt;}
.y4_c00303{bottom:579.853333pt;}
.y3_c00303{bottom:626.120000pt;}
.y2_c00303{bottom:647.720000pt;}
.y1_c00303{bottom:670.520000pt;}
.hb_c00303{height:11.733399pt;}
.hc_c00303{height:38.937500pt;}
.h7_c00303{height:46.250667pt;}
.h9_c00303{height:70.902344pt;}
.h8_c00303{height:74.906250pt;}
.h4_c00303{height:77.654948pt;}
.ha_c00303{height:84.269531pt;}
.h5_c00303{height:90.511719pt;}
.h2_c00303{height:91.160156pt;}
.h3_c00303{height:93.896000pt;}
.h6_c00303{height:97.912760pt;}
.h0_c00303{height:701.266667pt;}
.h1_c00303{height:701.333333pt;}
.w2_c00303{width:93.222667pt;}
.w0_c00303{width:448.333333pt;}
.w1_c00303{width:448.666667pt;}
.x0_c00303{left:0.000000pt;}
.x9_c00303{left:75.333333pt;}
.x2_c00303{left:76.533333pt;}
.x3_c00303{left:77.466667pt;}
.x5_c00303{left:79.466667pt;}
.xc_c00303{left:87.333333pt;}
.xd_c00303{left:88.266667pt;}
.xe_c00303{left:90.000000pt;}
.xf_c00303{left:92.400000pt;}
.x6_c00303{left:93.866667pt;}
.x4_c00303{left:100.533333pt;}
.x7_c00303{left:134.133333pt;}
.x11_c00303{left:181.334880pt;}
.x1_c00303{left:188.800000pt;}
.xb_c00303{left:190.000000pt;}
.x8_c00303{left:192.666667pt;}
.xa_c00303{left:219.333333pt;}
.x10_c00303{left:413.333333pt;}
}





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

.ir_c00304:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00304{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00304;src:url('chunks/assets/font_5bfdf556d765867d3d36631c.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.568848;font-style:normal;font-weight:normal;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_44f1918518e101f84f77960a.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:1.568848;font-style:normal;font-weight:normal;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_8e86d80b593126133b49aa25.woff2')format("woff");}.ff3_c00304{font-family:ff3_c00304;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00304;src:url('chunks/assets/font_b1890994def49b023c8de04e.woff2')format("woff");}.ff4_c00304{font-family:ff4_c00304;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00304;src:url('chunks/assets/font_9b13b2c8dfa8491b59d2dc69.woff2')format("woff");}.ff5_c00304{font-family:ff5_c00304;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00304;src:url('chunks/assets/font_629205d752f635e6c78e8c95.woff2')format("woff");}.ff6_c00304{font-family:ff6_c00304;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00304;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00304{font-family:ff7_c00304;line-height:1.219238;font-style: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;}
.ls8_c00304{letter-spacing:0.000000px;}
.ls6_c00304{letter-spacing:2.700000px;}
.ls9_c00304{letter-spacing:3.000000px;}
.ls1_c00304{letter-spacing:7.113000px;}
.ls2_c00304{letter-spacing:9.000000px;}
.ls5_c00304{letter-spacing:11.100000px;}
.ls7_c00304{letter-spacing:14.100000px;}
.ls0_c00304{letter-spacing:15.000000px;}
.ls4_c00304{letter-spacing:20.700000px;}
.ls3_c00304{letter-spacing:39.300000px;}
.sc__c00304{text-shadow:none;}
.sc0_c00304{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00304{-webkit-text-stroke:0px transparent;}
.sc0_c00304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00304{word-spacing:-37.341000px;}
.ws4_c00304{word-spacing:-30.000000px;}
.ws3_c00304{word-spacing:-18.183000px;}
.ws5_c00304{word-spacing:-17.352000px;}
.ws0_c00304{word-spacing:-16.002000px;}
.ws1_c00304{word-spacing:-13.737000px;}
.ws6_c00304{word-spacing:-0.732000px;}
.ws7_c00304{word-spacing:0.000000px;}
._15_c00304{margin-left:-30.456000px;}
._16_c00304{margin-left:-17.310000px;}
._19_c00304{margin-left:-12.852000px;}
._18_c00304{margin-left:-11.784000px;}
._12_c00304{margin-left:-9.576000px;}
._17_c00304{margin-left:-8.226000px;}
._e_c00304{margin-left:-7.086000px;}
._13_c00304{margin-left:-5.877000px;}
._f_c00304{margin-left:-4.374000px;}
._11_c00304{margin-left:-2.778000px;}
._6_c00304{margin-left:-1.764000px;}
._3_c00304{width:1.617000px;}
._4_c00304{width:2.646000px;}
._5_c00304{width:3.924000px;}
._2_c00304{width:4.959000px;}
._0_c00304{width:6.612000px;}
._1_c00304{width:7.980000px;}
._10_c00304{width:9.213000px;}
._a_c00304{width:10.308000px;}
._8_c00304{width:11.343000px;}
._9_c00304{width:12.435000px;}
._14_c00304{width:13.491000px;}
._7_c00304{width:14.820000px;}
._b_c00304{width:18.591000px;}
._1a_c00304{width:19.974000px;}
._c_c00304{width:21.870000px;}
._d_c00304{width:24.756000px;}
._1c_c00304{width:445.668000px;}
._1b_c00304{width:760.812000px;}
.fc2_c00304{color:transparent;}
.fc1_c00304{color:rgb(128,128,128);}
.fc0_c00304{color:rgb(0,0,0);}
.fs5_c00304{font-size:48.000000px;}
.fs0_c00304{font-size:57.000000px;}
.fs2_c00304{font-size:60.000000px;}
.fs1_c00304{font-size:63.000000px;}
.fs4_c00304{font-size:72.000000px;}
.fs3_c00304{font-size:81.000000px;}
.y0_c00304{bottom:0.000000px;}
.y1f_c00304{bottom:3.105000px;}
.y1e_c00304{bottom:7.228369px;}
.y1c_c00304{bottom:41.220000px;}
.y1b_c00304{bottom:66.120000px;}
.y1a_c00304{bottom:91.770000px;}
.y19_c00304{bottom:116.670000px;}
.y18_c00304{bottom:141.720000px;}
.y17_c00304{bottom:166.320000px;}
.y16_c00304{bottom:191.970000px;}
.y15_c00304{bottom:217.320000px;}
.y14_c00304{bottom:241.920000px;}
.y13_c00304{bottom:266.520000px;}
.y12_c00304{bottom:291.270000px;}
.y11_c00304{bottom:314.220000px;}
.y10_c00304{bottom:337.170000px;}
.yf_c00304{bottom:361.470000px;}
.ye_c00304{bottom:386.370000px;}
.yd_c00304{bottom:410.970000px;}
.yc_c00304{bottom:435.720000px;}
.yb_c00304{bottom:460.920000px;}
.ya_c00304{bottom:484.620000px;}
.y9_c00304{bottom:509.520000px;}
.y8_c00304{bottom:534.570000px;}
.y7_c00304{bottom:559.470000px;}
.y6_c00304{bottom:583.920000px;}
.y1d_c00304{bottom:600.720000px;}
.y5_c00304{bottom:608.070000px;}
.y4_c00304{bottom:630.420000px;}
.y3_c00304{bottom:656.670000px;}
.y2_c00304{bottom:684.120000px;}
.y1_c00304{bottom:705.420000px;}
.h6_c00304{height:13.200073px;}
.h7_c00304{height:43.804688px;}
.h3_c00304{height:72.168457px;}
.h2_c00304{height:79.765137px;}
.h5_c00304{height:91.160156px;}
.h4_c00304{height:94.803223px;}
.h0_c00304{height:781.350000px;}
.h1_c00304{height:781.500000px;}
.w2_c00304{width:104.875500px;}
.w1_c00304{width:552.000000px;}
.w0_c00304{width:552.150000px;}
.x0_c00304{left:0.000000px;}
.x1_c00304{left:38.250000px;}
.x2_c00304{left:40.500000px;}
.x3_c00304{left:41.550000px;}
.x4_c00304{left:43.800000px;}
.x5_c00304{left:47.850000px;}
.x7_c00304{left:227.889267px;}
.x6_c00304{left:473.850000px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls8_c00304{letter-spacing:0.000000pt;}
.ls6_c00304{letter-spacing:2.400000pt;}
.ls9_c00304{letter-spacing:2.666667pt;}
.ls1_c00304{letter-spacing:6.322667pt;}
.ls2_c00304{letter-spacing:8.000000pt;}
.ls5_c00304{letter-spacing:9.866667pt;}
.ls7_c00304{letter-spacing:12.533333pt;}
.ls0_c00304{letter-spacing:13.333333pt;}
.ls4_c00304{letter-spacing:18.400000pt;}
.ls3_c00304{letter-spacing:34.933333pt;}
.ws2_c00304{word-spacing:-33.192000pt;}
.ws4_c00304{word-spacing:-26.666667pt;}
.ws3_c00304{word-spacing:-16.162667pt;}
.ws5_c00304{word-spacing:-15.424000pt;}
.ws0_c00304{word-spacing:-14.224000pt;}
.ws1_c00304{word-spacing:-12.210667pt;}
.ws6_c00304{word-spacing:-0.650667pt;}
.ws7_c00304{word-spacing:0.000000pt;}
._15_c00304{margin-left:-27.072000pt;}
._16_c00304{margin-left:-15.386667pt;}
._19_c00304{margin-left:-11.424000pt;}
._18_c00304{margin-left:-10.474667pt;}
._12_c00304{margin-left:-8.512000pt;}
._17_c00304{margin-left:-7.312000pt;}
._e_c00304{margin-left:-6.298667pt;}
._13_c00304{margin-left:-5.224000pt;}
._f_c00304{margin-left:-3.888000pt;}
._11_c00304{margin-left:-2.469333pt;}
._6_c00304{margin-left:-1.568000pt;}
._3_c00304{width:1.437333pt;}
._4_c00304{width:2.352000pt;}
._5_c00304{width:3.488000pt;}
._2_c00304{width:4.408000pt;}
._0_c00304{width:5.877333pt;}
._1_c00304{width:7.093333pt;}
._10_c00304{width:8.189333pt;}
._a_c00304{width:9.162667pt;}
._8_c00304{width:10.082667pt;}
._9_c00304{width:11.053333pt;}
._14_c00304{width:11.992000pt;}
._7_c00304{width:13.173333pt;}
._b_c00304{width:16.525333pt;}
._1a_c00304{width:17.754667pt;}
._c_c00304{width:19.440000pt;}
._d_c00304{width:22.005333pt;}
._1c_c00304{width:396.149333pt;}
._1b_c00304{width:676.277333pt;}
.fs5_c00304{font-size:42.666667pt;}
.fs0_c00304{font-size:50.666667pt;}
.fs2_c00304{font-size:53.333333pt;}
.fs1_c00304{font-size:56.000000pt;}
.fs4_c00304{font-size:64.000000pt;}
.fs3_c00304{font-size:72.000000pt;}
.y0_c00304{bottom:0.000000pt;}
.y1f_c00304{bottom:2.760000pt;}
.y1e_c00304{bottom:6.425217pt;}
.y1c_c00304{bottom:36.640000pt;}
.y1b_c00304{bottom:58.773333pt;}
.y1a_c00304{bottom:81.573333pt;}
.y19_c00304{bottom:103.706667pt;}
.y18_c00304{bottom:125.973333pt;}
.y17_c00304{bottom:147.840000pt;}
.y16_c00304{bottom:170.640000pt;}
.y15_c00304{bottom:193.173333pt;}
.y14_c00304{bottom:215.040000pt;}
.y13_c00304{bottom:236.906667pt;}
.y12_c00304{bottom:258.906667pt;}
.y11_c00304{bottom:279.306667pt;}
.y10_c00304{bottom:299.706667pt;}
.yf_c00304{bottom:321.306667pt;}
.ye_c00304{bottom:343.440000pt;}
.yd_c00304{bottom:365.306667pt;}
.yc_c00304{bottom:387.306667pt;}
.yb_c00304{bottom:409.706667pt;}
.ya_c00304{bottom:430.773333pt;}
.y9_c00304{bottom:452.906667pt;}
.y8_c00304{bottom:475.173333pt;}
.y7_c00304{bottom:497.306667pt;}
.y6_c00304{bottom:519.040000pt;}
.y1d_c00304{bottom:533.973333pt;}
.y5_c00304{bottom:540.506667pt;}
.y4_c00304{bottom:560.373333pt;}
.y3_c00304{bottom:583.706667pt;}
.y2_c00304{bottom:608.106667pt;}
.y1_c00304{bottom:627.040000pt;}
.h6_c00304{height:11.733399pt;}
.h7_c00304{height:38.937500pt;}
.h3_c00304{height:64.149740pt;}
.h2_c00304{height:70.902344pt;}
.h5_c00304{height:81.031250pt;}
.h4_c00304{height:84.269531pt;}
.h0_c00304{height:694.533333pt;}
.h1_c00304{height:694.666667pt;}
.w2_c00304{width:93.222667pt;}
.w1_c00304{width:490.666667pt;}
.w0_c00304{width:490.800000pt;}
.x0_c00304{left:0.000000pt;}
.x1_c00304{left:34.000000pt;}
.x2_c00304{left:36.000000pt;}
.x3_c00304{left:36.933333pt;}
.x4_c00304{left:38.933333pt;}
.x5_c00304{left:42.533333pt;}
.x7_c00304{left:202.568237pt;}
.x6_c00304{left:421.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a309b1834ac211f68c9e074f.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.480469;font-style:normal;font-weight:normal;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_780b1db8e4ea8a5f38cd329c.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00305{font-family:ff3_c00305;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00305{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00305{vertical-align:0.000000px;}
.ls1_c00305{letter-spacing:0.000000px;}
.ls0_c00305{letter-spacing:3.000000px;}
.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:-17.352000px;}
.ws1_c00305{word-spacing:0.000000px;}
._14_c00305{margin-left:-15.744000px;}
._c_c00305{margin-left:-12.600000px;}
._a_c00305{margin-left:-10.296000px;}
._b_c00305{margin-left:-8.424000px;}
._12_c00305{margin-left:-6.408000px;}
._9_c00305{margin-left:-5.040000px;}
._7_c00305{margin-left:-3.888000px;}
._11_c00305{margin-left:-2.880000px;}
._8_c00305{margin-left:-1.728000px;}
._d_c00305{width:1.080000px;}
._4_c00305{width:2.520000px;}
._5_c00305{width:4.104000px;}
._6_c00305{width:5.280000px;}
._f_c00305{width:6.624000px;}
._1_c00305{width:7.680000px;}
._2_c00305{width:9.480000px;}
._e_c00305{width:10.536000px;}
._3_c00305{width:12.480000px;}
._13_c00305{width:13.872000px;}
._10_c00305{width:15.696000px;}
._0_c00305{width:19.560000px;}
.fc2_c00305{color:transparent;}
.fc1_c00305{color:rgb(128,128,128);}
.fc0_c00305{color:rgb(0,0,0);}
.fs2_c00305{font-size:48.000000px;}
.fs0_c00305{font-size:60.000000px;}
.fs1_c00305{font-size:72.000000px;}
.y0_c00305{bottom:0.000000px;}
.y1f_c00305{bottom:3.105000px;}
.y1e_c00305{bottom:7.228369px;}
.y1d_c00305{bottom:47.220000px;}
.y1c_c00305{bottom:72.270000px;}
.y1b_c00305{bottom:97.770000px;}
.y1a_c00305{bottom:122.820000px;}
.y19_c00305{bottom:148.470000px;}
.y18_c00305{bottom:173.070000px;}
.y17_c00305{bottom:198.420000px;}
.y16_c00305{bottom:223.020000px;}
.y15_c00305{bottom:247.770000px;}
.y14_c00305{bottom:271.620000px;}
.y13_c00305{bottom:296.220000px;}
.y12_c00305{bottom:321.270000px;}
.y11_c00305{bottom:345.270000px;}
.y10_c00305{bottom:370.620000px;}
.yf_c00305{bottom:394.770000px;}
.ye_c00305{bottom:419.070000px;}
.yd_c00305{bottom:443.520000px;}
.yc_c00305{bottom:467.370000px;}
.yb_c00305{bottom:491.070000px;}
.ya_c00305{bottom:516.270000px;}
.y9_c00305{bottom:541.320000px;}
.y8_c00305{bottom:565.320000px;}
.y7_c00305{bottom:590.220000px;}
.y6_c00305{bottom:614.970000px;}
.y5_c00305{bottom:638.820000px;}
.y4_c00305{bottom:663.420000px;}
.y3_c00305{bottom:688.170000px;}
.y2_c00305{bottom:711.420000px;}
.y1_c00305{bottom:738.420000px;}
.h3_c00305{height:13.200073px;}
.h4_c00305{height:43.804688px;}
.h1_c00305{height:75.966797px;}
.h2_c00305{height:91.160156px;}
.h0_c00305{height:793.500000px;}
.w2_c00305{width:104.875500px;}
.w0_c00305{width:510.600000px;}
.w1_c00305{width:510.750000px;}
.x0_c00305{left:0.000000px;}
.x2_c00305{left:97.500000px;}
.x3_c00305{left:98.550000px;}
.x4_c00305{left:99.600000px;}
.x5_c00305{left:100.950000px;}
.x7_c00305{left:207.114258px;}
.x1_c00305{left:225.750000px;}
.x6_c00305{left:447.750000px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls1_c00305{letter-spacing:0.000000pt;}
.ls0_c00305{letter-spacing:2.666667pt;}
.ws0_c00305{word-spacing:-15.424000pt;}
.ws1_c00305{word-spacing:0.000000pt;}
._14_c00305{margin-left:-13.994667pt;}
._c_c00305{margin-left:-11.200000pt;}
._a_c00305{margin-left:-9.152000pt;}
._b_c00305{margin-left:-7.488000pt;}
._12_c00305{margin-left:-5.696000pt;}
._9_c00305{margin-left:-4.480000pt;}
._7_c00305{margin-left:-3.456000pt;}
._11_c00305{margin-left:-2.560000pt;}
._8_c00305{margin-left:-1.536000pt;}
._d_c00305{width:0.960000pt;}
._4_c00305{width:2.240000pt;}
._5_c00305{width:3.648000pt;}
._6_c00305{width:4.693333pt;}
._f_c00305{width:5.888000pt;}
._1_c00305{width:6.826667pt;}
._2_c00305{width:8.426667pt;}
._e_c00305{width:9.365333pt;}
._3_c00305{width:11.093333pt;}
._13_c00305{width:12.330667pt;}
._10_c00305{width:13.952000pt;}
._0_c00305{width:17.386667pt;}
.fs2_c00305{font-size:42.666667pt;}
.fs0_c00305{font-size:53.333333pt;}
.fs1_c00305{font-size:64.000000pt;}
.y0_c00305{bottom:0.000000pt;}
.y1f_c00305{bottom:2.760000pt;}
.y1e_c00305{bottom:6.425217pt;}
.y1d_c00305{bottom:41.973333pt;}
.y1c_c00305{bottom:64.240000pt;}
.y1b_c00305{bottom:86.906667pt;}
.y1a_c00305{bottom:109.173333pt;}
.y19_c00305{bottom:131.973333pt;}
.y18_c00305{bottom:153.840000pt;}
.y17_c00305{bottom:176.373333pt;}
.y16_c00305{bottom:198.240000pt;}
.y15_c00305{bottom:220.240000pt;}
.y14_c00305{bottom:241.440000pt;}
.y13_c00305{bottom:263.306667pt;}
.y12_c00305{bottom:285.573333pt;}
.y11_c00305{bottom:306.906667pt;}
.y10_c00305{bottom:329.440000pt;}
.yf_c00305{bottom:350.906667pt;}
.ye_c00305{bottom:372.506667pt;}
.yd_c00305{bottom:394.240000pt;}
.yc_c00305{bottom:415.440000pt;}
.yb_c00305{bottom:436.506667pt;}
.ya_c00305{bottom:458.906667pt;}
.y9_c00305{bottom:481.173333pt;}
.y8_c00305{bottom:502.506667pt;}
.y7_c00305{bottom:524.640000pt;}
.y6_c00305{bottom:546.640000pt;}
.y5_c00305{bottom:567.840000pt;}
.y4_c00305{bottom:589.706667pt;}
.y3_c00305{bottom:611.706667pt;}
.y2_c00305{bottom:632.373333pt;}
.y1_c00305{bottom:656.373333pt;}
.h3_c00305{height:11.733399pt;}
.h4_c00305{height:38.937500pt;}
.h1_c00305{height:67.526042pt;}
.h2_c00305{height:81.031250pt;}
.h0_c00305{height:705.333333pt;}
.w2_c00305{width:93.222667pt;}
.w0_c00305{width:453.866667pt;}
.w1_c00305{width:454.000000pt;}
.x0_c00305{left:0.000000pt;}
.x2_c00305{left:86.666667pt;}
.x3_c00305{left:87.600000pt;}
.x4_c00305{left:88.533333pt;}
.x5_c00305{left:89.733333pt;}
.x7_c00305{left:184.101563pt;}
.x1_c00305{left:200.666667pt;}
.x6_c00305{left:398.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_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_e4f6d22f50cba7882c870402.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.480469;font-style:normal;font-weight:normal;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_5fd45d9469d71f5dd1d81173.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:1.568848;font-style:normal;font-weight:normal;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_f5799591e7ac29ec75ab2440.woff2')format("woff");}.ff3_c00306{font-family:ff3_c00306;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00306;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00306{font-family:ff4_c00306;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00306{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00306{vertical-align:0.000000px;}
.ls2_c00306{letter-spacing:0.000000px;}
.ls3_c00306{letter-spacing:3.000000px;}
.ls0_c00306{letter-spacing:6.000000px;}
.ls1_c00306{letter-spacing:9.600000px;}
.sc__c00306{text-shadow:none;}
.sc0_c00306{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00306{-webkit-text-stroke:0px transparent;}
.sc0_c00306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00306{word-spacing:-20.352000px;}
.ws1_c00306{word-spacing:0.000000px;}
._a_c00306{margin-left:-14.217000px;}
._f_c00306{margin-left:-7.758000px;}
._4_c00306{margin-left:-5.427000px;}
._2_c00306{margin-left:-4.212000px;}
._b_c00306{margin-left:-3.132000px;}
._9_c00306{margin-left:-1.746000px;}
._3_c00306{width:1.620000px;}
._5_c00306{width:3.240000px;}
._11_c00306{width:4.248000px;}
._8_c00306{width:5.670000px;}
._1_c00306{width:7.047000px;}
._10_c00306{width:8.388000px;}
._c_c00306{width:9.648000px;}
._0_c00306{width:11.340000px;}
._14_c00306{width:12.420000px;}
._d_c00306{width:13.500000px;}
._7_c00306{width:14.661000px;}
._e_c00306{width:15.903000px;}
._12_c00306{width:17.106000px;}
._13_c00306{width:18.216000px;}
._15_c00306{width:38.907000px;}
._6_c00306{width:309.258000px;}
._16_c00306{width:319.068000px;}
.fc2_c00306{color:transparent;}
.fc1_c00306{color:rgb(128,128,128);}
.fc0_c00306{color:rgb(0,0,0);}
.fs3_c00306{font-size:48.000000px;}
.fs2_c00306{font-size:69.000000px;}
.fs1_c00306{font-size:72.000000px;}
.fs0_c00306{font-size:81.000000px;}
.y0_c00306{bottom:0.000000px;}
.y1f_c00306{bottom:3.105000px;}
.y1e_c00306{bottom:7.228369px;}
.y1d_c00306{bottom:48.270000px;}
.y1c_c00306{bottom:73.170000px;}
.y1b_c00306{bottom:99.120000px;}
.y1a_c00306{bottom:125.220000px;}
.y19_c00306{bottom:147.720000px;}
.y18_c00306{bottom:175.170000px;}
.y17_c00306{bottom:199.470000px;}
.y16_c00306{bottom:223.770000px;}
.y15_c00306{bottom:249.420000px;}
.y14_c00306{bottom:274.020000px;}
.y13_c00306{bottom:298.620000px;}
.y12_c00306{bottom:321.870000px;}
.y11_c00306{bottom:344.220000px;}
.y10_c00306{bottom:368.820000px;}
.yf_c00306{bottom:393.570000px;}
.ye_c00306{bottom:417.870000px;}
.yd_c00306{bottom:442.470000px;}
.yc_c00306{bottom:467.070000px;}
.yb_c00306{bottom:491.970000px;}
.ya_c00306{bottom:516.270000px;}
.y9_c00306{bottom:541.320000px;}
.y8_c00306{bottom:565.620000px;}
.y7_c00306{bottom:590.220000px;}
.y6_c00306{bottom:614.820000px;}
.y5_c00306{bottom:639.270000px;}
.y4_c00306{bottom:664.170000px;}
.y3_c00306{bottom:687.870000px;}
.y2_c00306{bottom:712.770000px;}
.y1_c00306{bottom:737.820000px;}
.h4_c00306{height:13.200073px;}
.h5_c00306{height:43.804688px;}
.h3_c00306{height:91.160156px;}
.h2_c00306{height:94.803223px;}
.h1_c00306{height:790.500000px;}
.h0_c00306{height:790.800000px;}
.w2_c00306{width:104.875500px;}
.w0_c00306{width:542.700000px;}
.w1_c00306{width:543.000000px;}
.x0_c00306{left:0.000000px;}
.x2_c00306{left:36.150000px;}
.x3_c00306{left:37.800000px;}
.x4_c00306{left:39.150000px;}
.x5_c00306{left:40.200000px;}
.x7_c00306{left:41.250000px;}
.x6_c00306{left:42.600000px;}
.x1_c00306{left:154.800000px;}
.x9_c00306{left:223.164230px;}
.x8_c00306{left:270.000000px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls2_c00306{letter-spacing:0.000000pt;}
.ls3_c00306{letter-spacing:2.666667pt;}
.ls0_c00306{letter-spacing:5.333333pt;}
.ls1_c00306{letter-spacing:8.533333pt;}
.ws0_c00306{word-spacing:-18.090667pt;}
.ws1_c00306{word-spacing:0.000000pt;}
._a_c00306{margin-left:-12.637333pt;}
._f_c00306{margin-left:-6.896000pt;}
._4_c00306{margin-left:-4.824000pt;}
._2_c00306{margin-left:-3.744000pt;}
._b_c00306{margin-left:-2.784000pt;}
._9_c00306{margin-left:-1.552000pt;}
._3_c00306{width:1.440000pt;}
._5_c00306{width:2.880000pt;}
._11_c00306{width:3.776000pt;}
._8_c00306{width:5.040000pt;}
._1_c00306{width:6.264000pt;}
._10_c00306{width:7.456000pt;}
._c_c00306{width:8.576000pt;}
._0_c00306{width:10.080000pt;}
._14_c00306{width:11.040000pt;}
._d_c00306{width:12.000000pt;}
._7_c00306{width:13.032000pt;}
._e_c00306{width:14.136000pt;}
._12_c00306{width:15.205333pt;}
._13_c00306{width:16.192000pt;}
._15_c00306{width:34.584000pt;}
._6_c00306{width:274.896000pt;}
._16_c00306{width:283.616000pt;}
.fs3_c00306{font-size:42.666667pt;}
.fs2_c00306{font-size:61.333333pt;}
.fs1_c00306{font-size:64.000000pt;}
.fs0_c00306{font-size:72.000000pt;}
.y0_c00306{bottom:0.000000pt;}
.y1f_c00306{bottom:2.760000pt;}
.y1e_c00306{bottom:6.425217pt;}
.y1d_c00306{bottom:42.906667pt;}
.y1c_c00306{bottom:65.040000pt;}
.y1b_c00306{bottom:88.106667pt;}
.y1a_c00306{bottom:111.306667pt;}
.y19_c00306{bottom:131.306667pt;}
.y18_c00306{bottom:155.706667pt;}
.y17_c00306{bottom:177.306667pt;}
.y16_c00306{bottom:198.906667pt;}
.y15_c00306{bottom:221.706667pt;}
.y14_c00306{bottom:243.573333pt;}
.y13_c00306{bottom:265.440000pt;}
.y12_c00306{bottom:286.106667pt;}
.y11_c00306{bottom:305.973333pt;}
.y10_c00306{bottom:327.840000pt;}
.yf_c00306{bottom:349.840000pt;}
.ye_c00306{bottom:371.440000pt;}
.yd_c00306{bottom:393.306667pt;}
.yc_c00306{bottom:415.173333pt;}
.yb_c00306{bottom:437.306667pt;}
.ya_c00306{bottom:458.906667pt;}
.y9_c00306{bottom:481.173333pt;}
.y8_c00306{bottom:502.773333pt;}
.y7_c00306{bottom:524.640000pt;}
.y6_c00306{bottom:546.506667pt;}
.y5_c00306{bottom:568.240000pt;}
.y4_c00306{bottom:590.373333pt;}
.y3_c00306{bottom:611.440000pt;}
.y2_c00306{bottom:633.573333pt;}
.y1_c00306{bottom:655.840000pt;}
.h4_c00306{height:11.733399pt;}
.h5_c00306{height:38.937500pt;}
.h3_c00306{height:81.031250pt;}
.h2_c00306{height:84.269531pt;}
.h1_c00306{height:702.666667pt;}
.h0_c00306{height:702.933333pt;}
.w2_c00306{width:93.222667pt;}
.w0_c00306{width:482.400000pt;}
.w1_c00306{width:482.666667pt;}
.x0_c00306{left:0.000000pt;}
.x2_c00306{left:32.133333pt;}
.x3_c00306{left:33.600000pt;}
.x4_c00306{left:34.800000pt;}
.x5_c00306{left:35.733333pt;}
.x7_c00306{left:36.666667pt;}
.x6_c00306{left:37.866667pt;}
.x1_c00306{left:137.600000pt;}
.x9_c00306{left:198.368205pt;}
.x8_c00306{left:240.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_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_f6841e2c06aef1226b01ef51.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.480469;font-style:normal;font-weight:normal;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_ab8bc56042584b1a49991e0d.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:1.568848;font-style:normal;font-weight:normal;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_238568e39240404a1465161a.woff2')format("woff");}.ff3_c00307{font-family:ff3_c00307;line-height:1.575000;font-style:normal;font-weight:normal;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_cff30c5d7022258ec4f5aae0.woff2')format("woff");}.ff4_c00307{font-family:ff4_c00307;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00307;src:url('chunks/assets/font_84f26ebaa07bb3fc40b9038f.woff2')format("woff");}.ff5_c00307{font-family:ff5_c00307;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00307;src:url('chunks/assets/font_eb5dea8cc4997243f3a35d47.woff2')format("woff");}.ff6_c00307{font-family:ff6_c00307;line-height:1.592000;font-style:normal;font-weight: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_c00307;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00307{font-family:ff7_c00307;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00307{vertical-align:0.000000px;}
.ls2_c00307{letter-spacing:0.000000px;}
.ls3_c00307{letter-spacing:3.000000px;}
.ls4_c00307{letter-spacing:6.000000px;}
.ls1_c00307{letter-spacing:7.788000px;}
.ls0_c00307{letter-spacing:13.788000px;}
.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:-33.192000px;}
.ws2_c00307{word-spacing:-27.972000px;}
.ws4_c00307{word-spacing:-23.250000px;}
.ws1_c00307{word-spacing:-20.352000px;}
.ws3_c00307{word-spacing:-6.075000px;}
.ws5_c00307{word-spacing:0.000000px;}
._e_c00307{margin-left:-24.624000px;}
._1a_c00307{margin-left:-19.296000px;}
._19_c00307{margin-left:-16.848000px;}
._1b_c00307{margin-left:-14.688000px;}
._9_c00307{margin-left:-13.464000px;}
._7_c00307{margin-left:-11.952000px;}
._8_c00307{margin-left:-10.368000px;}
._6_c00307{margin-left:-9.288000px;}
._13_c00307{margin-left:-7.656000px;}
._3_c00307{margin-left:-6.048000px;}
._b_c00307{margin-left:-4.824000px;}
._11_c00307{margin-left:-3.816000px;}
._a_c00307{margin-left:-2.784000px;}
._4_c00307{margin-left:-1.728000px;}
._1_c00307{width:1.728000px;}
._2_c00307{width:2.808000px;}
._0_c00307{width:4.104000px;}
._d_c00307{width:5.616000px;}
._c_c00307{width:7.344000px;}
._15_c00307{width:8.856000px;}
._10_c00307{width:10.296000px;}
._16_c00307{width:12.072000px;}
._12_c00307{width:15.432000px;}
._18_c00307{width:18.360000px;}
._17_c00307{width:40.968000px;}
._f_c00307{width:296.496000px;}
._14_c00307{width:330.624000px;}
._5_c00307{width:560.088000px;}
.fc2_c00307{color:transparent;}
.fc1_c00307{color:rgb(128,128,128);}
.fc0_c00307{color:rgb(0,0,0);}
.fs7_c00307{font-size:48.000000px;}
.fs1_c00307{font-size:63.000000px;}
.fs2_c00307{font-size:69.000000px;}
.fs0_c00307{font-size:72.000000px;}
.fs4_c00307{font-size:75.000000px;}
.fs6_c00307{font-size:81.000000px;}
.fs3_c00307{font-size:84.000000px;}
.fs5_c00307{font-size:87.000000px;}
.y0_c00307{bottom:0.000000px;}
.y1f_c00307{bottom:3.105000px;}
.y1e_c00307{bottom:7.228371px;}
.y1d_c00307{bottom:43.515000px;}
.y1c_c00307{bottom:66.915000px;}
.y1b_c00307{bottom:91.815000px;}
.y1a_c00307{bottom:117.765000px;}
.y19_c00307{bottom:142.065000px;}
.y18_c00307{bottom:166.815000px;}
.y17_c00307{bottom:192.765000px;}
.y16_c00307{bottom:216.315000px;}
.y15_c00307{bottom:241.065000px;}
.y14_c00307{bottom:266.415000px;}
.y13_c00307{bottom:290.265000px;}
.y12_c00307{bottom:314.865000px;}
.y11_c00307{bottom:341.265000px;}
.y10_c00307{bottom:363.915000px;}
.yf_c00307{bottom:386.865000px;}
.ye_c00307{bottom:412.815000px;}
.yd_c00307{bottom:438.765000px;}
.yc_c00307{bottom:462.465000px;}
.yb_c00307{bottom:486.765000px;}
.ya_c00307{bottom:510.765000px;}
.y9_c00307{bottom:534.915000px;}
.y8_c00307{bottom:558.615000px;}
.y7_c00307{bottom:584.265000px;}
.y6_c00307{bottom:608.565000px;}
.y5_c00307{bottom:633.465000px;}
.y4_c00307{bottom:657.915000px;}
.y3_c00307{bottom:680.865000px;}
.y2_c00307{bottom:705.465000px;}
.y1_c00307{bottom:731.415000px;}
.h6_c00307{height:13.200074px;}
.h7_c00307{height:43.804688px;}
.h3_c00307{height:84.656250px;}
.h5_c00307{height:87.361816px;}
.h2_c00307{height:91.160156px;}
.h4_c00307{height:110.151855px;}
.h0_c00307{height:785.175000px;}
.h1_c00307{height:785.250000px;}
.w2_c00307{width:104.875500px;}
.w0_c00307{width:497.625000px;}
.w1_c00307{width:498.000000px;}
.x0_c00307{left:0.000000px;}
.x5_c00307{left:83.400000px;}
.x4_c00307{left:84.750000px;}
.x2_c00307{left:85.950000px;}
.x3_c00307{left:87.000000px;}
.x7_c00307{left:200.626740px;}
.x1_c00307{left:204.450000px;}
.x6_c00307{left:422.550000px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls2_c00307{letter-spacing:0.000000pt;}
.ls3_c00307{letter-spacing:2.666667pt;}
.ls4_c00307{letter-spacing:5.333333pt;}
.ls1_c00307{letter-spacing:6.922667pt;}
.ls0_c00307{letter-spacing:12.256000pt;}
.ws0_c00307{word-spacing:-29.504000pt;}
.ws2_c00307{word-spacing:-24.864000pt;}
.ws4_c00307{word-spacing:-20.666667pt;}
.ws1_c00307{word-spacing:-18.090667pt;}
.ws3_c00307{word-spacing:-5.400000pt;}
.ws5_c00307{word-spacing:0.000000pt;}
._e_c00307{margin-left:-21.888000pt;}
._1a_c00307{margin-left:-17.152000pt;}
._19_c00307{margin-left:-14.976000pt;}
._1b_c00307{margin-left:-13.056000pt;}
._9_c00307{margin-left:-11.968000pt;}
._7_c00307{margin-left:-10.624000pt;}
._8_c00307{margin-left:-9.216000pt;}
._6_c00307{margin-left:-8.256000pt;}
._13_c00307{margin-left:-6.805333pt;}
._3_c00307{margin-left:-5.376000pt;}
._b_c00307{margin-left:-4.288000pt;}
._11_c00307{margin-left:-3.392000pt;}
._a_c00307{margin-left:-2.474667pt;}
._4_c00307{margin-left:-1.536000pt;}
._1_c00307{width:1.536000pt;}
._2_c00307{width:2.496000pt;}
._0_c00307{width:3.648000pt;}
._d_c00307{width:4.992000pt;}
._c_c00307{width:6.528000pt;}
._15_c00307{width:7.872000pt;}
._10_c00307{width:9.152000pt;}
._16_c00307{width:10.730667pt;}
._12_c00307{width:13.717333pt;}
._18_c00307{width:16.320000pt;}
._17_c00307{width:36.416000pt;}
._f_c00307{width:263.552000pt;}
._14_c00307{width:293.888000pt;}
._5_c00307{width:497.856000pt;}
.fs7_c00307{font-size:42.666667pt;}
.fs1_c00307{font-size:56.000000pt;}
.fs2_c00307{font-size:61.333333pt;}
.fs0_c00307{font-size:64.000000pt;}
.fs4_c00307{font-size:66.666667pt;}
.fs6_c00307{font-size:72.000000pt;}
.fs3_c00307{font-size:74.666667pt;}
.fs5_c00307{font-size:77.333333pt;}
.y0_c00307{bottom:0.000000pt;}
.y1f_c00307{bottom:2.760000pt;}
.y1e_c00307{bottom:6.425219pt;}
.y1d_c00307{bottom:38.680000pt;}
.y1c_c00307{bottom:59.480000pt;}
.y1b_c00307{bottom:81.613333pt;}
.y1a_c00307{bottom:104.680000pt;}
.y19_c00307{bottom:126.280000pt;}
.y18_c00307{bottom:148.280000pt;}
.y17_c00307{bottom:171.346667pt;}
.y16_c00307{bottom:192.280000pt;}
.y15_c00307{bottom:214.280000pt;}
.y14_c00307{bottom:236.813333pt;}
.y13_c00307{bottom:258.013333pt;}
.y12_c00307{bottom:279.880000pt;}
.y11_c00307{bottom:303.346667pt;}
.y10_c00307{bottom:323.480000pt;}
.yf_c00307{bottom:343.880000pt;}
.ye_c00307{bottom:366.946667pt;}
.yd_c00307{bottom:390.013333pt;}
.yc_c00307{bottom:411.080000pt;}
.yb_c00307{bottom:432.680000pt;}
.ya_c00307{bottom:454.013333pt;}
.y9_c00307{bottom:475.480000pt;}
.y8_c00307{bottom:496.546667pt;}
.y7_c00307{bottom:519.346667pt;}
.y6_c00307{bottom:540.946667pt;}
.y5_c00307{bottom:563.080000pt;}
.y4_c00307{bottom:584.813333pt;}
.y3_c00307{bottom:605.213333pt;}
.y2_c00307{bottom:627.080000pt;}
.y1_c00307{bottom:650.146667pt;}
.h6_c00307{height:11.733399pt;}
.h7_c00307{height:38.937500pt;}
.h3_c00307{height:75.250000pt;}
.h5_c00307{height:77.654948pt;}
.h2_c00307{height:81.031250pt;}
.h4_c00307{height:97.912760pt;}
.h0_c00307{height:697.933333pt;}
.h1_c00307{height:698.000000pt;}
.w2_c00307{width:93.222667pt;}
.w0_c00307{width:442.333333pt;}
.w1_c00307{width:442.666667pt;}
.x0_c00307{left:0.000000pt;}
.x5_c00307{left:74.133333pt;}
.x4_c00307{left:75.333333pt;}
.x2_c00307{left:76.400000pt;}
.x3_c00307{left:77.333333pt;}
.x7_c00307{left:178.334880pt;}
.x1_c00307{left:181.733333pt;}
.x6_c00307{left:375.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6abe66444b2fe8f6e47e9ebd.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.480469;font-style:normal;font-weight:normal;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_0074389577bd21f0e20202b0.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:1.568848;font-style:normal;font-weight:normal;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_4f4ce80c1ef9b0461c71b663.woff2')format("woff");}.ff3_c00308{font-family:ff3_c00308;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00308;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00308{font-family:ff4_c00308;line-height:1.219238;font-style: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;}
.ls1_c00308{letter-spacing:0.000000px;}
.ls0_c00308{letter-spacing:3.000000px;}
.sc__c00308{text-shadow:none;}
.sc0_c00308{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00308{-webkit-text-stroke:0px transparent;}
.sc0_c00308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00308{word-spacing:-17.352000px;}
.ws2_c00308{word-spacing:0.000000px;}
.ws1_c00308{word-spacing:1.140000px;}
._b_c00308{margin-left:-16.464000px;}
._1b_c00308{margin-left:-15.288000px;}
._1a_c00308{margin-left:-13.344000px;}
._16_c00308{margin-left:-11.832000px;}
._d_c00308{margin-left:-10.368000px;}
._17_c00308{margin-left:-8.592000px;}
._10_c00308{margin-left:-7.536000px;}
._18_c00308{margin-left:-6.504000px;}
._12_c00308{margin-left:-4.992000px;}
._a_c00308{margin-left:-3.624000px;}
._19_c00308{margin-left:-2.616000px;}
._9_c00308{margin-left:-1.608000px;}
._e_c00308{width:1.152000px;}
._c_c00308{width:2.376000px;}
._11_c00308{width:3.888000px;}
._8_c00308{width:5.112000px;}
._14_c00308{width:6.336000px;}
._15_c00308{width:7.392000px;}
._4_c00308{width:8.568000px;}
._13_c00308{width:9.960000px;}
._3_c00308{width:11.016000px;}
._1c_c00308{width:13.368000px;}
._1_c00308{width:14.616000px;}
._2_c00308{width:16.128000px;}
._6_c00308{width:21.168000px;}
._0_c00308{width:23.904000px;}
._5_c00308{width:29.232000px;}
._7_c00308{width:367.272000px;}
._f_c00308{width:482.064000px;}
._1d_c00308{width:683.160000px;}
.fc2_c00308{color:transparent;}
.fc1_c00308{color:rgb(128,128,128);}
.fc0_c00308{color:rgb(0,0,0);}
.fs5_c00308{font-size:48.000000px;}
.fs4_c00308{font-size:57.000000px;}
.fs1_c00308{font-size:63.000000px;}
.fs3_c00308{font-size:69.000000px;}
.fs0_c00308{font-size:72.000000px;}
.fs2_c00308{font-size:84.000000px;}
.y0_c00308{bottom:0.000000px;}
.y1f_c00308{bottom:3.105000px;}
.y1e_c00308{bottom:7.228369px;}
.y1d_c00308{bottom:58.320000px;}
.y1c_c00308{bottom:83.370000px;}
.y1b_c00308{bottom:109.920000px;}
.y1a_c00308{bottom:134.370000px;}
.y19_c00308{bottom:158.970000px;}
.y18_c00308{bottom:185.520000px;}
.y17_c00308{bottom:209.970000px;}
.y16_c00308{bottom:233.220000px;}
.y15_c00308{bottom:259.770000px;}
.y14_c00308{bottom:284.820000px;}
.y13_c00308{bottom:308.070000px;}
.y12_c00308{bottom:331.020000px;}
.y11_c00308{bottom:354.720000px;}
.y10_c00308{bottom:379.020000px;}
.yf_c00308{bottom:403.320000px;}
.ye_c00308{bottom:429.570000px;}
.yd_c00308{bottom:452.970000px;}
.yc_c00308{bottom:477.870000px;}
.yb_c00308{bottom:502.470000px;}
.ya_c00308{bottom:527.070000px;}
.y9_c00308{bottom:551.370000px;}
.y8_c00308{bottom:576.420000px;}
.y7_c00308{bottom:600.720000px;}
.y6_c00308{bottom:625.620000px;}
.y5_c00308{bottom:649.920000px;}
.y4_c00308{bottom:675.270000px;}
.y3_c00308{bottom:700.920000px;}
.y2_c00308{bottom:722.520000px;}
.y1_c00308{bottom:748.920000px;}
.h5_c00308{height:13.200073px;}
.h6_c00308{height:43.804688px;}
.h4_c00308{height:72.168457px;}
.h2_c00308{height:84.269531px;}
.h3_c00308{height:91.160156px;}
.h0_c00308{height:788.100000px;}
.h1_c00308{height:788.250000px;}
.w1_c00308{width:104.875500px;}
.w0_c00308{width:526.500000px;}
.x0_c00308{left:0.000000px;}
.x2_c00308{left:17.550000px;}
.x3_c00308{left:19.200000px;}
.x4_c00308{left:20.250000px;}
.x5_c00308{left:21.600000px;}
.x6_c00308{left:24.600000px;}
.x7_c00308{left:25.950000px;}
.x8_c00308{left:27.900000px;}
.x9_c00308{left:29.250000px;}
.xa_c00308{left:30.600000px;}
.xb_c00308{left:31.950000px;}
.xc_c00308{left:33.450000px;}
.xd_c00308{left:35.100000px;}
.x1_c00308{left:122.400000px;}
.xf_c00308{left:215.064240px;}
.xe_c00308{left:371.250000px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls1_c00308{letter-spacing:0.000000pt;}
.ls0_c00308{letter-spacing:2.666667pt;}
.ws0_c00308{word-spacing:-15.424000pt;}
.ws2_c00308{word-spacing:0.000000pt;}
.ws1_c00308{word-spacing:1.013333pt;}
._b_c00308{margin-left:-14.634667pt;}
._1b_c00308{margin-left:-13.589333pt;}
._1a_c00308{margin-left:-11.861333pt;}
._16_c00308{margin-left:-10.517333pt;}
._d_c00308{margin-left:-9.216000pt;}
._17_c00308{margin-left:-7.637333pt;}
._10_c00308{margin-left:-6.698667pt;}
._18_c00308{margin-left:-5.781333pt;}
._12_c00308{margin-left:-4.437333pt;}
._a_c00308{margin-left:-3.221333pt;}
._19_c00308{margin-left:-2.325333pt;}
._9_c00308{margin-left:-1.429333pt;}
._e_c00308{width:1.024000pt;}
._c_c00308{width:2.112000pt;}
._11_c00308{width:3.456000pt;}
._8_c00308{width:4.544000pt;}
._14_c00308{width:5.632000pt;}
._15_c00308{width:6.570667pt;}
._4_c00308{width:7.616000pt;}
._13_c00308{width:8.853333pt;}
._3_c00308{width:9.792000pt;}
._1c_c00308{width:11.882667pt;}
._1_c00308{width:12.992000pt;}
._2_c00308{width:14.336000pt;}
._6_c00308{width:18.816000pt;}
._0_c00308{width:21.248000pt;}
._5_c00308{width:25.984000pt;}
._7_c00308{width:326.464000pt;}
._f_c00308{width:428.501333pt;}
._1d_c00308{width:607.253333pt;}
.fs5_c00308{font-size:42.666667pt;}
.fs4_c00308{font-size:50.666667pt;}
.fs1_c00308{font-size:56.000000pt;}
.fs3_c00308{font-size:61.333333pt;}
.fs0_c00308{font-size:64.000000pt;}
.fs2_c00308{font-size:74.666667pt;}
.y0_c00308{bottom:0.000000pt;}
.y1f_c00308{bottom:2.760000pt;}
.y1e_c00308{bottom:6.425217pt;}
.y1d_c00308{bottom:51.840000pt;}
.y1c_c00308{bottom:74.106667pt;}
.y1b_c00308{bottom:97.706667pt;}
.y1a_c00308{bottom:119.440000pt;}
.y19_c00308{bottom:141.306667pt;}
.y18_c00308{bottom:164.906667pt;}
.y17_c00308{bottom:186.640000pt;}
.y16_c00308{bottom:207.306667pt;}
.y15_c00308{bottom:230.906667pt;}
.y14_c00308{bottom:253.173333pt;}
.y13_c00308{bottom:273.840000pt;}
.y12_c00308{bottom:294.240000pt;}
.y11_c00308{bottom:315.306667pt;}
.y10_c00308{bottom:336.906667pt;}
.yf_c00308{bottom:358.506667pt;}
.ye_c00308{bottom:381.840000pt;}
.yd_c00308{bottom:402.640000pt;}
.yc_c00308{bottom:424.773333pt;}
.yb_c00308{bottom:446.640000pt;}
.ya_c00308{bottom:468.506667pt;}
.y9_c00308{bottom:490.106667pt;}
.y8_c00308{bottom:512.373333pt;}
.y7_c00308{bottom:533.973333pt;}
.y6_c00308{bottom:556.106667pt;}
.y5_c00308{bottom:577.706667pt;}
.y4_c00308{bottom:600.240000pt;}
.y3_c00308{bottom:623.040000pt;}
.y2_c00308{bottom:642.240000pt;}
.y1_c00308{bottom:665.706667pt;}
.h5_c00308{height:11.733399pt;}
.h6_c00308{height:38.937500pt;}
.h4_c00308{height:64.149740pt;}
.h2_c00308{height:74.906250pt;}
.h3_c00308{height:81.031250pt;}
.h0_c00308{height:700.533333pt;}
.h1_c00308{height:700.666667pt;}
.w1_c00308{width:93.222667pt;}
.w0_c00308{width:468.000000pt;}
.x0_c00308{left:0.000000pt;}
.x2_c00308{left:15.600000pt;}
.x3_c00308{left:17.066667pt;}
.x4_c00308{left:18.000000pt;}
.x5_c00308{left:19.200000pt;}
.x6_c00308{left:21.866667pt;}
.x7_c00308{left:23.066667pt;}
.x8_c00308{left:24.800000pt;}
.x9_c00308{left:26.000000pt;}
.xa_c00308{left:27.200000pt;}
.xb_c00308{left:28.400000pt;}
.xc_c00308{left:29.733333pt;}
.xd_c00308{left:31.200000pt;}
.x1_c00308{left:108.800000pt;}
.xf_c00308{left:191.168213pt;}
.xe_c00308{left:330.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_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_d7748d36fc5868881bcaf816.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.480469;font-style:normal;font-weight:normal;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_9931074fb02cce50d5cb1bec.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:1.568848;font-style:normal;font-weight:normal;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_744e64e11991cf6de3882889.woff2')format("woff");}.ff3_c00309{font-family:ff3_c00309;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00309{font-family:ff4_c00309;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00309{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00309{vertical-align:0.000000px;}
.ls0_c00309{letter-spacing:-3.000000px;}
.ls2_c00309{letter-spacing:0.000000px;}
.ls1_c00309{letter-spacing:3.000000px;}
.ls3_c00309{letter-spacing:6.000000px;}
.sc__c00309{text-shadow:none;}
.sc0_c00309{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00309{-webkit-text-stroke:0px transparent;}
.sc0_c00309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00309{word-spacing:-20.352000px;}
.ws0_c00309{word-spacing:-17.352000px;}
.ws2_c00309{word-spacing:0.000000px;}
._15_c00309{margin-left:-12.600000px;}
._16_c00309{margin-left:-10.824000px;}
._17_c00309{margin-left:-9.672000px;}
._12_c00309{margin-left:-7.896000px;}
._10_c00309{margin-left:-6.504000px;}
._d_c00309{margin-left:-5.328000px;}
._a_c00309{margin-left:-4.176000px;}
._e_c00309{margin-left:-2.928000px;}
._b_c00309{margin-left:-1.368000px;}
._9_c00309{width:1.152000px;}
._8_c00309{width:2.160000px;}
._c_c00309{width:3.768000px;}
._4_c00309{width:4.920000px;}
._11_c00309{width:6.192000px;}
._1_c00309{width:7.680000px;}
._14_c00309{width:9.456000px;}
._f_c00309{width:10.776000px;}
._13_c00309{width:12.264000px;}
._7_c00309{width:13.380000px;}
._3_c00309{width:15.000000px;}
._2_c00309{width:16.920000px;}
._6_c00309{width:18.480000px;}
._5_c00309{width:20.940000px;}
._0_c00309{width:22.260000px;}
.fc2_c00309{color:transparent;}
.fc1_c00309{color:rgb(128,128,128);}
.fc0_c00309{color:rgb(0,0,0);}
.fs2_c00309{font-size:39.000000px;}
.fs3_c00309{font-size:48.000000px;}
.fs0_c00309{font-size:60.000000px;}
.fs1_c00309{font-size:72.000000px;}
.y0_c00309{bottom:0.000000px;}
.y1f_c00309{bottom:3.105000px;}
.y1e_c00309{bottom:7.228357px;}
.y1d_c00309{bottom:54.780000px;}
.y1c_c00309{bottom:76.980000px;}
.y1b_c00309{bottom:102.330000px;}
.y1a_c00309{bottom:129.030000px;}
.y19_c00309{bottom:152.580000px;}
.y18_c00309{bottom:178.830000px;}
.y17_c00309{bottom:203.130000px;}
.y16_c00309{bottom:227.880000px;}
.y15_c00309{bottom:252.780000px;}
.y14_c00309{bottom:276.930000px;}
.y13_c00309{bottom:301.680000px;}
.y12_c00309{bottom:326.430000px;}
.y11_c00309{bottom:351.030000px;}
.y10_c00309{bottom:375.930000px;}
.yf_c00309{bottom:400.980000px;}
.ye_c00309{bottom:425.280000px;}
.yd_c00309{bottom:450.180000px;}
.yc_c00309{bottom:473.880000px;}
.yb_c00309{bottom:497.880000px;}
.ya_c00309{bottom:523.080000px;}
.y9_c00309{bottom:547.380000px;}
.y8_c00309{bottom:571.380000px;}
.y7_c00309{bottom:596.130000px;}
.y6_c00309{bottom:620.730000px;}
.y5_c00309{bottom:645.030000px;}
.y4_c00309{bottom:669.030000px;}
.y3_c00309{bottom:693.930000px;}
.y2_c00309{bottom:718.830000px;}
.y1_c00309{bottom:744.480000px;}
.h4_c00309{height:13.200074px;}
.h5_c00309{height:43.804688px;}
.h2_c00309{height:75.966797px;}
.h3_c00309{height:91.160156px;}
.h0_c00309{height:781.950000px;}
.h1_c00309{height:782.250000px;}
.w2_c00309{width:104.875500px;}
.w0_c00309{width:501.675000px;}
.w1_c00309{width:501.750000px;}
.x0_c00309{left:0.000000px;}
.xa_c00309{left:90.150000px;}
.x9_c00309{left:91.500000px;}
.x8_c00309{left:92.850000px;}
.x7_c00309{left:94.950000px;}
.x6_c00309{left:96.900000px;}
.x5_c00309{left:98.850000px;}
.x4_c00309{left:100.950000px;}
.x2_c00309{left:102.300000px;}
.x3_c00309{left:103.950000px;}
.xc_c00309{left:202.651749px;}
.x1_c00309{left:237.900000px;}
.xb_c00309{left:421.500000px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls0_c00309{letter-spacing:-2.666667pt;}
.ls2_c00309{letter-spacing:0.000000pt;}
.ls1_c00309{letter-spacing:2.666667pt;}
.ls3_c00309{letter-spacing:5.333333pt;}
.ws1_c00309{word-spacing:-18.090667pt;}
.ws0_c00309{word-spacing:-15.424000pt;}
.ws2_c00309{word-spacing:0.000000pt;}
._15_c00309{margin-left:-11.200000pt;}
._16_c00309{margin-left:-9.621333pt;}
._17_c00309{margin-left:-8.597333pt;}
._12_c00309{margin-left:-7.018667pt;}
._10_c00309{margin-left:-5.781333pt;}
._d_c00309{margin-left:-4.736000pt;}
._a_c00309{margin-left:-3.712000pt;}
._e_c00309{margin-left:-2.602667pt;}
._b_c00309{margin-left:-1.216000pt;}
._9_c00309{width:1.024000pt;}
._8_c00309{width:1.920000pt;}
._c_c00309{width:3.349333pt;}
._4_c00309{width:4.373333pt;}
._11_c00309{width:5.504000pt;}
._1_c00309{width:6.826667pt;}
._14_c00309{width:8.405333pt;}
._f_c00309{width:9.578667pt;}
._13_c00309{width:10.901333pt;}
._7_c00309{width:11.893333pt;}
._3_c00309{width:13.333333pt;}
._2_c00309{width:15.040000pt;}
._6_c00309{width:16.426667pt;}
._5_c00309{width:18.613333pt;}
._0_c00309{width:19.786667pt;}
.fs2_c00309{font-size:34.666667pt;}
.fs3_c00309{font-size:42.666667pt;}
.fs0_c00309{font-size:53.333333pt;}
.fs1_c00309{font-size:64.000000pt;}
.y0_c00309{bottom:0.000000pt;}
.y1f_c00309{bottom:2.760000pt;}
.y1e_c00309{bottom:6.425206pt;}
.y1d_c00309{bottom:48.693333pt;}
.y1c_c00309{bottom:68.426667pt;}
.y1b_c00309{bottom:90.960000pt;}
.y1a_c00309{bottom:114.693333pt;}
.y19_c00309{bottom:135.626667pt;}
.y18_c00309{bottom:158.960000pt;}
.y17_c00309{bottom:180.560000pt;}
.y16_c00309{bottom:202.560000pt;}
.y15_c00309{bottom:224.693333pt;}
.y14_c00309{bottom:246.160000pt;}
.y13_c00309{bottom:268.160000pt;}
.y12_c00309{bottom:290.160000pt;}
.y11_c00309{bottom:312.026667pt;}
.y10_c00309{bottom:334.160000pt;}
.yf_c00309{bottom:356.426667pt;}
.ye_c00309{bottom:378.026667pt;}
.yd_c00309{bottom:400.160000pt;}
.yc_c00309{bottom:421.226667pt;}
.yb_c00309{bottom:442.560000pt;}
.ya_c00309{bottom:464.960000pt;}
.y9_c00309{bottom:486.560000pt;}
.y8_c00309{bottom:507.893333pt;}
.y7_c00309{bottom:529.893333pt;}
.y6_c00309{bottom:551.760000pt;}
.y5_c00309{bottom:573.360000pt;}
.y4_c00309{bottom:594.693333pt;}
.y3_c00309{bottom:616.826667pt;}
.y2_c00309{bottom:638.960000pt;}
.y1_c00309{bottom:661.760000pt;}
.h4_c00309{height:11.733399pt;}
.h5_c00309{height:38.937500pt;}
.h2_c00309{height:67.526042pt;}
.h3_c00309{height:81.031250pt;}
.h0_c00309{height:695.066667pt;}
.h1_c00309{height:695.333333pt;}
.w2_c00309{width:93.222667pt;}
.w0_c00309{width:445.933333pt;}
.w1_c00309{width:446.000000pt;}
.x0_c00309{left:0.000000pt;}
.xa_c00309{left:80.133333pt;}
.x9_c00309{left:81.333333pt;}
.x8_c00309{left:82.533333pt;}
.x7_c00309{left:84.400000pt;}
.x6_c00309{left:86.133333pt;}
.x5_c00309{left:87.866667pt;}
.x4_c00309{left:89.733333pt;}
.x2_c00309{left:90.933333pt;}
.x3_c00309{left:92.400000pt;}
.xc_c00309{left:180.134888pt;}
.x1_c00309{left:211.466667pt;}
.xb_c00309{left:374.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_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_88a945129d15f4034d993fe7.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.480469;font-style:normal;font-weight:normal;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_dd1ccb7453cf253588458dac.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:1.568848;font-style:normal;font-weight:normal;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_80e744c7b0da66f3cc85844c.woff2')format("woff");}.ff3_c00310{font-family:ff3_c00310;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00310{font-family:ff4_c00310;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00310{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00310{vertical-align:0.000000px;}
.ls2_c00310{letter-spacing:-3.000000px;}
.ls3_c00310{letter-spacing:0.000000px;}
.ls0_c00310{letter-spacing:0.588000px;}
.ls1_c00310{letter-spacing:3.000000px;}
.sc__c00310{text-shadow:none;}
.sc0_c00310{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00310{-webkit-text-stroke:0px transparent;}
.sc0_c00310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00310{word-spacing:-17.352000px;}
.ws0_c00310{word-spacing:-11.460000px;}
.ws2_c00310{word-spacing:0.000000px;}
._e_c00310{margin-left:-15.624000px;}
._15_c00310{margin-left:-9.456000px;}
._11_c00310{margin-left:-8.088000px;}
._13_c00310{margin-left:-6.504000px;}
._7_c00310{margin-left:-5.328000px;}
._8_c00310{margin-left:-4.176000px;}
._9_c00310{margin-left:-2.808000px;}
._d_c00310{margin-left:-1.200000px;}
._f_c00310{width:1.248000px;}
._c_c00310{width:2.520000px;}
._b_c00310{width:3.888000px;}
._6_c00310{width:6.000000px;}
._2_c00310{width:7.080000px;}
._3_c00310{width:8.400000px;}
._16_c00310{width:9.456000px;}
._14_c00310{width:10.536000px;}
._a_c00310{width:11.856000px;}
._5_c00310{width:13.263000px;}
._10_c00310{width:14.745000px;}
._1_c00310{width:16.680000px;}
._12_c00310{width:18.048000px;}
._0_c00310{width:28.560000px;}
._4_c00310{width:355.620000px;}
.fc2_c00310{color:transparent;}
.fc1_c00310{color:rgb(128,128,128);}
.fc0_c00310{color:rgb(0,0,0);}
.fs5_c00310{font-size:48.000000px;}
.fs0_c00310{font-size:60.000000px;}
.fs3_c00310{font-size:63.000000px;}
.fs4_c00310{font-size:69.000000px;}
.fs2_c00310{font-size:72.000000px;}
.fs1_c00310{font-size:87.000000px;}
.y0_c00310{bottom:0.000000px;}
.y1f_c00310{bottom:3.105000px;}
.y1e_c00310{bottom:7.228355px;}
.y1d_c00310{bottom:34.035000px;}
.y1c_c00310{bottom:62.685000px;}
.y1b_c00310{bottom:88.035000px;}
.y1a_c00310{bottom:113.385000px;}
.y19_c00310{bottom:137.985000px;}
.y18_c00310{bottom:163.335000px;}
.y17_c00310{bottom:188.235000px;}
.y16_c00310{bottom:211.485000px;}
.y15_c00310{bottom:237.885000px;}
.y14_c00310{bottom:263.235000px;}
.y13_c00310{bottom:287.085000px;}
.y12_c00310{bottom:309.135000px;}
.y11_c00310{bottom:333.435000px;}
.y10_c00310{bottom:357.735000px;}
.yf_c00310{bottom:382.635000px;}
.ye_c00310{bottom:407.685000px;}
.yd_c00310{bottom:431.685000px;}
.yc_c00310{bottom:456.585000px;}
.yb_c00310{bottom:480.885000px;}
.ya_c00310{bottom:505.785000px;}
.y9_c00310{bottom:530.535000px;}
.y8_c00310{bottom:554.535000px;}
.y7_c00310{bottom:580.485000px;}
.y6_c00310{bottom:604.035000px;}
.y5_c00310{bottom:628.785000px;}
.y4_c00310{bottom:653.085000px;}
.y3_c00310{bottom:677.985000px;}
.y2_c00310{bottom:702.285000px;}
.y1_c00310{bottom:726.885000px;}
.h4_c00310{height:13.200074px;}
.h5_c00310{height:43.804688px;}
.h3_c00310{height:91.160156px;}
.h2_c00310{height:110.151855px;}
.h0_c00310{height:775.425000px;}
.h1_c00310{height:775.500000px;}
.w2_c00310{width:104.875500px;}
.w1_c00310{width:533.250000px;}
.w0_c00310{width:533.550000px;}
.x0_c00310{left:0.000000px;}
.x6_c00310{left:35.400000px;}
.x3_c00310{left:36.450000px;}
.x2_c00310{left:38.100000px;}
.x4_c00310{left:39.450000px;}
.x5_c00310{left:40.500000px;}
.x1_c00310{left:144.450000px;}
.x8_c00310{left:218.589249px;}
.x7_c00310{left:393.900000px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls2_c00310{letter-spacing:-2.666667pt;}
.ls3_c00310{letter-spacing:0.000000pt;}
.ls0_c00310{letter-spacing:0.522667pt;}
.ls1_c00310{letter-spacing:2.666667pt;}
.ws1_c00310{word-spacing:-15.424000pt;}
.ws0_c00310{word-spacing:-10.186667pt;}
.ws2_c00310{word-spacing:0.000000pt;}
._e_c00310{margin-left:-13.888000pt;}
._15_c00310{margin-left:-8.405333pt;}
._11_c00310{margin-left:-7.189333pt;}
._13_c00310{margin-left:-5.781333pt;}
._7_c00310{margin-left:-4.736000pt;}
._8_c00310{margin-left:-3.712000pt;}
._9_c00310{margin-left:-2.496000pt;}
._d_c00310{margin-left:-1.066667pt;}
._f_c00310{width:1.109333pt;}
._c_c00310{width:2.240000pt;}
._b_c00310{width:3.456000pt;}
._6_c00310{width:5.333333pt;}
._2_c00310{width:6.293333pt;}
._3_c00310{width:7.466667pt;}
._16_c00310{width:8.405333pt;}
._14_c00310{width:9.365333pt;}
._a_c00310{width:10.538667pt;}
._5_c00310{width:11.789333pt;}
._10_c00310{width:13.106667pt;}
._1_c00310{width:14.826667pt;}
._12_c00310{width:16.042667pt;}
._0_c00310{width:25.386667pt;}
._4_c00310{width:316.106667pt;}
.fs5_c00310{font-size:42.666667pt;}
.fs0_c00310{font-size:53.333333pt;}
.fs3_c00310{font-size:56.000000pt;}
.fs4_c00310{font-size:61.333333pt;}
.fs2_c00310{font-size:64.000000pt;}
.fs1_c00310{font-size:77.333333pt;}
.y0_c00310{bottom:0.000000pt;}
.y1f_c00310{bottom:2.760000pt;}
.y1e_c00310{bottom:6.425204pt;}
.y1d_c00310{bottom:30.253333pt;}
.y1c_c00310{bottom:55.720000pt;}
.y1b_c00310{bottom:78.253333pt;}
.y1a_c00310{bottom:100.786667pt;}
.y19_c00310{bottom:122.653333pt;}
.y18_c00310{bottom:145.186667pt;}
.y17_c00310{bottom:167.320000pt;}
.y16_c00310{bottom:187.986667pt;}
.y15_c00310{bottom:211.453333pt;}
.y14_c00310{bottom:233.986667pt;}
.y13_c00310{bottom:255.186667pt;}
.y12_c00310{bottom:274.786667pt;}
.y11_c00310{bottom:296.386667pt;}
.y10_c00310{bottom:317.986667pt;}
.yf_c00310{bottom:340.120000pt;}
.ye_c00310{bottom:362.386667pt;}
.yd_c00310{bottom:383.720000pt;}
.yc_c00310{bottom:405.853333pt;}
.yb_c00310{bottom:427.453333pt;}
.ya_c00310{bottom:449.586667pt;}
.y9_c00310{bottom:471.586667pt;}
.y8_c00310{bottom:492.920000pt;}
.y7_c00310{bottom:515.986667pt;}
.y6_c00310{bottom:536.920000pt;}
.y5_c00310{bottom:558.920000pt;}
.y4_c00310{bottom:580.520000pt;}
.y3_c00310{bottom:602.653333pt;}
.y2_c00310{bottom:624.253333pt;}
.y1_c00310{bottom:646.120000pt;}
.h4_c00310{height:11.733399pt;}
.h5_c00310{height:38.937500pt;}
.h3_c00310{height:81.031250pt;}
.h2_c00310{height:97.912760pt;}
.h0_c00310{height:689.266667pt;}
.h1_c00310{height:689.333333pt;}
.w2_c00310{width:93.222667pt;}
.w1_c00310{width:474.000000pt;}
.w0_c00310{width:474.266667pt;}
.x0_c00310{left:0.000000pt;}
.x6_c00310{left:31.466667pt;}
.x3_c00310{left:32.400000pt;}
.x2_c00310{left:33.866667pt;}
.x4_c00310{left:35.066667pt;}
.x5_c00310{left:36.000000pt;}
.x1_c00310{left:128.400000pt;}
.x8_c00310{left:194.301554pt;}
.x7_c00310{left:350.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_21fce908028c6c304c0cc02d.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.480469;font-style:normal;font-weight:normal;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_5e5376829d00fddbbd533b41.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:1.568848;font-style:normal;font-weight:normal;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_c0fc844af4f2151a829ec307.woff2')format("woff");}.ff3_c00311{font-family:ff3_c00311;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00311;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00311{font-family:ff4_c00311;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00311{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00311{vertical-align:0.000000px;}
.ls1_c00311{letter-spacing:0.000000px;}
.ls0_c00311{letter-spacing:3.000000px;}
.sc__c00311{text-shadow:none;}
.sc0_c00311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00311{-webkit-text-stroke:0px transparent;}
.sc0_c00311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00311{word-spacing:-17.352000px;}
.ws1_c00311{word-spacing:-15.906000px;}
.ws2_c00311{word-spacing:0.000000px;}
._19_c00311{margin-left:-15.975000px;}
._10_c00311{margin-left:-13.650000px;}
._13_c00311{margin-left:-11.748000px;}
._17_c00311{margin-left:-10.656000px;}
._e_c00311{margin-left:-9.387000px;}
._12_c00311{margin-left:-8.034000px;}
._f_c00311{margin-left:-6.684000px;}
._a_c00311{margin-left:-5.580000px;}
._6_c00311{margin-left:-4.275000px;}
._9_c00311{margin-left:-2.565000px;}
._7_c00311{margin-left:-1.350000px;}
._5_c00311{width:1.500000px;}
._8_c00311{width:2.835000px;}
._d_c00311{width:3.927000px;}
._1_c00311{width:5.040000px;}
._c_c00311{width:6.333000px;}
._4_c00311{width:7.704000px;}
._3_c00311{width:9.576000px;}
._2_c00311{width:10.944000px;}
._0_c00311{width:12.384000px;}
._b_c00311{width:13.662000px;}
._18_c00311{width:15.150000px;}
._15_c00311{width:18.150000px;}
._11_c00311{width:34.668000px;}
._14_c00311{width:41.022000px;}
._16_c00311{width:48.030000px;}
.fc2_c00311{color:transparent;}
.fc1_c00311{color:rgb(128,128,128);}
.fc0_c00311{color:rgb(0,0,0);}
.fs4_c00311{font-size:48.000000px;}
.fs2_c00311{font-size:66.000000px;}
.fs3_c00311{font-size:69.000000px;}
.fs0_c00311{font-size:72.000000px;}
.fs1_c00311{font-size:75.000000px;}
.y0_c00311{bottom:0.000000px;}
.y1f_c00311{bottom:3.105000px;}
.y1e_c00311{bottom:7.228371px;}
.y1d_c00311{bottom:47.715000px;}
.y1c_c00311{bottom:72.315000px;}
.y1b_c00311{bottom:97.665000px;}
.y1a_c00311{bottom:122.865000px;}
.y19_c00311{bottom:148.065000px;}
.y18_c00311{bottom:173.115000px;}
.y17_c00311{bottom:198.165000px;}
.y16_c00311{bottom:222.765000px;}
.y15_c00311{bottom:247.065000px;}
.y14_c00311{bottom:271.815000px;}
.y13_c00311{bottom:296.715000px;}
.y12_c00311{bottom:321.015000px;}
.y11_c00311{bottom:345.315000px;}
.y10_c00311{bottom:370.215000px;}
.yf_c00311{bottom:394.665000px;}
.ye_c00311{bottom:418.815000px;}
.yd_c00311{bottom:443.265000px;}
.yc_c00311{bottom:467.415000px;}
.yb_c00311{bottom:491.865000px;}
.ya_c00311{bottom:516.765000px;}
.y9_c00311{bottom:540.315000px;}
.y8_c00311{bottom:565.665000px;}
.y7_c00311{bottom:591.315000px;}
.y6_c00311{bottom:615.615000px;}
.y5_c00311{bottom:637.965000px;}
.y4_c00311{bottom:661.815000px;}
.y3_c00311{bottom:688.365000px;}
.y2_c00311{bottom:713.115000px;}
.y1_c00311{bottom:737.865000px;}
.h6_c00311{height:13.200074px;}
.h7_c00311{height:43.804688px;}
.h3_c00311{height:73.608398px;}
.h4_c00311{height:77.247070px;}
.h5_c00311{height:87.361816px;}
.h2_c00311{height:91.160156px;}
.h1_c00311{height:782.250000px;}
.h0_c00311{height:782.475000px;}
.w2_c00311{width:104.875500px;}
.w1_c00311{width:507.000000px;}
.w0_c00311{width:507.300000px;}
.x0_c00311{left:0.000000px;}
.x4_c00311{left:30.300000px;}
.x3_c00311{left:32.100000px;}
.x9_c00311{left:101.700000px;}
.x8_c00311{left:103.950000px;}
.x7_c00311{left:106.350000px;}
.x6_c00311{left:107.550000px;}
.x5_c00311{left:108.900000px;}
.x2_c00311{left:113.100000px;}
.xb_c00311{left:205.464249px;}
.x1_c00311{left:243.600000px;}
.xa_c00311{left:450.450000px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls1_c00311{letter-spacing:0.000000pt;}
.ls0_c00311{letter-spacing:2.666667pt;}
.ws0_c00311{word-spacing:-15.424000pt;}
.ws1_c00311{word-spacing:-14.138667pt;}
.ws2_c00311{word-spacing:0.000000pt;}
._19_c00311{margin-left:-14.200000pt;}
._10_c00311{margin-left:-12.133333pt;}
._13_c00311{margin-left:-10.442667pt;}
._17_c00311{margin-left:-9.472000pt;}
._e_c00311{margin-left:-8.344000pt;}
._12_c00311{margin-left:-7.141333pt;}
._f_c00311{margin-left:-5.941333pt;}
._a_c00311{margin-left:-4.960000pt;}
._6_c00311{margin-left:-3.800000pt;}
._9_c00311{margin-left:-2.280000pt;}
._7_c00311{margin-left:-1.200000pt;}
._5_c00311{width:1.333333pt;}
._8_c00311{width:2.520000pt;}
._d_c00311{width:3.490667pt;}
._1_c00311{width:4.480000pt;}
._c_c00311{width:5.629333pt;}
._4_c00311{width:6.848000pt;}
._3_c00311{width:8.512000pt;}
._2_c00311{width:9.728000pt;}
._0_c00311{width:11.008000pt;}
._b_c00311{width:12.144000pt;}
._18_c00311{width:13.466667pt;}
._15_c00311{width:16.133333pt;}
._11_c00311{width:30.816000pt;}
._14_c00311{width:36.464000pt;}
._16_c00311{width:42.693333pt;}
.fs4_c00311{font-size:42.666667pt;}
.fs2_c00311{font-size:58.666667pt;}
.fs3_c00311{font-size:61.333333pt;}
.fs0_c00311{font-size:64.000000pt;}
.fs1_c00311{font-size:66.666667pt;}
.y0_c00311{bottom:0.000000pt;}
.y1f_c00311{bottom:2.760000pt;}
.y1e_c00311{bottom:6.425219pt;}
.y1d_c00311{bottom:42.413333pt;}
.y1c_c00311{bottom:64.280000pt;}
.y1b_c00311{bottom:86.813333pt;}
.y1a_c00311{bottom:109.213333pt;}
.y19_c00311{bottom:131.613333pt;}
.y18_c00311{bottom:153.880000pt;}
.y17_c00311{bottom:176.146667pt;}
.y16_c00311{bottom:198.013333pt;}
.y15_c00311{bottom:219.613333pt;}
.y14_c00311{bottom:241.613333pt;}
.y13_c00311{bottom:263.746667pt;}
.y12_c00311{bottom:285.346667pt;}
.y11_c00311{bottom:306.946667pt;}
.y10_c00311{bottom:329.080000pt;}
.yf_c00311{bottom:350.813333pt;}
.ye_c00311{bottom:372.280000pt;}
.yd_c00311{bottom:394.013333pt;}
.yc_c00311{bottom:415.480000pt;}
.yb_c00311{bottom:437.213333pt;}
.ya_c00311{bottom:459.346667pt;}
.y9_c00311{bottom:480.280000pt;}
.y8_c00311{bottom:502.813333pt;}
.y7_c00311{bottom:525.613333pt;}
.y6_c00311{bottom:547.213333pt;}
.y5_c00311{bottom:567.080000pt;}
.y4_c00311{bottom:588.280000pt;}
.y3_c00311{bottom:611.880000pt;}
.y2_c00311{bottom:633.880000pt;}
.y1_c00311{bottom:655.880000pt;}
.h6_c00311{height:11.733399pt;}
.h7_c00311{height:38.937500pt;}
.h3_c00311{height:65.429688pt;}
.h4_c00311{height:68.664062pt;}
.h5_c00311{height:77.654948pt;}
.h2_c00311{height:81.031250pt;}
.h1_c00311{height:695.333333pt;}
.h0_c00311{height:695.533333pt;}
.w2_c00311{width:93.222667pt;}
.w1_c00311{width:450.666667pt;}
.w0_c00311{width:450.933333pt;}
.x0_c00311{left:0.000000pt;}
.x4_c00311{left:26.933333pt;}
.x3_c00311{left:28.533333pt;}
.x9_c00311{left:90.400000pt;}
.x8_c00311{left:92.400000pt;}
.x7_c00311{left:94.533333pt;}
.x6_c00311{left:95.600000pt;}
.x5_c00311{left:96.800000pt;}
.x2_c00311{left:100.533333pt;}
.xb_c00311{left:182.634888pt;}
.x1_c00311{left:216.533333pt;}
.xa_c00311{left:400.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3abd6eaf36a75b19c769432c.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00312;src:url('chunks/assets/font_25409900dfaaa09082780da8.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00312;src:url('chunks/assets/font_0d71ffae7a30869d233afb8d.woff2')format("woff");}.ff3_c00312{font-family:ff3_c00312;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00312{font-family:ff4_c00312;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00312{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00312{vertical-align:0.000000px;}
.ls3_c00312{letter-spacing:0.000000px;}
.ls0_c00312{letter-spacing:0.648000px;}
.ls1_c00312{letter-spacing:3.000000px;}
.ls2_c00312{letter-spacing:3.900000px;}
.ls4_c00312{letter-spacing:6.000000px;}
.sc__c00312{text-shadow:none;}
.sc0_c00312{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00312{-webkit-text-stroke:0px transparent;}
.sc0_c00312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00312{word-spacing:-22.650000px;}
.ws0_c00312{word-spacing:-21.750000px;}
.ws1_c00312{word-spacing:-16.629000px;}
.ws3_c00312{word-spacing:0.000000px;}
._13_c00312{margin-left:-23.151000px;}
._16_c00312{margin-left:-15.648000px;}
._10_c00312{margin-left:-13.695000px;}
._f_c00312{margin-left:-11.871000px;}
._14_c00312{margin-left:-10.590000px;}
._9_c00312{margin-left:-9.477000px;}
._2_c00312{margin-left:-8.064000px;}
._e_c00312{margin-left:-6.180000px;}
._5_c00312{margin-left:-4.788000px;}
._11_c00312{margin-left:-3.648000px;}
._b_c00312{margin-left:-2.592000px;}
._a_c00312{margin-left:-1.134000px;}
._d_c00312{width:1.032000px;}
._3_c00312{width:2.100000px;}
._4_c00312{width:3.948000px;}
._c_c00312{width:4.953000px;}
._6_c00312{width:6.216000px;}
._1_c00312{width:7.980000px;}
._12_c00312{width:9.099000px;}
._8_c00312{width:11.097000px;}
._0_c00312{width:12.852000px;}
._7_c00312{width:367.575000px;}
._15_c00312{width:1078.716000px;}
.fc2_c00312{color:transparent;}
.fc1_c00312{color:rgb(128,128,128);}
.fc0_c00312{color:rgb(0,0,0);}
.fs5_c00312{font-size:48.000000px;}
.fs4_c00312{font-size:69.000000px;}
.fs2_c00312{font-size:72.000000px;}
.fs3_c00312{font-size:75.000000px;}
.fs1_c00312{font-size:81.000000px;}
.fs0_c00312{font-size:84.000000px;}
.y0_c00312{bottom:0.000000px;}
.y1f_c00312{bottom:3.105000px;}
.y1e_c00312{bottom:7.228357px;}
.y1d_c00312{bottom:35.430000px;}
.y1c_c00312{bottom:60.030000px;}
.y1b_c00312{bottom:84.480000px;}
.y1a_c00312{bottom:111.030000px;}
.y19_c00312{bottom:136.080000px;}
.y18_c00312{bottom:160.380000px;}
.y17_c00312{bottom:186.630000px;}
.y16_c00312{bottom:211.230000px;}
.y15_c00312{bottom:235.980000px;}
.y14_c00312{bottom:260.880000px;}
.y13_c00312{bottom:285.480000px;}
.y12_c00312{bottom:308.130000px;}
.y11_c00312{bottom:331.530000px;}
.y10_c00312{bottom:356.130000px;}
.yf_c00312{bottom:380.730000px;}
.ye_c00312{bottom:405.030000px;}
.yd_c00312{bottom:430.380000px;}
.yc_c00312{bottom:454.380000px;}
.yb_c00312{bottom:478.680000px;}
.ya_c00312{bottom:504.180000px;}
.y9_c00312{bottom:527.880000px;}
.y8_c00312{bottom:552.930000px;}
.y7_c00312{bottom:577.830000px;}
.y6_c00312{bottom:602.130000px;}
.y5_c00312{bottom:627.030000px;}
.y4_c00312{bottom:652.080000px;}
.y3_c00312{bottom:675.330000px;}
.y2_c00312{bottom:702.030000px;}
.y1_c00312{bottom:725.580000px;}
.h7_c00312{height:13.200074px;}
.h8_c00312{height:43.804688px;}
.h4_c00312{height:73.608398px;}
.h5_c00312{height:79.497070px;}
.h2_c00312{height:82.400391px;}
.h6_c00312{height:87.361816px;}
.h3_c00312{height:91.160156px;}
.h0_c00312{height:767.100000px;}
.h1_c00312{height:767.250000px;}
.w2_c00312{width:104.875500px;}
.w0_c00312{width:532.950000px;}
.w1_c00312{width:533.250000px;}
.x0_c00312{left:0.000000px;}
.x2_c00312{left:12.150000px;}
.x3_c00312{left:14.550000px;}
.x4_c00312{left:15.600000px;}
.x5_c00312{left:17.250000px;}
.x6_c00312{left:19.200000px;}
.x7_c00312{left:20.250000px;}
.x8_c00312{left:21.900000px;}
.x9_c00312{left:22.950000px;}
.xa_c00312{left:24.600000px;}
.xb_c00312{left:26.250000px;}
.xd_c00312{left:27.600000px;}
.xe_c00312{left:28.650000px;}
.xf_c00312{left:30.000000px;}
.x10_c00312{left:31.950000px;}
.xc_c00312{left:90.750000px;}
.x1_c00312{left:120.150000px;}
.x12_c00312{left:218.289230px;}
.x11_c00312{left:369.450000px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls3_c00312{letter-spacing:0.000000pt;}
.ls0_c00312{letter-spacing:0.576000pt;}
.ls1_c00312{letter-spacing:2.666667pt;}
.ls2_c00312{letter-spacing:3.466667pt;}
.ls4_c00312{letter-spacing:5.333333pt;}
.ws2_c00312{word-spacing:-20.133333pt;}
.ws0_c00312{word-spacing:-19.333333pt;}
.ws1_c00312{word-spacing:-14.781333pt;}
.ws3_c00312{word-spacing:0.000000pt;}
._13_c00312{margin-left:-20.578667pt;}
._16_c00312{margin-left:-13.909333pt;}
._10_c00312{margin-left:-12.173333pt;}
._f_c00312{margin-left:-10.552000pt;}
._14_c00312{margin-left:-9.413333pt;}
._9_c00312{margin-left:-8.424000pt;}
._2_c00312{margin-left:-7.168000pt;}
._e_c00312{margin-left:-5.493333pt;}
._5_c00312{margin-left:-4.256000pt;}
._11_c00312{margin-left:-3.242667pt;}
._b_c00312{margin-left:-2.304000pt;}
._a_c00312{margin-left:-1.008000pt;}
._d_c00312{width:0.917333pt;}
._3_c00312{width:1.866667pt;}
._4_c00312{width:3.509333pt;}
._c_c00312{width:4.402667pt;}
._6_c00312{width:5.525333pt;}
._1_c00312{width:7.093333pt;}
._12_c00312{width:8.088000pt;}
._8_c00312{width:9.864000pt;}
._0_c00312{width:11.424000pt;}
._7_c00312{width:326.733333pt;}
._15_c00312{width:958.858667pt;}
.fs5_c00312{font-size:42.666667pt;}
.fs4_c00312{font-size:61.333333pt;}
.fs2_c00312{font-size:64.000000pt;}
.fs3_c00312{font-size:66.666667pt;}
.fs1_c00312{font-size:72.000000pt;}
.fs0_c00312{font-size:74.666667pt;}
.y0_c00312{bottom:0.000000pt;}
.y1f_c00312{bottom:2.760000pt;}
.y1e_c00312{bottom:6.425206pt;}
.y1d_c00312{bottom:31.493333pt;}
.y1c_c00312{bottom:53.360000pt;}
.y1b_c00312{bottom:75.093333pt;}
.y1a_c00312{bottom:98.693333pt;}
.y19_c00312{bottom:120.960000pt;}
.y18_c00312{bottom:142.560000pt;}
.y17_c00312{bottom:165.893333pt;}
.y16_c00312{bottom:187.760000pt;}
.y15_c00312{bottom:209.760000pt;}
.y14_c00312{bottom:231.893333pt;}
.y13_c00312{bottom:253.760000pt;}
.y12_c00312{bottom:273.893333pt;}
.y11_c00312{bottom:294.693333pt;}
.y10_c00312{bottom:316.560000pt;}
.yf_c00312{bottom:338.426667pt;}
.ye_c00312{bottom:360.026667pt;}
.yd_c00312{bottom:382.560000pt;}
.yc_c00312{bottom:403.893333pt;}
.yb_c00312{bottom:425.493333pt;}
.ya_c00312{bottom:448.160000pt;}
.y9_c00312{bottom:469.226667pt;}
.y8_c00312{bottom:491.493333pt;}
.y7_c00312{bottom:513.626667pt;}
.y6_c00312{bottom:535.226667pt;}
.y5_c00312{bottom:557.360000pt;}
.y4_c00312{bottom:579.626667pt;}
.y3_c00312{bottom:600.293333pt;}
.y2_c00312{bottom:624.026667pt;}
.y1_c00312{bottom:644.960000pt;}
.h7_c00312{height:11.733399pt;}
.h8_c00312{height:38.937500pt;}
.h4_c00312{height:65.429688pt;}
.h5_c00312{height:70.664062pt;}
.h2_c00312{height:73.244792pt;}
.h6_c00312{height:77.654948pt;}
.h3_c00312{height:81.031250pt;}
.h0_c00312{height:681.866667pt;}
.h1_c00312{height:682.000000pt;}
.w2_c00312{width:93.222667pt;}
.w0_c00312{width:473.733333pt;}
.w1_c00312{width:474.000000pt;}
.x0_c00312{left:0.000000pt;}
.x2_c00312{left:10.800000pt;}
.x3_c00312{left:12.933333pt;}
.x4_c00312{left:13.866667pt;}
.x5_c00312{left:15.333333pt;}
.x6_c00312{left:17.066667pt;}
.x7_c00312{left:18.000000pt;}
.x8_c00312{left:19.466667pt;}
.x9_c00312{left:20.400000pt;}
.xa_c00312{left:21.866667pt;}
.xb_c00312{left:23.333333pt;}
.xd_c00312{left:24.533333pt;}
.xe_c00312{left:25.466667pt;}
.xf_c00312{left:26.666667pt;}
.x10_c00312{left:28.400000pt;}
.xc_c00312{left:80.666667pt;}
.x1_c00312{left:106.800000pt;}
.x12_c00312{left:194.034871pt;}
.x11_c00312{left:328.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7eb3eea434213d536c20aad3.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.480469;font-style:normal;font-weight:normal;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_533773033caec943e7df2238.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:1.568848;font-style:normal;font-weight:normal;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_8f5a48056f383aa94bf70a11.woff2')format("woff");}.ff3_c00313{font-family:ff3_c00313;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00313;src:url('chunks/assets/font_e6c4cf725edb068ced3d2de4.woff2')format("woff");}.ff4_c00313{font-family:ff4_c00313;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00313;src:url('chunks/assets/font_cd69ed46a8bc125f4eebabfa.woff2')format("woff");}.ff5_c00313{font-family:ff5_c00313;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00313;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00313{font-family:ff6_c00313;line-height:1.219238;font-style: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;}
.ls0_c00313{letter-spacing:-3.000000px;}
.ls2_c00313{letter-spacing:0.000000px;}
.ls1_c00313{letter-spacing:3.000000px;}
.ls3_c00313{letter-spacing:9.000000px;}
.sc__c00313{text-shadow:none;}
.sc0_c00313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00313{-webkit-text-stroke:0px transparent;}
.sc0_c00313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00313{word-spacing:-53.430000px;}
.ws1_c00313{word-spacing:-45.000000px;}
.ws2_c00313{word-spacing:-20.352000px;}
.ws3_c00313{word-spacing:0.000000px;}
._18_c00313{margin-left:-27.855000px;}
._1a_c00313{margin-left:-22.200000px;}
._17_c00313{margin-left:-14.625000px;}
._19_c00313{margin-left:-13.077000px;}
._16_c00313{margin-left:-11.856000px;}
._15_c00313{margin-left:-10.035000px;}
._14_c00313{margin-left:-8.976000px;}
._13_c00313{margin-left:-6.912000px;}
._10_c00313{margin-left:-5.868000px;}
._e_c00313{margin-left:-4.608000px;}
._4_c00313{margin-left:-2.760000px;}
._f_c00313{margin-left:-1.104000px;}
._b_c00313{width:1.440000px;}
._a_c00313{width:2.448000px;}
._9_c00313{width:4.176000px;}
._8_c00313{width:6.048000px;}
._c_c00313{width:7.848000px;}
._1_c00313{width:9.180000px;}
._11_c00313{width:10.440000px;}
._12_c00313{width:11.520000px;}
._5_c00313{width:12.660000px;}
._6_c00313{width:14.040000px;}
._7_c00313{width:15.180000px;}
._d_c00313{width:16.368000px;}
._2_c00313{width:17.520000px;}
._3_c00313{width:18.840000px;}
._0_c00313{width:19.860000px;}
.fc2_c00313{color:transparent;}
.fc1_c00313{color:rgb(128,128,128);}
.fc0_c00313{color:rgb(0,0,0);}
.fs5_c00313{font-size:48.000000px;}
.fs0_c00313{font-size:60.000000px;}
.fs4_c00313{font-size:66.000000px;}
.fs1_c00313{font-size:72.000000px;}
.fs2_c00313{font-size:75.000000px;}
.fs3_c00313{font-size:78.000000px;}
.y0_c00313{bottom:0.000000px;}
.y1f_c00313{bottom:3.105000px;}
.y1e_c00313{bottom:7.228371px;}
.y1d_c00313{bottom:17.265000px;}
.y1c_c00313{bottom:42.165000px;}
.y1b_c00313{bottom:67.815000px;}
.y1a_c00313{bottom:92.565000px;}
.y19_c00313{bottom:117.765000px;}
.y18_c00313{bottom:142.815000px;}
.y17_c00313{bottom:166.365000px;}
.y16_c00313{bottom:193.065000px;}
.y15_c00313{bottom:217.665000px;}
.y14_c00313{bottom:241.665000px;}
.y13_c00313{bottom:266.415000px;}
.y12_c00313{bottom:291.915000px;}
.y11_c00313{bottom:315.015000px;}
.y10_c00313{bottom:340.515000px;}
.yf_c00313{bottom:364.815000px;}
.ye_c00313{bottom:390.165000px;}
.yd_c00313{bottom:413.865000px;}
.yc_c00313{bottom:436.065000px;}
.yb_c00313{bottom:462.165000px;}
.ya_c00313{bottom:486.765000px;}
.y9_c00313{bottom:510.315000px;}
.y8_c00313{bottom:534.315000px;}
.y7_c00313{bottom:560.265000px;}
.y6_c00313{bottom:585.015000px;}
.y5_c00313{bottom:610.515000px;}
.y4_c00313{bottom:634.815000px;}
.y3_c00313{bottom:659.865000px;}
.y2_c00313{bottom:684.465000px;}
.y1_c00313{bottom:709.515000px;}
.h7_c00313{height:13.200074px;}
.h8_c00313{height:43.804688px;}
.h4_c00313{height:73.608398px;}
.h2_c00313{height:75.966797px;}
.h6_c00313{height:77.247070px;}
.h3_c00313{height:91.160156px;}
.h5_c00313{height:98.756836px;}
.h0_c00313{height:744.675000px;}
.h1_c00313{height:744.750000px;}
.w2_c00313{width:104.875500px;}
.w0_c00313{width:502.200000px;}
.w1_c00313{width:502.500000px;}
.x0_c00313{left:0.000000px;}
.x12_c00313{left:81.000000px;}
.x11_c00313{left:82.050000px;}
.x10_c00313{left:83.100000px;}
.xf_c00313{left:85.050000px;}
.xd_c00313{left:88.050000px;}
.xc_c00313{left:90.150000px;}
.xb_c00313{left:91.800000px;}
.xa_c00313{left:92.850000px;}
.x9_c00313{left:94.200000px;}
.x8_c00313{left:95.550000px;}
.x7_c00313{left:97.200000px;}
.x6_c00313{left:98.250000px;}
.x5_c00313{left:99.600000px;}
.x4_c00313{left:102.900000px;}
.x3_c00313{left:104.250000px;}
.x2_c00313{left:106.050000px;}
.xe_c00313{left:178.950000px;}
.x14_c00313{left:202.914230px;}
.x1_c00313{left:225.750000px;}
.x13_c00313{left:431.400000px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls0_c00313{letter-spacing:-2.666667pt;}
.ls2_c00313{letter-spacing:0.000000pt;}
.ls1_c00313{letter-spacing:2.666667pt;}
.ls3_c00313{letter-spacing:8.000000pt;}
.ws0_c00313{word-spacing:-47.493333pt;}
.ws1_c00313{word-spacing:-40.000000pt;}
.ws2_c00313{word-spacing:-18.090667pt;}
.ws3_c00313{word-spacing:0.000000pt;}
._18_c00313{margin-left:-24.760000pt;}
._1a_c00313{margin-left:-19.733333pt;}
._17_c00313{margin-left:-13.000000pt;}
._19_c00313{margin-left:-11.624000pt;}
._16_c00313{margin-left:-10.538667pt;}
._15_c00313{margin-left:-8.920000pt;}
._14_c00313{margin-left:-7.978667pt;}
._13_c00313{margin-left:-6.144000pt;}
._10_c00313{margin-left:-5.216000pt;}
._e_c00313{margin-left:-4.096000pt;}
._4_c00313{margin-left:-2.453333pt;}
._f_c00313{margin-left:-0.981333pt;}
._b_c00313{width:1.280000pt;}
._a_c00313{width:2.176000pt;}
._9_c00313{width:3.712000pt;}
._8_c00313{width:5.376000pt;}
._c_c00313{width:6.976000pt;}
._1_c00313{width:8.160000pt;}
._11_c00313{width:9.280000pt;}
._12_c00313{width:10.240000pt;}
._5_c00313{width:11.253333pt;}
._6_c00313{width:12.480000pt;}
._7_c00313{width:13.493333pt;}
._d_c00313{width:14.549333pt;}
._2_c00313{width:15.573333pt;}
._3_c00313{width:16.746667pt;}
._0_c00313{width:17.653333pt;}
.fs5_c00313{font-size:42.666667pt;}
.fs0_c00313{font-size:53.333333pt;}
.fs4_c00313{font-size:58.666667pt;}
.fs1_c00313{font-size:64.000000pt;}
.fs2_c00313{font-size:66.666667pt;}
.fs3_c00313{font-size:69.333333pt;}
.y0_c00313{bottom:0.000000pt;}
.y1f_c00313{bottom:2.760000pt;}
.y1e_c00313{bottom:6.425219pt;}
.y1d_c00313{bottom:15.346667pt;}
.y1c_c00313{bottom:37.480000pt;}
.y1b_c00313{bottom:60.280000pt;}
.y1a_c00313{bottom:82.280000pt;}
.y19_c00313{bottom:104.680000pt;}
.y18_c00313{bottom:126.946667pt;}
.y17_c00313{bottom:147.880000pt;}
.y16_c00313{bottom:171.613333pt;}
.y15_c00313{bottom:193.480000pt;}
.y14_c00313{bottom:214.813333pt;}
.y13_c00313{bottom:236.813333pt;}
.y12_c00313{bottom:259.480000pt;}
.y11_c00313{bottom:280.013333pt;}
.y10_c00313{bottom:302.680000pt;}
.yf_c00313{bottom:324.280000pt;}
.ye_c00313{bottom:346.813333pt;}
.yd_c00313{bottom:367.880000pt;}
.yc_c00313{bottom:387.613333pt;}
.yb_c00313{bottom:410.813333pt;}
.ya_c00313{bottom:432.680000pt;}
.y9_c00313{bottom:453.613333pt;}
.y8_c00313{bottom:474.946667pt;}
.y7_c00313{bottom:498.013333pt;}
.y6_c00313{bottom:520.013333pt;}
.y5_c00313{bottom:542.680000pt;}
.y4_c00313{bottom:564.280000pt;}
.y3_c00313{bottom:586.546667pt;}
.y2_c00313{bottom:608.413333pt;}
.y1_c00313{bottom:630.680000pt;}
.h7_c00313{height:11.733399pt;}
.h8_c00313{height:38.937500pt;}
.h4_c00313{height:65.429688pt;}
.h2_c00313{height:67.526042pt;}
.h6_c00313{height:68.664062pt;}
.h3_c00313{height:81.031250pt;}
.h5_c00313{height:87.783854pt;}
.h0_c00313{height:661.933333pt;}
.h1_c00313{height:662.000000pt;}
.w2_c00313{width:93.222667pt;}
.w0_c00313{width:446.400000pt;}
.w1_c00313{width:446.666667pt;}
.x0_c00313{left:0.000000pt;}
.x12_c00313{left:72.000000pt;}
.x11_c00313{left:72.933333pt;}
.x10_c00313{left:73.866667pt;}
.xf_c00313{left:75.600000pt;}
.xd_c00313{left:78.266667pt;}
.xc_c00313{left:80.133333pt;}
.xb_c00313{left:81.600000pt;}
.xa_c00313{left:82.533333pt;}
.x9_c00313{left:83.733333pt;}
.x8_c00313{left:84.933333pt;}
.x7_c00313{left:86.400000pt;}
.x6_c00313{left:87.333333pt;}
.x5_c00313{left:88.533333pt;}
.x4_c00313{left:91.466667pt;}
.x3_c00313{left:92.666667pt;}
.x2_c00313{left:94.266667pt;}
.xe_c00313{left:159.066667pt;}
.x14_c00313{left:180.368205pt;}
.x1_c00313{left:200.666667pt;}
.x13_c00313{left:383.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0af1c5687dfb2b0184d7f7eb.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00314;src:url('chunks/assets/font_22abe66b42d7acd5fad02b3d.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00314;src:url('chunks/assets/font_6c03ad59ca320d765e3db667.woff2')format("woff");}.ff3_c00314{font-family:ff3_c00314;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00314;src:url('chunks/assets/font_40b5f0ac6312b651bbef5be0.woff2')format("woff");}.ff4_c00314{font-family:ff4_c00314;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00314;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00314{font-family:ff5_c00314;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00314{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00314{vertical-align:0.000000px;}
.ls0_c00314{letter-spacing:0.000000px;}
.ls1_c00314{letter-spacing:3.000000px;}
.sc__c00314{text-shadow:none;}
.sc0_c00314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00314{-webkit-text-stroke:0px transparent;}
.sc0_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00314{word-spacing:-30.426000px;}
.ws1_c00314{word-spacing:0.000000px;}
._b_c00314{margin-left:-10.086000px;}
._14_c00314{margin-left:-8.172000px;}
._1_c00314{margin-left:-6.888000px;}
._c_c00314{margin-left:-5.202000px;}
._0_c00314{margin-left:-4.116000px;}
._2_c00314{margin-left:-2.940000px;}
._8_c00314{margin-left:-1.413000px;}
._5_c00314{width:1.752000px;}
._3_c00314{width:2.772000px;}
._12_c00314{width:3.777000px;}
._4_c00314{width:4.788000px;}
._7_c00314{width:6.600000px;}
._a_c00314{width:8.100000px;}
._e_c00314{width:9.900000px;}
._9_c00314{width:11.514000px;}
._11_c00314{width:13.467000px;}
._f_c00314{width:14.619000px;}
._13_c00314{width:18.525000px;}
._d_c00314{width:19.650000px;}
._10_c00314{width:27.261000px;}
._15_c00314{width:314.475000px;}
._6_c00314{width:358.911000px;}
.fc2_c00314{color:transparent;}
.fc1_c00314{color:rgb(128,128,128);}
.fc0_c00314{color:rgb(0,0,0);}
.fs4_c00314{font-size:48.000000px;}
.fs3_c00314{font-size:66.000000px;}
.fs2_c00314{font-size:75.000000px;}
.fs1_c00314{font-size:81.000000px;}
.fs0_c00314{font-size:84.000000px;}
.y0_c00314{bottom:0.000000px;}
.y1f_c00314{bottom:3.105000px;}
.y1e_c00314{bottom:7.228371px;}
.y1d_c00314{bottom:61.515000px;}
.y1c_c00314{bottom:87.465000px;}
.y1b_c00314{bottom:112.065000px;}
.y1a_c00314{bottom:137.715000px;}
.y19_c00314{bottom:162.315000px;}
.y18_c00314{bottom:187.665000px;}
.y17_c00314{bottom:212.415000px;}
.y16_c00314{bottom:237.615000px;}
.y15_c00314{bottom:261.915000px;}
.y14_c00314{bottom:287.265000px;}
.y13_c00314{bottom:309.915000px;}
.y12_c00314{bottom:332.565000px;}
.y11_c00314{bottom:356.865000px;}
.y10_c00314{bottom:381.165000px;}
.yf_c00314{bottom:406.065000px;}
.ye_c00314{bottom:430.665000px;}
.yd_c00314{bottom:454.965000px;}
.yc_c00314{bottom:480.015000px;}
.yb_c00314{bottom:504.615000px;}
.ya_c00314{bottom:528.615000px;}
.y9_c00314{bottom:553.215000px;}
.y8_c00314{bottom:577.515000px;}
.y7_c00314{bottom:602.115000px;}
.y6_c00314{bottom:626.415000px;}
.y5_c00314{bottom:650.715000px;}
.y4_c00314{bottom:675.015000px;}
.y3_c00314{bottom:699.315000px;}
.y2_c00314{bottom:723.915000px;}
.y1_c00314{bottom:749.265000px;}
.h5_c00314{height:13.200074px;}
.h6_c00314{height:43.804688px;}
.h3_c00314{height:73.608398px;}
.h2_c00314{height:82.400391px;}
.h4_c00314{height:83.563477px;}
.h0_c00314{height:787.875000px;}
.h1_c00314{height:788.250000px;}
.w2_c00314{width:104.875500px;}
.w1_c00314{width:522.750000px;}
.w0_c00314{width:522.975000px;}
.x0_c00314{left:0.000000px;}
.x6_c00314{left:12.450000px;}
.xa_c00314{left:17.100000px;}
.x9_c00314{left:18.900000px;}
.x8_c00314{left:21.150000px;}
.x7_c00314{left:22.200000px;}
.x5_c00314{left:23.550000px;}
.x4_c00314{left:25.350000px;}
.x2_c00314{left:26.400000px;}
.x3_c00314{left:27.600000px;}
.x1_c00314{left:130.950000px;}
.xc_c00314{left:213.301758px;}
.xb_c00314{left:258.450000px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls0_c00314{letter-spacing:0.000000pt;}
.ls1_c00314{letter-spacing:2.666667pt;}
.ws0_c00314{word-spacing:-27.045333pt;}
.ws1_c00314{word-spacing:0.000000pt;}
._b_c00314{margin-left:-8.965333pt;}
._14_c00314{margin-left:-7.264000pt;}
._1_c00314{margin-left:-6.122667pt;}
._c_c00314{margin-left:-4.624000pt;}
._0_c00314{margin-left:-3.658667pt;}
._2_c00314{margin-left:-2.613333pt;}
._8_c00314{margin-left:-1.256000pt;}
._5_c00314{width:1.557333pt;}
._3_c00314{width:2.464000pt;}
._12_c00314{width:3.357333pt;}
._4_c00314{width:4.256000pt;}
._7_c00314{width:5.866667pt;}
._a_c00314{width:7.200000pt;}
._e_c00314{width:8.800000pt;}
._9_c00314{width:10.234667pt;}
._11_c00314{width:11.970667pt;}
._f_c00314{width:12.994667pt;}
._13_c00314{width:16.466667pt;}
._d_c00314{width:17.466667pt;}
._10_c00314{width:24.232000pt;}
._15_c00314{width:279.533333pt;}
._6_c00314{width:319.032000pt;}
.fs4_c00314{font-size:42.666667pt;}
.fs3_c00314{font-size:58.666667pt;}
.fs2_c00314{font-size:66.666667pt;}
.fs1_c00314{font-size:72.000000pt;}
.fs0_c00314{font-size:74.666667pt;}
.y0_c00314{bottom:0.000000pt;}
.y1f_c00314{bottom:2.760000pt;}
.y1e_c00314{bottom:6.425219pt;}
.y1d_c00314{bottom:54.680000pt;}
.y1c_c00314{bottom:77.746667pt;}
.y1b_c00314{bottom:99.613333pt;}
.y1a_c00314{bottom:122.413333pt;}
.y19_c00314{bottom:144.280000pt;}
.y18_c00314{bottom:166.813333pt;}
.y17_c00314{bottom:188.813333pt;}
.y16_c00314{bottom:211.213333pt;}
.y15_c00314{bottom:232.813333pt;}
.y14_c00314{bottom:255.346667pt;}
.y13_c00314{bottom:275.480000pt;}
.y12_c00314{bottom:295.613333pt;}
.y11_c00314{bottom:317.213333pt;}
.y10_c00314{bottom:338.813333pt;}
.yf_c00314{bottom:360.946667pt;}
.ye_c00314{bottom:382.813333pt;}
.yd_c00314{bottom:404.413333pt;}
.yc_c00314{bottom:426.680000pt;}
.yb_c00314{bottom:448.546667pt;}
.ya_c00314{bottom:469.880000pt;}
.y9_c00314{bottom:491.746667pt;}
.y8_c00314{bottom:513.346667pt;}
.y7_c00314{bottom:535.213333pt;}
.y6_c00314{bottom:556.813333pt;}
.y5_c00314{bottom:578.413333pt;}
.y4_c00314{bottom:600.013333pt;}
.y3_c00314{bottom:621.613333pt;}
.y2_c00314{bottom:643.480000pt;}
.y1_c00314{bottom:666.013333pt;}
.h5_c00314{height:11.733399pt;}
.h6_c00314{height:38.937500pt;}
.h3_c00314{height:65.429688pt;}
.h2_c00314{height:73.244792pt;}
.h4_c00314{height:74.278646pt;}
.h0_c00314{height:700.333333pt;}
.h1_c00314{height:700.666667pt;}
.w2_c00314{width:93.222667pt;}
.w1_c00314{width:464.666667pt;}
.w0_c00314{width:464.866667pt;}
.x0_c00314{left:0.000000pt;}
.x6_c00314{left:11.066667pt;}
.xa_c00314{left:15.200000pt;}
.x9_c00314{left:16.800000pt;}
.x8_c00314{left:18.800000pt;}
.x7_c00314{left:19.733333pt;}
.x5_c00314{left:20.933333pt;}
.x4_c00314{left:22.533333pt;}
.x2_c00314{left:23.466667pt;}
.x3_c00314{left:24.533333pt;}
.x1_c00314{left:116.400000pt;}
.xc_c00314{left:189.601563pt;}
.xb_c00314{left:229.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2b0625cddd1ebf6f04413342.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.480469;font-style:normal;font-weight:normal;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_663ac895ddbba2378a8317cc.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:1.568848;font-style:normal;font-weight:normal;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_1f21daeafb1343197153f499.woff2')format("woff");}.ff3_c00315{font-family:ff3_c00315;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00315;src:url('chunks/assets/font_1e6a6bd297552958cc14ca04.woff2')format("woff");}.ff4_c00315{font-family:ff4_c00315;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00315{font-family:ff5_c00315;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00315{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00315{vertical-align:0.000000px;}
.ls2_c00315{letter-spacing:-3.000000px;}
.ls4_c00315{letter-spacing:0.000000px;}
.ls1_c00315{letter-spacing:3.000000px;}
.ls3_c00315{letter-spacing:6.000000px;}
.ls0_c00315{letter-spacing:8.646000px;}
.sc__c00315{text-shadow:none;}
.sc0_c00315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00315{-webkit-text-stroke:0px transparent;}
.sc0_c00315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00315{word-spacing:-7.380000px;}
.ws1_c00315{word-spacing:0.000000px;}
._11_c00315{margin-left:-13.845000px;}
._13_c00315{margin-left:-11.370000px;}
._f_c00315{margin-left:-9.675000px;}
._12_c00315{margin-left:-8.355000px;}
._10_c00315{margin-left:-6.345000px;}
._a_c00315{margin-left:-5.175000px;}
._9_c00315{margin-left:-3.450000px;}
._e_c00315{margin-left:-2.100000px;}
._16_c00315{margin-left:-1.080000px;}
._8_c00315{width:1.050000px;}
._7_c00315{width:2.400000px;}
._b_c00315{width:4.275000px;}
._d_c00315{width:5.325000px;}
._c_c00315{width:7.125000px;}
._6_c00315{width:8.460000px;}
._2_c00315{width:10.080000px;}
._15_c00315{width:11.295000px;}
._4_c00315{width:12.720000px;}
._14_c00315{width:14.160000px;}
._17_c00315{width:15.183000px;}
._5_c00315{width:18.840000px;}
._3_c00315{width:20.580000px;}
._1_c00315{width:21.900000px;}
._0_c00315{width:29.760000px;}
.fc2_c00315{color:transparent;}
.fc1_c00315{color:rgb(128,128,128);}
.fc0_c00315{color:rgb(0,0,0);}
.fs2_c00315{font-size:36.000000px;}
.fs5_c00315{font-size:48.000000px;}
.fs0_c00315{font-size:60.000000px;}
.fs4_c00315{font-size:63.000000px;}
.fs3_c00315{font-size:72.000000px;}
.fs1_c00315{font-size:75.000000px;}
.y0_c00315{bottom:0.000000px;}
.y1f_c00315{bottom:3.105000px;}
.y1e_c00315{bottom:7.228355px;}
.y1d_c00315{bottom:60.285000px;}
.y1c_c00315{bottom:82.635000px;}
.y1b_c00315{bottom:108.285000px;}
.y1a_c00315{bottom:133.335000px;}
.y19_c00315{bottom:158.985000px;}
.y18_c00315{bottom:184.935000px;}
.y17_c00315{bottom:209.835000px;}
.y16_c00315{bottom:235.185000px;}
.y15_c00315{bottom:260.235000px;}
.y14_c00315{bottom:283.035000px;}
.y13_c00315{bottom:308.085000px;}
.y12_c00315{bottom:333.735000px;}
.y11_c00315{bottom:357.735000px;}
.y10_c00315{bottom:381.585000px;}
.yf_c00315{bottom:405.885000px;}
.ye_c00315{bottom:430.335000px;}
.yd_c00315{bottom:455.535000px;}
.yc_c00315{bottom:478.485000px;}
.yb_c00315{bottom:503.085000px;}
.ya_c00315{bottom:527.835000px;}
.y9_c00315{bottom:552.285000px;}
.y8_c00315{bottom:577.035000px;}
.y7_c00315{bottom:601.785000px;}
.y6_c00315{bottom:625.635000px;}
.y5_c00315{bottom:650.985000px;}
.y4_c00315{bottom:675.285000px;}
.y3_c00315{bottom:698.985000px;}
.y2_c00315{bottom:723.885000px;}
.y1_c00315{bottom:749.835000px;}
.h5_c00315{height:13.200074px;}
.h6_c00315{height:43.804688px;}
.h3_c00315{height:73.608398px;}
.h2_c00315{height:75.966797px;}
.h4_c00315{height:91.160156px;}
.h0_c00315{height:782.175000px;}
.h1_c00315{height:782.250000px;}
.w2_c00315{width:104.875500px;}
.w0_c00315{width:506.775000px;}
.w1_c00315{width:507.000000px;}
.x0_c00315{left:0.000000px;}
.x2_c00315{left:85.800000px;}
.x3_c00315{left:86.850000px;}
.x4_c00315{left:89.100000px;}
.x5_c00315{left:90.450000px;}
.x6_c00315{left:91.500000px;}
.x7_c00315{left:93.450000px;}
.x8_c00315{left:94.500000px;}
.x9_c00315{left:96.300000px;}
.xa_c00315{left:97.950000px;}
.xb_c00315{left:99.000000px;}
.xc_c00315{left:100.650000px;}
.xd_c00315{left:102.300000px;}
.xe_c00315{left:103.650000px;}
.xf_c00315{left:104.700000px;}
.x10_c00315{left:106.050000px;}
.x12_c00315{left:205.201767px;}
.x1_c00315{left:212.400000px;}
.x11_c00315{left:429.600000px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls2_c00315{letter-spacing:-2.666667pt;}
.ls4_c00315{letter-spacing:0.000000pt;}
.ls1_c00315{letter-spacing:2.666667pt;}
.ls3_c00315{letter-spacing:5.333333pt;}
.ls0_c00315{letter-spacing:7.685333pt;}
.ws0_c00315{word-spacing:-6.560000pt;}
.ws1_c00315{word-spacing:0.000000pt;}
._11_c00315{margin-left:-12.306667pt;}
._13_c00315{margin-left:-10.106667pt;}
._f_c00315{margin-left:-8.600000pt;}
._12_c00315{margin-left:-7.426667pt;}
._10_c00315{margin-left:-5.640000pt;}
._a_c00315{margin-left:-4.600000pt;}
._9_c00315{margin-left:-3.066667pt;}
._e_c00315{margin-left:-1.866667pt;}
._16_c00315{margin-left:-0.960000pt;}
._8_c00315{width:0.933333pt;}
._7_c00315{width:2.133333pt;}
._b_c00315{width:3.800000pt;}
._d_c00315{width:4.733333pt;}
._c_c00315{width:6.333333pt;}
._6_c00315{width:7.520000pt;}
._2_c00315{width:8.960000pt;}
._15_c00315{width:10.040000pt;}
._4_c00315{width:11.306667pt;}
._14_c00315{width:12.586667pt;}
._17_c00315{width:13.496000pt;}
._5_c00315{width:16.746667pt;}
._3_c00315{width:18.293333pt;}
._1_c00315{width:19.466667pt;}
._0_c00315{width:26.453333pt;}
.fs2_c00315{font-size:32.000000pt;}
.fs5_c00315{font-size:42.666667pt;}
.fs0_c00315{font-size:53.333333pt;}
.fs4_c00315{font-size:56.000000pt;}
.fs3_c00315{font-size:64.000000pt;}
.fs1_c00315{font-size:66.666667pt;}
.y0_c00315{bottom:0.000000pt;}
.y1f_c00315{bottom:2.760000pt;}
.y1e_c00315{bottom:6.425204pt;}
.y1d_c00315{bottom:53.586667pt;}
.y1c_c00315{bottom:73.453333pt;}
.y1b_c00315{bottom:96.253333pt;}
.y1a_c00315{bottom:118.520000pt;}
.y19_c00315{bottom:141.320000pt;}
.y18_c00315{bottom:164.386667pt;}
.y17_c00315{bottom:186.520000pt;}
.y16_c00315{bottom:209.053333pt;}
.y15_c00315{bottom:231.320000pt;}
.y14_c00315{bottom:251.586667pt;}
.y13_c00315{bottom:273.853333pt;}
.y12_c00315{bottom:296.653333pt;}
.y11_c00315{bottom:317.986667pt;}
.y10_c00315{bottom:339.186667pt;}
.yf_c00315{bottom:360.786667pt;}
.ye_c00315{bottom:382.520000pt;}
.yd_c00315{bottom:404.920000pt;}
.yc_c00315{bottom:425.320000pt;}
.yb_c00315{bottom:447.186667pt;}
.ya_c00315{bottom:469.186667pt;}
.y9_c00315{bottom:490.920000pt;}
.y8_c00315{bottom:512.920000pt;}
.y7_c00315{bottom:534.920000pt;}
.y6_c00315{bottom:556.120000pt;}
.y5_c00315{bottom:578.653333pt;}
.y4_c00315{bottom:600.253333pt;}
.y3_c00315{bottom:621.320000pt;}
.y2_c00315{bottom:643.453333pt;}
.y1_c00315{bottom:666.520000pt;}
.h5_c00315{height:11.733399pt;}
.h6_c00315{height:38.937500pt;}
.h3_c00315{height:65.429688pt;}
.h2_c00315{height:67.526042pt;}
.h4_c00315{height:81.031250pt;}
.h0_c00315{height:695.266667pt;}
.h1_c00315{height:695.333333pt;}
.w2_c00315{width:93.222667pt;}
.w0_c00315{width:450.466667pt;}
.w1_c00315{width:450.666667pt;}
.x0_c00315{left:0.000000pt;}
.x2_c00315{left:76.266667pt;}
.x3_c00315{left:77.200000pt;}
.x4_c00315{left:79.200000pt;}
.x5_c00315{left:80.400000pt;}
.x6_c00315{left:81.333333pt;}
.x7_c00315{left:83.066667pt;}
.x8_c00315{left:84.000000pt;}
.x9_c00315{left:85.600000pt;}
.xa_c00315{left:87.066667pt;}
.xb_c00315{left:88.000000pt;}
.xc_c00315{left:89.466667pt;}
.xd_c00315{left:90.933333pt;}
.xe_c00315{left:92.133333pt;}
.xf_c00315{left:93.066667pt;}
.x10_c00315{left:94.266667pt;}
.x12_c00315{left:182.401571pt;}
.x1_c00315{left:188.800000pt;}
.x11_c00315{left:381.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_423a3925ef53f5476b9ca9e6.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.480469;font-style:normal;font-weight:normal;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_e14c4bca8aa0c8a733b9d9d4.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:1.568848;font-style:normal;font-weight:normal;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_eb10b32e03607202816083b9.woff2')format("woff");}.ff3_c00316{font-family:ff3_c00316;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00316;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00316{font-family:ff4_c00316;line-height:1.219238;font-style: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;}
.ls1_c00316{letter-spacing:-3.000000px;}
.ls2_c00316{letter-spacing:0.000000px;}
.ls0_c00316{letter-spacing:3.000000px;}
.ls3_c00316{letter-spacing:15.000000px;}
.sc__c00316{text-shadow:none;}
.sc0_c00316{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00316{-webkit-text-stroke:0px transparent;}
.sc0_c00316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00316{word-spacing:-20.352000px;}
.ws1_c00316{word-spacing:0.000000px;}
._19_c00316{margin-left:-18.417000px;}
._16_c00316{margin-left:-15.660000px;}
._18_c00316{margin-left:-14.580000px;}
._13_c00316{margin-left:-13.569000px;}
._17_c00316{margin-left:-12.291000px;}
._12_c00316{margin-left:-10.728000px;}
._14_c00316{margin-left:-9.372000px;}
._1_c00316{margin-left:-8.004000px;}
._c_c00316{margin-left:-6.792000px;}
._b_c00316{margin-left:-5.544000px;}
._8_c00316{margin-left:-4.320000px;}
._9_c00316{margin-left:-3.168000px;}
._a_c00316{margin-left:-1.296000px;}
._4_c00316{width:1.479000px;}
._0_c00316{width:2.523000px;}
._2_c00316{width:4.263000px;}
._3_c00316{width:5.655000px;}
._d_c00316{width:6.813000px;}
._f_c00316{width:8.208000px;}
._6_c00316{width:9.309000px;}
._e_c00316{width:10.374000px;}
._7_c00316{width:12.093000px;}
._10_c00316{width:14.256000px;}
._1b_c00316{width:17.208000px;}
._1a_c00316{width:19.296000px;}
._11_c00316{width:35.757000px;}
._5_c00316{width:310.242000px;}
._1c_c00316{width:324.243000px;}
._15_c00316{width:429.768000px;}
.fc2_c00316{color:transparent;}
.fc1_c00316{color:rgb(128,128,128);}
.fc0_c00316{color:rgb(0,0,0);}
.fs4_c00316{font-size:33.000000px;}
.fs5_c00316{font-size:48.000000px;}
.fs3_c00316{font-size:66.000000px;}
.fs1_c00316{font-size:72.000000px;}
.fs2_c00316{font-size:84.000000px;}
.fs0_c00316{font-size:87.000000px;}
.y0_c00316{bottom:0.000000px;}
.y1f_c00316{bottom:3.105000px;}
.y1e_c00316{bottom:7.228355px;}
.y1d_c00316{bottom:43.485000px;}
.y1c_c00316{bottom:71.085000px;}
.y1b_c00316{bottom:94.485000px;}
.y1a_c00316{bottom:117.435000px;}
.y19_c00316{bottom:145.035000px;}
.y18_c00316{bottom:167.985000px;}
.y17_c00316{bottom:195.735000px;}
.y16_c00316{bottom:220.635000px;}
.y15_c00316{bottom:244.035000px;}
.y14_c00316{bottom:267.885000px;}
.y13_c00316{bottom:295.185000px;}
.y12_c00316{bottom:316.485000px;}
.y11_c00316{bottom:340.785000px;}
.y10_c00316{bottom:364.785000px;}
.yf_c00316{bottom:389.385000px;}
.ye_c00316{bottom:414.435000px;}
.yd_c00316{bottom:438.435000px;}
.yc_c00316{bottom:464.085000px;}
.yb_c00316{bottom:487.935000px;}
.ya_c00316{bottom:512.535000px;}
.y9_c00316{bottom:536.985000px;}
.y8_c00316{bottom:562.185000px;}
.y7_c00316{bottom:586.485000px;}
.y6_c00316{bottom:610.785000px;}
.y5_c00316{bottom:635.535000px;}
.y4_c00316{bottom:659.835000px;}
.y3_c00316{bottom:683.685000px;}
.y2_c00316{bottom:709.335000px;}
.y1_c00316{bottom:734.085000px;}
.h6_c00316{height:13.200074px;}
.h7_c00316{height:43.804688px;}
.h5_c00316{height:83.563477px;}
.h3_c00316{height:91.160156px;}
.h2_c00316{height:101.825684px;}
.h4_c00316{height:106.353516px;}
.h1_c00316{height:780.750000px;}
.h0_c00316{height:780.825000px;}
.w2_c00316{width:104.875500px;}
.w0_c00316{width:538.950000px;}
.w1_c00316{width:539.250000px;}
.x0_c00316{left:0.000000px;}
.x8_c00316{left:21.150000px;}
.x9_c00316{left:23.250000px;}
.x7_c00316{left:29.700000px;}
.x6_c00316{left:31.050000px;}
.x5_c00316{left:32.100000px;}
.x4_c00316{left:33.750000px;}
.x2_c00316{left:35.400000px;}
.x3_c00316{left:36.450000px;}
.x1_c00316{left:157.800000px;}
.xa_c00316{left:222.150000px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls1_c00316{letter-spacing:-2.666667pt;}
.ls2_c00316{letter-spacing:0.000000pt;}
.ls0_c00316{letter-spacing:2.666667pt;}
.ls3_c00316{letter-spacing:13.333333pt;}
.ws0_c00316{word-spacing:-18.090667pt;}
.ws1_c00316{word-spacing:0.000000pt;}
._19_c00316{margin-left:-16.370667pt;}
._16_c00316{margin-left:-13.920000pt;}
._18_c00316{margin-left:-12.960000pt;}
._13_c00316{margin-left:-12.061333pt;}
._17_c00316{margin-left:-10.925333pt;}
._12_c00316{margin-left:-9.536000pt;}
._14_c00316{margin-left:-8.330667pt;}
._1_c00316{margin-left:-7.114667pt;}
._c_c00316{margin-left:-6.037333pt;}
._b_c00316{margin-left:-4.928000pt;}
._8_c00316{margin-left:-3.840000pt;}
._9_c00316{margin-left:-2.816000pt;}
._a_c00316{margin-left:-1.152000pt;}
._4_c00316{width:1.314667pt;}
._0_c00316{width:2.242667pt;}
._2_c00316{width:3.789333pt;}
._3_c00316{width:5.026667pt;}
._d_c00316{width:6.056000pt;}
._f_c00316{width:7.296000pt;}
._6_c00316{width:8.274667pt;}
._e_c00316{width:9.221333pt;}
._7_c00316{width:10.749333pt;}
._10_c00316{width:12.672000pt;}
._1b_c00316{width:15.296000pt;}
._1a_c00316{width:17.152000pt;}
._11_c00316{width:31.784000pt;}
._5_c00316{width:275.770667pt;}
._1c_c00316{width:288.216000pt;}
._15_c00316{width:382.016000pt;}
.fs4_c00316{font-size:29.333333pt;}
.fs5_c00316{font-size:42.666667pt;}
.fs3_c00316{font-size:58.666667pt;}
.fs1_c00316{font-size:64.000000pt;}
.fs2_c00316{font-size:74.666667pt;}
.fs0_c00316{font-size:77.333333pt;}
.y0_c00316{bottom:0.000000pt;}
.y1f_c00316{bottom:2.760000pt;}
.y1e_c00316{bottom:6.425204pt;}
.y1d_c00316{bottom:38.653333pt;}
.y1c_c00316{bottom:63.186667pt;}
.y1b_c00316{bottom:83.986667pt;}
.y1a_c00316{bottom:104.386667pt;}
.y19_c00316{bottom:128.920000pt;}
.y18_c00316{bottom:149.320000pt;}
.y17_c00316{bottom:173.986667pt;}
.y16_c00316{bottom:196.120000pt;}
.y15_c00316{bottom:216.920000pt;}
.y14_c00316{bottom:238.120000pt;}
.y13_c00316{bottom:262.386667pt;}
.y12_c00316{bottom:281.320000pt;}
.y11_c00316{bottom:302.920000pt;}
.y10_c00316{bottom:324.253333pt;}
.yf_c00316{bottom:346.120000pt;}
.ye_c00316{bottom:368.386667pt;}
.yd_c00316{bottom:389.720000pt;}
.yc_c00316{bottom:412.520000pt;}
.yb_c00316{bottom:433.720000pt;}
.ya_c00316{bottom:455.586667pt;}
.y9_c00316{bottom:477.320000pt;}
.y8_c00316{bottom:499.720000pt;}
.y7_c00316{bottom:521.320000pt;}
.y6_c00316{bottom:542.920000pt;}
.y5_c00316{bottom:564.920000pt;}
.y4_c00316{bottom:586.520000pt;}
.y3_c00316{bottom:607.720000pt;}
.y2_c00316{bottom:630.520000pt;}
.y1_c00316{bottom:652.520000pt;}
.h6_c00316{height:11.733399pt;}
.h7_c00316{height:38.937500pt;}
.h5_c00316{height:74.278646pt;}
.h3_c00316{height:81.031250pt;}
.h2_c00316{height:90.511719pt;}
.h4_c00316{height:94.536458pt;}
.h1_c00316{height:694.000000pt;}
.h0_c00316{height:694.066667pt;}
.w2_c00316{width:93.222667pt;}
.w0_c00316{width:479.066667pt;}
.w1_c00316{width:479.333333pt;}
.x0_c00316{left:0.000000pt;}
.x8_c00316{left:18.800000pt;}
.x9_c00316{left:20.666667pt;}
.x7_c00316{left:26.400000pt;}
.x6_c00316{left:27.600000pt;}
.x5_c00316{left:28.533333pt;}
.x4_c00316{left:30.000000pt;}
.x2_c00316{left:31.466667pt;}
.x3_c00316{left:32.400000pt;}
.x1_c00316{left:140.266667pt;}
.xa_c00316{left:197.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5fdff7e1067ebf84193d2bce.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.480469;font-style:normal;font-weight:normal;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_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00317;src:url('chunks/assets/font_6abc66526119ca75a6ebaf63.woff2')format("woff");}.ff3_c00317{font-family:ff3_c00317;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00317{font-family:ff4_c00317;line-height:1.219238;font-style: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;}
.ls1_c00317{letter-spacing:0.000000px;}
.ls2_c00317{letter-spacing:3.000000px;}
.ls0_c00317{letter-spacing:9.000000px;}
.sc__c00317{text-shadow:none;}
.sc0_c00317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00317{-webkit-text-stroke:0px transparent;}
.sc0_c00317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00317{word-spacing:-33.192000px;}
.ws1_c00317{word-spacing:0.000000px;}
._c_c00317{margin-left:-19.296000px;}
._a_c00317{margin-left:-16.848000px;}
._b_c00317{margin-left:-13.608000px;}
._16_c00317{margin-left:-12.576000px;}
._14_c00317{margin-left:-10.944000px;}
._12_c00317{margin-left:-9.024000px;}
._13_c00317{margin-left:-7.200000px;}
._17_c00317{margin-left:-6.120000px;}
._4_c00317{margin-left:-4.920000px;}
._8_c00317{margin-left:-3.816000px;}
._5_c00317{margin-left:-2.784000px;}
._6_c00317{margin-left:-1.416000px;}
._7_c00317{width:1.176000px;}
._1_c00317{width:2.616000px;}
._2_c00317{width:4.248000px;}
._3_c00317{width:5.256000px;}
._d_c00317{width:6.288000px;}
._f_c00317{width:7.920000px;}
._11_c00317{width:9.264000px;}
._15_c00317{width:10.440000px;}
._0_c00317{width:11.592000px;}
._9_c00317{width:12.720000px;}
._10_c00317{width:14.664000px;}
._e_c00317{width:21.648000px;}
.fc2_c00317{color:transparent;}
.fc1_c00317{color:rgb(128,128,128);}
.fc0_c00317{color:rgb(0,0,0);}
.fs2_c00317{font-size:48.000000px;}
.fs0_c00317{font-size:72.000000px;}
.fs1_c00317{font-size:78.000000px;}
.y0_c00317{bottom:0.000000px;}
.y1f_c00317{bottom:3.105000px;}
.y1e_c00317{bottom:7.228363px;}
.y1d_c00317{bottom:42.150000px;}
.y1c_c00317{bottom:66.750000px;}
.y1b_c00317{bottom:92.100000px;}
.y1a_c00317{bottom:117.150000px;}
.y19_c00317{bottom:142.800000px;}
.y18_c00317{bottom:168.300000px;}
.y17_c00317{bottom:193.350000px;}
.y16_c00317{bottom:218.250000px;}
.y15_c00317{bottom:243.900000px;}
.y14_c00317{bottom:267.000000px;}
.y13_c00317{bottom:292.500000px;}
.y12_c00317{bottom:316.950000px;}
.y11_c00317{bottom:341.250000px;}
.y10_c00317{bottom:365.550000px;}
.yf_c00317{bottom:391.050000px;}
.ye_c00317{bottom:415.050000px;}
.yd_c00317{bottom:439.800000px;}
.yc_c00317{bottom:463.950000px;}
.yb_c00317{bottom:487.350000px;}
.ya_c00317{bottom:511.650000px;}
.y9_c00317{bottom:536.850000px;}
.y8_c00317{bottom:561.000000px;}
.y7_c00317{bottom:585.600000px;}
.y6_c00317{bottom:610.200000px;}
.y5_c00317{bottom:634.800000px;}
.y4_c00317{bottom:659.700000px;}
.y3_c00317{bottom:684.450000px;}
.y2_c00317{bottom:706.950000px;}
.y1_c00317{bottom:733.950000px;}
.h4_c00317{height:13.200074px;}
.h5_c00317{height:43.804688px;}
.h2_c00317{height:91.160156px;}
.h3_c00317{height:98.756836px;}
.h1_c00317{height:788.250000px;}
.h0_c00317{height:788.400000px;}
.w2_c00317{width:104.875500px;}
.w0_c00317{width:507.600000px;}
.w1_c00317{width:507.750000px;}
.x0_c00317{left:0.000000px;}
.x2_c00317{left:96.450000px;}
.x3_c00317{left:98.550000px;}
.x4_c00317{left:100.200000px;}
.x5_c00317{left:101.250000px;}
.x6_c00317{left:102.300000px;}
.x7_c00317{left:104.550000px;}
.x8_c00317{left:105.600000px;}
.x9_c00317{left:106.950000px;}
.xa_c00317{left:108.900000px;}
.xb_c00317{left:109.950000px;}
.xd_c00317{left:205.614258px;}
.x1_c00317{left:215.100000px;}
.xc_c00317{left:425.550000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls1_c00317{letter-spacing:0.000000pt;}
.ls2_c00317{letter-spacing:2.666667pt;}
.ls0_c00317{letter-spacing:8.000000pt;}
.ws0_c00317{word-spacing:-29.504000pt;}
.ws1_c00317{word-spacing:0.000000pt;}
._c_c00317{margin-left:-17.152000pt;}
._a_c00317{margin-left:-14.976000pt;}
._b_c00317{margin-left:-12.096000pt;}
._16_c00317{margin-left:-11.178667pt;}
._14_c00317{margin-left:-9.728000pt;}
._12_c00317{margin-left:-8.021333pt;}
._13_c00317{margin-left:-6.400000pt;}
._17_c00317{margin-left:-5.440000pt;}
._4_c00317{margin-left:-4.373333pt;}
._8_c00317{margin-left:-3.392000pt;}
._5_c00317{margin-left:-2.474667pt;}
._6_c00317{margin-left:-1.258667pt;}
._7_c00317{width:1.045333pt;}
._1_c00317{width:2.325333pt;}
._2_c00317{width:3.776000pt;}
._3_c00317{width:4.672000pt;}
._d_c00317{width:5.589333pt;}
._f_c00317{width:7.040000pt;}
._11_c00317{width:8.234667pt;}
._15_c00317{width:9.280000pt;}
._0_c00317{width:10.304000pt;}
._9_c00317{width:11.306667pt;}
._10_c00317{width:13.034667pt;}
._e_c00317{width:19.242667pt;}
.fs2_c00317{font-size:42.666667pt;}
.fs0_c00317{font-size:64.000000pt;}
.fs1_c00317{font-size:69.333333pt;}
.y0_c00317{bottom:0.000000pt;}
.y1f_c00317{bottom:2.760000pt;}
.y1e_c00317{bottom:6.425212pt;}
.y1d_c00317{bottom:37.466667pt;}
.y1c_c00317{bottom:59.333333pt;}
.y1b_c00317{bottom:81.866667pt;}
.y1a_c00317{bottom:104.133333pt;}
.y19_c00317{bottom:126.933333pt;}
.y18_c00317{bottom:149.600000pt;}
.y17_c00317{bottom:171.866667pt;}
.y16_c00317{bottom:194.000000pt;}
.y15_c00317{bottom:216.800000pt;}
.y14_c00317{bottom:237.333333pt;}
.y13_c00317{bottom:260.000000pt;}
.y12_c00317{bottom:281.733333pt;}
.y11_c00317{bottom:303.333333pt;}
.y10_c00317{bottom:324.933333pt;}
.yf_c00317{bottom:347.600000pt;}
.ye_c00317{bottom:368.933333pt;}
.yd_c00317{bottom:390.933333pt;}
.yc_c00317{bottom:412.400000pt;}
.yb_c00317{bottom:433.200000pt;}
.ya_c00317{bottom:454.800000pt;}
.y9_c00317{bottom:477.200000pt;}
.y8_c00317{bottom:498.666667pt;}
.y7_c00317{bottom:520.533333pt;}
.y6_c00317{bottom:542.400000pt;}
.y5_c00317{bottom:564.266667pt;}
.y4_c00317{bottom:586.400000pt;}
.y3_c00317{bottom:608.400000pt;}
.y2_c00317{bottom:628.400000pt;}
.y1_c00317{bottom:652.400000pt;}
.h4_c00317{height:11.733399pt;}
.h5_c00317{height:38.937500pt;}
.h2_c00317{height:81.031250pt;}
.h3_c00317{height:87.783854pt;}
.h1_c00317{height:700.666667pt;}
.h0_c00317{height:700.800000pt;}
.w2_c00317{width:93.222667pt;}
.w0_c00317{width:451.200000pt;}
.w1_c00317{width:451.333333pt;}
.x0_c00317{left:0.000000pt;}
.x2_c00317{left:85.733333pt;}
.x3_c00317{left:87.600000pt;}
.x4_c00317{left:89.066667pt;}
.x5_c00317{left:90.000000pt;}
.x6_c00317{left:90.933333pt;}
.x7_c00317{left:92.933333pt;}
.x8_c00317{left:93.866667pt;}
.x9_c00317{left:95.066667pt;}
.xa_c00317{left:96.800000pt;}
.xb_c00317{left:97.733333pt;}
.xd_c00317{left:182.768229pt;}
.x1_c00317{left:191.200000pt;}
.xc_c00317{left:378.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5a14d0dbabf1c4c2822f3cf5.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00318;src:url('chunks/assets/font_5d2ac5f537a0eb64ffca8a4f.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00318;src:url('chunks/assets/font_10d1af8c12e846111a0fa565.woff2')format("woff");}.ff3_c00318{font-family:ff3_c00318;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00318;src:url('chunks/assets/font_8e00e6385d2546a5d3053d79.woff2')format("woff");}.ff4_c00318{font-family:ff4_c00318;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00318;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00318{font-family:ff5_c00318;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00318{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00318{vertical-align:0.000000px;}
.ls0_c00318{letter-spacing:0.000000px;}
.ls1_c00318{letter-spacing:3.000000px;}
.ls2_c00318{letter-spacing:126.000000px;}
.sc__c00318{text-shadow:none;}
.sc0_c00318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00318{-webkit-text-stroke:0px transparent;}
.sc0_c00318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00318{word-spacing:-143.352000px;}
.ws0_c00318{word-spacing:-33.192000px;}
.ws2_c00318{word-spacing:0.000000px;}
._14_c00318{margin-left:-129.732000px;}
._6_c00318{margin-left:-11.760000px;}
._a_c00318{margin-left:-9.396000px;}
._16_c00318{margin-left:-6.984000px;}
._2_c00318{margin-left:-5.964000px;}
._5_c00318{margin-left:-3.948000px;}
._10_c00318{margin-left:-2.652000px;}
._f_c00318{margin-left:-1.284000px;}
._7_c00318{width:1.008000px;}
._3_c00318{width:2.100000px;}
._4_c00318{width:3.948000px;}
._d_c00318{width:5.184000px;}
._c_c00318{width:6.984000px;}
._1_c00318{width:8.316000px;}
._e_c00318{width:10.368000px;}
._b_c00318{width:11.745000px;}
._0_c00318{width:13.440000px;}
._12_c00318{width:15.036000px;}
._11_c00318{width:16.980000px;}
._9_c00318{width:18.225000px;}
._13_c00318{width:19.260000px;}
._15_c00318{width:23.040000px;}
._18_c00318{width:49.104000px;}
._8_c00318{width:298.125000px;}
._19_c00318{width:324.600000px;}
._17_c00318{width:739.872000px;}
.fc2_c00318{color:transparent;}
.fc1_c00318{color:rgb(128,128,128);}
.fc0_c00318{color:rgb(0,0,0);}
.fs4_c00318{font-size:48.000000px;}
.fs3_c00318{font-size:66.000000px;}
.fs2_c00318{font-size:72.000000px;}
.fs1_c00318{font-size:81.000000px;}
.fs0_c00318{font-size:84.000000px;}
.y0_c00318{bottom:0.000000px;}
.y1f_c00318{bottom:3.105000px;}
.y1e_c00318{bottom:7.228355px;}
.y1d_c00318{bottom:46.785000px;}
.y1c_c00318{bottom:72.885000px;}
.y1b_c00318{bottom:102.135000px;}
.y1a_c00318{bottom:127.185000px;}
.y19_c00318{bottom:152.235000px;}
.y18_c00318{bottom:176.385000px;}
.y17_c00318{bottom:202.185000px;}
.y16_c00318{bottom:227.085000px;}
.y15_c00318{bottom:250.635000px;}
.y14_c00318{bottom:277.035000px;}
.y13_c00318{bottom:301.035000px;}
.y12_c00318{bottom:323.535000px;}
.y11_c00318{bottom:346.935000px;}
.y10_c00318{bottom:371.235000px;}
.yf_c00318{bottom:396.135000px;}
.ye_c00318{bottom:420.435000px;}
.yd_c00318{bottom:445.785000px;}
.yc_c00318{bottom:470.385000px;}
.yb_c00318{bottom:494.985000px;}
.ya_c00318{bottom:519.735000px;}
.y9_c00318{bottom:544.335000px;}
.y8_c00318{bottom:569.235000px;}
.y7_c00318{bottom:593.685000px;}
.y6_c00318{bottom:617.985000px;}
.y5_c00318{bottom:642.885000px;}
.y4_c00318{bottom:667.485000px;}
.y3_c00318{bottom:692.235000px;}
.y2_c00318{bottom:716.835000px;}
.y1_c00318{bottom:742.185000px;}
.h5_c00318{height:13.200074px;}
.h6_c00318{height:43.804688px;}
.h2_c00318{height:82.400391px;}
.h4_c00318{height:83.563477px;}
.h3_c00318{height:91.160156px;}
.h1_c00318{height:786.000000px;}
.h0_c00318{height:786.225000px;}
.w2_c00318{width:104.875500px;}
.w1_c00318{width:527.250000px;}
.w0_c00318{width:527.550000px;}
.x0_c00318{left:0.000000px;}
.xd_c00318{left:32.700000px;}
.xc_c00318{left:35.400000px;}
.xb_c00318{left:36.450000px;}
.xa_c00318{left:37.500000px;}
.x9_c00318{left:39.450000px;}
.x8_c00318{left:41.400000px;}
.x7_c00318{left:42.750000px;}
.x6_c00318{left:44.250000px;}
.x5_c00318{left:45.600000px;}
.x4_c00318{left:48.150000px;}
.x3_c00318{left:49.200000px;}
.x2_c00318{left:50.850000px;}
.x1_c00318{left:172.050000px;}
.xe_c00318{left:215.589249px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls0_c00318{letter-spacing:0.000000pt;}
.ls1_c00318{letter-spacing:2.666667pt;}
.ls2_c00318{letter-spacing:112.000000pt;}
.ws1_c00318{word-spacing:-127.424000pt;}
.ws0_c00318{word-spacing:-29.504000pt;}
.ws2_c00318{word-spacing:0.000000pt;}
._14_c00318{margin-left:-115.317333pt;}
._6_c00318{margin-left:-10.453333pt;}
._a_c00318{margin-left:-8.352000pt;}
._16_c00318{margin-left:-6.208000pt;}
._2_c00318{margin-left:-5.301333pt;}
._5_c00318{margin-left:-3.509333pt;}
._10_c00318{margin-left:-2.357333pt;}
._f_c00318{margin-left:-1.141333pt;}
._7_c00318{width:0.896000pt;}
._3_c00318{width:1.866667pt;}
._4_c00318{width:3.509333pt;}
._d_c00318{width:4.608000pt;}
._c_c00318{width:6.208000pt;}
._1_c00318{width:7.392000pt;}
._e_c00318{width:9.216000pt;}
._b_c00318{width:10.440000pt;}
._0_c00318{width:11.946667pt;}
._12_c00318{width:13.365333pt;}
._11_c00318{width:15.093333pt;}
._9_c00318{width:16.200000pt;}
._13_c00318{width:17.120000pt;}
._15_c00318{width:20.480000pt;}
._18_c00318{width:43.648000pt;}
._8_c00318{width:265.000000pt;}
._19_c00318{width:288.533333pt;}
._17_c00318{width:657.664000pt;}
.fs4_c00318{font-size:42.666667pt;}
.fs3_c00318{font-size:58.666667pt;}
.fs2_c00318{font-size:64.000000pt;}
.fs1_c00318{font-size:72.000000pt;}
.fs0_c00318{font-size:74.666667pt;}
.y0_c00318{bottom:0.000000pt;}
.y1f_c00318{bottom:2.760000pt;}
.y1e_c00318{bottom:6.425204pt;}
.y1d_c00318{bottom:41.586667pt;}
.y1c_c00318{bottom:64.786667pt;}
.y1b_c00318{bottom:90.786667pt;}
.y1a_c00318{bottom:113.053333pt;}
.y19_c00318{bottom:135.320000pt;}
.y18_c00318{bottom:156.786667pt;}
.y17_c00318{bottom:179.720000pt;}
.y16_c00318{bottom:201.853333pt;}
.y15_c00318{bottom:222.786667pt;}
.y14_c00318{bottom:246.253333pt;}
.y13_c00318{bottom:267.586667pt;}
.y12_c00318{bottom:287.586667pt;}
.y11_c00318{bottom:308.386667pt;}
.y10_c00318{bottom:329.986667pt;}
.yf_c00318{bottom:352.120000pt;}
.ye_c00318{bottom:373.720000pt;}
.yd_c00318{bottom:396.253333pt;}
.yc_c00318{bottom:418.120000pt;}
.yb_c00318{bottom:439.986667pt;}
.ya_c00318{bottom:461.986667pt;}
.y9_c00318{bottom:483.853333pt;}
.y8_c00318{bottom:505.986667pt;}
.y7_c00318{bottom:527.720000pt;}
.y6_c00318{bottom:549.320000pt;}
.y5_c00318{bottom:571.453333pt;}
.y4_c00318{bottom:593.320000pt;}
.y3_c00318{bottom:615.320000pt;}
.y2_c00318{bottom:637.186667pt;}
.y1_c00318{bottom:659.720000pt;}
.h5_c00318{height:11.733399pt;}
.h6_c00318{height:38.937500pt;}
.h2_c00318{height:73.244792pt;}
.h4_c00318{height:74.278646pt;}
.h3_c00318{height:81.031250pt;}
.h1_c00318{height:698.666667pt;}
.h0_c00318{height:698.866667pt;}
.w2_c00318{width:93.222667pt;}
.w1_c00318{width:468.666667pt;}
.w0_c00318{width:468.933333pt;}
.x0_c00318{left:0.000000pt;}
.xd_c00318{left:29.066667pt;}
.xc_c00318{left:31.466667pt;}
.xb_c00318{left:32.400000pt;}
.xa_c00318{left:33.333333pt;}
.x9_c00318{left:35.066667pt;}
.x8_c00318{left:36.800000pt;}
.x7_c00318{left:38.000000pt;}
.x6_c00318{left:39.333333pt;}
.x5_c00318{left:40.533333pt;}
.x4_c00318{left:42.800000pt;}
.x3_c00318{left:43.733333pt;}
.x2_c00318{left:45.200000pt;}
.x1_c00318{left:152.933333pt;}
.xe_c00318{left:191.634888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3a5fe3a6c1d7595ab0af93cb.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.480469;font-style:normal;font-weight:normal;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_bba4bcbe502662f79235ba29.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:1.568848;font-style:normal;font-weight:normal;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_6598ff4ae4ed0c1e1ca077ef.woff2')format("woff");}.ff3_c00319{font-family:ff3_c00319;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00319;src:url('chunks/assets/font_5aca95abc273dabf80147591.woff2')format("woff");}.ff4_c00319{font-family:ff4_c00319;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00319;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00319{font-family:ff5_c00319;line-height:1.219238;font-style: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:-3.000000px;}
.ls3_c00319{letter-spacing:0.000000px;}
.ls2_c00319{letter-spacing:3.000000px;}
.ls0_c00319{letter-spacing:25.617000px;}
.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:-30.000000px;}
.ws2_c00319{word-spacing:-20.352000px;}
.ws1_c00319{word-spacing:-17.352000px;}
.ws3_c00319{word-spacing:0.000000px;}
._13_c00319{margin-left:-12.441000px;}
._12_c00319{margin-left:-9.315000px;}
._14_c00319{margin-left:-8.082000px;}
._11_c00319{margin-left:-7.011000px;}
._10_c00319{margin-left:-5.976000px;}
._6_c00319{margin-left:-4.527000px;}
._0_c00319{margin-left:-3.132000px;}
._1_c00319{margin-left:-1.479000px;}
._7_c00319{width:1.206000px;}
._2_c00319{width:2.349000px;}
._3_c00319{width:3.654000px;}
._5_c00319{width:5.112000px;}
._4_c00319{width:6.912000px;}
._a_c00319{width:8.784000px;}
._d_c00319{width:10.053000px;}
._b_c00319{width:11.385000px;}
._f_c00319{width:12.393000px;}
._c_c00319{width:14.013000px;}
._e_c00319{width:15.672000px;}
._9_c00319{width:22.032000px;}
._8_c00319{width:31.158000px;}
.fc2_c00319{color:transparent;}
.fc1_c00319{color:rgb(128,128,128);}
.fc0_c00319{color:rgb(0,0,0);}
.fs5_c00319{font-size:48.000000px;}
.fs3_c00319{font-size:63.000000px;}
.fs2_c00319{font-size:66.000000px;}
.fs1_c00319{font-size:72.000000px;}
.fs4_c00319{font-size:81.000000px;}
.fs0_c00319{font-size:87.000000px;}
.y0_c00319{bottom:0.000000px;}
.y1f_c00319{bottom:3.105000px;}
.y1e_c00319{bottom:7.228363px;}
.y1d_c00319{bottom:69.300000px;}
.y1c_c00319{bottom:92.250000px;}
.y1b_c00319{bottom:118.200000px;}
.y1a_c00319{bottom:143.850000px;}
.y19_c00319{bottom:168.450000px;}
.y18_c00319{bottom:193.800000px;}
.y17_c00319{bottom:219.150000px;}
.y16_c00319{bottom:243.750000px;}
.y15_c00319{bottom:268.950000px;}
.y14_c00319{bottom:294.600000px;}
.y13_c00319{bottom:318.300000px;}
.y12_c00319{bottom:343.350000px;}
.y11_c00319{bottom:367.500000px;}
.y10_c00319{bottom:391.500000px;}
.yf_c00319{bottom:416.250000px;}
.ye_c00319{bottom:440.850000px;}
.yd_c00319{bottom:466.050000px;}
.yc_c00319{bottom:489.150000px;}
.yb_c00319{bottom:513.450000px;}
.ya_c00319{bottom:538.050000px;}
.y9_c00319{bottom:562.650000px;}
.y8_c00319{bottom:586.650000px;}
.y7_c00319{bottom:611.850000px;}
.y6_c00319{bottom:636.600000px;}
.y5_c00319{bottom:661.500000px;}
.y4_c00319{bottom:686.100000px;}
.y3_c00319{bottom:710.850000px;}
.y2_c00319{bottom:734.700000px;}
.y1_c00319{bottom:760.050000px;}
.h3_c00319{height:13.200074px;}
.h4_c00319{height:43.804688px;}
.h2_c00319{height:91.160156px;}
.h1_c00319{height:110.151855px;}
.h0_c00319{height:796.500000px;}
.w2_c00319{width:104.875500px;}
.w1_c00319{width:513.750000px;}
.w0_c00319{width:513.825000px;}
.x0_c00319{left:0.000000px;}
.x2_c00319{left:91.500000px;}
.x3_c00319{left:92.850000px;}
.x5_c00319{left:94.800000px;}
.x4_c00319{left:95.850000px;}
.x6_c00319{left:96.900000px;}
.x7_c00319{left:98.250000px;}
.x8_c00319{left:99.450000px;}
.x9_c00319{left:100.800000px;}
.xa_c00319{left:101.850000px;}
.xb_c00319{left:103.200000px;}
.xd_c00319{left:208.726730px;}
.x1_c00319{left:215.700000px;}
.xc_c00319{left:439.650000px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls1_c00319{letter-spacing:-2.666667pt;}
.ls3_c00319{letter-spacing:0.000000pt;}
.ls2_c00319{letter-spacing:2.666667pt;}
.ls0_c00319{letter-spacing:22.770667pt;}
.ws0_c00319{word-spacing:-26.666667pt;}
.ws2_c00319{word-spacing:-18.090667pt;}
.ws1_c00319{word-spacing:-15.424000pt;}
.ws3_c00319{word-spacing:0.000000pt;}
._13_c00319{margin-left:-11.058667pt;}
._12_c00319{margin-left:-8.280000pt;}
._14_c00319{margin-left:-7.184000pt;}
._11_c00319{margin-left:-6.232000pt;}
._10_c00319{margin-left:-5.312000pt;}
._6_c00319{margin-left:-4.024000pt;}
._0_c00319{margin-left:-2.784000pt;}
._1_c00319{margin-left:-1.314667pt;}
._7_c00319{width:1.072000pt;}
._2_c00319{width:2.088000pt;}
._3_c00319{width:3.248000pt;}
._5_c00319{width:4.544000pt;}
._4_c00319{width:6.144000pt;}
._a_c00319{width:7.808000pt;}
._d_c00319{width:8.936000pt;}
._b_c00319{width:10.120000pt;}
._f_c00319{width:11.016000pt;}
._c_c00319{width:12.456000pt;}
._e_c00319{width:13.930667pt;}
._9_c00319{width:19.584000pt;}
._8_c00319{width:27.696000pt;}
.fs5_c00319{font-size:42.666667pt;}
.fs3_c00319{font-size:56.000000pt;}
.fs2_c00319{font-size:58.666667pt;}
.fs1_c00319{font-size:64.000000pt;}
.fs4_c00319{font-size:72.000000pt;}
.fs0_c00319{font-size:77.333333pt;}
.y0_c00319{bottom:0.000000pt;}
.y1f_c00319{bottom:2.760000pt;}
.y1e_c00319{bottom:6.425212pt;}
.y1d_c00319{bottom:61.600000pt;}
.y1c_c00319{bottom:82.000000pt;}
.y1b_c00319{bottom:105.066667pt;}
.y1a_c00319{bottom:127.866667pt;}
.y19_c00319{bottom:149.733333pt;}
.y18_c00319{bottom:172.266667pt;}
.y17_c00319{bottom:194.800000pt;}
.y16_c00319{bottom:216.666667pt;}
.y15_c00319{bottom:239.066667pt;}
.y14_c00319{bottom:261.866667pt;}
.y13_c00319{bottom:282.933333pt;}
.y12_c00319{bottom:305.200000pt;}
.y11_c00319{bottom:326.666667pt;}
.y10_c00319{bottom:348.000000pt;}
.yf_c00319{bottom:370.000000pt;}
.ye_c00319{bottom:391.866667pt;}
.yd_c00319{bottom:414.266667pt;}
.yc_c00319{bottom:434.800000pt;}
.yb_c00319{bottom:456.400000pt;}
.ya_c00319{bottom:478.266667pt;}
.y9_c00319{bottom:500.133333pt;}
.y8_c00319{bottom:521.466667pt;}
.y7_c00319{bottom:543.866667pt;}
.y6_c00319{bottom:565.866667pt;}
.y5_c00319{bottom:588.000000pt;}
.y4_c00319{bottom:609.866667pt;}
.y3_c00319{bottom:631.866667pt;}
.y2_c00319{bottom:653.066667pt;}
.y1_c00319{bottom:675.600000pt;}
.h3_c00319{height:11.733399pt;}
.h4_c00319{height:38.937500pt;}
.h2_c00319{height:81.031250pt;}
.h1_c00319{height:97.912760pt;}
.h0_c00319{height:708.000000pt;}
.w2_c00319{width:93.222667pt;}
.w1_c00319{width:456.666667pt;}
.w0_c00319{width:456.733333pt;}
.x0_c00319{left:0.000000pt;}
.x2_c00319{left:81.333333pt;}
.x3_c00319{left:82.533333pt;}
.x5_c00319{left:84.266667pt;}
.x4_c00319{left:85.200000pt;}
.x6_c00319{left:86.133333pt;}
.x7_c00319{left:87.333333pt;}
.x8_c00319{left:88.400000pt;}
.x9_c00319{left:89.600000pt;}
.xa_c00319{left:90.533333pt;}
.xb_c00319{left:91.733333pt;}
.xd_c00319{left:185.534871pt;}
.x1_c00319{left:191.733333pt;}
.xc_c00319{left:390.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ba493e4f992bf0479003679c.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.480469;font-style:normal;font-weight:normal;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_fc8cbc8ccc8800e7665301ca.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:1.568848;font-style:normal;font-weight:normal;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_bbc6f89de5c6736e35d9ef71.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00320;src:url('chunks/assets/font_730c6fd588ad36cbc7e89fee.woff2')format("woff");}.ff4_c00320{font-family:ff4_c00320;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00320;src:url('chunks/assets/font_e8799d2bf2a8b88772ed03cb.woff2')format("woff");}.ff5_c00320{font-family:ff5_c00320;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00320;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00320{font-family:ff6_c00320;line-height:1.219238;font-style: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;}
.ls5_c00320{letter-spacing:-6.000000px;}
.ls2_c00320{letter-spacing:-3.000000px;}
.ls4_c00320{letter-spacing:0.000000px;}
.ls0_c00320{letter-spacing:3.000000px;}
.ls3_c00320{letter-spacing:6.000000px;}
.ls1_c00320{letter-spacing:12.582000px;}
.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:-37.107000px;}
.ws2_c00320{word-spacing:-33.192000px;}
.ws3_c00320{word-spacing:-32.082000px;}
.ws1_c00320{word-spacing:-24.051000px;}
.ws4_c00320{word-spacing:0.000000px;}
._16_c00320{margin-left:-14.040000px;}
._11_c00320{margin-left:-11.589000px;}
._f_c00320{margin-left:-9.321000px;}
._15_c00320{margin-left:-7.641000px;}
._b_c00320{margin-left:-6.495000px;}
._7_c00320{margin-left:-5.433000px;}
._9_c00320{margin-left:-3.672000px;}
._c_c00320{margin-left:-2.664000px;}
._8_c00320{margin-left:-1.368000px;}
._6_c00320{width:1.743000px;}
._a_c00320{width:2.808000px;}
._4_c00320{width:4.089000px;}
._1_c00320{width:5.133000px;}
._e_c00320{width:6.918000px;}
._10_c00320{width:7.992000px;}
._2_c00320{width:9.570000px;}
._3_c00320{width:10.701000px;}
._14_c00320{width:12.312000px;}
._0_c00320{width:13.398000px;}
._d_c00320{width:15.264000px;}
._17_c00320{width:17.856000px;}
._13_c00320{width:34.026000px;}
._5_c00320{width:306.675000px;}
._12_c00320{width:314.715000px;}
.fc2_c00320{color:transparent;}
.fc1_c00320{color:rgb(128,128,128);}
.fc0_c00320{color:rgb(0,0,0);}
.fs5_c00320{font-size:48.000000px;}
.fs3_c00320{font-size:60.000000px;}
.fs2_c00320{font-size:63.000000px;}
.fs1_c00320{font-size:72.000000px;}
.fs4_c00320{font-size:78.000000px;}
.fs0_c00320{font-size:87.000000px;}
.y0_c00320{bottom:0.000000px;}
.y1f_c00320{bottom:3.105000px;}
.y1e_c00320{bottom:7.228355px;}
.y1d_c00320{bottom:49.935000px;}
.y1c_c00320{bottom:78.285000px;}
.y1b_c00320{bottom:103.485000px;}
.y1a_c00320{bottom:127.485000px;}
.y19_c00320{bottom:153.585000px;}
.y18_c00320{bottom:178.785000px;}
.y17_c00320{bottom:204.135000px;}
.y16_c00320{bottom:229.185000px;}
.y15_c00320{bottom:253.035000px;}
.y14_c00320{bottom:279.435000px;}
.y13_c00320{bottom:303.285000px;}
.y12_c00320{bottom:325.935000px;}
.y11_c00320{bottom:349.635000px;}
.y10_c00320{bottom:374.535000px;}
.yf_c00320{bottom:399.135000px;}
.ye_c00320{bottom:423.585000px;}
.yd_c00320{bottom:448.485000px;}
.yc_c00320{bottom:473.085000px;}
.yb_c00320{bottom:497.835000px;}
.ya_c00320{bottom:521.985000px;}
.y9_c00320{bottom:547.035000px;}
.y8_c00320{bottom:571.635000px;}
.y7_c00320{bottom:595.935000px;}
.y6_c00320{bottom:621.285000px;}
.y5_c00320{bottom:646.185000px;}
.y4_c00320{bottom:670.185000px;}
.y3_c00320{bottom:694.485000px;}
.y2_c00320{bottom:719.235000px;}
.y1_c00320{bottom:744.135000px;}
.h5_c00320{height:13.200074px;}
.h6_c00320{height:43.804688px;}
.h4_c00320{height:76.552734px;}
.h3_c00320{height:91.160156px;}
.h2_c00320{height:110.151855px;}
.h0_c00320{height:790.275000px;}
.h1_c00320{height:790.500000px;}
.w2_c00320{width:104.875500px;}
.w0_c00320{width:538.950000px;}
.w1_c00320{width:539.250000px;}
.x0_c00320{left:0.000000px;}
.x2_c00320{left:44.550000px;}
.x3_c00320{left:45.900000px;}
.x4_c00320{left:46.950000px;}
.x5_c00320{left:48.300000px;}
.x6_c00320{left:49.350000px;}
.x7_c00320{left:53.400000px;}
.x8_c00320{left:55.350000px;}
.x1_c00320{left:164.700000px;}
.xa_c00320{left:221.289230px;}
.x9_c00320{left:371.550000px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls5_c00320{letter-spacing:-5.333333pt;}
.ls2_c00320{letter-spacing:-2.666667pt;}
.ls4_c00320{letter-spacing:0.000000pt;}
.ls0_c00320{letter-spacing:2.666667pt;}
.ls3_c00320{letter-spacing:5.333333pt;}
.ls1_c00320{letter-spacing:11.184000pt;}
.ws0_c00320{word-spacing:-32.984000pt;}
.ws2_c00320{word-spacing:-29.504000pt;}
.ws3_c00320{word-spacing:-28.517333pt;}
.ws1_c00320{word-spacing:-21.378667pt;}
.ws4_c00320{word-spacing:0.000000pt;}
._16_c00320{margin-left:-12.480000pt;}
._11_c00320{margin-left:-10.301333pt;}
._f_c00320{margin-left:-8.285333pt;}
._15_c00320{margin-left:-6.792000pt;}
._b_c00320{margin-left:-5.773333pt;}
._7_c00320{margin-left:-4.829333pt;}
._9_c00320{margin-left:-3.264000pt;}
._c_c00320{margin-left:-2.368000pt;}
._8_c00320{margin-left:-1.216000pt;}
._6_c00320{width:1.549333pt;}
._a_c00320{width:2.496000pt;}
._4_c00320{width:3.634667pt;}
._1_c00320{width:4.562667pt;}
._e_c00320{width:6.149333pt;}
._10_c00320{width:7.104000pt;}
._2_c00320{width:8.506667pt;}
._3_c00320{width:9.512000pt;}
._14_c00320{width:10.944000pt;}
._0_c00320{width:11.909333pt;}
._d_c00320{width:13.568000pt;}
._17_c00320{width:15.872000pt;}
._13_c00320{width:30.245333pt;}
._5_c00320{width:272.600000pt;}
._12_c00320{width:279.746667pt;}
.fs5_c00320{font-size:42.666667pt;}
.fs3_c00320{font-size:53.333333pt;}
.fs2_c00320{font-size:56.000000pt;}
.fs1_c00320{font-size:64.000000pt;}
.fs4_c00320{font-size:69.333333pt;}
.fs0_c00320{font-size:77.333333pt;}
.y0_c00320{bottom:0.000000pt;}
.y1f_c00320{bottom:2.760000pt;}
.y1e_c00320{bottom:6.425204pt;}
.y1d_c00320{bottom:44.386667pt;}
.y1c_c00320{bottom:69.586667pt;}
.y1b_c00320{bottom:91.986667pt;}
.y1a_c00320{bottom:113.320000pt;}
.y19_c00320{bottom:136.520000pt;}
.y18_c00320{bottom:158.920000pt;}
.y17_c00320{bottom:181.453333pt;}
.y16_c00320{bottom:203.720000pt;}
.y15_c00320{bottom:224.920000pt;}
.y14_c00320{bottom:248.386667pt;}
.y13_c00320{bottom:269.586667pt;}
.y12_c00320{bottom:289.720000pt;}
.y11_c00320{bottom:310.786667pt;}
.y10_c00320{bottom:332.920000pt;}
.yf_c00320{bottom:354.786667pt;}
.ye_c00320{bottom:376.520000pt;}
.yd_c00320{bottom:398.653333pt;}
.yc_c00320{bottom:420.520000pt;}
.yb_c00320{bottom:442.520000pt;}
.ya_c00320{bottom:463.986667pt;}
.y9_c00320{bottom:486.253333pt;}
.y8_c00320{bottom:508.120000pt;}
.y7_c00320{bottom:529.720000pt;}
.y6_c00320{bottom:552.253333pt;}
.y5_c00320{bottom:574.386667pt;}
.y4_c00320{bottom:595.720000pt;}
.y3_c00320{bottom:617.320000pt;}
.y2_c00320{bottom:639.320000pt;}
.y1_c00320{bottom:661.453333pt;}
.h5_c00320{height:11.733399pt;}
.h6_c00320{height:38.937500pt;}
.h4_c00320{height:68.046875pt;}
.h3_c00320{height:81.031250pt;}
.h2_c00320{height:97.912760pt;}
.h0_c00320{height:702.466667pt;}
.h1_c00320{height:702.666667pt;}
.w2_c00320{width:93.222667pt;}
.w0_c00320{width:479.066667pt;}
.w1_c00320{width:479.333333pt;}
.x0_c00320{left:0.000000pt;}
.x2_c00320{left:39.600000pt;}
.x3_c00320{left:40.800000pt;}
.x4_c00320{left:41.733333pt;}
.x5_c00320{left:42.933333pt;}
.x6_c00320{left:43.866667pt;}
.x7_c00320{left:47.466667pt;}
.x8_c00320{left:49.200000pt;}
.x1_c00320{left:146.400000pt;}
.xa_c00320{left:196.701538pt;}
.x9_c00320{left:330.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4e92fce4922215d90811c10a.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00321;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00321;src:url('chunks/assets/font_02d42276f6ead01a13b589ce.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;line-height:1.568848;font-style:normal;font-weight:normal;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_0f29732138a4b7ebc8b269ee.woff2')format("woff");}.ff4_c00321{font-family:ff4_c00321;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00321;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00321{font-family:ff5_c00321;line-height:1.219238;font-style: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;}
.ls2_c00321{letter-spacing:-6.000000px;}
.ls0_c00321{letter-spacing:0.000000px;}
.ls1_c00321{letter-spacing:3.000000px;}
.sc__c00321{text-shadow:none;}
.sc0_c00321{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00321{-webkit-text-stroke:0px transparent;}
.sc0_c00321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00321{word-spacing:-24.051000px;}
.ws0_c00321{word-spacing:-20.352000px;}
.ws2_c00321{word-spacing:0.000000px;}
._e_c00321{margin-left:-13.092000px;}
._12_c00321{margin-left:-9.972000px;}
._d_c00321{margin-left:-7.308000px;}
._10_c00321{margin-left:-6.264000px;}
._3_c00321{margin-left:-5.208000px;}
._a_c00321{margin-left:-4.140000px;}
._7_c00321{margin-left:-2.820000px;}
._8_c00321{margin-left:-1.656000px;}
._6_c00321{width:1.236000px;}
._1_c00321{width:2.436000px;}
._2_c00321{width:3.948000px;}
._0_c00321{width:5.628000px;}
._4_c00321{width:7.476000px;}
._5_c00321{width:9.060000px;}
._f_c00321{width:10.080000px;}
._11_c00321{width:11.940000px;}
._9_c00321{width:13.116000px;}
._b_c00321{width:14.580000px;}
._c_c00321{width:16.344000px;}
.fc2_c00321{color:transparent;}
.fc1_c00321{color:rgb(128,128,128);}
.fc0_c00321{color:rgb(0,0,0);}
.fs3_c00321{font-size:48.000000px;}
.fs2_c00321{font-size:63.000000px;}
.fs1_c00321{font-size:72.000000px;}
.fs0_c00321{font-size:84.000000px;}
.y0_c00321{bottom:0.000000px;}
.y1f_c00321{bottom:3.105000px;}
.y1e_c00321{bottom:7.228371px;}
.y1d_c00321{bottom:56.115000px;}
.y1c_c00321{bottom:79.965000px;}
.y1b_c00321{bottom:105.015000px;}
.y1a_c00321{bottom:130.965000px;}
.y19_c00321{bottom:155.715000px;}
.y18_c00321{bottom:181.215000px;}
.y17_c00321{bottom:206.565000px;}
.y16_c00321{bottom:230.865000px;}
.y15_c00321{bottom:258.165000px;}
.y14_c00321{bottom:280.515000px;}
.y13_c00321{bottom:305.565000px;}
.y12_c00321{bottom:329.715000px;}
.y11_c00321{bottom:354.165000px;}
.y10_c00321{bottom:379.065000px;}
.yf_c00321{bottom:404.115000px;}
.ye_c00321{bottom:430.365000px;}
.yd_c00321{bottom:452.715000px;}
.yc_c00321{bottom:477.315000px;}
.yb_c00321{bottom:502.215000px;}
.ya_c00321{bottom:525.915000px;}
.y9_c00321{bottom:550.515000px;}
.y8_c00321{bottom:575.415000px;}
.y7_c00321{bottom:600.165000px;}
.y6_c00321{bottom:624.765000px;}
.y5_c00321{bottom:648.765000px;}
.y4_c00321{bottom:673.665000px;}
.y3_c00321{bottom:698.265000px;}
.y2_c00321{bottom:723.015000px;}
.y1_c00321{bottom:748.665000px;}
.h4_c00321{height:13.200074px;}
.h5_c00321{height:43.804688px;}
.h2_c00321{height:82.441406px;}
.h3_c00321{height:91.160156px;}
.h0_c00321{height:787.875000px;}
.h1_c00321{height:788.250000px;}
.w2_c00321{width:104.875500px;}
.w0_c00321{width:509.775000px;}
.w1_c00321{width:510.000000px;}
.x0_c00321{left:0.000000px;}
.x2_c00321{left:91.800000px;}
.x3_c00321{left:93.450000px;}
.x4_c00321{left:94.500000px;}
.x5_c00321{left:98.550000px;}
.x6_c00321{left:101.850000px;}
.x8_c00321{left:206.701767px;}
.x1_c00321{left:223.350000px;}
.x7_c00321{left:417.750000px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls2_c00321{letter-spacing:-5.333333pt;}
.ls0_c00321{letter-spacing:0.000000pt;}
.ls1_c00321{letter-spacing:2.666667pt;}
.ws1_c00321{word-spacing:-21.378667pt;}
.ws0_c00321{word-spacing:-18.090667pt;}
.ws2_c00321{word-spacing:0.000000pt;}
._e_c00321{margin-left:-11.637333pt;}
._12_c00321{margin-left:-8.864000pt;}
._d_c00321{margin-left:-6.496000pt;}
._10_c00321{margin-left:-5.568000pt;}
._3_c00321{margin-left:-4.629333pt;}
._a_c00321{margin-left:-3.680000pt;}
._7_c00321{margin-left:-2.506667pt;}
._8_c00321{margin-left:-1.472000pt;}
._6_c00321{width:1.098667pt;}
._1_c00321{width:2.165333pt;}
._2_c00321{width:3.509333pt;}
._0_c00321{width:5.002667pt;}
._4_c00321{width:6.645333pt;}
._5_c00321{width:8.053333pt;}
._f_c00321{width:8.960000pt;}
._11_c00321{width:10.613333pt;}
._9_c00321{width:11.658667pt;}
._b_c00321{width:12.960000pt;}
._c_c00321{width:14.528000pt;}
.fs3_c00321{font-size:42.666667pt;}
.fs2_c00321{font-size:56.000000pt;}
.fs1_c00321{font-size:64.000000pt;}
.fs0_c00321{font-size:74.666667pt;}
.y0_c00321{bottom:0.000000pt;}
.y1f_c00321{bottom:2.760000pt;}
.y1e_c00321{bottom:6.425219pt;}
.y1d_c00321{bottom:49.880000pt;}
.y1c_c00321{bottom:71.080000pt;}
.y1b_c00321{bottom:93.346667pt;}
.y1a_c00321{bottom:116.413333pt;}
.y19_c00321{bottom:138.413333pt;}
.y18_c00321{bottom:161.080000pt;}
.y17_c00321{bottom:183.613333pt;}
.y16_c00321{bottom:205.213333pt;}
.y15_c00321{bottom:229.480000pt;}
.y14_c00321{bottom:249.346667pt;}
.y13_c00321{bottom:271.613333pt;}
.y12_c00321{bottom:293.080000pt;}
.y11_c00321{bottom:314.813333pt;}
.y10_c00321{bottom:336.946667pt;}
.yf_c00321{bottom:359.213333pt;}
.ye_c00321{bottom:382.546667pt;}
.yd_c00321{bottom:402.413333pt;}
.yc_c00321{bottom:424.280000pt;}
.yb_c00321{bottom:446.413333pt;}
.ya_c00321{bottom:467.480000pt;}
.y9_c00321{bottom:489.346667pt;}
.y8_c00321{bottom:511.480000pt;}
.y7_c00321{bottom:533.480000pt;}
.y6_c00321{bottom:555.346667pt;}
.y5_c00321{bottom:576.680000pt;}
.y4_c00321{bottom:598.813333pt;}
.y3_c00321{bottom:620.680000pt;}
.y2_c00321{bottom:642.680000pt;}
.y1_c00321{bottom:665.480000pt;}
.h4_c00321{height:11.733399pt;}
.h5_c00321{height:38.937500pt;}
.h2_c00321{height:73.281250pt;}
.h3_c00321{height:81.031250pt;}
.h0_c00321{height:700.333333pt;}
.h1_c00321{height:700.666667pt;}
.w2_c00321{width:93.222667pt;}
.w0_c00321{width:453.133333pt;}
.w1_c00321{width:453.333333pt;}
.x0_c00321{left:0.000000pt;}
.x2_c00321{left:81.600000pt;}
.x3_c00321{left:83.066667pt;}
.x4_c00321{left:84.000000pt;}
.x5_c00321{left:87.600000pt;}
.x6_c00321{left:90.533333pt;}
.x8_c00321{left:183.734904pt;}
.x1_c00321{left:198.533333pt;}
.x7_c00321{left:371.333333pt;}
}





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

.ir_c00322:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00322{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00322;src:url('chunks/assets/font_5513ddc1eae4fd8c0a915e15.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.480469;font-style:normal;font-weight:normal;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_b98e972d62ff8950adece6f0.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00322;src:url('chunks/assets/font_a210eba701f0ae88bc542619.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:1.568848;font-style:normal;font-weight:normal;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_3c4a7c326ba6eb6d65574ed8.woff2')format("woff");}.ff4_c00322{font-family:ff4_c00322;line-height:1.568848;font-style:normal;font-weight:normal;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_8015a7fe8a19fcdc3ac3496c.woff2')format("woff");}.ff5_c00322{font-family:ff5_c00322;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00322;src:url('chunks/assets/font_9eb8d54605b8222f4230ecf2.woff2')format("woff");}.ff6_c00322{font-family:ff6_c00322;line-height:1.575000;font-style:normal;font-weight: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_c00322;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00322{font-family:ff7_c00322;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00322{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00322{vertical-align:0.000000px;}
.ls2_c00322{letter-spacing:-3.000000px;}
.ls3_c00322{letter-spacing:0.000000px;}
.ls4_c00322{letter-spacing:3.000000px;}
.ls0_c00322{letter-spacing:3.588000px;}
.ls5_c00322{letter-spacing:6.000000px;}
.ls1_c00322{letter-spacing:12.000000px;}
.sc__c00322{text-shadow:none;}
.sc0_c00322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00322{-webkit-text-stroke:0px transparent;}
.sc0_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00322{word-spacing:-49.500000px;}
.ws3_c00322{word-spacing:-45.192000px;}
.ws1_c00322{word-spacing:-37.790400px;}
.ws2_c00322{word-spacing:-33.192000px;}
.ws4_c00322{word-spacing:0.000000px;}
._18_c00322{margin-left:-14.364000px;}
._b_c00322{margin-left:-9.888000px;}
._14_c00322{margin-left:-7.938000px;}
._a_c00322{margin-left:-6.264000px;}
._13_c00322{margin-left:-5.034000px;}
._8_c00322{margin-left:-3.996000px;}
._d_c00322{margin-left:-2.778000px;}
._c_c00322{margin-left:-1.338000px;}
._4_c00322{width:1.482000px;}
._7_c00322{width:2.640000px;}
._2_c00322{width:4.134000px;}
._11_c00322{width:5.136000px;}
._1_c00322{width:6.942000px;}
._3_c00322{width:8.268000px;}
._0_c00322{width:9.984000px;}
._9_c00322{width:11.088000px;}
._f_c00322{width:13.098000px;}
._e_c00322{width:15.108000px;}
._12_c00322{width:16.836000px;}
._6_c00322{width:18.276000px;}
._10_c00322{width:19.704000px;}
._17_c00322{width:35.841000px;}
._16_c00322{width:38.550000px;}
._15_c00322{width:49.968000px;}
._19_c00322{width:319.032000px;}
._5_c00322{width:370.578000px;}
.fc2_c00322{color:transparent;}
.fc1_c00322{color:rgb(128,128,128);}
.fc0_c00322{color:rgb(0,0,0);}
.fs3_c00322{font-size:24.000000px;}
.fs6_c00322{font-size:48.000000px;}
.fs4_c00322{font-size:57.600000px;}
.fs5_c00322{font-size:63.000000px;}
.fs2_c00322{font-size:72.000000px;}
.fs0_c00322{font-size:78.000000px;}
.fs1_c00322{font-size:99.000000px;}
.y0_c00322{bottom:0.000000px;}
.y1f_c00322{bottom:3.105000px;}
.y1e_c00322{bottom:7.228355px;}
.y1d_c00322{bottom:55.035000px;}
.y1c_c00322{bottom:82.335000px;}
.y1b_c00322{bottom:107.985000px;}
.y1a_c00322{bottom:132.885000px;}
.y19_c00322{bottom:158.535000px;}
.y18_c00322{bottom:183.585000px;}
.y17_c00322{bottom:206.835000px;}
.y16_c00322{bottom:233.835000px;}
.y15_c00322{bottom:259.185000px;}
.y14_c00322{bottom:283.485000px;}
.y13_c00322{bottom:306.735000px;}
.y12_c00322{bottom:329.385000px;}
.y11_c00322{bottom:353.985000px;}
.y10_c00322{bottom:379.335000px;}
.yf_c00322{bottom:403.935000px;}
.ye_c00322{bottom:428.835000px;}
.yd_c00322{bottom:452.835000px;}
.yc_c00322{bottom:477.585000px;}
.yb_c00322{bottom:502.185000px;}
.ya_c00322{bottom:527.085000px;}
.y9_c00322{bottom:551.835000px;}
.y8_c00322{bottom:579.135000px;}
.y7_c00322{bottom:601.335000px;}
.y6_c00322{bottom:625.635000px;}
.y5_c00322{bottom:650.235000px;}
.y4_c00322{bottom:674.685000px;}
.y3_c00322{bottom:698.985000px;}
.y2_c00322{bottom:724.935000px;}
.y1_c00322{bottom:747.885000px;}
.h5_c00322{height:13.200074px;}
.h6_c00322{height:43.804688px;}
.h4_c00322{height:79.765137px;}
.h3_c00322{height:91.160156px;}
.h2_c00322{height:97.114746px;}
.h0_c00322{height:790.275000px;}
.h1_c00322{height:790.500000px;}
.w2_c00322{width:104.875500px;}
.w0_c00322{width:531.375000px;}
.w1_c00322{width:531.750000px;}
.x0_c00322{left:0.000000px;}
.x8_c00322{left:31.800000px;}
.x2_c00322{left:34.200000px;}
.x3_c00322{left:36.450000px;}
.x4_c00322{left:37.500000px;}
.x5_c00322{left:38.850000px;}
.x6_c00322{left:40.050000px;}
.x7_c00322{left:41.100000px;}
.x9_c00322{left:42.600000px;}
.x1_c00322{left:139.650000px;}
.xb_c00322{left:217.501740px;}
.xa_c00322{left:255.600000px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls2_c00322{letter-spacing:-2.666667pt;}
.ls3_c00322{letter-spacing:0.000000pt;}
.ls4_c00322{letter-spacing:2.666667pt;}
.ls0_c00322{letter-spacing:3.189333pt;}
.ls5_c00322{letter-spacing:5.333333pt;}
.ls1_c00322{letter-spacing:10.666667pt;}
.ws0_c00322{word-spacing:-44.000000pt;}
.ws3_c00322{word-spacing:-40.170667pt;}
.ws1_c00322{word-spacing:-33.591467pt;}
.ws2_c00322{word-spacing:-29.504000pt;}
.ws4_c00322{word-spacing:0.000000pt;}
._18_c00322{margin-left:-12.768000pt;}
._b_c00322{margin-left:-8.789333pt;}
._14_c00322{margin-left:-7.056000pt;}
._a_c00322{margin-left:-5.568000pt;}
._13_c00322{margin-left:-4.474667pt;}
._8_c00322{margin-left:-3.552000pt;}
._d_c00322{margin-left:-2.469333pt;}
._c_c00322{margin-left:-1.189333pt;}
._4_c00322{width:1.317333pt;}
._7_c00322{width:2.346667pt;}
._2_c00322{width:3.674667pt;}
._11_c00322{width:4.565333pt;}
._1_c00322{width:6.170667pt;}
._3_c00322{width:7.349333pt;}
._0_c00322{width:8.874667pt;}
._9_c00322{width:9.856000pt;}
._f_c00322{width:11.642667pt;}
._e_c00322{width:13.429333pt;}
._12_c00322{width:14.965333pt;}
._6_c00322{width:16.245333pt;}
._10_c00322{width:17.514667pt;}
._17_c00322{width:31.858667pt;}
._16_c00322{width:34.266667pt;}
._15_c00322{width:44.416000pt;}
._19_c00322{width:283.584000pt;}
._5_c00322{width:329.402667pt;}
.fs3_c00322{font-size:21.333333pt;}
.fs6_c00322{font-size:42.666667pt;}
.fs4_c00322{font-size:51.200000pt;}
.fs5_c00322{font-size:56.000000pt;}
.fs2_c00322{font-size:64.000000pt;}
.fs0_c00322{font-size:69.333333pt;}
.fs1_c00322{font-size:88.000000pt;}
.y0_c00322{bottom:0.000000pt;}
.y1f_c00322{bottom:2.760000pt;}
.y1e_c00322{bottom:6.425204pt;}
.y1d_c00322{bottom:48.920000pt;}
.y1c_c00322{bottom:73.186667pt;}
.y1b_c00322{bottom:95.986667pt;}
.y1a_c00322{bottom:118.120000pt;}
.y19_c00322{bottom:140.920000pt;}
.y18_c00322{bottom:163.186667pt;}
.y17_c00322{bottom:183.853333pt;}
.y16_c00322{bottom:207.853333pt;}
.y15_c00322{bottom:230.386667pt;}
.y14_c00322{bottom:251.986667pt;}
.y13_c00322{bottom:272.653333pt;}
.y12_c00322{bottom:292.786667pt;}
.y11_c00322{bottom:314.653333pt;}
.y10_c00322{bottom:337.186667pt;}
.yf_c00322{bottom:359.053333pt;}
.ye_c00322{bottom:381.186667pt;}
.yd_c00322{bottom:402.520000pt;}
.yc_c00322{bottom:424.520000pt;}
.yb_c00322{bottom:446.386667pt;}
.ya_c00322{bottom:468.520000pt;}
.y9_c00322{bottom:490.520000pt;}
.y8_c00322{bottom:514.786667pt;}
.y7_c00322{bottom:534.520000pt;}
.y6_c00322{bottom:556.120000pt;}
.y5_c00322{bottom:577.986667pt;}
.y4_c00322{bottom:599.720000pt;}
.y3_c00322{bottom:621.320000pt;}
.y2_c00322{bottom:644.386667pt;}
.y1_c00322{bottom:664.786667pt;}
.h5_c00322{height:11.733399pt;}
.h6_c00322{height:38.937500pt;}
.h4_c00322{height:70.902344pt;}
.h3_c00322{height:81.031250pt;}
.h2_c00322{height:86.324219pt;}
.h0_c00322{height:702.466667pt;}
.h1_c00322{height:702.666667pt;}
.w2_c00322{width:93.222667pt;}
.w0_c00322{width:472.333333pt;}
.w1_c00322{width:472.666667pt;}
.x0_c00322{left:0.000000pt;}
.x8_c00322{left:28.266667pt;}
.x2_c00322{left:30.400000pt;}
.x3_c00322{left:32.400000pt;}
.x4_c00322{left:33.333333pt;}
.x5_c00322{left:34.533333pt;}
.x6_c00322{left:35.600000pt;}
.x7_c00322{left:36.533333pt;}
.x9_c00322{left:37.866667pt;}
.x1_c00322{left:124.133333pt;}
.xb_c00322{left:193.334880pt;}
.xa_c00322{left:227.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b7d82de8139c0c635286956.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.480469;font-style:normal;font-weight:normal;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_5da4e549d7d84d82ad4a9409.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00323{font-family:ff3_c00323;line-height:1.219238;font-style: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;}
.ls1_c00323{letter-spacing:-3.000000px;}
.ls3_c00323{letter-spacing:0.000000px;}
.ls0_c00323{letter-spacing:3.000000px;}
.ls2_c00323{letter-spacing:6.000000px;}
.sc__c00323{text-shadow:none;}
.sc0_c00323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00323{-webkit-text-stroke:0px transparent;}
.sc0_c00323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00323{word-spacing:-20.352000px;}
.ws0_c00323{word-spacing:-17.352000px;}
.ws2_c00323{word-spacing:0.000000px;}
._f_c00323{margin-left:-11.097000px;}
._5_c00323{margin-left:-8.640000px;}
._b_c00323{margin-left:-6.666000px;}
._6_c00323{margin-left:-5.256000px;}
._a_c00323{margin-left:-4.086000px;}
._7_c00323{margin-left:-2.448000px;}
._8_c00323{margin-left:-1.296000px;}
._1_c00323{width:1.827000px;}
._2_c00323{width:2.958000px;}
._0_c00323{width:4.698000px;}
._4_c00323{width:6.390000px;}
._d_c00323{width:7.965000px;}
._c_c00323{width:9.831000px;}
._9_c00323{width:11.448000px;}
._e_c00323{width:12.744000px;}
._10_c00323{width:14.154000px;}
._3_c00323{width:15.747000px;}
.fc2_c00323{color:transparent;}
.fc1_c00323{color:rgb(128,128,128);}
.fc0_c00323{color:rgb(0,0,0);}
.fs3_c00323{font-size:48.000000px;}
.fs2_c00323{font-size:51.000000px;}
.fs1_c00323{font-size:72.000000px;}
.fs0_c00323{font-size:87.000000px;}
.y0_c00323{bottom:0.000000px;}
.y1f_c00323{bottom:3.105000px;}
.y1e_c00323{bottom:7.228357px;}
.y1d_c00323{bottom:44.880000px;}
.y1c_c00323{bottom:69.480000px;}
.y1b_c00323{bottom:94.530000px;}
.y1a_c00323{bottom:120.480000px;}
.y19_c00323{bottom:145.830000px;}
.y18_c00323{bottom:171.180000px;}
.y17_c00323{bottom:195.780000px;}
.y16_c00323{bottom:220.380000px;}
.y15_c00323{bottom:245.130000px;}
.y14_c00323{bottom:269.730000px;}
.y13_c00323{bottom:295.080000px;}
.y12_c00323{bottom:319.680000px;}
.y11_c00323{bottom:343.980000px;}
.y10_c00323{bottom:369.630000px;}
.yf_c00323{bottom:393.180000px;}
.ye_c00323{bottom:417.930000px;}
.yd_c00323{bottom:442.230000px;}
.yc_c00323{bottom:466.530000px;}
.yb_c00323{bottom:491.730000px;}
.ya_c00323{bottom:515.430000px;}
.y9_c00323{bottom:540.030000px;}
.y8_c00323{bottom:564.930000px;}
.y7_c00323{bottom:589.230000px;}
.y6_c00323{bottom:613.980000px;}
.y5_c00323{bottom:638.880000px;}
.y4_c00323{bottom:663.180000px;}
.y3_c00323{bottom:687.780000px;}
.y2_c00323{bottom:712.080000px;}
.y1_c00323{bottom:738.180000px;}
.h4_c00323{height:13.200074px;}
.h5_c00323{height:43.804688px;}
.h3_c00323{height:91.160156px;}
.h2_c00323{height:110.151855px;}
.h1_c00323{height:784.500000px;}
.h0_c00323{height:784.650000px;}
.w2_c00323{width:104.875500px;}
.w1_c00323{width:525.750000px;}
.w0_c00323{width:525.975000px;}
.x0_c00323{left:0.000000px;}
.x5_c00323{left:103.950000px;}
.x4_c00323{left:105.900000px;}
.x6_c00323{left:106.950000px;}
.x3_c00323{left:108.000000px;}
.x2_c00323{left:109.350000px;}
.x8_c00323{left:214.801758px;}
.x1_c00323{left:231.900000px;}
.x7_c00323{left:437.100000px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls1_c00323{letter-spacing:-2.666667pt;}
.ls3_c00323{letter-spacing:0.000000pt;}
.ls0_c00323{letter-spacing:2.666667pt;}
.ls2_c00323{letter-spacing:5.333333pt;}
.ws1_c00323{word-spacing:-18.090667pt;}
.ws0_c00323{word-spacing:-15.424000pt;}
.ws2_c00323{word-spacing:0.000000pt;}
._f_c00323{margin-left:-9.864000pt;}
._5_c00323{margin-left:-7.680000pt;}
._b_c00323{margin-left:-5.925333pt;}
._6_c00323{margin-left:-4.672000pt;}
._a_c00323{margin-left:-3.632000pt;}
._7_c00323{margin-left:-2.176000pt;}
._8_c00323{margin-left:-1.152000pt;}
._1_c00323{width:1.624000pt;}
._2_c00323{width:2.629333pt;}
._0_c00323{width:4.176000pt;}
._4_c00323{width:5.680000pt;}
._d_c00323{width:7.080000pt;}
._c_c00323{width:8.738667pt;}
._9_c00323{width:10.176000pt;}
._e_c00323{width:11.328000pt;}
._10_c00323{width:12.581333pt;}
._3_c00323{width:13.997333pt;}
.fs3_c00323{font-size:42.666667pt;}
.fs2_c00323{font-size:45.333333pt;}
.fs1_c00323{font-size:64.000000pt;}
.fs0_c00323{font-size:77.333333pt;}
.y0_c00323{bottom:0.000000pt;}
.y1f_c00323{bottom:2.760000pt;}
.y1e_c00323{bottom:6.425206pt;}
.y1d_c00323{bottom:39.893333pt;}
.y1c_c00323{bottom:61.760000pt;}
.y1b_c00323{bottom:84.026667pt;}
.y1a_c00323{bottom:107.093333pt;}
.y19_c00323{bottom:129.626667pt;}
.y18_c00323{bottom:152.160000pt;}
.y17_c00323{bottom:174.026667pt;}
.y16_c00323{bottom:195.893333pt;}
.y15_c00323{bottom:217.893333pt;}
.y14_c00323{bottom:239.760000pt;}
.y13_c00323{bottom:262.293333pt;}
.y12_c00323{bottom:284.160000pt;}
.y11_c00323{bottom:305.760000pt;}
.y10_c00323{bottom:328.560000pt;}
.yf_c00323{bottom:349.493333pt;}
.ye_c00323{bottom:371.493333pt;}
.yd_c00323{bottom:393.093333pt;}
.yc_c00323{bottom:414.693333pt;}
.yb_c00323{bottom:437.093333pt;}
.ya_c00323{bottom:458.160000pt;}
.y9_c00323{bottom:480.026667pt;}
.y8_c00323{bottom:502.160000pt;}
.y7_c00323{bottom:523.760000pt;}
.y6_c00323{bottom:545.760000pt;}
.y5_c00323{bottom:567.893333pt;}
.y4_c00323{bottom:589.493333pt;}
.y3_c00323{bottom:611.360000pt;}
.y2_c00323{bottom:632.960000pt;}
.y1_c00323{bottom:656.160000pt;}
.h4_c00323{height:11.733399pt;}
.h5_c00323{height:38.937500pt;}
.h3_c00323{height:81.031250pt;}
.h2_c00323{height:97.912760pt;}
.h1_c00323{height:697.333333pt;}
.h0_c00323{height:697.466667pt;}
.w2_c00323{width:93.222667pt;}
.w1_c00323{width:467.333333pt;}
.w0_c00323{width:467.533333pt;}
.x0_c00323{left:0.000000pt;}
.x5_c00323{left:92.400000pt;}
.x4_c00323{left:94.133333pt;}
.x6_c00323{left:95.066667pt;}
.x3_c00323{left:96.000000pt;}
.x2_c00323{left:97.200000pt;}
.x8_c00323{left:190.934896pt;}
.x1_c00323{left:206.133333pt;}
.x7_c00323{left:388.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a5f9309ca8043604a1b60595.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.480469;font-style:normal;font-weight:normal;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_25cf865082eaab88483ceae5.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00324{font-family:ff3_c00324;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00324{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00324{vertical-align:0.000000px;}
.ls0_c00324{letter-spacing:0.000000px;}
.ls1_c00324{letter-spacing:3.000000px;}
.sc__c00324{text-shadow:none;}
.sc0_c00324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00324{-webkit-text-stroke:0px transparent;}
.sc0_c00324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00324{word-spacing:-20.352000px;}
.ws0_c00324{word-spacing:-17.352000px;}
.ws2_c00324{word-spacing:0.000000px;}
._f_c00324{margin-left:-14.256000px;}
._c_c00324{margin-left:-12.888000px;}
._e_c00324{margin-left:-11.520000px;}
._b_c00324{margin-left:-9.936000px;}
._d_c00324{margin-left:-8.712000px;}
._11_c00324{margin-left:-6.984000px;}
._a_c00324{margin-left:-5.328000px;}
._7_c00324{margin-left:-3.600000px;}
._9_c00324{margin-left:-2.088000px;}
._8_c00324{margin-left:-1.080000px;}
._10_c00324{width:1.584000px;}
._4_c00324{width:2.880000px;}
._12_c00324{width:4.176000px;}
._15_c00324{width:5.184000px;}
._3_c00324{width:6.336000px;}
._5_c00324{width:7.992000px;}
._13_c00324{width:9.864000px;}
._0_c00324{width:11.304000px;}
._18_c00324{width:12.312000px;}
._14_c00324{width:13.320000px;}
._17_c00324{width:15.624000px;}
._1_c00324{width:19.080000px;}
._19_c00324{width:21.840000px;}
._2_c00324{width:30.456000px;}
._1a_c00324{width:32.040000px;}
._16_c00324{width:139.608000px;}
._6_c00324{width:359.352000px;}
.fc2_c00324{color:transparent;}
.fc1_c00324{color:rgb(128,128,128);}
.fc0_c00324{color:rgb(0,0,0);}
.fs1_c00324{font-size:48.000000px;}
.fs0_c00324{font-size:72.000000px;}
.y0_c00324{bottom:0.000000px;}
.y1f_c00324{bottom:3.105000px;}
.y1e_c00324{bottom:7.228371px;}
.y1d_c00324{bottom:59.715000px;}
.y1c_c00324{bottom:84.765000px;}
.y1b_c00324{bottom:110.415000px;}
.y1a_c00324{bottom:136.815000px;}
.y19_c00324{bottom:162.465000px;}
.y18_c00324{bottom:187.665000px;}
.y17_c00324{bottom:212.265000px;}
.y16_c00324{bottom:237.015000px;}
.y15_c00324{bottom:262.665000px;}
.y14_c00324{bottom:287.265000px;}
.y13_c00324{bottom:309.615000px;}
.y12_c00324{bottom:333.165000px;}
.y11_c00324{bottom:357.465000px;}
.y10_c00324{bottom:382.065000px;}
.yf_c00324{bottom:406.665000px;}
.ye_c00324{bottom:431.715000px;}
.yd_c00324{bottom:456.315000px;}
.yc_c00324{bottom:481.365000px;}
.yb_c00324{bottom:505.665000px;}
.ya_c00324{bottom:530.865000px;}
.y9_c00324{bottom:555.165000px;}
.y8_c00324{bottom:579.465000px;}
.y7_c00324{bottom:605.265000px;}
.y6_c00324{bottom:629.865000px;}
.y5_c00324{bottom:654.465000px;}
.y4_c00324{bottom:679.365000px;}
.y3_c00324{bottom:703.815000px;}
.y2_c00324{bottom:727.665000px;}
.y1_c00324{bottom:753.015000px;}
.h3_c00324{height:13.200074px;}
.h4_c00324{height:43.804688px;}
.h2_c00324{height:91.160156px;}
.h0_c00324{height:791.925000px;}
.h1_c00324{height:792.000000px;}
.w2_c00324{width:104.875500px;}
.w1_c00324{width:541.500000px;}
.w0_c00324{width:541.650000px;}
.x0_c00324{left:0.000000px;}
.x2_c00324{left:36.750000px;}
.x4_c00324{left:38.100000px;}
.x3_c00324{left:39.150000px;}
.x5_c00324{left:41.400000px;}
.x7_c00324{left:43.650000px;}
.x8_c00324{left:45.600000px;}
.x1_c00324{left:141.750000px;}
.x6_c00324{left:171.450000px;}
.xa_c00324{left:222.639267px;}
.x9_c00324{left:389.700000px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls0_c00324{letter-spacing:0.000000pt;}
.ls1_c00324{letter-spacing:2.666667pt;}
.ws1_c00324{word-spacing:-18.090667pt;}
.ws0_c00324{word-spacing:-15.424000pt;}
.ws2_c00324{word-spacing:0.000000pt;}
._f_c00324{margin-left:-12.672000pt;}
._c_c00324{margin-left:-11.456000pt;}
._e_c00324{margin-left:-10.240000pt;}
._b_c00324{margin-left:-8.832000pt;}
._d_c00324{margin-left:-7.744000pt;}
._11_c00324{margin-left:-6.208000pt;}
._a_c00324{margin-left:-4.736000pt;}
._7_c00324{margin-left:-3.200000pt;}
._9_c00324{margin-left:-1.856000pt;}
._8_c00324{margin-left:-0.960000pt;}
._10_c00324{width:1.408000pt;}
._4_c00324{width:2.560000pt;}
._12_c00324{width:3.712000pt;}
._15_c00324{width:4.608000pt;}
._3_c00324{width:5.632000pt;}
._5_c00324{width:7.104000pt;}
._13_c00324{width:8.768000pt;}
._0_c00324{width:10.048000pt;}
._18_c00324{width:10.944000pt;}
._14_c00324{width:11.840000pt;}
._17_c00324{width:13.888000pt;}
._1_c00324{width:16.960000pt;}
._19_c00324{width:19.413333pt;}
._2_c00324{width:27.072000pt;}
._1a_c00324{width:28.480000pt;}
._16_c00324{width:124.096000pt;}
._6_c00324{width:319.424000pt;}
.fs1_c00324{font-size:42.666667pt;}
.fs0_c00324{font-size:64.000000pt;}
.y0_c00324{bottom:0.000000pt;}
.y1f_c00324{bottom:2.760000pt;}
.y1e_c00324{bottom:6.425219pt;}
.y1d_c00324{bottom:53.080000pt;}
.y1c_c00324{bottom:75.346667pt;}
.y1b_c00324{bottom:98.146667pt;}
.y1a_c00324{bottom:121.613333pt;}
.y19_c00324{bottom:144.413333pt;}
.y18_c00324{bottom:166.813333pt;}
.y17_c00324{bottom:188.680000pt;}
.y16_c00324{bottom:210.680000pt;}
.y15_c00324{bottom:233.480000pt;}
.y14_c00324{bottom:255.346667pt;}
.y13_c00324{bottom:275.213333pt;}
.y12_c00324{bottom:296.146667pt;}
.y11_c00324{bottom:317.746667pt;}
.y10_c00324{bottom:339.613333pt;}
.yf_c00324{bottom:361.480000pt;}
.ye_c00324{bottom:383.746667pt;}
.yd_c00324{bottom:405.613333pt;}
.yc_c00324{bottom:427.880000pt;}
.yb_c00324{bottom:449.480000pt;}
.ya_c00324{bottom:471.880000pt;}
.y9_c00324{bottom:493.480000pt;}
.y8_c00324{bottom:515.080000pt;}
.y7_c00324{bottom:538.013333pt;}
.y6_c00324{bottom:559.880000pt;}
.y5_c00324{bottom:581.746667pt;}
.y4_c00324{bottom:603.880000pt;}
.y3_c00324{bottom:625.613333pt;}
.y2_c00324{bottom:646.813333pt;}
.y1_c00324{bottom:669.346667pt;}
.h3_c00324{height:11.733399pt;}
.h4_c00324{height:38.937500pt;}
.h2_c00324{height:81.031250pt;}
.h0_c00324{height:703.933333pt;}
.h1_c00324{height:704.000000pt;}
.w2_c00324{width:93.222667pt;}
.w1_c00324{width:481.333333pt;}
.w0_c00324{width:481.466667pt;}
.x0_c00324{left:0.000000pt;}
.x2_c00324{left:32.666667pt;}
.x4_c00324{left:33.866667pt;}
.x3_c00324{left:34.800000pt;}
.x5_c00324{left:36.800000pt;}
.x7_c00324{left:38.800000pt;}
.x8_c00324{left:40.533333pt;}
.x1_c00324{left:126.000000pt;}
.x6_c00324{left:152.400000pt;}
.xa_c00324{left:197.901571pt;}
.x9_c00324{left:346.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_29d8caef0ebe7b5f670b1f5b.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00325;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00325;src:url('chunks/assets/font_7822ada3d71791d343371815.woff2')format("woff");}.ff3_c00325{font-family:ff3_c00325;line-height:1.568848;font-style:normal;font-weight:normal;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_02f49d1b5c9e3c288e2731d5.woff2')format("woff");}.ff4_c00325{font-family:ff4_c00325;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00325;src:url('chunks/assets/font_a224b3d45b8368fa31016bb7.woff2')format("woff");}.ff5_c00325{font-family:ff5_c00325;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00325;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00325{font-family:ff6_c00325;line-height:1.219238;font-style: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;}
.ls1_c00325{letter-spacing:0.000000px;}
.ls0_c00325{letter-spacing:3.000000px;}
.ls2_c00325{letter-spacing:6.000000px;}
.sc__c00325{text-shadow:none;}
.sc0_c00325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00325{-webkit-text-stroke:0px transparent;}
.sc0_c00325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00325{word-spacing:-33.843000px;}
.ws1_c00325{word-spacing:-33.192000px;}
.ws0_c00325{word-spacing:-21.000000px;}
.ws3_c00325{word-spacing:-20.352000px;}
.ws4_c00325{word-spacing:-14.250000px;}
.ws5_c00325{word-spacing:0.000000px;}
._9_c00325{margin-left:-14.760000px;}
._e_c00325{margin-left:-12.096000px;}
._a_c00325{margin-left:-10.800000px;}
._c_c00325{margin-left:-9.576000px;}
._b_c00325{margin-left:-7.632000px;}
._d_c00325{margin-left:-5.616000px;}
._7_c00325{margin-left:-4.500000px;}
._8_c00325{margin-left:-3.324000px;}
._4_c00325{margin-left:-1.728000px;}
._5_c00325{width:1.320000px;}
._10_c00325{width:2.688000px;}
._1_c00325{width:3.948000px;}
._13_c00325{width:4.980000px;}
._3_c00325{width:6.132000px;}
._2_c00325{width:7.224000px;}
._6_c00325{width:8.484000px;}
._0_c00325{width:10.416000px;}
._16_c00325{width:11.553000px;}
._f_c00325{width:12.564000px;}
._15_c00325{width:14.820000px;}
._14_c00325{width:18.360000px;}
._11_c00325{width:23.544000px;}
._12_c00325{width:346.824000px;}
._17_c00325{width:367.416000px;}
.fc2_c00325{color:transparent;}
.fc1_c00325{color:rgb(128,128,128);}
.fc0_c00325{color:rgb(0,0,0);}
.fs6_c00325{font-size:48.000000px;}
.fs5_c00325{font-size:57.000000px;}
.fs4_c00325{font-size:66.000000px;}
.fs2_c00325{font-size:69.000000px;}
.fs1_c00325{font-size:72.000000px;}
.fs0_c00325{font-size:84.000000px;}
.fs3_c00325{font-size:87.000000px;}
.y0_c00325{bottom:0.000000px;}
.y21_c00325{bottom:3.105000px;}
.y20_c00325{bottom:7.228369px;}
.y1d_c00325{bottom:47.520000px;}
.y1c_c00325{bottom:70.470000px;}
.y1b_c00325{bottom:95.070000px;}
.y1a_c00325{bottom:120.720000px;}
.y19_c00325{bottom:147.720000px;}
.y18_c00325{bottom:171.120000px;}
.y17_c00325{bottom:197.370000px;}
.y16_c00325{bottom:220.770000px;}
.y15_c00325{bottom:245.370000px;}
.y14_c00325{bottom:270.720000px;}
.y1f_c00325{bottom:287.820000px;}
.y13_c00325{bottom:295.920000px;}
.y1e_c00325{bottom:308.520000px;}
.y12_c00325{bottom:319.920000px;}
.y11_c00325{bottom:346.170000px;}
.y10_c00325{bottom:370.620000px;}
.yf_c00325{bottom:394.470000px;}
.ye_c00325{bottom:419.070000px;}
.yd_c00325{bottom:443.070000px;}
.yc_c00325{bottom:467.670000px;}
.yb_c00325{bottom:492.120000px;}
.ya_c00325{bottom:516.720000px;}
.y9_c00325{bottom:541.320000px;}
.y8_c00325{bottom:566.220000px;}
.y7_c00325{bottom:590.670000px;}
.y6_c00325{bottom:615.570000px;}
.y5_c00325{bottom:639.870000px;}
.y4_c00325{bottom:664.770000px;}
.y3_c00325{bottom:689.220000px;}
.y2_c00325{bottom:713.820000px;}
.y1_c00325{bottom:739.170000px;}
.h7_c00325{height:13.200073px;}
.h8_c00325{height:43.804688px;}
.h6_c00325{height:55.914551px;}
.h5_c00325{height:55.942383px;}
.h1_c00325{height:82.441406px;}
.h4_c00325{height:83.563477px;}
.h2_c00325{height:91.160156px;}
.h3_c00325{height:92.829000px;}
.h0_c00325{height:773.250000px;}
.w2_c00325{width:104.875500px;}
.w0_c00325{width:527.850000px;}
.w1_c00325{width:528.000000px;}
.x0_c00325{left:0.000000px;}
.xf_c00325{left:30.600000px;}
.xa_c00325{left:31.800000px;}
.x9_c00325{left:32.850000px;}
.xd_c00325{left:105.900000px;}
.xc_c00325{left:107.550000px;}
.xb_c00325{left:109.050000px;}
.x8_c00325{left:110.400000px;}
.x7_c00325{left:111.600000px;}
.x6_c00325{left:113.100000px;}
.x4_c00325{left:114.450000px;}
.x5_c00325{left:115.650000px;}
.x3_c00325{left:116.850000px;}
.x2_c00325{left:118.350000px;}
.x10_c00325{left:215.739258px;}
.x1_c00325{left:247.350000px;}
.xe_c00325{left:442.350000px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls1_c00325{letter-spacing:0.000000pt;}
.ls0_c00325{letter-spacing:2.666667pt;}
.ls2_c00325{letter-spacing:5.333333pt;}
.ws2_c00325{word-spacing:-30.082667pt;}
.ws1_c00325{word-spacing:-29.504000pt;}
.ws0_c00325{word-spacing:-18.666667pt;}
.ws3_c00325{word-spacing:-18.090667pt;}
.ws4_c00325{word-spacing:-12.666667pt;}
.ws5_c00325{word-spacing:0.000000pt;}
._9_c00325{margin-left:-13.120000pt;}
._e_c00325{margin-left:-10.752000pt;}
._a_c00325{margin-left:-9.600000pt;}
._c_c00325{margin-left:-8.512000pt;}
._b_c00325{margin-left:-6.784000pt;}
._d_c00325{margin-left:-4.992000pt;}
._7_c00325{margin-left:-4.000000pt;}
._8_c00325{margin-left:-2.954667pt;}
._4_c00325{margin-left:-1.536000pt;}
._5_c00325{width:1.173333pt;}
._10_c00325{width:2.389333pt;}
._1_c00325{width:3.509333pt;}
._13_c00325{width:4.426667pt;}
._3_c00325{width:5.450667pt;}
._2_c00325{width:6.421333pt;}
._6_c00325{width:7.541333pt;}
._0_c00325{width:9.258667pt;}
._16_c00325{width:10.269333pt;}
._f_c00325{width:11.168000pt;}
._15_c00325{width:13.173333pt;}
._14_c00325{width:16.320000pt;}
._11_c00325{width:20.928000pt;}
._12_c00325{width:308.288000pt;}
._17_c00325{width:326.592000pt;}
.fs6_c00325{font-size:42.666667pt;}
.fs5_c00325{font-size:50.666667pt;}
.fs4_c00325{font-size:58.666667pt;}
.fs2_c00325{font-size:61.333333pt;}
.fs1_c00325{font-size:64.000000pt;}
.fs0_c00325{font-size:74.666667pt;}
.fs3_c00325{font-size:77.333333pt;}
.y0_c00325{bottom:0.000000pt;}
.y21_c00325{bottom:2.760000pt;}
.y20_c00325{bottom:6.425217pt;}
.y1d_c00325{bottom:42.240000pt;}
.y1c_c00325{bottom:62.640000pt;}
.y1b_c00325{bottom:84.506667pt;}
.y1a_c00325{bottom:107.306667pt;}
.y19_c00325{bottom:131.306667pt;}
.y18_c00325{bottom:152.106667pt;}
.y17_c00325{bottom:175.440000pt;}
.y16_c00325{bottom:196.240000pt;}
.y15_c00325{bottom:218.106667pt;}
.y14_c00325{bottom:240.640000pt;}
.y1f_c00325{bottom:255.840000pt;}
.y13_c00325{bottom:263.040000pt;}
.y1e_c00325{bottom:274.240000pt;}
.y12_c00325{bottom:284.373333pt;}
.y11_c00325{bottom:307.706667pt;}
.y10_c00325{bottom:329.440000pt;}
.yf_c00325{bottom:350.640000pt;}
.ye_c00325{bottom:372.506667pt;}
.yd_c00325{bottom:393.840000pt;}
.yc_c00325{bottom:415.706667pt;}
.yb_c00325{bottom:437.440000pt;}
.ya_c00325{bottom:459.306667pt;}
.y9_c00325{bottom:481.173333pt;}
.y8_c00325{bottom:503.306667pt;}
.y7_c00325{bottom:525.040000pt;}
.y6_c00325{bottom:547.173333pt;}
.y5_c00325{bottom:568.773333pt;}
.y4_c00325{bottom:590.906667pt;}
.y3_c00325{bottom:612.640000pt;}
.y2_c00325{bottom:634.506667pt;}
.y1_c00325{bottom:657.040000pt;}
.h7_c00325{height:11.733399pt;}
.h8_c00325{height:38.937500pt;}
.h6_c00325{height:49.701823pt;}
.h5_c00325{height:49.726562pt;}
.h1_c00325{height:73.281250pt;}
.h4_c00325{height:74.278646pt;}
.h2_c00325{height:81.031250pt;}
.h3_c00325{height:82.514667pt;}
.h0_c00325{height:687.333333pt;}
.w2_c00325{width:93.222667pt;}
.w0_c00325{width:469.200000pt;}
.w1_c00325{width:469.333333pt;}
.x0_c00325{left:0.000000pt;}
.xf_c00325{left:27.200000pt;}
.xa_c00325{left:28.266667pt;}
.x9_c00325{left:29.200000pt;}
.xd_c00325{left:94.133333pt;}
.xc_c00325{left:95.600000pt;}
.xb_c00325{left:96.933333pt;}
.x8_c00325{left:98.133333pt;}
.x7_c00325{left:99.200000pt;}
.x6_c00325{left:100.533333pt;}
.x4_c00325{left:101.733333pt;}
.x5_c00325{left:102.800000pt;}
.x3_c00325{left:103.866667pt;}
.x2_c00325{left:105.200000pt;}
.x10_c00325{left:191.768229pt;}
.x1_c00325{left:219.866667pt;}
.xe_c00325{left:393.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bb3bf940cce37cc932e910c6.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.480469;font-style:normal;font-weight:normal;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_d4ff6b26dc0189f59c29d2c9.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:1.568848;font-style:normal;font-weight:normal;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_4d1a8f54c4fc1f947cdf10c1.woff2')format("woff");}.ff3_c00326{font-family:ff3_c00326;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00326;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00326{font-family:ff4_c00326;line-height:1.219238;font-style: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:3.000000px;}
.ls2_c00326{letter-spacing:6.000000px;}
.sc__c00326{text-shadow:none;}
.sc0_c00326{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00326{-webkit-text-stroke:0px transparent;}
.sc0_c00326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00326{word-spacing:-17.352000px;}
.ws1_c00326{word-spacing:0.000000px;}
._11_c00326{margin-left:-29.520000px;}
._16_c00326{margin-left:-24.984000px;}
._5_c00326{margin-left:-15.552000px;}
._c_c00326{margin-left:-8.496000px;}
._b_c00326{margin-left:-7.416000px;}
._15_c00326{margin-left:-5.616000px;}
._10_c00326{margin-left:-4.389000px;}
._e_c00326{margin-left:-3.024000px;}
._3_c00326{margin-left:-1.152000px;}
._d_c00326{width:1.584000px;}
._8_c00326{width:2.808000px;}
._4_c00326{width:4.752000px;}
._7_c00326{width:5.976000px;}
._6_c00326{width:7.056000px;}
._f_c00326{width:8.379000px;}
._1_c00326{width:9.792000px;}
._13_c00326{width:11.358000px;}
._a_c00326{width:13.608000px;}
._12_c00326{width:16.344000px;}
._2_c00326{width:20.232000px;}
._0_c00326{width:26.496000px;}
._14_c00326{width:38.823000px;}
._9_c00326{width:357.336000px;}
.fc2_c00326{color:transparent;}
.fc1_c00326{color:rgb(128,128,128);}
.fc0_c00326{color:rgb(0,0,0);}
.fs2_c00326{font-size:48.000000px;}
.fs1_c00326{font-size:57.000000px;}
.fs0_c00326{font-size:72.000000px;}
.y0_c00326{bottom:0.000000px;}
.y1f_c00326{bottom:3.105000px;}
.y1e_c00326{bottom:7.228355px;}
.y1d_c00326{bottom:43.185000px;}
.y1c_c00326{bottom:71.085000px;}
.y1b_c00326{bottom:95.835000px;}
.y1a_c00326{bottom:121.185000px;}
.y19_c00326{bottom:146.385000px;}
.y18_c00326{bottom:170.385000px;}
.y17_c00326{bottom:196.635000px;}
.y16_c00326{bottom:220.635000px;}
.y15_c00326{bottom:245.685000px;}
.y14_c00326{bottom:271.635000px;}
.y13_c00326{bottom:295.335000px;}
.y12_c00326{bottom:318.135000px;}
.y11_c00326{bottom:341.235000px;}
.y10_c00326{bottom:366.435000px;}
.yf_c00326{bottom:391.485000px;}
.ye_c00326{bottom:415.785000px;}
.yd_c00326{bottom:440.385000px;}
.yc_c00326{bottom:464.985000px;}
.yb_c00326{bottom:489.585000px;}
.ya_c00326{bottom:513.885000px;}
.y9_c00326{bottom:538.335000px;}
.y8_c00326{bottom:563.535000px;}
.y7_c00326{bottom:587.835000px;}
.y6_c00326{bottom:612.585000px;}
.y5_c00326{bottom:637.185000px;}
.y4_c00326{bottom:661.785000px;}
.y3_c00326{bottom:685.035000px;}
.y2_c00326{bottom:711.135000px;}
.y1_c00326{bottom:736.035000px;}
.h4_c00326{height:13.200074px;}
.h5_c00326{height:43.804688px;}
.h2_c00326{height:84.269531px;}
.h3_c00326{height:91.160156px;}
.h0_c00326{height:775.425000px;}
.h1_c00326{height:775.500000px;}
.w2_c00326{width:104.875500px;}
.w1_c00326{width:519.000000px;}
.w0_c00326{width:519.225000px;}
.x0_c00326{left:0.000000px;}
.x8_c00326{left:39.450000px;}
.x7_c00326{left:40.500000px;}
.x2_c00326{left:41.550000px;}
.x3_c00326{left:42.900000px;}
.x4_c00326{left:44.100000px;}
.x5_c00326{left:45.900000px;}
.x6_c00326{left:47.850000px;}
.x9_c00326{left:48.900000px;}
.xc_c00326{left:49.950000px;}
.xa_c00326{left:54.600000px;}
.xb_c00326{left:55.650000px;}
.x1_c00326{left:145.650000px;}
.xe_c00326{left:211.426758px;}
.xd_c00326{left:393.900000px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls1_c00326{letter-spacing:0.000000pt;}
.ls0_c00326{letter-spacing:2.666667pt;}
.ls2_c00326{letter-spacing:5.333333pt;}
.ws0_c00326{word-spacing:-15.424000pt;}
.ws1_c00326{word-spacing:0.000000pt;}
._11_c00326{margin-left:-26.240000pt;}
._16_c00326{margin-left:-22.208000pt;}
._5_c00326{margin-left:-13.824000pt;}
._c_c00326{margin-left:-7.552000pt;}
._b_c00326{margin-left:-6.592000pt;}
._15_c00326{margin-left:-4.992000pt;}
._10_c00326{margin-left:-3.901333pt;}
._e_c00326{margin-left:-2.688000pt;}
._3_c00326{margin-left:-1.024000pt;}
._d_c00326{width:1.408000pt;}
._8_c00326{width:2.496000pt;}
._4_c00326{width:4.224000pt;}
._7_c00326{width:5.312000pt;}
._6_c00326{width:6.272000pt;}
._f_c00326{width:7.448000pt;}
._1_c00326{width:8.704000pt;}
._13_c00326{width:10.096000pt;}
._a_c00326{width:12.096000pt;}
._12_c00326{width:14.528000pt;}
._2_c00326{width:17.984000pt;}
._0_c00326{width:23.552000pt;}
._14_c00326{width:34.509333pt;}
._9_c00326{width:317.632000pt;}
.fs2_c00326{font-size:42.666667pt;}
.fs1_c00326{font-size:50.666667pt;}
.fs0_c00326{font-size:64.000000pt;}
.y0_c00326{bottom:0.000000pt;}
.y1f_c00326{bottom:2.760000pt;}
.y1e_c00326{bottom:6.425204pt;}
.y1d_c00326{bottom:38.386667pt;}
.y1c_c00326{bottom:63.186667pt;}
.y1b_c00326{bottom:85.186667pt;}
.y1a_c00326{bottom:107.720000pt;}
.y19_c00326{bottom:130.120000pt;}
.y18_c00326{bottom:151.453333pt;}
.y17_c00326{bottom:174.786667pt;}
.y16_c00326{bottom:196.120000pt;}
.y15_c00326{bottom:218.386667pt;}
.y14_c00326{bottom:241.453333pt;}
.y13_c00326{bottom:262.520000pt;}
.y12_c00326{bottom:282.786667pt;}
.y11_c00326{bottom:303.320000pt;}
.y10_c00326{bottom:325.720000pt;}
.yf_c00326{bottom:347.986667pt;}
.ye_c00326{bottom:369.586667pt;}
.yd_c00326{bottom:391.453333pt;}
.yc_c00326{bottom:413.320000pt;}
.yb_c00326{bottom:435.186667pt;}
.ya_c00326{bottom:456.786667pt;}
.y9_c00326{bottom:478.520000pt;}
.y8_c00326{bottom:500.920000pt;}
.y7_c00326{bottom:522.520000pt;}
.y6_c00326{bottom:544.520000pt;}
.y5_c00326{bottom:566.386667pt;}
.y4_c00326{bottom:588.253333pt;}
.y3_c00326{bottom:608.920000pt;}
.y2_c00326{bottom:632.120000pt;}
.y1_c00326{bottom:654.253333pt;}
.h4_c00326{height:11.733399pt;}
.h5_c00326{height:38.937500pt;}
.h2_c00326{height:74.906250pt;}
.h3_c00326{height:81.031250pt;}
.h0_c00326{height:689.266667pt;}
.h1_c00326{height:689.333333pt;}
.w2_c00326{width:93.222667pt;}
.w1_c00326{width:461.333333pt;}
.w0_c00326{width:461.533333pt;}
.x0_c00326{left:0.000000pt;}
.x8_c00326{left:35.066667pt;}
.x7_c00326{left:36.000000pt;}
.x2_c00326{left:36.933333pt;}
.x3_c00326{left:38.133333pt;}
.x4_c00326{left:39.200000pt;}
.x5_c00326{left:40.800000pt;}
.x6_c00326{left:42.533333pt;}
.x9_c00326{left:43.466667pt;}
.xc_c00326{left:44.400000pt;}
.xa_c00326{left:48.533333pt;}
.xb_c00326{left:49.466667pt;}
.x1_c00326{left:129.466667pt;}
.xe_c00326{left:187.934896pt;}
.xd_c00326{left:350.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_33ab695283ac0e634557d477.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.480469;font-style:normal;font-weight:normal;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_414ba8c89b2a85a27d7338fc.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:1.568848;font-style:normal;font-weight:normal;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_4c5bd879b71790fdbfaba670.woff2')format("woff");}.ff3_c00327{font-family:ff3_c00327;line-height:1.575000;font-style:normal;font-weight:normal;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_74dc916cd7cbe308ef312f70.woff2')format("woff");}.ff4_c00327{font-family:ff4_c00327;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00327;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00327{font-family:ff5_c00327;line-height:1.219238;font-style: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;}
.ls3_c00327{letter-spacing:-6.000000px;}
.ls0_c00327{letter-spacing:-3.000000px;}
.ls1_c00327{letter-spacing:0.000000px;}
.ls2_c00327{letter-spacing:3.000000px;}
.sc__c00327{text-shadow:none;}
.sc0_c00327{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00327{-webkit-text-stroke:0px transparent;}
.sc0_c00327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00327{word-spacing:-27.192000px;}
.ws0_c00327{word-spacing:-20.352000px;}
.ws3_c00327{word-spacing:-17.352000px;}
.ws2_c00327{word-spacing:-14.352000px;}
.ws4_c00327{word-spacing:0.000000px;}
._13_c00327{margin-left:-22.968000px;}
._10_c00327{margin-left:-21.870000px;}
._14_c00327{margin-left:-19.512000px;}
._17_c00327{margin-left:-12.672000px;}
._d_c00327{margin-left:-10.080000px;}
._f_c00327{margin-left:-8.352000px;}
._1_c00327{margin-left:-7.176000px;}
._0_c00327{margin-left:-5.928000px;}
._3_c00327{margin-left:-4.836000px;}
._2_c00327{margin-left:-3.042000px;}
._c_c00327{margin-left:-1.224000px;}
._7_c00327{width:1.296000px;}
._4_c00327{width:2.808000px;}
._9_c00327{width:3.816000px;}
._b_c00327{width:5.256000px;}
._6_c00327{width:6.480000px;}
._5_c00327{width:7.560000px;}
._12_c00327{width:8.784000px;}
._8_c00327{width:9.792000px;}
._a_c00327{width:11.736000px;}
._e_c00327{width:13.704000px;}
._11_c00327{width:15.120000px;}
._15_c00327{width:16.344000px;}
._16_c00327{width:19.296000px;}
.fc2_c00327{color:transparent;}
.fc1_c00327{color:rgb(128,128,128);}
.fc0_c00327{color:rgb(0,0,0);}
.fs3_c00327{font-size:48.000000px;}
.fs2_c00327{font-size:63.000000px;}
.fs1_c00327{font-size:72.000000px;}
.fs0_c00327{font-size:78.000000px;}
.y0_c00327{bottom:0.000000px;}
.y1f_c00327{bottom:3.105000px;}
.y1e_c00327{bottom:7.228371px;}
.y1d_c00327{bottom:49.965000px;}
.y1c_c00327{bottom:71.565000px;}
.y1b_c00327{bottom:96.615000px;}
.y1a_c00327{bottom:122.265000px;}
.y19_c00327{bottom:147.915000px;}
.y18_c00327{bottom:173.115000px;}
.y17_c00327{bottom:199.215000px;}
.y16_c00327{bottom:224.115000px;}
.y15_c00327{bottom:250.065000px;}
.y14_c00327{bottom:272.415000px;}
.y13_c00327{bottom:296.715000px;}
.y12_c00327{bottom:322.365000px;}
.y11_c00327{bottom:345.915000px;}
.y10_c00327{bottom:370.665000px;}
.yf_c00327{bottom:396.615000px;}
.ye_c00327{bottom:419.865000px;}
.yd_c00327{bottom:444.915000px;}
.yc_c00327{bottom:468.165000px;}
.yb_c00327{bottom:492.765000px;}
.ya_c00327{bottom:517.065000px;}
.y9_c00327{bottom:541.815000px;}
.y8_c00327{bottom:566.715000px;}
.y7_c00327{bottom:590.715000px;}
.y6_c00327{bottom:615.915000px;}
.y5_c00327{bottom:640.215000px;}
.y4_c00327{bottom:664.665000px;}
.y3_c00327{bottom:689.865000px;}
.y2_c00327{bottom:714.165000px;}
.y1_c00327{bottom:739.815000px;}
.h4_c00327{height:13.200074px;}
.h5_c00327{height:43.804688px;}
.h3_c00327{height:91.160156px;}
.h2_c00327{height:98.756836px;}
.h0_c00327{height:794.625000px;}
.h1_c00327{height:795.000000px;}
.w2_c00327{width:104.875500px;}
.w1_c00327{width:537.000000px;}
.w0_c00327{width:537.300000px;}
.x0_c00327{left:0.000000px;}
.xc_c00327{left:103.950000px;}
.xd_c00327{left:105.300000px;}
.xa_c00327{left:106.650000px;}
.xb_c00327{left:108.000000px;}
.x9_c00327{left:115.650000px;}
.x8_c00327{left:116.850000px;}
.x7_c00327{left:118.050000px;}
.x6_c00327{left:119.250000px;}
.x5_c00327{left:120.450000px;}
.x4_c00327{left:121.500000px;}
.x3_c00327{left:123.150000px;}
.x2_c00327{left:124.650000px;}
.xf_c00327{left:220.464249px;}
.x1_c00327{left:253.800000px;}
.xe_c00327{left:423.000000px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls3_c00327{letter-spacing:-5.333333pt;}
.ls0_c00327{letter-spacing:-2.666667pt;}
.ls1_c00327{letter-spacing:0.000000pt;}
.ls2_c00327{letter-spacing:2.666667pt;}
.ws1_c00327{word-spacing:-24.170667pt;}
.ws0_c00327{word-spacing:-18.090667pt;}
.ws3_c00327{word-spacing:-15.424000pt;}
.ws2_c00327{word-spacing:-12.757333pt;}
.ws4_c00327{word-spacing:0.000000pt;}
._13_c00327{margin-left:-20.416000pt;}
._10_c00327{margin-left:-19.440000pt;}
._14_c00327{margin-left:-17.344000pt;}
._17_c00327{margin-left:-11.264000pt;}
._d_c00327{margin-left:-8.960000pt;}
._f_c00327{margin-left:-7.424000pt;}
._1_c00327{margin-left:-6.378667pt;}
._0_c00327{margin-left:-5.269333pt;}
._3_c00327{margin-left:-4.298667pt;}
._2_c00327{margin-left:-2.704000pt;}
._c_c00327{margin-left:-1.088000pt;}
._7_c00327{width:1.152000pt;}
._4_c00327{width:2.496000pt;}
._9_c00327{width:3.392000pt;}
._b_c00327{width:4.672000pt;}
._6_c00327{width:5.760000pt;}
._5_c00327{width:6.720000pt;}
._12_c00327{width:7.808000pt;}
._8_c00327{width:8.704000pt;}
._a_c00327{width:10.432000pt;}
._e_c00327{width:12.181333pt;}
._11_c00327{width:13.440000pt;}
._15_c00327{width:14.528000pt;}
._16_c00327{width:17.152000pt;}
.fs3_c00327{font-size:42.666667pt;}
.fs2_c00327{font-size:56.000000pt;}
.fs1_c00327{font-size:64.000000pt;}
.fs0_c00327{font-size:69.333333pt;}
.y0_c00327{bottom:0.000000pt;}
.y1f_c00327{bottom:2.760000pt;}
.y1e_c00327{bottom:6.425219pt;}
.y1d_c00327{bottom:44.413333pt;}
.y1c_c00327{bottom:63.613333pt;}
.y1b_c00327{bottom:85.880000pt;}
.y1a_c00327{bottom:108.680000pt;}
.y19_c00327{bottom:131.480000pt;}
.y18_c00327{bottom:153.880000pt;}
.y17_c00327{bottom:177.080000pt;}
.y16_c00327{bottom:199.213333pt;}
.y15_c00327{bottom:222.280000pt;}
.y14_c00327{bottom:242.146667pt;}
.y13_c00327{bottom:263.746667pt;}
.y12_c00327{bottom:286.546667pt;}
.y11_c00327{bottom:307.480000pt;}
.y10_c00327{bottom:329.480000pt;}
.yf_c00327{bottom:352.546667pt;}
.ye_c00327{bottom:373.213333pt;}
.yd_c00327{bottom:395.480000pt;}
.yc_c00327{bottom:416.146667pt;}
.yb_c00327{bottom:438.013333pt;}
.ya_c00327{bottom:459.613333pt;}
.y9_c00327{bottom:481.613333pt;}
.y8_c00327{bottom:503.746667pt;}
.y7_c00327{bottom:525.080000pt;}
.y6_c00327{bottom:547.480000pt;}
.y5_c00327{bottom:569.080000pt;}
.y4_c00327{bottom:590.813333pt;}
.y3_c00327{bottom:613.213333pt;}
.y2_c00327{bottom:634.813333pt;}
.y1_c00327{bottom:657.613333pt;}
.h4_c00327{height:11.733399pt;}
.h5_c00327{height:38.937500pt;}
.h3_c00327{height:81.031250pt;}
.h2_c00327{height:87.783854pt;}
.h0_c00327{height:706.333333pt;}
.h1_c00327{height:706.666667pt;}
.w2_c00327{width:93.222667pt;}
.w1_c00327{width:477.333333pt;}
.w0_c00327{width:477.600000pt;}
.x0_c00327{left:0.000000pt;}
.xc_c00327{left:92.400000pt;}
.xd_c00327{left:93.600000pt;}
.xa_c00327{left:94.800000pt;}
.xb_c00327{left:96.000000pt;}
.x9_c00327{left:102.800000pt;}
.x8_c00327{left:103.866667pt;}
.x7_c00327{left:104.933333pt;}
.x6_c00327{left:106.000000pt;}
.x5_c00327{left:107.066667pt;}
.x4_c00327{left:108.000000pt;}
.x3_c00327{left:109.466667pt;}
.x2_c00327{left:110.800000pt;}
.xf_c00327{left:195.968221pt;}
.x1_c00327{left:225.600000pt;}
.xe_c00327{left:376.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_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_ea6103b118f3eb0683ac98ce.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00328;src:url('chunks/assets/font_4a0b4fd89ebce69210268a17.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00328;src:url('chunks/assets/font_6b3425bcb60bd790d18087e6.woff2')format("woff");}.ff3_c00328{font-family:ff3_c00328;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00328;src:url('chunks/assets/font_1b93206d26b869f98f26bf21.woff2')format("woff");}.ff4_c00328{font-family:ff4_c00328;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00328;src:url('chunks/assets/font_19244d67eac5e0f78fd089e0.woff2')format("woff");}.ff5_c00328{font-family:ff5_c00328;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00328;src:url('chunks/assets/font_aac970e32970d0e9cf5600b4.woff2')format("woff");}.ff6_c00328{font-family:ff6_c00328;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00328;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00328{font-family:ff7_c00328;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00328{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00328{vertical-align:0.000000px;}
.ls2_c00328{letter-spacing:0.000000px;}
.ls0_c00328{letter-spacing:3.000000px;}
.ls1_c00328{letter-spacing:14.388000px;}
.ls3_c00328{letter-spacing:54.000000px;}
.sc__c00328{text-shadow:none;}
.sc0_c00328{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00328{-webkit-text-stroke:0px transparent;}
.sc0_c00328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00328{word-spacing:-71.352000px;}
.ws2_c00328{word-spacing:-20.352000px;}
.ws0_c00328{word-spacing:-12.936000px;}
.ws3_c00328{word-spacing:0.000000px;}
._11_c00328{margin-left:-13.752000px;}
._10_c00328{margin-left:-11.304000px;}
._16_c00328{margin-left:-10.104000px;}
._4_c00328{margin-left:-8.988000px;}
._13_c00328{margin-left:-7.512000px;}
._e_c00328{margin-left:-6.120000px;}
._d_c00328{margin-left:-4.464000px;}
._a_c00328{margin-left:-2.952000px;}
._b_c00328{margin-left:-1.296000px;}
._12_c00328{width:1.080000px;}
._c_c00328{width:2.088000px;}
._6_c00328{width:3.612000px;}
._2_c00328{width:5.460000px;}
._5_c00328{width:6.804000px;}
._1_c00328{width:8.568000px;}
._3_c00328{width:9.912000px;}
._9_c00328{width:12.312000px;}
._0_c00328{width:14.364000px;}
._14_c00328{width:15.744000px;}
._15_c00328{width:18.240000px;}
._8_c00328{width:21.870000px;}
._f_c00328{width:129.312000px;}
._7_c00328{width:302.592000px;}
.fc2_c00328{color:transparent;}
.fc1_c00328{color:rgb(128,128,128);}
.fc0_c00328{color:rgb(0,0,0);}
.fs5_c00328{font-size:48.000000px;}
.fs3_c00328{font-size:63.000000px;}
.fs2_c00328{font-size:72.000000px;}
.fs1_c00328{font-size:81.000000px;}
.fs0_c00328{font-size:84.000000px;}
.fs4_c00328{font-size:96.000000px;}
.y0_c00328{bottom:0.000000px;}
.y1f_c00328{bottom:3.105000px;}
.y1e_c00328{bottom:7.228363px;}
.y1d_c00328{bottom:61.800000px;}
.y1c_c00328{bottom:90.900000px;}
.y1b_c00328{bottom:115.350000px;}
.y1a_c00328{bottom:140.100000px;}
.y19_c00328{bottom:164.700000px;}
.y18_c00328{bottom:190.050000px;}
.y17_c00328{bottom:212.250000px;}
.y16_c00328{bottom:239.400000px;}
.y15_c00328{bottom:264.300000px;}
.y14_c00328{bottom:288.900000px;}
.y13_c00328{bottom:313.200000px;}
.y12_c00328{bottom:334.800000px;}
.y11_c00328{bottom:359.550000px;}
.y10_c00328{bottom:384.000000px;}
.yf_c00328{bottom:408.750000px;}
.ye_c00328{bottom:433.650000px;}
.yd_c00328{bottom:457.950000px;}
.yc_c00328{bottom:483.000000px;}
.yb_c00328{bottom:507.600000px;}
.ya_c00328{bottom:532.350000px;}
.y9_c00328{bottom:556.950000px;}
.y8_c00328{bottom:580.950000px;}
.y7_c00328{bottom:606.450000px;}
.y6_c00328{bottom:630.150000px;}
.y5_c00328{bottom:655.200000px;}
.y4_c00328{bottom:680.400000px;}
.y3_c00328{bottom:704.250000px;}
.y2_c00328{bottom:728.400000px;}
.y1_c00328{bottom:753.750000px;}
.h5_c00328{height:13.200074px;}
.h6_c00328{height:43.804688px;}
.h2_c00328{height:82.400391px;}
.h3_c00328{height:91.160156px;}
.h4_c00328{height:96.750000px;}
.h1_c00328{height:788.250000px;}
.h0_c00328{height:788.400000px;}
.w1_c00328{width:104.875500px;}
.w0_c00328{width:543.750000px;}
.x0_c00328{left:0.000000px;}
.x2_c00328{left:24.600000px;}
.x3_c00328{left:26.400000px;}
.x4_c00328{left:28.350000px;}
.x5_c00328{left:29.400000px;}
.x6_c00328{left:30.450000px;}
.x8_c00328{left:31.500000px;}
.x7_c00328{left:32.850000px;}
.x9_c00328{left:34.050000px;}
.x1_c00328{left:146.400000px;}
.xb_c00328{left:223.689240px;}
.xa_c00328{left:340.200000px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls2_c00328{letter-spacing:0.000000pt;}
.ls0_c00328{letter-spacing:2.666667pt;}
.ls1_c00328{letter-spacing:12.789333pt;}
.ls3_c00328{letter-spacing:48.000000pt;}
.ws1_c00328{word-spacing:-63.424000pt;}
.ws2_c00328{word-spacing:-18.090667pt;}
.ws0_c00328{word-spacing:-11.498667pt;}
.ws3_c00328{word-spacing:0.000000pt;}
._11_c00328{margin-left:-12.224000pt;}
._10_c00328{margin-left:-10.048000pt;}
._16_c00328{margin-left:-8.981333pt;}
._4_c00328{margin-left:-7.989333pt;}
._13_c00328{margin-left:-6.677333pt;}
._e_c00328{margin-left:-5.440000pt;}
._d_c00328{margin-left:-3.968000pt;}
._a_c00328{margin-left:-2.624000pt;}
._b_c00328{margin-left:-1.152000pt;}
._12_c00328{width:0.960000pt;}
._c_c00328{width:1.856000pt;}
._6_c00328{width:3.210667pt;}
._2_c00328{width:4.853333pt;}
._5_c00328{width:6.048000pt;}
._1_c00328{width:7.616000pt;}
._3_c00328{width:8.810667pt;}
._9_c00328{width:10.944000pt;}
._0_c00328{width:12.768000pt;}
._14_c00328{width:13.994667pt;}
._15_c00328{width:16.213333pt;}
._8_c00328{width:19.440000pt;}
._f_c00328{width:114.944000pt;}
._7_c00328{width:268.970667pt;}
.fs5_c00328{font-size:42.666667pt;}
.fs3_c00328{font-size:56.000000pt;}
.fs2_c00328{font-size:64.000000pt;}
.fs1_c00328{font-size:72.000000pt;}
.fs0_c00328{font-size:74.666667pt;}
.fs4_c00328{font-size:85.333333pt;}
.y0_c00328{bottom:0.000000pt;}
.y1f_c00328{bottom:2.760000pt;}
.y1e_c00328{bottom:6.425212pt;}
.y1d_c00328{bottom:54.933333pt;}
.y1c_c00328{bottom:80.800000pt;}
.y1b_c00328{bottom:102.533333pt;}
.y1a_c00328{bottom:124.533333pt;}
.y19_c00328{bottom:146.400000pt;}
.y18_c00328{bottom:168.933333pt;}
.y17_c00328{bottom:188.666667pt;}
.y16_c00328{bottom:212.800000pt;}
.y15_c00328{bottom:234.933333pt;}
.y14_c00328{bottom:256.800000pt;}
.y13_c00328{bottom:278.400000pt;}
.y12_c00328{bottom:297.600000pt;}
.y11_c00328{bottom:319.600000pt;}
.y10_c00328{bottom:341.333333pt;}
.yf_c00328{bottom:363.333333pt;}
.ye_c00328{bottom:385.466667pt;}
.yd_c00328{bottom:407.066667pt;}
.yc_c00328{bottom:429.333333pt;}
.yb_c00328{bottom:451.200000pt;}
.ya_c00328{bottom:473.200000pt;}
.y9_c00328{bottom:495.066667pt;}
.y8_c00328{bottom:516.400000pt;}
.y7_c00328{bottom:539.066667pt;}
.y6_c00328{bottom:560.133333pt;}
.y5_c00328{bottom:582.400000pt;}
.y4_c00328{bottom:604.800000pt;}
.y3_c00328{bottom:626.000000pt;}
.y2_c00328{bottom:647.466667pt;}
.y1_c00328{bottom:670.000000pt;}
.h5_c00328{height:11.733399pt;}
.h6_c00328{height:38.937500pt;}
.h2_c00328{height:73.244792pt;}
.h3_c00328{height:81.031250pt;}
.h4_c00328{height:86.000000pt;}
.h1_c00328{height:700.666667pt;}
.h0_c00328{height:700.800000pt;}
.w1_c00328{width:93.222667pt;}
.w0_c00328{width:483.333333pt;}
.x0_c00328{left:0.000000pt;}
.x2_c00328{left:21.866667pt;}
.x3_c00328{left:23.466667pt;}
.x4_c00328{left:25.200000pt;}
.x5_c00328{left:26.133333pt;}
.x6_c00328{left:27.066667pt;}
.x8_c00328{left:28.000000pt;}
.x7_c00328{left:29.200000pt;}
.x9_c00328{left:30.266667pt;}
.x1_c00328{left:130.133333pt;}
.xb_c00328{left:198.834880pt;}
.xa_c00328{left:302.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_40de0fed8e4ebd1fff382d13.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00329;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00329;src:url('chunks/assets/font_1840a8bd2735f0a4716ddb5d.woff2')format("woff");}.ff3_c00329{font-family:ff3_c00329;line-height:1.568848;font-style:normal;font-weight:normal;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_e2358d1c03dffddfc447f9a5.woff2')format("woff");}.ff4_c00329{font-family:ff4_c00329;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00329;src:url('chunks/assets/font_9b1c3c53ee281006c1b66b24.woff2')format("woff");}.ff5_c00329{font-family:ff5_c00329;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00329;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00329{font-family:ff6_c00329;line-height:1.219238;font-style: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;}
.ls2_c00329{letter-spacing:-6.000000px;}
.ls1_c00329{letter-spacing:0.000000px;}
.ls0_c00329{letter-spacing:3.000000px;}
.sc__c00329{text-shadow:none;}
.sc0_c00329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00329{-webkit-text-stroke:0px transparent;}
.sc0_c00329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00329{word-spacing:-33.192000px;}
.ws0_c00329{word-spacing:-24.051000px;}
.ws2_c00329{word-spacing:-20.352000px;}
.ws3_c00329{word-spacing:0.000000px;}
._13_c00329{margin-left:-17.028000px;}
._11_c00329{margin-left:-13.500000px;}
._3_c00329{margin-left:-11.340000px;}
._c_c00329{margin-left:-9.264000px;}
._12_c00329{margin-left:-8.160000px;}
._9_c00329{margin-left:-6.444000px;}
._5_c00329{margin-left:-5.328000px;}
._a_c00329{margin-left:-4.032000px;}
._6_c00329{margin-left:-3.024000px;}
._7_c00329{margin-left:-1.368000px;}
._4_c00329{width:1.296000px;}
._1_c00329{width:3.024000px;}
._2_c00329{width:4.788000px;}
._b_c00329{width:5.916000px;}
._0_c00329{width:7.476000px;}
._8_c00329{width:8.568000px;}
._10_c00329{width:9.936000px;}
._e_c00329{width:11.520000px;}
._d_c00329{width:13.572000px;}
._f_c00329{width:14.712000px;}
.fc2_c00329{color:transparent;}
.fc1_c00329{color:rgb(128,128,128);}
.fc0_c00329{color:rgb(0,0,0);}
.fs3_c00329{font-size:48.000000px;}
.fs2_c00329{font-size:63.000000px;}
.fs1_c00329{font-size:72.000000px;}
.fs0_c00329{font-size:84.000000px;}
.y0_c00329{bottom:0.000000px;}
.y1f_c00329{bottom:3.105000px;}
.y1e_c00329{bottom:7.228369px;}
.y1d_c00329{bottom:55.620000px;}
.y1c_c00329{bottom:78.270000px;}
.y1b_c00329{bottom:102.270000px;}
.y1a_c00329{bottom:127.920000px;}
.y19_c00329{bottom:152.820000px;}
.y18_c00329{bottom:178.770000px;}
.y17_c00329{bottom:203.520000px;}
.y16_c00329{bottom:228.120000px;}
.y15_c00329{bottom:253.020000px;}
.y14_c00329{bottom:277.320000px;}
.y13_c00329{bottom:302.370000px;}
.y12_c00329{bottom:326.970000px;}
.y11_c00329{bottom:351.720000px;}
.y10_c00329{bottom:376.920000px;}
.yf_c00329{bottom:400.320000px;}
.ye_c00329{bottom:424.920000px;}
.yd_c00329{bottom:449.220000px;}
.yc_c00329{bottom:473.820000px;}
.yb_c00329{bottom:498.120000px;}
.ya_c00329{bottom:523.020000px;}
.y9_c00329{bottom:547.170000px;}
.y8_c00329{bottom:571.770000px;}
.y7_c00329{bottom:596.370000px;}
.y6_c00329{bottom:620.970000px;}
.y5_c00329{bottom:645.870000px;}
.y4_c00329{bottom:670.320000px;}
.y3_c00329{bottom:694.920000px;}
.y2_c00329{bottom:719.820000px;}
.y1_c00329{bottom:744.870000px;}
.h3_c00329{height:13.200073px;}
.h4_c00329{height:43.804688px;}
.h1_c00329{height:82.441406px;}
.h2_c00329{height:91.160156px;}
.h0_c00329{height:780.000000px;}
.w2_c00329{width:104.875500px;}
.w1_c00329{width:511.500000px;}
.w0_c00329{width:511.650000px;}
.x0_c00329{left:0.000000px;}
.xa_c00329{left:100.950000px;}
.x9_c00329{left:102.150000px;}
.x7_c00329{left:103.500000px;}
.x8_c00329{left:105.000000px;}
.x6_c00329{left:106.650000px;}
.x5_c00329{left:107.700000px;}
.x4_c00329{left:109.950000px;}
.x3_c00329{left:111.000000px;}
.x2_c00329{left:112.650000px;}
.xc_c00329{left:207.639267px;}
.x1_c00329{left:234.600000px;}
.xb_c00329{left:456.000000px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls2_c00329{letter-spacing:-5.333333pt;}
.ls1_c00329{letter-spacing:0.000000pt;}
.ls0_c00329{letter-spacing:2.666667pt;}
.ws1_c00329{word-spacing:-29.504000pt;}
.ws0_c00329{word-spacing:-21.378667pt;}
.ws2_c00329{word-spacing:-18.090667pt;}
.ws3_c00329{word-spacing:0.000000pt;}
._13_c00329{margin-left:-15.136000pt;}
._11_c00329{margin-left:-12.000000pt;}
._3_c00329{margin-left:-10.080000pt;}
._c_c00329{margin-left:-8.234667pt;}
._12_c00329{margin-left:-7.253333pt;}
._9_c00329{margin-left:-5.728000pt;}
._5_c00329{margin-left:-4.736000pt;}
._a_c00329{margin-left:-3.584000pt;}
._6_c00329{margin-left:-2.688000pt;}
._7_c00329{margin-left:-1.216000pt;}
._4_c00329{width:1.152000pt;}
._1_c00329{width:2.688000pt;}
._2_c00329{width:4.256000pt;}
._b_c00329{width:5.258667pt;}
._0_c00329{width:6.645333pt;}
._8_c00329{width:7.616000pt;}
._10_c00329{width:8.832000pt;}
._e_c00329{width:10.240000pt;}
._d_c00329{width:12.064000pt;}
._f_c00329{width:13.077333pt;}
.fs3_c00329{font-size:42.666667pt;}
.fs2_c00329{font-size:56.000000pt;}
.fs1_c00329{font-size:64.000000pt;}
.fs0_c00329{font-size:74.666667pt;}
.y0_c00329{bottom:0.000000pt;}
.y1f_c00329{bottom:2.760000pt;}
.y1e_c00329{bottom:6.425217pt;}
.y1d_c00329{bottom:49.440000pt;}
.y1c_c00329{bottom:69.573333pt;}
.y1b_c00329{bottom:90.906667pt;}
.y1a_c00329{bottom:113.706667pt;}
.y19_c00329{bottom:135.840000pt;}
.y18_c00329{bottom:158.906667pt;}
.y17_c00329{bottom:180.906667pt;}
.y16_c00329{bottom:202.773333pt;}
.y15_c00329{bottom:224.906667pt;}
.y14_c00329{bottom:246.506667pt;}
.y13_c00329{bottom:268.773333pt;}
.y12_c00329{bottom:290.640000pt;}
.y11_c00329{bottom:312.640000pt;}
.y10_c00329{bottom:335.040000pt;}
.yf_c00329{bottom:355.840000pt;}
.ye_c00329{bottom:377.706667pt;}
.yd_c00329{bottom:399.306667pt;}
.yc_c00329{bottom:421.173333pt;}
.yb_c00329{bottom:442.773333pt;}
.ya_c00329{bottom:464.906667pt;}
.y9_c00329{bottom:486.373333pt;}
.y8_c00329{bottom:508.240000pt;}
.y7_c00329{bottom:530.106667pt;}
.y6_c00329{bottom:551.973333pt;}
.y5_c00329{bottom:574.106667pt;}
.y4_c00329{bottom:595.840000pt;}
.y3_c00329{bottom:617.706667pt;}
.y2_c00329{bottom:639.840000pt;}
.y1_c00329{bottom:662.106667pt;}
.h3_c00329{height:11.733399pt;}
.h4_c00329{height:38.937500pt;}
.h1_c00329{height:73.281250pt;}
.h2_c00329{height:81.031250pt;}
.h0_c00329{height:693.333333pt;}
.w2_c00329{width:93.222667pt;}
.w1_c00329{width:454.666667pt;}
.w0_c00329{width:454.800000pt;}
.x0_c00329{left:0.000000pt;}
.xa_c00329{left:89.733333pt;}
.x9_c00329{left:90.800000pt;}
.x7_c00329{left:92.000000pt;}
.x8_c00329{left:93.333333pt;}
.x6_c00329{left:94.800000pt;}
.x5_c00329{left:95.733333pt;}
.x4_c00329{left:97.733333pt;}
.x3_c00329{left:98.666667pt;}
.x2_c00329{left:100.133333pt;}
.xc_c00329{left:184.568237pt;}
.x1_c00329{left:208.533333pt;}
.xb_c00329{left:405.333333pt;}
}





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

.ir_c00330:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00330{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00330;src:url('chunks/assets/font_68cd0af31f5bc040981013bd.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.480469;font-style:normal;font-weight:normal;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_9e87c318a778ed09bcc20ab4.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:1.568848;font-style:normal;font-weight:normal;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_b2895ed3b2471a116648c557.woff2')format("woff");}.ff3_c00330{font-family:ff3_c00330;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00330;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00330{font-family:ff4_c00330;line-height:1.219238;font-style: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;}
.ls3_c00330{letter-spacing:-6.000000px;}
.ls0_c00330{letter-spacing:-3.000000px;}
.ls1_c00330{letter-spacing:0.000000px;}
.ls2_c00330{letter-spacing:3.000000px;}
.sc__c00330{text-shadow:none;}
.sc0_c00330{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00330{-webkit-text-stroke:0px transparent;}
.sc0_c00330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00330{word-spacing:-24.051000px;}
.ws1_c00330{word-spacing:0.000000px;}
._14_c00330{margin-left:-53.844000px;}
._16_c00330{margin-left:-29.076000px;}
._13_c00330{margin-left:-23.664000px;}
._8_c00330{margin-left:-17.640000px;}
._15_c00330{margin-left:-16.128000px;}
._f_c00330{margin-left:-14.964000px;}
._d_c00330{margin-left:-12.756000px;}
._10_c00330{margin-left:-11.280000px;}
._12_c00330{margin-left:-9.996000px;}
._e_c00330{margin-left:-8.640000px;}
._2_c00330{margin-left:-7.560000px;}
._7_c00330{margin-left:-6.216000px;}
._4_c00330{margin-left:-4.740000px;}
._c_c00330{margin-left:-3.564000px;}
._3_c00330{margin-left:-2.436000px;}
._9_c00330{margin-left:-1.224000px;}
._a_c00330{width:1.656000px;}
._b_c00330{width:2.808000px;}
._17_c00330{width:3.864000px;}
._1_c00330{width:4.872000px;}
._1d_c00330{width:6.114000px;}
._0_c00330{width:7.308000px;}
._1c_c00330{width:8.592000px;}
._6_c00330{width:9.648000px;}
._1e_c00330{width:10.788000px;}
._1a_c00330{width:12.144000px;}
._1b_c00330{width:13.320000px;}
._11_c00330{width:14.748000px;}
._19_c00330{width:16.704000px;}
._18_c00330{width:17.784000px;}
._21_c00330{width:19.320000px;}
._1f_c00330{width:36.360000px;}
._20_c00330{width:132.624000px;}
._22_c00330{width:282.528000px;}
._5_c00330{width:708.624000px;}
.fc2_c00330{color:transparent;}
.fc1_c00330{color:rgb(128,128,128);}
.fc0_c00330{color:rgb(0,0,0);}
.fs4_c00330{font-size:48.000000px;}
.fs2_c00330{font-size:63.000000px;}
.fs3_c00330{font-size:66.000000px;}
.fs1_c00330{font-size:72.000000px;}
.fs0_c00330{font-size:84.000000px;}
.y0_c00330{bottom:0.000000px;}
.y1f_c00330{bottom:3.105000px;}
.y1e_c00330{bottom:7.228369px;}
.y1d_c00330{bottom:31.770000px;}
.y1c_c00330{bottom:59.370000px;}
.y1b_c00330{bottom:85.320000px;}
.y1a_c00330{bottom:109.920000px;}
.y19_c00330{bottom:134.670000px;}
.y18_c00330{bottom:161.670000px;}
.y17_c00330{bottom:186.270000px;}
.y16_c00330{bottom:211.620000px;}
.y15_c00330{bottom:236.520000px;}
.y14_c00330{bottom:261.270000px;}
.y13_c00330{bottom:285.120000px;}
.y12_c00330{bottom:308.370000px;}
.y11_c00330{bottom:331.320000px;}
.y10_c00330{bottom:355.770000px;}
.yf_c00330{bottom:380.670000px;}
.ye_c00330{bottom:404.970000px;}
.yd_c00330{bottom:430.020000px;}
.yc_c00330{bottom:454.920000px;}
.yb_c00330{bottom:479.220000px;}
.ya_c00330{bottom:504.270000px;}
.y9_c00330{bottom:528.870000px;}
.y8_c00330{bottom:553.470000px;}
.y7_c00330{bottom:577.920000px;}
.y6_c00330{bottom:602.670000px;}
.y5_c00330{bottom:627.420000px;}
.y4_c00330{bottom:652.020000px;}
.y3_c00330{bottom:676.620000px;}
.y2_c00330{bottom:701.370000px;}
.y1_c00330{bottom:726.270000px;}
.h4_c00330{height:13.200073px;}
.h5_c00330{height:43.804688px;}
.h3_c00330{height:91.160156px;}
.h2_c00330{height:98.314453px;}
.h1_c00330{height:763.500000px;}
.h0_c00330{height:763.800000px;}
.w1_c00330{width:104.875500px;}
.w0_c00330{width:540.000000px;}
.x0_c00330{left:0.000000px;}
.x9_c00330{left:29.100000px;}
.x8_c00330{left:31.500000px;}
.x7_c00330{left:32.700000px;}
.x5_c00330{left:33.750000px;}
.x3_c00330{left:35.400000px;}
.x2_c00330{left:36.750000px;}
.x4_c00330{left:37.800000px;}
.x6_c00330{left:101.550000px;}
.x1_c00330{left:146.400000px;}
.xb_c00330{left:221.814240px;}
.xa_c00330{left:271.350000px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls3_c00330{letter-spacing:-5.333333pt;}
.ls0_c00330{letter-spacing:-2.666667pt;}
.ls1_c00330{letter-spacing:0.000000pt;}
.ls2_c00330{letter-spacing:2.666667pt;}
.ws0_c00330{word-spacing:-21.378667pt;}
.ws1_c00330{word-spacing:0.000000pt;}
._14_c00330{margin-left:-47.861333pt;}
._16_c00330{margin-left:-25.845333pt;}
._13_c00330{margin-left:-21.034667pt;}
._8_c00330{margin-left:-15.680000pt;}
._15_c00330{margin-left:-14.336000pt;}
._f_c00330{margin-left:-13.301333pt;}
._d_c00330{margin-left:-11.338667pt;}
._10_c00330{margin-left:-10.026667pt;}
._12_c00330{margin-left:-8.885333pt;}
._e_c00330{margin-left:-7.680000pt;}
._2_c00330{margin-left:-6.720000pt;}
._7_c00330{margin-left:-5.525333pt;}
._4_c00330{margin-left:-4.213333pt;}
._c_c00330{margin-left:-3.168000pt;}
._3_c00330{margin-left:-2.165333pt;}
._9_c00330{margin-left:-1.088000pt;}
._a_c00330{width:1.472000pt;}
._b_c00330{width:2.496000pt;}
._17_c00330{width:3.434667pt;}
._1_c00330{width:4.330667pt;}
._1d_c00330{width:5.434667pt;}
._0_c00330{width:6.496000pt;}
._1c_c00330{width:7.637333pt;}
._6_c00330{width:8.576000pt;}
._1e_c00330{width:9.589333pt;}
._1a_c00330{width:10.794667pt;}
._1b_c00330{width:11.840000pt;}
._11_c00330{width:13.109333pt;}
._19_c00330{width:14.848000pt;}
._18_c00330{width:15.808000pt;}
._21_c00330{width:17.173333pt;}
._1f_c00330{width:32.320000pt;}
._20_c00330{width:117.888000pt;}
._22_c00330{width:251.136000pt;}
._5_c00330{width:629.888000pt;}
.fs4_c00330{font-size:42.666667pt;}
.fs2_c00330{font-size:56.000000pt;}
.fs3_c00330{font-size:58.666667pt;}
.fs1_c00330{font-size:64.000000pt;}
.fs0_c00330{font-size:74.666667pt;}
.y0_c00330{bottom:0.000000pt;}
.y1f_c00330{bottom:2.760000pt;}
.y1e_c00330{bottom:6.425217pt;}
.y1d_c00330{bottom:28.240000pt;}
.y1c_c00330{bottom:52.773333pt;}
.y1b_c00330{bottom:75.840000pt;}
.y1a_c00330{bottom:97.706667pt;}
.y19_c00330{bottom:119.706667pt;}
.y18_c00330{bottom:143.706667pt;}
.y17_c00330{bottom:165.573333pt;}
.y16_c00330{bottom:188.106667pt;}
.y15_c00330{bottom:210.240000pt;}
.y14_c00330{bottom:232.240000pt;}
.y13_c00330{bottom:253.440000pt;}
.y12_c00330{bottom:274.106667pt;}
.y11_c00330{bottom:294.506667pt;}
.y10_c00330{bottom:316.240000pt;}
.yf_c00330{bottom:338.373333pt;}
.ye_c00330{bottom:359.973333pt;}
.yd_c00330{bottom:382.240000pt;}
.yc_c00330{bottom:404.373333pt;}
.yb_c00330{bottom:425.973333pt;}
.ya_c00330{bottom:448.240000pt;}
.y9_c00330{bottom:470.106667pt;}
.y8_c00330{bottom:491.973333pt;}
.y7_c00330{bottom:513.706667pt;}
.y6_c00330{bottom:535.706667pt;}
.y5_c00330{bottom:557.706667pt;}
.y4_c00330{bottom:579.573333pt;}
.y3_c00330{bottom:601.440000pt;}
.y2_c00330{bottom:623.440000pt;}
.y1_c00330{bottom:645.573333pt;}
.h4_c00330{height:11.733399pt;}
.h5_c00330{height:38.937500pt;}
.h3_c00330{height:81.031250pt;}
.h2_c00330{height:87.390625pt;}
.h1_c00330{height:678.666667pt;}
.h0_c00330{height:678.933333pt;}
.w1_c00330{width:93.222667pt;}
.w0_c00330{width:480.000000pt;}
.x0_c00330{left:0.000000pt;}
.x9_c00330{left:25.866667pt;}
.x8_c00330{left:28.000000pt;}
.x7_c00330{left:29.066667pt;}
.x5_c00330{left:30.000000pt;}
.x3_c00330{left:31.466667pt;}
.x2_c00330{left:32.666667pt;}
.x4_c00330{left:33.600000pt;}
.x6_c00330{left:90.266667pt;}
.x1_c00330{left:130.133333pt;}
.xb_c00330{left:197.168213pt;}
.xa_c00330{left:241.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4e92fce4922215d90811c10a.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00331;src:url('chunks/assets/font_0ae4a70f7458d5a96229b018.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00331;src:url('chunks/assets/font_bb89ab79a4f59104f70e1538.woff2')format("woff");}.ff3_c00331{font-family:ff3_c00331;line-height:1.568848;font-style:normal;font-weight:normal;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_d3808e43f784b41ae41a50d7.woff2')format("woff");}.ff4_c00331{font-family:ff4_c00331;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00331;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00331{font-family:ff5_c00331;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00331{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00331{vertical-align:0.000000px;}
.ls1_c00331{letter-spacing:0.000000px;}
.ls2_c00331{letter-spacing:3.000000px;}
.ls0_c00331{letter-spacing:3.321000px;}
.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;}
}
.ws1_c00331{word-spacing:-23.571000px;}
.ws0_c00331{word-spacing:-15.480000px;}
.ws2_c00331{word-spacing:0.000000px;}
._18_c00331{margin-left:-26.928000px;}
._1e_c00331{margin-left:-24.432000px;}
._3_c00331{margin-left:-12.600000px;}
._1b_c00331{margin-left:-10.674000px;}
._1c_c00331{margin-left:-9.144000px;}
._1a_c00331{margin-left:-8.100000px;}
._12_c00331{margin-left:-6.624000px;}
._19_c00331{margin-left:-5.394000px;}
._11_c00331{margin-left:-4.392000px;}
._5_c00331{margin-left:-3.384000px;}
._7_c00331{margin-left:-1.728000px;}
._13_c00331{width:1.056000px;}
._4_c00331{width:2.100000px;}
._1_c00331{width:3.108000px;}
._6_c00331{width:4.248000px;}
._2_c00331{width:5.376000px;}
._c_c00331{width:6.384000px;}
._0_c00331{width:7.728000px;}
._9_c00331{width:9.348000px;}
._8_c00331{width:11.520000px;}
._10_c00331{width:13.188000px;}
._f_c00331{width:14.340000px;}
._e_c00331{width:16.152000px;}
._a_c00331{width:17.568000px;}
._14_c00331{width:19.104000px;}
._16_c00331{width:21.528000px;}
._15_c00331{width:25.872000px;}
._b_c00331{width:27.108000px;}
._17_c00331{width:29.064000px;}
._1d_c00331{width:34.272000px;}
._d_c00331{width:36.384000px;}
.fc2_c00331{color:transparent;}
.fc1_c00331{color:rgb(128,128,128);}
.fc0_c00331{color:rgb(0,0,0);}
.fs3_c00331{font-size:48.000000px;}
.fs1_c00331{font-size:72.000000px;}
.fs2_c00331{font-size:81.000000px;}
.fs0_c00331{font-size:84.000000px;}
.y0_c00331{bottom:0.000000px;}
.y1f_c00331{bottom:3.105000px;}
.y1e_c00331{bottom:7.228371px;}
.y1d_c00331{bottom:49.365000px;}
.y1c_c00331{bottom:76.665000px;}
.y1b_c00331{bottom:102.615000px;}
.y1a_c00331{bottom:127.965000px;}
.y19_c00331{bottom:153.015000px;}
.y18_c00331{bottom:178.665000px;}
.y17_c00331{bottom:202.965000px;}
.y16_c00331{bottom:228.465000px;}
.y15_c00331{bottom:253.215000px;}
.y14_c00331{bottom:277.515000px;}
.y13_c00331{bottom:303.165000px;}
.y12_c00331{bottom:327.465000px;}
.y11_c00331{bottom:352.065000px;}
.y10_c00331{bottom:376.965000px;}
.yf_c00331{bottom:401.415000px;}
.ye_c00331{bottom:426.015000px;}
.yd_c00331{bottom:450.315000px;}
.yc_c00331{bottom:474.915000px;}
.yb_c00331{bottom:499.515000px;}
.ya_c00331{bottom:523.815000px;}
.y9_c00331{bottom:548.565000px;}
.y8_c00331{bottom:572.865000px;}
.y7_c00331{bottom:598.065000px;}
.y6_c00331{bottom:622.065000px;}
.y5_c00331{bottom:646.665000px;}
.y4_c00331{bottom:672.015000px;}
.y3_c00331{bottom:696.015000px;}
.y2_c00331{bottom:721.965000px;}
.y1_c00331{bottom:747.015000px;}
.h5_c00331{height:13.200074px;}
.h6_c00331{height:43.804688px;}
.h4_c00331{height:79.497070px;}
.h2_c00331{height:82.441406px;}
.h3_c00331{height:91.160156px;}
.h1_c00331{height:783.750000px;}
.h0_c00331{height:783.825000px;}
.w2_c00331{width:104.875500px;}
.w0_c00331{width:527.850000px;}
.w1_c00331{width:528.000000px;}
.x0_c00331{left:0.000000px;}
.x4_c00331{left:117.150000px;}
.x3_c00331{left:118.800000px;}
.x5_c00331{left:119.850000px;}
.x2_c00331{left:120.900000px;}
.x7_c00331{left:215.739258px;}
.x1_c00331{left:241.200000px;}
.x6_c00331{left:474.600000px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls1_c00331{letter-spacing:0.000000pt;}
.ls2_c00331{letter-spacing:2.666667pt;}
.ls0_c00331{letter-spacing:2.952000pt;}
.ws1_c00331{word-spacing:-20.952000pt;}
.ws0_c00331{word-spacing:-13.760000pt;}
.ws2_c00331{word-spacing:0.000000pt;}
._18_c00331{margin-left:-23.936000pt;}
._1e_c00331{margin-left:-21.717333pt;}
._3_c00331{margin-left:-11.200000pt;}
._1b_c00331{margin-left:-9.488000pt;}
._1c_c00331{margin-left:-8.128000pt;}
._1a_c00331{margin-left:-7.200000pt;}
._12_c00331{margin-left:-5.888000pt;}
._19_c00331{margin-left:-4.794667pt;}
._11_c00331{margin-left:-3.904000pt;}
._5_c00331{margin-left:-3.008000pt;}
._7_c00331{margin-left:-1.536000pt;}
._13_c00331{width:0.938667pt;}
._4_c00331{width:1.866667pt;}
._1_c00331{width:2.762667pt;}
._6_c00331{width:3.776000pt;}
._2_c00331{width:4.778667pt;}
._c_c00331{width:5.674667pt;}
._0_c00331{width:6.869333pt;}
._9_c00331{width:8.309333pt;}
._8_c00331{width:10.240000pt;}
._10_c00331{width:11.722667pt;}
._f_c00331{width:12.746667pt;}
._e_c00331{width:14.357333pt;}
._a_c00331{width:15.616000pt;}
._14_c00331{width:16.981333pt;}
._16_c00331{width:19.136000pt;}
._15_c00331{width:22.997333pt;}
._b_c00331{width:24.096000pt;}
._17_c00331{width:25.834667pt;}
._1d_c00331{width:30.464000pt;}
._d_c00331{width:32.341333pt;}
.fs3_c00331{font-size:42.666667pt;}
.fs1_c00331{font-size:64.000000pt;}
.fs2_c00331{font-size:72.000000pt;}
.fs0_c00331{font-size:74.666667pt;}
.y0_c00331{bottom:0.000000pt;}
.y1f_c00331{bottom:2.760000pt;}
.y1e_c00331{bottom:6.425219pt;}
.y1d_c00331{bottom:43.880000pt;}
.y1c_c00331{bottom:68.146667pt;}
.y1b_c00331{bottom:91.213333pt;}
.y1a_c00331{bottom:113.746667pt;}
.y19_c00331{bottom:136.013333pt;}
.y18_c00331{bottom:158.813333pt;}
.y17_c00331{bottom:180.413333pt;}
.y16_c00331{bottom:203.080000pt;}
.y15_c00331{bottom:225.080000pt;}
.y14_c00331{bottom:246.680000pt;}
.y13_c00331{bottom:269.480000pt;}
.y12_c00331{bottom:291.080000pt;}
.y11_c00331{bottom:312.946667pt;}
.y10_c00331{bottom:335.080000pt;}
.yf_c00331{bottom:356.813333pt;}
.ye_c00331{bottom:378.680000pt;}
.yd_c00331{bottom:400.280000pt;}
.yc_c00331{bottom:422.146667pt;}
.yb_c00331{bottom:444.013333pt;}
.ya_c00331{bottom:465.613333pt;}
.y9_c00331{bottom:487.613333pt;}
.y8_c00331{bottom:509.213333pt;}
.y7_c00331{bottom:531.613333pt;}
.y6_c00331{bottom:552.946667pt;}
.y5_c00331{bottom:574.813333pt;}
.y4_c00331{bottom:597.346667pt;}
.y3_c00331{bottom:618.680000pt;}
.y2_c00331{bottom:641.746667pt;}
.y1_c00331{bottom:664.013333pt;}
.h5_c00331{height:11.733399pt;}
.h6_c00331{height:38.937500pt;}
.h4_c00331{height:70.664062pt;}
.h2_c00331{height:73.281250pt;}
.h3_c00331{height:81.031250pt;}
.h1_c00331{height:696.666667pt;}
.h0_c00331{height:696.733333pt;}
.w2_c00331{width:93.222667pt;}
.w0_c00331{width:469.200000pt;}
.w1_c00331{width:469.333333pt;}
.x0_c00331{left:0.000000pt;}
.x4_c00331{left:104.133333pt;}
.x3_c00331{left:105.600000pt;}
.x5_c00331{left:106.533333pt;}
.x2_c00331{left:107.466667pt;}
.x7_c00331{left:191.768229pt;}
.x1_c00331{left:214.400000pt;}
.x6_c00331{left:421.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_13f077259ccf8a495a3fec55.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00332;src:url('chunks/assets/font_bd2579bc384476ec278b87ff.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00332;src:url('chunks/assets/font_e159cdd5c26306dc66a86b4d.woff2')format("woff");}.ff3_c00332{font-family:ff3_c00332;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00332;src:url('chunks/assets/font_b2de0976e164e71f38fdee54.woff2')format("woff");}.ff4_c00332{font-family:ff4_c00332;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00332;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00332{font-family:ff5_c00332;line-height:1.219238;font-style: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;}
.ls0_c00332{letter-spacing:0.000000px;}
.ls1_c00332{letter-spacing:3.000000px;}
.sc__c00332{text-shadow:none;}
.sc0_c00332{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00332{-webkit-text-stroke:0px transparent;}
.sc0_c00332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00332{word-spacing:-33.192000px;}
.ws1_c00332{word-spacing:0.000000px;}
._1e_c00332{margin-left:-19.728000px;}
._15_c00332{margin-left:-17.352000px;}
._16_c00332{margin-left:-14.190000px;}
._8_c00332{margin-left:-12.816000px;}
._18_c00332{margin-left:-11.676000px;}
._e_c00332{margin-left:-9.822000px;}
._4_c00332{margin-left:-7.896000px;}
._10_c00332{margin-left:-6.708000px;}
._3_c00332{margin-left:-5.670000px;}
._6_c00332{margin-left:-4.176000px;}
._9_c00332{margin-left:-3.168000px;}
._5_c00332{margin-left:-2.088000px;}
._c_c00332{margin-left:-1.008000px;}
._1_c00332{width:1.092000px;}
._0_c00332{width:2.184000px;}
._7_c00332{width:3.582000px;}
._b_c00332{width:5.106000px;}
._13_c00332{width:6.216000px;}
._a_c00332{width:7.320000px;}
._11_c00332{width:8.370000px;}
._d_c00332{width:9.624000px;}
._f_c00332{width:11.640000px;}
._1c_c00332{width:12.870000px;}
._17_c00332{width:14.172000px;}
._1b_c00332{width:15.408000px;}
._14_c00332{width:17.148000px;}
._19_c00332{width:31.824000px;}
._1a_c00332{width:35.688000px;}
._1f_c00332{width:320.430000px;}
._2_c00332{width:357.198000px;}
._1d_c00332{width:582.792000px;}
._12_c00332{width:790.344000px;}
.fc2_c00332{color:transparent;}
.fc1_c00332{color:rgb(128,128,128);}
.fc0_c00332{color:rgb(0,0,0);}
.fs3_c00332{font-size:48.000000px;}
.fs2_c00332{font-size:72.000000px;}
.fs1_c00332{font-size:81.000000px;}
.fs0_c00332{font-size:84.000000px;}
.y0_c00332{bottom:0.000000px;}
.y1f_c00332{bottom:3.105000px;}
.y1e_c00332{bottom:7.228355px;}
.y1d_c00332{bottom:46.185000px;}
.y1c_c00332{bottom:70.785000px;}
.y1b_c00332{bottom:96.135000px;}
.y1a_c00332{bottom:122.085000px;}
.y19_c00332{bottom:147.135000px;}
.y18_c00332{bottom:172.485000px;}
.y17_c00332{bottom:197.385000px;}
.y16_c00332{bottom:222.435000px;}
.y15_c00332{bottom:247.335000px;}
.y14_c00332{bottom:272.385000px;}
.y13_c00332{bottom:297.285000px;}
.y12_c00332{bottom:319.635000px;}
.y11_c00332{bottom:342.435000px;}
.y10_c00332{bottom:367.185000px;}
.yf_c00332{bottom:392.385000px;}
.ye_c00332{bottom:417.135000px;}
.yd_c00332{bottom:441.135000px;}
.yc_c00332{bottom:466.335000px;}
.yb_c00332{bottom:491.085000px;}
.ya_c00332{bottom:515.385000px;}
.y9_c00332{bottom:539.985000px;}
.y8_c00332{bottom:567.885000px;}
.y7_c00332{bottom:589.635000px;}
.y6_c00332{bottom:613.785000px;}
.y5_c00332{bottom:639.585000px;}
.y4_c00332{bottom:663.435000px;}
.y3_c00332{bottom:687.435000px;}
.y2_c00332{bottom:712.335000px;}
.y1_c00332{bottom:738.135000px;}
.h4_c00332{height:13.200074px;}
.h5_c00332{height:43.804688px;}
.h2_c00332{height:82.400391px;}
.h3_c00332{height:91.160156px;}
.h0_c00332{height:790.275000px;}
.h1_c00332{height:790.500000px;}
.w2_c00332{width:104.875500px;}
.w1_c00332{width:535.500000px;}
.w0_c00332{width:535.650000px;}
.x0_c00332{left:0.000000px;}
.x2_c00332{left:36.750000px;}
.x3_c00332{left:38.100000px;}
.x6_c00332{left:40.050000px;}
.x4_c00332{left:41.100000px;}
.x5_c00332{left:42.150000px;}
.x7_c00332{left:45.900000px;}
.x8_c00332{left:96.900000px;}
.x1_c00332{left:178.950000px;}
.x9_c00332{left:219.639267px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls0_c00332{letter-spacing:0.000000pt;}
.ls1_c00332{letter-spacing:2.666667pt;}
.ws0_c00332{word-spacing:-29.504000pt;}
.ws1_c00332{word-spacing:0.000000pt;}
._1e_c00332{margin-left:-17.536000pt;}
._15_c00332{margin-left:-15.424000pt;}
._16_c00332{margin-left:-12.613333pt;}
._8_c00332{margin-left:-11.392000pt;}
._18_c00332{margin-left:-10.378667pt;}
._e_c00332{margin-left:-8.730667pt;}
._4_c00332{margin-left:-7.018667pt;}
._10_c00332{margin-left:-5.962667pt;}
._3_c00332{margin-left:-5.040000pt;}
._6_c00332{margin-left:-3.712000pt;}
._9_c00332{margin-left:-2.816000pt;}
._5_c00332{margin-left:-1.856000pt;}
._c_c00332{margin-left:-0.896000pt;}
._1_c00332{width:0.970667pt;}
._0_c00332{width:1.941333pt;}
._7_c00332{width:3.184000pt;}
._b_c00332{width:4.538667pt;}
._13_c00332{width:5.525333pt;}
._a_c00332{width:6.506667pt;}
._11_c00332{width:7.440000pt;}
._d_c00332{width:8.554667pt;}
._f_c00332{width:10.346667pt;}
._1c_c00332{width:11.440000pt;}
._17_c00332{width:12.597333pt;}
._1b_c00332{width:13.696000pt;}
._14_c00332{width:15.242667pt;}
._19_c00332{width:28.288000pt;}
._1a_c00332{width:31.722667pt;}
._1f_c00332{width:284.826667pt;}
._2_c00332{width:317.509333pt;}
._1d_c00332{width:518.037333pt;}
._12_c00332{width:702.528000pt;}
.fs3_c00332{font-size:42.666667pt;}
.fs2_c00332{font-size:64.000000pt;}
.fs1_c00332{font-size:72.000000pt;}
.fs0_c00332{font-size:74.666667pt;}
.y0_c00332{bottom:0.000000pt;}
.y1f_c00332{bottom:2.760000pt;}
.y1e_c00332{bottom:6.425204pt;}
.y1d_c00332{bottom:41.053333pt;}
.y1c_c00332{bottom:62.920000pt;}
.y1b_c00332{bottom:85.453333pt;}
.y1a_c00332{bottom:108.520000pt;}
.y19_c00332{bottom:130.786667pt;}
.y18_c00332{bottom:153.320000pt;}
.y17_c00332{bottom:175.453333pt;}
.y16_c00332{bottom:197.720000pt;}
.y15_c00332{bottom:219.853333pt;}
.y14_c00332{bottom:242.120000pt;}
.y13_c00332{bottom:264.253333pt;}
.y12_c00332{bottom:284.120000pt;}
.y11_c00332{bottom:304.386667pt;}
.y10_c00332{bottom:326.386667pt;}
.yf_c00332{bottom:348.786667pt;}
.ye_c00332{bottom:370.786667pt;}
.yd_c00332{bottom:392.120000pt;}
.yc_c00332{bottom:414.520000pt;}
.yb_c00332{bottom:436.520000pt;}
.ya_c00332{bottom:458.120000pt;}
.y9_c00332{bottom:479.986667pt;}
.y8_c00332{bottom:504.786667pt;}
.y7_c00332{bottom:524.120000pt;}
.y6_c00332{bottom:545.586667pt;}
.y5_c00332{bottom:568.520000pt;}
.y4_c00332{bottom:589.720000pt;}
.y3_c00332{bottom:611.053333pt;}
.y2_c00332{bottom:633.186667pt;}
.y1_c00332{bottom:656.120000pt;}
.h4_c00332{height:11.733399pt;}
.h5_c00332{height:38.937500pt;}
.h2_c00332{height:73.244792pt;}
.h3_c00332{height:81.031250pt;}
.h0_c00332{height:702.466667pt;}
.h1_c00332{height:702.666667pt;}
.w2_c00332{width:93.222667pt;}
.w1_c00332{width:476.000000pt;}
.w0_c00332{width:476.133333pt;}
.x0_c00332{left:0.000000pt;}
.x2_c00332{left:32.666667pt;}
.x3_c00332{left:33.866667pt;}
.x6_c00332{left:35.600000pt;}
.x4_c00332{left:36.533333pt;}
.x5_c00332{left:37.466667pt;}
.x7_c00332{left:40.800000pt;}
.x8_c00332{left:86.133333pt;}
.x1_c00332{left:159.066667pt;}
.x9_c00332{left:195.234904pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4e92fce4922215d90811c10a.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00333;src:url('chunks/assets/font_fdc3556169e5c9f6b91dd7e3.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00333;src:url('chunks/assets/font_8743f22098a929e3eb80ec87.woff2')format("woff");}.ff3_c00333{font-family:ff3_c00333;line-height:1.568848;font-style:normal;font-weight:normal;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_c4ab5e13ff655d5207c48d89.woff2')format("woff");}.ff4_c00333{font-family:ff4_c00333;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00333;src:url('chunks/assets/font_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff5_c00333{font-family:ff5_c00333;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00333;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00333{font-family:ff6_c00333;line-height:1.219238;font-style: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;}
.v1_c00333{vertical-align:5.400000px;}
.ls1_c00333{letter-spacing:0.000000px;}
.ls2_c00333{letter-spacing:3.000000px;}
.ls3_c00333{letter-spacing:6.000000px;}
.ls0_c00333{letter-spacing:11.400000px;}
.sc__c00333{text-shadow:none;}
.sc0_c00333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00333{-webkit-text-stroke:0px transparent;}
.sc0_c00333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00333{word-spacing:-39.000000px;}
.ws0_c00333{word-spacing:-33.192000px;}
.ws2_c00333{word-spacing:0.000000px;}
._15_c00333{margin-left:-23.952000px;}
._2_c00333{margin-left:-15.372000px;}
._1a_c00333{margin-left:-13.629000px;}
._1b_c00333{margin-left:-12.600000px;}
._19_c00333{margin-left:-10.842000px;}
._8_c00333{margin-left:-8.880000px;}
._12_c00333{margin-left:-7.584000px;}
._7_c00333{margin-left:-6.240000px;}
._13_c00333{margin-left:-5.136000px;}
._5_c00333{margin-left:-3.888000px;}
._6_c00333{margin-left:-2.448000px;}
._b_c00333{margin-left:-1.152000px;}
._1_c00333{width:1.848000px;}
._14_c00333{width:2.856000px;}
._0_c00333{width:3.864000px;}
._11_c00333{width:4.932000px;}
._3_c00333{width:6.048000px;}
._4_c00333{width:7.116000px;}
._18_c00333{width:8.169000px;}
._f_c00333{width:9.240000px;}
._17_c00333{width:10.884000px;}
._e_c00333{width:12.240000px;}
._a_c00333{width:13.320000px;}
._9_c00333{width:14.832000px;}
._10_c00333{width:16.536000px;}
._d_c00333{width:18.648000px;}
._c_c00333{width:22.584000px;}
._16_c00333{width:29.928000px;}
.fc2_c00333{color:transparent;}
.fc1_c00333{color:rgb(128,128,128);}
.fc0_c00333{color:rgb(0,0,0);}
.fs6_c00333{font-size:48.000000px;}
.fs4_c00333{font-size:57.000000px;}
.fs3_c00333{font-size:60.000000px;}
.fs5_c00333{font-size:69.000000px;}
.fs1_c00333{font-size:72.000000px;}
.fs2_c00333{font-size:78.000000px;}
.fs0_c00333{font-size:84.000000px;}
.y0_c00333{bottom:0.000000px;}
.y1f_c00333{bottom:3.105000px;}
.y1e_c00333{bottom:7.228369px;}
.y1d_c00333{bottom:36.420000px;}
.y1c_c00333{bottom:59.670000px;}
.y1b_c00333{bottom:84.720000px;}
.y1a_c00333{bottom:110.370000px;}
.y19_c00333{bottom:135.720000px;}
.y18_c00333{bottom:161.670000px;}
.y17_c00333{bottom:186.570000px;}
.y16_c00333{bottom:211.170000px;}
.y15_c00333{bottom:235.920000px;}
.y14_c00333{bottom:260.820000px;}
.y13_c00333{bottom:286.920000px;}
.y12_c00333{bottom:311.220000px;}
.y11_c00333{bottom:335.370000px;}
.y10_c00333{bottom:359.820000px;}
.yf_c00333{bottom:384.720000px;}
.ye_c00333{bottom:409.320000px;}
.yd_c00333{bottom:433.620000px;}
.yc_c00333{bottom:456.270000px;}
.yb_c00333{bottom:482.220000px;}
.ya_c00333{bottom:506.970000px;}
.y9_c00333{bottom:531.270000px;}
.y8_c00333{bottom:556.170000px;}
.y7_c00333{bottom:580.770000px;}
.y6_c00333{bottom:605.370000px;}
.y5_c00333{bottom:630.420000px;}
.y4_c00333{bottom:654.720000px;}
.y3_c00333{bottom:679.620000px;}
.y2_c00333{bottom:704.370000px;}
.y1_c00333{bottom:729.720000px;}
.h5_c00333{height:13.200073px;}
.h6_c00333{height:43.804688px;}
.h2_c00333{height:82.441406px;}
.h3_c00333{height:91.160156px;}
.h4_c00333{height:96.560156px;}
.h0_c00333{height:774.600000px;}
.h1_c00333{height:774.750000px;}
.w2_c00333{width:104.875500px;}
.w0_c00333{width:490.350000px;}
.w1_c00333{width:490.500000px;}
.x0_c00333{left:0.000000px;}
.x2_c00333{left:64.500000px;}
.x3_c00333{left:66.450000px;}
.x4_c00333{left:67.500000px;}
.x5_c00333{left:68.850000px;}
.x7_c00333{left:71.100000px;}
.x8_c00333{left:72.150000px;}
.x9_c00333{left:73.200000px;}
.xa_c00333{left:74.550000px;}
.x6_c00333{left:77.550000px;}
.x1_c00333{left:185.550000px;}
.xc_c00333{left:196.989258px;}
.xb_c00333{left:394.500000px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.v1_c00333{vertical-align:4.800000pt;}
.ls1_c00333{letter-spacing:0.000000pt;}
.ls2_c00333{letter-spacing:2.666667pt;}
.ls3_c00333{letter-spacing:5.333333pt;}
.ls0_c00333{letter-spacing:10.133333pt;}
.ws1_c00333{word-spacing:-34.666667pt;}
.ws0_c00333{word-spacing:-29.504000pt;}
.ws2_c00333{word-spacing:0.000000pt;}
._15_c00333{margin-left:-21.290667pt;}
._2_c00333{margin-left:-13.664000pt;}
._1a_c00333{margin-left:-12.114667pt;}
._1b_c00333{margin-left:-11.200000pt;}
._19_c00333{margin-left:-9.637333pt;}
._8_c00333{margin-left:-7.893333pt;}
._12_c00333{margin-left:-6.741333pt;}
._7_c00333{margin-left:-5.546667pt;}
._13_c00333{margin-left:-4.565333pt;}
._5_c00333{margin-left:-3.456000pt;}
._6_c00333{margin-left:-2.176000pt;}
._b_c00333{margin-left:-1.024000pt;}
._1_c00333{width:1.642667pt;}
._14_c00333{width:2.538667pt;}
._0_c00333{width:3.434667pt;}
._11_c00333{width:4.384000pt;}
._3_c00333{width:5.376000pt;}
._4_c00333{width:6.325333pt;}
._18_c00333{width:7.261333pt;}
._f_c00333{width:8.213333pt;}
._17_c00333{width:9.674667pt;}
._e_c00333{width:10.880000pt;}
._a_c00333{width:11.840000pt;}
._9_c00333{width:13.184000pt;}
._10_c00333{width:14.698667pt;}
._d_c00333{width:16.576000pt;}
._c_c00333{width:20.074667pt;}
._16_c00333{width:26.602667pt;}
.fs6_c00333{font-size:42.666667pt;}
.fs4_c00333{font-size:50.666667pt;}
.fs3_c00333{font-size:53.333333pt;}
.fs5_c00333{font-size:61.333333pt;}
.fs1_c00333{font-size:64.000000pt;}
.fs2_c00333{font-size:69.333333pt;}
.fs0_c00333{font-size:74.666667pt;}
.y0_c00333{bottom:0.000000pt;}
.y1f_c00333{bottom:2.760000pt;}
.y1e_c00333{bottom:6.425217pt;}
.y1d_c00333{bottom:32.373333pt;}
.y1c_c00333{bottom:53.040000pt;}
.y1b_c00333{bottom:75.306667pt;}
.y1a_c00333{bottom:98.106667pt;}
.y19_c00333{bottom:120.640000pt;}
.y18_c00333{bottom:143.706667pt;}
.y17_c00333{bottom:165.840000pt;}
.y16_c00333{bottom:187.706667pt;}
.y15_c00333{bottom:209.706667pt;}
.y14_c00333{bottom:231.840000pt;}
.y13_c00333{bottom:255.040000pt;}
.y12_c00333{bottom:276.640000pt;}
.y11_c00333{bottom:298.106667pt;}
.y10_c00333{bottom:319.840000pt;}
.yf_c00333{bottom:341.973333pt;}
.ye_c00333{bottom:363.840000pt;}
.yd_c00333{bottom:385.440000pt;}
.yc_c00333{bottom:405.573333pt;}
.yb_c00333{bottom:428.640000pt;}
.ya_c00333{bottom:450.640000pt;}
.y9_c00333{bottom:472.240000pt;}
.y8_c00333{bottom:494.373333pt;}
.y7_c00333{bottom:516.240000pt;}
.y6_c00333{bottom:538.106667pt;}
.y5_c00333{bottom:560.373333pt;}
.y4_c00333{bottom:581.973333pt;}
.y3_c00333{bottom:604.106667pt;}
.y2_c00333{bottom:626.106667pt;}
.y1_c00333{bottom:648.640000pt;}
.h5_c00333{height:11.733399pt;}
.h6_c00333{height:38.937500pt;}
.h2_c00333{height:73.281250pt;}
.h3_c00333{height:81.031250pt;}
.h4_c00333{height:85.831250pt;}
.h0_c00333{height:688.533333pt;}
.h1_c00333{height:688.666667pt;}
.w2_c00333{width:93.222667pt;}
.w0_c00333{width:435.866667pt;}
.w1_c00333{width:436.000000pt;}
.x0_c00333{left:0.000000pt;}
.x2_c00333{left:57.333333pt;}
.x3_c00333{left:59.066667pt;}
.x4_c00333{left:60.000000pt;}
.x5_c00333{left:61.200000pt;}
.x7_c00333{left:63.200000pt;}
.x8_c00333{left:64.133333pt;}
.x9_c00333{left:65.066667pt;}
.xa_c00333{left:66.266667pt;}
.x6_c00333{left:68.933333pt;}
.x1_c00333{left:164.933333pt;}
.xc_c00333{left:175.101563pt;}
.xb_c00333{left:350.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_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_184e5d9fe75acf3deeda2292.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00334;src:url('chunks/assets/font_cf8de50812ba0dcece208281.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00334;src:url('chunks/assets/font_875cb8d74513d308df08c68e.woff2')format("woff");}.ff3_c00334{font-family:ff3_c00334;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00334;src:url('chunks/assets/font_98c99d01418e285afa532b30.woff2')format("woff");}.ff4_c00334{font-family:ff4_c00334;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00334;src:url('chunks/assets/font_7bc6f3e050ddf7a7105fd267.woff2')format("woff");}.ff5_c00334{font-family:ff5_c00334;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00334;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00334{font-family:ff6_c00334;line-height:1.219238;font-style: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;}
.ls2_c00334{letter-spacing:3.000000px;}
.ls0_c00334{letter-spacing:8.388000px;}
.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:-33.192000px;}
.ws1_c00334{word-spacing:0.000000px;}
._18_c00334{margin-left:-29.946000px;}
._e_c00334{margin-left:-14.307000px;}
._a_c00334{margin-left:-11.583000px;}
._15_c00334{margin-left:-10.578000px;}
._14_c00334{margin-left:-8.781000px;}
._1_c00334{margin-left:-7.476000px;}
._0_c00334{margin-left:-6.216000px;}
._2_c00334{margin-left:-4.872000px;}
._c_c00334{margin-left:-3.621000px;}
._d_c00334{margin-left:-2.481000px;}
._f_c00334{margin-left:-1.410000px;}
._3_c00334{width:1.428000px;}
._4_c00334{width:2.520000px;}
._5_c00334{width:4.452000px;}
._6_c00334{width:5.712000px;}
._7_c00334{width:7.224000px;}
._12_c00334{width:8.367000px;}
._11_c00334{width:10.272000px;}
._17_c00334{width:11.898000px;}
._10_c00334{width:13.416000px;}
._9_c00334{width:15.660000px;}
._19_c00334{width:19.176000px;}
._16_c00334{width:25.440000px;}
._1b_c00334{width:30.888000px;}
._1a_c00334{width:33.528000px;}
._b_c00334{width:39.042000px;}
._13_c00334{width:148.848000px;}
._1c_c00334{width:301.425000px;}
._8_c00334{width:354.144000px;}
.fc2_c00334{color:transparent;}
.fc1_c00334{color:rgb(128,128,128);}
.fc0_c00334{color:rgb(0,0,0);}
.fs5_c00334{font-size:48.000000px;}
.fs4_c00334{font-size:63.000000px;}
.fs3_c00334{font-size:66.000000px;}
.fs2_c00334{font-size:72.000000px;}
.fs1_c00334{font-size:81.000000px;}
.fs0_c00334{font-size:84.000000px;}
.y0_c00334{bottom:0.000000px;}
.y1f_c00334{bottom:3.105000px;}
.y1e_c00334{bottom:7.228355px;}
.y1d_c00334{bottom:63.435000px;}
.y1c_c00334{bottom:91.335000px;}
.y1b_c00334{bottom:117.135000px;}
.y1a_c00334{bottom:140.385000px;}
.y19_c00334{bottom:167.385000px;}
.y18_c00334{bottom:191.985000px;}
.y17_c00334{bottom:214.335000px;}
.y16_c00334{bottom:241.185000px;}
.y15_c00334{bottom:265.485000px;}
.y14_c00334{bottom:289.935000px;}
.y13_c00334{bottom:314.235000px;}
.y12_c00334{bottom:336.135000px;}
.y11_c00334{bottom:360.435000px;}
.y10_c00334{bottom:385.635000px;}
.yf_c00334{bottom:410.085000px;}
.ye_c00334{bottom:434.385000px;}
.yd_c00334{bottom:459.285000px;}
.yc_c00334{bottom:483.585000px;}
.yb_c00334{bottom:508.485000px;}
.ya_c00334{bottom:532.485000px;}
.y9_c00334{bottom:557.085000px;}
.y8_c00334{bottom:581.385000px;}
.y7_c00334{bottom:606.435000px;}
.y6_c00334{bottom:630.735000px;}
.y5_c00334{bottom:655.335000px;}
.y4_c00334{bottom:679.335000px;}
.y3_c00334{bottom:704.235000px;}
.y2_c00334{bottom:728.235000px;}
.y1_c00334{bottom:753.585000px;}
.h5_c00334{height:13.200074px;}
.h6_c00334{height:43.804688px;}
.h2_c00334{height:82.400391px;}
.h4_c00334{height:83.563477px;}
.h3_c00334{height:91.160156px;}
.h0_c00334{height:791.625000px;}
.h1_c00334{height:792.000000px;}
.w2_c00334{width:104.875500px;}
.w0_c00334{width:541.875000px;}
.w1_c00334{width:542.250000px;}
.x0_c00334{left:0.000000px;}
.x6_c00334{left:35.700000px;}
.x2_c00334{left:40.500000px;}
.x3_c00334{left:41.850000px;}
.x4_c00334{left:43.500000px;}
.x5_c00334{left:45.000000px;}
.x1_c00334{left:149.550000px;}
.x8_c00334{left:222.751740px;}
.x7_c00334{left:253.950000px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls1_c00334{letter-spacing:0.000000pt;}
.ls2_c00334{letter-spacing:2.666667pt;}
.ls0_c00334{letter-spacing:7.456000pt;}
.ws0_c00334{word-spacing:-29.504000pt;}
.ws1_c00334{word-spacing:0.000000pt;}
._18_c00334{margin-left:-26.618667pt;}
._e_c00334{margin-left:-12.717333pt;}
._a_c00334{margin-left:-10.296000pt;}
._15_c00334{margin-left:-9.402667pt;}
._14_c00334{margin-left:-7.805333pt;}
._1_c00334{margin-left:-6.645333pt;}
._0_c00334{margin-left:-5.525333pt;}
._2_c00334{margin-left:-4.330667pt;}
._c_c00334{margin-left:-3.218667pt;}
._d_c00334{margin-left:-2.205333pt;}
._f_c00334{margin-left:-1.253333pt;}
._3_c00334{width:1.269333pt;}
._4_c00334{width:2.240000pt;}
._5_c00334{width:3.957333pt;}
._6_c00334{width:5.077333pt;}
._7_c00334{width:6.421333pt;}
._12_c00334{width:7.437333pt;}
._11_c00334{width:9.130667pt;}
._17_c00334{width:10.576000pt;}
._10_c00334{width:11.925333pt;}
._9_c00334{width:13.920000pt;}
._19_c00334{width:17.045333pt;}
._16_c00334{width:22.613333pt;}
._1b_c00334{width:27.456000pt;}
._1a_c00334{width:29.802667pt;}
._b_c00334{width:34.704000pt;}
._13_c00334{width:132.309333pt;}
._1c_c00334{width:267.933333pt;}
._8_c00334{width:314.794667pt;}
.fs5_c00334{font-size:42.666667pt;}
.fs4_c00334{font-size:56.000000pt;}
.fs3_c00334{font-size:58.666667pt;}
.fs2_c00334{font-size:64.000000pt;}
.fs1_c00334{font-size:72.000000pt;}
.fs0_c00334{font-size:74.666667pt;}
.y0_c00334{bottom:0.000000pt;}
.y1f_c00334{bottom:2.760000pt;}
.y1e_c00334{bottom:6.425204pt;}
.y1d_c00334{bottom:56.386667pt;}
.y1c_c00334{bottom:81.186667pt;}
.y1b_c00334{bottom:104.120000pt;}
.y1a_c00334{bottom:124.786667pt;}
.y19_c00334{bottom:148.786667pt;}
.y18_c00334{bottom:170.653333pt;}
.y17_c00334{bottom:190.520000pt;}
.y16_c00334{bottom:214.386667pt;}
.y15_c00334{bottom:235.986667pt;}
.y14_c00334{bottom:257.720000pt;}
.y13_c00334{bottom:279.320000pt;}
.y12_c00334{bottom:298.786667pt;}
.y11_c00334{bottom:320.386667pt;}
.y10_c00334{bottom:342.786667pt;}
.yf_c00334{bottom:364.520000pt;}
.ye_c00334{bottom:386.120000pt;}
.yd_c00334{bottom:408.253333pt;}
.yc_c00334{bottom:429.853333pt;}
.yb_c00334{bottom:451.986667pt;}
.ya_c00334{bottom:473.320000pt;}
.y9_c00334{bottom:495.186667pt;}
.y8_c00334{bottom:516.786667pt;}
.y7_c00334{bottom:539.053333pt;}
.y6_c00334{bottom:560.653333pt;}
.y5_c00334{bottom:582.520000pt;}
.y4_c00334{bottom:603.853333pt;}
.y3_c00334{bottom:625.986667pt;}
.y2_c00334{bottom:647.320000pt;}
.y1_c00334{bottom:669.853333pt;}
.h5_c00334{height:11.733399pt;}
.h6_c00334{height:38.937500pt;}
.h2_c00334{height:73.244792pt;}
.h4_c00334{height:74.278646pt;}
.h3_c00334{height:81.031250pt;}
.h0_c00334{height:703.666667pt;}
.h1_c00334{height:704.000000pt;}
.w2_c00334{width:93.222667pt;}
.w0_c00334{width:481.666667pt;}
.w1_c00334{width:482.000000pt;}
.x0_c00334{left:0.000000pt;}
.x6_c00334{left:31.733333pt;}
.x2_c00334{left:36.000000pt;}
.x3_c00334{left:37.200000pt;}
.x4_c00334{left:38.666667pt;}
.x5_c00334{left:40.000000pt;}
.x1_c00334{left:132.933333pt;}
.x8_c00334{left:198.001546pt;}
.x7_c00334{left:225.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8d84054f726826abf88f1a54.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.568848;font-style:normal;font-weight:normal;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_d496716f0dd874c2b77eaf68.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.480469;font-style:normal;font-weight:normal;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_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff3_c00335{font-family:ff3_c00335;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00335;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00335{font-family:ff4_c00335;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00335{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00335{vertical-align:0.000000px;}
.ls1_c00335{letter-spacing:-12.000000px;}
.ls2_c00335{letter-spacing:0.000000px;}
.ls0_c00335{letter-spacing:3.000000px;}
.sc__c00335{text-shadow:none;}
.sc0_c00335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00335{-webkit-text-stroke:0px transparent;}
.sc0_c00335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00335{word-spacing:-39.000000px;}
.ws2_c00335{word-spacing:-33.192000px;}
.ws3_c00335{word-spacing:-20.352000px;}
.ws0_c00335{word-spacing:-0.672000px;}
.ws4_c00335{word-spacing:0.000000px;}
._17_c00335{margin-left:-21.288000px;}
._13_c00335{margin-left:-19.824000px;}
._3_c00335{margin-left:-17.424000px;}
._14_c00335{margin-left:-15.264000px;}
._1b_c00335{margin-left:-13.536000px;}
._0_c00335{margin-left:-11.952000px;}
._4_c00335{margin-left:-10.800000px;}
._1_c00335{margin-left:-9.648000px;}
._f_c00335{margin-left:-7.680000px;}
._11_c00335{margin-left:-6.552000px;}
._e_c00335{margin-left:-5.424000px;}
._c_c00335{margin-left:-3.696000px;}
._d_c00335{margin-left:-2.088000px;}
._12_c00335{margin-left:-1.008000px;}
._b_c00335{width:1.104000px;}
._8_c00335{width:2.856000px;}
._a_c00335{width:4.824000px;}
._9_c00335{width:6.048000px;}
._6_c00335{width:7.992000px;}
._7_c00335{width:11.232000px;}
._16_c00335{width:13.176000px;}
._10_c00335{width:16.368000px;}
._15_c00335{width:18.984000px;}
._1a_c00335{width:24.006000px;}
._18_c00335{width:45.024000px;}
._2_c00335{width:84.600000px;}
._19_c00335{width:155.400000px;}
._5_c00335{width:298.272000px;}
.fc2_c00335{color:transparent;}
.fc1_c00335{color:rgb(128,128,128);}
.fc0_c00335{color:rgb(0,0,0);}
.fs3_c00335{font-size:48.000000px;}
.fs2_c00335{font-size:54.000000px;}
.fs0_c00335{font-size:72.000000px;}
.fs1_c00335{font-size:78.000000px;}
.y0_c00335{bottom:0.000000px;}
.y1f_c00335{bottom:3.105000px;}
.y1e_c00335{bottom:7.228355px;}
.y1d_c00335{bottom:58.335000px;}
.y1c_c00335{bottom:80.985000px;}
.y1b_c00335{bottom:106.635000px;}
.y1a_c00335{bottom:131.235000px;}
.y19_c00335{bottom:158.835000px;}
.y18_c00335{bottom:182.535000px;}
.y17_c00335{bottom:206.835000px;}
.y16_c00335{bottom:232.185000px;}
.y15_c00335{bottom:257.085000px;}
.y14_c00335{bottom:283.185000px;}
.y13_c00335{bottom:305.385000px;}
.y12_c00335{bottom:329.985000px;}
.y11_c00335{bottom:355.935000px;}
.y10_c00335{bottom:379.335000px;}
.yf_c00335{bottom:404.235000px;}
.ye_c00335{bottom:428.235000px;}
.yd_c00335{bottom:451.485000px;}
.yc_c00335{bottom:476.235000px;}
.yb_c00335{bottom:500.535000px;}
.ya_c00335{bottom:525.135000px;}
.y9_c00335{bottom:550.335000px;}
.y8_c00335{bottom:575.085000px;}
.y7_c00335{bottom:598.785000px;}
.y6_c00335{bottom:623.685000px;}
.y5_c00335{bottom:648.585000px;}
.y4_c00335{bottom:673.335000px;}
.y3_c00335{bottom:697.635000px;}
.y2_c00335{bottom:722.535000px;}
.y1_c00335{bottom:747.585000px;}
.h3_c00335{height:13.200074px;}
.h4_c00335{height:43.804688px;}
.h2_c00335{height:91.160156px;}
.h0_c00335{height:782.175000px;}
.h1_c00335{height:782.250000px;}
.w2_c00335{width:104.875500px;}
.w0_c00335{width:501.675000px;}
.w1_c00335{width:501.750000px;}
.x0_c00335{left:0.000000px;}
.x2_c00335{left:78.000000px;}
.x3_c00335{left:79.350000px;}
.x4_c00335{left:80.700000px;}
.x5_c00335{left:82.050000px;}
.x1_c00335{left:83.400000px;}
.x6_c00335{left:84.600000px;}
.x7_c00335{left:85.650000px;}
.x8_c00335{left:87.000000px;}
.x9_c00335{left:88.650000px;}
.xb_c00335{left:90.150000px;}
.xa_c00335{left:91.350000px;}
.xd_c00335{left:202.651749px;}
.xc_c00335{left:416.100000px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls1_c00335{letter-spacing:-10.666667pt;}
.ls2_c00335{letter-spacing:0.000000pt;}
.ls0_c00335{letter-spacing:2.666667pt;}
.ws1_c00335{word-spacing:-34.666667pt;}
.ws2_c00335{word-spacing:-29.504000pt;}
.ws3_c00335{word-spacing:-18.090667pt;}
.ws0_c00335{word-spacing:-0.597333pt;}
.ws4_c00335{word-spacing:0.000000pt;}
._17_c00335{margin-left:-18.922667pt;}
._13_c00335{margin-left:-17.621333pt;}
._3_c00335{margin-left:-15.488000pt;}
._14_c00335{margin-left:-13.568000pt;}
._1b_c00335{margin-left:-12.032000pt;}
._0_c00335{margin-left:-10.624000pt;}
._4_c00335{margin-left:-9.600000pt;}
._1_c00335{margin-left:-8.576000pt;}
._f_c00335{margin-left:-6.826667pt;}
._11_c00335{margin-left:-5.824000pt;}
._e_c00335{margin-left:-4.821333pt;}
._c_c00335{margin-left:-3.285333pt;}
._d_c00335{margin-left:-1.856000pt;}
._12_c00335{margin-left:-0.896000pt;}
._b_c00335{width:0.981333pt;}
._8_c00335{width:2.538667pt;}
._a_c00335{width:4.288000pt;}
._9_c00335{width:5.376000pt;}
._6_c00335{width:7.104000pt;}
._7_c00335{width:9.984000pt;}
._16_c00335{width:11.712000pt;}
._10_c00335{width:14.549333pt;}
._15_c00335{width:16.874667pt;}
._1a_c00335{width:21.338667pt;}
._18_c00335{width:40.021333pt;}
._2_c00335{width:75.200000pt;}
._19_c00335{width:138.133333pt;}
._5_c00335{width:265.130667pt;}
.fs3_c00335{font-size:42.666667pt;}
.fs2_c00335{font-size:48.000000pt;}
.fs0_c00335{font-size:64.000000pt;}
.fs1_c00335{font-size:69.333333pt;}
.y0_c00335{bottom:0.000000pt;}
.y1f_c00335{bottom:2.760000pt;}
.y1e_c00335{bottom:6.425204pt;}
.y1d_c00335{bottom:51.853333pt;}
.y1c_c00335{bottom:71.986667pt;}
.y1b_c00335{bottom:94.786667pt;}
.y1a_c00335{bottom:116.653333pt;}
.y19_c00335{bottom:141.186667pt;}
.y18_c00335{bottom:162.253333pt;}
.y17_c00335{bottom:183.853333pt;}
.y16_c00335{bottom:206.386667pt;}
.y15_c00335{bottom:228.520000pt;}
.y14_c00335{bottom:251.720000pt;}
.y13_c00335{bottom:271.453333pt;}
.y12_c00335{bottom:293.320000pt;}
.y11_c00335{bottom:316.386667pt;}
.y10_c00335{bottom:337.186667pt;}
.yf_c00335{bottom:359.320000pt;}
.ye_c00335{bottom:380.653333pt;}
.yd_c00335{bottom:401.320000pt;}
.yc_c00335{bottom:423.320000pt;}
.yb_c00335{bottom:444.920000pt;}
.ya_c00335{bottom:466.786667pt;}
.y9_c00335{bottom:489.186667pt;}
.y8_c00335{bottom:511.186667pt;}
.y7_c00335{bottom:532.253333pt;}
.y6_c00335{bottom:554.386667pt;}
.y5_c00335{bottom:576.520000pt;}
.y4_c00335{bottom:598.520000pt;}
.y3_c00335{bottom:620.120000pt;}
.y2_c00335{bottom:642.253333pt;}
.y1_c00335{bottom:664.520000pt;}
.h3_c00335{height:11.733399pt;}
.h4_c00335{height:38.937500pt;}
.h2_c00335{height:81.031250pt;}
.h0_c00335{height:695.266667pt;}
.h1_c00335{height:695.333333pt;}
.w2_c00335{width:93.222667pt;}
.w0_c00335{width:445.933333pt;}
.w1_c00335{width:446.000000pt;}
.x0_c00335{left:0.000000pt;}
.x2_c00335{left:69.333333pt;}
.x3_c00335{left:70.533333pt;}
.x4_c00335{left:71.733333pt;}
.x5_c00335{left:72.933333pt;}
.x1_c00335{left:74.133333pt;}
.x6_c00335{left:75.200000pt;}
.x7_c00335{left:76.133333pt;}
.x8_c00335{left:77.333333pt;}
.x9_c00335{left:78.800000pt;}
.xb_c00335{left:80.133333pt;}
.xa_c00335{left:81.200000pt;}
.xd_c00335{left:180.134888pt;}
.xc_c00335{left:369.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0cd8687782ebe640d1658f66.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.480469;font-style:normal;font-weight:normal;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_d52a9def60c196075d233a61.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:1.480469;font-style:normal;font-weight:normal;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_247017d119eaf0be1acda7df.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:1.568848;font-style:normal;font-weight:normal;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_4bb71be9cdc78ab036bb3949.woff2')format("woff");}.ff4_c00336{font-family:ff4_c00336;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00336;src:url('chunks/assets/font_b2af1a9b6e0ce1fc6b2b9075.woff2')format("woff");}.ff5_c00336{font-family:ff5_c00336;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00336;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00336{font-family:ff6_c00336;line-height:1.219238;font-style: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;}
.ls5_c00336{letter-spacing:-6.000000px;}
.ls3_c00336{letter-spacing:-3.000000px;}
.ls2_c00336{letter-spacing:0.000000px;}
.ls4_c00336{letter-spacing:3.000000px;}
.ls1_c00336{letter-spacing:5.712000px;}
.ls0_c00336{letter-spacing:13.800000px;}
.sc__c00336{text-shadow:none;}
.sc0_c00336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00336{-webkit-text-stroke:0px transparent;}
.sc0_c00336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00336{word-spacing:-24.051000px;}
.ws0_c00336{word-spacing:-17.352000px;}
.ws1_c00336{word-spacing:-14.352000px;}
.ws3_c00336{word-spacing:0.000000px;}
._b_c00336{margin-left:-21.648000px;}
._15_c00336{margin-left:-15.624000px;}
._17_c00336{margin-left:-13.842000px;}
._5_c00336{margin-left:-12.636000px;}
._16_c00336{margin-left:-11.505000px;}
._14_c00336{margin-left:-10.074000px;}
._8_c00336{margin-left:-7.992000px;}
._13_c00336{margin-left:-6.984000px;}
._4_c00336{margin-left:-5.694000px;}
._c_c00336{margin-left:-3.672000px;}
._7_c00336{margin-left:-2.232000px;}
._6_c00336{margin-left:-1.152000px;}
._0_c00336{width:1.560000px;}
._d_c00336{width:3.048000px;}
._f_c00336{width:4.056000px;}
._e_c00336{width:5.352000px;}
._a_c00336{width:7.344000px;}
._9_c00336{width:8.424000px;}
._3_c00336{width:9.516000px;}
._18_c00336{width:10.518000px;}
._10_c00336{width:11.976000px;}
._2_c00336{width:13.494000px;}
._19_c00336{width:14.946000px;}
._11_c00336{width:19.878000px;}
._1c_c00336{width:29.448000px;}
._1b_c00336{width:31.752000px;}
._1a_c00336{width:111.264000px;}
._12_c00336{width:150.174000px;}
._1_c00336{width:297.570000px;}
._1d_c00336{width:311.688000px;}
.fc2_c00336{color:transparent;}
.fc1_c00336{color:rgb(128,128,128);}
.fc0_c00336{color:rgb(0,0,0);}
.fs5_c00336{font-size:48.000000px;}
.fs2_c00336{font-size:54.000000px;}
.fs4_c00336{font-size:63.000000px;}
.fs3_c00336{font-size:69.000000px;}
.fs1_c00336{font-size:72.000000px;}
.fs0_c00336{font-size:78.000000px;}
.y0_c00336{bottom:0.000000px;}
.y1f_c00336{bottom:3.105000px;}
.y1e_c00336{bottom:7.228371px;}
.y1d_c00336{bottom:46.965000px;}
.y1c_c00336{bottom:72.915000px;}
.y1b_c00336{bottom:98.865000px;}
.y1a_c00336{bottom:123.315000px;}
.y19_c00336{bottom:149.265000px;}
.y18_c00336{bottom:173.115000px;}
.y17_c00336{bottom:198.915000px;}
.y16_c00336{bottom:223.515000px;}
.y15_c00336{bottom:247.365000px;}
.y14_c00336{bottom:273.015000px;}
.y13_c00336{bottom:298.065000px;}
.y12_c00336{bottom:320.265000px;}
.y11_c00336{bottom:343.065000px;}
.y10_c00336{bottom:367.965000px;}
.yf_c00336{bottom:392.865000px;}
.ye_c00336{bottom:417.915000px;}
.yd_c00336{bottom:441.915000px;}
.yc_c00336{bottom:466.815000px;}
.yb_c00336{bottom:491.415000px;}
.ya_c00336{bottom:516.165000px;}
.y9_c00336{bottom:539.715000px;}
.y8_c00336{bottom:566.415000px;}
.y7_c00336{bottom:589.065000px;}
.y6_c00336{bottom:614.715000px;}
.y5_c00336{bottom:638.865000px;}
.y4_c00336{bottom:662.865000px;}
.y3_c00336{bottom:687.915000px;}
.y2_c00336{bottom:712.515000px;}
.y1_c00336{bottom:737.565000px;}
.h5_c00336{height:13.200074px;}
.h6_c00336{height:43.804688px;}
.h3_c00336{height:91.160156px;}
.h2_c00336{height:91.291992px;}
.h4_c00336{height:91.760156px;}
.h1_c00336{height:777.000000px;}
.h0_c00336{height:777.075000px;}
.w2_c00336{width:104.875500px;}
.w0_c00336{width:516.525000px;}
.w1_c00336{width:516.750000px;}
.x0_c00336{left:0.000000px;}
.x8_c00336{left:22.350000px;}
.x9_c00336{left:31.500000px;}
.x5_c00336{left:32.850000px;}
.x3_c00336{left:36.750000px;}
.x4_c00336{left:37.800000px;}
.x7_c00336{left:39.450000px;}
.x6_c00336{left:40.500000px;}
.x2_c00336{left:55.050000px;}
.x1_c00336{left:154.800000px;}
.xb_c00336{left:210.076767px;}
.xa_c00336{left:244.050000px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls5_c00336{letter-spacing:-5.333333pt;}
.ls3_c00336{letter-spacing:-2.666667pt;}
.ls2_c00336{letter-spacing:0.000000pt;}
.ls4_c00336{letter-spacing:2.666667pt;}
.ls1_c00336{letter-spacing:5.077333pt;}
.ls0_c00336{letter-spacing:12.266667pt;}
.ws2_c00336{word-spacing:-21.378667pt;}
.ws0_c00336{word-spacing:-15.424000pt;}
.ws1_c00336{word-spacing:-12.757333pt;}
.ws3_c00336{word-spacing:0.000000pt;}
._b_c00336{margin-left:-19.242667pt;}
._15_c00336{margin-left:-13.888000pt;}
._17_c00336{margin-left:-12.304000pt;}
._5_c00336{margin-left:-11.232000pt;}
._16_c00336{margin-left:-10.226667pt;}
._14_c00336{margin-left:-8.954667pt;}
._8_c00336{margin-left:-7.104000pt;}
._13_c00336{margin-left:-6.208000pt;}
._4_c00336{margin-left:-5.061333pt;}
._c_c00336{margin-left:-3.264000pt;}
._7_c00336{margin-left:-1.984000pt;}
._6_c00336{margin-left:-1.024000pt;}
._0_c00336{width:1.386667pt;}
._d_c00336{width:2.709333pt;}
._f_c00336{width:3.605333pt;}
._e_c00336{width:4.757333pt;}
._a_c00336{width:6.528000pt;}
._9_c00336{width:7.488000pt;}
._3_c00336{width:8.458667pt;}
._18_c00336{width:9.349333pt;}
._10_c00336{width:10.645333pt;}
._2_c00336{width:11.994667pt;}
._19_c00336{width:13.285333pt;}
._11_c00336{width:17.669333pt;}
._1c_c00336{width:26.176000pt;}
._1b_c00336{width:28.224000pt;}
._1a_c00336{width:98.901333pt;}
._12_c00336{width:133.488000pt;}
._1_c00336{width:264.506667pt;}
._1d_c00336{width:277.056000pt;}
.fs5_c00336{font-size:42.666667pt;}
.fs2_c00336{font-size:48.000000pt;}
.fs4_c00336{font-size:56.000000pt;}
.fs3_c00336{font-size:61.333333pt;}
.fs1_c00336{font-size:64.000000pt;}
.fs0_c00336{font-size:69.333333pt;}
.y0_c00336{bottom:0.000000pt;}
.y1f_c00336{bottom:2.760000pt;}
.y1e_c00336{bottom:6.425219pt;}
.y1d_c00336{bottom:41.746667pt;}
.y1c_c00336{bottom:64.813333pt;}
.y1b_c00336{bottom:87.880000pt;}
.y1a_c00336{bottom:109.613333pt;}
.y19_c00336{bottom:132.680000pt;}
.y18_c00336{bottom:153.880000pt;}
.y17_c00336{bottom:176.813333pt;}
.y16_c00336{bottom:198.680000pt;}
.y15_c00336{bottom:219.880000pt;}
.y14_c00336{bottom:242.680000pt;}
.y13_c00336{bottom:264.946667pt;}
.y12_c00336{bottom:284.680000pt;}
.y11_c00336{bottom:304.946667pt;}
.y10_c00336{bottom:327.080000pt;}
.yf_c00336{bottom:349.213333pt;}
.ye_c00336{bottom:371.480000pt;}
.yd_c00336{bottom:392.813333pt;}
.yc_c00336{bottom:414.946667pt;}
.yb_c00336{bottom:436.813333pt;}
.ya_c00336{bottom:458.813333pt;}
.y9_c00336{bottom:479.746667pt;}
.y8_c00336{bottom:503.480000pt;}
.y7_c00336{bottom:523.613333pt;}
.y6_c00336{bottom:546.413333pt;}
.y5_c00336{bottom:567.880000pt;}
.y4_c00336{bottom:589.213333pt;}
.y3_c00336{bottom:611.480000pt;}
.y2_c00336{bottom:633.346667pt;}
.y1_c00336{bottom:655.613333pt;}
.h5_c00336{height:11.733399pt;}
.h6_c00336{height:38.937500pt;}
.h3_c00336{height:81.031250pt;}
.h2_c00336{height:81.148438pt;}
.h4_c00336{height:81.564583pt;}
.h1_c00336{height:690.666667pt;}
.h0_c00336{height:690.733333pt;}
.w2_c00336{width:93.222667pt;}
.w0_c00336{width:459.133333pt;}
.w1_c00336{width:459.333333pt;}
.x0_c00336{left:0.000000pt;}
.x8_c00336{left:19.866667pt;}
.x9_c00336{left:28.000000pt;}
.x5_c00336{left:29.200000pt;}
.x3_c00336{left:32.666667pt;}
.x4_c00336{left:33.600000pt;}
.x7_c00336{left:35.066667pt;}
.x6_c00336{left:36.000000pt;}
.x2_c00336{left:48.933333pt;}
.x1_c00336{left:137.600000pt;}
.xb_c00336{left:186.734904pt;}
.xa_c00336{left:216.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_818a815cf60fb35a798f9040.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.568848;font-style:normal;font-weight:normal;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_8f7aedbb8b89417934324b3c.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:1.480469;font-style:normal;font-weight:normal;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_720c60f2684c6e3095fdad20.woff2')format("woff");}.ff3_c00337{font-family:ff3_c00337;line-height:1.592000;font-style:normal;font-weight:normal;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_069c0b7eaf112a67e77518c5.woff2')format("woff");}.ff4_c00337{font-family:ff4_c00337;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00337;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00337{font-family:ff5_c00337;line-height:1.219238;font-style: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;}
.ls2_c00337{letter-spacing:0.000000px;}
.ls1_c00337{letter-spacing:3.000000px;}
.ls0_c00337{letter-spacing:16.788000px;}
.sc__c00337{text-shadow:none;}
.sc0_c00337{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00337{-webkit-text-stroke:0px transparent;}
.sc0_c00337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00337{word-spacing:-20.352000px;}
.ws1_c00337{word-spacing:0.000000px;}
._1c_c00337{margin-left:-20.985000px;}
._16_c00337{margin-left:-15.642000px;}
._1d_c00337{margin-left:-14.616000px;}
._19_c00337{margin-left:-13.176000px;}
._17_c00337{margin-left:-11.283000px;}
._1a_c00337{margin-left:-10.197000px;}
._e_c00337{margin-left:-9.135000px;}
._14_c00337{margin-left:-7.875000px;}
._d_c00337{margin-left:-6.525000px;}
._15_c00337{margin-left:-4.983000px;}
._9_c00337{margin-left:-3.150000px;}
._a_c00337{margin-left:-1.170000px;}
._18_c00337{width:1.026000px;}
._13_c00337{width:2.283000px;}
._0_c00337{width:3.384000px;}
._11_c00337{width:5.292000px;}
._8_c00337{width:6.624000px;}
._3_c00337{width:7.632000px;}
._7_c00337{width:9.432000px;}
._5_c00337{width:10.872000px;}
._1b_c00337{width:12.024000px;}
._4_c00337{width:13.752000px;}
._1e_c00337{width:15.516000px;}
._6_c00337{width:20.808000px;}
._c_c00337{width:27.405000px;}
._10_c00337{width:44.595000px;}
._1_c00337{width:58.536000px;}
._b_c00337{width:110.619000px;}
._f_c00337{width:188.955000px;}
._12_c00337{width:213.273000px;}
._2_c00337{width:306.432000px;}
.fc2_c00337{color:transparent;}
.fc1_c00337{color:rgb(128,128,128);}
.fc0_c00337{color:rgb(0,0,0);}
.fs2_c00337{font-size:27.000000px;}
.fs1_c00337{font-size:45.000000px;}
.fs4_c00337{font-size:48.000000px;}
.fs3_c00337{font-size:63.000000px;}
.fs0_c00337{font-size:72.000000px;}
.y0_c00337{bottom:0.000000px;}
.y20_c00337{bottom:3.105000px;}
.y1f_c00337{bottom:7.228363px;}
.y1e_c00337{bottom:51.000000px;}
.y1d_c00337{bottom:74.700000px;}
.y1c_c00337{bottom:100.350000px;}
.y1b_c00337{bottom:125.250000px;}
.y1a_c00337{bottom:150.600000px;}
.y19_c00337{bottom:175.950000px;}
.y18_c00337{bottom:200.550000px;}
.y17_c00337{bottom:225.450000px;}
.y16_c00337{bottom:251.550000px;}
.y15_c00337{bottom:275.400000px;}
.y14_c00337{bottom:300.000000px;}
.y13_c00337{bottom:325.050000px;}
.y12_c00337{bottom:349.050000px;}
.y11_c00337{bottom:373.950000px;}
.y10_c00337{bottom:398.550000px;}
.yf_c00337{bottom:423.150000px;}
.ye_c00337{bottom:447.150000px;}
.yd_c00337{bottom:471.150000px;}
.yc_c00337{bottom:495.150000px;}
.yb_c00337{bottom:519.750000px;}
.ya_c00337{bottom:544.350000px;}
.y9_c00337{bottom:568.950000px;}
.y8_c00337{bottom:593.700000px;}
.y7_c00337{bottom:618.300000px;}
.y6_c00337{bottom:642.600000px;}
.y5_c00337{bottom:667.650000px;}
.y4_c00337{bottom:692.550000px;}
.y3_c00337{bottom:715.950000px;}
.y2_c00337{bottom:734.100000px;}
.y1_c00337{bottom:743.550000px;}
.h4_c00337{height:13.200074px;}
.h5_c00337{height:43.804688px;}
.h3_c00337{height:56.975098px;}
.h2_c00337{height:91.160156px;}
.h1_c00337{height:786.750000px;}
.h0_c00337{height:787.050000px;}
.w2_c00337{width:104.875500px;}
.w1_c00337{width:488.250000px;}
.w0_c00337{width:488.400000px;}
.x0_c00337{left:0.000000px;}
.x8_c00337{left:73.950000px;}
.x6_c00337{left:75.300000px;}
.x3_c00337{left:76.950000px;}
.x4_c00337{left:81.450000px;}
.x1_c00337{left:82.650000px;}
.xa_c00337{left:83.700000px;}
.x9_c00337{left:84.750000px;}
.x5_c00337{left:131.250000px;}
.x7_c00337{left:148.950000px;}
.xc_c00337{left:196.014267px;}
.x2_c00337{left:243.000000px;}
.xb_c00337{left:405.000000px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls2_c00337{letter-spacing:0.000000pt;}
.ls1_c00337{letter-spacing:2.666667pt;}
.ls0_c00337{letter-spacing:14.922667pt;}
.ws0_c00337{word-spacing:-18.090667pt;}
.ws1_c00337{word-spacing:0.000000pt;}
._1c_c00337{margin-left:-18.653333pt;}
._16_c00337{margin-left:-13.904000pt;}
._1d_c00337{margin-left:-12.992000pt;}
._19_c00337{margin-left:-11.712000pt;}
._17_c00337{margin-left:-10.029333pt;}
._1a_c00337{margin-left:-9.064000pt;}
._e_c00337{margin-left:-8.120000pt;}
._14_c00337{margin-left:-7.000000pt;}
._d_c00337{margin-left:-5.800000pt;}
._15_c00337{margin-left:-4.429333pt;}
._9_c00337{margin-left:-2.800000pt;}
._a_c00337{margin-left:-1.040000pt;}
._18_c00337{width:0.912000pt;}
._13_c00337{width:2.029333pt;}
._0_c00337{width:3.008000pt;}
._11_c00337{width:4.704000pt;}
._8_c00337{width:5.888000pt;}
._3_c00337{width:6.784000pt;}
._7_c00337{width:8.384000pt;}
._5_c00337{width:9.664000pt;}
._1b_c00337{width:10.688000pt;}
._4_c00337{width:12.224000pt;}
._1e_c00337{width:13.792000pt;}
._6_c00337{width:18.496000pt;}
._c_c00337{width:24.360000pt;}
._10_c00337{width:39.640000pt;}
._1_c00337{width:52.032000pt;}
._b_c00337{width:98.328000pt;}
._f_c00337{width:167.960000pt;}
._12_c00337{width:189.576000pt;}
._2_c00337{width:272.384000pt;}
.fs2_c00337{font-size:24.000000pt;}
.fs1_c00337{font-size:40.000000pt;}
.fs4_c00337{font-size:42.666667pt;}
.fs3_c00337{font-size:56.000000pt;}
.fs0_c00337{font-size:64.000000pt;}
.y0_c00337{bottom:0.000000pt;}
.y20_c00337{bottom:2.760000pt;}
.y1f_c00337{bottom:6.425212pt;}
.y1e_c00337{bottom:45.333333pt;}
.y1d_c00337{bottom:66.400000pt;}
.y1c_c00337{bottom:89.200000pt;}
.y1b_c00337{bottom:111.333333pt;}
.y1a_c00337{bottom:133.866667pt;}
.y19_c00337{bottom:156.400000pt;}
.y18_c00337{bottom:178.266667pt;}
.y17_c00337{bottom:200.400000pt;}
.y16_c00337{bottom:223.600000pt;}
.y15_c00337{bottom:244.800000pt;}
.y14_c00337{bottom:266.666667pt;}
.y13_c00337{bottom:288.933333pt;}
.y12_c00337{bottom:310.266667pt;}
.y11_c00337{bottom:332.400000pt;}
.y10_c00337{bottom:354.266667pt;}
.yf_c00337{bottom:376.133333pt;}
.ye_c00337{bottom:397.466667pt;}
.yd_c00337{bottom:418.800000pt;}
.yc_c00337{bottom:440.133333pt;}
.yb_c00337{bottom:462.000000pt;}
.ya_c00337{bottom:483.866667pt;}
.y9_c00337{bottom:505.733333pt;}
.y8_c00337{bottom:527.733333pt;}
.y7_c00337{bottom:549.600000pt;}
.y6_c00337{bottom:571.200000pt;}
.y5_c00337{bottom:593.466667pt;}
.y4_c00337{bottom:615.600000pt;}
.y3_c00337{bottom:636.400000pt;}
.y2_c00337{bottom:652.533333pt;}
.y1_c00337{bottom:660.933333pt;}
.h4_c00337{height:11.733399pt;}
.h5_c00337{height:38.937500pt;}
.h3_c00337{height:50.644531pt;}
.h2_c00337{height:81.031250pt;}
.h1_c00337{height:699.333333pt;}
.h0_c00337{height:699.600000pt;}
.w2_c00337{width:93.222667pt;}
.w1_c00337{width:434.000000pt;}
.w0_c00337{width:434.133333pt;}
.x0_c00337{left:0.000000pt;}
.x8_c00337{left:65.733333pt;}
.x6_c00337{left:66.933333pt;}
.x3_c00337{left:68.400000pt;}
.x4_c00337{left:72.400000pt;}
.x1_c00337{left:73.466667pt;}
.xa_c00337{left:74.400000pt;}
.x9_c00337{left:75.333333pt;}
.x5_c00337{left:116.666667pt;}
.x7_c00337{left:132.400000pt;}
.xc_c00337{left:174.234904pt;}
.x2_c00337{left:216.000000pt;}
.xb_c00337{left:360.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_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_ee7179bdb52789b6d813e317.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00338;src:url('chunks/assets/font_7af36a61f2a95ada271d1d11.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:1.568848;font-style:normal;font-weight:normal;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_747bbfa186a083bba1b6b775.woff2')format("woff");}.ff3_c00338{font-family:ff3_c00338;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00338;src:url('chunks/assets/font_7b3845c727e64e9e6e9f0c2a.woff2')format("woff");}.ff4_c00338{font-family:ff4_c00338;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00338;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00338{font-family:ff5_c00338;line-height:1.219238;font-style: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:3.000000px;}
.sc__c00338{text-shadow:none;}
.sc0_c00338{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00338{-webkit-text-stroke:0px transparent;}
.sc0_c00338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00338{word-spacing:-25.284000px;}
.ws1_c00338{word-spacing:-17.352000px;}
.ws2_c00338{word-spacing:0.000000px;}
._1c_c00338{margin-left:-28.848000px;}
._19_c00338{margin-left:-24.408000px;}
._b_c00338{margin-left:-17.412000px;}
._17_c00338{margin-left:-13.968000px;}
._13_c00338{margin-left:-11.016000px;}
._e_c00338{margin-left:-9.144000px;}
._a_c00338{margin-left:-8.064000px;}
._10_c00338{margin-left:-6.696000px;}
._12_c00338{margin-left:-5.256000px;}
._7_c00338{margin-left:-4.176000px;}
._f_c00338{margin-left:-3.168000px;}
._c_c00338{margin-left:-2.040000px;}
._d_c00338{margin-left:-1.008000px;}
._8_c00338{width:1.224000px;}
._5_c00338{width:3.000000px;}
._6_c00338{width:4.104000px;}
._2_c00338{width:5.208000px;}
._1_c00338{width:7.224000px;}
._0_c00338{width:9.240000px;}
._3_c00338{width:10.500000px;}
._4_c00338{width:12.348000px;}
._9_c00338{width:14.112000px;}
._16_c00338{width:15.168000px;}
._11_c00338{width:17.280000px;}
._15_c00338{width:21.408000px;}
._14_c00338{width:33.672000px;}
._1b_c00338{width:35.544000px;}
._18_c00338{width:162.360000px;}
._1d_c00338{width:207.648000px;}
._1a_c00338{width:771.360000px;}
.fc2_c00338{color:transparent;}
.fc1_c00338{color:rgb(128,128,128);}
.fc0_c00338{color:rgb(0,0,0);}
.fs3_c00338{font-size:48.000000px;}
.fs1_c00338{font-size:72.000000px;}
.fs0_c00338{font-size:84.000000px;}
.fs2_c00338{font-size:93.000000px;}
.y0_c00338{bottom:0.000000px;}
.y1f_c00338{bottom:3.105000px;}
.y1e_c00338{bottom:7.228371px;}
.y1d_c00338{bottom:50.415000px;}
.y1c_c00338{bottom:77.415000px;}
.y1b_c00338{bottom:103.065000px;}
.y1a_c00338{bottom:126.015000px;}
.y19_c00338{bottom:153.915000px;}
.y18_c00338{bottom:176.265000px;}
.y17_c00338{bottom:203.565000px;}
.y16_c00338{bottom:228.465000px;}
.y15_c00338{bottom:253.215000px;}
.y14_c00338{bottom:277.065000px;}
.y13_c00338{bottom:302.415000px;}
.y12_c00338{bottom:325.065000px;}
.y11_c00338{bottom:348.015000px;}
.y10_c00338{bottom:372.615000px;}
.yf_c00338{bottom:397.215000px;}
.ye_c00338{bottom:421.965000px;}
.yd_c00338{bottom:446.565000px;}
.yc_c00338{bottom:471.465000px;}
.yb_c00338{bottom:495.765000px;}
.ya_c00338{bottom:520.515000px;}
.y9_c00338{bottom:545.115000px;}
.y8_c00338{bottom:570.015000px;}
.y7_c00338{bottom:594.765000px;}
.y6_c00338{bottom:618.765000px;}
.y5_c00338{bottom:644.415000px;}
.y4_c00338{bottom:669.015000px;}
.y3_c00338{bottom:692.865000px;}
.y2_c00338{bottom:718.215000px;}
.y1_c00338{bottom:743.265000px;}
.h5_c00338{height:13.200074px;}
.h6_c00338{height:43.804688px;}
.h2_c00338{height:82.400391px;}
.h3_c00338{height:91.160156px;}
.h4_c00338{height:93.726562px;}
.h1_c00338{height:789.000000px;}
.h0_c00338{height:789.225000px;}
.w2_c00338{width:104.875500px;}
.w1_c00338{width:540.000000px;}
.w0_c00338{width:540.300000px;}
.x0_c00338{left:0.000000px;}
.x2_c00338{left:30.450000px;}
.x5_c00338{left:31.800000px;}
.x3_c00338{left:32.850000px;}
.x6_c00338{left:34.050000px;}
.x8_c00338{left:35.550000px;}
.x4_c00338{left:37.200000px;}
.xa_c00338{left:38.550000px;}
.x9_c00338{left:40.500000px;}
.x7_c00338{left:41.550000px;}
.x1_c00338{left:153.600000px;}
.xb_c00338{left:221.964249px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls1_c00338{letter-spacing:0.000000pt;}
.ls0_c00338{letter-spacing:2.666667pt;}
.ws0_c00338{word-spacing:-22.474667pt;}
.ws1_c00338{word-spacing:-15.424000pt;}
.ws2_c00338{word-spacing:0.000000pt;}
._1c_c00338{margin-left:-25.642667pt;}
._19_c00338{margin-left:-21.696000pt;}
._b_c00338{margin-left:-15.477333pt;}
._17_c00338{margin-left:-12.416000pt;}
._13_c00338{margin-left:-9.792000pt;}
._e_c00338{margin-left:-8.128000pt;}
._a_c00338{margin-left:-7.168000pt;}
._10_c00338{margin-left:-5.952000pt;}
._12_c00338{margin-left:-4.672000pt;}
._7_c00338{margin-left:-3.712000pt;}
._f_c00338{margin-left:-2.816000pt;}
._c_c00338{margin-left:-1.813333pt;}
._d_c00338{margin-left:-0.896000pt;}
._8_c00338{width:1.088000pt;}
._5_c00338{width:2.666667pt;}
._6_c00338{width:3.648000pt;}
._2_c00338{width:4.629333pt;}
._1_c00338{width:6.421333pt;}
._0_c00338{width:8.213333pt;}
._3_c00338{width:9.333333pt;}
._4_c00338{width:10.976000pt;}
._9_c00338{width:12.544000pt;}
._16_c00338{width:13.482667pt;}
._11_c00338{width:15.360000pt;}
._15_c00338{width:19.029333pt;}
._14_c00338{width:29.930667pt;}
._1b_c00338{width:31.594667pt;}
._18_c00338{width:144.320000pt;}
._1d_c00338{width:184.576000pt;}
._1a_c00338{width:685.653333pt;}
.fs3_c00338{font-size:42.666667pt;}
.fs1_c00338{font-size:64.000000pt;}
.fs0_c00338{font-size:74.666667pt;}
.fs2_c00338{font-size:82.666667pt;}
.y0_c00338{bottom:0.000000pt;}
.y1f_c00338{bottom:2.760000pt;}
.y1e_c00338{bottom:6.425219pt;}
.y1d_c00338{bottom:44.813333pt;}
.y1c_c00338{bottom:68.813333pt;}
.y1b_c00338{bottom:91.613333pt;}
.y1a_c00338{bottom:112.013333pt;}
.y19_c00338{bottom:136.813333pt;}
.y18_c00338{bottom:156.680000pt;}
.y17_c00338{bottom:180.946667pt;}
.y16_c00338{bottom:203.080000pt;}
.y15_c00338{bottom:225.080000pt;}
.y14_c00338{bottom:246.280000pt;}
.y13_c00338{bottom:268.813333pt;}
.y12_c00338{bottom:288.946667pt;}
.y11_c00338{bottom:309.346667pt;}
.y10_c00338{bottom:331.213333pt;}
.yf_c00338{bottom:353.080000pt;}
.ye_c00338{bottom:375.080000pt;}
.yd_c00338{bottom:396.946667pt;}
.yc_c00338{bottom:419.080000pt;}
.yb_c00338{bottom:440.680000pt;}
.ya_c00338{bottom:462.680000pt;}
.y9_c00338{bottom:484.546667pt;}
.y8_c00338{bottom:506.680000pt;}
.y7_c00338{bottom:528.680000pt;}
.y6_c00338{bottom:550.013333pt;}
.y5_c00338{bottom:572.813333pt;}
.y4_c00338{bottom:594.680000pt;}
.y3_c00338{bottom:615.880000pt;}
.y2_c00338{bottom:638.413333pt;}
.y1_c00338{bottom:660.680000pt;}
.h5_c00338{height:11.733399pt;}
.h6_c00338{height:38.937500pt;}
.h2_c00338{height:73.244792pt;}
.h3_c00338{height:81.031250pt;}
.h4_c00338{height:83.312500pt;}
.h1_c00338{height:701.333333pt;}
.h0_c00338{height:701.533333pt;}
.w2_c00338{width:93.222667pt;}
.w1_c00338{width:480.000000pt;}
.w0_c00338{width:480.266667pt;}
.x0_c00338{left:0.000000pt;}
.x2_c00338{left:27.066667pt;}
.x5_c00338{left:28.266667pt;}
.x3_c00338{left:29.200000pt;}
.x6_c00338{left:30.266667pt;}
.x8_c00338{left:31.600000pt;}
.x4_c00338{left:33.066667pt;}
.xa_c00338{left:34.266667pt;}
.x9_c00338{left:36.000000pt;}
.x7_c00338{left:36.933333pt;}
.x1_c00338{left:136.533333pt;}
.xb_c00338{left:197.301554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_27ebbb0849a86c85e32f320d.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.284180;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00339;src:url('chunks/assets/font_43a6c78844cdf4dc7608a50f.woff2')format("woff");}.ff3_c00339{font-family:ff3_c00339;line-height:1.568848;font-style:normal;font-weight:normal;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_48edb75eb518f306509ec4af.woff2')format("woff");}.ff4_c00339{font-family:ff4_c00339;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00339;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00339{font-family:ff5_c00339;line-height:1.219238;font-style: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;}
.ls2_c00339{letter-spacing:0.000000px;}
.ls3_c00339{letter-spacing:3.000000px;}
.ls0_c00339{letter-spacing:13.788000px;}
.ls1_c00339{letter-spacing:23.388000px;}
.sc__c00339{text-shadow:none;}
.sc0_c00339{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00339{-webkit-text-stroke:0px transparent;}
.sc0_c00339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00339{word-spacing:-20.352000px;}
.ws1_c00339{word-spacing:0.000000px;}
._3_c00339{margin-left:-20.160000px;}
._10_c00339{margin-left:-11.448000px;}
._f_c00339{margin-left:-10.080000px;}
._e_c00339{margin-left:-8.808000px;}
._d_c00339{margin-left:-7.392000px;}
._9_c00339{margin-left:-5.400000px;}
._8_c00339{margin-left:-3.672000px;}
._a_c00339{margin-left:-2.160000px;}
._7_c00339{margin-left:-1.152000px;}
._1_c00339{width:1.848000px;}
._2_c00339{width:3.024000px;}
._0_c00339{width:4.116000px;}
._4_c00339{width:5.460000px;}
._12_c00339{width:6.732000px;}
._5_c00339{width:7.980000px;}
._6_c00339{width:8.988000px;}
._b_c00339{width:10.800000px;}
._11_c00339{width:12.120000px;}
._c_c00339{width:14.616000px;}
._13_c00339{width:15.744000px;}
.fc2_c00339{color:transparent;}
.fc1_c00339{color:rgb(128,128,128);}
.fc0_c00339{color:rgb(0,0,0);}
.fs4_c00339{font-size:48.000000px;}
.fs2_c00339{font-size:63.000000px;}
.fs3_c00339{font-size:66.000000px;}
.fs1_c00339{font-size:72.000000px;}
.fs0_c00339{font-size:84.000000px;}
.y0_c00339{bottom:0.000000px;}
.y1f_c00339{bottom:3.105000px;}
.y1e_c00339{bottom:7.228371px;}
.y1d_c00339{bottom:44.565000px;}
.y1c_c00339{bottom:67.515000px;}
.y1b_c00339{bottom:92.565000px;}
.y1a_c00339{bottom:117.915000px;}
.y19_c00339{bottom:143.115000px;}
.y18_c00339{bottom:168.765000px;}
.y17_c00339{bottom:195.165000px;}
.y16_c00339{bottom:219.165000px;}
.y15_c00339{bottom:242.715000px;}
.y14_c00339{bottom:267.615000px;}
.y13_c00339{bottom:294.315000px;}
.y12_c00339{bottom:316.665000px;}
.y11_c00339{bottom:343.215000px;}
.y10_c00339{bottom:367.515000px;}
.yf_c00339{bottom:390.915000px;}
.ye_c00339{bottom:416.115000px;}
.yd_c00339{bottom:440.415000px;}
.yc_c00339{bottom:464.715000px;}
.yb_c00339{bottom:488.415000px;}
.ya_c00339{bottom:514.665000px;}
.y9_c00339{bottom:538.065000px;}
.y8_c00339{bottom:562.365000px;}
.y7_c00339{bottom:587.565000px;}
.y6_c00339{bottom:612.315000px;}
.y5_c00339{bottom:636.165000px;}
.y4_c00339{bottom:660.915000px;}
.y3_c00339{bottom:685.515000px;}
.y2_c00339{bottom:710.415000px;}
.y1_c00339{bottom:735.465000px;}
.h5_c00339{height:13.200074px;}
.h6_c00339{height:43.804688px;}
.h2_c00339{height:82.441406px;}
.h4_c00339{height:83.563477px;}
.h3_c00339{height:91.160156px;}
.h0_c00339{height:781.125000px;}
.h1_c00339{height:781.500000px;}
.w2_c00339{width:104.875500px;}
.w0_c00339{width:522.450000px;}
.w1_c00339{width:522.750000px;}
.x0_c00339{left:0.000000px;}
.x4_c00339{left:112.800000px;}
.x6_c00339{left:115.200000px;}
.x7_c00339{left:116.400000px;}
.x5_c00339{left:117.450000px;}
.x3_c00339{left:118.500000px;}
.x2_c00339{left:119.850000px;}
.x9_c00339{left:213.039230px;}
.x1_c00339{left:249.150000px;}
.x8_c00339{left:452.550000px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls2_c00339{letter-spacing:0.000000pt;}
.ls3_c00339{letter-spacing:2.666667pt;}
.ls0_c00339{letter-spacing:12.256000pt;}
.ls1_c00339{letter-spacing:20.789333pt;}
.ws0_c00339{word-spacing:-18.090667pt;}
.ws1_c00339{word-spacing:0.000000pt;}
._3_c00339{margin-left:-17.920000pt;}
._10_c00339{margin-left:-10.176000pt;}
._f_c00339{margin-left:-8.960000pt;}
._e_c00339{margin-left:-7.829333pt;}
._d_c00339{margin-left:-6.570667pt;}
._9_c00339{margin-left:-4.800000pt;}
._8_c00339{margin-left:-3.264000pt;}
._a_c00339{margin-left:-1.920000pt;}
._7_c00339{margin-left:-1.024000pt;}
._1_c00339{width:1.642667pt;}
._2_c00339{width:2.688000pt;}
._0_c00339{width:3.658667pt;}
._4_c00339{width:4.853333pt;}
._12_c00339{width:5.984000pt;}
._5_c00339{width:7.093333pt;}
._6_c00339{width:7.989333pt;}
._b_c00339{width:9.600000pt;}
._11_c00339{width:10.773333pt;}
._c_c00339{width:12.992000pt;}
._13_c00339{width:13.994667pt;}
.fs4_c00339{font-size:42.666667pt;}
.fs2_c00339{font-size:56.000000pt;}
.fs3_c00339{font-size:58.666667pt;}
.fs1_c00339{font-size:64.000000pt;}
.fs0_c00339{font-size:74.666667pt;}
.y0_c00339{bottom:0.000000pt;}
.y1f_c00339{bottom:2.760000pt;}
.y1e_c00339{bottom:6.425219pt;}
.y1d_c00339{bottom:39.613333pt;}
.y1c_c00339{bottom:60.013333pt;}
.y1b_c00339{bottom:82.280000pt;}
.y1a_c00339{bottom:104.813333pt;}
.y19_c00339{bottom:127.213333pt;}
.y18_c00339{bottom:150.013333pt;}
.y17_c00339{bottom:173.480000pt;}
.y16_c00339{bottom:194.813333pt;}
.y15_c00339{bottom:215.746667pt;}
.y14_c00339{bottom:237.880000pt;}
.y13_c00339{bottom:261.613333pt;}
.y12_c00339{bottom:281.480000pt;}
.y11_c00339{bottom:305.080000pt;}
.y10_c00339{bottom:326.680000pt;}
.yf_c00339{bottom:347.480000pt;}
.ye_c00339{bottom:369.880000pt;}
.yd_c00339{bottom:391.480000pt;}
.yc_c00339{bottom:413.080000pt;}
.yb_c00339{bottom:434.146667pt;}
.ya_c00339{bottom:457.480000pt;}
.y9_c00339{bottom:478.280000pt;}
.y8_c00339{bottom:499.880000pt;}
.y7_c00339{bottom:522.280000pt;}
.y6_c00339{bottom:544.280000pt;}
.y5_c00339{bottom:565.480000pt;}
.y4_c00339{bottom:587.480000pt;}
.y3_c00339{bottom:609.346667pt;}
.y2_c00339{bottom:631.480000pt;}
.y1_c00339{bottom:653.746667pt;}
.h5_c00339{height:11.733399pt;}
.h6_c00339{height:38.937500pt;}
.h2_c00339{height:73.281250pt;}
.h4_c00339{height:74.278646pt;}
.h3_c00339{height:81.031250pt;}
.h0_c00339{height:694.333333pt;}
.h1_c00339{height:694.666667pt;}
.w2_c00339{width:93.222667pt;}
.w0_c00339{width:464.400000pt;}
.w1_c00339{width:464.666667pt;}
.x0_c00339{left:0.000000pt;}
.x4_c00339{left:100.266667pt;}
.x6_c00339{left:102.400000pt;}
.x7_c00339{left:103.466667pt;}
.x5_c00339{left:104.400000pt;}
.x3_c00339{left:105.333333pt;}
.x2_c00339{left:106.533333pt;}
.x9_c00339{left:189.368205pt;}
.x1_c00339{left:221.466667pt;}
.x8_c00339{left:402.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d37fa2c98e9fc4673b9fdb58.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.480469;font-style:normal;font-weight:normal;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_e18313322f247c2169620456.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:1.568848;font-style:normal;font-weight:normal;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_60f7cf38bdf301d6fca0a70f.woff2')format("woff");}.ff3_c00340{font-family:ff3_c00340;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00340{font-family:ff4_c00340;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00340{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00340{vertical-align:0.000000px;}
.ls2_c00340{letter-spacing:-6.000000px;}
.ls1_c00340{letter-spacing:0.000000px;}
.ls0_c00340{letter-spacing:3.000000px;}
.sc__c00340{text-shadow:none;}
.sc0_c00340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00340{-webkit-text-stroke:0px transparent;}
.sc0_c00340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00340{word-spacing:-24.051000px;}
.ws1_c00340{word-spacing:-20.352000px;}
.ws2_c00340{word-spacing:0.000000px;}
._13_c00340{margin-left:-20.520000px;}
._4_c00340{margin-left:-17.352000px;}
._1a_c00340{margin-left:-15.384000px;}
._f_c00340{margin-left:-13.968000px;}
._15_c00340{margin-left:-12.816000px;}
._10_c00340{margin-left:-11.376000px;}
._12_c00340{margin-left:-10.368000px;}
._c_c00340{margin-left:-9.144000px;}
._e_c00340{margin-left:-7.272000px;}
._18_c00340{margin-left:-6.120000px;}
._11_c00340{margin-left:-5.112000px;}
._5_c00340{margin-left:-3.960000px;}
._b_c00340{margin-left:-2.952000px;}
._d_c00340{margin-left:-1.800000px;}
._3_c00340{width:1.008000px;}
._2_c00340{width:2.160000px;}
._6_c00340{width:3.600000px;}
._7_c00340{width:4.968000px;}
._8_c00340{width:6.912000px;}
._17_c00340{width:7.920000px;}
._1_c00340{width:8.928000px;}
._a_c00340{width:10.152000px;}
._19_c00340{width:11.160000px;}
._16_c00340{width:12.456000px;}
._0_c00340{width:14.184000px;}
._14_c00340{width:15.624000px;}
._1b_c00340{width:16.848000px;}
._9_c00340{width:298.320000px;}
.fc2_c00340{color:transparent;}
.fc1_c00340{color:rgb(128,128,128);}
.fc0_c00340{color:rgb(0,0,0);}
.fs2_c00340{font-size:48.000000px;}
.fs1_c00340{font-size:63.000000px;}
.fs0_c00340{font-size:72.000000px;}
.y0_c00340{bottom:0.000000px;}
.y1f_c00340{bottom:3.105000px;}
.y1e_c00340{bottom:7.228357px;}
.y1d_c00340{bottom:69.480000px;}
.y1c_c00340{bottom:95.880000px;}
.y1b_c00340{bottom:120.480000px;}
.y1a_c00340{bottom:145.530000px;}
.y19_c00340{bottom:170.130000px;}
.y18_c00340{bottom:194.130000px;}
.y17_c00340{bottom:218.730000px;}
.y16_c00340{bottom:244.380000px;}
.y15_c00340{bottom:269.280000px;}
.y14_c00340{bottom:292.680000px;}
.y13_c00340{bottom:316.230000px;}
.y12_c00340{bottom:340.530000px;}
.y11_c00340{bottom:364.530000px;}
.y10_c00340{bottom:389.430000px;}
.yf_c00340{bottom:414.180000px;}
.ye_c00340{bottom:438.780000px;}
.yd_c00340{bottom:463.080000px;}
.yc_c00340{bottom:487.680000px;}
.yb_c00340{bottom:512.430000px;}
.ya_c00340{bottom:536.580000px;}
.y9_c00340{bottom:561.330000px;}
.y8_c00340{bottom:586.230000px;}
.y7_c00340{bottom:610.230000px;}
.y6_c00340{bottom:635.130000px;}
.y5_c00340{bottom:659.130000px;}
.y4_c00340{bottom:683.880000px;}
.y3_c00340{bottom:708.780000px;}
.y2_c00340{bottom:733.080000px;}
.y1_c00340{bottom:757.380000px;}
.h3_c00340{height:13.200074px;}
.h4_c00340{height:43.804688px;}
.h2_c00340{height:91.160156px;}
.h1_c00340{height:796.500000px;}
.h0_c00340{height:796.800000px;}
.w2_c00340{width:104.875500px;}
.w0_c00340{width:540.525000px;}
.w1_c00340{width:540.750000px;}
.x0_c00340{left:0.000000px;}
.x2_c00340{left:25.950000px;}
.x3_c00340{left:27.000000px;}
.x4_c00340{left:29.400000px;}
.x5_c00340{left:30.750000px;}
.x6_c00340{left:32.100000px;}
.x7_c00340{left:33.300000px;}
.x8_c00340{left:34.650000px;}
.xa_c00340{left:37.050000px;}
.x9_c00340{left:62.700000px;}
.xb_c00340{left:80.700000px;}
.x1_c00340{left:154.200000px;}
.xd_c00340{left:222.076767px;}
.xc_c00340{left:348.000000px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls2_c00340{letter-spacing:-5.333333pt;}
.ls1_c00340{letter-spacing:0.000000pt;}
.ls0_c00340{letter-spacing:2.666667pt;}
.ws0_c00340{word-spacing:-21.378667pt;}
.ws1_c00340{word-spacing:-18.090667pt;}
.ws2_c00340{word-spacing:0.000000pt;}
._13_c00340{margin-left:-18.240000pt;}
._4_c00340{margin-left:-15.424000pt;}
._1a_c00340{margin-left:-13.674667pt;}
._f_c00340{margin-left:-12.416000pt;}
._15_c00340{margin-left:-11.392000pt;}
._10_c00340{margin-left:-10.112000pt;}
._12_c00340{margin-left:-9.216000pt;}
._c_c00340{margin-left:-8.128000pt;}
._e_c00340{margin-left:-6.464000pt;}
._18_c00340{margin-left:-5.440000pt;}
._11_c00340{margin-left:-4.544000pt;}
._5_c00340{margin-left:-3.520000pt;}
._b_c00340{margin-left:-2.624000pt;}
._d_c00340{margin-left:-1.600000pt;}
._3_c00340{width:0.896000pt;}
._2_c00340{width:1.920000pt;}
._6_c00340{width:3.200000pt;}
._7_c00340{width:4.416000pt;}
._8_c00340{width:6.144000pt;}
._17_c00340{width:7.040000pt;}
._1_c00340{width:7.936000pt;}
._a_c00340{width:9.024000pt;}
._19_c00340{width:9.920000pt;}
._16_c00340{width:11.072000pt;}
._0_c00340{width:12.608000pt;}
._14_c00340{width:13.888000pt;}
._1b_c00340{width:14.976000pt;}
._9_c00340{width:265.173333pt;}
.fs2_c00340{font-size:42.666667pt;}
.fs1_c00340{font-size:56.000000pt;}
.fs0_c00340{font-size:64.000000pt;}
.y0_c00340{bottom:0.000000pt;}
.y1f_c00340{bottom:2.760000pt;}
.y1e_c00340{bottom:6.425206pt;}
.y1d_c00340{bottom:61.760000pt;}
.y1c_c00340{bottom:85.226667pt;}
.y1b_c00340{bottom:107.093333pt;}
.y1a_c00340{bottom:129.360000pt;}
.y19_c00340{bottom:151.226667pt;}
.y18_c00340{bottom:172.560000pt;}
.y17_c00340{bottom:194.426667pt;}
.y16_c00340{bottom:217.226667pt;}
.y15_c00340{bottom:239.360000pt;}
.y14_c00340{bottom:260.160000pt;}
.y13_c00340{bottom:281.093333pt;}
.y12_c00340{bottom:302.693333pt;}
.y11_c00340{bottom:324.026667pt;}
.y10_c00340{bottom:346.160000pt;}
.yf_c00340{bottom:368.160000pt;}
.ye_c00340{bottom:390.026667pt;}
.yd_c00340{bottom:411.626667pt;}
.yc_c00340{bottom:433.493333pt;}
.yb_c00340{bottom:455.493333pt;}
.ya_c00340{bottom:476.960000pt;}
.y9_c00340{bottom:498.960000pt;}
.y8_c00340{bottom:521.093333pt;}
.y7_c00340{bottom:542.426667pt;}
.y6_c00340{bottom:564.560000pt;}
.y5_c00340{bottom:585.893333pt;}
.y4_c00340{bottom:607.893333pt;}
.y3_c00340{bottom:630.026667pt;}
.y2_c00340{bottom:651.626667pt;}
.y1_c00340{bottom:673.226667pt;}
.h3_c00340{height:11.733399pt;}
.h4_c00340{height:38.937500pt;}
.h2_c00340{height:81.031250pt;}
.h1_c00340{height:708.000000pt;}
.h0_c00340{height:708.266667pt;}
.w2_c00340{width:93.222667pt;}
.w0_c00340{width:480.466667pt;}
.w1_c00340{width:480.666667pt;}
.x0_c00340{left:0.000000pt;}
.x2_c00340{left:23.066667pt;}
.x3_c00340{left:24.000000pt;}
.x4_c00340{left:26.133333pt;}
.x5_c00340{left:27.333333pt;}
.x6_c00340{left:28.533333pt;}
.x7_c00340{left:29.600000pt;}
.x8_c00340{left:30.800000pt;}
.xa_c00340{left:32.933333pt;}
.x9_c00340{left:55.733333pt;}
.xb_c00340{left:71.733333pt;}
.x1_c00340{left:137.066667pt;}
.xd_c00340{left:197.401571pt;}
.xc_c00340{left:309.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_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_d6e687aee5b407d12ef56e74.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00341;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00341;src:url('chunks/assets/font_8b8aec9c32ca3620e2635fc0.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:1.568848;font-style:normal;font-weight:normal;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_7f2526e1a8dedbaa18ac6454.woff2')format("woff");}.ff4_c00341{font-family:ff4_c00341;line-height:1.435059;font-style:normal;font-weight:normal;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_53880313b2ed6bce3d21067f.woff2')format("woff");}.ff5_c00341{font-family:ff5_c00341;line-height:1.402354;font-style:normal;font-weight:normal;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_73b98ebae952f361622522bb.woff2')format("woff");}.ff6_c00341{font-family:ff6_c00341;line-height:1.480469;font-style:normal;font-weight: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_48930947a84cd3824d38c190.woff2')format("woff");}.ff7_c00341{font-family:ff7_c00341;line-height:1.575000;font-style:normal;font-weight: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_0cd28848117c522636214637.woff2')format("woff");}.ff8_c00341{font-family:ff8_c00341;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00341{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00341{vertical-align:0.000000px;}
.ls2_c00341{letter-spacing:-6.000000px;}
.ls1_c00341{letter-spacing:0.000000px;}
.ls0_c00341{letter-spacing:3.000000px;}
.sc__c00341{text-shadow:none;}
.sc0_c00341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00341{-webkit-text-stroke:0px transparent;}
.sc0_c00341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00341{word-spacing:-33.192000px;}
.ws2_c00341{word-spacing:-24.051000px;}
.ws3_c00341{word-spacing:-20.352000px;}
.ws0_c00341{word-spacing:-0.063000px;}
.ws4_c00341{word-spacing:0.000000px;}
._15_c00341{margin-left:-13.524000px;}
._16_c00341{margin-left:-12.144000px;}
._1_c00341{margin-left:-8.232000px;}
._11_c00341{margin-left:-6.840000px;}
._d_c00341{margin-left:-5.712000px;}
._8_c00341{margin-left:-4.584000px;}
._5_c00341{margin-left:-3.384000px;}
._6_c00341{margin-left:-2.088000px;}
._a_c00341{margin-left:-1.080000px;}
._0_c00341{width:1.596000px;}
._7_c00341{width:2.652000px;}
._2_c00341{width:4.284000px;}
._f_c00341{width:5.376000px;}
._3_c00341{width:7.056000px;}
._4_c00341{width:8.436000px;}
._c_c00341{width:9.684000px;}
._10_c00341{width:10.968000px;}
._b_c00341{width:12.096000px;}
._e_c00341{width:13.728000px;}
._9_c00341{width:16.236000px;}
._12_c00341{width:17.400000px;}
._14_c00341{width:29.400000px;}
._13_c00341{width:37.620000px;}
.fc2_c00341{color:transparent;}
.fc1_c00341{color:rgb(128,128,128);}
.fc0_c00341{color:rgb(0,0,0);}
.fs4_c00341{font-size:48.000000px;}
.fs3_c00341{font-size:54.000000px;}
.fs2_c00341{font-size:63.000000px;}
.fs1_c00341{font-size:72.000000px;}
.fs0_c00341{font-size:84.000000px;}
.y0_c00341{bottom:0.000000px;}
.y1f_c00341{bottom:3.105000px;}
.y1e_c00341{bottom:7.228371px;}
.y1d_c00341{bottom:54.465000px;}
.y1c_c00341{bottom:76.365000px;}
.y1b_c00341{bottom:102.015000px;}
.y1a_c00341{bottom:127.215000px;}
.y19_c00341{bottom:153.015000px;}
.y18_c00341{bottom:177.165000px;}
.y17_c00341{bottom:201.915000px;}
.y16_c00341{bottom:227.265000px;}
.y15_c00341{bottom:251.415000px;}
.y14_c00341{bottom:276.465000px;}
.y13_c00341{bottom:301.515000px;}
.y12_c00341{bottom:325.365000px;}
.y11_c00341{bottom:349.965000px;}
.y10_c00341{bottom:374.715000px;}
.yf_c00341{bottom:399.315000px;}
.ye_c00341{bottom:423.315000px;}
.yd_c00341{bottom:448.215000px;}
.yc_c00341{bottom:471.615000px;}
.yb_c00341{bottom:497.115000px;}
.ya_c00341{bottom:521.865000px;}
.y9_c00341{bottom:546.165000px;}
.y8_c00341{bottom:571.065000px;}
.y7_c00341{bottom:595.665000px;}
.y6_c00341{bottom:620.115000px;}
.y5_c00341{bottom:644.415000px;}
.y4_c00341{bottom:669.615000px;}
.y3_c00341{bottom:694.215000px;}
.y2_c00341{bottom:718.215000px;}
.y1_c00341{bottom:744.165000px;}
.h4_c00341{height:13.200074px;}
.h5_c00341{height:43.804688px;}
.h2_c00341{height:82.441406px;}
.h3_c00341{height:91.160156px;}
.h0_c00341{height:778.425000px;}
.h1_c00341{height:778.500000px;}
.w2_c00341{width:104.875500px;}
.w1_c00341{width:512.250000px;}
.w0_c00341{width:512.475000px;}
.x0_c00341{left:0.000000px;}
.x5_c00341{left:99.900000px;}
.x4_c00341{left:101.250000px;}
.x3_c00341{left:102.300000px;}
.x6_c00341{left:103.500000px;}
.x7_c00341{left:105.300000px;}
.x2_c00341{left:108.600000px;}
.x9_c00341{left:208.051758px;}
.x1_c00341{left:229.800000px;}
.x8_c00341{left:456.300000px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls2_c00341{letter-spacing:-5.333333pt;}
.ls1_c00341{letter-spacing:0.000000pt;}
.ls0_c00341{letter-spacing:2.666667pt;}
.ws1_c00341{word-spacing:-29.504000pt;}
.ws2_c00341{word-spacing:-21.378667pt;}
.ws3_c00341{word-spacing:-18.090667pt;}
.ws0_c00341{word-spacing:-0.056000pt;}
.ws4_c00341{word-spacing:0.000000pt;}
._15_c00341{margin-left:-12.021333pt;}
._16_c00341{margin-left:-10.794667pt;}
._1_c00341{margin-left:-7.317333pt;}
._11_c00341{margin-left:-6.080000pt;}
._d_c00341{margin-left:-5.077333pt;}
._8_c00341{margin-left:-4.074667pt;}
._5_c00341{margin-left:-3.008000pt;}
._6_c00341{margin-left:-1.856000pt;}
._a_c00341{margin-left:-0.960000pt;}
._0_c00341{width:1.418667pt;}
._7_c00341{width:2.357333pt;}
._2_c00341{width:3.808000pt;}
._f_c00341{width:4.778667pt;}
._3_c00341{width:6.272000pt;}
._4_c00341{width:7.498667pt;}
._c_c00341{width:8.608000pt;}
._10_c00341{width:9.749333pt;}
._b_c00341{width:10.752000pt;}
._e_c00341{width:12.202667pt;}
._9_c00341{width:14.432000pt;}
._12_c00341{width:15.466667pt;}
._14_c00341{width:26.133333pt;}
._13_c00341{width:33.440000pt;}
.fs4_c00341{font-size:42.666667pt;}
.fs3_c00341{font-size:48.000000pt;}
.fs2_c00341{font-size:56.000000pt;}
.fs1_c00341{font-size:64.000000pt;}
.fs0_c00341{font-size:74.666667pt;}
.y0_c00341{bottom:0.000000pt;}
.y1f_c00341{bottom:2.760000pt;}
.y1e_c00341{bottom:6.425219pt;}
.y1d_c00341{bottom:48.413333pt;}
.y1c_c00341{bottom:67.880000pt;}
.y1b_c00341{bottom:90.680000pt;}
.y1a_c00341{bottom:113.080000pt;}
.y19_c00341{bottom:136.013333pt;}
.y18_c00341{bottom:157.480000pt;}
.y17_c00341{bottom:179.480000pt;}
.y16_c00341{bottom:202.013333pt;}
.y15_c00341{bottom:223.480000pt;}
.y14_c00341{bottom:245.746667pt;}
.y13_c00341{bottom:268.013333pt;}
.y12_c00341{bottom:289.213333pt;}
.y11_c00341{bottom:311.080000pt;}
.y10_c00341{bottom:333.080000pt;}
.yf_c00341{bottom:354.946667pt;}
.ye_c00341{bottom:376.280000pt;}
.yd_c00341{bottom:398.413333pt;}
.yc_c00341{bottom:419.213333pt;}
.yb_c00341{bottom:441.880000pt;}
.ya_c00341{bottom:463.880000pt;}
.y9_c00341{bottom:485.480000pt;}
.y8_c00341{bottom:507.613333pt;}
.y7_c00341{bottom:529.480000pt;}
.y6_c00341{bottom:551.213333pt;}
.y5_c00341{bottom:572.813333pt;}
.y4_c00341{bottom:595.213333pt;}
.y3_c00341{bottom:617.080000pt;}
.y2_c00341{bottom:638.413333pt;}
.y1_c00341{bottom:661.480000pt;}
.h4_c00341{height:11.733399pt;}
.h5_c00341{height:38.937500pt;}
.h2_c00341{height:73.281250pt;}
.h3_c00341{height:81.031250pt;}
.h0_c00341{height:691.933333pt;}
.h1_c00341{height:692.000000pt;}
.w2_c00341{width:93.222667pt;}
.w1_c00341{width:455.333333pt;}
.w0_c00341{width:455.533333pt;}
.x0_c00341{left:0.000000pt;}
.x5_c00341{left:88.800000pt;}
.x4_c00341{left:90.000000pt;}
.x3_c00341{left:90.933333pt;}
.x6_c00341{left:92.000000pt;}
.x7_c00341{left:93.600000pt;}
.x2_c00341{left:96.533333pt;}
.x9_c00341{left:184.934896pt;}
.x1_c00341{left:204.266667pt;}
.x8_c00341{left:405.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_81f5c694bd1391218005e2d0.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00342;src:url('chunks/assets/font_ce889cbaa6c027fef6a2b3b9.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:1.568848;font-style:normal;font-weight:normal;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_6edf80936ffa24d7bdd7d9ee.woff2')format("woff");}.ff3_c00342{font-family:ff3_c00342;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00342;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00342{font-family:ff4_c00342;line-height:1.219238;font-style: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;}
.ls2_c00342{letter-spacing:3.000000px;}
.ls0_c00342{letter-spacing:16.464000px;}
.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:-33.192000px;}
.ws1_c00342{word-spacing:-20.352000px;}
.ws2_c00342{word-spacing:0.000000px;}
._e_c00342{margin-left:-8.640000px;}
._c_c00342{margin-left:-6.120000px;}
._a_c00342{margin-left:-4.248000px;}
._d_c00342{margin-left:-3.168000px;}
._7_c00342{margin-left:-2.088000px;}
._8_c00342{margin-left:-1.080000px;}
._6_c00342{width:1.368000px;}
._9_c00342{width:2.376000px;}
._b_c00342{width:3.816000px;}
._2_c00342{width:5.796000px;}
._12_c00342{width:7.428000px;}
._1_c00342{width:9.492000px;}
._3_c00342{width:10.500000px;}
._f_c00342{width:12.384000px;}
._10_c00342{width:13.404000px;}
._0_c00342{width:14.952000px;}
._11_c00342{width:16.926000px;}
._5_c00342{width:18.984000px;}
._17_c00342{width:22.200000px;}
._15_c00342{width:25.920000px;}
._16_c00342{width:26.928000px;}
._14_c00342{width:29.376000px;}
._13_c00342{width:33.918000px;}
._4_c00342{width:309.372000px;}
.fc2_c00342{color:transparent;}
.fc1_c00342{color:rgb(128,128,128);}
.fc0_c00342{color:rgb(0,0,0);}
.fs3_c00342{font-size:48.000000px;}
.fs2_c00342{font-size:51.000000px;}
.fs1_c00342{font-size:72.000000px;}
.fs0_c00342{font-size:84.000000px;}
.y0_c00342{bottom:0.000000px;}
.y1f_c00342{bottom:3.105000px;}
.y1e_c00342{bottom:7.228355px;}
.y1d_c00342{bottom:32.085000px;}
.y1c_c00342{bottom:59.985000px;}
.y1b_c00342{bottom:85.935000px;}
.y1a_c00342{bottom:111.285000px;}
.y19_c00342{bottom:136.035000px;}
.y18_c00342{bottom:160.935000px;}
.y17_c00342{bottom:185.985000px;}
.y16_c00342{bottom:210.885000px;}
.y15_c00342{bottom:234.885000px;}
.y14_c00342{bottom:260.085000px;}
.y13_c00342{bottom:285.135000px;}
.y12_c00342{bottom:308.685000px;}
.y11_c00342{bottom:331.335000px;}
.y10_c00342{bottom:355.635000px;}
.yf_c00342{bottom:381.585000px;}
.ye_c00342{bottom:404.685000px;}
.yd_c00342{bottom:430.335000px;}
.yc_c00342{bottom:454.935000px;}
.yb_c00342{bottom:479.235000px;}
.ya_c00342{bottom:504.135000px;}
.y9_c00342{bottom:528.735000px;}
.y8_c00342{bottom:553.485000px;}
.y7_c00342{bottom:578.385000px;}
.y6_c00342{bottom:602.985000px;}
.y5_c00342{bottom:628.035000px;}
.y4_c00342{bottom:652.335000px;}
.y3_c00342{bottom:676.635000px;}
.y2_c00342{bottom:701.535000px;}
.y1_c00342{bottom:727.335000px;}
.h4_c00342{height:13.200074px;}
.h5_c00342{height:43.804688px;}
.h2_c00342{height:82.400391px;}
.h3_c00342{height:91.160156px;}
.h1_c00342{height:780.750000px;}
.h0_c00342{height:780.825000px;}
.w2_c00342{width:104.875500px;}
.w0_c00342{width:542.700000px;}
.w1_c00342{width:543.000000px;}
.x0_c00342{left:0.000000px;}
.x2_c00342{left:28.350000px;}
.x3_c00342{left:29.400000px;}
.x4_c00342{left:30.600000px;}
.x5_c00342{left:32.400000px;}
.x6_c00342{left:33.750000px;}
.x8_c00342{left:34.800000px;}
.x7_c00342{left:35.850000px;}
.x1_c00342{left:148.050000px;}
.xa_c00342{left:223.164230px;}
.x9_c00342{left:381.150000px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls1_c00342{letter-spacing:0.000000pt;}
.ls2_c00342{letter-spacing:2.666667pt;}
.ls0_c00342{letter-spacing:14.634667pt;}
.ws0_c00342{word-spacing:-29.504000pt;}
.ws1_c00342{word-spacing:-18.090667pt;}
.ws2_c00342{word-spacing:0.000000pt;}
._e_c00342{margin-left:-7.680000pt;}
._c_c00342{margin-left:-5.440000pt;}
._a_c00342{margin-left:-3.776000pt;}
._d_c00342{margin-left:-2.816000pt;}
._7_c00342{margin-left:-1.856000pt;}
._8_c00342{margin-left:-0.960000pt;}
._6_c00342{width:1.216000pt;}
._9_c00342{width:2.112000pt;}
._b_c00342{width:3.392000pt;}
._2_c00342{width:5.152000pt;}
._12_c00342{width:6.602667pt;}
._1_c00342{width:8.437333pt;}
._3_c00342{width:9.333333pt;}
._f_c00342{width:11.008000pt;}
._10_c00342{width:11.914667pt;}
._0_c00342{width:13.290667pt;}
._11_c00342{width:15.045333pt;}
._5_c00342{width:16.874667pt;}
._17_c00342{width:19.733333pt;}
._15_c00342{width:23.040000pt;}
._16_c00342{width:23.936000pt;}
._14_c00342{width:26.112000pt;}
._13_c00342{width:30.149333pt;}
._4_c00342{width:274.997333pt;}
.fs3_c00342{font-size:42.666667pt;}
.fs2_c00342{font-size:45.333333pt;}
.fs1_c00342{font-size:64.000000pt;}
.fs0_c00342{font-size:74.666667pt;}
.y0_c00342{bottom:0.000000pt;}
.y1f_c00342{bottom:2.760000pt;}
.y1e_c00342{bottom:6.425204pt;}
.y1d_c00342{bottom:28.520000pt;}
.y1c_c00342{bottom:53.320000pt;}
.y1b_c00342{bottom:76.386667pt;}
.y1a_c00342{bottom:98.920000pt;}
.y19_c00342{bottom:120.920000pt;}
.y18_c00342{bottom:143.053333pt;}
.y17_c00342{bottom:165.320000pt;}
.y16_c00342{bottom:187.453333pt;}
.y15_c00342{bottom:208.786667pt;}
.y14_c00342{bottom:231.186667pt;}
.y13_c00342{bottom:253.453333pt;}
.y12_c00342{bottom:274.386667pt;}
.y11_c00342{bottom:294.520000pt;}
.y10_c00342{bottom:316.120000pt;}
.yf_c00342{bottom:339.186667pt;}
.ye_c00342{bottom:359.720000pt;}
.yd_c00342{bottom:382.520000pt;}
.yc_c00342{bottom:404.386667pt;}
.yb_c00342{bottom:425.986667pt;}
.ya_c00342{bottom:448.120000pt;}
.y9_c00342{bottom:469.986667pt;}
.y8_c00342{bottom:491.986667pt;}
.y7_c00342{bottom:514.120000pt;}
.y6_c00342{bottom:535.986667pt;}
.y5_c00342{bottom:558.253333pt;}
.y4_c00342{bottom:579.853333pt;}
.y3_c00342{bottom:601.453333pt;}
.y2_c00342{bottom:623.586667pt;}
.y1_c00342{bottom:646.520000pt;}
.h4_c00342{height:11.733399pt;}
.h5_c00342{height:38.937500pt;}
.h2_c00342{height:73.244792pt;}
.h3_c00342{height:81.031250pt;}
.h1_c00342{height:694.000000pt;}
.h0_c00342{height:694.066667pt;}
.w2_c00342{width:93.222667pt;}
.w0_c00342{width:482.400000pt;}
.w1_c00342{width:482.666667pt;}
.x0_c00342{left:0.000000pt;}
.x2_c00342{left:25.200000pt;}
.x3_c00342{left:26.133333pt;}
.x4_c00342{left:27.200000pt;}
.x5_c00342{left:28.800000pt;}
.x6_c00342{left:30.000000pt;}
.x8_c00342{left:30.933333pt;}
.x7_c00342{left:31.866667pt;}
.x1_c00342{left:131.600000pt;}
.xa_c00342{left:198.368205pt;}
.x9_c00342{left:338.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b8b5a2479d1b9475e941e71a.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00343;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00343;src:url('chunks/assets/font_abf6f5ac9d62b18c2c3ee6a4.woff2')format("woff");}.ff3_c00343{font-family:ff3_c00343;line-height:1.568848;font-style:normal;font-weight:normal;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_bb5bee43aef706d51ce8d27f.woff2')format("woff");}.ff4_c00343{font-family:ff4_c00343;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00343;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00343{font-family:ff5_c00343;line-height:1.219238;font-style: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:3.000000px;}
.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:-42.000000px;}
.ws1_c00343{word-spacing:-33.192000px;}
.ws2_c00343{word-spacing:-20.352000px;}
.ws3_c00343{word-spacing:0.000000px;}
._10_c00343{margin-left:-19.296000px;}
._e_c00343{margin-left:-16.848000px;}
._f_c00343{margin-left:-13.608000px;}
._12_c00343{margin-left:-11.700000px;}
._14_c00343{margin-left:-10.224000px;}
._13_c00343{margin-left:-9.108000px;}
._3_c00343{margin-left:-7.992000px;}
._8_c00343{margin-left:-6.768000px;}
._4_c00343{margin-left:-4.752000px;}
._5_c00343{margin-left:-3.636000px;}
._9_c00343{margin-left:-2.160000px;}
._a_c00343{margin-left:-1.032000px;}
._6_c00343{width:1.224000px;}
._1_c00343{width:2.436000px;}
._7_c00343{width:3.456000px;}
._2_c00343{width:4.536000px;}
._0_c00343{width:5.964000px;}
._c_c00343{width:7.476000px;}
._b_c00343{width:8.976000px;}
._d_c00343{width:10.296000px;}
._18_c00343{width:11.892000px;}
._15_c00343{width:14.748000px;}
._16_c00343{width:18.864000px;}
._17_c00343{width:28.248000px;}
._11_c00343{width:67.392000px;}
.fc2_c00343{color:transparent;}
.fc1_c00343{color:rgb(128,128,128);}
.fc0_c00343{color:rgb(0,0,0);}
.fs2_c00343{font-size:48.000000px;}
.fs1_c00343{font-size:72.000000px;}
.fs0_c00343{font-size:84.000000px;}
.y0_c00343{bottom:0.000000px;}
.y1f_c00343{bottom:3.105000px;}
.y1e_c00343{bottom:7.228371px;}
.y1d_c00343{bottom:47.565000px;}
.y1c_c00343{bottom:69.915000px;}
.y1b_c00343{bottom:96.165000px;}
.y1a_c00343{bottom:121.065000px;}
.y19_c00343{bottom:146.265000px;}
.y18_c00343{bottom:171.465000px;}
.y17_c00343{bottom:196.215000px;}
.y16_c00343{bottom:221.715000px;}
.y15_c00343{bottom:247.515000px;}
.y14_c00343{bottom:270.765000px;}
.y13_c00343{bottom:298.665000px;}
.y12_c00343{bottom:321.015000px;}
.y11_c00343{bottom:346.065000px;}
.y10_c00343{bottom:370.215000px;}
.yf_c00343{bottom:394.965000px;}
.ye_c00343{bottom:418.215000px;}
.yd_c00343{bottom:443.115000px;}
.yc_c00343{bottom:470.865000px;}
.yb_c00343{bottom:492.165000px;}
.ya_c00343{bottom:517.065000px;}
.y9_c00343{bottom:541.815000px;}
.y8_c00343{bottom:566.115000px;}
.y7_c00343{bottom:591.015000px;}
.y6_c00343{bottom:616.065000px;}
.y5_c00343{bottom:640.665000px;}
.y4_c00343{bottom:665.565000px;}
.y3_c00343{bottom:690.165000px;}
.y2_c00343{bottom:714.615000px;}
.y1_c00343{bottom:740.265000px;}
.h4_c00343{height:13.200074px;}
.h5_c00343{height:43.804688px;}
.h2_c00343{height:82.441406px;}
.h3_c00343{height:91.160156px;}
.h1_c00343{height:789.000000px;}
.h0_c00343{height:789.225000px;}
.w2_c00343{width:104.875500px;}
.w0_c00343{width:501.375000px;}
.w1_c00343{width:501.750000px;}
.x0_c00343{left:0.000000px;}
.x5_c00343{left:85.050000px;}
.x4_c00343{left:86.100000px;}
.x3_c00343{left:87.750000px;}
.x2_c00343{left:89.850000px;}
.x7_c00343{left:202.501740px;}
.x1_c00343{left:216.300000px;}
.x6_c00343{left:415.500000px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls0_c00343{letter-spacing:0.000000pt;}
.ls1_c00343{letter-spacing:2.666667pt;}
.ws0_c00343{word-spacing:-37.333333pt;}
.ws1_c00343{word-spacing:-29.504000pt;}
.ws2_c00343{word-spacing:-18.090667pt;}
.ws3_c00343{word-spacing:0.000000pt;}
._10_c00343{margin-left:-17.152000pt;}
._e_c00343{margin-left:-14.976000pt;}
._f_c00343{margin-left:-12.096000pt;}
._12_c00343{margin-left:-10.400000pt;}
._14_c00343{margin-left:-9.088000pt;}
._13_c00343{margin-left:-8.096000pt;}
._3_c00343{margin-left:-7.104000pt;}
._8_c00343{margin-left:-6.016000pt;}
._4_c00343{margin-left:-4.224000pt;}
._5_c00343{margin-left:-3.232000pt;}
._9_c00343{margin-left:-1.920000pt;}
._a_c00343{margin-left:-0.917333pt;}
._6_c00343{width:1.088000pt;}
._1_c00343{width:2.165333pt;}
._7_c00343{width:3.072000pt;}
._2_c00343{width:4.032000pt;}
._0_c00343{width:5.301333pt;}
._c_c00343{width:6.645333pt;}
._b_c00343{width:7.978667pt;}
._d_c00343{width:9.152000pt;}
._18_c00343{width:10.570667pt;}
._15_c00343{width:13.109333pt;}
._16_c00343{width:16.768000pt;}
._17_c00343{width:25.109333pt;}
._11_c00343{width:59.904000pt;}
.fs2_c00343{font-size:42.666667pt;}
.fs1_c00343{font-size:64.000000pt;}
.fs0_c00343{font-size:74.666667pt;}
.y0_c00343{bottom:0.000000pt;}
.y1f_c00343{bottom:2.760000pt;}
.y1e_c00343{bottom:6.425219pt;}
.y1d_c00343{bottom:42.280000pt;}
.y1c_c00343{bottom:62.146667pt;}
.y1b_c00343{bottom:85.480000pt;}
.y1a_c00343{bottom:107.613333pt;}
.y19_c00343{bottom:130.013333pt;}
.y18_c00343{bottom:152.413333pt;}
.y17_c00343{bottom:174.413333pt;}
.y16_c00343{bottom:197.080000pt;}
.y15_c00343{bottom:220.013333pt;}
.y14_c00343{bottom:240.680000pt;}
.y13_c00343{bottom:265.480000pt;}
.y12_c00343{bottom:285.346667pt;}
.y11_c00343{bottom:307.613333pt;}
.y10_c00343{bottom:329.080000pt;}
.yf_c00343{bottom:351.080000pt;}
.ye_c00343{bottom:371.746667pt;}
.yd_c00343{bottom:393.880000pt;}
.yc_c00343{bottom:418.546667pt;}
.yb_c00343{bottom:437.480000pt;}
.ya_c00343{bottom:459.613333pt;}
.y9_c00343{bottom:481.613333pt;}
.y8_c00343{bottom:503.213333pt;}
.y7_c00343{bottom:525.346667pt;}
.y6_c00343{bottom:547.613333pt;}
.y5_c00343{bottom:569.480000pt;}
.y4_c00343{bottom:591.613333pt;}
.y3_c00343{bottom:613.480000pt;}
.y2_c00343{bottom:635.213333pt;}
.y1_c00343{bottom:658.013333pt;}
.h4_c00343{height:11.733399pt;}
.h5_c00343{height:38.937500pt;}
.h2_c00343{height:73.281250pt;}
.h3_c00343{height:81.031250pt;}
.h1_c00343{height:701.333333pt;}
.h0_c00343{height:701.533333pt;}
.w2_c00343{width:93.222667pt;}
.w0_c00343{width:445.666667pt;}
.w1_c00343{width:446.000000pt;}
.x0_c00343{left:0.000000pt;}
.x5_c00343{left:75.600000pt;}
.x4_c00343{left:76.533333pt;}
.x3_c00343{left:78.000000pt;}
.x2_c00343{left:79.866667pt;}
.x7_c00343{left:180.001546pt;}
.x1_c00343{left:192.266667pt;}
.x6_c00343{left:369.333333pt;}
}





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

.ir_c00344:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00344{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00344;src:url('chunks/assets/font_3abd6eaf36a75b19c769432c.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00344;src:url('chunks/assets/font_5f04510002ee1b6b7eb0a3a1.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00344;src:url('chunks/assets/font_bcff93b22096d9de745e4664.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00344;src:url('chunks/assets/font_bf149a3575804d0d294282d5.woff2')format("woff");}.ff4_c00344{font-family:ff4_c00344;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00344;src:url('chunks/assets/font_42ca6a7f4ee780e6466fa4ba.woff2')format("woff");}.ff5_c00344{font-family:ff5_c00344;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00344;src:url('chunks/assets/font_06e0fe9b58185cfa61caed69.woff2')format("woff");}.ff6_c00344{font-family:ff6_c00344;line-height:1.480469;font-style:normal;font-weight: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_c00344;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00344{font-family:ff7_c00344;line-height:1.219238;font-style: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);}
.v1_c00344{vertical-align:-48.000000px;}
.v0_c00344{vertical-align:0.000000px;}
.ls1_c00344{letter-spacing:0.000000px;}
.ls2_c00344{letter-spacing:3.000000px;}
.ls0_c00344{letter-spacing:6.000000px;}
.ls3_c00344{letter-spacing:15.000000px;}
.sc__c00344{text-shadow:none;}
.sc0_c00344{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00344{-webkit-text-stroke:0px transparent;}
.sc0_c00344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00344{word-spacing:-26.658000px;}
.ws2_c00344{word-spacing:-20.352000px;}
.ws1_c00344{word-spacing:-20.250000px;}
.ws3_c00344{word-spacing:0.000000px;}
._17_c00344{margin-left:-22.308000px;}
._15_c00344{margin-left:-18.759000px;}
._16_c00344{margin-left:-17.556000px;}
._18_c00344{margin-left:-16.218000px;}
._19_c00344{margin-left:-14.751000px;}
._13_c00344{margin-left:-12.372000px;}
._11_c00344{margin-left:-10.560000px;}
._10_c00344{margin-left:-8.568000px;}
._a_c00344{margin-left:-7.080000px;}
._c_c00344{margin-left:-5.232000px;}
._2_c00344{margin-left:-3.864000px;}
._b_c00344{margin-left:-2.736000px;}
._6_c00344{margin-left:-1.728000px;}
._7_c00344{width:1.008000px;}
._3_c00344{width:2.184000px;}
._4_c00344{width:3.864000px;}
._1_c00344{width:5.880000px;}
._9_c00344{width:6.936000px;}
._f_c00344{width:8.016000px;}
._0_c00344{width:9.240000px;}
._d_c00344{width:10.584000px;}
._8_c00344{width:12.096000px;}
._e_c00344{width:13.896000px;}
._1a_c00344{width:15.612000px;}
._20_c00344{width:36.864000px;}
._1f_c00344{width:45.900000px;}
._1e_c00344{width:48.384000px;}
._14_c00344{width:61.146000px;}
._1d_c00344{width:72.828000px;}
._1b_c00344{width:158.268000px;}
._12_c00344{width:169.026000px;}
._1c_c00344{width:211.113000px;}
._21_c00344{width:229.866000px;}
._5_c00344{width:315.327000px;}
.fc2_c00344{color:transparent;}
.fc1_c00344{color:rgb(128,128,128);}
.fc0_c00344{color:rgb(0,0,0);}
.fs4_c00344{font-size:33.000000px;}
.fs6_c00344{font-size:48.000000px;}
.fs5_c00344{font-size:60.000000px;}
.fs3_c00344{font-size:66.000000px;}
.fs2_c00344{font-size:72.000000px;}
.fs1_c00344{font-size:81.000000px;}
.fs0_c00344{font-size:84.000000px;}
.y0_c00344{bottom:0.000000px;}
.y1f_c00344{bottom:3.105000px;}
.y1e_c00344{bottom:7.228371px;}
.y1d_c00344{bottom:52.065000px;}
.y1c_c00344{bottom:81.015000px;}
.y1b_c00344{bottom:106.365000px;}
.y1a_c00344{bottom:129.315000px;}
.y19_c00344{bottom:155.715000px;}
.y18_c00344{bottom:180.615000px;}
.y17_c00344{bottom:205.665000px;}
.y16_c00344{bottom:230.265000px;}
.y15_c00344{bottom:255.165000px;}
.y14_c00344{bottom:280.215000px;}
.y13_c00344{bottom:304.815000px;}
.y12_c00344{bottom:337.815000px;}
.y11_c00344{bottom:351.015000px;}
.y10_c00344{bottom:375.015000px;}
.yf_c00344{bottom:400.065000px;}
.ye_c00344{bottom:424.665000px;}
.yd_c00344{bottom:449.865000px;}
.yc_c00344{bottom:474.015000px;}
.yb_c00344{bottom:498.915000px;}
.ya_c00344{bottom:523.815000px;}
.y9_c00344{bottom:548.415000px;}
.y8_c00344{bottom:572.865000px;}
.y7_c00344{bottom:597.465000px;}
.y6_c00344{bottom:622.065000px;}
.y5_c00344{bottom:646.965000px;}
.y4_c00344{bottom:671.415000px;}
.y3_c00344{bottom:696.615000px;}
.y2_c00344{bottom:720.915000px;}
.y1_c00344{bottom:745.665000px;}
.h5_c00344{height:13.200074px;}
.h6_c00344{height:43.804688px;}
.h4_c00344{height:70.224609px;}
.h2_c00344{height:82.400391px;}
.h3_c00344{height:91.160156px;}
.h1_c00344{height:783.750000px;}
.h0_c00344{height:783.825000px;}
.w2_c00344{width:104.875500px;}
.w1_c00344{width:543.750000px;}
.w0_c00344{width:544.050000px;}
.x0_c00344{left:0.000000px;}
.x2_c00344{left:24.300000px;}
.x3_c00344{left:26.250000px;}
.x4_c00344{left:28.350000px;}
.x5_c00344{left:29.700000px;}
.x6_c00344{left:31.050000px;}
.x7_c00344{left:32.400000px;}
.xb_c00344{left:33.750000px;}
.xa_c00344{left:34.800000px;}
.x8_c00344{left:55.200000px;}
.x9_c00344{left:69.450000px;}
.x1_c00344{left:149.400000px;}
.xd_c00344{left:223.839249px;}
.xc_c00344{left:388.050000px;}
@media print{
.v1_c00344{vertical-align:-42.666667pt;}
.v0_c00344{vertical-align:0.000000pt;}
.ls1_c00344{letter-spacing:0.000000pt;}
.ls2_c00344{letter-spacing:2.666667pt;}
.ls0_c00344{letter-spacing:5.333333pt;}
.ls3_c00344{letter-spacing:13.333333pt;}
.ws0_c00344{word-spacing:-23.696000pt;}
.ws2_c00344{word-spacing:-18.090667pt;}
.ws1_c00344{word-spacing:-18.000000pt;}
.ws3_c00344{word-spacing:0.000000pt;}
._17_c00344{margin-left:-19.829333pt;}
._15_c00344{margin-left:-16.674667pt;}
._16_c00344{margin-left:-15.605333pt;}
._18_c00344{margin-left:-14.416000pt;}
._19_c00344{margin-left:-13.112000pt;}
._13_c00344{margin-left:-10.997333pt;}
._11_c00344{margin-left:-9.386667pt;}
._10_c00344{margin-left:-7.616000pt;}
._a_c00344{margin-left:-6.293333pt;}
._c_c00344{margin-left:-4.650667pt;}
._2_c00344{margin-left:-3.434667pt;}
._b_c00344{margin-left:-2.432000pt;}
._6_c00344{margin-left:-1.536000pt;}
._7_c00344{width:0.896000pt;}
._3_c00344{width:1.941333pt;}
._4_c00344{width:3.434667pt;}
._1_c00344{width:5.226667pt;}
._9_c00344{width:6.165333pt;}
._f_c00344{width:7.125333pt;}
._0_c00344{width:8.213333pt;}
._d_c00344{width:9.408000pt;}
._8_c00344{width:10.752000pt;}
._e_c00344{width:12.352000pt;}
._1a_c00344{width:13.877333pt;}
._20_c00344{width:32.768000pt;}
._1f_c00344{width:40.800000pt;}
._1e_c00344{width:43.008000pt;}
._14_c00344{width:54.352000pt;}
._1d_c00344{width:64.736000pt;}
._1b_c00344{width:140.682667pt;}
._12_c00344{width:150.245333pt;}
._1c_c00344{width:187.656000pt;}
._21_c00344{width:204.325333pt;}
._5_c00344{width:280.290667pt;}
.fs4_c00344{font-size:29.333333pt;}
.fs6_c00344{font-size:42.666667pt;}
.fs5_c00344{font-size:53.333333pt;}
.fs3_c00344{font-size:58.666667pt;}
.fs2_c00344{font-size:64.000000pt;}
.fs1_c00344{font-size:72.000000pt;}
.fs0_c00344{font-size:74.666667pt;}
.y0_c00344{bottom:0.000000pt;}
.y1f_c00344{bottom:2.760000pt;}
.y1e_c00344{bottom:6.425219pt;}
.y1d_c00344{bottom:46.280000pt;}
.y1c_c00344{bottom:72.013333pt;}
.y1b_c00344{bottom:94.546667pt;}
.y1a_c00344{bottom:114.946667pt;}
.y19_c00344{bottom:138.413333pt;}
.y18_c00344{bottom:160.546667pt;}
.y17_c00344{bottom:182.813333pt;}
.y16_c00344{bottom:204.680000pt;}
.y15_c00344{bottom:226.813333pt;}
.y14_c00344{bottom:249.080000pt;}
.y13_c00344{bottom:270.946667pt;}
.y12_c00344{bottom:300.280000pt;}
.y11_c00344{bottom:312.013333pt;}
.y10_c00344{bottom:333.346667pt;}
.yf_c00344{bottom:355.613333pt;}
.ye_c00344{bottom:377.480000pt;}
.yd_c00344{bottom:399.880000pt;}
.yc_c00344{bottom:421.346667pt;}
.yb_c00344{bottom:443.480000pt;}
.ya_c00344{bottom:465.613333pt;}
.y9_c00344{bottom:487.480000pt;}
.y8_c00344{bottom:509.213333pt;}
.y7_c00344{bottom:531.080000pt;}
.y6_c00344{bottom:552.946667pt;}
.y5_c00344{bottom:575.080000pt;}
.y4_c00344{bottom:596.813333pt;}
.y3_c00344{bottom:619.213333pt;}
.y2_c00344{bottom:640.813333pt;}
.y1_c00344{bottom:662.813333pt;}
.h5_c00344{height:11.733399pt;}
.h6_c00344{height:38.937500pt;}
.h4_c00344{height:62.421875pt;}
.h2_c00344{height:73.244792pt;}
.h3_c00344{height:81.031250pt;}
.h1_c00344{height:696.666667pt;}
.h0_c00344{height:696.733333pt;}
.w2_c00344{width:93.222667pt;}
.w1_c00344{width:483.333333pt;}
.w0_c00344{width:483.600000pt;}
.x0_c00344{left:0.000000pt;}
.x2_c00344{left:21.600000pt;}
.x3_c00344{left:23.333333pt;}
.x4_c00344{left:25.200000pt;}
.x5_c00344{left:26.400000pt;}
.x6_c00344{left:27.600000pt;}
.x7_c00344{left:28.800000pt;}
.xb_c00344{left:30.000000pt;}
.xa_c00344{left:30.933333pt;}
.x8_c00344{left:49.066667pt;}
.x9_c00344{left:61.733333pt;}
.x1_c00344{left:132.800000pt;}
.xd_c00344{left:198.968221pt;}
.xc_c00344{left:344.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_acb18e6bf4ca91c78713e77d.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00345;src:url('chunks/assets/font_b5a3504313a8f47116de34b0.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00345;src:url('chunks/assets/font_29d6d5b1f2e3f9e409e45cfa.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;line-height:1.568848;font-style:normal;font-weight:normal;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_0866280ddc3b892395fcecf5.woff2')format("woff");}.ff4_c00345{font-family:ff4_c00345;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00345;src:url('chunks/assets/font_136644bc13aa08434f1653c9.woff2')format("woff");}.ff5_c00345{font-family:ff5_c00345;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00345;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00345{font-family:ff6_c00345;line-height:1.219238;font-style: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;}
.ls8_c00345{letter-spacing:-6.000000px;}
.ls6_c00345{letter-spacing:0.000000px;}
.ls5_c00345{letter-spacing:3.000000px;}
.ls3_c00345{letter-spacing:6.000000px;}
.ls1_c00345{letter-spacing:6.417000px;}
.ls7_c00345{letter-spacing:9.000000px;}
.ls0_c00345{letter-spacing:10.350000px;}
.ls2_c00345{letter-spacing:10.986000px;}
.ls4_c00345{letter-spacing:277.386000px;}
.sc__c00345{text-shadow:none;}
.sc0_c00345{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00345{-webkit-text-stroke:0px transparent;}
.sc0_c00345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00345{word-spacing:-35.043000px;}
.ws0_c00345{word-spacing:-33.192000px;}
.ws2_c00345{word-spacing:-24.894000px;}
.ws3_c00345{word-spacing:0.000000px;}
._3_c00345{margin-left:-16.632000px;}
._19_c00345{margin-left:-14.352000px;}
._1a_c00345{margin-left:-12.795000px;}
._f_c00345{margin-left:-11.016000px;}
._e_c00345{margin-left:-9.864000px;}
._1c_c00345{margin-left:-8.595000px;}
._5_c00345{margin-left:-7.560000px;}
._10_c00345{margin-left:-6.408000px;}
._4_c00345{margin-left:-5.112000px;}
._8_c00345{margin-left:-3.588000px;}
._7_c00345{margin-left:-2.088000px;}
._a_c00345{margin-left:-1.068000px;}
._6_c00345{width:1.296000px;}
._1_c00345{width:3.108000px;}
._9_c00345{width:4.236000px;}
._2_c00345{width:5.628000px;}
._1d_c00345{width:6.639000px;}
._0_c00345{width:7.728000px;}
._1b_c00345{width:9.258000px;}
._12_c00345{width:10.374000px;}
._11_c00345{width:11.472000px;}
._b_c00345{width:13.020000px;}
._c_c00345{width:15.876000px;}
._d_c00345{width:17.664000px;}
._18_c00345{width:21.180000px;}
._17_c00345{width:22.914000px;}
._14_c00345{width:27.729000px;}
._15_c00345{width:37.164000px;}
._16_c00345{width:43.035000px;}
._13_c00345{width:534.912000px;}
.fc2_c00345{color:transparent;}
.fc1_c00345{color:rgb(128,128,128);}
.fc0_c00345{color:rgb(0,0,0);}
.fs5_c00345{font-size:39.000000px;}
.fs7_c00345{font-size:48.000000px;}
.fs2_c00345{font-size:54.000000px;}
.fs3_c00345{font-size:57.000000px;}
.fs4_c00345{font-size:63.000000px;}
.fs6_c00345{font-size:69.000000px;}
.fs1_c00345{font-size:72.000000px;}
.fs0_c00345{font-size:84.000000px;}
.y0_c00345{bottom:0.000000px;}
.y1f_c00345{bottom:3.105000px;}
.y1e_c00345{bottom:7.228363px;}
.y1d_c00345{bottom:58.050000px;}
.y1c_c00345{bottom:81.000000px;}
.y1b_c00345{bottom:105.600000px;}
.y1a_c00345{bottom:132.000000px;}
.y19_c00345{bottom:158.850000px;}
.y18_c00345{bottom:182.850000px;}
.y17_c00345{bottom:206.550000px;}
.y16_c00345{bottom:233.100000px;}
.y15_c00345{bottom:257.850000px;}
.y14_c00345{bottom:279.450000px;}
.y13_c00345{bottom:307.350000px;}
.y12_c00345{bottom:332.100000px;}
.y11_c00345{bottom:355.950000px;}
.y10_c00345{bottom:381.000000px;}
.yf_c00345{bottom:405.600000px;}
.ye_c00345{bottom:429.000000px;}
.yd_c00345{bottom:454.650000px;}
.yc_c00345{bottom:478.500000px;}
.yb_c00345{bottom:503.250000px;}
.ya_c00345{bottom:527.550000px;}
.y9_c00345{bottom:552.450000px;}
.y8_c00345{bottom:577.500000px;}
.y7_c00345{bottom:601.800000px;}
.y6_c00345{bottom:626.700000px;}
.y5_c00345{bottom:651.000000px;}
.y4_c00345{bottom:675.750000px;}
.y3_c00345{bottom:700.950000px;}
.y2_c00345{bottom:725.850000px;}
.y1_c00345{bottom:751.500000px;}
.h6_c00345{height:13.200074px;}
.h7_c00345{height:43.804688px;}
.h4_c00345{height:79.765137px;}
.h2_c00345{height:82.441406px;}
.h5_c00345{height:87.361816px;}
.h3_c00345{height:91.160156px;}
.h0_c00345{height:797.850000px;}
.h1_c00345{height:798.000000px;}
.w2_c00345{width:104.875500px;}
.w0_c00345{width:517.875000px;}
.w1_c00345{width:518.250000px;}
.x0_c00345{left:0.000000px;}
.x5_c00345{left:39.450000px;}
.x6_c00345{left:41.550000px;}
.x8_c00345{left:113.850000px;}
.x7_c00345{left:115.200000px;}
.x4_c00345{left:116.550000px;}
.x3_c00345{left:118.800000px;}
.x2_c00345{left:120.600000px;}
.xa_c00345{left:210.751740px;}
.x1_c00345{left:248.700000px;}
.x9_c00345{left:441.900000px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls8_c00345{letter-spacing:-5.333333pt;}
.ls6_c00345{letter-spacing:0.000000pt;}
.ls5_c00345{letter-spacing:2.666667pt;}
.ls3_c00345{letter-spacing:5.333333pt;}
.ls1_c00345{letter-spacing:5.704000pt;}
.ls7_c00345{letter-spacing:8.000000pt;}
.ls0_c00345{letter-spacing:9.200000pt;}
.ls2_c00345{letter-spacing:9.765333pt;}
.ls4_c00345{letter-spacing:246.565333pt;}
.ws1_c00345{word-spacing:-31.149333pt;}
.ws0_c00345{word-spacing:-29.504000pt;}
.ws2_c00345{word-spacing:-22.128000pt;}
.ws3_c00345{word-spacing:0.000000pt;}
._3_c00345{margin-left:-14.784000pt;}
._19_c00345{margin-left:-12.757333pt;}
._1a_c00345{margin-left:-11.373333pt;}
._f_c00345{margin-left:-9.792000pt;}
._e_c00345{margin-left:-8.768000pt;}
._1c_c00345{margin-left:-7.640000pt;}
._5_c00345{margin-left:-6.720000pt;}
._10_c00345{margin-left:-5.696000pt;}
._4_c00345{margin-left:-4.544000pt;}
._8_c00345{margin-left:-3.189333pt;}
._7_c00345{margin-left:-1.856000pt;}
._a_c00345{margin-left:-0.949333pt;}
._6_c00345{width:1.152000pt;}
._1_c00345{width:2.762667pt;}
._9_c00345{width:3.765333pt;}
._2_c00345{width:5.002667pt;}
._1d_c00345{width:5.901333pt;}
._0_c00345{width:6.869333pt;}
._1b_c00345{width:8.229333pt;}
._12_c00345{width:9.221333pt;}
._11_c00345{width:10.197333pt;}
._b_c00345{width:11.573333pt;}
._c_c00345{width:14.112000pt;}
._d_c00345{width:15.701333pt;}
._18_c00345{width:18.826667pt;}
._17_c00345{width:20.368000pt;}
._14_c00345{width:24.648000pt;}
._15_c00345{width:33.034667pt;}
._16_c00345{width:38.253333pt;}
._13_c00345{width:475.477333pt;}
.fs5_c00345{font-size:34.666667pt;}
.fs7_c00345{font-size:42.666667pt;}
.fs2_c00345{font-size:48.000000pt;}
.fs3_c00345{font-size:50.666667pt;}
.fs4_c00345{font-size:56.000000pt;}
.fs6_c00345{font-size:61.333333pt;}
.fs1_c00345{font-size:64.000000pt;}
.fs0_c00345{font-size:74.666667pt;}
.y0_c00345{bottom:0.000000pt;}
.y1f_c00345{bottom:2.760000pt;}
.y1e_c00345{bottom:6.425212pt;}
.y1d_c00345{bottom:51.600000pt;}
.y1c_c00345{bottom:72.000000pt;}
.y1b_c00345{bottom:93.866667pt;}
.y1a_c00345{bottom:117.333333pt;}
.y19_c00345{bottom:141.200000pt;}
.y18_c00345{bottom:162.533333pt;}
.y17_c00345{bottom:183.600000pt;}
.y16_c00345{bottom:207.200000pt;}
.y15_c00345{bottom:229.200000pt;}
.y14_c00345{bottom:248.400000pt;}
.y13_c00345{bottom:273.200000pt;}
.y12_c00345{bottom:295.200000pt;}
.y11_c00345{bottom:316.400000pt;}
.y10_c00345{bottom:338.666667pt;}
.yf_c00345{bottom:360.533333pt;}
.ye_c00345{bottom:381.333333pt;}
.yd_c00345{bottom:404.133333pt;}
.yc_c00345{bottom:425.333333pt;}
.yb_c00345{bottom:447.333333pt;}
.ya_c00345{bottom:468.933333pt;}
.y9_c00345{bottom:491.066667pt;}
.y8_c00345{bottom:513.333333pt;}
.y7_c00345{bottom:534.933333pt;}
.y6_c00345{bottom:557.066667pt;}
.y5_c00345{bottom:578.666667pt;}
.y4_c00345{bottom:600.666667pt;}
.y3_c00345{bottom:623.066667pt;}
.y2_c00345{bottom:645.200000pt;}
.y1_c00345{bottom:668.000000pt;}
.h6_c00345{height:11.733399pt;}
.h7_c00345{height:38.937500pt;}
.h4_c00345{height:70.902344pt;}
.h2_c00345{height:73.281250pt;}
.h5_c00345{height:77.654948pt;}
.h3_c00345{height:81.031250pt;}
.h0_c00345{height:709.200000pt;}
.h1_c00345{height:709.333333pt;}
.w2_c00345{width:93.222667pt;}
.w0_c00345{width:460.333333pt;}
.w1_c00345{width:460.666667pt;}
.x0_c00345{left:0.000000pt;}
.x5_c00345{left:35.066667pt;}
.x6_c00345{left:36.933333pt;}
.x8_c00345{left:101.200000pt;}
.x7_c00345{left:102.400000pt;}
.x4_c00345{left:103.600000pt;}
.x3_c00345{left:105.600000pt;}
.x2_c00345{left:107.200000pt;}
.xa_c00345{left:187.334880pt;}
.x1_c00345{left:221.066667pt;}
.x9_c00345{left:392.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8eac99f188b50c0b9cde253.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.480469;font-style:normal;font-weight:normal;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_efd7637e814e821ab430fc04.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00346;src:url('chunks/assets/font_23ee0175cbd85b03e97542ce.woff2')format("woff");}.ff3_c00346{font-family:ff3_c00346;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00346;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00346{font-family:ff4_c00346;line-height:1.219238;font-style: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;}
.ls1_c00346{letter-spacing:0.000000px;}
.ls2_c00346{letter-spacing:3.000000px;}
.ls0_c00346{letter-spacing:22.200000px;}
.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;}
._16_c00346{margin-left:-13.752000px;}
._15_c00346{margin-left:-11.160000px;}
._b_c00346{margin-left:-8.712000px;}
._c_c00346{margin-left:-6.912000px;}
._9_c00346{margin-left:-5.112000px;}
._d_c00346{margin-left:-4.032000px;}
._8_c00346{margin-left:-2.664000px;}
._2_c00346{margin-left:-1.080000px;}
._5_c00346{width:1.368000px;}
._3_c00346{width:2.520000px;}
._10_c00346{width:3.528000px;}
._4_c00346{width:4.968000px;}
._e_c00346{width:6.480000px;}
._11_c00346{width:7.488000px;}
._f_c00346{width:8.928000px;}
._1_c00346{width:10.944000px;}
._12_c00346{width:12.456000px;}
._a_c00346{width:13.464000px;}
._13_c00346{width:15.048000px;}
._14_c00346{width:16.128000px;}
._17_c00346{width:17.208000px;}
._0_c00346{width:24.408000px;}
._7_c00346{width:27.528000px;}
._18_c00346{width:34.344000px;}
._6_c00346{width:326.880000px;}
._19_c00346{width:362.736000px;}
.fc2_c00346{color:transparent;}
.fc1_c00346{color:rgb(128,128,128);}
.fc0_c00346{color:rgb(0,0,0);}
.fs2_c00346{font-size:48.000000px;}
.fs0_c00346{font-size:72.000000px;}
.fs1_c00346{font-size:78.000000px;}
.y0_c00346{bottom:0.000000px;}
.y1f_c00346{bottom:3.105000px;}
.y1e_c00346{bottom:7.228355px;}
.y1d_c00346{bottom:32.685000px;}
.y1c_c00346{bottom:58.935000px;}
.y1b_c00346{bottom:84.585000px;}
.y1a_c00346{bottom:109.335000px;}
.y19_c00346{bottom:134.535000px;}
.y18_c00346{bottom:158.835000px;}
.y17_c00346{bottom:184.485000px;}
.y16_c00346{bottom:208.935000px;}
.y15_c00346{bottom:234.135000px;}
.y14_c00346{bottom:258.885000px;}
.y13_c00346{bottom:283.035000px;}
.y12_c00346{bottom:306.435000px;}
.y11_c00346{bottom:329.985000px;}
.y10_c00346{bottom:354.585000px;}
.yf_c00346{bottom:379.035000px;}
.ye_c00346{bottom:403.935000px;}
.yd_c00346{bottom:428.835000px;}
.yc_c00346{bottom:453.135000px;}
.yb_c00346{bottom:477.585000px;}
.ya_c00346{bottom:502.185000px;}
.y9_c00346{bottom:526.785000px;}
.y8_c00346{bottom:551.835000px;}
.y7_c00346{bottom:576.135000px;}
.y6_c00346{bottom:601.785000px;}
.y5_c00346{bottom:625.935000px;}
.y4_c00346{bottom:650.235000px;}
.y3_c00346{bottom:675.585000px;}
.y2_c00346{bottom:699.885000px;}
.y1_c00346{bottom:724.635000px;}
.h4_c00346{height:13.200074px;}
.h5_c00346{height:43.804688px;}
.h2_c00346{height:84.269531px;}
.h3_c00346{height:91.160156px;}
.h0_c00346{height:770.025000px;}
.h1_c00346{height:770.250000px;}
.w2_c00346{width:104.875500px;}
.w1_c00346{width:512.250000px;}
.w0_c00346{width:512.475000px;}
.x0_c00346{left:0.000000px;}
.x9_c00346{left:16.950000px;}
.xa_c00346{left:18.300000px;}
.x8_c00346{left:19.350000px;}
.x7_c00346{left:21.000000px;}
.x6_c00346{left:22.350000px;}
.x5_c00346{left:24.300000px;}
.x4_c00346{left:25.350000px;}
.x2_c00346{left:27.000000px;}
.x3_c00346{left:28.050000px;}
.x1_c00346{left:153.450000px;}
.xc_c00346{left:208.051758px;}
.xb_c00346{left:264.750000px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls1_c00346{letter-spacing:0.000000pt;}
.ls2_c00346{letter-spacing:2.666667pt;}
.ls0_c00346{letter-spacing:19.733333pt;}
.ws0_c00346{word-spacing:0.000000pt;}
._16_c00346{margin-left:-12.224000pt;}
._15_c00346{margin-left:-9.920000pt;}
._b_c00346{margin-left:-7.744000pt;}
._c_c00346{margin-left:-6.144000pt;}
._9_c00346{margin-left:-4.544000pt;}
._d_c00346{margin-left:-3.584000pt;}
._8_c00346{margin-left:-2.368000pt;}
._2_c00346{margin-left:-0.960000pt;}
._5_c00346{width:1.216000pt;}
._3_c00346{width:2.240000pt;}
._10_c00346{width:3.136000pt;}
._4_c00346{width:4.416000pt;}
._e_c00346{width:5.760000pt;}
._11_c00346{width:6.656000pt;}
._f_c00346{width:7.936000pt;}
._1_c00346{width:9.728000pt;}
._12_c00346{width:11.072000pt;}
._a_c00346{width:11.968000pt;}
._13_c00346{width:13.376000pt;}
._14_c00346{width:14.336000pt;}
._17_c00346{width:15.296000pt;}
._0_c00346{width:21.696000pt;}
._7_c00346{width:24.469333pt;}
._18_c00346{width:30.528000pt;}
._6_c00346{width:290.560000pt;}
._19_c00346{width:322.432000pt;}
.fs2_c00346{font-size:42.666667pt;}
.fs0_c00346{font-size:64.000000pt;}
.fs1_c00346{font-size:69.333333pt;}
.y0_c00346{bottom:0.000000pt;}
.y1f_c00346{bottom:2.760000pt;}
.y1e_c00346{bottom:6.425204pt;}
.y1d_c00346{bottom:29.053333pt;}
.y1c_c00346{bottom:52.386667pt;}
.y1b_c00346{bottom:75.186667pt;}
.y1a_c00346{bottom:97.186667pt;}
.y19_c00346{bottom:119.586667pt;}
.y18_c00346{bottom:141.186667pt;}
.y17_c00346{bottom:163.986667pt;}
.y16_c00346{bottom:185.720000pt;}
.y15_c00346{bottom:208.120000pt;}
.y14_c00346{bottom:230.120000pt;}
.y13_c00346{bottom:251.586667pt;}
.y12_c00346{bottom:272.386667pt;}
.y11_c00346{bottom:293.320000pt;}
.y10_c00346{bottom:315.186667pt;}
.yf_c00346{bottom:336.920000pt;}
.ye_c00346{bottom:359.053333pt;}
.yd_c00346{bottom:381.186667pt;}
.yc_c00346{bottom:402.786667pt;}
.yb_c00346{bottom:424.520000pt;}
.ya_c00346{bottom:446.386667pt;}
.y9_c00346{bottom:468.253333pt;}
.y8_c00346{bottom:490.520000pt;}
.y7_c00346{bottom:512.120000pt;}
.y6_c00346{bottom:534.920000pt;}
.y5_c00346{bottom:556.386667pt;}
.y4_c00346{bottom:577.986667pt;}
.y3_c00346{bottom:600.520000pt;}
.y2_c00346{bottom:622.120000pt;}
.y1_c00346{bottom:644.120000pt;}
.h4_c00346{height:11.733399pt;}
.h5_c00346{height:38.937500pt;}
.h2_c00346{height:74.906250pt;}
.h3_c00346{height:81.031250pt;}
.h0_c00346{height:684.466667pt;}
.h1_c00346{height:684.666667pt;}
.w2_c00346{width:93.222667pt;}
.w1_c00346{width:455.333333pt;}
.w0_c00346{width:455.533333pt;}
.x0_c00346{left:0.000000pt;}
.x9_c00346{left:15.066667pt;}
.xa_c00346{left:16.266667pt;}
.x8_c00346{left:17.200000pt;}
.x7_c00346{left:18.666667pt;}
.x6_c00346{left:19.866667pt;}
.x5_c00346{left:21.600000pt;}
.x4_c00346{left:22.533333pt;}
.x2_c00346{left:24.000000pt;}
.x3_c00346{left:24.933333pt;}
.x1_c00346{left:136.400000pt;}
.xc_c00346{left:184.934896pt;}
.xb_c00346{left:235.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_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_0fde10d7cb0598f01a9c7335.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.592000;font-style:normal;font-weight:normal;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_42ca6a7f4ee780e6466fa4ba.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:1.575000;font-style:normal;font-weight:normal;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_633a1c1588173a2eb7bf6902.woff2')format("woff");}.ff3_c00347{font-family:ff3_c00347;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00347;src:url('chunks/assets/font_ca2200166eb8317e724599ab.woff2')format("woff");}.ff4_c00347{font-family:ff4_c00347;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00347;src:url('chunks/assets/font_4f0e62f1df6ce698a9fb21fc.woff2')format("woff");}.ff5_c00347{font-family:ff5_c00347;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00347;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00347{font-family:ff6_c00347;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00347{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00347{vertical-align:0.000000px;}
.ls4_c00347{letter-spacing:-6.000000px;}
.ls2_c00347{letter-spacing:0.000000px;}
.ls1_c00347{letter-spacing:3.000000px;}
.ls0_c00347{letter-spacing:4.971000px;}
.ls3_c00347{letter-spacing:6.000000px;}
.sc__c00347{text-shadow:none;}
.sc0_c00347{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00347{-webkit-text-stroke:0px transparent;}
.sc0_c00347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00347{word-spacing:-29.880000px;}
.ws1_c00347{word-spacing:-24.051000px;}
.ws2_c00347{word-spacing:-20.352000px;}
.ws3_c00347{word-spacing:0.000000px;}
._17_c00347{margin-left:-25.212000px;}
._13_c00347{margin-left:-19.224000px;}
._19_c00347{margin-left:-16.560000px;}
._18_c00347{margin-left:-14.988000px;}
._16_c00347{margin-left:-13.656000px;}
._15_c00347{margin-left:-11.496000px;}
._14_c00347{margin-left:-9.864000px;}
._d_c00347{margin-left:-8.064000px;}
._a_c00347{margin-left:-6.432000px;}
._12_c00347{margin-left:-4.800000px;}
._10_c00347{margin-left:-3.732000px;}
._e_c00347{margin-left:-2.460000px;}
._7_c00347{margin-left:-1.104000px;}
._b_c00347{width:1.008000px;}
._8_c00347{width:2.088000px;}
._9_c00347{width:3.144000px;}
._2_c00347{width:4.260000px;}
._5_c00347{width:5.520000px;}
._1_c00347{width:6.720000px;}
._3_c00347{width:8.760000px;}
._6_c00347{width:9.780000px;}
._0_c00347{width:11.160000px;}
._4_c00347{width:13.020000px;}
._11_c00347{width:14.040000px;}
._f_c00347{width:15.708000px;}
._c_c00347{width:17.856000px;}
.fc2_c00347{color:transparent;}
.fc1_c00347{color:rgb(128,128,128);}
.fc0_c00347{color:rgb(0,0,0);}
.fs5_c00347{font-size:48.000000px;}
.fs3_c00347{font-size:57.000000px;}
.fs0_c00347{font-size:60.000000px;}
.fs4_c00347{font-size:63.000000px;}
.fs1_c00347{font-size:69.000000px;}
.fs2_c00347{font-size:72.000000px;}
.y0_c00347{bottom:0.000000px;}
.y1f_c00347{bottom:3.105000px;}
.y1e_c00347{bottom:7.228371px;}
.y1d_c00347{bottom:39.615000px;}
.y1c_c00347{bottom:64.215000px;}
.y1b_c00347{bottom:89.565000px;}
.y1a_c00347{bottom:114.465000px;}
.y19_c00347{bottom:139.815000px;}
.y18_c00347{bottom:165.015000px;}
.y17_c00347{bottom:190.665000px;}
.y16_c00347{bottom:216.015000px;}
.y15_c00347{bottom:240.315000px;}
.y14_c00347{bottom:265.665000px;}
.y13_c00347{bottom:290.265000px;}
.y12_c00347{bottom:315.015000px;}
.y11_c00347{bottom:339.615000px;}
.y10_c00347{bottom:364.215000px;}
.yf_c00347{bottom:388.815000px;}
.ye_c00347{bottom:412.815000px;}
.yd_c00347{bottom:436.815000px;}
.yc_c00347{bottom:461.415000px;}
.yb_c00347{bottom:485.565000px;}
.ya_c00347{bottom:510.315000px;}
.y9_c00347{bottom:535.065000px;}
.y8_c00347{bottom:558.615000px;}
.y7_c00347{bottom:584.565000px;}
.y6_c00347{bottom:609.315000px;}
.y5_c00347{bottom:633.465000px;}
.y4_c00347{bottom:658.515000px;}
.y3_c00347{bottom:683.415000px;}
.y2_c00347{bottom:708.165000px;}
.y1_c00347{bottom:733.515000px;}
.h4_c00347{height:13.200074px;}
.h5_c00347{height:43.804688px;}
.h2_c00347{height:65.040000px;}
.h3_c00347{height:91.160156px;}
.h0_c00347{height:778.425000px;}
.h1_c00347{height:778.500000px;}
.w2_c00347{width:104.875500px;}
.w1_c00347{width:512.250000px;}
.w0_c00347{width:512.475000px;}
.x0_c00347{left:0.000000px;}
.x2_c00347{left:102.600000px;}
.x3_c00347{left:103.950000px;}
.x4_c00347{left:105.000000px;}
.x5_c00347{left:106.200000px;}
.x6_c00347{left:107.250000px;}
.x7_c00347{left:108.600000px;}
.x8_c00347{left:110.400000px;}
.x9_c00347{left:111.750000px;}
.xb_c00347{left:208.051758px;}
.x1_c00347{left:229.500000px;}
.xa_c00347{left:466.650000px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls4_c00347{letter-spacing:-5.333333pt;}
.ls2_c00347{letter-spacing:0.000000pt;}
.ls1_c00347{letter-spacing:2.666667pt;}
.ls0_c00347{letter-spacing:4.418667pt;}
.ls3_c00347{letter-spacing:5.333333pt;}
.ws0_c00347{word-spacing:-26.560000pt;}
.ws1_c00347{word-spacing:-21.378667pt;}
.ws2_c00347{word-spacing:-18.090667pt;}
.ws3_c00347{word-spacing:0.000000pt;}
._17_c00347{margin-left:-22.410667pt;}
._13_c00347{margin-left:-17.088000pt;}
._19_c00347{margin-left:-14.720000pt;}
._18_c00347{margin-left:-13.322667pt;}
._16_c00347{margin-left:-12.138667pt;}
._15_c00347{margin-left:-10.218667pt;}
._14_c00347{margin-left:-8.768000pt;}
._d_c00347{margin-left:-7.168000pt;}
._a_c00347{margin-left:-5.717333pt;}
._12_c00347{margin-left:-4.266667pt;}
._10_c00347{margin-left:-3.317333pt;}
._e_c00347{margin-left:-2.186667pt;}
._7_c00347{margin-left:-0.981333pt;}
._b_c00347{width:0.896000pt;}
._8_c00347{width:1.856000pt;}
._9_c00347{width:2.794667pt;}
._2_c00347{width:3.786667pt;}
._5_c00347{width:4.906667pt;}
._1_c00347{width:5.973333pt;}
._3_c00347{width:7.786667pt;}
._6_c00347{width:8.693333pt;}
._0_c00347{width:9.920000pt;}
._4_c00347{width:11.573333pt;}
._11_c00347{width:12.480000pt;}
._f_c00347{width:13.962667pt;}
._c_c00347{width:15.872000pt;}
.fs5_c00347{font-size:42.666667pt;}
.fs3_c00347{font-size:50.666667pt;}
.fs0_c00347{font-size:53.333333pt;}
.fs4_c00347{font-size:56.000000pt;}
.fs1_c00347{font-size:61.333333pt;}
.fs2_c00347{font-size:64.000000pt;}
.y0_c00347{bottom:0.000000pt;}
.y1f_c00347{bottom:2.760000pt;}
.y1e_c00347{bottom:6.425219pt;}
.y1d_c00347{bottom:35.213333pt;}
.y1c_c00347{bottom:57.080000pt;}
.y1b_c00347{bottom:79.613333pt;}
.y1a_c00347{bottom:101.746667pt;}
.y19_c00347{bottom:124.280000pt;}
.y18_c00347{bottom:146.680000pt;}
.y17_c00347{bottom:169.480000pt;}
.y16_c00347{bottom:192.013333pt;}
.y15_c00347{bottom:213.613333pt;}
.y14_c00347{bottom:236.146667pt;}
.y13_c00347{bottom:258.013333pt;}
.y12_c00347{bottom:280.013333pt;}
.y11_c00347{bottom:301.880000pt;}
.y10_c00347{bottom:323.746667pt;}
.yf_c00347{bottom:345.613333pt;}
.ye_c00347{bottom:366.946667pt;}
.yd_c00347{bottom:388.280000pt;}
.yc_c00347{bottom:410.146667pt;}
.yb_c00347{bottom:431.613333pt;}
.ya_c00347{bottom:453.613333pt;}
.y9_c00347{bottom:475.613333pt;}
.y8_c00347{bottom:496.546667pt;}
.y7_c00347{bottom:519.613333pt;}
.y6_c00347{bottom:541.613333pt;}
.y5_c00347{bottom:563.080000pt;}
.y4_c00347{bottom:585.346667pt;}
.y3_c00347{bottom:607.480000pt;}
.y2_c00347{bottom:629.480000pt;}
.y1_c00347{bottom:652.013333pt;}
.h4_c00347{height:11.733399pt;}
.h5_c00347{height:38.937500pt;}
.h2_c00347{height:57.813333pt;}
.h3_c00347{height:81.031250pt;}
.h0_c00347{height:691.933333pt;}
.h1_c00347{height:692.000000pt;}
.w2_c00347{width:93.222667pt;}
.w1_c00347{width:455.333333pt;}
.w0_c00347{width:455.533333pt;}
.x0_c00347{left:0.000000pt;}
.x2_c00347{left:91.200000pt;}
.x3_c00347{left:92.400000pt;}
.x4_c00347{left:93.333333pt;}
.x5_c00347{left:94.400000pt;}
.x6_c00347{left:95.333333pt;}
.x7_c00347{left:96.533333pt;}
.x8_c00347{left:98.133333pt;}
.x9_c00347{left:99.333333pt;}
.xb_c00347{left:184.934896pt;}
.x1_c00347{left:204.000000pt;}
.xa_c00347{left:414.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_834dad3dd3eda8d9eb451ec4.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.480469;font-style:normal;font-weight:normal;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_898acdb829eb67efe08e3a68.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:1.568848;font-style:normal;font-weight:normal;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_6ca0818d2dbce85e100396d1.woff2')format("woff");}.ff3_c00348{font-family:ff3_c00348;line-height:1.575000;font-style:normal;font-weight:normal;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_295762a68422e044f7ed1ee5.woff2')format("woff");}.ff4_c00348{font-family:ff4_c00348;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00348;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00348{font-family:ff5_c00348;line-height:1.219238;font-style: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;}
.ls1_c00348{letter-spacing:3.000000px;}
.ls0_c00348{letter-spacing:26.388000px;}
.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:-20.352000px;}
.ws1_c00348{word-spacing:0.000000px;}
._13_c00348{margin-left:-14.580000px;}
._12_c00348{margin-left:-12.816000px;}
._14_c00348{margin-left:-11.766000px;}
._f_c00348{margin-left:-9.720000px;}
._11_c00348{margin-left:-8.568000px;}
._10_c00348{margin-left:-6.906000px;}
._8_c00348{margin-left:-5.262000px;}
._a_c00348{margin-left:-4.200000px;}
._2_c00348{margin-left:-3.198000px;}
._3_c00348{margin-left:-2.106000px;}
._7_c00348{margin-left:-1.098000px;}
._1_c00348{width:1.872000px;}
._0_c00348{width:3.042000px;}
._5_c00348{width:4.992000px;}
._9_c00348{width:6.312000px;}
._d_c00348{width:7.944000px;}
._e_c00348{width:9.738000px;}
._b_c00348{width:11.646000px;}
._c_c00348{width:12.870000px;}
._6_c00348{width:23.088000px;}
._15_c00348{width:30.054000px;}
._16_c00348{width:308.148000px;}
._4_c00348{width:312.468000px;}
.fc2_c00348{color:transparent;}
.fc1_c00348{color:rgb(128,128,128);}
.fc0_c00348{color:rgb(0,0,0);}
.fs4_c00348{font-size:48.000000px;}
.fs2_c00348{font-size:63.000000px;}
.fs1_c00348{font-size:72.000000px;}
.fs3_c00348{font-size:75.000000px;}
.fs0_c00348{font-size:78.000000px;}
.y0_c00348{bottom:0.000000px;}
.y1d_c00348{bottom:3.105000px;}
.y1c_c00348{bottom:7.228355px;}
.y1b_c00348{bottom:52.635000px;}
.y1a_c00348{bottom:78.285000px;}
.y19_c00348{bottom:103.935000px;}
.y18_c00348{bottom:129.885000px;}
.y17_c00348{bottom:154.185000px;}
.y16_c00348{bottom:179.835000px;}
.y15_c00348{bottom:204.735000px;}
.y14_c00348{bottom:229.185000px;}
.y13_c00348{bottom:253.035000px;}
.y12_c00348{bottom:278.985000px;}
.y11_c00348{bottom:303.735000px;}
.y10_c00348{bottom:349.185000px;}
.yf_c00348{bottom:398.235000px;}
.ye_c00348{bottom:423.435000px;}
.yd_c00348{bottom:448.185000px;}
.yc_c00348{bottom:472.185000px;}
.yb_c00348{bottom:497.085000px;}
.ya_c00348{bottom:522.135000px;}
.y9_c00348{bottom:546.285000px;}
.y8_c00348{bottom:572.985000px;}
.y7_c00348{bottom:595.035000px;}
.y6_c00348{bottom:620.535000px;}
.y5_c00348{bottom:644.985000px;}
.y4_c00348{bottom:669.885000px;}
.y3_c00348{bottom:694.485000px;}
.y2_c00348{bottom:718.485000px;}
.y1_c00348{bottom:744.435000px;}
.h5_c00348{height:13.200074px;}
.h6_c00348{height:43.804688px;}
.h4_c00348{height:73.608398px;}
.h3_c00348{height:91.160156px;}
.h2_c00348{height:91.291992px;}
.h0_c00348{height:782.175000px;}
.h1_c00348{height:782.250000px;}
.w2_c00348{width:104.875500px;}
.w1_c00348{width:542.250000px;}
.w0_c00348{width:542.400000px;}
.x0_c00348{left:0.000000px;}
.x4_c00348{left:31.800000px;}
.x3_c00348{left:33.150000px;}
.x2_c00348{left:34.200000px;}
.x5_c00348{left:35.850000px;}
.x6_c00348{left:39.450000px;}
.x1_c00348{left:155.700000px;}
.x8_c00348{left:223.014267px;}
.x7_c00348{left:246.900000px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls2_c00348{letter-spacing:0.000000pt;}
.ls1_c00348{letter-spacing:2.666667pt;}
.ls0_c00348{letter-spacing:23.456000pt;}
.ws0_c00348{word-spacing:-18.090667pt;}
.ws1_c00348{word-spacing:0.000000pt;}
._13_c00348{margin-left:-12.960000pt;}
._12_c00348{margin-left:-11.392000pt;}
._14_c00348{margin-left:-10.458667pt;}
._f_c00348{margin-left:-8.640000pt;}
._11_c00348{margin-left:-7.616000pt;}
._10_c00348{margin-left:-6.138667pt;}
._8_c00348{margin-left:-4.677333pt;}
._a_c00348{margin-left:-3.733333pt;}
._2_c00348{margin-left:-2.842667pt;}
._3_c00348{margin-left:-1.872000pt;}
._7_c00348{margin-left:-0.976000pt;}
._1_c00348{width:1.664000pt;}
._0_c00348{width:2.704000pt;}
._5_c00348{width:4.437333pt;}
._9_c00348{width:5.610667pt;}
._d_c00348{width:7.061333pt;}
._e_c00348{width:8.656000pt;}
._b_c00348{width:10.352000pt;}
._c_c00348{width:11.440000pt;}
._6_c00348{width:20.522667pt;}
._15_c00348{width:26.714667pt;}
._16_c00348{width:273.909333pt;}
._4_c00348{width:277.749333pt;}
.fs4_c00348{font-size:42.666667pt;}
.fs2_c00348{font-size:56.000000pt;}
.fs1_c00348{font-size:64.000000pt;}
.fs3_c00348{font-size:66.666667pt;}
.fs0_c00348{font-size:69.333333pt;}
.y0_c00348{bottom:0.000000pt;}
.y1d_c00348{bottom:2.760000pt;}
.y1c_c00348{bottom:6.425204pt;}
.y1b_c00348{bottom:46.786667pt;}
.y1a_c00348{bottom:69.586667pt;}
.y19_c00348{bottom:92.386667pt;}
.y18_c00348{bottom:115.453333pt;}
.y17_c00348{bottom:137.053333pt;}
.y16_c00348{bottom:159.853333pt;}
.y15_c00348{bottom:181.986667pt;}
.y14_c00348{bottom:203.720000pt;}
.y13_c00348{bottom:224.920000pt;}
.y12_c00348{bottom:247.986667pt;}
.y11_c00348{bottom:269.986667pt;}
.y10_c00348{bottom:310.386667pt;}
.yf_c00348{bottom:353.986667pt;}
.ye_c00348{bottom:376.386667pt;}
.yd_c00348{bottom:398.386667pt;}
.yc_c00348{bottom:419.720000pt;}
.yb_c00348{bottom:441.853333pt;}
.ya_c00348{bottom:464.120000pt;}
.y9_c00348{bottom:485.586667pt;}
.y8_c00348{bottom:509.320000pt;}
.y7_c00348{bottom:528.920000pt;}
.y6_c00348{bottom:551.586667pt;}
.y5_c00348{bottom:573.320000pt;}
.y4_c00348{bottom:595.453333pt;}
.y3_c00348{bottom:617.320000pt;}
.y2_c00348{bottom:638.653333pt;}
.y1_c00348{bottom:661.720000pt;}
.h5_c00348{height:11.733399pt;}
.h6_c00348{height:38.937500pt;}
.h4_c00348{height:65.429688pt;}
.h3_c00348{height:81.031250pt;}
.h2_c00348{height:81.148438pt;}
.h0_c00348{height:695.266667pt;}
.h1_c00348{height:695.333333pt;}
.w2_c00348{width:93.222667pt;}
.w1_c00348{width:482.000000pt;}
.w0_c00348{width:482.133333pt;}
.x0_c00348{left:0.000000pt;}
.x4_c00348{left:28.266667pt;}
.x3_c00348{left:29.466667pt;}
.x2_c00348{left:30.400000pt;}
.x5_c00348{left:31.866667pt;}
.x6_c00348{left:35.066667pt;}
.x1_c00348{left:138.400000pt;}
.x8_c00348{left:198.234904pt;}
.x7_c00348{left:219.466667pt;}
}





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

.ir_c00349:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00349{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00349;src:url('chunks/assets/font_978701b7e27fd67ab22e219d.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.480469;font-style:normal;font-weight:normal;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_bad4e5e0bed1d57a5d819d64.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;line-height:1.219238;font-style: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:3.000000px;}
.sc__c00349{text-shadow:none;}
.sc0_c00349{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00349{-webkit-text-stroke:0px transparent;}
.sc0_c00349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00349{word-spacing:0.000000px;}
._13_c00349{margin-left:-30.672000px;}
._14_c00349{margin-left:-28.728000px;}
._17_c00349{margin-left:-20.232000px;}
._10_c00349{margin-left:-12.240000px;}
._12_c00349{margin-left:-10.584000px;}
._e_c00349{margin-left:-9.432000px;}
._9_c00349{margin-left:-7.920000px;}
._7_c00349{margin-left:-6.480000px;}
._8_c00349{margin-left:-4.464000px;}
._a_c00349{margin-left:-2.736000px;}
._c_c00349{margin-left:-1.368000px;}
._5_c00349{width:1.224000px;}
._6_c00349{width:2.304000px;}
._b_c00349{width:3.312000px;}
._1_c00349{width:4.392000px;}
._4_c00349{width:5.688000px;}
._f_c00349{width:6.768000px;}
._3_c00349{width:7.848000px;}
._2_c00349{width:8.856000px;}
._0_c00349{width:10.872000px;}
._d_c00349{width:13.248000px;}
._11_c00349{width:15.840000px;}
._16_c00349{width:28.080000px;}
._15_c00349{width:326.016000px;}
._18_c00349{width:334.872000px;}
.fc2_c00349{color:transparent;}
.fc1_c00349{color:rgb(128,128,128);}
.fc0_c00349{color:rgb(0,0,0);}
.fs1_c00349{font-size:48.000000px;}
.fs0_c00349{font-size:72.000000px;}
.y0_c00349{bottom:0.000000px;}
.y1f_c00349{bottom:3.105000px;}
.y1e_c00349{bottom:7.228369px;}
.y1d_c00349{bottom:53.970000px;}
.y1c_c00349{bottom:78.570000px;}
.y1b_c00349{bottom:104.520000px;}
.y1a_c00349{bottom:129.570000px;}
.y19_c00349{bottom:155.220000px;}
.y18_c00349{bottom:179.520000px;}
.y17_c00349{bottom:204.870000px;}
.y16_c00349{bottom:229.770000px;}
.y15_c00349{bottom:254.520000px;}
.y14_c00349{bottom:279.120000px;}
.y13_c00349{bottom:304.770000px;}
.y12_c00349{bottom:329.070000px;}
.y11_c00349{bottom:354.270000px;}
.y10_c00349{bottom:378.570000px;}
.yf_c00349{bottom:404.970000px;}
.ye_c00349{bottom:428.520000px;}
.yd_c00349{bottom:451.620000px;}
.yc_c00349{bottom:475.920000px;}
.yb_c00349{bottom:500.070000px;}
.ya_c00349{bottom:525.420000px;}
.y9_c00349{bottom:549.420000px;}
.y8_c00349{bottom:574.470000px;}
.y7_c00349{bottom:599.070000px;}
.y6_c00349{bottom:624.270000px;}
.y5_c00349{bottom:647.970000px;}
.y4_c00349{bottom:673.320000px;}
.y3_c00349{bottom:697.620000px;}
.y2_c00349{bottom:722.220000px;}
.y1_c00349{bottom:748.470000px;}
.h2_c00349{height:13.200073px;}
.h3_c00349{height:43.804688px;}
.h1_c00349{height:91.160156px;}
.h0_c00349{height:793.500000px;}
.w2_c00349{width:104.875500px;}
.w0_c00349{width:512.175000px;}
.w1_c00349{width:512.250000px;}
.x0_c00349{left:0.000000px;}
.x5_c00349{left:108.000000px;}
.x4_c00349{left:109.050000px;}
.x2_c00349{left:110.400000px;}
.x3_c00349{left:111.450000px;}
.x7_c00349{left:207.901749px;}
.x6_c00349{left:236.250000px;}
.x1_c00349{left:247.650000px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls1_c00349{letter-spacing:0.000000pt;}
.ls0_c00349{letter-spacing:2.666667pt;}
.ws0_c00349{word-spacing:0.000000pt;}
._13_c00349{margin-left:-27.264000pt;}
._14_c00349{margin-left:-25.536000pt;}
._17_c00349{margin-left:-17.984000pt;}
._10_c00349{margin-left:-10.880000pt;}
._12_c00349{margin-left:-9.408000pt;}
._e_c00349{margin-left:-8.384000pt;}
._9_c00349{margin-left:-7.040000pt;}
._7_c00349{margin-left:-5.760000pt;}
._8_c00349{margin-left:-3.968000pt;}
._a_c00349{margin-left:-2.432000pt;}
._c_c00349{margin-left:-1.216000pt;}
._5_c00349{width:1.088000pt;}
._6_c00349{width:2.048000pt;}
._b_c00349{width:2.944000pt;}
._1_c00349{width:3.904000pt;}
._4_c00349{width:5.056000pt;}
._f_c00349{width:6.016000pt;}
._3_c00349{width:6.976000pt;}
._2_c00349{width:7.872000pt;}
._0_c00349{width:9.664000pt;}
._d_c00349{width:11.776000pt;}
._11_c00349{width:14.080000pt;}
._16_c00349{width:24.960000pt;}
._15_c00349{width:289.792000pt;}
._18_c00349{width:297.664000pt;}
.fs1_c00349{font-size:42.666667pt;}
.fs0_c00349{font-size:64.000000pt;}
.y0_c00349{bottom:0.000000pt;}
.y1f_c00349{bottom:2.760000pt;}
.y1e_c00349{bottom:6.425217pt;}
.y1d_c00349{bottom:47.973333pt;}
.y1c_c00349{bottom:69.840000pt;}
.y1b_c00349{bottom:92.906667pt;}
.y1a_c00349{bottom:115.173333pt;}
.y19_c00349{bottom:137.973333pt;}
.y18_c00349{bottom:159.573333pt;}
.y17_c00349{bottom:182.106667pt;}
.y16_c00349{bottom:204.240000pt;}
.y15_c00349{bottom:226.240000pt;}
.y14_c00349{bottom:248.106667pt;}
.y13_c00349{bottom:270.906667pt;}
.y12_c00349{bottom:292.506667pt;}
.y11_c00349{bottom:314.906667pt;}
.y10_c00349{bottom:336.506667pt;}
.yf_c00349{bottom:359.973333pt;}
.ye_c00349{bottom:380.906667pt;}
.yd_c00349{bottom:401.440000pt;}
.yc_c00349{bottom:423.040000pt;}
.yb_c00349{bottom:444.506667pt;}
.ya_c00349{bottom:467.040000pt;}
.y9_c00349{bottom:488.373333pt;}
.y8_c00349{bottom:510.640000pt;}
.y7_c00349{bottom:532.506667pt;}
.y6_c00349{bottom:554.906667pt;}
.y5_c00349{bottom:575.973333pt;}
.y4_c00349{bottom:598.506667pt;}
.y3_c00349{bottom:620.106667pt;}
.y2_c00349{bottom:641.973333pt;}
.y1_c00349{bottom:665.306667pt;}
.h2_c00349{height:11.733399pt;}
.h3_c00349{height:38.937500pt;}
.h1_c00349{height:81.031250pt;}
.h0_c00349{height:705.333333pt;}
.w2_c00349{width:93.222667pt;}
.w0_c00349{width:455.266667pt;}
.w1_c00349{width:455.333333pt;}
.x0_c00349{left:0.000000pt;}
.x5_c00349{left:96.000000pt;}
.x4_c00349{left:96.933333pt;}
.x2_c00349{left:98.133333pt;}
.x3_c00349{left:99.066667pt;}
.x7_c00349{left:184.801554pt;}
.x6_c00349{left:210.000000pt;}
.x1_c00349{left:220.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_88208f74e32724edd9ac2987.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.480469;font-style:normal;font-weight:normal;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_efd7637e814e821ab430fc04.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00350;src:url('chunks/assets/font_7ccdd8b33efaf1db411a755f.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00350{font-family:ff4_c00350;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00350{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00350{vertical-align:0.000000px;}
.ls1_c00350{letter-spacing:0.000000px;}
.ls2_c00350{letter-spacing:3.000000px;}
.ls0_c00350{letter-spacing:13.200000px;}
.sc__c00350{text-shadow:none;}
.sc0_c00350{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00350{-webkit-text-stroke:0px transparent;}
.sc0_c00350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00350{word-spacing:0.000000px;}
._14_c00350{margin-left:-23.832000px;}
._13_c00350{margin-left:-19.224000px;}
._12_c00350{margin-left:-17.424000px;}
._16_c00350{margin-left:-14.976000px;}
._8_c00350{margin-left:-13.872000px;}
._15_c00350{margin-left:-11.736000px;}
._17_c00350{margin-left:-10.656000px;}
._d_c00350{margin-left:-7.128000px;}
._10_c00350{margin-left:-6.120000px;}
._b_c00350{margin-left:-5.112000px;}
._a_c00350{margin-left:-3.456000px;}
._2_c00350{margin-left:-2.376000px;}
._5_c00350{margin-left:-1.152000px;}
._9_c00350{width:1.800000px;}
._3_c00350{width:3.528000px;}
._6_c00350{width:5.256000px;}
._4_c00350{width:6.984000px;}
._f_c00350{width:7.992000px;}
._c_c00350{width:9.648000px;}
._11_c00350{width:10.872000px;}
._1_c00350{width:11.880000px;}
._1a_c00350{width:12.960000px;}
._1b_c00350{width:14.400000px;}
._e_c00350{width:15.768000px;}
._1c_c00350{width:17.496000px;}
._0_c00350{width:19.008000px;}
._18_c00350{width:24.768000px;}
._19_c00350{width:35.424000px;}
._1e_c00350{width:44.064000px;}
._1f_c00350{width:314.688000px;}
._7_c00350{width:374.472000px;}
._1d_c00350{width:740.736000px;}
.fc2_c00350{color:transparent;}
.fc1_c00350{color:rgb(128,128,128);}
.fc0_c00350{color:rgb(0,0,0);}
.fs2_c00350{font-size:48.000000px;}
.fs0_c00350{font-size:72.000000px;}
.fs1_c00350{font-size:78.000000px;}
.y0_c00350{bottom:0.000000px;}
.y1f_c00350{bottom:3.105000px;}
.y1e_c00350{bottom:7.228355px;}
.y1d_c00350{bottom:51.585000px;}
.y1c_c00350{bottom:79.335000px;}
.y1b_c00350{bottom:102.585000px;}
.y1a_c00350{bottom:129.285000px;}
.y19_c00350{bottom:153.585000px;}
.y18_c00350{bottom:178.485000px;}
.y17_c00350{bottom:203.385000px;}
.y16_c00350{bottom:227.835000px;}
.y15_c00350{bottom:248.385000px;}
.y14_c00350{bottom:277.335000px;}
.y13_c00350{bottom:300.735000px;}
.y12_c00350{bottom:323.685000px;}
.y11_c00350{bottom:347.835000px;}
.y10_c00350{bottom:371.535000px;}
.yf_c00350{bottom:395.235000px;}
.ye_c00350{bottom:420.735000px;}
.yd_c00350{bottom:445.485000px;}
.yc_c00350{bottom:470.085000px;}
.yb_c00350{bottom:493.785000px;}
.ya_c00350{bottom:518.685000px;}
.y9_c00350{bottom:543.285000px;}
.y8_c00350{bottom:568.335000px;}
.y7_c00350{bottom:592.635000px;}
.y6_c00350{bottom:617.235000px;}
.y5_c00350{bottom:642.285000px;}
.y4_c00350{bottom:666.585000px;}
.y3_c00350{bottom:690.435000px;}
.y2_c00350{bottom:715.785000px;}
.y1_c00350{bottom:741.135000px;}
.h4_c00350{height:13.200074px;}
.h5_c00350{height:43.804688px;}
.h2_c00350{height:84.269531px;}
.h3_c00350{height:91.160156px;}
.h0_c00350{height:788.925000px;}
.h1_c00350{height:789.000000px;}
.w2_c00350{width:104.875500px;}
.w1_c00350{width:533.250000px;}
.w0_c00350{width:533.550000px;}
.x0_c00350{left:0.000000px;}
.x9_c00350{left:36.750000px;}
.x5_c00350{left:40.800000px;}
.x6_c00350{left:42.750000px;}
.x7_c00350{left:43.800000px;}
.x4_c00350{left:45.600000px;}
.x3_c00350{left:46.950000px;}
.x2_c00350{left:48.300000px;}
.x8_c00350{left:68.100000px;}
.x1_c00350{left:160.200000px;}
.xa_c00350{left:218.589249px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls1_c00350{letter-spacing:0.000000pt;}
.ls2_c00350{letter-spacing:2.666667pt;}
.ls0_c00350{letter-spacing:11.733333pt;}
.ws0_c00350{word-spacing:0.000000pt;}
._14_c00350{margin-left:-21.184000pt;}
._13_c00350{margin-left:-17.088000pt;}
._12_c00350{margin-left:-15.488000pt;}
._16_c00350{margin-left:-13.312000pt;}
._8_c00350{margin-left:-12.330667pt;}
._15_c00350{margin-left:-10.432000pt;}
._17_c00350{margin-left:-9.472000pt;}
._d_c00350{margin-left:-6.336000pt;}
._10_c00350{margin-left:-5.440000pt;}
._b_c00350{margin-left:-4.544000pt;}
._a_c00350{margin-left:-3.072000pt;}
._2_c00350{margin-left:-2.112000pt;}
._5_c00350{margin-left:-1.024000pt;}
._9_c00350{width:1.600000pt;}
._3_c00350{width:3.136000pt;}
._6_c00350{width:4.672000pt;}
._4_c00350{width:6.208000pt;}
._f_c00350{width:7.104000pt;}
._c_c00350{width:8.576000pt;}
._11_c00350{width:9.664000pt;}
._1_c00350{width:10.560000pt;}
._1a_c00350{width:11.520000pt;}
._1b_c00350{width:12.800000pt;}
._e_c00350{width:14.016000pt;}
._1c_c00350{width:15.552000pt;}
._0_c00350{width:16.896000pt;}
._18_c00350{width:22.016000pt;}
._19_c00350{width:31.488000pt;}
._1e_c00350{width:39.168000pt;}
._1f_c00350{width:279.722667pt;}
._7_c00350{width:332.864000pt;}
._1d_c00350{width:658.432000pt;}
.fs2_c00350{font-size:42.666667pt;}
.fs0_c00350{font-size:64.000000pt;}
.fs1_c00350{font-size:69.333333pt;}
.y0_c00350{bottom:0.000000pt;}
.y1f_c00350{bottom:2.760000pt;}
.y1e_c00350{bottom:6.425204pt;}
.y1d_c00350{bottom:45.853333pt;}
.y1c_c00350{bottom:70.520000pt;}
.y1b_c00350{bottom:91.186667pt;}
.y1a_c00350{bottom:114.920000pt;}
.y19_c00350{bottom:136.520000pt;}
.y18_c00350{bottom:158.653333pt;}
.y17_c00350{bottom:180.786667pt;}
.y16_c00350{bottom:202.520000pt;}
.y15_c00350{bottom:220.786667pt;}
.y14_c00350{bottom:246.520000pt;}
.y13_c00350{bottom:267.320000pt;}
.y12_c00350{bottom:287.720000pt;}
.y11_c00350{bottom:309.186667pt;}
.y10_c00350{bottom:330.253333pt;}
.yf_c00350{bottom:351.320000pt;}
.ye_c00350{bottom:373.986667pt;}
.yd_c00350{bottom:395.986667pt;}
.yc_c00350{bottom:417.853333pt;}
.yb_c00350{bottom:438.920000pt;}
.ya_c00350{bottom:461.053333pt;}
.y9_c00350{bottom:482.920000pt;}
.y8_c00350{bottom:505.186667pt;}
.y7_c00350{bottom:526.786667pt;}
.y6_c00350{bottom:548.653333pt;}
.y5_c00350{bottom:570.920000pt;}
.y4_c00350{bottom:592.520000pt;}
.y3_c00350{bottom:613.720000pt;}
.y2_c00350{bottom:636.253333pt;}
.y1_c00350{bottom:658.786667pt;}
.h4_c00350{height:11.733399pt;}
.h5_c00350{height:38.937500pt;}
.h2_c00350{height:74.906250pt;}
.h3_c00350{height:81.031250pt;}
.h0_c00350{height:701.266667pt;}
.h1_c00350{height:701.333333pt;}
.w2_c00350{width:93.222667pt;}
.w1_c00350{width:474.000000pt;}
.w0_c00350{width:474.266667pt;}
.x0_c00350{left:0.000000pt;}
.x9_c00350{left:32.666667pt;}
.x5_c00350{left:36.266667pt;}
.x6_c00350{left:38.000000pt;}
.x7_c00350{left:38.933333pt;}
.x4_c00350{left:40.533333pt;}
.x3_c00350{left:41.733333pt;}
.x2_c00350{left:42.933333pt;}
.x8_c00350{left:60.533333pt;}
.x1_c00350{left:142.400000pt;}
.xa_c00350{left:194.301554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e46d905ff5e62781f7616e94.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00351;src:url('chunks/assets/font_3be66aa4da60a7874c4d73fe.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00351;src:url('chunks/assets/font_1db28b80dca0b395574d904a.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:1.568848;font-style:normal;font-weight:normal;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_cdbc5a3a59673a3262052b3b.woff2')format("woff");}.ff4_c00351{font-family:ff4_c00351;line-height:1.568848;font-style:normal;font-weight:normal;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_ba802daa7a47157df5dfa8ac.woff2')format("woff");}.ff5_c00351{font-family:ff5_c00351;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00351;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00351{font-family:ff6_c00351;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00351{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00351{vertical-align:0.000000px;}
.ls0_c00351{letter-spacing:0.000000px;}
.ls1_c00351{letter-spacing:3.000000px;}
.ls2_c00351{letter-spacing:6.000000px;}
.sc__c00351{text-shadow:none;}
.sc0_c00351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00351{-webkit-text-stroke:0px transparent;}
.sc0_c00351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00351{word-spacing:-33.192000px;}
.ws1_c00351{word-spacing:-20.352000px;}
.ws2_c00351{word-spacing:-20.250000px;}
.ws3_c00351{word-spacing:0.000000px;}
._10_c00351{margin-left:-14.181000px;}
._2_c00351{margin-left:-11.592000px;}
._d_c00351{margin-left:-9.288000px;}
._c_c00351{margin-left:-7.848000px;}
._e_c00351{margin-left:-6.441000px;}
._9_c00351{margin-left:-5.280000px;}
._6_c00351{margin-left:-4.221000px;}
._5_c00351{margin-left:-2.928000px;}
._4_c00351{margin-left:-1.512000px;}
._7_c00351{width:1.878000px;}
._a_c00351{width:3.144000px;}
._1_c00351{width:4.872000px;}
._3_c00351{width:6.216000px;}
._0_c00351{width:8.064000px;}
._b_c00351{width:9.294000px;}
._f_c00351{width:10.428000px;}
._8_c00351{width:11.937000px;}
._12_c00351{width:12.996000px;}
._11_c00351{width:14.985000px;}
.fc2_c00351{color:transparent;}
.fc1_c00351{color:rgb(128,128,128);}
.fc0_c00351{color:rgb(0,0,0);}
.fs4_c00351{font-size:48.000000px;}
.fs3_c00351{font-size:57.000000px;}
.fs2_c00351{font-size:63.000000px;}
.fs1_c00351{font-size:72.000000px;}
.fs0_c00351{font-size:84.000000px;}
.y0_c00351{bottom:0.000000px;}
.y1f_c00351{bottom:3.105000px;}
.y1e_c00351{bottom:7.228369px;}
.y1d_c00351{bottom:47.970000px;}
.y1c_c00351{bottom:71.820000px;}
.y1b_c00351{bottom:97.770000px;}
.y1a_c00351{bottom:123.120000px;}
.y19_c00351{bottom:148.470000px;}
.y18_c00351{bottom:172.770000px;}
.y17_c00351{bottom:198.420000px;}
.y16_c00351{bottom:223.320000px;}
.y15_c00351{bottom:248.070000px;}
.y14_c00351{bottom:272.670000px;}
.y13_c00351{bottom:297.270000px;}
.y12_c00351{bottom:322.620000px;}
.y11_c00351{bottom:346.320000px;}
.y10_c00351{bottom:371.220000px;}
.yf_c00351{bottom:394.920000px;}
.ye_c00351{bottom:419.820000px;}
.yd_c00351{bottom:443.070000px;}
.yc_c00351{bottom:467.070000px;}
.yb_c00351{bottom:491.070000px;}
.ya_c00351{bottom:515.970000px;}
.y9_c00351{bottom:540.570000px;}
.y8_c00351{bottom:564.270000px;}
.y7_c00351{bottom:589.320000px;}
.y6_c00351{bottom:614.220000px;}
.y5_c00351{bottom:638.820000px;}
.y4_c00351{bottom:662.220000px;}
.y3_c00351{bottom:687.720000px;}
.y2_c00351{bottom:713.070000px;}
.y1_c00351{bottom:738.420000px;}
.h5_c00351{height:13.200073px;}
.h6_c00351{height:43.804688px;}
.h4_c00351{height:55.942383px;}
.h2_c00351{height:82.441406px;}
.h3_c00351{height:91.160156px;}
.h0_c00351{height:782.700000px;}
.h1_c00351{height:783.000000px;}
.w2_c00351{width:104.875500px;}
.w0_c00351{width:517.350000px;}
.w1_c00351{width:517.500000px;}
.x0_c00351{left:0.000000px;}
.x4_c00351{left:99.000000px;}
.x6_c00351{left:100.950000px;}
.x5_c00351{left:102.000000px;}
.x2_c00351{left:103.350000px;}
.x7_c00351{left:104.700000px;}
.x8_c00351{left:105.750000px;}
.x9_c00351{left:108.000000px;}
.xa_c00351{left:109.050000px;}
.x3_c00351{left:130.350000px;}
.xc_c00351{left:210.489258px;}
.x1_c00351{left:231.450000px;}
.xb_c00351{left:441.750000px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls0_c00351{letter-spacing:0.000000pt;}
.ls1_c00351{letter-spacing:2.666667pt;}
.ls2_c00351{letter-spacing:5.333333pt;}
.ws0_c00351{word-spacing:-29.504000pt;}
.ws1_c00351{word-spacing:-18.090667pt;}
.ws2_c00351{word-spacing:-18.000000pt;}
.ws3_c00351{word-spacing:0.000000pt;}
._10_c00351{margin-left:-12.605333pt;}
._2_c00351{margin-left:-10.304000pt;}
._d_c00351{margin-left:-8.256000pt;}
._c_c00351{margin-left:-6.976000pt;}
._e_c00351{margin-left:-5.725333pt;}
._9_c00351{margin-left:-4.693333pt;}
._6_c00351{margin-left:-3.752000pt;}
._5_c00351{margin-left:-2.602667pt;}
._4_c00351{margin-left:-1.344000pt;}
._7_c00351{width:1.669333pt;}
._a_c00351{width:2.794667pt;}
._1_c00351{width:4.330667pt;}
._3_c00351{width:5.525333pt;}
._0_c00351{width:7.168000pt;}
._b_c00351{width:8.261333pt;}
._f_c00351{width:9.269333pt;}
._8_c00351{width:10.610667pt;}
._12_c00351{width:11.552000pt;}
._11_c00351{width:13.320000pt;}
.fs4_c00351{font-size:42.666667pt;}
.fs3_c00351{font-size:50.666667pt;}
.fs2_c00351{font-size:56.000000pt;}
.fs1_c00351{font-size:64.000000pt;}
.fs0_c00351{font-size:74.666667pt;}
.y0_c00351{bottom:0.000000pt;}
.y1f_c00351{bottom:2.760000pt;}
.y1e_c00351{bottom:6.425217pt;}
.y1d_c00351{bottom:42.640000pt;}
.y1c_c00351{bottom:63.840000pt;}
.y1b_c00351{bottom:86.906667pt;}
.y1a_c00351{bottom:109.440000pt;}
.y19_c00351{bottom:131.973333pt;}
.y18_c00351{bottom:153.573333pt;}
.y17_c00351{bottom:176.373333pt;}
.y16_c00351{bottom:198.506667pt;}
.y15_c00351{bottom:220.506667pt;}
.y14_c00351{bottom:242.373333pt;}
.y13_c00351{bottom:264.240000pt;}
.y12_c00351{bottom:286.773333pt;}
.y11_c00351{bottom:307.840000pt;}
.y10_c00351{bottom:329.973333pt;}
.yf_c00351{bottom:351.040000pt;}
.ye_c00351{bottom:373.173333pt;}
.yd_c00351{bottom:393.840000pt;}
.yc_c00351{bottom:415.173333pt;}
.yb_c00351{bottom:436.506667pt;}
.ya_c00351{bottom:458.640000pt;}
.y9_c00351{bottom:480.506667pt;}
.y8_c00351{bottom:501.573333pt;}
.y7_c00351{bottom:523.840000pt;}
.y6_c00351{bottom:545.973333pt;}
.y5_c00351{bottom:567.840000pt;}
.y4_c00351{bottom:588.640000pt;}
.y3_c00351{bottom:611.306667pt;}
.y2_c00351{bottom:633.840000pt;}
.y1_c00351{bottom:656.373333pt;}
.h5_c00351{height:11.733399pt;}
.h6_c00351{height:38.937500pt;}
.h4_c00351{height:49.726562pt;}
.h2_c00351{height:73.281250pt;}
.h3_c00351{height:81.031250pt;}
.h0_c00351{height:695.733333pt;}
.h1_c00351{height:696.000000pt;}
.w2_c00351{width:93.222667pt;}
.w0_c00351{width:459.866667pt;}
.w1_c00351{width:460.000000pt;}
.x0_c00351{left:0.000000pt;}
.x4_c00351{left:88.000000pt;}
.x6_c00351{left:89.733333pt;}
.x5_c00351{left:90.666667pt;}
.x2_c00351{left:91.866667pt;}
.x7_c00351{left:93.066667pt;}
.x8_c00351{left:94.000000pt;}
.x9_c00351{left:96.000000pt;}
.xa_c00351{left:96.933333pt;}
.x3_c00351{left:115.866667pt;}
.xc_c00351{left:187.101563pt;}
.x1_c00351{left:205.733333pt;}
.xb_c00351{left:392.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_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_e6ac083ea3d7196ccf442fab.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00352;src:url('chunks/assets/font_6aa18e1a3b250a26fbd48438.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00352;src:url('chunks/assets/font_8a42ac5d3907df9ed6fb16e4.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;line-height:1.568848;font-style:normal;font-weight:normal;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_9d43877e248387535cf0e410.woff2')format("woff");}.ff4_c00352{font-family:ff4_c00352;line-height:1.480469;font-style:normal;font-weight:normal;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_ae174d6d3d5dc5eaae74c8b2.woff2')format("woff");}.ff5_c00352{font-family:ff5_c00352;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00352;src:url('chunks/assets/font_a8b7377dc73e3e3646fb7355.woff2')format("woff");}.ff6_c00352{font-family:ff6_c00352;line-height:1.568848;font-style:normal;font-weight: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_c00352;src:url('chunks/assets/font_e981a5a6a2e564f9dfe6e536.woff2')format("woff");}.ff7_c00352{font-family:ff7_c00352;line-height:1.480469;font-style:normal;font-weight: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_c00352;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff8_c00352{font-family:ff8_c00352;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00352{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00352{vertical-align:0.000000px;}
.ls7_c00352{letter-spacing:0.000000px;}
.ls8_c00352{letter-spacing:3.000000px;}
.ls2_c00352{letter-spacing:7.188000px;}
.ls0_c00352{letter-spacing:10.188000px;}
.ls6_c00352{letter-spacing:14.388000px;}
.ls4_c00352{letter-spacing:15.588000px;}
.ls1_c00352{letter-spacing:16.788000px;}
.ls3_c00352{letter-spacing:20.388000px;}
.ls5_c00352{letter-spacing:22.788000px;}
.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;}
}
.ws3_c00352{word-spacing:-22.464000px;}
.ws2_c00352{word-spacing:-22.098000px;}
.ws1_c00352{word-spacing:-20.352000px;}
.ws0_c00352{word-spacing:-17.352000px;}
.ws4_c00352{word-spacing:0.000000px;}
._1d_c00352{margin-left:-20.835000px;}
._1c_c00352{margin-left:-19.707000px;}
._1e_c00352{margin-left:-16.515000px;}
._14_c00352{margin-left:-15.495000px;}
._10_c00352{margin-left:-13.812000px;}
._11_c00352{margin-left:-11.832000px;}
._15_c00352{margin-left:-10.452000px;}
._f_c00352{margin-left:-9.300000px;}
._a_c00352{margin-left:-8.181000px;}
._13_c00352{margin-left:-6.528000px;}
._12_c00352{margin-left:-5.280000px;}
._d_c00352{margin-left:-3.312000px;}
._4_c00352{margin-left:-1.764000px;}
._b_c00352{width:1.872000px;}
._c_c00352{width:2.952000px;}
._2_c00352{width:4.872000px;}
._7_c00352{width:6.636000px;}
._1_c00352{width:7.644000px;}
._3_c00352{width:8.988000px;}
._5_c00352{width:10.080000px;}
._6_c00352{width:12.012000px;}
._0_c00352{width:13.188000px;}
._e_c00352{width:14.904000px;}
._19_c00352{width:15.948000px;}
._9_c00352{width:18.225000px;}
._20_c00352{width:19.714200px;}
._17_c00352{width:25.857000px;}
._23_c00352{width:43.344000px;}
._22_c00352{width:48.456000px;}
._16_c00352{width:78.492000px;}
._1a_c00352{width:148.716000px;}
._1b_c00352{width:245.880000px;}
._18_c00352{width:302.700000px;}
._8_c00352{width:308.541000px;}
._24_c00352{width:357.336000px;}
._1f_c00352{width:359.595000px;}
._21_c00352{width:494.724000px;}
.fc2_c00352{color:transparent;}
.fc1_c00352{color:rgb(128,128,128);}
.fc0_c00352{color:rgb(0,0,0);}
.fs6_c00352{font-size:48.000000px;}
.fs5_c00352{font-size:57.600000px;}
.fs3_c00352{font-size:63.000000px;}
.fs2_c00352{font-size:72.000000px;}
.fs1_c00352{font-size:81.000000px;}
.fs0_c00352{font-size:84.000000px;}
.fs4_c00352{font-size:87.000000px;}
.y0_c00352{bottom:0.000000px;}
.y1f_c00352{bottom:3.105000px;}
.y1e_c00352{bottom:7.228371px;}
.y1d_c00352{bottom:48.015000px;}
.y1c_c00352{bottom:72.015000px;}
.y1b_c00352{bottom:99.615000px;}
.y1a_c00352{bottom:122.865000px;}
.y19_c00352{bottom:149.865000px;}
.y18_c00352{bottom:172.215000px;}
.y17_c00352{bottom:200.115000px;}
.y16_c00352{bottom:222.765000px;}
.y15_c00352{bottom:247.815000px;}
.y14_c00352{bottom:273.465000px;}
.y13_c00352{bottom:295.665000px;}
.y12_c00352{bottom:320.715000px;}
.y11_c00352{bottom:344.265000px;}
.y10_c00352{bottom:367.665000px;}
.yf_c00352{bottom:393.165000px;}
.ye_c00352{bottom:417.465000px;}
.yd_c00352{bottom:443.115000px;}
.yc_c00352{bottom:467.565000px;}
.yb_c00352{bottom:491.415000px;}
.ya_c00352{bottom:516.015000px;}
.y9_c00352{bottom:540.465000px;}
.y8_c00352{bottom:565.065000px;}
.y7_c00352{bottom:590.715000px;}
.y6_c00352{bottom:615.915000px;}
.y5_c00352{bottom:639.915000px;}
.y4_c00352{bottom:663.315000px;}
.y3_c00352{bottom:688.965000px;}
.y2_c00352{bottom:713.115000px;}
.y1_c00352{bottom:737.115000px;}
.h5_c00352{height:13.200074px;}
.h6_c00352{height:43.804688px;}
.h2_c00352{height:82.400391px;}
.h3_c00352{height:91.160156px;}
.h4_c00352{height:110.151855px;}
.h1_c00352{height:777.000000px;}
.h0_c00352{height:777.075000px;}
.w2_c00352{width:104.875500px;}
.w1_c00352{width:534.000000px;}
.w0_c00352{width:534.300000px;}
.x0_c00352{left:0.000000px;}
.xa_c00352{left:28.950000px;}
.x8_c00352{left:31.950000px;}
.x7_c00352{left:33.450000px;}
.x2_c00352{left:35.550000px;}
.x3_c00352{left:37.050000px;}
.xb_c00352{left:46.500000px;}
.x9_c00352{left:84.600000px;}
.x4_c00352{left:91.800000px;}
.x5_c00352{left:115.800000px;}
.x1_c00352{left:157.350000px;}
.x6_c00352{left:207.450000px;}
.xc_c00352{left:218.964249px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls7_c00352{letter-spacing:0.000000pt;}
.ls8_c00352{letter-spacing:2.666667pt;}
.ls2_c00352{letter-spacing:6.389333pt;}
.ls0_c00352{letter-spacing:9.056000pt;}
.ls6_c00352{letter-spacing:12.789333pt;}
.ls4_c00352{letter-spacing:13.856000pt;}
.ls1_c00352{letter-spacing:14.922667pt;}
.ls3_c00352{letter-spacing:18.122667pt;}
.ls5_c00352{letter-spacing:20.256000pt;}
.ws3_c00352{word-spacing:-19.968000pt;}
.ws2_c00352{word-spacing:-19.642667pt;}
.ws1_c00352{word-spacing:-18.090667pt;}
.ws0_c00352{word-spacing:-15.424000pt;}
.ws4_c00352{word-spacing:0.000000pt;}
._1d_c00352{margin-left:-18.520000pt;}
._1c_c00352{margin-left:-17.517333pt;}
._1e_c00352{margin-left:-14.680000pt;}
._14_c00352{margin-left:-13.773333pt;}
._10_c00352{margin-left:-12.277333pt;}
._11_c00352{margin-left:-10.517333pt;}
._15_c00352{margin-left:-9.290667pt;}
._f_c00352{margin-left:-8.266667pt;}
._a_c00352{margin-left:-7.272000pt;}
._13_c00352{margin-left:-5.802667pt;}
._12_c00352{margin-left:-4.693333pt;}
._d_c00352{margin-left:-2.944000pt;}
._4_c00352{margin-left:-1.568000pt;}
._b_c00352{width:1.664000pt;}
._c_c00352{width:2.624000pt;}
._2_c00352{width:4.330667pt;}
._7_c00352{width:5.898667pt;}
._1_c00352{width:6.794667pt;}
._3_c00352{width:7.989333pt;}
._5_c00352{width:8.960000pt;}
._6_c00352{width:10.677333pt;}
._0_c00352{width:11.722667pt;}
._e_c00352{width:13.248000pt;}
._19_c00352{width:14.176000pt;}
._9_c00352{width:16.200000pt;}
._20_c00352{width:17.523733pt;}
._17_c00352{width:22.984000pt;}
._23_c00352{width:38.528000pt;}
._22_c00352{width:43.072000pt;}
._16_c00352{width:69.770667pt;}
._1a_c00352{width:132.192000pt;}
._1b_c00352{width:218.560000pt;}
._18_c00352{width:269.066667pt;}
._8_c00352{width:274.258667pt;}
._24_c00352{width:317.632000pt;}
._1f_c00352{width:319.640000pt;}
._21_c00352{width:439.754667pt;}
.fs6_c00352{font-size:42.666667pt;}
.fs5_c00352{font-size:51.200000pt;}
.fs3_c00352{font-size:56.000000pt;}
.fs2_c00352{font-size:64.000000pt;}
.fs1_c00352{font-size:72.000000pt;}
.fs0_c00352{font-size:74.666667pt;}
.fs4_c00352{font-size:77.333333pt;}
.y0_c00352{bottom:0.000000pt;}
.y1f_c00352{bottom:2.760000pt;}
.y1e_c00352{bottom:6.425219pt;}
.y1d_c00352{bottom:42.680000pt;}
.y1c_c00352{bottom:64.013333pt;}
.y1b_c00352{bottom:88.546667pt;}
.y1a_c00352{bottom:109.213333pt;}
.y19_c00352{bottom:133.213333pt;}
.y18_c00352{bottom:153.080000pt;}
.y17_c00352{bottom:177.880000pt;}
.y16_c00352{bottom:198.013333pt;}
.y15_c00352{bottom:220.280000pt;}
.y14_c00352{bottom:243.080000pt;}
.y13_c00352{bottom:262.813333pt;}
.y12_c00352{bottom:285.080000pt;}
.y11_c00352{bottom:306.013333pt;}
.y10_c00352{bottom:326.813333pt;}
.yf_c00352{bottom:349.480000pt;}
.ye_c00352{bottom:371.080000pt;}
.yd_c00352{bottom:393.880000pt;}
.yc_c00352{bottom:415.613333pt;}
.yb_c00352{bottom:436.813333pt;}
.ya_c00352{bottom:458.680000pt;}
.y9_c00352{bottom:480.413333pt;}
.y8_c00352{bottom:502.280000pt;}
.y7_c00352{bottom:525.080000pt;}
.y6_c00352{bottom:547.480000pt;}
.y5_c00352{bottom:568.813333pt;}
.y4_c00352{bottom:589.613333pt;}
.y3_c00352{bottom:612.413333pt;}
.y2_c00352{bottom:633.880000pt;}
.y1_c00352{bottom:655.213333pt;}
.h5_c00352{height:11.733399pt;}
.h6_c00352{height:38.937500pt;}
.h2_c00352{height:73.244792pt;}
.h3_c00352{height:81.031250pt;}
.h4_c00352{height:97.912760pt;}
.h1_c00352{height:690.666667pt;}
.h0_c00352{height:690.733333pt;}
.w2_c00352{width:93.222667pt;}
.w1_c00352{width:474.666667pt;}
.w0_c00352{width:474.933333pt;}
.x0_c00352{left:0.000000pt;}
.xa_c00352{left:25.733333pt;}
.x8_c00352{left:28.400000pt;}
.x7_c00352{left:29.733333pt;}
.x2_c00352{left:31.600000pt;}
.x3_c00352{left:32.933333pt;}
.xb_c00352{left:41.333333pt;}
.x9_c00352{left:75.200000pt;}
.x4_c00352{left:81.600000pt;}
.x5_c00352{left:102.933333pt;}
.x1_c00352{left:139.866667pt;}
.x6_c00352{left:184.400000pt;}
.xc_c00352{left:194.634888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3fde02a432e8e84fbce70d70.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00353;src:url('chunks/assets/font_5f4166ccb3391e821a9f38f8.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:1.568848;font-style:normal;font-weight:normal;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_ac1f302ce44f40f49a02b526.woff2')format("woff");}.ff3_c00353{font-family:ff3_c00353;line-height:1.480469;font-style:normal;font-weight:normal;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_eeefb84124b443a25fd63e25.woff2')format("woff");}.ff4_c00353{font-family:ff4_c00353;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00353;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00353{font-family:ff5_c00353;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00353{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00353{vertical-align:0.000000px;}
.ls2_c00353{letter-spacing:0.000000px;}
.ls0_c00353{letter-spacing:2.100000px;}
.ls3_c00353{letter-spacing:3.000000px;}
.ls4_c00353{letter-spacing:6.000000px;}
.ls1_c00353{letter-spacing:11.700000px;}
.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:-42.000000px;}
.ws1_c00353{word-spacing:-37.809000px;}
.ws3_c00353{word-spacing:-20.352000px;}
.ws2_c00353{word-spacing:-16.629000px;}
.ws4_c00353{word-spacing:0.000000px;}
._11_c00353{margin-left:-12.510000px;}
._13_c00353{margin-left:-10.143000px;}
._12_c00353{margin-left:-6.141000px;}
._6_c00353{margin-left:-4.680000px;}
._4_c00353{margin-left:-3.456000px;}
._3_c00353{margin-left:-1.584000px;}
._5_c00353{width:2.016000px;}
._1_c00353{width:3.024000px;}
._2_c00353{width:4.872000px;}
._8_c00353{width:6.099000px;}
._0_c00353{width:7.140000px;}
._a_c00353{width:8.406000px;}
._7_c00353{width:10.056000px;}
._c_c00353{width:11.274000px;}
._9_c00353{width:13.119000px;}
._b_c00353{width:14.121000px;}
._14_c00353{width:15.450000px;}
._10_c00353{width:18.609000px;}
._e_c00353{width:20.547000px;}
._15_c00353{width:22.986000px;}
._f_c00353{width:25.137000px;}
._16_c00353{width:33.879000px;}
._d_c00353{width:36.168000px;}
.fc2_c00353{color:transparent;}
.fc1_c00353{color:rgb(128,128,128);}
.fc0_c00353{color:rgb(0,0,0);}
.fs3_c00353{font-size:48.000000px;}
.fs2_c00353{font-size:69.000000px;}
.fs1_c00353{font-size:72.000000px;}
.fs0_c00353{font-size:84.000000px;}
.y0_c00353{bottom:0.000000px;}
.y1f_c00353{bottom:3.105000px;}
.y1e_c00353{bottom:7.228371px;}
.y1d_c00353{bottom:49.665000px;}
.y1c_c00353{bottom:72.915000px;}
.y1b_c00353{bottom:99.015000px;}
.y1a_c00353{bottom:124.665000px;}
.y19_c00353{bottom:149.865000px;}
.y18_c00353{bottom:174.915000px;}
.y17_c00353{bottom:200.265000px;}
.y16_c00353{bottom:224.865000px;}
.y15_c00353{bottom:249.465000px;}
.y14_c00353{bottom:274.815000px;}
.y13_c00353{bottom:299.715000px;}
.y12_c00353{bottom:324.465000px;}
.y11_c00353{bottom:349.365000px;}
.y10_c00353{bottom:373.665000px;}
.yf_c00353{bottom:398.715000px;}
.ye_c00353{bottom:423.315000px;}
.yd_c00353{bottom:447.165000px;}
.yc_c00353{bottom:470.865000px;}
.yb_c00353{bottom:496.815000px;}
.ya_c00353{bottom:520.815000px;}
.y9_c00353{bottom:544.815000px;}
.y8_c00353{bottom:570.165000px;}
.y7_c00353{bottom:595.365000px;}
.y6_c00353{bottom:620.115000px;}
.y5_c00353{bottom:644.415000px;}
.y4_c00353{bottom:669.615000px;}
.y3_c00353{bottom:691.665000px;}
.y2_c00353{bottom:718.965000px;}
.y1_c00353{bottom:743.865000px;}
.h5_c00353{height:13.200074px;}
.h6_c00353{height:43.804688px;}
.h2_c00353{height:82.400391px;}
.h4_c00353{height:87.361816px;}
.h3_c00353{height:91.160156px;}
.h0_c00353{height:779.775000px;}
.h1_c00353{height:780.000000px;}
.w2_c00353{width:104.875500px;}
.w0_c00353{width:519.450000px;}
.w1_c00353{width:519.750000px;}
.x0_c00353{left:0.000000px;}
.x2_c00353{left:102.300000px;}
.x3_c00353{left:103.500000px;}
.x4_c00353{left:104.550000px;}
.x5_c00353{left:105.900000px;}
.x6_c00353{left:107.700000px;}
.x8_c00353{left:211.539230px;}
.x1_c00353{left:234.600000px;}
.x7_c00353{left:448.500000px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls2_c00353{letter-spacing:0.000000pt;}
.ls0_c00353{letter-spacing:1.866667pt;}
.ls3_c00353{letter-spacing:2.666667pt;}
.ls4_c00353{letter-spacing:5.333333pt;}
.ls1_c00353{letter-spacing:10.400000pt;}
.ws0_c00353{word-spacing:-37.333333pt;}
.ws1_c00353{word-spacing:-33.608000pt;}
.ws3_c00353{word-spacing:-18.090667pt;}
.ws2_c00353{word-spacing:-14.781333pt;}
.ws4_c00353{word-spacing:0.000000pt;}
._11_c00353{margin-left:-11.120000pt;}
._13_c00353{margin-left:-9.016000pt;}
._12_c00353{margin-left:-5.458667pt;}
._6_c00353{margin-left:-4.160000pt;}
._4_c00353{margin-left:-3.072000pt;}
._3_c00353{margin-left:-1.408000pt;}
._5_c00353{width:1.792000pt;}
._1_c00353{width:2.688000pt;}
._2_c00353{width:4.330667pt;}
._8_c00353{width:5.421333pt;}
._0_c00353{width:6.346667pt;}
._a_c00353{width:7.472000pt;}
._7_c00353{width:8.938667pt;}
._c_c00353{width:10.021333pt;}
._9_c00353{width:11.661333pt;}
._b_c00353{width:12.552000pt;}
._14_c00353{width:13.733333pt;}
._10_c00353{width:16.541333pt;}
._e_c00353{width:18.264000pt;}
._15_c00353{width:20.432000pt;}
._f_c00353{width:22.344000pt;}
._16_c00353{width:30.114667pt;}
._d_c00353{width:32.149333pt;}
.fs3_c00353{font-size:42.666667pt;}
.fs2_c00353{font-size:61.333333pt;}
.fs1_c00353{font-size:64.000000pt;}
.fs0_c00353{font-size:74.666667pt;}
.y0_c00353{bottom:0.000000pt;}
.y1f_c00353{bottom:2.760000pt;}
.y1e_c00353{bottom:6.425219pt;}
.y1d_c00353{bottom:44.146667pt;}
.y1c_c00353{bottom:64.813333pt;}
.y1b_c00353{bottom:88.013333pt;}
.y1a_c00353{bottom:110.813333pt;}
.y19_c00353{bottom:133.213333pt;}
.y18_c00353{bottom:155.480000pt;}
.y17_c00353{bottom:178.013333pt;}
.y16_c00353{bottom:199.880000pt;}
.y15_c00353{bottom:221.746667pt;}
.y14_c00353{bottom:244.280000pt;}
.y13_c00353{bottom:266.413333pt;}
.y12_c00353{bottom:288.413333pt;}
.y11_c00353{bottom:310.546667pt;}
.y10_c00353{bottom:332.146667pt;}
.yf_c00353{bottom:354.413333pt;}
.ye_c00353{bottom:376.280000pt;}
.yd_c00353{bottom:397.480000pt;}
.yc_c00353{bottom:418.546667pt;}
.yb_c00353{bottom:441.613333pt;}
.ya_c00353{bottom:462.946667pt;}
.y9_c00353{bottom:484.280000pt;}
.y8_c00353{bottom:506.813333pt;}
.y7_c00353{bottom:529.213333pt;}
.y6_c00353{bottom:551.213333pt;}
.y5_c00353{bottom:572.813333pt;}
.y4_c00353{bottom:595.213333pt;}
.y3_c00353{bottom:614.813333pt;}
.y2_c00353{bottom:639.080000pt;}
.y1_c00353{bottom:661.213333pt;}
.h5_c00353{height:11.733399pt;}
.h6_c00353{height:38.937500pt;}
.h2_c00353{height:73.244792pt;}
.h4_c00353{height:77.654948pt;}
.h3_c00353{height:81.031250pt;}
.h0_c00353{height:693.133333pt;}
.h1_c00353{height:693.333333pt;}
.w2_c00353{width:93.222667pt;}
.w0_c00353{width:461.733333pt;}
.w1_c00353{width:462.000000pt;}
.x0_c00353{left:0.000000pt;}
.x2_c00353{left:90.933333pt;}
.x3_c00353{left:92.000000pt;}
.x4_c00353{left:92.933333pt;}
.x5_c00353{left:94.133333pt;}
.x6_c00353{left:95.733333pt;}
.x8_c00353{left:188.034871pt;}
.x1_c00353{left:208.533333pt;}
.x7_c00353{left:398.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_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_5339945d1fccfa474853e8ff.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.568848;font-style:normal;font-weight:normal;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_b94596b7d327f9cd647e55d1.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00354;src:url('chunks/assets/font_f615d709f22938ffadb9327d.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00354;src:url('chunks/assets/font_dc9dd25def450eb6442cebb6.woff2')format("woff");}.ff4_c00354{font-family:ff4_c00354;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00354;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00354{font-family:ff5_c00354;line-height:1.219238;font-style: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:3.000000px;}
.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;}
}
.ws2_c00354{word-spacing:-38.511000px;}
.ws0_c00354{word-spacing:-31.809000px;}
.ws1_c00354{word-spacing:-22.977000px;}
.ws3_c00354{word-spacing:0.000000px;}
._1b_c00354{margin-left:-26.787000px;}
._15_c00354{margin-left:-16.935000px;}
._16_c00354{margin-left:-13.941000px;}
._18_c00354{margin-left:-12.771000px;}
._1c_c00354{margin-left:-11.031000px;}
._f_c00354{margin-left:-9.660000px;}
._e_c00354{margin-left:-8.418000px;}
._0_c00354{margin-left:-6.969000px;}
._1_c00354{margin-left:-5.106000px;}
._6_c00354{margin-left:-3.174000px;}
._4_c00354{margin-left:-1.311000px;}
._8_c00354{width:1.449000px;}
._5_c00354{width:2.691000px;}
._3_c00354{width:3.726000px;}
._2_c00354{width:4.830000px;}
._c_c00354{width:6.141000px;}
._11_c00354{width:7.314000px;}
._9_c00354{width:8.349000px;}
._10_c00354{width:9.384000px;}
._b_c00354{width:10.419000px;}
._a_c00354{width:12.006000px;}
._19_c00354{width:13.179000px;}
._d_c00354{width:14.214000px;}
._12_c00354{width:16.215000px;}
._14_c00354{width:21.528000px;}
._13_c00354{width:27.465000px;}
._1e_c00354{width:35.880000px;}
._17_c00354{width:70.095000px;}
._1d_c00354{width:181.416000px;}
._1a_c00354{width:183.471000px;}
._1f_c00354{width:318.987000px;}
._7_c00354{width:369.702000px;}
.fc2_c00354{color:transparent;}
.fc1_c00354{color:rgb(128,128,128);}
.fc0_c00354{color:rgb(0,0,0);}
.fs3_c00354{font-size:48.000000px;}
.fs0_c00354{font-size:69.000000px;}
.fs1_c00354{font-size:72.000000px;}
.fs2_c00354{font-size:99.000000px;}
.y0_c00354{bottom:0.000000px;}
.y1e_c00354{bottom:3.105000px;}
.y1d_c00354{bottom:7.228371px;}
.y1c_c00354{bottom:55.065000px;}
.y1b_c00354{bottom:80.115000px;}
.y1a_c00354{bottom:106.665000px;}
.y19_c00354{bottom:132.015000px;}
.y18_c00354{bottom:157.365000px;}
.y17_c00354{bottom:181.665000px;}
.y16_c00354{bottom:207.015000px;}
.y15_c00354{bottom:231.615000px;}
.y14_c00354{bottom:255.465000px;}
.y13_c00354{bottom:281.115000px;}
.y12_c00354{bottom:304.515000px;}
.y11_c00354{bottom:328.815000px;}
.y10_c00354{bottom:352.365000px;}
.yf_c00354{bottom:376.665000px;}
.ye_c00354{bottom:401.415000px;}
.yd_c00354{bottom:425.715000px;}
.yc_c00354{bottom:450.615000px;}
.yb_c00354{bottom:476.265000px;}
.ya_c00354{bottom:499.515000px;}
.y9_c00354{bottom:524.115000px;}
.y8_c00354{bottom:548.865000px;}
.y7_c00354{bottom:573.465000px;}
.y6_c00354{bottom:598.515000px;}
.y5_c00354{bottom:623.715000px;}
.y4_c00354{bottom:648.315000px;}
.y3_c00354{bottom:672.765000px;}
.y2_c00354{bottom:697.665000px;}
.y1_c00354{bottom:721.365000px;}
.h5_c00354{height:13.200074px;}
.h6_c00354{height:43.804688px;}
.h2_c00354{height:87.361816px;}
.h3_c00354{height:91.160156px;}
.h4_c00354{height:105.633000px;}
.h1_c00354{height:790.500000px;}
.h0_c00354{height:790.575000px;}
.w2_c00354{width:104.875500px;}
.w1_c00354{width:532.500000px;}
.w0_c00354{width:532.725000px;}
.x0_c00354{left:0.000000px;}
.x1_c00354{left:37.350000px;}
.x2_c00354{left:38.400000px;}
.x6_c00354{left:39.450000px;}
.x3_c00354{left:40.800000px;}
.x8_c00354{left:41.850000px;}
.x4_c00354{left:42.900000px;}
.x5_c00354{left:43.950000px;}
.x7_c00354{left:143.400000px;}
.xa_c00354{left:218.176758px;}
.x9_c00354{left:270.000000px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls1_c00354{letter-spacing:0.000000pt;}
.ls0_c00354{letter-spacing:2.666667pt;}
.ws2_c00354{word-spacing:-34.232000pt;}
.ws0_c00354{word-spacing:-28.274667pt;}
.ws1_c00354{word-spacing:-20.424000pt;}
.ws3_c00354{word-spacing:0.000000pt;}
._1b_c00354{margin-left:-23.810667pt;}
._15_c00354{margin-left:-15.053333pt;}
._16_c00354{margin-left:-12.392000pt;}
._18_c00354{margin-left:-11.352000pt;}
._1c_c00354{margin-left:-9.805333pt;}
._f_c00354{margin-left:-8.586667pt;}
._e_c00354{margin-left:-7.482667pt;}
._0_c00354{margin-left:-6.194667pt;}
._1_c00354{margin-left:-4.538667pt;}
._6_c00354{margin-left:-2.821333pt;}
._4_c00354{margin-left:-1.165333pt;}
._8_c00354{width:1.288000pt;}
._5_c00354{width:2.392000pt;}
._3_c00354{width:3.312000pt;}
._2_c00354{width:4.293333pt;}
._c_c00354{width:5.458667pt;}
._11_c00354{width:6.501333pt;}
._9_c00354{width:7.421333pt;}
._10_c00354{width:8.341333pt;}
._b_c00354{width:9.261333pt;}
._a_c00354{width:10.672000pt;}
._19_c00354{width:11.714667pt;}
._d_c00354{width:12.634667pt;}
._12_c00354{width:14.413333pt;}
._14_c00354{width:19.136000pt;}
._13_c00354{width:24.413333pt;}
._1e_c00354{width:31.893333pt;}
._17_c00354{width:62.306667pt;}
._1d_c00354{width:161.258667pt;}
._1a_c00354{width:163.085333pt;}
._1f_c00354{width:283.544000pt;}
._7_c00354{width:328.624000pt;}
.fs3_c00354{font-size:42.666667pt;}
.fs0_c00354{font-size:61.333333pt;}
.fs1_c00354{font-size:64.000000pt;}
.fs2_c00354{font-size:88.000000pt;}
.y0_c00354{bottom:0.000000pt;}
.y1e_c00354{bottom:2.760000pt;}
.y1d_c00354{bottom:6.425219pt;}
.y1c_c00354{bottom:48.946667pt;}
.y1b_c00354{bottom:71.213333pt;}
.y1a_c00354{bottom:94.813333pt;}
.y19_c00354{bottom:117.346667pt;}
.y18_c00354{bottom:139.880000pt;}
.y17_c00354{bottom:161.480000pt;}
.y16_c00354{bottom:184.013333pt;}
.y15_c00354{bottom:205.880000pt;}
.y14_c00354{bottom:227.080000pt;}
.y13_c00354{bottom:249.880000pt;}
.y12_c00354{bottom:270.680000pt;}
.y11_c00354{bottom:292.280000pt;}
.y10_c00354{bottom:313.213333pt;}
.yf_c00354{bottom:334.813333pt;}
.ye_c00354{bottom:356.813333pt;}
.yd_c00354{bottom:378.413333pt;}
.yc_c00354{bottom:400.546667pt;}
.yb_c00354{bottom:423.346667pt;}
.ya_c00354{bottom:444.013333pt;}
.y9_c00354{bottom:465.880000pt;}
.y8_c00354{bottom:487.880000pt;}
.y7_c00354{bottom:509.746667pt;}
.y6_c00354{bottom:532.013333pt;}
.y5_c00354{bottom:554.413333pt;}
.y4_c00354{bottom:576.280000pt;}
.y3_c00354{bottom:598.013333pt;}
.y2_c00354{bottom:620.146667pt;}
.y1_c00354{bottom:641.213333pt;}
.h5_c00354{height:11.733399pt;}
.h6_c00354{height:38.937500pt;}
.h2_c00354{height:77.654948pt;}
.h3_c00354{height:81.031250pt;}
.h4_c00354{height:93.896000pt;}
.h1_c00354{height:702.666667pt;}
.h0_c00354{height:702.733333pt;}
.w2_c00354{width:93.222667pt;}
.w1_c00354{width:473.333333pt;}
.w0_c00354{width:473.533333pt;}
.x0_c00354{left:0.000000pt;}
.x1_c00354{left:33.200000pt;}
.x2_c00354{left:34.133333pt;}
.x6_c00354{left:35.066667pt;}
.x3_c00354{left:36.266667pt;}
.x8_c00354{left:37.200000pt;}
.x4_c00354{left:38.133333pt;}
.x5_c00354{left:39.066667pt;}
.x7_c00354{left:127.466667pt;}
.xa_c00354{left:193.934896pt;}
.x9_c00354{left:240.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_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_7c36abf2ddd154a564c132c0.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.568848;font-style:normal;font-weight:normal;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_751c9441df65f2dc52d058a2.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.480469;font-style:normal;font-weight:normal;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_4c5c6546fc298c463f4d840d.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;line-height:1.568848;font-style:normal;font-weight:normal;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_d4183bbe4532e3c4963a4ace.woff2')format("woff");}.ff4_c00355{font-family:ff4_c00355;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00355{font-family:ff5_c00355;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00355{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00355{vertical-align:0.000000px;}
.ls7_c00355{letter-spacing:-6.000000px;}
.ls6_c00355{letter-spacing:-3.000000px;}
.ls5_c00355{letter-spacing:0.000000px;}
.ls0_c00355{letter-spacing:1.464000px;}
.ls2_c00355{letter-spacing:2.136000px;}
.ls3_c00355{letter-spacing:3.000000px;}
.ls1_c00355{letter-spacing:4.545600px;}
.ls4_c00355{letter-spacing:259.248000px;}
.sc__c00355{text-shadow:none;}
.sc0_c00355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00355{-webkit-text-stroke:0px transparent;}
.sc0_c00355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00355{word-spacing:-46.488000px;}
.ws0_c00355{word-spacing:-37.790400px;}
.ws2_c00355{word-spacing:-24.051000px;}
.ws3_c00355{word-spacing:-17.352000px;}
.ws4_c00355{word-spacing:0.000000px;}
._22_c00355{margin-left:-42.132000px;}
._26_c00355{margin-left:-39.384000px;}
._28_c00355{margin-left:-32.184000px;}
._2a_c00355{margin-left:-29.808000px;}
._24_c00355{margin-left:-18.600000px;}
._15_c00355{margin-left:-16.920000px;}
._1c_c00355{margin-left:-15.072000px;}
._14_c00355{margin-left:-13.836000px;}
._c_c00355{margin-left:-12.600000px;}
._18_c00355{margin-left:-11.082000px;}
._7_c00355{margin-left:-9.540000px;}
._0_c00355{margin-left:-7.878000px;}
._e_c00355{margin-left:-6.192000px;}
._13_c00355{margin-left:-4.752000px;}
._a_c00355{margin-left:-3.384000px;}
._b_c00355{margin-left:-2.016000px;}
._11_c00355{margin-left:-1.008000px;}
._9_c00355{width:1.152000px;}
._8_c00355{width:2.376000px;}
._f_c00355{width:3.672000px;}
._12_c00355{width:4.896000px;}
._10_c00355{width:6.480000px;}
._17_c00355{width:7.548000px;}
._3_c00355{width:8.880000px;}
._d_c00355{width:11.136000px;}
._6_c00355{width:13.398000px;}
._16_c00355{width:14.472000px;}
._5_c00355{width:17.100000px;}
._4_c00355{width:19.020000px;}
._2_c00355{width:24.960000px;}
._23_c00355{width:26.640000px;}
._1d_c00355{width:32.760000px;}
._1e_c00355{width:37.440000px;}
._2b_c00355{width:64.872000px;}
._20_c00355{width:85.578000px;}
._1a_c00355{width:144.024000px;}
._21_c00355{width:147.498000px;}
._25_c00355{width:150.996000px;}
._19_c00355{width:200.040000px;}
._29_c00355{width:232.560000px;}
._1_c00355{width:326.820000px;}
._1f_c00355{width:480.888000px;}
._1b_c00355{width:512.016000px;}
._27_c00355{width:691.560000px;}
.fc2_c00355{color:transparent;}
.fc1_c00355{color:rgb(128,128,128);}
.fc0_c00355{color:rgb(0,0,0);}
.fs5_c00355{font-size:48.000000px;}
.fs3_c00355{font-size:57.600000px;}
.fs1_c00355{font-size:60.000000px;}
.fs4_c00355{font-size:63.000000px;}
.fs2_c00355{font-size:72.000000px;}
.fs0_c00355{font-size:78.000000px;}
.y0_c00355{bottom:0.000000px;}
.y20_c00355{bottom:3.105000px;}
.y1f_c00355{bottom:7.228371px;}
.y1e_c00355{bottom:61.815000px;}
.y1d_c00355{bottom:87.165000px;}
.y1c_c00355{bottom:112.515000px;}
.y1b_c00355{bottom:138.015000px;}
.y1a_c00355{bottom:163.665000px;}
.y19_c00355{bottom:188.415000px;}
.y18_c00355{bottom:213.315000px;}
.y17_c00355{bottom:238.065000px;}
.y16_c00355{bottom:262.965000px;}
.y15_c00355{bottom:287.265000px;}
.y14_c00355{bottom:311.865000px;}
.y13_c00355{bottom:336.465000px;}
.y12_c00355{bottom:348.015000px;}
.y11_c00355{bottom:362.265000px;}
.y10_c00355{bottom:385.515000px;}
.yf_c00355{bottom:410.865000px;}
.ye_c00355{bottom:435.465000px;}
.yd_c00355{bottom:459.165000px;}
.yc_c00355{bottom:483.765000px;}
.yb_c00355{bottom:508.365000px;}
.ya_c00355{bottom:533.265000px;}
.y9_c00355{bottom:557.865000px;}
.y8_c00355{bottom:581.865000px;}
.y7_c00355{bottom:606.915000px;}
.y6_c00355{bottom:630.765000px;}
.y5_c00355{bottom:656.865000px;}
.y4_c00355{bottom:680.715000px;}
.y3_c00355{bottom:705.165000px;}
.y2_c00355{bottom:729.465000px;}
.y1_c00355{bottom:755.415000px;}
.h4_c00355{height:13.200074px;}
.h5_c00355{height:43.804688px;}
.h3_c00355{height:91.160156px;}
.h2_c00355{height:98.756836px;}
.h0_c00355{height:791.925000px;}
.h1_c00355{height:792.000000px;}
.w2_c00355{width:104.875500px;}
.w0_c00355{width:522.450000px;}
.w1_c00355{width:522.750000px;}
.x0_c00355{left:0.000000px;}
.xe_c00355{left:14.850000px;}
.xc_c00355{left:46.800000px;}
.xd_c00355{left:73.350000px;}
.x10_c00355{left:92.850000px;}
.xb_c00355{left:94.950000px;}
.xa_c00355{left:97.200000px;}
.x9_c00355{left:98.550000px;}
.xf_c00355{left:100.350000px;}
.x7_c00355{left:101.850000px;}
.x4_c00355{left:103.350000px;}
.x3_c00355{left:106.650000px;}
.x11_c00355{left:108.300000px;}
.x8_c00355{left:135.600000px;}
.x1_c00355{left:142.950000px;}
.x5_c00355{left:213.600000px;}
.x2_c00355{left:251.550000px;}
.x6_c00355{left:337.500000px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls7_c00355{letter-spacing:-5.333333pt;}
.ls6_c00355{letter-spacing:-2.666667pt;}
.ls5_c00355{letter-spacing:0.000000pt;}
.ls0_c00355{letter-spacing:1.301333pt;}
.ls2_c00355{letter-spacing:1.898667pt;}
.ls3_c00355{letter-spacing:2.666667pt;}
.ls1_c00355{letter-spacing:4.040533pt;}
.ls4_c00355{letter-spacing:230.442667pt;}
.ws1_c00355{word-spacing:-41.322667pt;}
.ws0_c00355{word-spacing:-33.591467pt;}
.ws2_c00355{word-spacing:-21.378667pt;}
.ws3_c00355{word-spacing:-15.424000pt;}
.ws4_c00355{word-spacing:0.000000pt;}
._22_c00355{margin-left:-37.450667pt;}
._26_c00355{margin-left:-35.008000pt;}
._28_c00355{margin-left:-28.608000pt;}
._2a_c00355{margin-left:-26.496000pt;}
._24_c00355{margin-left:-16.533333pt;}
._15_c00355{margin-left:-15.040000pt;}
._1c_c00355{margin-left:-13.397333pt;}
._14_c00355{margin-left:-12.298667pt;}
._c_c00355{margin-left:-11.200000pt;}
._18_c00355{margin-left:-9.850667pt;}
._7_c00355{margin-left:-8.480000pt;}
._0_c00355{margin-left:-7.002667pt;}
._e_c00355{margin-left:-5.504000pt;}
._13_c00355{margin-left:-4.224000pt;}
._a_c00355{margin-left:-3.008000pt;}
._b_c00355{margin-left:-1.792000pt;}
._11_c00355{margin-left:-0.896000pt;}
._9_c00355{width:1.024000pt;}
._8_c00355{width:2.112000pt;}
._f_c00355{width:3.264000pt;}
._12_c00355{width:4.352000pt;}
._10_c00355{width:5.760000pt;}
._17_c00355{width:6.709333pt;}
._3_c00355{width:7.893333pt;}
._d_c00355{width:9.898667pt;}
._6_c00355{width:11.909333pt;}
._16_c00355{width:12.864000pt;}
._5_c00355{width:15.200000pt;}
._4_c00355{width:16.906667pt;}
._2_c00355{width:22.186667pt;}
._23_c00355{width:23.680000pt;}
._1d_c00355{width:29.120000pt;}
._1e_c00355{width:33.280000pt;}
._2b_c00355{width:57.664000pt;}
._20_c00355{width:76.069333pt;}
._1a_c00355{width:128.021333pt;}
._21_c00355{width:131.109333pt;}
._25_c00355{width:134.218667pt;}
._19_c00355{width:177.813333pt;}
._29_c00355{width:206.720000pt;}
._1_c00355{width:290.506667pt;}
._1f_c00355{width:427.456000pt;}
._1b_c00355{width:455.125333pt;}
._27_c00355{width:614.720000pt;}
.fs5_c00355{font-size:42.666667pt;}
.fs3_c00355{font-size:51.200000pt;}
.fs1_c00355{font-size:53.333333pt;}
.fs4_c00355{font-size:56.000000pt;}
.fs2_c00355{font-size:64.000000pt;}
.fs0_c00355{font-size:69.333333pt;}
.y0_c00355{bottom:0.000000pt;}
.y20_c00355{bottom:2.760000pt;}
.y1f_c00355{bottom:6.425219pt;}
.y1e_c00355{bottom:54.946667pt;}
.y1d_c00355{bottom:77.480000pt;}
.y1c_c00355{bottom:100.013333pt;}
.y1b_c00355{bottom:122.680000pt;}
.y1a_c00355{bottom:145.480000pt;}
.y19_c00355{bottom:167.480000pt;}
.y18_c00355{bottom:189.613333pt;}
.y17_c00355{bottom:211.613333pt;}
.y16_c00355{bottom:233.746667pt;}
.y15_c00355{bottom:255.346667pt;}
.y14_c00355{bottom:277.213333pt;}
.y13_c00355{bottom:299.080000pt;}
.y12_c00355{bottom:309.346667pt;}
.y11_c00355{bottom:322.013333pt;}
.y10_c00355{bottom:342.680000pt;}
.yf_c00355{bottom:365.213333pt;}
.ye_c00355{bottom:387.080000pt;}
.yd_c00355{bottom:408.146667pt;}
.yc_c00355{bottom:430.013333pt;}
.yb_c00355{bottom:451.880000pt;}
.ya_c00355{bottom:474.013333pt;}
.y9_c00355{bottom:495.880000pt;}
.y8_c00355{bottom:517.213333pt;}
.y7_c00355{bottom:539.480000pt;}
.y6_c00355{bottom:560.680000pt;}
.y5_c00355{bottom:583.880000pt;}
.y4_c00355{bottom:605.080000pt;}
.y3_c00355{bottom:626.813333pt;}
.y2_c00355{bottom:648.413333pt;}
.y1_c00355{bottom:671.480000pt;}
.h4_c00355{height:11.733399pt;}
.h5_c00355{height:38.937500pt;}
.h3_c00355{height:81.031250pt;}
.h2_c00355{height:87.783854pt;}
.h0_c00355{height:703.933333pt;}
.h1_c00355{height:704.000000pt;}
.w2_c00355{width:93.222667pt;}
.w0_c00355{width:464.400000pt;}
.w1_c00355{width:464.666667pt;}
.x0_c00355{left:0.000000pt;}
.xe_c00355{left:13.200000pt;}
.xc_c00355{left:41.600000pt;}
.xd_c00355{left:65.200000pt;}
.x10_c00355{left:82.533333pt;}
.xb_c00355{left:84.400000pt;}
.xa_c00355{left:86.400000pt;}
.x9_c00355{left:87.600000pt;}
.xf_c00355{left:89.200000pt;}
.x7_c00355{left:90.533333pt;}
.x4_c00355{left:91.866667pt;}
.x3_c00355{left:94.800000pt;}
.x11_c00355{left:96.266667pt;}
.x8_c00355{left:120.533333pt;}
.x1_c00355{left:127.066667pt;}
.x5_c00355{left:189.866667pt;}
.x2_c00355{left:223.600000pt;}
.x6_c00355{left:300.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_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_2d68e8fc95e4f3b0f039be81.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.480469;font-style:normal;font-weight:normal;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_2b68fd7fbd2066c1c7f448ae.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:1.568848;font-style:normal;font-weight:normal;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_4635fb9056b9d9ffbdcda1c6.woff2')format("woff");}.ff3_c00356{font-family:ff3_c00356;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00356;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00356{font-family:ff4_c00356;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00356{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00356{vertical-align:0.000000px;}
.ls2_c00356{letter-spacing:-6.000000px;}
.ls0_c00356{letter-spacing:0.000000px;}
.ls1_c00356{letter-spacing:3.000000px;}
.sc__c00356{text-shadow:none;}
.sc0_c00356{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00356{-webkit-text-stroke:0px transparent;}
.sc0_c00356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00356{word-spacing:-24.051000px;}
.ws2_c00356{word-spacing:-20.352000px;}
.ws1_c00356{word-spacing:-17.352000px;}
.ws3_c00356{word-spacing:0.000000px;}
._16_c00356{margin-left:-19.320000px;}
._4_c00356{margin-left:-13.311000px;}
._17_c00356{margin-left:-11.811000px;}
._12_c00356{margin-left:-9.951000px;}
._9_c00356{margin-left:-8.523000px;}
._13_c00356{margin-left:-7.413000px;}
._3_c00356{margin-left:-6.177000px;}
._b_c00356{margin-left:-4.914000px;}
._a_c00356{margin-left:-3.156000px;}
._2_c00356{margin-left:-1.479000px;}
._8_c00356{width:1.086000px;}
._1_c00356{width:2.175000px;}
._0_c00356{width:3.219000px;}
._d_c00356{width:4.428000px;}
._f_c00356{width:5.931000px;}
._c_c00356{width:7.602000px;}
._11_c00356{width:9.432000px;}
._e_c00356{width:10.563000px;}
._6_c00356{width:12.615000px;}
._10_c00356{width:13.644000px;}
._7_c00356{width:15.225000px;}
._15_c00356{width:16.263000px;}
._14_c00356{width:17.358000px;}
._5_c00356{width:317.985000px;}
.fc2_c00356{color:transparent;}
.fc1_c00356{color:rgb(128,128,128);}
.fc0_c00356{color:rgb(0,0,0);}
.fs3_c00356{font-size:48.000000px;}
.fs2_c00356{font-size:63.000000px;}
.fs1_c00356{font-size:72.000000px;}
.fs0_c00356{font-size:87.000000px;}
.y0_c00356{bottom:0.000000px;}
.y1f_c00356{bottom:3.105000px;}
.y1e_c00356{bottom:7.228371px;}
.y1d_c00356{bottom:50.265000px;}
.y1c_c00356{bottom:76.965000px;}
.y1b_c00356{bottom:99.315000px;}
.y1a_c00356{bottom:126.915000px;}
.y19_c00356{bottom:152.565000px;}
.y18_c00356{bottom:178.515000px;}
.y17_c00356{bottom:203.265000px;}
.y16_c00356{bottom:224.115000px;}
.y15_c00356{bottom:251.415000px;}
.y14_c00356{bottom:276.765000px;}
.y13_c00356{bottom:298.065000px;}
.y12_c00356{bottom:323.115000px;}
.y11_c00356{bottom:346.965000px;}
.y10_c00356{bottom:371.565000px;}
.yf_c00356{bottom:396.315000px;}
.ye_c00356{bottom:420.315000px;}
.yd_c00356{bottom:445.215000px;}
.yc_c00356{bottom:469.515000px;}
.yb_c00356{bottom:494.115000px;}
.ya_c00356{bottom:518.715000px;}
.y9_c00356{bottom:542.715000px;}
.y8_c00356{bottom:567.465000px;}
.y7_c00356{bottom:591.765000px;}
.y6_c00356{bottom:616.365000px;}
.y5_c00356{bottom:640.665000px;}
.y4_c00356{bottom:665.565000px;}
.y3_c00356{bottom:689.865000px;}
.y2_c00356{bottom:714.615000px;}
.y1_c00356{bottom:739.215000px;}
.h5_c00356{height:13.200074px;}
.h6_c00356{height:43.804688px;}
.h4_c00356{height:79.765137px;}
.h3_c00356{height:91.160156px;}
.h2_c00356{height:101.825684px;}
.h0_c00356{height:786.525000px;}
.h1_c00356{height:786.750000px;}
.w2_c00356{width:104.875500px;}
.w0_c00356{width:547.275000px;}
.w1_c00356{width:547.500000px;}
.x0_c00356{left:0.000000px;}
.x2_c00356{left:31.500000px;}
.x3_c00356{left:32.850000px;}
.x4_c00356{left:34.200000px;}
.x5_c00356{left:35.400000px;}
.x6_c00356{left:37.200000px;}
.x7_c00356{left:38.700000px;}
.x9_c00356{left:39.900000px;}
.x8_c00356{left:41.250000px;}
.xa_c00356{left:42.300000px;}
.x1_c00356{left:154.350000px;}
.xc_c00356{left:225.451767px;}
.xb_c00356{left:354.150000px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls2_c00356{letter-spacing:-5.333333pt;}
.ls0_c00356{letter-spacing:0.000000pt;}
.ls1_c00356{letter-spacing:2.666667pt;}
.ws0_c00356{word-spacing:-21.378667pt;}
.ws2_c00356{word-spacing:-18.090667pt;}
.ws1_c00356{word-spacing:-15.424000pt;}
.ws3_c00356{word-spacing:0.000000pt;}
._16_c00356{margin-left:-17.173333pt;}
._4_c00356{margin-left:-11.832000pt;}
._17_c00356{margin-left:-10.498667pt;}
._12_c00356{margin-left:-8.845333pt;}
._9_c00356{margin-left:-7.576000pt;}
._13_c00356{margin-left:-6.589333pt;}
._3_c00356{margin-left:-5.490667pt;}
._b_c00356{margin-left:-4.368000pt;}
._a_c00356{margin-left:-2.805333pt;}
._2_c00356{margin-left:-1.314667pt;}
._8_c00356{width:0.965333pt;}
._1_c00356{width:1.933333pt;}
._0_c00356{width:2.861333pt;}
._d_c00356{width:3.936000pt;}
._f_c00356{width:5.272000pt;}
._c_c00356{width:6.757333pt;}
._11_c00356{width:8.384000pt;}
._e_c00356{width:9.389333pt;}
._6_c00356{width:11.213333pt;}
._10_c00356{width:12.128000pt;}
._7_c00356{width:13.533333pt;}
._15_c00356{width:14.456000pt;}
._14_c00356{width:15.429333pt;}
._5_c00356{width:282.653333pt;}
.fs3_c00356{font-size:42.666667pt;}
.fs2_c00356{font-size:56.000000pt;}
.fs1_c00356{font-size:64.000000pt;}
.fs0_c00356{font-size:77.333333pt;}
.y0_c00356{bottom:0.000000pt;}
.y1f_c00356{bottom:2.760000pt;}
.y1e_c00356{bottom:6.425219pt;}
.y1d_c00356{bottom:44.680000pt;}
.y1c_c00356{bottom:68.413333pt;}
.y1b_c00356{bottom:88.280000pt;}
.y1a_c00356{bottom:112.813333pt;}
.y19_c00356{bottom:135.613333pt;}
.y18_c00356{bottom:158.680000pt;}
.y17_c00356{bottom:180.680000pt;}
.y16_c00356{bottom:199.213333pt;}
.y15_c00356{bottom:223.480000pt;}
.y14_c00356{bottom:246.013333pt;}
.y13_c00356{bottom:264.946667pt;}
.y12_c00356{bottom:287.213333pt;}
.y11_c00356{bottom:308.413333pt;}
.y10_c00356{bottom:330.280000pt;}
.yf_c00356{bottom:352.280000pt;}
.ye_c00356{bottom:373.613333pt;}
.yd_c00356{bottom:395.746667pt;}
.yc_c00356{bottom:417.346667pt;}
.yb_c00356{bottom:439.213333pt;}
.ya_c00356{bottom:461.080000pt;}
.y9_c00356{bottom:482.413333pt;}
.y8_c00356{bottom:504.413333pt;}
.y7_c00356{bottom:526.013333pt;}
.y6_c00356{bottom:547.880000pt;}
.y5_c00356{bottom:569.480000pt;}
.y4_c00356{bottom:591.613333pt;}
.y3_c00356{bottom:613.213333pt;}
.y2_c00356{bottom:635.213333pt;}
.y1_c00356{bottom:657.080000pt;}
.h5_c00356{height:11.733399pt;}
.h6_c00356{height:38.937500pt;}
.h4_c00356{height:70.902344pt;}
.h3_c00356{height:81.031250pt;}
.h2_c00356{height:90.511719pt;}
.h0_c00356{height:699.133333pt;}
.h1_c00356{height:699.333333pt;}
.w2_c00356{width:93.222667pt;}
.w0_c00356{width:486.466667pt;}
.w1_c00356{width:486.666667pt;}
.x0_c00356{left:0.000000pt;}
.x2_c00356{left:28.000000pt;}
.x3_c00356{left:29.200000pt;}
.x4_c00356{left:30.400000pt;}
.x5_c00356{left:31.466667pt;}
.x6_c00356{left:33.066667pt;}
.x7_c00356{left:34.400000pt;}
.x9_c00356{left:35.466667pt;}
.x8_c00356{left:36.666667pt;}
.xa_c00356{left:37.600000pt;}
.x1_c00356{left:137.200000pt;}
.xc_c00356{left:200.401571pt;}
.xb_c00356{left:314.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f545e99805302617b80ee26a.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.480469;font-style:normal;font-weight:normal;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_4030e4f69e6f4b8b9cb7daca.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:1.568848;font-style:normal;font-weight:normal;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_ef6f88eddcbc5838488cb2f4.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00357;src:url('chunks/assets/font_c0592087a2400ca82f42d518.woff2')format("woff");}.ff4_c00357{font-family:ff4_c00357;line-height:1.575000;font-style:normal;font-weight:normal;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_48d7ca5d21fa8804c4ed8371.woff2')format("woff");}.ff5_c00357{font-family:ff5_c00357;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00357{font-family:ff6_c00357;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00357{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00357{vertical-align:0.000000px;}
.ls1_c00357{letter-spacing:-3.000000px;}
.ls2_c00357{letter-spacing:0.000000px;}
.ls0_c00357{letter-spacing:2.388000px;}
.ls3_c00357{letter-spacing:3.000000px;}
.sc__c00357{text-shadow:none;}
.sc0_c00357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00357{-webkit-text-stroke:0px transparent;}
.sc0_c00357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00357{word-spacing:-20.658000px;}
.ws1_c00357{word-spacing:-17.352000px;}
.ws0_c00357{word-spacing:-14.460000px;}
.ws3_c00357{word-spacing:0.000000px;}
._f_c00357{margin-left:-15.633000px;}
._12_c00357{margin-left:-14.409000px;}
._b_c00357{margin-left:-12.717000px;}
._9_c00357{margin-left:-11.178000px;}
._5_c00357{margin-left:-9.360000px;}
._e_c00357{margin-left:-7.392000px;}
._16_c00357{margin-left:-5.958000px;}
._c_c00357{margin-left:-4.455000px;}
._a_c00357{margin-left:-3.078000px;}
._8_c00357{margin-left:-1.215000px;}
._15_c00357{width:1.044000px;}
._d_c00357{width:2.349000px;}
._11_c00357{width:4.320000px;}
._13_c00357{width:6.246000px;}
._10_c00357{width:8.100000px;}
._0_c00357{width:9.600000px;}
._14_c00357{width:10.854000px;}
._3_c00357{width:12.780000px;}
._4_c00357{width:14.220000px;}
._2_c00357{width:16.020000px;}
._1_c00357{width:17.940000px;}
._6_c00357{width:20.760000px;}
._7_c00357{width:22.680000px;}
._17_c00357{width:26.793000px;}
._18_c00357{width:28.254000px;}
.fc2_c00357{color:transparent;}
.fc1_c00357{color:rgb(128,128,128);}
.fc0_c00357{color:rgb(0,0,0);}
.fs6_c00357{font-size:48.000000px;}
.fs0_c00357{font-size:60.000000px;}
.fs4_c00357{font-size:63.000000px;}
.fs5_c00357{font-size:66.000000px;}
.fs3_c00357{font-size:72.000000px;}
.fs1_c00357{font-size:81.000000px;}
.fs2_c00357{font-size:84.000000px;}
.y0_c00357{bottom:0.000000px;}
.y1f_c00357{bottom:3.105000px;}
.y1e_c00357{bottom:7.228363px;}
.y1d_c00357{bottom:46.200000px;}
.y1c_c00357{bottom:67.200000px;}
.y1b_c00357{bottom:93.150000px;}
.y1a_c00357{bottom:117.750000px;}
.y19_c00357{bottom:145.200000px;}
.y18_c00357{bottom:169.050000px;}
.y17_c00357{bottom:194.100000px;}
.y16_c00357{bottom:218.700000px;}
.y15_c00357{bottom:243.300000px;}
.y14_c00357{bottom:267.900000px;}
.y13_c00357{bottom:292.950000px;}
.y12_c00357{bottom:317.550000px;}
.y11_c00357{bottom:342.150000px;}
.y10_c00357{bottom:367.200000px;}
.yf_c00357{bottom:392.400000px;}
.ye_c00357{bottom:415.500000px;}
.yd_c00357{bottom:440.400000px;}
.yc_c00357{bottom:465.000000px;}
.yb_c00357{bottom:489.300000px;}
.ya_c00357{bottom:514.650000px;}
.y9_c00357{bottom:539.250000px;}
.y8_c00357{bottom:564.000000px;}
.y7_c00357{bottom:588.300000px;}
.y6_c00357{bottom:612.600000px;}
.y5_c00357{bottom:637.500000px;}
.y4_c00357{bottom:662.250000px;}
.y3_c00357{bottom:686.850000px;}
.y2_c00357{bottom:710.400000px;}
.y1_c00357{bottom:737.100000px;}
.h5_c00357{height:13.200074px;}
.h6_c00357{height:43.804688px;}
.h4_c00357{height:70.422000px;}
.h2_c00357{height:75.966797px;}
.h3_c00357{height:91.160156px;}
.h1_c00357{height:780.000000px;}
.h0_c00357{height:780.300000px;}
.w1_c00357{width:104.875500px;}
.w0_c00357{width:489.000000px;}
.x0_c00357{left:0.000000px;}
.x9_c00357{left:76.500000px;}
.x8_c00357{left:77.850000px;}
.x7_c00357{left:79.200000px;}
.x6_c00357{left:80.700000px;}
.x5_c00357{left:82.650000px;}
.x3_c00357{left:83.700000px;}
.x4_c00357{left:85.050000px;}
.x2_c00357{left:86.400000px;}
.xb_c00357{left:196.314240px;}
.x1_c00357{left:215.100000px;}
.xa_c00357{left:451.200000px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls1_c00357{letter-spacing:-2.666667pt;}
.ls2_c00357{letter-spacing:0.000000pt;}
.ls0_c00357{letter-spacing:2.122667pt;}
.ls3_c00357{letter-spacing:2.666667pt;}
.ws2_c00357{word-spacing:-18.362667pt;}
.ws1_c00357{word-spacing:-15.424000pt;}
.ws0_c00357{word-spacing:-12.853333pt;}
.ws3_c00357{word-spacing:0.000000pt;}
._f_c00357{margin-left:-13.896000pt;}
._12_c00357{margin-left:-12.808000pt;}
._b_c00357{margin-left:-11.304000pt;}
._9_c00357{margin-left:-9.936000pt;}
._5_c00357{margin-left:-8.320000pt;}
._e_c00357{margin-left:-6.570667pt;}
._16_c00357{margin-left:-5.296000pt;}
._c_c00357{margin-left:-3.960000pt;}
._a_c00357{margin-left:-2.736000pt;}
._8_c00357{margin-left:-1.080000pt;}
._15_c00357{width:0.928000pt;}
._d_c00357{width:2.088000pt;}
._11_c00357{width:3.840000pt;}
._13_c00357{width:5.552000pt;}
._10_c00357{width:7.200000pt;}
._0_c00357{width:8.533333pt;}
._14_c00357{width:9.648000pt;}
._3_c00357{width:11.360000pt;}
._4_c00357{width:12.640000pt;}
._2_c00357{width:14.240000pt;}
._1_c00357{width:15.946667pt;}
._6_c00357{width:18.453333pt;}
._7_c00357{width:20.160000pt;}
._17_c00357{width:23.816000pt;}
._18_c00357{width:25.114667pt;}
.fs6_c00357{font-size:42.666667pt;}
.fs0_c00357{font-size:53.333333pt;}
.fs4_c00357{font-size:56.000000pt;}
.fs5_c00357{font-size:58.666667pt;}
.fs3_c00357{font-size:64.000000pt;}
.fs1_c00357{font-size:72.000000pt;}
.fs2_c00357{font-size:74.666667pt;}
.y0_c00357{bottom:0.000000pt;}
.y1f_c00357{bottom:2.760000pt;}
.y1e_c00357{bottom:6.425212pt;}
.y1d_c00357{bottom:41.066667pt;}
.y1c_c00357{bottom:59.733333pt;}
.y1b_c00357{bottom:82.800000pt;}
.y1a_c00357{bottom:104.666667pt;}
.y19_c00357{bottom:129.066667pt;}
.y18_c00357{bottom:150.266667pt;}
.y17_c00357{bottom:172.533333pt;}
.y16_c00357{bottom:194.400000pt;}
.y15_c00357{bottom:216.266667pt;}
.y14_c00357{bottom:238.133333pt;}
.y13_c00357{bottom:260.400000pt;}
.y12_c00357{bottom:282.266667pt;}
.y11_c00357{bottom:304.133333pt;}
.y10_c00357{bottom:326.400000pt;}
.yf_c00357{bottom:348.800000pt;}
.ye_c00357{bottom:369.333333pt;}
.yd_c00357{bottom:391.466667pt;}
.yc_c00357{bottom:413.333333pt;}
.yb_c00357{bottom:434.933333pt;}
.ya_c00357{bottom:457.466667pt;}
.y9_c00357{bottom:479.333333pt;}
.y8_c00357{bottom:501.333333pt;}
.y7_c00357{bottom:522.933333pt;}
.y6_c00357{bottom:544.533333pt;}
.y5_c00357{bottom:566.666667pt;}
.y4_c00357{bottom:588.666667pt;}
.y3_c00357{bottom:610.533333pt;}
.y2_c00357{bottom:631.466667pt;}
.y1_c00357{bottom:655.200000pt;}
.h5_c00357{height:11.733399pt;}
.h6_c00357{height:38.937500pt;}
.h4_c00357{height:62.597333pt;}
.h2_c00357{height:67.526042pt;}
.h3_c00357{height:81.031250pt;}
.h1_c00357{height:693.333333pt;}
.h0_c00357{height:693.600000pt;}
.w1_c00357{width:93.222667pt;}
.w0_c00357{width:434.666667pt;}
.x0_c00357{left:0.000000pt;}
.x9_c00357{left:68.000000pt;}
.x8_c00357{left:69.200000pt;}
.x7_c00357{left:70.400000pt;}
.x6_c00357{left:71.733333pt;}
.x5_c00357{left:73.466667pt;}
.x3_c00357{left:74.400000pt;}
.x4_c00357{left:75.600000pt;}
.x2_c00357{left:76.800000pt;}
.xb_c00357{left:174.501546pt;}
.x1_c00357{left:191.200000pt;}
.xa_c00357{left:401.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0dfd5ad04dfaa60478cbe196.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.480469;font-style:normal;font-weight:normal;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_efd7637e814e821ab430fc04.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00358;src:url('chunks/assets/font_f296092e632f7978f4dcd0c7.woff2')format("woff");}.ff3_c00358{font-family:ff3_c00358;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00358;src:url('chunks/assets/font_e3ce4129f8badf7a02d7c841.woff2')format("woff");}.ff4_c00358{font-family:ff4_c00358;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00358;src:url('chunks/assets/font_611d0de232bee0c135e7220f.woff2')format("woff");}.ff5_c00358{font-family:ff5_c00358;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00358;src:url('chunks/assets/font_a05240d383a2317d92d3a688.woff2')format("woff");}.ff6_c00358{font-family:ff6_c00358;line-height:1.575000;font-style:normal;font-weight: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_c00358;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00358{font-family:ff7_c00358;line-height:1.219238;font-style: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;}
.ls3_c00358{letter-spacing:-6.000000px;}
.ls0_c00358{letter-spacing:0.000000px;}
.ls1_c00358{letter-spacing:3.000000px;}
.ls2_c00358{letter-spacing:6.000000px;}
.sc__c00358{text-shadow:none;}
.sc0_c00358{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00358{-webkit-text-stroke:0px transparent;}
.sc0_c00358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00358{word-spacing:-29.970000px;}
.ws3_c00358{word-spacing:-24.051000px;}
.ws2_c00358{word-spacing:-20.352000px;}
.ws0_c00358{word-spacing:-17.352000px;}
.ws4_c00358{word-spacing:0.000000px;}
._18_c00358{margin-left:-15.336000px;}
._15_c00358{margin-left:-12.672000px;}
._16_c00358{margin-left:-10.908000px;}
._12_c00358{margin-left:-9.372000px;}
._f_c00358{margin-left:-7.476000px;}
._10_c00358{margin-left:-5.292000px;}
._4_c00358{margin-left:-4.200000px;}
._13_c00358{margin-left:-3.144000px;}
._9_c00358{margin-left:-2.100000px;}
._e_c00358{margin-left:-1.068000px;}
._a_c00358{width:1.176000px;}
._d_c00358{width:2.232000px;}
._6_c00358{width:3.840000px;}
._2_c00358{width:5.040000px;}
._11_c00358{width:6.240000px;}
._7_c00358{width:7.440000px;}
._5_c00358{width:9.120000px;}
._3_c00358{width:10.380000px;}
._c_c00358{width:11.664000px;}
._14_c00358{width:13.044000px;}
._b_c00358{width:14.640000px;}
._1_c00358{width:16.080000px;}
._17_c00358{width:19.044000px;}
._0_c00358{width:25.860000px;}
._8_c00358{width:384.360000px;}
.fc2_c00358{color:transparent;}
.fc1_c00358{color:rgb(128,128,128);}
.fc0_c00358{color:rgb(0,0,0);}
.fs6_c00358{font-size:48.000000px;}
.fs0_c00358{font-size:60.000000px;}
.fs3_c00358{font-size:63.000000px;}
.fs4_c00358{font-size:69.000000px;}
.fs2_c00358{font-size:72.000000px;}
.fs5_c00358{font-size:90.000000px;}
.fs1_c00358{font-size:108.000000px;}
.y0_c00358{bottom:0.000000px;}
.y1e_c00358{bottom:3.105000px;}
.y1d_c00358{bottom:7.228355px;}
.y1c_c00358{bottom:77.835000px;}
.y1b_c00358{bottom:105.285000px;}
.y1a_c00358{bottom:126.435000px;}
.y19_c00358{bottom:155.535000px;}
.y18_c00358{bottom:179.235000px;}
.y17_c00358{bottom:202.035000px;}
.y16_c00358{bottom:229.485000px;}
.y15_c00358{bottom:254.385000px;}
.y14_c00358{bottom:277.335000px;}
.y13_c00358{bottom:302.685000px;}
.y12_c00358{bottom:325.935000px;}
.y11_c00358{bottom:349.935000px;}
.y10_c00358{bottom:374.535000px;}
.yf_c00358{bottom:399.135000px;}
.ye_c00358{bottom:423.435000px;}
.yd_c00358{bottom:448.485000px;}
.yc_c00358{bottom:473.085000px;}
.yb_c00358{bottom:498.135000px;}
.ya_c00358{bottom:521.985000px;}
.y9_c00358{bottom:547.035000px;}
.y8_c00358{bottom:572.085000px;}
.y7_c00358{bottom:596.235000px;}
.y6_c00358{bottom:621.285000px;}
.y5_c00358{bottom:645.885000px;}
.y4_c00358{bottom:669.885000px;}
.y3_c00358{bottom:694.485000px;}
.y2_c00358{bottom:719.535000px;}
.y1_c00358{bottom:744.735000px;}
.h4_c00358{height:13.200074px;}
.h5_c00358{height:43.804688px;}
.h3_c00358{height:91.160156px;}
.h2_c00358{height:105.943359px;}
.h0_c00358{height:788.925000px;}
.h1_c00358{height:789.000000px;}
.w2_c00358{width:104.875500px;}
.w1_c00358{width:534.000000px;}
.w0_c00358{width:534.300000px;}
.x0_c00358{left:0.000000px;}
.x8_c00358{left:39.150000px;}
.x7_c00358{left:41.550000px;}
.x2_c00358{left:43.500000px;}
.x5_c00358{left:44.850000px;}
.x3_c00358{left:45.900000px;}
.x4_c00358{left:46.950000px;}
.x6_c00358{left:129.300000px;}
.x1_c00358{left:153.450000px;}
.x9_c00358{left:218.964249px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls3_c00358{letter-spacing:-5.333333pt;}
.ls0_c00358{letter-spacing:0.000000pt;}
.ls1_c00358{letter-spacing:2.666667pt;}
.ls2_c00358{letter-spacing:5.333333pt;}
.ws1_c00358{word-spacing:-26.640000pt;}
.ws3_c00358{word-spacing:-21.378667pt;}
.ws2_c00358{word-spacing:-18.090667pt;}
.ws0_c00358{word-spacing:-15.424000pt;}
.ws4_c00358{word-spacing:0.000000pt;}
._18_c00358{margin-left:-13.632000pt;}
._15_c00358{margin-left:-11.264000pt;}
._16_c00358{margin-left:-9.696000pt;}
._12_c00358{margin-left:-8.330667pt;}
._f_c00358{margin-left:-6.645333pt;}
._10_c00358{margin-left:-4.704000pt;}
._4_c00358{margin-left:-3.733333pt;}
._13_c00358{margin-left:-2.794667pt;}
._9_c00358{margin-left:-1.866667pt;}
._e_c00358{margin-left:-0.949333pt;}
._a_c00358{width:1.045333pt;}
._d_c00358{width:1.984000pt;}
._6_c00358{width:3.413333pt;}
._2_c00358{width:4.480000pt;}
._11_c00358{width:5.546667pt;}
._7_c00358{width:6.613333pt;}
._5_c00358{width:8.106667pt;}
._3_c00358{width:9.226667pt;}
._c_c00358{width:10.368000pt;}
._14_c00358{width:11.594667pt;}
._b_c00358{width:13.013333pt;}
._1_c00358{width:14.293333pt;}
._17_c00358{width:16.928000pt;}
._0_c00358{width:22.986667pt;}
._8_c00358{width:341.653333pt;}
.fs6_c00358{font-size:42.666667pt;}
.fs0_c00358{font-size:53.333333pt;}
.fs3_c00358{font-size:56.000000pt;}
.fs4_c00358{font-size:61.333333pt;}
.fs2_c00358{font-size:64.000000pt;}
.fs5_c00358{font-size:80.000000pt;}
.fs1_c00358{font-size:96.000000pt;}
.y0_c00358{bottom:0.000000pt;}
.y1e_c00358{bottom:2.760000pt;}
.y1d_c00358{bottom:6.425204pt;}
.y1c_c00358{bottom:69.186667pt;}
.y1b_c00358{bottom:93.586667pt;}
.y1a_c00358{bottom:112.386667pt;}
.y19_c00358{bottom:138.253333pt;}
.y18_c00358{bottom:159.320000pt;}
.y17_c00358{bottom:179.586667pt;}
.y16_c00358{bottom:203.986667pt;}
.y15_c00358{bottom:226.120000pt;}
.y14_c00358{bottom:246.520000pt;}
.y13_c00358{bottom:269.053333pt;}
.y12_c00358{bottom:289.720000pt;}
.y11_c00358{bottom:311.053333pt;}
.y10_c00358{bottom:332.920000pt;}
.yf_c00358{bottom:354.786667pt;}
.ye_c00358{bottom:376.386667pt;}
.yd_c00358{bottom:398.653333pt;}
.yc_c00358{bottom:420.520000pt;}
.yb_c00358{bottom:442.786667pt;}
.ya_c00358{bottom:463.986667pt;}
.y9_c00358{bottom:486.253333pt;}
.y8_c00358{bottom:508.520000pt;}
.y7_c00358{bottom:529.986667pt;}
.y6_c00358{bottom:552.253333pt;}
.y5_c00358{bottom:574.120000pt;}
.y4_c00358{bottom:595.453333pt;}
.y3_c00358{bottom:617.320000pt;}
.y2_c00358{bottom:639.586667pt;}
.y1_c00358{bottom:661.986667pt;}
.h4_c00358{height:11.733399pt;}
.h5_c00358{height:38.937500pt;}
.h3_c00358{height:81.031250pt;}
.h2_c00358{height:94.171875pt;}
.h0_c00358{height:701.266667pt;}
.h1_c00358{height:701.333333pt;}
.w2_c00358{width:93.222667pt;}
.w1_c00358{width:474.666667pt;}
.w0_c00358{width:474.933333pt;}
.x0_c00358{left:0.000000pt;}
.x8_c00358{left:34.800000pt;}
.x7_c00358{left:36.933333pt;}
.x2_c00358{left:38.666667pt;}
.x5_c00358{left:39.866667pt;}
.x3_c00358{left:40.800000pt;}
.x4_c00358{left:41.733333pt;}
.x6_c00358{left:114.933333pt;}
.x1_c00358{left:136.400000pt;}
.x9_c00358{left:194.634888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2478caeccdc90104711a8669.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00359;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00359;src:url('chunks/assets/font_3de6af4f44aa472c4fc8f658.woff2')format("woff");}.ff3_c00359{font-family:ff3_c00359;line-height:1.568848;font-style:normal;font-weight:normal;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_26081732844fe7e3517f3c82.woff2')format("woff");}.ff4_c00359{font-family:ff4_c00359;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00359{font-family:ff5_c00359;line-height:1.219238;font-style: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.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m1_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;}
.ls0_c00359{letter-spacing:0.000000px;}
.ls1_c00359{letter-spacing:3.000000px;}
.ls2_c00359{letter-spacing:6.000000px;}
.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:-48.000000px;}
.ws1_c00359{word-spacing:-17.352000px;}
.ws2_c00359{word-spacing:0.000000px;}
._e_c00359{margin-left:-15.288000px;}
._f_c00359{margin-left:-12.432000px;}
._10_c00359{margin-left:-11.088000px;}
._19_c00359{margin-left:-9.624000px;}
._18_c00359{margin-left:-7.656000px;}
._d_c00359{margin-left:-6.264000px;}
._7_c00359{margin-left:-4.632000px;}
._6_c00359{margin-left:-3.120000px;}
._5_c00359{margin-left:-1.824000px;}
._4_c00359{width:1.128000px;}
._3_c00359{width:2.400000px;}
._0_c00359{width:4.224000px;}
._2_c00359{width:5.952000px;}
._8_c00359{width:7.080000px;}
._1_c00359{width:9.120000px;}
._9_c00359{width:11.040000px;}
._a_c00359{width:12.744000px;}
._11_c00359{width:14.208000px;}
._17_c00359{width:15.336000px;}
._14_c00359{width:16.341000px;}
._b_c00359{width:17.400000px;}
._16_c00359{width:18.792000px;}
._12_c00359{width:29.463000px;}
._c_c00359{width:38.736000px;}
._13_c00359{width:60.909000px;}
._15_c00359{width:113.448000px;}
.fc2_c00359{color:transparent;}
.fc1_c00359{color:rgb(128,128,128);}
.fc0_c00359{color:rgb(0,0,0);}
.fs4_c00359{font-size:48.000000px;}
.fs3_c00359{font-size:57.000000px;}
.fs2_c00359{font-size:63.000000px;}
.fs1_c00359{font-size:72.000000px;}
.fs0_c00359{font-size:96.000000px;}
.y0_c00359{bottom:0.000000px;}
.y1f_c00359{bottom:3.105000px;}
.y1e_c00359{bottom:7.228363px;}
.y1d_c00359{bottom:47.850000px;}
.y1c_c00359{bottom:72.450000px;}
.y1b_c00359{bottom:97.800000px;}
.y1a_c00359{bottom:122.100000px;}
.y19_c00359{bottom:148.200000px;}
.y18_c00359{bottom:173.700000px;}
.y17_c00359{bottom:199.050000px;}
.y16_c00359{bottom:223.350000px;}
.y15_c00359{bottom:248.100000px;}
.y14_c00359{bottom:272.700000px;}
.y13_c00359{bottom:298.050000px;}
.y12_c00359{bottom:322.350000px;}
.y11_c00359{bottom:347.850000px;}
.y10_c00359{bottom:372.300000px;}
.yf_c00359{bottom:397.500000px;}
.ye_c00359{bottom:420.900000px;}
.yd_c00359{bottom:445.800000px;}
.yc_c00359{bottom:471.750000px;}
.yb_c00359{bottom:495.450000px;}
.ya_c00359{bottom:519.000000px;}
.y9_c00359{bottom:543.300000px;}
.y8_c00359{bottom:568.650000px;}
.y7_c00359{bottom:592.950000px;}
.y6_c00359{bottom:618.300000px;}
.y5_c00359{bottom:642.900000px;}
.y4_c00359{bottom:667.500000px;}
.y3_c00359{bottom:692.550000px;}
.y2_c00359{bottom:717.450000px;}
.y1_c00359{bottom:742.200000px;}
.h4_c00359{height:13.200074px;}
.h5_c00359{height:43.804688px;}
.h3_c00359{height:91.160156px;}
.h2_c00359{height:94.218750px;}
.h0_c00359{height:791.100000px;}
.h1_c00359{height:791.250000px;}
.w2_c00359{width:104.875500px;}
.w0_c00359{width:513.525000px;}
.w1_c00359{width:513.750000px;}
.x0_c00359{left:0.000000px;}
.x7_c00359{left:11.700000px;}
.x6_c00359{left:13.050000px;}
.x5_c00359{left:14.400000px;}
.xb_c00359{left:83.700000px;}
.xa_c00359{left:85.050000px;}
.x9_c00359{left:86.700000px;}
.x8_c00359{left:87.750000px;}
.x4_c00359{left:92.100000px;}
.x3_c00359{left:93.150000px;}
.x2_c00359{left:94.200000px;}
.xd_c00359{left:208.576767px;}
.x1_c00359{left:230.550000px;}
.xc_c00359{left:416.250000px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls0_c00359{letter-spacing:0.000000pt;}
.ls1_c00359{letter-spacing:2.666667pt;}
.ls2_c00359{letter-spacing:5.333333pt;}
.ws0_c00359{word-spacing:-42.666667pt;}
.ws1_c00359{word-spacing:-15.424000pt;}
.ws2_c00359{word-spacing:0.000000pt;}
._e_c00359{margin-left:-13.589333pt;}
._f_c00359{margin-left:-11.050667pt;}
._10_c00359{margin-left:-9.856000pt;}
._19_c00359{margin-left:-8.554667pt;}
._18_c00359{margin-left:-6.805333pt;}
._d_c00359{margin-left:-5.568000pt;}
._7_c00359{margin-left:-4.117333pt;}
._6_c00359{margin-left:-2.773333pt;}
._5_c00359{margin-left:-1.621333pt;}
._4_c00359{width:1.002667pt;}
._3_c00359{width:2.133333pt;}
._0_c00359{width:3.754667pt;}
._2_c00359{width:5.290667pt;}
._8_c00359{width:6.293333pt;}
._1_c00359{width:8.106667pt;}
._9_c00359{width:9.813333pt;}
._a_c00359{width:11.328000pt;}
._11_c00359{width:12.629333pt;}
._17_c00359{width:13.632000pt;}
._14_c00359{width:14.525333pt;}
._b_c00359{width:15.466667pt;}
._16_c00359{width:16.704000pt;}
._12_c00359{width:26.189333pt;}
._c_c00359{width:34.432000pt;}
._13_c00359{width:54.141333pt;}
._15_c00359{width:100.842667pt;}
.fs4_c00359{font-size:42.666667pt;}
.fs3_c00359{font-size:50.666667pt;}
.fs2_c00359{font-size:56.000000pt;}
.fs1_c00359{font-size:64.000000pt;}
.fs0_c00359{font-size:85.333333pt;}
.y0_c00359{bottom:0.000000pt;}
.y1f_c00359{bottom:2.760000pt;}
.y1e_c00359{bottom:6.425212pt;}
.y1d_c00359{bottom:42.533333pt;}
.y1c_c00359{bottom:64.400000pt;}
.y1b_c00359{bottom:86.933333pt;}
.y1a_c00359{bottom:108.533333pt;}
.y19_c00359{bottom:131.733333pt;}
.y18_c00359{bottom:154.400000pt;}
.y17_c00359{bottom:176.933333pt;}
.y16_c00359{bottom:198.533333pt;}
.y15_c00359{bottom:220.533333pt;}
.y14_c00359{bottom:242.400000pt;}
.y13_c00359{bottom:264.933333pt;}
.y12_c00359{bottom:286.533333pt;}
.y11_c00359{bottom:309.200000pt;}
.y10_c00359{bottom:330.933333pt;}
.yf_c00359{bottom:353.333333pt;}
.ye_c00359{bottom:374.133333pt;}
.yd_c00359{bottom:396.266667pt;}
.yc_c00359{bottom:419.333333pt;}
.yb_c00359{bottom:440.400000pt;}
.ya_c00359{bottom:461.333333pt;}
.y9_c00359{bottom:482.933333pt;}
.y8_c00359{bottom:505.466667pt;}
.y7_c00359{bottom:527.066667pt;}
.y6_c00359{bottom:549.600000pt;}
.y5_c00359{bottom:571.466667pt;}
.y4_c00359{bottom:593.333333pt;}
.y3_c00359{bottom:615.600000pt;}
.y2_c00359{bottom:637.733333pt;}
.y1_c00359{bottom:659.733333pt;}
.h4_c00359{height:11.733399pt;}
.h5_c00359{height:38.937500pt;}
.h3_c00359{height:81.031250pt;}
.h2_c00359{height:83.750000pt;}
.h0_c00359{height:703.200000pt;}
.h1_c00359{height:703.333333pt;}
.w2_c00359{width:93.222667pt;}
.w0_c00359{width:456.466667pt;}
.w1_c00359{width:456.666667pt;}
.x0_c00359{left:0.000000pt;}
.x7_c00359{left:10.400000pt;}
.x6_c00359{left:11.600000pt;}
.x5_c00359{left:12.800000pt;}
.xb_c00359{left:74.400000pt;}
.xa_c00359{left:75.600000pt;}
.x9_c00359{left:77.066667pt;}
.x8_c00359{left:78.000000pt;}
.x4_c00359{left:81.866667pt;}
.x3_c00359{left:82.800000pt;}
.x2_c00359{left:83.733333pt;}
.xd_c00359{left:185.401571pt;}
.x1_c00359{left:204.933333pt;}
.xc_c00359{left:370.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_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_86660f926a086d2e12509b8b.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00360;src:url('chunks/assets/font_3f47712691759485bbc1c503.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00360{font-family:ff3_c00360;line-height:1.219238;font-style: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:3.000000px;}
.ls0_c00360{letter-spacing:6.000000px;}
.ls4_c00360{letter-spacing:9.000000px;}
.ls3_c00360{letter-spacing:18.000000px;}
.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:-39.000000px;}
.ws1_c00360{word-spacing:-20.352000px;}
.ws2_c00360{word-spacing:0.000000px;}
._f_c00360{margin-left:-12.078000px;}
._e_c00360{margin-left:-11.022000px;}
._d_c00360{margin-left:-8.724000px;}
._11_c00360{margin-left:-7.116000px;}
._10_c00360{margin-left:-6.021000px;}
._b_c00360{margin-left:-4.716000px;}
._2_c00360{margin-left:-3.612000px;}
._c_c00360{margin-left:-2.496000px;}
._a_c00360{margin-left:-1.476000px;}
._3_c00360{width:1.848000px;}
._4_c00360{width:3.024000px;}
._5_c00360{width:4.032000px;}
._13_c00360{width:5.040000px;}
._8_c00360{width:6.216000px;}
._1_c00360{width:7.980000px;}
._12_c00360{width:9.561000px;}
._6_c00360{width:11.592000px;}
._0_c00360{width:12.852000px;}
._16_c00360{width:15.276000px;}
._14_c00360{width:17.082000px;}
._9_c00360{width:18.720000px;}
._15_c00360{width:101.664000px;}
._7_c00360{width:305.784000px;}
.fc2_c00360{color:transparent;}
.fc1_c00360{color:rgb(128,128,128);}
.fc0_c00360{color:rgb(0,0,0);}
.fs4_c00360{font-size:48.000000px;}
.fs2_c00360{font-size:66.000000px;}
.fs3_c00360{font-size:69.000000px;}
.fs1_c00360{font-size:72.000000px;}
.fs0_c00360{font-size:84.000000px;}
.y0_c00360{bottom:0.000000px;}
.y1f_c00360{bottom:3.105000px;}
.y1e_c00360{bottom:7.228357px;}
.y1d_c00360{bottom:35.130000px;}
.y1c_c00360{bottom:64.080000px;}
.y1b_c00360{bottom:84.780000px;}
.y1a_c00360{bottom:114.780000px;}
.y19_c00360{bottom:140.130000px;}
.y18_c00360{bottom:165.330000px;}
.y17_c00360{bottom:188.730000px;}
.y16_c00360{bottom:209.580000px;}
.y15_c00360{bottom:239.580000px;}
.y14_c00360{bottom:263.280000px;}
.y13_c00360{bottom:285.930000px;}
.y12_c00360{bottom:311.880000px;}
.y11_c00360{bottom:334.080000px;}
.y10_c00360{bottom:359.430000px;}
.yf_c00360{bottom:384.030000px;}
.ye_c00360{bottom:408.330000px;}
.yd_c00360{bottom:432.330000px;}
.yc_c00360{bottom:457.980000px;}
.yb_c00360{bottom:482.580000px;}
.ya_c00360{bottom:507.030000px;}
.y9_c00360{bottom:531.330000px;}
.y8_c00360{bottom:556.530000px;}
.y7_c00360{bottom:580.830000px;}
.y6_c00360{bottom:605.430000px;}
.y5_c00360{bottom:630.780000px;}
.y4_c00360{bottom:654.480000px;}
.y3_c00360{bottom:679.080000px;}
.y2_c00360{bottom:703.680000px;}
.y1_c00360{bottom:729.030000px;}
.h4_c00360{height:13.200074px;}
.h5_c00360{height:43.804688px;}
.h2_c00360{height:82.400391px;}
.h3_c00360{height:91.160156px;}
.h1_c00360{height:777.750000px;}
.h0_c00360{height:777.900000px;}
.w2_c00360{width:104.875500px;}
.w0_c00360{width:539.700000px;}
.w1_c00360{width:540.000000px;}
.x0_c00360{left:0.000000px;}
.x2_c00360{left:31.800000px;}
.x4_c00360{left:33.750000px;}
.x3_c00360{left:35.100000px;}
.x5_c00360{left:36.150000px;}
.x6_c00360{left:37.200000px;}
.x7_c00360{left:38.550000px;}
.x9_c00360{left:39.600000px;}
.x8_c00360{left:40.800000px;}
.x1_c00360{left:153.900000px;}
.xb_c00360{left:221.664230px;}
.xa_c00360{left:399.900000px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls2_c00360{letter-spacing:0.000000pt;}
.ls1_c00360{letter-spacing:2.666667pt;}
.ls0_c00360{letter-spacing:5.333333pt;}
.ls4_c00360{letter-spacing:8.000000pt;}
.ls3_c00360{letter-spacing:16.000000pt;}
.ws0_c00360{word-spacing:-34.666667pt;}
.ws1_c00360{word-spacing:-18.090667pt;}
.ws2_c00360{word-spacing:0.000000pt;}
._f_c00360{margin-left:-10.736000pt;}
._e_c00360{margin-left:-9.797333pt;}
._d_c00360{margin-left:-7.754667pt;}
._11_c00360{margin-left:-6.325333pt;}
._10_c00360{margin-left:-5.352000pt;}
._b_c00360{margin-left:-4.192000pt;}
._2_c00360{margin-left:-3.210667pt;}
._c_c00360{margin-left:-2.218667pt;}
._a_c00360{margin-left:-1.312000pt;}
._3_c00360{width:1.642667pt;}
._4_c00360{width:2.688000pt;}
._5_c00360{width:3.584000pt;}
._13_c00360{width:4.480000pt;}
._8_c00360{width:5.525333pt;}
._1_c00360{width:7.093333pt;}
._12_c00360{width:8.498667pt;}
._6_c00360{width:10.304000pt;}
._0_c00360{width:11.424000pt;}
._16_c00360{width:13.578667pt;}
._14_c00360{width:15.184000pt;}
._9_c00360{width:16.640000pt;}
._15_c00360{width:90.368000pt;}
._7_c00360{width:271.808000pt;}
.fs4_c00360{font-size:42.666667pt;}
.fs2_c00360{font-size:58.666667pt;}
.fs3_c00360{font-size:61.333333pt;}
.fs1_c00360{font-size:64.000000pt;}
.fs0_c00360{font-size:74.666667pt;}
.y0_c00360{bottom:0.000000pt;}
.y1f_c00360{bottom:2.760000pt;}
.y1e_c00360{bottom:6.425206pt;}
.y1d_c00360{bottom:31.226667pt;}
.y1c_c00360{bottom:56.960000pt;}
.y1b_c00360{bottom:75.360000pt;}
.y1a_c00360{bottom:102.026667pt;}
.y19_c00360{bottom:124.560000pt;}
.y18_c00360{bottom:146.960000pt;}
.y17_c00360{bottom:167.760000pt;}
.y16_c00360{bottom:186.293333pt;}
.y15_c00360{bottom:212.960000pt;}
.y14_c00360{bottom:234.026667pt;}
.y13_c00360{bottom:254.160000pt;}
.y12_c00360{bottom:277.226667pt;}
.y11_c00360{bottom:296.960000pt;}
.y10_c00360{bottom:319.493333pt;}
.yf_c00360{bottom:341.360000pt;}
.ye_c00360{bottom:362.960000pt;}
.yd_c00360{bottom:384.293333pt;}
.yc_c00360{bottom:407.093333pt;}
.yb_c00360{bottom:428.960000pt;}
.ya_c00360{bottom:450.693333pt;}
.y9_c00360{bottom:472.293333pt;}
.y8_c00360{bottom:494.693333pt;}
.y7_c00360{bottom:516.293333pt;}
.y6_c00360{bottom:538.160000pt;}
.y5_c00360{bottom:560.693333pt;}
.y4_c00360{bottom:581.760000pt;}
.y3_c00360{bottom:603.626667pt;}
.y2_c00360{bottom:625.493333pt;}
.y1_c00360{bottom:648.026667pt;}
.h4_c00360{height:11.733399pt;}
.h5_c00360{height:38.937500pt;}
.h2_c00360{height:73.244792pt;}
.h3_c00360{height:81.031250pt;}
.h1_c00360{height:691.333333pt;}
.h0_c00360{height:691.466667pt;}
.w2_c00360{width:93.222667pt;}
.w0_c00360{width:479.733333pt;}
.w1_c00360{width:480.000000pt;}
.x0_c00360{left:0.000000pt;}
.x2_c00360{left:28.266667pt;}
.x4_c00360{left:30.000000pt;}
.x3_c00360{left:31.200000pt;}
.x5_c00360{left:32.133333pt;}
.x6_c00360{left:33.066667pt;}
.x7_c00360{left:34.266667pt;}
.x9_c00360{left:35.200000pt;}
.x8_c00360{left:36.266667pt;}
.x1_c00360{left:136.800000pt;}
.xb_c00360{left:197.034871pt;}
.xa_c00360{left:355.466667pt;}
}





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

.ir_c00361:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00361{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00361;src:url('chunks/assets/font_1af22076005cfc8569ea2bc8.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.592000;font-style:normal;font-weight:normal;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_42ca6a7f4ee780e6466fa4ba.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:1.575000;font-style:normal;font-weight:normal;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_653cd3fbb32871d2c0d656c6.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00361;src:url('chunks/assets/font_cca57da9ba09d0a4d8f3577b.woff2')format("woff");}.ff4_c00361{font-family:ff4_c00361;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00361;src:url('chunks/assets/font_60c9112370104aaffce12dcd.woff2')format("woff");}.ff5_c00361{font-family:ff5_c00361;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00361;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00361{font-family:ff6_c00361;line-height:1.219238;font-style: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;}
.ls3_c00361{letter-spacing:-6.000000px;}
.ls1_c00361{letter-spacing:-3.000000px;}
.ls5_c00361{letter-spacing:0.000000px;}
.ls0_c00361{letter-spacing:3.000000px;}
.ls2_c00361{letter-spacing:6.000000px;}
.ls4_c00361{letter-spacing:9.000000px;}
.sc__c00361{text-shadow:none;}
.sc0_c00361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00361{-webkit-text-stroke:0px transparent;}
.sc0_c00361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00361{word-spacing:-25.521000px;}
.ws1_c00361{word-spacing:-24.051000px;}
.ws2_c00361{word-spacing:0.000000px;}
._19_c00361{margin-left:-23.976000px;}
._18_c00361{margin-left:-19.320000px;}
._1a_c00361{margin-left:-18.144000px;}
._1c_c00361{margin-left:-15.072000px;}
._1d_c00361{margin-left:-14.040000px;}
._1e_c00361{margin-left:-13.032000px;}
._15_c00361{margin-left:-11.418000px;}
._12_c00361{margin-left:-10.392000px;}
._13_c00361{margin-left:-9.360000px;}
._1b_c00361{margin-left:-8.148000px;}
._11_c00361{margin-left:-7.068000px;}
._16_c00361{margin-left:-6.036000px;}
._f_c00361{margin-left:-4.788000px;}
._6_c00361{margin-left:-2.940000px;}
._a_c00361{margin-left:-1.800000px;}
._d_c00361{width:1.344000px;}
._c_c00361{width:2.712000px;}
._e_c00361{width:3.996000px;}
._b_c00361{width:5.100000px;}
._10_c00361{width:6.168000px;}
._4_c00361{width:7.260000px;}
._7_c00361{width:8.820000px;}
._14_c00361{width:10.356000px;}
._2_c00361{width:11.460000px;}
._1_c00361{width:13.020000px;}
._8_c00361{width:14.760000px;}
._17_c00361{width:16.224000px;}
._9_c00361{width:17.760000px;}
._3_c00361{width:18.900000px;}
._5_c00361{width:19.920000px;}
._0_c00361{width:21.060000px;}
.fc2_c00361{color:transparent;}
.fc1_c00361{color:rgb(128,128,128);}
.fc0_c00361{color:rgb(0,0,0);}
.fs6_c00361{font-size:48.000000px;}
.fs5_c00361{font-size:54.000000px;}
.fs0_c00361{font-size:60.000000px;}
.fs4_c00361{font-size:63.000000px;}
.fs2_c00361{font-size:66.000000px;}
.fs1_c00361{font-size:72.000000px;}
.fs3_c00361{font-size:81.000000px;}
.y0_c00361{bottom:0.000000px;}
.y1f_c00361{bottom:3.105000px;}
.y1e_c00361{bottom:7.228363px;}
.y1d_c00361{bottom:24.900000px;}
.y1c_c00361{bottom:47.850000px;}
.y1b_c00361{bottom:73.800000px;}
.y1a_c00361{bottom:98.850000px;}
.y19_c00361{bottom:124.200000px;}
.y18_c00361{bottom:149.550000px;}
.y17_c00361{bottom:174.450000px;}
.y16_c00361{bottom:199.800000px;}
.y15_c00361{bottom:224.400000px;}
.y14_c00361{bottom:249.300000px;}
.y13_c00361{bottom:273.750000px;}
.y12_c00361{bottom:298.350000px;}
.y11_c00361{bottom:323.250000px;}
.y10_c00361{bottom:348.000000px;}
.yf_c00361{bottom:373.500000px;}
.ye_c00361{bottom:397.200000px;}
.yd_c00361{bottom:421.800000px;}
.yc_c00361{bottom:445.800000px;}
.yb_c00361{bottom:467.700000px;}
.ya_c00361{bottom:494.850000px;}
.y9_c00361{bottom:519.450000px;}
.y8_c00361{bottom:544.050000px;}
.y7_c00361{bottom:568.650000px;}
.y6_c00361{bottom:593.550000px;}
.y5_c00361{bottom:617.550000px;}
.y4_c00361{bottom:643.200000px;}
.y3_c00361{bottom:667.950000px;}
.y2_c00361{bottom:692.250000px;}
.y1_c00361{bottom:717.900000px;}
.h5_c00361{height:13.200074px;}
.h6_c00361{height:43.804688px;}
.h2_c00361{height:65.040000px;}
.h3_c00361{height:91.160156px;}
.h4_c00361{height:102.555176px;}
.h0_c00361{height:758.700000px;}
.h1_c00361{height:759.000000px;}
.w2_c00361{width:104.875500px;}
.w1_c00361{width:496.500000px;}
.w0_c00361{width:496.800000px;}
.x0_c00361{left:0.000000px;}
.xf_c00361{left:80.250000px;}
.xe_c00361{left:83.400000px;}
.xd_c00361{left:84.600000px;}
.xc_c00361{left:85.950000px;}
.xb_c00361{left:87.450000px;}
.xa_c00361{left:89.400000px;}
.x9_c00361{left:91.350000px;}
.x8_c00361{left:93.450000px;}
.x7_c00361{left:95.250000px;}
.x6_c00361{left:96.300000px;}
.x5_c00361{left:97.950000px;}
.x4_c00361{left:100.950000px;}
.x3_c00361{left:102.600000px;}
.x2_c00361{left:104.250000px;}
.x11_c00361{left:200.214249px;}
.x1_c00361{left:232.200000px;}
.x10_c00361{left:406.350000px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls3_c00361{letter-spacing:-5.333333pt;}
.ls1_c00361{letter-spacing:-2.666667pt;}
.ls5_c00361{letter-spacing:0.000000pt;}
.ls0_c00361{letter-spacing:2.666667pt;}
.ls2_c00361{letter-spacing:5.333333pt;}
.ls4_c00361{letter-spacing:8.000000pt;}
.ws0_c00361{word-spacing:-22.685333pt;}
.ws1_c00361{word-spacing:-21.378667pt;}
.ws2_c00361{word-spacing:0.000000pt;}
._19_c00361{margin-left:-21.312000pt;}
._18_c00361{margin-left:-17.173333pt;}
._1a_c00361{margin-left:-16.128000pt;}
._1c_c00361{margin-left:-13.397333pt;}
._1d_c00361{margin-left:-12.480000pt;}
._1e_c00361{margin-left:-11.584000pt;}
._15_c00361{margin-left:-10.149333pt;}
._12_c00361{margin-left:-9.237333pt;}
._13_c00361{margin-left:-8.320000pt;}
._1b_c00361{margin-left:-7.242667pt;}
._11_c00361{margin-left:-6.282667pt;}
._16_c00361{margin-left:-5.365333pt;}
._f_c00361{margin-left:-4.256000pt;}
._6_c00361{margin-left:-2.613333pt;}
._a_c00361{margin-left:-1.600000pt;}
._d_c00361{width:1.194667pt;}
._c_c00361{width:2.410667pt;}
._e_c00361{width:3.552000pt;}
._b_c00361{width:4.533333pt;}
._10_c00361{width:5.482667pt;}
._4_c00361{width:6.453333pt;}
._7_c00361{width:7.840000pt;}
._14_c00361{width:9.205333pt;}
._2_c00361{width:10.186667pt;}
._1_c00361{width:11.573333pt;}
._8_c00361{width:13.120000pt;}
._17_c00361{width:14.421333pt;}
._9_c00361{width:15.786667pt;}
._3_c00361{width:16.800000pt;}
._5_c00361{width:17.706667pt;}
._0_c00361{width:18.720000pt;}
.fs6_c00361{font-size:42.666667pt;}
.fs5_c00361{font-size:48.000000pt;}
.fs0_c00361{font-size:53.333333pt;}
.fs4_c00361{font-size:56.000000pt;}
.fs2_c00361{font-size:58.666667pt;}
.fs1_c00361{font-size:64.000000pt;}
.fs3_c00361{font-size:72.000000pt;}
.y0_c00361{bottom:0.000000pt;}
.y1f_c00361{bottom:2.760000pt;}
.y1e_c00361{bottom:6.425212pt;}
.y1d_c00361{bottom:22.133333pt;}
.y1c_c00361{bottom:42.533333pt;}
.y1b_c00361{bottom:65.600000pt;}
.y1a_c00361{bottom:87.866667pt;}
.y19_c00361{bottom:110.400000pt;}
.y18_c00361{bottom:132.933333pt;}
.y17_c00361{bottom:155.066667pt;}
.y16_c00361{bottom:177.600000pt;}
.y15_c00361{bottom:199.466667pt;}
.y14_c00361{bottom:221.600000pt;}
.y13_c00361{bottom:243.333333pt;}
.y12_c00361{bottom:265.200000pt;}
.y11_c00361{bottom:287.333333pt;}
.y10_c00361{bottom:309.333333pt;}
.yf_c00361{bottom:332.000000pt;}
.ye_c00361{bottom:353.066667pt;}
.yd_c00361{bottom:374.933333pt;}
.yc_c00361{bottom:396.266667pt;}
.yb_c00361{bottom:415.733333pt;}
.ya_c00361{bottom:439.866667pt;}
.y9_c00361{bottom:461.733333pt;}
.y8_c00361{bottom:483.600000pt;}
.y7_c00361{bottom:505.466667pt;}
.y6_c00361{bottom:527.600000pt;}
.y5_c00361{bottom:548.933333pt;}
.y4_c00361{bottom:571.733333pt;}
.y3_c00361{bottom:593.733333pt;}
.y2_c00361{bottom:615.333333pt;}
.y1_c00361{bottom:638.133333pt;}
.h5_c00361{height:11.733399pt;}
.h6_c00361{height:38.937500pt;}
.h2_c00361{height:57.813333pt;}
.h3_c00361{height:81.031250pt;}
.h4_c00361{height:91.160156pt;}
.h0_c00361{height:674.400000pt;}
.h1_c00361{height:674.666667pt;}
.w2_c00361{width:93.222667pt;}
.w1_c00361{width:441.333333pt;}
.w0_c00361{width:441.600000pt;}
.x0_c00361{left:0.000000pt;}
.xf_c00361{left:71.333333pt;}
.xe_c00361{left:74.133333pt;}
.xd_c00361{left:75.200000pt;}
.xc_c00361{left:76.400000pt;}
.xb_c00361{left:77.733333pt;}
.xa_c00361{left:79.466667pt;}
.x9_c00361{left:81.200000pt;}
.x8_c00361{left:83.066667pt;}
.x7_c00361{left:84.666667pt;}
.x6_c00361{left:85.600000pt;}
.x5_c00361{left:87.066667pt;}
.x4_c00361{left:89.733333pt;}
.x3_c00361{left:91.200000pt;}
.x2_c00361{left:92.666667pt;}
.x11_c00361{left:177.968221pt;}
.x1_c00361{left:206.400000pt;}
.x10_c00361{left:361.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d4d56b36d1734832eac917c3.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.480469;font-style:normal;font-weight:normal;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_86e60e70b0e628902ce27bb6.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:1.568848;font-style:normal;font-weight:normal;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_fd427c775dd6c2d9ae756ee4.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00362{font-family:ff4_c00362;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00362{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00362{vertical-align:0.000000px;}
.ls1_c00362{letter-spacing:0.000000px;}
.ls2_c00362{letter-spacing:3.000000px;}
.ls3_c00362{letter-spacing:6.000000px;}
.ls0_c00362{letter-spacing:7.188000px;}
.sc__c00362{text-shadow:none;}
.sc0_c00362{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00362{-webkit-text-stroke:0px transparent;}
.sc0_c00362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00362{word-spacing:0.000000px;}
._7_c00362{margin-left:-13.968000px;}
._13_c00362{margin-left:-11.736000px;}
._14_c00362{margin-left:-9.936000px;}
._10_c00362{margin-left:-7.056000px;}
._f_c00362{margin-left:-5.832000px;}
._a_c00362{margin-left:-4.680000px;}
._8_c00362{margin-left:-2.952000px;}
._9_c00362{margin-left:-1.872000px;}
._c_c00362{width:1.512000px;}
._b_c00362{width:2.664000px;}
._0_c00362{width:3.744000px;}
._3_c00362{width:5.256000px;}
._5_c00362{width:6.480000px;}
._d_c00362{width:7.632000px;}
._2_c00362{width:8.928000px;}
._15_c00362{width:9.936000px;}
._4_c00362{width:10.944000px;}
._e_c00362{width:12.384000px;}
._1_c00362{width:13.536000px;}
._12_c00362{width:15.408000px;}
._11_c00362{width:17.352000px;}
._16_c00362{width:310.752000px;}
._6_c00362{width:320.688000px;}
.fc2_c00362{color:transparent;}
.fc1_c00362{color:rgb(128,128,128);}
.fc0_c00362{color:rgb(0,0,0);}
.fs3_c00362{font-size:48.000000px;}
.fs2_c00362{font-size:57.000000px;}
.fs1_c00362{font-size:63.000000px;}
.fs0_c00362{font-size:72.000000px;}
.y0_c00362{bottom:0.000000px;}
.y1f_c00362{bottom:3.105000px;}
.y1e_c00362{bottom:7.228369px;}
.y1d_c00362{bottom:66.420000px;}
.y1c_c00362{bottom:92.070000px;}
.y1b_c00362{bottom:119.070000px;}
.y1a_c00362{bottom:142.320000px;}
.y19_c00362{bottom:169.770000px;}
.y18_c00362{bottom:194.670000px;}
.y17_c00362{bottom:219.270000px;}
.y16_c00362{bottom:244.620000px;}
.y15_c00362{bottom:268.920000px;}
.y14_c00362{bottom:290.970000px;}
.y13_c00362{bottom:316.620000px;}
.y12_c00362{bottom:340.470000px;}
.y11_c00362{bottom:364.770000px;}
.y10_c00362{bottom:389.370000px;}
.yf_c00362{bottom:414.420000px;}
.ye_c00362{bottom:439.770000px;}
.yd_c00362{bottom:463.620000px;}
.yc_c00362{bottom:488.370000px;}
.yb_c00362{bottom:513.270000px;}
.ya_c00362{bottom:537.570000px;}
.y9_c00362{bottom:562.620000px;}
.y8_c00362{bottom:587.220000px;}
.y7_c00362{bottom:612.270000px;}
.y6_c00362{bottom:636.870000px;}
.y5_c00362{bottom:661.470000px;}
.y4_c00362{bottom:685.470000px;}
.y3_c00362{bottom:710.370000px;}
.y2_c00362{bottom:735.720000px;}
.y1_c00362{bottom:761.370000px;}
.h5_c00362{height:13.200073px;}
.h6_c00362{height:43.804688px;}
.h4_c00362{height:72.168457px;}
.h2_c00362{height:84.269531px;}
.h3_c00362{height:91.160156px;}
.h1_c00362{height:792.000000px;}
.h0_c00362{height:792.150000px;}
.w2_c00362{width:104.875500px;}
.w0_c00362{width:532.950000px;}
.w1_c00362{width:533.250000px;}
.x0_c00362{left:0.000000px;}
.x5_c00362{left:23.250000px;}
.x2_c00362{left:36.000000px;}
.x6_c00362{left:41.550000px;}
.x3_c00362{left:42.750000px;}
.x4_c00362{left:44.250000px;}
.x1_c00362{left:166.650000px;}
.x8_c00362{left:218.289230px;}
.x7_c00362{left:289.200000px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls1_c00362{letter-spacing:0.000000pt;}
.ls2_c00362{letter-spacing:2.666667pt;}
.ls3_c00362{letter-spacing:5.333333pt;}
.ls0_c00362{letter-spacing:6.389333pt;}
.ws0_c00362{word-spacing:0.000000pt;}
._7_c00362{margin-left:-12.416000pt;}
._13_c00362{margin-left:-10.432000pt;}
._14_c00362{margin-left:-8.832000pt;}
._10_c00362{margin-left:-6.272000pt;}
._f_c00362{margin-left:-5.184000pt;}
._a_c00362{margin-left:-4.160000pt;}
._8_c00362{margin-left:-2.624000pt;}
._9_c00362{margin-left:-1.664000pt;}
._c_c00362{width:1.344000pt;}
._b_c00362{width:2.368000pt;}
._0_c00362{width:3.328000pt;}
._3_c00362{width:4.672000pt;}
._5_c00362{width:5.760000pt;}
._d_c00362{width:6.784000pt;}
._2_c00362{width:7.936000pt;}
._15_c00362{width:8.832000pt;}
._4_c00362{width:9.728000pt;}
._e_c00362{width:11.008000pt;}
._1_c00362{width:12.032000pt;}
._12_c00362{width:13.696000pt;}
._11_c00362{width:15.424000pt;}
._16_c00362{width:276.224000pt;}
._6_c00362{width:285.056000pt;}
.fs3_c00362{font-size:42.666667pt;}
.fs2_c00362{font-size:50.666667pt;}
.fs1_c00362{font-size:56.000000pt;}
.fs0_c00362{font-size:64.000000pt;}
.y0_c00362{bottom:0.000000pt;}
.y1f_c00362{bottom:2.760000pt;}
.y1e_c00362{bottom:6.425217pt;}
.y1d_c00362{bottom:59.040000pt;}
.y1c_c00362{bottom:81.840000pt;}
.y1b_c00362{bottom:105.840000pt;}
.y1a_c00362{bottom:126.506667pt;}
.y19_c00362{bottom:150.906667pt;}
.y18_c00362{bottom:173.040000pt;}
.y17_c00362{bottom:194.906667pt;}
.y16_c00362{bottom:217.440000pt;}
.y15_c00362{bottom:239.040000pt;}
.y14_c00362{bottom:258.640000pt;}
.y13_c00362{bottom:281.440000pt;}
.y12_c00362{bottom:302.640000pt;}
.y11_c00362{bottom:324.240000pt;}
.y10_c00362{bottom:346.106667pt;}
.yf_c00362{bottom:368.373333pt;}
.ye_c00362{bottom:390.906667pt;}
.yd_c00362{bottom:412.106667pt;}
.yc_c00362{bottom:434.106667pt;}
.yb_c00362{bottom:456.240000pt;}
.ya_c00362{bottom:477.840000pt;}
.y9_c00362{bottom:500.106667pt;}
.y8_c00362{bottom:521.973333pt;}
.y7_c00362{bottom:544.240000pt;}
.y6_c00362{bottom:566.106667pt;}
.y5_c00362{bottom:587.973333pt;}
.y4_c00362{bottom:609.306667pt;}
.y3_c00362{bottom:631.440000pt;}
.y2_c00362{bottom:653.973333pt;}
.y1_c00362{bottom:676.773333pt;}
.h5_c00362{height:11.733399pt;}
.h6_c00362{height:38.937500pt;}
.h4_c00362{height:64.149740pt;}
.h2_c00362{height:74.906250pt;}
.h3_c00362{height:81.031250pt;}
.h1_c00362{height:704.000000pt;}
.h0_c00362{height:704.133333pt;}
.w2_c00362{width:93.222667pt;}
.w0_c00362{width:473.733333pt;}
.w1_c00362{width:474.000000pt;}
.x0_c00362{left:0.000000pt;}
.x5_c00362{left:20.666667pt;}
.x2_c00362{left:32.000000pt;}
.x6_c00362{left:36.933333pt;}
.x3_c00362{left:38.000000pt;}
.x4_c00362{left:39.333333pt;}
.x1_c00362{left:148.133333pt;}
.x8_c00362{left:194.034871pt;}
.x7_c00362{left:257.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9e98576b56d956c601e795f6.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.480469;font-style:normal;font-weight:normal;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_91400257d1539d0d19f3603b.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:1.568848;font-style:normal;font-weight:normal;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_651b23acd65b69c6424117ee.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00363{font-family:ff4_c00363;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00363{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00363{vertical-align:0.000000px;}
.ls3_c00363{letter-spacing:-6.000000px;}
.ls4_c00363{letter-spacing:-3.000000px;}
.ls1_c00363{letter-spacing:0.000000px;}
.ls0_c00363{letter-spacing:3.000000px;}
.ls2_c00363{letter-spacing:6.000000px;}
.sc__c00363{text-shadow:none;}
.sc0_c00363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00363{-webkit-text-stroke:0px transparent;}
.sc0_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00363{word-spacing:-24.051000px;}
.ws0_c00363{word-spacing:-20.352000px;}
.ws3_c00363{word-spacing:-17.352000px;}
.ws4_c00363{word-spacing:0.000000px;}
.ws2_c00363{word-spacing:4.254000px;}
._d_c00363{margin-left:-22.176000px;}
._13_c00363{margin-left:-11.772000px;}
._15_c00363{margin-left:-10.050000px;}
._6_c00363{margin-left:-8.151000px;}
._14_c00363{margin-left:-6.822000px;}
._c_c00363{margin-left:-5.667000px;}
._8_c00363{margin-left:-4.464000px;}
._10_c00363{margin-left:-3.186000px;}
._7_c00363{margin-left:-1.704000px;}
._f_c00363{width:1.002000px;}
._1_c00363{width:2.025000px;}
._2_c00363{width:3.078000px;}
._0_c00363{width:4.455000px;}
._4_c00363{width:5.643000px;}
._5_c00363{width:7.353000px;}
._3_c00363{width:9.348000px;}
._b_c00363{width:10.956000px;}
._12_c00363{width:12.186000px;}
._9_c00363{width:13.191000px;}
._a_c00363{width:16.086000px;}
._16_c00363{width:17.826000px;}
._e_c00363{width:26.661000px;}
._11_c00363{width:229.824000px;}
.fc2_c00363{color:transparent;}
.fc1_c00363{color:rgb(128,128,128);}
.fc0_c00363{color:rgb(0,0,0);}
.fs4_c00363{font-size:48.000000px;}
.fs1_c00363{font-size:57.000000px;}
.fs3_c00363{font-size:63.000000px;}
.fs2_c00363{font-size:72.000000px;}
.fs0_c00363{font-size:81.000000px;}
.y0_c00363{bottom:0.000000px;}
.y1f_c00363{bottom:3.105000px;}
.y1e_c00363{bottom:7.228357px;}
.y1d_c00363{bottom:64.830000px;}
.y1c_c00363{bottom:88.830000px;}
.y1b_c00363{bottom:114.180000px;}
.y1a_c00363{bottom:139.080000px;}
.y19_c00363{bottom:164.430000px;}
.y18_c00363{bottom:189.330000px;}
.y17_c00363{bottom:214.380000px;}
.y16_c00363{bottom:238.380000px;}
.y15_c00363{bottom:265.230000px;}
.y14_c00363{bottom:289.680000px;}
.y13_c00363{bottom:313.530000px;}
.y12_c00363{bottom:338.130000px;}
.y11_c00363{bottom:362.430000px;}
.y10_c00363{bottom:386.880000px;}
.yf_c00363{bottom:411.480000px;}
.ye_c00363{bottom:436.380000px;}
.yd_c00363{bottom:460.080000px;}
.yc_c00363{bottom:484.080000px;}
.yb_c00363{bottom:509.280000px;}
.ya_c00363{bottom:532.530000px;}
.y9_c00363{bottom:558.330000px;}
.y8_c00363{bottom:583.230000px;}
.y7_c00363{bottom:607.230000px;}
.y6_c00363{bottom:632.430000px;}
.y5_c00363{bottom:657.180000px;}
.y4_c00363{bottom:681.180000px;}
.y3_c00363{bottom:706.830000px;}
.y2_c00363{bottom:731.430000px;}
.y1_c00363{bottom:757.380000px;}
.h5_c00363{height:13.200074px;}
.h6_c00363{height:43.804688px;}
.h3_c00363{height:72.168457px;}
.h4_c00363{height:84.269531px;}
.h2_c00363{height:91.160156px;}
.h1_c00363{height:102.555176px;}
.h0_c00363{height:786.000000px;}
.w2_c00363{width:104.875500px;}
.w0_c00363{width:496.275000px;}
.w1_c00363{width:496.500000px;}
.x0_c00363{left:0.000000px;}
.x3_c00363{left:78.900000px;}
.x2_c00363{left:79.950000px;}
.x5_c00363{left:81.000000px;}
.x4_c00363{left:82.350000px;}
.x6_c00363{left:83.700000px;}
.x7_c00363{left:85.050000px;}
.x9_c00363{left:199.951767px;}
.x1_c00363{left:216.000000px;}
.x8_c00363{left:446.400000px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls3_c00363{letter-spacing:-5.333333pt;}
.ls4_c00363{letter-spacing:-2.666667pt;}
.ls1_c00363{letter-spacing:0.000000pt;}
.ls0_c00363{letter-spacing:2.666667pt;}
.ls2_c00363{letter-spacing:5.333333pt;}
.ws1_c00363{word-spacing:-21.378667pt;}
.ws0_c00363{word-spacing:-18.090667pt;}
.ws3_c00363{word-spacing:-15.424000pt;}
.ws4_c00363{word-spacing:0.000000pt;}
.ws2_c00363{word-spacing:3.781333pt;}
._d_c00363{margin-left:-19.712000pt;}
._13_c00363{margin-left:-10.464000pt;}
._15_c00363{margin-left:-8.933333pt;}
._6_c00363{margin-left:-7.245333pt;}
._14_c00363{margin-left:-6.064000pt;}
._c_c00363{margin-left:-5.037333pt;}
._8_c00363{margin-left:-3.968000pt;}
._10_c00363{margin-left:-2.832000pt;}
._7_c00363{margin-left:-1.514667pt;}
._f_c00363{width:0.890667pt;}
._1_c00363{width:1.800000pt;}
._2_c00363{width:2.736000pt;}
._0_c00363{width:3.960000pt;}
._4_c00363{width:5.016000pt;}
._5_c00363{width:6.536000pt;}
._3_c00363{width:8.309333pt;}
._b_c00363{width:9.738667pt;}
._12_c00363{width:10.832000pt;}
._9_c00363{width:11.725333pt;}
._a_c00363{width:14.298667pt;}
._16_c00363{width:15.845333pt;}
._e_c00363{width:23.698667pt;}
._11_c00363{width:204.288000pt;}
.fs4_c00363{font-size:42.666667pt;}
.fs1_c00363{font-size:50.666667pt;}
.fs3_c00363{font-size:56.000000pt;}
.fs2_c00363{font-size:64.000000pt;}
.fs0_c00363{font-size:72.000000pt;}
.y0_c00363{bottom:0.000000pt;}
.y1f_c00363{bottom:2.760000pt;}
.y1e_c00363{bottom:6.425206pt;}
.y1d_c00363{bottom:57.626667pt;}
.y1c_c00363{bottom:78.960000pt;}
.y1b_c00363{bottom:101.493333pt;}
.y1a_c00363{bottom:123.626667pt;}
.y19_c00363{bottom:146.160000pt;}
.y18_c00363{bottom:168.293333pt;}
.y17_c00363{bottom:190.560000pt;}
.y16_c00363{bottom:211.893333pt;}
.y15_c00363{bottom:235.760000pt;}
.y14_c00363{bottom:257.493333pt;}
.y13_c00363{bottom:278.693333pt;}
.y12_c00363{bottom:300.560000pt;}
.y11_c00363{bottom:322.160000pt;}
.y10_c00363{bottom:343.893333pt;}
.yf_c00363{bottom:365.760000pt;}
.ye_c00363{bottom:387.893333pt;}
.yd_c00363{bottom:408.960000pt;}
.yc_c00363{bottom:430.293333pt;}
.yb_c00363{bottom:452.693333pt;}
.ya_c00363{bottom:473.360000pt;}
.y9_c00363{bottom:496.293333pt;}
.y8_c00363{bottom:518.426667pt;}
.y7_c00363{bottom:539.760000pt;}
.y6_c00363{bottom:562.160000pt;}
.y5_c00363{bottom:584.160000pt;}
.y4_c00363{bottom:605.493333pt;}
.y3_c00363{bottom:628.293333pt;}
.y2_c00363{bottom:650.160000pt;}
.y1_c00363{bottom:673.226667pt;}
.h5_c00363{height:11.733399pt;}
.h6_c00363{height:38.937500pt;}
.h3_c00363{height:64.149740pt;}
.h4_c00363{height:74.906250pt;}
.h2_c00363{height:81.031250pt;}
.h1_c00363{height:91.160156pt;}
.h0_c00363{height:698.666667pt;}
.w2_c00363{width:93.222667pt;}
.w0_c00363{width:441.133333pt;}
.w1_c00363{width:441.333333pt;}
.x0_c00363{left:0.000000pt;}
.x3_c00363{left:70.133333pt;}
.x2_c00363{left:71.066667pt;}
.x5_c00363{left:72.000000pt;}
.x4_c00363{left:73.200000pt;}
.x6_c00363{left:74.400000pt;}
.x7_c00363{left:75.600000pt;}
.x9_c00363{left:177.734904pt;}
.x1_c00363{left:192.000000pt;}
.x8_c00363{left:396.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c3f1d452ebc3970bb49e4d1e.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.480469;font-style:normal;font-weight:normal;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_9324f384aff693f6c920b5c6.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.568848;font-style:normal;font-weight:normal;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_0d2ca0c94bc7a9f96157d204.woff2')format("woff");}.ff3_c00364{font-family:ff3_c00364;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00364{font-family:ff4_c00364;line-height:1.219238;font-style: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;}
.ls7_c00364{letter-spacing:-6.000000px;}
.ls5_c00364{letter-spacing:0.000000px;}
.ls2_c00364{letter-spacing:1.788000px;}
.ls0_c00364{letter-spacing:3.000000px;}
.ls3_c00364{letter-spacing:3.588000px;}
.ls6_c00364{letter-spacing:6.000000px;}
.ls4_c00364{letter-spacing:10.188000px;}
.ls1_c00364{letter-spacing:11.988000px;}
.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:-24.051000px;}
.ws1_c00364{word-spacing:-20.352000px;}
.ws2_c00364{word-spacing:-17.352000px;}
.ws3_c00364{word-spacing:0.000000px;}
._12_c00364{margin-left:-17.508000px;}
._18_c00364{margin-left:-15.552000px;}
._19_c00364{margin-left:-14.328000px;}
._14_c00364{margin-left:-11.292000px;}
._13_c00364{margin-left:-9.780000px;}
._9_c00364{margin-left:-7.812000px;}
._4_c00364{margin-left:-5.964000px;}
._5_c00364{margin-left:-4.872000px;}
._b_c00364{margin-left:-3.852000px;}
._2_c00364{margin-left:-2.772000px;}
._3_c00364{margin-left:-1.764000px;}
._8_c00364{width:1.044000px;}
._7_c00364{width:2.856000px;}
._11_c00364{width:4.044000px;}
._1_c00364{width:5.292000px;}
._16_c00364{width:6.624000px;}
._0_c00364{width:8.820000px;}
._f_c00364{width:10.944000px;}
._a_c00364{width:12.384000px;}
._17_c00364{width:14.916000px;}
._e_c00364{width:16.200000px;}
._10_c00364{width:17.292000px;}
._d_c00364{width:21.870000px;}
._c_c00364{width:35.196000px;}
._1a_c00364{width:90.924000px;}
._15_c00364{width:300.888000px;}
._1b_c00364{width:357.336000px;}
._6_c00364{width:376.044000px;}
.fc2_c00364{color:transparent;}
.fc1_c00364{color:rgb(128,128,128);}
.fc0_c00364{color:rgb(0,0,0);}
.fs6_c00364{font-size:48.000000px;}
.fs4_c00364{font-size:54.000000px;}
.fs5_c00364{font-size:63.000000px;}
.fs3_c00364{font-size:66.000000px;}
.fs2_c00364{font-size:72.000000px;}
.fs1_c00364{font-size:81.000000px;}
.fs0_c00364{font-size:84.000000px;}
.y0_c00364{bottom:0.000000px;}
.y1f_c00364{bottom:3.105000px;}
.y1e_c00364{bottom:7.228369px;}
.y1d_c00364{bottom:46.920000px;}
.y1c_c00364{bottom:73.470000px;}
.y1b_c00364{bottom:98.520000px;}
.y1a_c00364{bottom:123.870000px;}
.y19_c00364{bottom:149.070000px;}
.y18_c00364{bottom:174.720000px;}
.y17_c00364{bottom:199.470000px;}
.y16_c00364{bottom:224.370000px;}
.y15_c00364{bottom:248.370000px;}
.y14_c00364{bottom:270.570000px;}
.y13_c00364{bottom:297.720000px;}
.y12_c00364{bottom:319.620000px;}
.y11_c00364{bottom:343.920000px;}
.y10_c00364{bottom:364.470000px;}
.yf_c00364{bottom:393.570000px;}
.ye_c00364{bottom:418.770000px;}
.yd_c00364{bottom:443.520000px;}
.yc_c00364{bottom:467.070000px;}
.yb_c00364{bottom:492.720000px;}
.ya_c00364{bottom:517.020000px;}
.y9_c00364{bottom:541.920000px;}
.y8_c00364{bottom:566.970000px;}
.y7_c00364{bottom:591.870000px;}
.y6_c00364{bottom:616.320000px;}
.y5_c00364{bottom:640.920000px;}
.y4_c00364{bottom:665.820000px;}
.y3_c00364{bottom:690.120000px;}
.y2_c00364{bottom:714.870000px;}
.y1_c00364{bottom:739.470000px;}
.h4_c00364{height:13.200073px;}
.h5_c00364{height:43.804688px;}
.h3_c00364{height:91.160156px;}
.h2_c00364{height:102.555176px;}
.h1_c00364{height:790.500000px;}
.h0_c00364{height:790.800000px;}
.w2_c00364{width:104.875500px;}
.w1_c00364{width:530.250000px;}
.w0_c00364{width:530.550000px;}
.x0_c00364{left:0.000000px;}
.x7_c00364{left:19.650000px;}
.x2_c00364{left:24.000000px;}
.x3_c00364{left:25.350000px;}
.x4_c00364{left:26.700000px;}
.x5_c00364{left:28.350000px;}
.x8_c00364{left:106.350000px;}
.x1_c00364{left:131.550000px;}
.xa_c00364{left:217.089249px;}
.x9_c00364{left:243.900000px;}
.x6_c00364{left:331.050000px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls7_c00364{letter-spacing:-5.333333pt;}
.ls5_c00364{letter-spacing:0.000000pt;}
.ls2_c00364{letter-spacing:1.589333pt;}
.ls0_c00364{letter-spacing:2.666667pt;}
.ls3_c00364{letter-spacing:3.189333pt;}
.ls6_c00364{letter-spacing:5.333333pt;}
.ls4_c00364{letter-spacing:9.056000pt;}
.ls1_c00364{letter-spacing:10.656000pt;}
.ws0_c00364{word-spacing:-21.378667pt;}
.ws1_c00364{word-spacing:-18.090667pt;}
.ws2_c00364{word-spacing:-15.424000pt;}
.ws3_c00364{word-spacing:0.000000pt;}
._12_c00364{margin-left:-15.562667pt;}
._18_c00364{margin-left:-13.824000pt;}
._19_c00364{margin-left:-12.736000pt;}
._14_c00364{margin-left:-10.037333pt;}
._13_c00364{margin-left:-8.693333pt;}
._9_c00364{margin-left:-6.944000pt;}
._4_c00364{margin-left:-5.301333pt;}
._5_c00364{margin-left:-4.330667pt;}
._b_c00364{margin-left:-3.424000pt;}
._2_c00364{margin-left:-2.464000pt;}
._3_c00364{margin-left:-1.568000pt;}
._8_c00364{width:0.928000pt;}
._7_c00364{width:2.538667pt;}
._11_c00364{width:3.594667pt;}
._1_c00364{width:4.704000pt;}
._16_c00364{width:5.888000pt;}
._0_c00364{width:7.840000pt;}
._f_c00364{width:9.728000pt;}
._a_c00364{width:11.008000pt;}
._17_c00364{width:13.258667pt;}
._e_c00364{width:14.400000pt;}
._10_c00364{width:15.370667pt;}
._d_c00364{width:19.440000pt;}
._c_c00364{width:31.285333pt;}
._1a_c00364{width:80.821333pt;}
._15_c00364{width:267.456000pt;}
._1b_c00364{width:317.632000pt;}
._6_c00364{width:334.261333pt;}
.fs6_c00364{font-size:42.666667pt;}
.fs4_c00364{font-size:48.000000pt;}
.fs5_c00364{font-size:56.000000pt;}
.fs3_c00364{font-size:58.666667pt;}
.fs2_c00364{font-size:64.000000pt;}
.fs1_c00364{font-size:72.000000pt;}
.fs0_c00364{font-size:74.666667pt;}
.y0_c00364{bottom:0.000000pt;}
.y1f_c00364{bottom:2.760000pt;}
.y1e_c00364{bottom:6.425217pt;}
.y1d_c00364{bottom:41.706667pt;}
.y1c_c00364{bottom:65.306667pt;}
.y1b_c00364{bottom:87.573333pt;}
.y1a_c00364{bottom:110.106667pt;}
.y19_c00364{bottom:132.506667pt;}
.y18_c00364{bottom:155.306667pt;}
.y17_c00364{bottom:177.306667pt;}
.y16_c00364{bottom:199.440000pt;}
.y15_c00364{bottom:220.773333pt;}
.y14_c00364{bottom:240.506667pt;}
.y13_c00364{bottom:264.640000pt;}
.y12_c00364{bottom:284.106667pt;}
.y11_c00364{bottom:305.706667pt;}
.y10_c00364{bottom:323.973333pt;}
.yf_c00364{bottom:349.840000pt;}
.ye_c00364{bottom:372.240000pt;}
.yd_c00364{bottom:394.240000pt;}
.yc_c00364{bottom:415.173333pt;}
.yb_c00364{bottom:437.973333pt;}
.ya_c00364{bottom:459.573333pt;}
.y9_c00364{bottom:481.706667pt;}
.y8_c00364{bottom:503.973333pt;}
.y7_c00364{bottom:526.106667pt;}
.y6_c00364{bottom:547.840000pt;}
.y5_c00364{bottom:569.706667pt;}
.y4_c00364{bottom:591.840000pt;}
.y3_c00364{bottom:613.440000pt;}
.y2_c00364{bottom:635.440000pt;}
.y1_c00364{bottom:657.306667pt;}
.h4_c00364{height:11.733399pt;}
.h5_c00364{height:38.937500pt;}
.h3_c00364{height:81.031250pt;}
.h2_c00364{height:91.160156pt;}
.h1_c00364{height:702.666667pt;}
.h0_c00364{height:702.933333pt;}
.w2_c00364{width:93.222667pt;}
.w1_c00364{width:471.333333pt;}
.w0_c00364{width:471.600000pt;}
.x0_c00364{left:0.000000pt;}
.x7_c00364{left:17.466667pt;}
.x2_c00364{left:21.333333pt;}
.x3_c00364{left:22.533333pt;}
.x4_c00364{left:23.733333pt;}
.x5_c00364{left:25.200000pt;}
.x8_c00364{left:94.533333pt;}
.x1_c00364{left:116.933333pt;}
.xa_c00364{left:192.968221pt;}
.x9_c00364{left:216.800000pt;}
.x6_c00364{left:294.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5a999a84f6afbd5a026805e1.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.480469;font-style:normal;font-weight:normal;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_9682b9a1a1900a2847b171a9.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:1.568848;font-style:normal;font-weight:normal;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_8ea2ce9e5a3e191eee320a27.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00365;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00365{font-family:ff4_c00365;line-height:1.219238;font-style: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;}
.ls1_c00365{letter-spacing:0.000000px;}
.ls0_c00365{letter-spacing:3.000000px;}
.sc__c00365{text-shadow:none;}
.sc0_c00365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00365{-webkit-text-stroke:0px transparent;}
.sc0_c00365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00365{word-spacing:0.000000px;}
._14_c00365{margin-left:-16.992000px;}
._10_c00365{margin-left:-14.568000px;}
._4_c00365{margin-left:-9.288000px;}
._5_c00365{margin-left:-7.920000px;}
._13_c00365{margin-left:-6.864000px;}
._11_c00365{margin-left:-5.784000px;}
._8_c00365{margin-left:-4.680000px;}
._6_c00365{margin-left:-3.264000px;}
._9_c00365{margin-left:-1.440000px;}
._7_c00365{width:1.584000px;}
._a_c00365{width:3.144000px;}
._1_c00365{width:5.040000px;}
._b_c00365{width:6.072000px;}
._3_c00365{width:7.272000px;}
._c_c00365{width:8.496000px;}
._2_c00365{width:9.720000px;}
._f_c00365{width:11.451000px;}
._0_c00365{width:12.960000px;}
._d_c00365{width:16.224000px;}
._e_c00365{width:17.568000px;}
._15_c00365{width:21.321000px;}
._12_c00365{width:27.144000px;}
.fc2_c00365{color:transparent;}
.fc1_c00365{color:rgb(128,128,128);}
.fc0_c00365{color:rgb(0,0,0);}
.fs3_c00365{font-size:48.000000px;}
.fs2_c00365{font-size:63.000000px;}
.fs0_c00365{font-size:72.000000px;}
.fs1_c00365{font-size:75.000000px;}
.y0_c00365{bottom:0.000000px;}
.y1e_c00365{bottom:3.105000px;}
.y1d_c00365{bottom:7.228363px;}
.y1c_c00365{bottom:63.900000px;}
.y1b_c00365{bottom:87.450000px;}
.y1a_c00365{bottom:116.100000px;}
.y19_c00365{bottom:139.350000px;}
.y18_c00365{bottom:163.650000px;}
.y17_c00365{bottom:188.700000px;}
.y16_c00365{bottom:214.350000px;}
.y15_c00365{bottom:238.650000px;}
.y14_c00365{bottom:263.250000px;}
.y13_c00365{bottom:289.350000px;}
.y12_c00365{bottom:312.900000px;}
.y11_c00365{bottom:339.150000px;}
.y10_c00365{bottom:366.300000px;}
.yf_c00365{bottom:386.850000px;}
.ye_c00365{bottom:410.400000px;}
.yd_c00365{bottom:437.850000px;}
.yc_c00365{bottom:460.350000px;}
.yb_c00365{bottom:484.350000px;}
.ya_c00365{bottom:508.950000px;}
.y9_c00365{bottom:532.950000px;}
.y8_c00365{bottom:558.300000px;}
.y7_c00365{bottom:583.500000px;}
.y6_c00365{bottom:607.500000px;}
.y5_c00365{bottom:632.550000px;}
.y4_c00365{bottom:657.750000px;}
.y3_c00365{bottom:681.750000px;}
.y2_c00365{bottom:706.350000px;}
.y1_c00365{bottom:732.600000px;}
.h5_c00365{height:13.200074px;}
.h6_c00365{height:43.804688px;}
.h3_c00365{height:73.608398px;}
.h4_c00365{height:79.765137px;}
.h2_c00365{height:91.160156px;}
.h1_c00365{height:788.250000px;}
.h0_c00365{height:788.400000px;}
.w2_c00365{width:104.875500px;}
.w0_c00365{width:518.925000px;}
.w1_c00365{width:519.000000px;}
.x0_c00365{left:0.000000px;}
.x2_c00365{left:104.400000px;}
.x3_c00365{left:105.900000px;}
.x5_c00365{left:107.250000px;}
.x6_c00365{left:108.900000px;}
.x4_c00365{left:109.950000px;}
.x8_c00365{left:111.300000px;}
.x7_c00365{left:112.650000px;}
.x9_c00365{left:211.276749px;}
.x1_c00365{left:231.600000px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls1_c00365{letter-spacing:0.000000pt;}
.ls0_c00365{letter-spacing:2.666667pt;}
.ws0_c00365{word-spacing:0.000000pt;}
._14_c00365{margin-left:-15.104000pt;}
._10_c00365{margin-left:-12.949333pt;}
._4_c00365{margin-left:-8.256000pt;}
._5_c00365{margin-left:-7.040000pt;}
._13_c00365{margin-left:-6.101333pt;}
._11_c00365{margin-left:-5.141333pt;}
._8_c00365{margin-left:-4.160000pt;}
._6_c00365{margin-left:-2.901333pt;}
._9_c00365{margin-left:-1.280000pt;}
._7_c00365{width:1.408000pt;}
._a_c00365{width:2.794667pt;}
._1_c00365{width:4.480000pt;}
._b_c00365{width:5.397333pt;}
._3_c00365{width:6.464000pt;}
._c_c00365{width:7.552000pt;}
._2_c00365{width:8.640000pt;}
._f_c00365{width:10.178667pt;}
._0_c00365{width:11.520000pt;}
._d_c00365{width:14.421333pt;}
._e_c00365{width:15.616000pt;}
._15_c00365{width:18.952000pt;}
._12_c00365{width:24.128000pt;}
.fs3_c00365{font-size:42.666667pt;}
.fs2_c00365{font-size:56.000000pt;}
.fs0_c00365{font-size:64.000000pt;}
.fs1_c00365{font-size:66.666667pt;}
.y0_c00365{bottom:0.000000pt;}
.y1e_c00365{bottom:2.760000pt;}
.y1d_c00365{bottom:6.425212pt;}
.y1c_c00365{bottom:56.800000pt;}
.y1b_c00365{bottom:77.733333pt;}
.y1a_c00365{bottom:103.200000pt;}
.y19_c00365{bottom:123.866667pt;}
.y18_c00365{bottom:145.466667pt;}
.y17_c00365{bottom:167.733333pt;}
.y16_c00365{bottom:190.533333pt;}
.y15_c00365{bottom:212.133333pt;}
.y14_c00365{bottom:234.000000pt;}
.y13_c00365{bottom:257.200000pt;}
.y12_c00365{bottom:278.133333pt;}
.y11_c00365{bottom:301.466667pt;}
.y10_c00365{bottom:325.600000pt;}
.yf_c00365{bottom:343.866667pt;}
.ye_c00365{bottom:364.800000pt;}
.yd_c00365{bottom:389.200000pt;}
.yc_c00365{bottom:409.200000pt;}
.yb_c00365{bottom:430.533333pt;}
.ya_c00365{bottom:452.400000pt;}
.y9_c00365{bottom:473.733333pt;}
.y8_c00365{bottom:496.266667pt;}
.y7_c00365{bottom:518.666667pt;}
.y6_c00365{bottom:540.000000pt;}
.y5_c00365{bottom:562.266667pt;}
.y4_c00365{bottom:584.666667pt;}
.y3_c00365{bottom:606.000000pt;}
.y2_c00365{bottom:627.866667pt;}
.y1_c00365{bottom:651.200000pt;}
.h5_c00365{height:11.733399pt;}
.h6_c00365{height:38.937500pt;}
.h3_c00365{height:65.429688pt;}
.h4_c00365{height:70.902344pt;}
.h2_c00365{height:81.031250pt;}
.h1_c00365{height:700.666667pt;}
.h0_c00365{height:700.800000pt;}
.w2_c00365{width:93.222667pt;}
.w0_c00365{width:461.266667pt;}
.w1_c00365{width:461.333333pt;}
.x0_c00365{left:0.000000pt;}
.x2_c00365{left:92.800000pt;}
.x3_c00365{left:94.133333pt;}
.x5_c00365{left:95.333333pt;}
.x6_c00365{left:96.800000pt;}
.x4_c00365{left:97.733333pt;}
.x8_c00365{left:98.933333pt;}
.x7_c00365{left:100.133333pt;}
.x9_c00365{left:187.801554pt;}
.x1_c00365{left:205.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_09e7789c2c927aa7a7333567.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00366;src:url('chunks/assets/font_39c0dabb2aaa5335ea214149.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:1.480469;font-style:normal;font-weight:normal;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_b47a4af8947226928c38d363.woff2')format("woff");}.ff3_c00366{font-family:ff3_c00366;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00366;src:url('chunks/assets/font_36d0cde3c13f0926502e97c6.woff2')format("woff");}.ff4_c00366{font-family:ff4_c00366;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00366;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00366{font-family:ff5_c00366;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00366{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00366{vertical-align:0.000000px;}
.ls0_c00366{letter-spacing:0.000000px;}
.ls1_c00366{letter-spacing:3.000000px;}
.ls3_c00366{letter-spacing:6.000000px;}
.ls2_c00366{letter-spacing:9.000000px;}
.sc__c00366{text-shadow:none;}
.sc0_c00366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00366{-webkit-text-stroke:0px transparent;}
.sc0_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00366{word-spacing:-38.724000px;}
.ws1_c00366{word-spacing:-33.192000px;}
.ws2_c00366{word-spacing:-24.750000px;}
.ws3_c00366{word-spacing:0.000000px;}
._14_c00366{margin-left:-32.700000px;}
._13_c00366{margin-left:-14.982000px;}
._15_c00366{margin-left:-13.950000px;}
._10_c00366{margin-left:-11.892000px;}
._2_c00366{margin-left:-10.164000px;}
._f_c00366{margin-left:-8.364000px;}
._c_c00366{margin-left:-6.288000px;}
._11_c00366{margin-left:-5.256000px;}
._a_c00366{margin-left:-4.200000px;}
._5_c00366{margin-left:-2.688000px;}
._b_c00366{margin-left:-1.656000px;}
._9_c00366{width:1.392000px;}
._3_c00366{width:2.436000px;}
._7_c00366{width:3.444000px;}
._4_c00366{width:4.452000px;}
._6_c00366{width:5.628000px;}
._d_c00366{width:7.296000px;}
._1_c00366{width:8.316000px;}
._e_c00366{width:9.900000px;}
._12_c00366{width:11.448000px;}
._0_c00366{width:14.028000px;}
._16_c00366{width:43.728000px;}
._17_c00366{width:314.862000px;}
._8_c00366{width:494.712000px;}
.fc2_c00366{color:transparent;}
.fc1_c00366{color:rgb(128,128,128);}
.fc0_c00366{color:rgb(0,0,0);}
.fs7_c00366{font-size:48.000000px;}
.fs3_c00366{font-size:54.000000px;}
.fs5_c00366{font-size:63.000000px;}
.fs2_c00366{font-size:72.000000px;}
.fs6_c00366{font-size:75.000000px;}
.fs4_c00366{font-size:81.000000px;}
.fs0_c00366{font-size:84.000000px;}
.fs1_c00366{font-size:87.000000px;}
.y0_c00366{bottom:0.000000px;}
.y1f_c00366{bottom:3.105000px;}
.y1e_c00366{bottom:7.228355px;}
.y1d_c00366{bottom:52.335000px;}
.y1c_c00366{bottom:78.585000px;}
.y1b_c00366{bottom:103.185000px;}
.y1a_c00366{bottom:129.135000px;}
.y19_c00366{bottom:154.785000px;}
.y18_c00366{bottom:179.085000px;}
.y17_c00366{bottom:204.735000px;}
.y16_c00366{bottom:229.485000px;}
.y15_c00366{bottom:254.685000px;}
.y14_c00366{bottom:279.135000px;}
.y13_c00366{bottom:303.735000px;}
.y12_c00366{bottom:326.685000px;}
.y11_c00366{bottom:349.935000px;}
.y10_c00366{bottom:374.835000px;}
.yf_c00366{bottom:399.285000px;}
.ye_c00366{bottom:424.185000px;}
.yd_c00366{bottom:448.485000px;}
.yc_c00366{bottom:473.535000px;}
.yb_c00366{bottom:497.835000px;}
.ya_c00366{bottom:522.435000px;}
.y9_c00366{bottom:546.735000px;}
.y8_c00366{bottom:572.385000px;}
.y7_c00366{bottom:597.285000px;}
.y6_c00366{bottom:621.285000px;}
.y5_c00366{bottom:645.285000px;}
.y4_c00366{bottom:670.185000px;}
.y3_c00366{bottom:694.485000px;}
.y2_c00366{bottom:720.135000px;}
.y1_c00366{bottom:744.435000px;}
.h5_c00366{height:13.200074px;}
.h6_c00366{height:43.804688px;}
.h3_c00366{height:91.160156px;}
.h2_c00366{height:101.825684px;}
.h4_c00366{height:102.555176px;}
.h1_c00366{height:779.250000px;}
.h0_c00366{height:779.475000px;}
.w1_c00366{width:104.875500px;}
.w0_c00366{width:533.250000px;}
.x0_c00366{left:0.000000px;}
.xb_c00366{left:13.500000px;}
.x9_c00366{left:22.200000px;}
.x7_c00366{left:23.250000px;}
.x8_c00366{left:25.650000px;}
.x3_c00366{left:27.600000px;}
.x2_c00366{left:28.800000px;}
.x4_c00366{left:30.300000px;}
.x5_c00366{left:31.350000px;}
.xa_c00366{left:85.500000px;}
.x6_c00366{left:125.550000px;}
.x1_c00366{left:142.200000px;}
.xd_c00366{left:218.439240px;}
.xc_c00366{left:231.900000px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls0_c00366{letter-spacing:0.000000pt;}
.ls1_c00366{letter-spacing:2.666667pt;}
.ls3_c00366{letter-spacing:5.333333pt;}
.ls2_c00366{letter-spacing:8.000000pt;}
.ws0_c00366{word-spacing:-34.421333pt;}
.ws1_c00366{word-spacing:-29.504000pt;}
.ws2_c00366{word-spacing:-22.000000pt;}
.ws3_c00366{word-spacing:0.000000pt;}
._14_c00366{margin-left:-29.066667pt;}
._13_c00366{margin-left:-13.317333pt;}
._15_c00366{margin-left:-12.400000pt;}
._10_c00366{margin-left:-10.570667pt;}
._2_c00366{margin-left:-9.034667pt;}
._f_c00366{margin-left:-7.434667pt;}
._c_c00366{margin-left:-5.589333pt;}
._11_c00366{margin-left:-4.672000pt;}
._a_c00366{margin-left:-3.733333pt;}
._5_c00366{margin-left:-2.389333pt;}
._b_c00366{margin-left:-1.472000pt;}
._9_c00366{width:1.237333pt;}
._3_c00366{width:2.165333pt;}
._7_c00366{width:3.061333pt;}
._4_c00366{width:3.957333pt;}
._6_c00366{width:5.002667pt;}
._d_c00366{width:6.485333pt;}
._1_c00366{width:7.392000pt;}
._e_c00366{width:8.800000pt;}
._12_c00366{width:10.176000pt;}
._0_c00366{width:12.469333pt;}
._16_c00366{width:38.869333pt;}
._17_c00366{width:279.877333pt;}
._8_c00366{width:439.744000pt;}
.fs7_c00366{font-size:42.666667pt;}
.fs3_c00366{font-size:48.000000pt;}
.fs5_c00366{font-size:56.000000pt;}
.fs2_c00366{font-size:64.000000pt;}
.fs6_c00366{font-size:66.666667pt;}
.fs4_c00366{font-size:72.000000pt;}
.fs0_c00366{font-size:74.666667pt;}
.fs1_c00366{font-size:77.333333pt;}
.y0_c00366{bottom:0.000000pt;}
.y1f_c00366{bottom:2.760000pt;}
.y1e_c00366{bottom:6.425204pt;}
.y1d_c00366{bottom:46.520000pt;}
.y1c_c00366{bottom:69.853333pt;}
.y1b_c00366{bottom:91.720000pt;}
.y1a_c00366{bottom:114.786667pt;}
.y19_c00366{bottom:137.586667pt;}
.y18_c00366{bottom:159.186667pt;}
.y17_c00366{bottom:181.986667pt;}
.y16_c00366{bottom:203.986667pt;}
.y15_c00366{bottom:226.386667pt;}
.y14_c00366{bottom:248.120000pt;}
.y13_c00366{bottom:269.986667pt;}
.y12_c00366{bottom:290.386667pt;}
.y11_c00366{bottom:311.053333pt;}
.y10_c00366{bottom:333.186667pt;}
.yf_c00366{bottom:354.920000pt;}
.ye_c00366{bottom:377.053333pt;}
.yd_c00366{bottom:398.653333pt;}
.yc_c00366{bottom:420.920000pt;}
.yb_c00366{bottom:442.520000pt;}
.ya_c00366{bottom:464.386667pt;}
.y9_c00366{bottom:485.986667pt;}
.y8_c00366{bottom:508.786667pt;}
.y7_c00366{bottom:530.920000pt;}
.y6_c00366{bottom:552.253333pt;}
.y5_c00366{bottom:573.586667pt;}
.y4_c00366{bottom:595.720000pt;}
.y3_c00366{bottom:617.320000pt;}
.y2_c00366{bottom:640.120000pt;}
.y1_c00366{bottom:661.720000pt;}
.h5_c00366{height:11.733399pt;}
.h6_c00366{height:38.937500pt;}
.h3_c00366{height:81.031250pt;}
.h2_c00366{height:90.511719pt;}
.h4_c00366{height:91.160156pt;}
.h1_c00366{height:692.666667pt;}
.h0_c00366{height:692.866667pt;}
.w1_c00366{width:93.222667pt;}
.w0_c00366{width:474.000000pt;}
.x0_c00366{left:0.000000pt;}
.xb_c00366{left:12.000000pt;}
.x9_c00366{left:19.733333pt;}
.x7_c00366{left:20.666667pt;}
.x8_c00366{left:22.800000pt;}
.x3_c00366{left:24.533333pt;}
.x2_c00366{left:25.600000pt;}
.x4_c00366{left:26.933333pt;}
.x5_c00366{left:27.866667pt;}
.xa_c00366{left:76.000000pt;}
.x6_c00366{left:111.600000pt;}
.x1_c00366{left:126.400000pt;}
.xd_c00366{left:194.168213pt;}
.xc_c00366{left:206.133333pt;}
}





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

.ir_c00367:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00367{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00367;src:url('chunks/assets/font_9528972c90ec8ffb9512048e.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.480469;font-style:normal;font-weight:normal;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_60e6fcf631548a8f7c1eb9a6.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.568848;font-style:normal;font-weight:normal;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_bf05c559cbccc67d4009f1a1.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00367;src:url('chunks/assets/font_07518776650b2c40ecabca1b.woff2')format("woff");}.ff4_c00367{font-family:ff4_c00367;line-height:1.575000;font-style:normal;font-weight:normal;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_0fe8fc9668fb0c36470dd165.woff2')format("woff");}.ff5_c00367{font-family:ff5_c00367;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00367;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00367{font-family:ff6_c00367;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00367{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00367{vertical-align:0.000000px;}
.ls3_c00367{letter-spacing:-6.000000px;}
.ls0_c00367{letter-spacing:0.000000px;}
.ls1_c00367{letter-spacing:3.000000px;}
.ls2_c00367{letter-spacing:6.000000px;}
.sc__c00367{text-shadow:none;}
.sc0_c00367{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00367{-webkit-text-stroke:0px transparent;}
.sc0_c00367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00367{word-spacing:-20.352000px;}
.ws1_c00367{word-spacing:-12.963000px;}
.ws3_c00367{word-spacing:-10.836000px;}
.ws0_c00367{word-spacing:-8.736000px;}
.ws2_c00367{word-spacing:-3.120000px;}
.ws5_c00367{word-spacing:0.000000px;}
._7_c00367{margin-left:-11.664000px;}
._d_c00367{margin-left:-9.816000px;}
._c_c00367{margin-left:-7.716000px;}
._13_c00367{margin-left:-5.412000px;}
._4_c00367{margin-left:-4.380000px;}
._a_c00367{margin-left:-3.372000px;}
._6_c00367{margin-left:-2.244000px;}
._12_c00367{margin-left:-1.080000px;}
._8_c00367{width:1.656000px;}
._10_c00367{width:2.664000px;}
._e_c00367{width:3.816000px;}
._9_c00367{width:5.040000px;}
._1_c00367{width:6.780000px;}
._17_c00367{width:7.908000px;}
._14_c00367{width:8.940000px;}
._5_c00367{width:9.960000px;}
._3_c00367{width:11.100000px;}
._2_c00367{width:12.720000px;}
._15_c00367{width:13.764000px;}
._f_c00367{width:15.216000px;}
._0_c00367{width:17.160000px;}
._16_c00367{width:22.464000px;}
._18_c00367{width:23.628000px;}
._b_c00367{width:32.112000px;}
._19_c00367{width:33.804000px;}
._11_c00367{width:404.640000px;}
.fc2_c00367{color:transparent;}
.fc1_c00367{color:rgb(128,128,128);}
.fc0_c00367{color:rgb(0,0,0);}
.fs4_c00367{font-size:36.000000px;}
.fs5_c00367{font-size:48.000000px;}
.fs2_c00367{font-size:57.000000px;}
.fs0_c00367{font-size:60.000000px;}
.fs3_c00367{font-size:63.000000px;}
.fs1_c00367{font-size:72.000000px;}
.y0_c00367{bottom:0.000000px;}
.y1f_c00367{bottom:3.105000px;}
.y1e_c00367{bottom:7.228371px;}
.y1d_c00367{bottom:60.165000px;}
.y1c_c00367{bottom:81.465000px;}
.y1b_c00367{bottom:107.115000px;}
.y1a_c00367{bottom:133.065000px;}
.y19_c00367{bottom:159.315000px;}
.y18_c00367{bottom:184.965000px;}
.y17_c00367{bottom:208.665000px;}
.y16_c00367{bottom:233.265000px;}
.y15_c00367{bottom:258.165000px;}
.y14_c00367{bottom:283.215000px;}
.y13_c00367{bottom:307.515000px;}
.y12_c00367{bottom:333.165000px;}
.y11_c00367{bottom:356.865000px;}
.y10_c00367{bottom:382.065000px;}
.yf_c00367{bottom:406.365000px;}
.ye_c00367{bottom:431.115000px;}
.yd_c00367{bottom:455.415000px;}
.yc_c00367{bottom:479.265000px;}
.yb_c00367{bottom:503.865000px;}
.ya_c00367{bottom:528.915000px;}
.y9_c00367{bottom:553.215000px;}
.y8_c00367{bottom:578.265000px;}
.y7_c00367{bottom:602.865000px;}
.y6_c00367{bottom:627.465000px;}
.y5_c00367{bottom:652.065000px;}
.y4_c00367{bottom:679.065000px;}
.y3_c00367{bottom:703.065000px;}
.y2_c00367{bottom:726.615000px;}
.y1_c00367{bottom:751.665000px;}
.h4_c00367{height:13.200074px;}
.h5_c00367{height:43.804688px;}
.h2_c00367{height:75.966797px;}
.h3_c00367{height:91.160156px;}
.h0_c00367{height:786.525000px;}
.h1_c00367{height:786.750000px;}
.w1_c00367{width:104.875500px;}
.w0_c00367{width:526.500000px;}
.x0_c00367{left:0.000000px;}
.x3_c00367{left:24.300000px;}
.x4_c00367{left:31.800000px;}
.x2_c00367{left:103.050000px;}
.x5_c00367{left:105.000000px;}
.x6_c00367{left:106.050000px;}
.x7_c00367{left:107.400000px;}
.x8_c00367{left:108.750000px;}
.xa_c00367{left:109.800000px;}
.xb_c00367{left:111.000000px;}
.xc_c00367{left:112.350000px;}
.xd_c00367{left:113.400000px;}
.xe_c00367{left:115.050000px;}
.xf_c00367{left:116.850000px;}
.x10_c00367{left:118.200000px;}
.x11_c00367{left:119.250000px;}
.x12_c00367{left:122.850000px;}
.x9_c00367{left:181.350000px;}
.x14_c00367{left:215.064240px;}
.x1_c00367{left:235.650000px;}
.x13_c00367{left:467.400000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls3_c00367{letter-spacing:-5.333333pt;}
.ls0_c00367{letter-spacing:0.000000pt;}
.ls1_c00367{letter-spacing:2.666667pt;}
.ls2_c00367{letter-spacing:5.333333pt;}
.ws4_c00367{word-spacing:-18.090667pt;}
.ws1_c00367{word-spacing:-11.522667pt;}
.ws3_c00367{word-spacing:-9.632000pt;}
.ws0_c00367{word-spacing:-7.765333pt;}
.ws2_c00367{word-spacing:-2.773333pt;}
.ws5_c00367{word-spacing:0.000000pt;}
._7_c00367{margin-left:-10.368000pt;}
._d_c00367{margin-left:-8.725333pt;}
._c_c00367{margin-left:-6.858667pt;}
._13_c00367{margin-left:-4.810667pt;}
._4_c00367{margin-left:-3.893333pt;}
._a_c00367{margin-left:-2.997333pt;}
._6_c00367{margin-left:-1.994667pt;}
._12_c00367{margin-left:-0.960000pt;}
._8_c00367{width:1.472000pt;}
._10_c00367{width:2.368000pt;}
._e_c00367{width:3.392000pt;}
._9_c00367{width:4.480000pt;}
._1_c00367{width:6.026667pt;}
._17_c00367{width:7.029333pt;}
._14_c00367{width:7.946667pt;}
._5_c00367{width:8.853333pt;}
._3_c00367{width:9.866667pt;}
._2_c00367{width:11.306667pt;}
._15_c00367{width:12.234667pt;}
._f_c00367{width:13.525333pt;}
._0_c00367{width:15.253333pt;}
._16_c00367{width:19.968000pt;}
._18_c00367{width:21.002667pt;}
._b_c00367{width:28.544000pt;}
._19_c00367{width:30.048000pt;}
._11_c00367{width:359.680000pt;}
.fs4_c00367{font-size:32.000000pt;}
.fs5_c00367{font-size:42.666667pt;}
.fs2_c00367{font-size:50.666667pt;}
.fs0_c00367{font-size:53.333333pt;}
.fs3_c00367{font-size:56.000000pt;}
.fs1_c00367{font-size:64.000000pt;}
.y0_c00367{bottom:0.000000pt;}
.y1f_c00367{bottom:2.760000pt;}
.y1e_c00367{bottom:6.425219pt;}
.y1d_c00367{bottom:53.480000pt;}
.y1c_c00367{bottom:72.413333pt;}
.y1b_c00367{bottom:95.213333pt;}
.y1a_c00367{bottom:118.280000pt;}
.y19_c00367{bottom:141.613333pt;}
.y18_c00367{bottom:164.413333pt;}
.y17_c00367{bottom:185.480000pt;}
.y16_c00367{bottom:207.346667pt;}
.y15_c00367{bottom:229.480000pt;}
.y14_c00367{bottom:251.746667pt;}
.y13_c00367{bottom:273.346667pt;}
.y12_c00367{bottom:296.146667pt;}
.y11_c00367{bottom:317.213333pt;}
.y10_c00367{bottom:339.613333pt;}
.yf_c00367{bottom:361.213333pt;}
.ye_c00367{bottom:383.213333pt;}
.yd_c00367{bottom:404.813333pt;}
.yc_c00367{bottom:426.013333pt;}
.yb_c00367{bottom:447.880000pt;}
.ya_c00367{bottom:470.146667pt;}
.y9_c00367{bottom:491.746667pt;}
.y8_c00367{bottom:514.013333pt;}
.y7_c00367{bottom:535.880000pt;}
.y6_c00367{bottom:557.746667pt;}
.y5_c00367{bottom:579.613333pt;}
.y4_c00367{bottom:603.613333pt;}
.y3_c00367{bottom:624.946667pt;}
.y2_c00367{bottom:645.880000pt;}
.y1_c00367{bottom:668.146667pt;}
.h4_c00367{height:11.733399pt;}
.h5_c00367{height:38.937500pt;}
.h2_c00367{height:67.526042pt;}
.h3_c00367{height:81.031250pt;}
.h0_c00367{height:699.133333pt;}
.h1_c00367{height:699.333333pt;}
.w1_c00367{width:93.222667pt;}
.w0_c00367{width:468.000000pt;}
.x0_c00367{left:0.000000pt;}
.x3_c00367{left:21.600000pt;}
.x4_c00367{left:28.266667pt;}
.x2_c00367{left:91.600000pt;}
.x5_c00367{left:93.333333pt;}
.x6_c00367{left:94.266667pt;}
.x7_c00367{left:95.466667pt;}
.x8_c00367{left:96.666667pt;}
.xa_c00367{left:97.600000pt;}
.xb_c00367{left:98.666667pt;}
.xc_c00367{left:99.866667pt;}
.xd_c00367{left:100.800000pt;}
.xe_c00367{left:102.266667pt;}
.xf_c00367{left:103.866667pt;}
.x10_c00367{left:105.066667pt;}
.x11_c00367{left:106.000000pt;}
.x12_c00367{left:109.200000pt;}
.x9_c00367{left:161.200000pt;}
.x14_c00367{left:191.168213pt;}
.x1_c00367{left:209.466667pt;}
.x13_c00367{left:415.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cdeb977235cf09f3c9969be0.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.480469;font-style:normal;font-weight:normal;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_a7a09a7331966efb47ba8019.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00368;src:url('chunks/assets/font_7201c434595c16516ec67268.woff2')format("woff");}.ff3_c00368{font-family:ff3_c00368;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00368;src:url('chunks/assets/font_6a2173e51b383d1fdd5a8c9d.woff2')format("woff");}.ff4_c00368{font-family:ff4_c00368;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00368;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00368{font-family:ff5_c00368;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00368{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00368{vertical-align:0.000000px;}
.ls4_c00368{letter-spacing:-6.000000px;}
.ls3_c00368{letter-spacing:0.000000px;}
.ls2_c00368{letter-spacing:1.788000px;}
.ls0_c00368{letter-spacing:3.000000px;}
.ls1_c00368{letter-spacing:9.588000px;}
.sc__c00368{text-shadow:none;}
.sc0_c00368{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00368{-webkit-text-stroke:0px transparent;}
.sc0_c00368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00368{word-spacing:-24.051000px;}
.ws2_c00368{word-spacing:-20.352000px;}
.ws0_c00368{word-spacing:-18.183000px;}
.ws3_c00368{word-spacing:0.000000px;}
._17_c00368{margin-left:-25.083000px;}
._13_c00368{margin-left:-14.544000px;}
._d_c00368{margin-left:-11.730000px;}
._15_c00368{margin-left:-10.038000px;}
._f_c00368{margin-left:-8.889000px;}
._c_c00368{margin-left:-7.194000px;}
._18_c00368{margin-left:-6.186000px;}
._10_c00368{margin-left:-4.968000px;}
._9_c00368{margin-left:-3.639000px;}
._a_c00368{margin-left:-1.872000px;}
._b_c00368{width:1.224000px;}
._e_c00368{width:2.403000px;}
._5_c00368{width:3.456000px;}
._3_c00368{width:5.328000px;}
._1_c00368{width:7.128000px;}
._2_c00368{width:8.496000px;}
._4_c00368{width:9.504000px;}
._8_c00368{width:10.512000px;}
._0_c00368{width:11.736000px;}
._14_c00368{width:13.287000px;}
._11_c00368{width:14.418000px;}
._12_c00368{width:17.136000px;}
._19_c00368{width:19.296000px;}
._16_c00368{width:25.749000px;}
._7_c00368{width:34.992000px;}
._1a_c00368{width:338.760000px;}
._6_c00368{width:367.848000px;}
.fc2_c00368{color:transparent;}
.fc1_c00368{color:rgb(128,128,128);}
.fc0_c00368{color:rgb(0,0,0);}
.fs3_c00368{font-size:48.000000px;}
.fs2_c00368{font-size:63.000000px;}
.fs0_c00368{font-size:72.000000px;}
.fs1_c00368{font-size:78.000000px;}
.y0_c00368{bottom:0.000000px;}
.y1f_c00368{bottom:3.105000px;}
.y1e_c00368{bottom:7.228357px;}
.y1d_c00368{bottom:45.930000px;}
.y1c_c00368{bottom:73.530000px;}
.y1b_c00368{bottom:96.480000px;}
.y1a_c00368{bottom:124.830000px;}
.y19_c00368{bottom:149.280000px;}
.y18_c00368{bottom:173.880000px;}
.y17_c00368{bottom:199.530000px;}
.y16_c00368{bottom:222.780000px;}
.y15_c00368{bottom:248.730000px;}
.y14_c00368{bottom:273.480000px;}
.y13_c00368{bottom:297.330000px;}
.y12_c00368{bottom:321.330000px;}
.y11_c00368{bottom:344.280000px;}
.y10_c00368{bottom:368.430000px;}
.yf_c00368{bottom:393.180000px;}
.ye_c00368{bottom:417.930000px;}
.yd_c00368{bottom:442.830000px;}
.yc_c00368{bottom:467.430000px;}
.yb_c00368{bottom:492.180000px;}
.ya_c00368{bottom:516.780000px;}
.y9_c00368{bottom:541.080000px;}
.y8_c00368{bottom:565.980000px;}
.y7_c00368{bottom:590.730000px;}
.y6_c00368{bottom:615.330000px;}
.y5_c00368{bottom:639.930000px;}
.y4_c00368{bottom:664.530000px;}
.y3_c00368{bottom:689.880000px;}
.y2_c00368{bottom:714.180000px;}
.y1_c00368{bottom:739.830000px;}
.h4_c00368{height:13.200074px;}
.h5_c00368{height:43.804688px;}
.h2_c00368{height:84.269531px;}
.h3_c00368{height:91.160156px;}
.h0_c00368{height:788.700000px;}
.h1_c00368{height:789.000000px;}
.w2_c00368{width:104.875500px;}
.w1_c00368{width:534.750000px;}
.w0_c00368{width:534.900000px;}
.x0_c00368{left:0.000000px;}
.xd_c00368{left:10.500000px;}
.xb_c00368{left:13.050000px;}
.xa_c00368{left:14.550000px;}
.x7_c00368{left:15.750000px;}
.x9_c00368{left:16.800000px;}
.x8_c00368{left:18.150000px;}
.x6_c00368{left:19.800000px;}
.x5_c00368{left:20.850000px;}
.x4_c00368{left:21.900000px;}
.x2_c00368{left:22.950000px;}
.x3_c00368{left:24.600000px;}
.xc_c00368{left:67.200000px;}
.x1_c00368{left:128.550000px;}
.xe_c00368{left:218.250000px;}
.xf_c00368{left:219.264267px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls4_c00368{letter-spacing:-5.333333pt;}
.ls3_c00368{letter-spacing:0.000000pt;}
.ls2_c00368{letter-spacing:1.589333pt;}
.ls0_c00368{letter-spacing:2.666667pt;}
.ls1_c00368{letter-spacing:8.522667pt;}
.ws1_c00368{word-spacing:-21.378667pt;}
.ws2_c00368{word-spacing:-18.090667pt;}
.ws0_c00368{word-spacing:-16.162667pt;}
.ws3_c00368{word-spacing:0.000000pt;}
._17_c00368{margin-left:-22.296000pt;}
._13_c00368{margin-left:-12.928000pt;}
._d_c00368{margin-left:-10.426667pt;}
._15_c00368{margin-left:-8.922667pt;}
._f_c00368{margin-left:-7.901333pt;}
._c_c00368{margin-left:-6.394667pt;}
._18_c00368{margin-left:-5.498667pt;}
._10_c00368{margin-left:-4.416000pt;}
._9_c00368{margin-left:-3.234667pt;}
._a_c00368{margin-left:-1.664000pt;}
._b_c00368{width:1.088000pt;}
._e_c00368{width:2.136000pt;}
._5_c00368{width:3.072000pt;}
._3_c00368{width:4.736000pt;}
._1_c00368{width:6.336000pt;}
._2_c00368{width:7.552000pt;}
._4_c00368{width:8.448000pt;}
._8_c00368{width:9.344000pt;}
._0_c00368{width:10.432000pt;}
._14_c00368{width:11.810667pt;}
._11_c00368{width:12.816000pt;}
._12_c00368{width:15.232000pt;}
._19_c00368{width:17.152000pt;}
._16_c00368{width:22.888000pt;}
._7_c00368{width:31.104000pt;}
._1a_c00368{width:301.120000pt;}
._6_c00368{width:326.976000pt;}
.fs3_c00368{font-size:42.666667pt;}
.fs2_c00368{font-size:56.000000pt;}
.fs0_c00368{font-size:64.000000pt;}
.fs1_c00368{font-size:69.333333pt;}
.y0_c00368{bottom:0.000000pt;}
.y1f_c00368{bottom:2.760000pt;}
.y1e_c00368{bottom:6.425206pt;}
.y1d_c00368{bottom:40.826667pt;}
.y1c_c00368{bottom:65.360000pt;}
.y1b_c00368{bottom:85.760000pt;}
.y1a_c00368{bottom:110.960000pt;}
.y19_c00368{bottom:132.693333pt;}
.y18_c00368{bottom:154.560000pt;}
.y17_c00368{bottom:177.360000pt;}
.y16_c00368{bottom:198.026667pt;}
.y15_c00368{bottom:221.093333pt;}
.y14_c00368{bottom:243.093333pt;}
.y13_c00368{bottom:264.293333pt;}
.y12_c00368{bottom:285.626667pt;}
.y11_c00368{bottom:306.026667pt;}
.y10_c00368{bottom:327.493333pt;}
.yf_c00368{bottom:349.493333pt;}
.ye_c00368{bottom:371.493333pt;}
.yd_c00368{bottom:393.626667pt;}
.yc_c00368{bottom:415.493333pt;}
.yb_c00368{bottom:437.493333pt;}
.ya_c00368{bottom:459.360000pt;}
.y9_c00368{bottom:480.960000pt;}
.y8_c00368{bottom:503.093333pt;}
.y7_c00368{bottom:525.093333pt;}
.y6_c00368{bottom:546.960000pt;}
.y5_c00368{bottom:568.826667pt;}
.y4_c00368{bottom:590.693333pt;}
.y3_c00368{bottom:613.226667pt;}
.y2_c00368{bottom:634.826667pt;}
.y1_c00368{bottom:657.626667pt;}
.h4_c00368{height:11.733399pt;}
.h5_c00368{height:38.937500pt;}
.h2_c00368{height:74.906250pt;}
.h3_c00368{height:81.031250pt;}
.h0_c00368{height:701.066667pt;}
.h1_c00368{height:701.333333pt;}
.w2_c00368{width:93.222667pt;}
.w1_c00368{width:475.333333pt;}
.w0_c00368{width:475.466667pt;}
.x0_c00368{left:0.000000pt;}
.xd_c00368{left:9.333333pt;}
.xb_c00368{left:11.600000pt;}
.xa_c00368{left:12.933333pt;}
.x7_c00368{left:14.000000pt;}
.x9_c00368{left:14.933333pt;}
.x8_c00368{left:16.133333pt;}
.x6_c00368{left:17.600000pt;}
.x5_c00368{left:18.533333pt;}
.x4_c00368{left:19.466667pt;}
.x2_c00368{left:20.400000pt;}
.x3_c00368{left:21.866667pt;}
.xc_c00368{left:59.733333pt;}
.x1_c00368{left:114.266667pt;}
.xe_c00368{left:194.000000pt;}
.xf_c00368{left:194.901571pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc633dc53e04cf88d34e4ff6.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.480469;font-style:normal;font-weight:normal;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_3607af850bdd1a4681cde6d0.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.568848;font-style:normal;font-weight:normal;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_71ef190cc76f5f995e2b9a85.woff2')format("woff");}.ff3_c00369{font-family:ff3_c00369;line-height:1.575000;font-style:normal;font-weight:normal;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_d15171e511b2a7c9c03d74c9.woff2')format("woff");}.ff4_c00369{font-family:ff4_c00369;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00369;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00369{font-family:ff5_c00369;line-height:1.219238;font-style: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:3.000000px;}
.ls2_c00369{letter-spacing:6.000000px;}
.sc__c00369{text-shadow:none;}
.sc0_c00369{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00369{-webkit-text-stroke:0px transparent;}
.sc0_c00369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00369{word-spacing:-20.250000px;}
.ws0_c00369{word-spacing:-14.280000px;}
.ws2_c00369{word-spacing:0.000000px;}
._14_c00369{margin-left:-15.300000px;}
._15_c00369{margin-left:-11.940000px;}
._c_c00369{margin-left:-10.080000px;}
._f_c00369{margin-left:-7.788000px;}
._9_c00369{margin-left:-6.768000px;}
._11_c00369{margin-left:-5.184000px;}
._b_c00369{margin-left:-4.164000px;}
._5_c00369{margin-left:-2.952000px;}
._4_c00369{margin-left:-1.440000px;}
._7_c00369{width:1.008000px;}
._6_c00369{width:2.448000px;}
._a_c00369{width:3.600000px;}
._d_c00369{width:5.364000px;}
._1_c00369{width:7.380000px;}
._13_c00369{width:9.156000px;}
._8_c00369{width:10.800000px;}
._e_c00369{width:12.972000px;}
._2_c00369{width:14.820000px;}
._12_c00369{width:15.840000px;}
._0_c00369{width:19.860000px;}
._10_c00369{width:33.264000px;}
._3_c00369{width:605.763000px;}
.fc2_c00369{color:transparent;}
.fc1_c00369{color:rgb(128,128,128);}
.fc0_c00369{color:rgb(0,0,0);}
.fs4_c00369{font-size:36.000000px;}
.fs6_c00369{font-size:48.000000px;}
.fs0_c00369{font-size:60.000000px;}
.fs3_c00369{font-size:66.000000px;}
.fs2_c00369{font-size:72.000000px;}
.fs5_c00369{font-size:81.000000px;}
.fs1_c00369{font-size:87.000000px;}
.y0_c00369{bottom:0.000000px;}
.y1f_c00369{bottom:3.105000px;}
.y1e_c00369{bottom:7.228357px;}
.y1d_c00369{bottom:44.280000px;}
.y1c_c00369{bottom:65.430000px;}
.y1b_c00369{bottom:91.530000px;}
.y1a_c00369{bottom:116.430000px;}
.y19_c00369{bottom:141.780000px;}
.y18_c00369{bottom:166.680000px;}
.y17_c00369{bottom:194.430000px;}
.y16_c00369{bottom:217.080000px;}
.y15_c00369{bottom:241.680000px;}
.y14_c00369{bottom:266.580000px;}
.y13_c00369{bottom:291.930000px;}
.y12_c00369{bottom:315.930000px;}
.y11_c00369{bottom:340.980000px;}
.y10_c00369{bottom:365.880000px;}
.yf_c00369{bottom:389.580000px;}
.ye_c00369{bottom:416.130000px;}
.yd_c00369{bottom:439.380000px;}
.yc_c00369{bottom:462.480000px;}
.yb_c00369{bottom:487.080000px;}
.ya_c00369{bottom:511.680000px;}
.y9_c00369{bottom:536.580000px;}
.y8_c00369{bottom:561.030000px;}
.y7_c00369{bottom:585.630000px;}
.y6_c00369{bottom:610.530000px;}
.y5_c00369{bottom:635.280000px;}
.y4_c00369{bottom:659.880000px;}
.y3_c00369{bottom:684.480000px;}
.y2_c00369{bottom:709.380000px;}
.y1_c00369{bottom:735.030000px;}
.h5_c00369{height:13.200074px;}
.h6_c00369{height:43.804688px;}
.h4_c00369{height:79.497070px;}
.h3_c00369{height:91.160156px;}
.h2_c00369{height:110.151855px;}
.h0_c00369{height:781.950000px;}
.h1_c00369{height:782.250000px;}
.w2_c00369{width:104.875500px;}
.w0_c00369{width:518.700000px;}
.w1_c00369{width:519.000000px;}
.x0_c00369{left:0.000000px;}
.x2_c00369{left:108.300000px;}
.x3_c00369{left:109.950000px;}
.x4_c00369{left:111.300000px;}
.x5_c00369{left:112.650000px;}
.x6_c00369{left:114.300000px;}
.x7_c00369{left:115.350000px;}
.x9_c00369{left:211.164230px;}
.x1_c00369{left:238.350000px;}
.x8_c00369{left:454.500000px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls0_c00369{letter-spacing:0.000000pt;}
.ls1_c00369{letter-spacing:2.666667pt;}
.ls2_c00369{letter-spacing:5.333333pt;}
.ws1_c00369{word-spacing:-18.000000pt;}
.ws0_c00369{word-spacing:-12.693333pt;}
.ws2_c00369{word-spacing:0.000000pt;}
._14_c00369{margin-left:-13.600000pt;}
._15_c00369{margin-left:-10.613333pt;}
._c_c00369{margin-left:-8.960000pt;}
._f_c00369{margin-left:-6.922667pt;}
._9_c00369{margin-left:-6.016000pt;}
._11_c00369{margin-left:-4.608000pt;}
._b_c00369{margin-left:-3.701333pt;}
._5_c00369{margin-left:-2.624000pt;}
._4_c00369{margin-left:-1.280000pt;}
._7_c00369{width:0.896000pt;}
._6_c00369{width:2.176000pt;}
._a_c00369{width:3.200000pt;}
._d_c00369{width:4.768000pt;}
._1_c00369{width:6.560000pt;}
._13_c00369{width:8.138667pt;}
._8_c00369{width:9.600000pt;}
._e_c00369{width:11.530667pt;}
._2_c00369{width:13.173333pt;}
._12_c00369{width:14.080000pt;}
._0_c00369{width:17.653333pt;}
._10_c00369{width:29.568000pt;}
._3_c00369{width:538.456000pt;}
.fs4_c00369{font-size:32.000000pt;}
.fs6_c00369{font-size:42.666667pt;}
.fs0_c00369{font-size:53.333333pt;}
.fs3_c00369{font-size:58.666667pt;}
.fs2_c00369{font-size:64.000000pt;}
.fs5_c00369{font-size:72.000000pt;}
.fs1_c00369{font-size:77.333333pt;}
.y0_c00369{bottom:0.000000pt;}
.y1f_c00369{bottom:2.760000pt;}
.y1e_c00369{bottom:6.425206pt;}
.y1d_c00369{bottom:39.360000pt;}
.y1c_c00369{bottom:58.160000pt;}
.y1b_c00369{bottom:81.360000pt;}
.y1a_c00369{bottom:103.493333pt;}
.y19_c00369{bottom:126.026667pt;}
.y18_c00369{bottom:148.160000pt;}
.y17_c00369{bottom:172.826667pt;}
.y16_c00369{bottom:192.960000pt;}
.y15_c00369{bottom:214.826667pt;}
.y14_c00369{bottom:236.960000pt;}
.y13_c00369{bottom:259.493333pt;}
.y12_c00369{bottom:280.826667pt;}
.y11_c00369{bottom:303.093333pt;}
.y10_c00369{bottom:325.226667pt;}
.yf_c00369{bottom:346.293333pt;}
.ye_c00369{bottom:369.893333pt;}
.yd_c00369{bottom:390.560000pt;}
.yc_c00369{bottom:411.093333pt;}
.yb_c00369{bottom:432.960000pt;}
.ya_c00369{bottom:454.826667pt;}
.y9_c00369{bottom:476.960000pt;}
.y8_c00369{bottom:498.693333pt;}
.y7_c00369{bottom:520.560000pt;}
.y6_c00369{bottom:542.693333pt;}
.y5_c00369{bottom:564.693333pt;}
.y4_c00369{bottom:586.560000pt;}
.y3_c00369{bottom:608.426667pt;}
.y2_c00369{bottom:630.560000pt;}
.y1_c00369{bottom:653.360000pt;}
.h5_c00369{height:11.733399pt;}
.h6_c00369{height:38.937500pt;}
.h4_c00369{height:70.664062pt;}
.h3_c00369{height:81.031250pt;}
.h2_c00369{height:97.912760pt;}
.h0_c00369{height:695.066667pt;}
.h1_c00369{height:695.333333pt;}
.w2_c00369{width:93.222667pt;}
.w0_c00369{width:461.066667pt;}
.w1_c00369{width:461.333333pt;}
.x0_c00369{left:0.000000pt;}
.x2_c00369{left:96.266667pt;}
.x3_c00369{left:97.733333pt;}
.x4_c00369{left:98.933333pt;}
.x5_c00369{left:100.133333pt;}
.x6_c00369{left:101.600000pt;}
.x7_c00369{left:102.533333pt;}
.x9_c00369{left:187.701538pt;}
.x1_c00369{left:211.866667pt;}
.x8_c00369{left:404.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_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_3af3b8691122490e5126fc95.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.480469;font-style:normal;font-weight:normal;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_e7629d8dfd6b608ba2284353.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:1.568848;font-style:normal;font-weight:normal;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_7f33b194da067fb271427076.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00370;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00370{font-family:ff4_c00370;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00370{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00370{vertical-align:0.000000px;}
.ls0_c00370{letter-spacing:0.000000px;}
.ls1_c00370{letter-spacing:3.000000px;}
.ls2_c00370{letter-spacing:6.000000px;}
.sc__c00370{text-shadow:none;}
.sc0_c00370{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00370{-webkit-text-stroke:0px transparent;}
.sc0_c00370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00370{word-spacing:-17.352000px;}
.ws1_c00370{word-spacing:0.000000px;}
._18_c00370{margin-left:-30.024000px;}
._12_c00370{margin-left:-16.668000px;}
._16_c00370{margin-left:-11.772000px;}
._17_c00370{margin-left:-10.029000px;}
._e_c00370{margin-left:-7.833000px;}
._10_c00370{margin-left:-6.792000px;}
._2_c00370{margin-left:-5.655000px;}
._f_c00370{margin-left:-4.128000px;}
._4_c00370{margin-left:-3.045000px;}
._3_c00370{margin-left:-1.392000px;}
._8_c00370{width:1.224000px;}
._9_c00370{width:2.709000px;}
._a_c00370{width:4.230000px;}
._1_c00370{width:6.003000px;}
._d_c00370{width:7.317000px;}
._11_c00370{width:8.337000px;}
._0_c00370{width:9.570000px;}
._6_c00370{width:10.962000px;}
._7_c00370{width:12.528000px;}
._13_c00370{width:14.259000px;}
._c_c00370{width:16.083000px;}
._15_c00370{width:17.280000px;}
._b_c00370{width:30.252000px;}
._14_c00370{width:32.232000px;}
._5_c00370{width:298.671000px;}
._19_c00370{width:318.024000px;}
.fc2_c00370{color:transparent;}
.fc1_c00370{color:rgb(128,128,128);}
.fc0_c00370{color:rgb(0,0,0);}
.fs5_c00370{font-size:48.000000px;}
.fs2_c00370{font-size:57.000000px;}
.fs3_c00370{font-size:66.000000px;}
.fs4_c00370{font-size:69.000000px;}
.fs1_c00370{font-size:72.000000px;}
.fs0_c00370{font-size:87.000000px;}
.y0_c00370{bottom:0.000000px;}
.y1f_c00370{bottom:3.105000px;}
.y1e_c00370{bottom:7.228369px;}
.y1d_c00370{bottom:49.320000px;}
.y1c_c00370{bottom:75.870000px;}
.y1b_c00370{bottom:101.520000px;}
.y1a_c00370{bottom:127.470000px;}
.y19_c00370{bottom:151.470000px;}
.y18_c00370{bottom:177.870000px;}
.y17_c00370{bottom:201.120000px;}
.y16_c00370{bottom:224.670000px;}
.y15_c00370{bottom:252.120000px;}
.y14_c00370{bottom:275.970000px;}
.y13_c00370{bottom:301.320000px;}
.y12_c00370{bottom:324.570000px;}
.y11_c00370{bottom:348.270000px;}
.y10_c00370{bottom:372.570000px;}
.yf_c00370{bottom:397.170000px;}
.ye_c00370{bottom:422.220000px;}
.yd_c00370{bottom:447.420000px;}
.yc_c00370{bottom:471.420000px;}
.yb_c00370{bottom:496.470000px;}
.ya_c00370{bottom:521.070000px;}
.y9_c00370{bottom:545.670000px;}
.y8_c00370{bottom:571.020000px;}
.y7_c00370{bottom:594.570000px;}
.y6_c00370{bottom:619.020000px;}
.y5_c00370{bottom:643.920000px;}
.y4_c00370{bottom:669.270000px;}
.y3_c00370{bottom:694.620000px;}
.y2_c00370{bottom:717.870000px;}
.y1_c00370{bottom:743.520000px;}
.h5_c00370{height:13.200073px;}
.h6_c00370{height:43.804688px;}
.h4_c00370{height:87.361816px;}
.h3_c00370{height:91.160156px;}
.h2_c00370{height:101.825684px;}
.h0_c00370{height:781.350000px;}
.h1_c00370{height:781.500000px;}
.w2_c00370{width:104.875500px;}
.w1_c00370{width:533.250000px;}
.w0_c00370{width:533.550000px;}
.x0_c00370{left:0.000000px;}
.x2_c00370{left:34.200000px;}
.x3_c00370{left:37.350000px;}
.x4_c00370{left:40.200000px;}
.x5_c00370{left:42.150000px;}
.x6_c00370{left:43.650000px;}
.x1_c00370{left:156.900000px;}
.x8_c00370{left:218.589249px;}
.x7_c00370{left:279.750000px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls0_c00370{letter-spacing:0.000000pt;}
.ls1_c00370{letter-spacing:2.666667pt;}
.ls2_c00370{letter-spacing:5.333333pt;}
.ws0_c00370{word-spacing:-15.424000pt;}
.ws1_c00370{word-spacing:0.000000pt;}
._18_c00370{margin-left:-26.688000pt;}
._12_c00370{margin-left:-14.816000pt;}
._16_c00370{margin-left:-10.464000pt;}
._17_c00370{margin-left:-8.914667pt;}
._e_c00370{margin-left:-6.962667pt;}
._10_c00370{margin-left:-6.037333pt;}
._2_c00370{margin-left:-5.026667pt;}
._f_c00370{margin-left:-3.669333pt;}
._4_c00370{margin-left:-2.706667pt;}
._3_c00370{margin-left:-1.237333pt;}
._8_c00370{width:1.088000pt;}
._9_c00370{width:2.408000pt;}
._a_c00370{width:3.760000pt;}
._1_c00370{width:5.336000pt;}
._d_c00370{width:6.504000pt;}
._11_c00370{width:7.410667pt;}
._0_c00370{width:8.506667pt;}
._6_c00370{width:9.744000pt;}
._7_c00370{width:11.136000pt;}
._13_c00370{width:12.674667pt;}
._c_c00370{width:14.296000pt;}
._15_c00370{width:15.360000pt;}
._b_c00370{width:26.890667pt;}
._14_c00370{width:28.650667pt;}
._5_c00370{width:265.485333pt;}
._19_c00370{width:282.688000pt;}
.fs5_c00370{font-size:42.666667pt;}
.fs2_c00370{font-size:50.666667pt;}
.fs3_c00370{font-size:58.666667pt;}
.fs4_c00370{font-size:61.333333pt;}
.fs1_c00370{font-size:64.000000pt;}
.fs0_c00370{font-size:77.333333pt;}
.y0_c00370{bottom:0.000000pt;}
.y1f_c00370{bottom:2.760000pt;}
.y1e_c00370{bottom:6.425217pt;}
.y1d_c00370{bottom:43.840000pt;}
.y1c_c00370{bottom:67.440000pt;}
.y1b_c00370{bottom:90.240000pt;}
.y1a_c00370{bottom:113.306667pt;}
.y19_c00370{bottom:134.640000pt;}
.y18_c00370{bottom:158.106667pt;}
.y17_c00370{bottom:178.773333pt;}
.y16_c00370{bottom:199.706667pt;}
.y15_c00370{bottom:224.106667pt;}
.y14_c00370{bottom:245.306667pt;}
.y13_c00370{bottom:267.840000pt;}
.y12_c00370{bottom:288.506667pt;}
.y11_c00370{bottom:309.573333pt;}
.y10_c00370{bottom:331.173333pt;}
.yf_c00370{bottom:353.040000pt;}
.ye_c00370{bottom:375.306667pt;}
.yd_c00370{bottom:397.706667pt;}
.yc_c00370{bottom:419.040000pt;}
.yb_c00370{bottom:441.306667pt;}
.ya_c00370{bottom:463.173333pt;}
.y9_c00370{bottom:485.040000pt;}
.y8_c00370{bottom:507.573333pt;}
.y7_c00370{bottom:528.506667pt;}
.y6_c00370{bottom:550.240000pt;}
.y5_c00370{bottom:572.373333pt;}
.y4_c00370{bottom:594.906667pt;}
.y3_c00370{bottom:617.440000pt;}
.y2_c00370{bottom:638.106667pt;}
.y1_c00370{bottom:660.906667pt;}
.h5_c00370{height:11.733399pt;}
.h6_c00370{height:38.937500pt;}
.h4_c00370{height:77.654948pt;}
.h3_c00370{height:81.031250pt;}
.h2_c00370{height:90.511719pt;}
.h0_c00370{height:694.533333pt;}
.h1_c00370{height:694.666667pt;}
.w2_c00370{width:93.222667pt;}
.w1_c00370{width:474.000000pt;}
.w0_c00370{width:474.266667pt;}
.x0_c00370{left:0.000000pt;}
.x2_c00370{left:30.400000pt;}
.x3_c00370{left:33.200000pt;}
.x4_c00370{left:35.733333pt;}
.x5_c00370{left:37.466667pt;}
.x6_c00370{left:38.800000pt;}
.x1_c00370{left:139.466667pt;}
.x8_c00370{left:194.301554pt;}
.x7_c00370{left:248.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_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_9a5280c04d7b747d8b13ebb4.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.480469;font-style:normal;font-weight:normal;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_6abbfa9ed3fa4a974d6ebbdb.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.568848;font-style:normal;font-weight:normal;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_532d15bc26490aeb57cc80c4.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00371{font-family:ff4_c00371;line-height:1.219238;font-style: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:-6.000000px;}
.ls0_c00371{letter-spacing:0.000000px;}
.ls1_c00371{letter-spacing:3.000000px;}
.ls3_c00371{letter-spacing:6.000000px;}
.sc__c00371{text-shadow:none;}
.sc0_c00371{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00371{-webkit-text-stroke:0px transparent;}
.sc0_c00371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00371{word-spacing:-33.192000px;}
.ws2_c00371{word-spacing:-24.051000px;}
.ws1_c00371{word-spacing:-20.352000px;}
.ws3_c00371{word-spacing:0.000000px;}
._10_c00371{margin-left:-24.624000px;}
._13_c00371{margin-left:-13.104000px;}
._12_c00371{margin-left:-9.288000px;}
._7_c00371{margin-left:-8.280000px;}
._d_c00371{margin-left:-6.984000px;}
._5_c00371{margin-left:-5.976000px;}
._4_c00371{margin-left:-4.968000px;}
._6_c00371{margin-left:-3.600000px;}
._3_c00371{margin-left:-1.872000px;}
._8_c00371{width:1.080000px;}
._1_c00371{width:2.448000px;}
._b_c00371{width:3.456000px;}
._2_c00371{width:4.536000px;}
._0_c00371{width:6.048000px;}
._a_c00371{width:7.560000px;}
._15_c00371{width:8.928000px;}
._f_c00371{width:10.008000px;}
._11_c00371{width:11.952000px;}
._9_c00371{width:13.032000px;}
._c_c00371{width:15.768000px;}
._14_c00371{width:18.432000px;}
._e_c00371{width:25.344000px;}
._16_c00371{width:791.496000px;}
.fc2_c00371{color:transparent;}
.fc1_c00371{color:rgb(128,128,128);}
.fc0_c00371{color:rgb(0,0,0);}
.fs3_c00371{font-size:48.000000px;}
.fs1_c00371{font-size:63.000000px;}
.fs2_c00371{font-size:69.000000px;}
.fs0_c00371{font-size:72.000000px;}
.y0_c00371{bottom:0.000000px;}
.y1f_c00371{bottom:3.105000px;}
.y1e_c00371{bottom:7.228357px;}
.y1d_c00371{bottom:52.980000px;}
.y1c_c00371{bottom:76.980000px;}
.y1b_c00371{bottom:103.230000px;}
.y1a_c00371{bottom:127.980000px;}
.y19_c00371{bottom:153.330000px;}
.y18_c00371{bottom:177.930000px;}
.y17_c00371{bottom:203.130000px;}
.y16_c00371{bottom:227.880000px;}
.y15_c00371{bottom:252.480000px;}
.y14_c00371{bottom:277.530000px;}
.y13_c00371{bottom:302.130000px;}
.y12_c00371{bottom:327.330000px;}
.y11_c00371{bottom:351.030000px;}
.y10_c00371{bottom:375.930000px;}
.yf_c00371{bottom:399.930000px;}
.ye_c00371{bottom:424.530000px;}
.yd_c00371{bottom:449.280000px;}
.yc_c00371{bottom:473.280000px;}
.yb_c00371{bottom:497.880000px;}
.ya_c00371{bottom:521.880000px;}
.y9_c00371{bottom:547.380000px;}
.y8_c00371{bottom:571.830000px;}
.y7_c00371{bottom:596.130000px;}
.y6_c00371{bottom:621.030000px;}
.y5_c00371{bottom:646.080000px;}
.y4_c00371{bottom:670.680000px;}
.y3_c00371{bottom:695.580000px;}
.y2_c00371{bottom:719.280000px;}
.y1_c00371{bottom:745.530000px;}
.h3_c00371{height:13.200074px;}
.h4_c00371{height:43.804688px;}
.h2_c00371{height:91.160156px;}
.h0_c00371{height:781.950000px;}
.h1_c00371{height:782.250000px;}
.w2_c00371{width:104.875500px;}
.w0_c00371{width:498.450000px;}
.w1_c00371{width:498.750000px;}
.x0_c00371{left:0.000000px;}
.xc_c00371{left:74.250000px;}
.xb_c00371{left:76.050000px;}
.xa_c00371{left:77.700000px;}
.x9_c00371{left:78.750000px;}
.x8_c00371{left:80.700000px;}
.x7_c00371{left:82.350000px;}
.x6_c00371{left:83.400000px;}
.x5_c00371{left:85.050000px;}
.x4_c00371{left:86.100000px;}
.x3_c00371{left:87.750000px;}
.x2_c00371{left:89.550000px;}
.xd_c00371{left:183.900000px;}
.xe_c00371{left:201.039230px;}
.x1_c00371{left:219.750000px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls2_c00371{letter-spacing:-5.333333pt;}
.ls0_c00371{letter-spacing:0.000000pt;}
.ls1_c00371{letter-spacing:2.666667pt;}
.ls3_c00371{letter-spacing:5.333333pt;}
.ws0_c00371{word-spacing:-29.504000pt;}
.ws2_c00371{word-spacing:-21.378667pt;}
.ws1_c00371{word-spacing:-18.090667pt;}
.ws3_c00371{word-spacing:0.000000pt;}
._10_c00371{margin-left:-21.888000pt;}
._13_c00371{margin-left:-11.648000pt;}
._12_c00371{margin-left:-8.256000pt;}
._7_c00371{margin-left:-7.360000pt;}
._d_c00371{margin-left:-6.208000pt;}
._5_c00371{margin-left:-5.312000pt;}
._4_c00371{margin-left:-4.416000pt;}
._6_c00371{margin-left:-3.200000pt;}
._3_c00371{margin-left:-1.664000pt;}
._8_c00371{width:0.960000pt;}
._1_c00371{width:2.176000pt;}
._b_c00371{width:3.072000pt;}
._2_c00371{width:4.032000pt;}
._0_c00371{width:5.376000pt;}
._a_c00371{width:6.720000pt;}
._15_c00371{width:7.936000pt;}
._f_c00371{width:8.896000pt;}
._11_c00371{width:10.624000pt;}
._9_c00371{width:11.584000pt;}
._c_c00371{width:14.016000pt;}
._14_c00371{width:16.384000pt;}
._e_c00371{width:22.528000pt;}
._16_c00371{width:703.552000pt;}
.fs3_c00371{font-size:42.666667pt;}
.fs1_c00371{font-size:56.000000pt;}
.fs2_c00371{font-size:61.333333pt;}
.fs0_c00371{font-size:64.000000pt;}
.y0_c00371{bottom:0.000000pt;}
.y1f_c00371{bottom:2.760000pt;}
.y1e_c00371{bottom:6.425206pt;}
.y1d_c00371{bottom:47.093333pt;}
.y1c_c00371{bottom:68.426667pt;}
.y1b_c00371{bottom:91.760000pt;}
.y1a_c00371{bottom:113.760000pt;}
.y19_c00371{bottom:136.293333pt;}
.y18_c00371{bottom:158.160000pt;}
.y17_c00371{bottom:180.560000pt;}
.y16_c00371{bottom:202.560000pt;}
.y15_c00371{bottom:224.426667pt;}
.y14_c00371{bottom:246.693333pt;}
.y13_c00371{bottom:268.560000pt;}
.y12_c00371{bottom:290.960000pt;}
.y11_c00371{bottom:312.026667pt;}
.y10_c00371{bottom:334.160000pt;}
.yf_c00371{bottom:355.493333pt;}
.ye_c00371{bottom:377.360000pt;}
.yd_c00371{bottom:399.360000pt;}
.yc_c00371{bottom:420.693333pt;}
.yb_c00371{bottom:442.560000pt;}
.ya_c00371{bottom:463.893333pt;}
.y9_c00371{bottom:486.560000pt;}
.y8_c00371{bottom:508.293333pt;}
.y7_c00371{bottom:529.893333pt;}
.y6_c00371{bottom:552.026667pt;}
.y5_c00371{bottom:574.293333pt;}
.y4_c00371{bottom:596.160000pt;}
.y3_c00371{bottom:618.293333pt;}
.y2_c00371{bottom:639.360000pt;}
.y1_c00371{bottom:662.693333pt;}
.h3_c00371{height:11.733399pt;}
.h4_c00371{height:38.937500pt;}
.h2_c00371{height:81.031250pt;}
.h0_c00371{height:695.066667pt;}
.h1_c00371{height:695.333333pt;}
.w2_c00371{width:93.222667pt;}
.w0_c00371{width:443.066667pt;}
.w1_c00371{width:443.333333pt;}
.x0_c00371{left:0.000000pt;}
.xc_c00371{left:66.000000pt;}
.xb_c00371{left:67.600000pt;}
.xa_c00371{left:69.066667pt;}
.x9_c00371{left:70.000000pt;}
.x8_c00371{left:71.733333pt;}
.x7_c00371{left:73.200000pt;}
.x6_c00371{left:74.133333pt;}
.x5_c00371{left:75.600000pt;}
.x4_c00371{left:76.533333pt;}
.x3_c00371{left:78.000000pt;}
.x2_c00371{left:79.600000pt;}
.xd_c00371{left:163.466667pt;}
.xe_c00371{left:178.701538pt;}
.x1_c00371{left:195.333333pt;}
}





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

.ir_c00372:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00372{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00372;src:url('chunks/assets/font_4da82a2f090df961e1770e88.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00372;src:url('chunks/assets/font_fb3ec3c7d283178854cb44d2.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00372;src:url('chunks/assets/font_a794b5e74f07da398a843eca.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:1.568848;font-style:normal;font-weight:normal;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_41420c96bc1e3bbbec9e147f.woff2')format("woff");}.ff4_c00372{font-family:ff4_c00372;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00372{font-family:ff5_c00372;line-height:1.219238;font-style: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.000000px;}
.ls1_c00372{letter-spacing:3.000000px;}
.ls0_c00372{letter-spacing:19.788000px;}
.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:-20.352000px;}
.ws1_c00372{word-spacing:0.000000px;}
._16_c00372{margin-left:-18.804000px;}
._14_c00372{margin-left:-15.084000px;}
._15_c00372{margin-left:-8.712000px;}
._c_c00372{margin-left:-7.488000px;}
._d_c00372{margin-left:-6.480000px;}
._13_c00372{margin-left:-5.424000px;}
._b_c00372{margin-left:-4.392000px;}
._f_c00372{margin-left:-3.384000px;}
._e_c00372{margin-left:-2.088000px;}
._11_c00372{margin-left:-1.080000px;}
._9_c00372{width:1.008000px;}
._8_c00372{width:2.232000px;}
._a_c00372{width:3.504000px;}
._3_c00372{width:4.788000px;}
._4_c00372{width:5.964000px;}
._1_c00372{width:7.980000px;}
._5_c00372{width:9.156000px;}
._12_c00372{width:11.532000px;}
._0_c00372{width:12.852000px;}
._10_c00372{width:14.400000px;}
._2_c00372{width:15.960000px;}
._7_c00372{width:32.076000px;}
._6_c00372{width:328.011000px;}
.fc2_c00372{color:transparent;}
.fc1_c00372{color:rgb(128,128,128);}
.fc0_c00372{color:rgb(0,0,0);}
.fs5_c00372{font-size:48.000000px;}
.fs4_c00372{font-size:63.000000px;}
.fs2_c00372{font-size:72.000000px;}
.fs3_c00372{font-size:75.000000px;}
.fs1_c00372{font-size:81.000000px;}
.fs0_c00372{font-size:84.000000px;}
.y0_c00372{bottom:0.000000px;}
.y1f_c00372{bottom:3.105000px;}
.y1e_c00372{bottom:7.228357px;}
.y1d_c00372{bottom:55.980000px;}
.y1c_c00372{bottom:82.680000px;}
.y1b_c00372{bottom:105.630000px;}
.y1a_c00372{bottom:133.080000px;}
.y19_c00372{bottom:159.630000px;}
.y18_c00372{bottom:184.380000px;}
.y17_c00372{bottom:209.280000px;}
.y16_c00372{bottom:234.180000px;}
.y15_c00372{bottom:255.480000px;}
.y14_c00372{bottom:283.230000px;}
.y13_c00372{bottom:308.430000px;}
.y12_c00372{bottom:330.480000px;}
.y11_c00372{bottom:354.330000px;}
.y10_c00372{bottom:379.380000px;}
.yf_c00372{bottom:403.980000px;}
.ye_c00372{bottom:429.030000px;}
.yd_c00372{bottom:453.930000px;}
.yc_c00372{bottom:478.530000px;}
.yb_c00372{bottom:502.830000px;}
.ya_c00372{bottom:527.580000px;}
.y9_c00372{bottom:551.880000px;}
.y8_c00372{bottom:576.480000px;}
.y7_c00372{bottom:601.080000px;}
.y6_c00372{bottom:626.130000px;}
.y5_c00372{bottom:650.730000px;}
.y4_c00372{bottom:675.330000px;}
.y3_c00372{bottom:699.930000px;}
.y2_c00372{bottom:724.230000px;}
.y1_c00372{bottom:748.680000px;}
.h4_c00372{height:13.200074px;}
.h5_c00372{height:43.804688px;}
.h2_c00372{height:82.400391px;}
.h3_c00372{height:91.160156px;}
.h1_c00372{height:791.250000px;}
.h0_c00372{height:791.400000px;}
.w2_c00372{width:104.875500px;}
.w0_c00372{width:465.450000px;}
.w1_c00372{width:465.750000px;}
.x0_c00372{left:0.000000px;}
.x2_c00372{left:27.750000px;}
.x3_c00372{left:31.050000px;}
.x4_c00372{left:32.400000px;}
.x5_c00372{left:34.050000px;}
.x6_c00372{left:35.400000px;}
.x7_c00372{left:36.450000px;}
.x8_c00372{left:37.800000px;}
.x9_c00372{left:38.850000px;}
.xa_c00372{left:40.200000px;}
.xb_c00372{left:41.250000px;}
.xc_c00372{left:42.600000px;}
.x1_c00372{left:145.500000px;}
.xe_c00372{left:184.539253px;}
.xd_c00372{left:389.250000px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls2_c00372{letter-spacing:0.000000pt;}
.ls1_c00372{letter-spacing:2.666667pt;}
.ls0_c00372{letter-spacing:17.589333pt;}
.ws0_c00372{word-spacing:-18.090667pt;}
.ws1_c00372{word-spacing:0.000000pt;}
._16_c00372{margin-left:-16.714667pt;}
._14_c00372{margin-left:-13.408000pt;}
._15_c00372{margin-left:-7.744000pt;}
._c_c00372{margin-left:-6.656000pt;}
._d_c00372{margin-left:-5.760000pt;}
._13_c00372{margin-left:-4.821333pt;}
._b_c00372{margin-left:-3.904000pt;}
._f_c00372{margin-left:-3.008000pt;}
._e_c00372{margin-left:-1.856000pt;}
._11_c00372{margin-left:-0.960000pt;}
._9_c00372{width:0.896000pt;}
._8_c00372{width:1.984000pt;}
._a_c00372{width:3.114667pt;}
._3_c00372{width:4.256000pt;}
._4_c00372{width:5.301333pt;}
._1_c00372{width:7.093333pt;}
._5_c00372{width:8.138667pt;}
._12_c00372{width:10.250667pt;}
._0_c00372{width:11.424000pt;}
._10_c00372{width:12.800000pt;}
._2_c00372{width:14.186667pt;}
._7_c00372{width:28.512000pt;}
._6_c00372{width:291.565333pt;}
.fs5_c00372{font-size:42.666667pt;}
.fs4_c00372{font-size:56.000000pt;}
.fs2_c00372{font-size:64.000000pt;}
.fs3_c00372{font-size:66.666667pt;}
.fs1_c00372{font-size:72.000000pt;}
.fs0_c00372{font-size:74.666667pt;}
.y0_c00372{bottom:0.000000pt;}
.y1f_c00372{bottom:2.760000pt;}
.y1e_c00372{bottom:6.425206pt;}
.y1d_c00372{bottom:49.760000pt;}
.y1c_c00372{bottom:73.493333pt;}
.y1b_c00372{bottom:93.893333pt;}
.y1a_c00372{bottom:118.293333pt;}
.y19_c00372{bottom:141.893333pt;}
.y18_c00372{bottom:163.893333pt;}
.y17_c00372{bottom:186.026667pt;}
.y16_c00372{bottom:208.160000pt;}
.y15_c00372{bottom:227.093333pt;}
.y14_c00372{bottom:251.760000pt;}
.y13_c00372{bottom:274.160000pt;}
.y12_c00372{bottom:293.760000pt;}
.y11_c00372{bottom:314.960000pt;}
.y10_c00372{bottom:337.226667pt;}
.yf_c00372{bottom:359.093333pt;}
.ye_c00372{bottom:381.360000pt;}
.yd_c00372{bottom:403.493333pt;}
.yc_c00372{bottom:425.360000pt;}
.yb_c00372{bottom:446.960000pt;}
.ya_c00372{bottom:468.960000pt;}
.y9_c00372{bottom:490.560000pt;}
.y8_c00372{bottom:512.426667pt;}
.y7_c00372{bottom:534.293333pt;}
.y6_c00372{bottom:556.560000pt;}
.y5_c00372{bottom:578.426667pt;}
.y4_c00372{bottom:600.293333pt;}
.y3_c00372{bottom:622.160000pt;}
.y2_c00372{bottom:643.760000pt;}
.y1_c00372{bottom:665.493333pt;}
.h4_c00372{height:11.733399pt;}
.h5_c00372{height:38.937500pt;}
.h2_c00372{height:73.244792pt;}
.h3_c00372{height:81.031250pt;}
.h1_c00372{height:703.333333pt;}
.h0_c00372{height:703.466667pt;}
.w2_c00372{width:93.222667pt;}
.w0_c00372{width:413.733333pt;}
.w1_c00372{width:414.000000pt;}
.x0_c00372{left:0.000000pt;}
.x2_c00372{left:24.666667pt;}
.x3_c00372{left:27.600000pt;}
.x4_c00372{left:28.800000pt;}
.x5_c00372{left:30.266667pt;}
.x6_c00372{left:31.466667pt;}
.x7_c00372{left:32.400000pt;}
.x8_c00372{left:33.600000pt;}
.x9_c00372{left:34.533333pt;}
.xa_c00372{left:35.733333pt;}
.xb_c00372{left:36.666667pt;}
.xc_c00372{left:37.866667pt;}
.x1_c00372{left:129.333333pt;}
.xe_c00372{left:164.034892pt;}
.xd_c00372{left:346.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_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_efa69df27971fc64958a2ce9.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00373;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00373;src:url('chunks/assets/font_f6ec509c89f14d58de8232fc.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;line-height:1.568848;font-style:normal;font-weight:normal;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_5be93358335d999753d04720.woff2')format("woff");}.ff4_c00373{font-family:ff4_c00373;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00373;src:url('chunks/assets/font_023bcaaf26bc5fe3f701acc9.woff2')format("woff");}.ff5_c00373{font-family:ff5_c00373;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00373{font-family:ff6_c00373;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00373{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00373{vertical-align:0.000000px;}
.ls1_c00373{letter-spacing:0.000000px;}
.ls0_c00373{letter-spacing:3.000000px;}
.ls3_c00373{letter-spacing:6.000000px;}
.ls2_c00373{letter-spacing:9.000000px;}
.sc__c00373{text-shadow:none;}
.sc0_c00373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00373{-webkit-text-stroke:0px transparent;}
.sc0_c00373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00373{word-spacing:-21.183000px;}
.ws1_c00373{word-spacing:-16.629000px;}
.ws2_c00373{word-spacing:0.000000px;}
._8_c00373{margin-left:-15.984000px;}
._0_c00373{margin-left:-13.104000px;}
._12_c00373{margin-left:-11.445000px;}
._c_c00373{margin-left:-10.152000px;}
._11_c00373{margin-left:-9.072000px;}
._10_c00373{margin-left:-8.061000px;}
._e_c00373{margin-left:-6.192000px;}
._6_c00373{margin-left:-4.752000px;}
._5_c00373{margin-left:-3.033000px;}
._7_c00373{margin-left:-1.152000px;}
._3_c00373{width:1.344000px;}
._4_c00373{width:2.496000px;}
._1_c00373{width:3.612000px;}
._2_c00373{width:5.292000px;}
._d_c00373{width:6.303000px;}
._a_c00373{width:7.800000px;}
._13_c00373{width:9.429000px;}
._17_c00373{width:10.890000px;}
._b_c00373{width:11.952000px;}
._f_c00373{width:13.350000px;}
._14_c00373{width:14.571000px;}
._16_c00373{width:15.852000px;}
._15_c00373{width:17.481000px;}
._9_c00373{width:18.576000px;}
.fc2_c00373{color:transparent;}
.fc1_c00373{color:rgb(128,128,128);}
.fc0_c00373{color:rgb(0,0,0);}
.fs3_c00373{font-size:33.000000px;}
.fs7_c00373{font-size:48.000000px;}
.fs5_c00373{font-size:63.000000px;}
.fs6_c00373{font-size:69.000000px;}
.fs1_c00373{font-size:72.000000px;}
.fs2_c00373{font-size:75.000000px;}
.fs0_c00373{font-size:84.000000px;}
.fs4_c00373{font-size:87.000000px;}
.y0_c00373{bottom:0.000000px;}
.y1f_c00373{bottom:3.105000px;}
.y1e_c00373{bottom:7.228363px;}
.y1d_c00373{bottom:57.300000px;}
.y1c_c00373{bottom:80.550000px;}
.y1b_c00373{bottom:105.300000px;}
.y1a_c00373{bottom:130.200000px;}
.y19_c00373{bottom:155.850000px;}
.y18_c00373{bottom:181.200000px;}
.y17_c00373{bottom:205.800000px;}
.y16_c00373{bottom:230.400000px;}
.y15_c00373{bottom:255.150000px;}
.y14_c00373{bottom:280.350000px;}
.y13_c00373{bottom:304.650000px;}
.y12_c00373{bottom:330.000000px;}
.y11_c00373{bottom:355.950000px;}
.y10_c00373{bottom:379.650000px;}
.yf_c00373{bottom:402.600000px;}
.ye_c00373{bottom:427.500000px;}
.yd_c00373{bottom:451.800000px;}
.yc_c00373{bottom:476.250000px;}
.yb_c00373{bottom:501.450000px;}
.ya_c00373{bottom:526.200000px;}
.y9_c00373{bottom:550.050000px;}
.y8_c00373{bottom:575.100000px;}
.y7_c00373{bottom:599.400000px;}
.y6_c00373{bottom:624.300000px;}
.y5_c00373{bottom:648.300000px;}
.y4_c00373{bottom:673.650000px;}
.y3_c00373{bottom:697.950000px;}
.y2_c00373{bottom:722.850000px;}
.y1_c00373{bottom:747.600000px;}
.h5_c00373{height:13.200074px;}
.h6_c00373{height:43.804688px;}
.h1_c00373{height:82.441406px;}
.h4_c00373{height:87.361816px;}
.h2_c00373{height:91.160156px;}
.h3_c00373{height:92.829000px;}
.h0_c00373{height:783.000000px;}
.w2_c00373{width:104.875500px;}
.w0_c00373{width:509.775000px;}
.w1_c00373{width:510.000000px;}
.x0_c00373{left:0.000000px;}
.xa_c00373{left:90.750000px;}
.x9_c00373{left:91.800000px;}
.x8_c00373{left:94.500000px;}
.x7_c00373{left:96.150000px;}
.x6_c00373{left:98.250000px;}
.x5_c00373{left:99.900000px;}
.x4_c00373{left:100.950000px;}
.x3_c00373{left:102.600000px;}
.x2_c00373{left:103.950000px;}
.xc_c00373{left:206.701767px;}
.x1_c00373{left:241.650000px;}
.xb_c00373{left:407.400000px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls1_c00373{letter-spacing:0.000000pt;}
.ls0_c00373{letter-spacing:2.666667pt;}
.ls3_c00373{letter-spacing:5.333333pt;}
.ls2_c00373{letter-spacing:8.000000pt;}
.ws0_c00373{word-spacing:-18.829333pt;}
.ws1_c00373{word-spacing:-14.781333pt;}
.ws2_c00373{word-spacing:0.000000pt;}
._8_c00373{margin-left:-14.208000pt;}
._0_c00373{margin-left:-11.648000pt;}
._12_c00373{margin-left:-10.173333pt;}
._c_c00373{margin-left:-9.024000pt;}
._11_c00373{margin-left:-8.064000pt;}
._10_c00373{margin-left:-7.165333pt;}
._e_c00373{margin-left:-5.504000pt;}
._6_c00373{margin-left:-4.224000pt;}
._5_c00373{margin-left:-2.696000pt;}
._7_c00373{margin-left:-1.024000pt;}
._3_c00373{width:1.194667pt;}
._4_c00373{width:2.218667pt;}
._1_c00373{width:3.210667pt;}
._2_c00373{width:4.704000pt;}
._d_c00373{width:5.602667pt;}
._a_c00373{width:6.933333pt;}
._13_c00373{width:8.381333pt;}
._17_c00373{width:9.680000pt;}
._b_c00373{width:10.624000pt;}
._f_c00373{width:11.866667pt;}
._14_c00373{width:12.952000pt;}
._16_c00373{width:14.090667pt;}
._15_c00373{width:15.538667pt;}
._9_c00373{width:16.512000pt;}
.fs3_c00373{font-size:29.333333pt;}
.fs7_c00373{font-size:42.666667pt;}
.fs5_c00373{font-size:56.000000pt;}
.fs6_c00373{font-size:61.333333pt;}
.fs1_c00373{font-size:64.000000pt;}
.fs2_c00373{font-size:66.666667pt;}
.fs0_c00373{font-size:74.666667pt;}
.fs4_c00373{font-size:77.333333pt;}
.y0_c00373{bottom:0.000000pt;}
.y1f_c00373{bottom:2.760000pt;}
.y1e_c00373{bottom:6.425212pt;}
.y1d_c00373{bottom:50.933333pt;}
.y1c_c00373{bottom:71.600000pt;}
.y1b_c00373{bottom:93.600000pt;}
.y1a_c00373{bottom:115.733333pt;}
.y19_c00373{bottom:138.533333pt;}
.y18_c00373{bottom:161.066667pt;}
.y17_c00373{bottom:182.933333pt;}
.y16_c00373{bottom:204.800000pt;}
.y15_c00373{bottom:226.800000pt;}
.y14_c00373{bottom:249.200000pt;}
.y13_c00373{bottom:270.800000pt;}
.y12_c00373{bottom:293.333333pt;}
.y11_c00373{bottom:316.400000pt;}
.y10_c00373{bottom:337.466667pt;}
.yf_c00373{bottom:357.866667pt;}
.ye_c00373{bottom:380.000000pt;}
.yd_c00373{bottom:401.600000pt;}
.yc_c00373{bottom:423.333333pt;}
.yb_c00373{bottom:445.733333pt;}
.ya_c00373{bottom:467.733333pt;}
.y9_c00373{bottom:488.933333pt;}
.y8_c00373{bottom:511.200000pt;}
.y7_c00373{bottom:532.800000pt;}
.y6_c00373{bottom:554.933333pt;}
.y5_c00373{bottom:576.266667pt;}
.y4_c00373{bottom:598.800000pt;}
.y3_c00373{bottom:620.400000pt;}
.y2_c00373{bottom:642.533333pt;}
.y1_c00373{bottom:664.533333pt;}
.h5_c00373{height:11.733399pt;}
.h6_c00373{height:38.937500pt;}
.h1_c00373{height:73.281250pt;}
.h4_c00373{height:77.654948pt;}
.h2_c00373{height:81.031250pt;}
.h3_c00373{height:82.514667pt;}
.h0_c00373{height:696.000000pt;}
.w2_c00373{width:93.222667pt;}
.w0_c00373{width:453.133333pt;}
.w1_c00373{width:453.333333pt;}
.x0_c00373{left:0.000000pt;}
.xa_c00373{left:80.666667pt;}
.x9_c00373{left:81.600000pt;}
.x8_c00373{left:84.000000pt;}
.x7_c00373{left:85.466667pt;}
.x6_c00373{left:87.333333pt;}
.x5_c00373{left:88.800000pt;}
.x4_c00373{left:89.733333pt;}
.x3_c00373{left:91.200000pt;}
.x2_c00373{left:92.400000pt;}
.xc_c00373{left:183.734904pt;}
.x1_c00373{left:214.800000pt;}
.xb_c00373{left:362.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e882e86e1066e832859d2903.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.480469;font-style:normal;font-weight:normal;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_07f621556a871b0dbba6b04c.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:1.568848;font-style:normal;font-weight:normal;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_034141241ac9634144169723.woff2')format("woff");}.ff3_c00374{font-family:ff3_c00374;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00374{font-family:ff4_c00374;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00374{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00374{vertical-align:0.000000px;}
.ls4_c00374{letter-spacing:-6.000000px;}
.ls2_c00374{letter-spacing:0.000000px;}
.ls0_c00374{letter-spacing:1.788000px;}
.ls3_c00374{letter-spacing:3.000000px;}
.ls1_c00374{letter-spacing:10.188000px;}
.sc__c00374{text-shadow:none;}
.sc0_c00374{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00374{-webkit-text-stroke:0px transparent;}
.sc0_c00374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00374{word-spacing:-24.051000px;}
.ws2_c00374{word-spacing:-20.352000px;}
.ws1_c00374{word-spacing:-17.352000px;}
.ws3_c00374{word-spacing:0.000000px;}
._25_c00374{margin-left:-31.524000px;}
._29_c00374{margin-left:-29.988000px;}
._23_c00374{margin-left:-25.920000px;}
._16_c00374{margin-left:-23.472000px;}
._1e_c00374{margin-left:-21.960000px;}
._21_c00374{margin-left:-20.448000px;}
._1a_c00374{margin-left:-19.368000px;}
._1b_c00374{margin-left:-18.096000px;}
._12_c00374{margin-left:-15.120000px;}
._18_c00374{margin-left:-13.740000px;}
._13_c00374{margin-left:-12.528000px;}
._19_c00374{margin-left:-10.008000px;}
._11_c00374{margin-left:-8.496000px;}
._e_c00374{margin-left:-7.056000px;}
._c_c00374{margin-left:-5.688000px;}
._b_c00374{margin-left:-4.536000px;}
._14_c00374{margin-left:-3.396000px;}
._17_c00374{margin-left:-2.160000px;}
._a_c00374{margin-left:-1.152000px;}
._9_c00374{width:1.224000px;}
._10_c00374{width:2.304000px;}
._d_c00374{width:3.672000px;}
._22_c00374{width:4.704000px;}
._1_c00374{width:5.832000px;}
._4_c00374{width:7.704000px;}
._0_c00374{width:9.360000px;}
._5_c00374{width:11.232000px;}
._2_c00374{width:12.744000px;}
._3_c00374{width:13.752000px;}
._24_c00374{width:15.792000px;}
._7_c00374{width:19.944000px;}
._27_c00374{width:25.584000px;}
._20_c00374{width:31.116000px;}
._1c_c00374{width:38.160000px;}
._8_c00374{width:39.816000px;}
._28_c00374{width:104.640000px;}
._15_c00374{width:166.752000px;}
._1f_c00374{width:168.624000px;}
._f_c00374{width:176.112000px;}
._26_c00374{width:189.000000px;}
._6_c00374{width:369.576000px;}
._1d_c00374{width:499.176000px;}
.fc2_c00374{color:transparent;}
.fc1_c00374{color:rgb(128,128,128);}
.fc0_c00374{color:rgb(0,0,0);}
.fs2_c00374{font-size:48.000000px;}
.fs1_c00374{font-size:63.000000px;}
.fs0_c00374{font-size:72.000000px;}
.y0_c00374{bottom:0.000000px;}
.y1f_c00374{bottom:3.105000px;}
.y1e_c00374{bottom:7.228363px;}
.y1d_c00374{bottom:35.850000px;}
.y1c_c00374{bottom:64.200000px;}
.y1b_c00374{bottom:89.850000px;}
.y1a_c00374{bottom:113.100000px;}
.y19_c00374{bottom:139.050000px;}
.y18_c00374{bottom:163.800000px;}
.y17_c00374{bottom:190.050000px;}
.y16_c00374{bottom:214.650000px;}
.y15_c00374{bottom:239.400000px;}
.y14_c00374{bottom:264.600000px;}
.y13_c00374{bottom:287.550000px;}
.y12_c00374{bottom:312.900000px;}
.y11_c00374{bottom:336.600000px;}
.y10_c00374{bottom:360.900000px;}
.yf_c00374{bottom:385.800000px;}
.ye_c00374{bottom:411.150000px;}
.yd_c00374{bottom:435.150000px;}
.yc_c00374{bottom:459.750000px;}
.yb_c00374{bottom:484.350000px;}
.ya_c00374{bottom:510.300000px;}
.y9_c00374{bottom:534.300000px;}
.y8_c00374{bottom:559.500000px;}
.y7_c00374{bottom:583.500000px;}
.y6_c00374{bottom:608.250000px;}
.y5_c00374{bottom:632.100000px;}
.y4_c00374{bottom:657.450000px;}
.y3_c00374{bottom:683.100000px;}
.y2_c00374{bottom:707.100000px;}
.y1_c00374{bottom:732.150000px;}
.h4_c00374{height:13.200074px;}
.h5_c00374{height:43.804688px;}
.h2_c00374{height:84.269531px;}
.h3_c00374{height:91.160156px;}
.h1_c00374{height:774.750000px;}
.h0_c00374{height:774.900000px;}
.w2_c00374{width:104.875500px;}
.w0_c00374{width:515.700000px;}
.w1_c00374{width:516.000000px;}
.x0_c00374{left:0.000000px;}
.x2_c00374{left:34.650000px;}
.x3_c00374{left:36.450000px;}
.x4_c00374{left:38.850000px;}
.x7_c00374{left:41.100000px;}
.x5_c00374{left:42.150000px;}
.x6_c00374{left:43.200000px;}
.x8_c00374{left:44.250000px;}
.x1_c00374{left:141.750000px;}
.xa_c00374{left:209.664230px;}
.x9_c00374{left:391.050000px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls4_c00374{letter-spacing:-5.333333pt;}
.ls2_c00374{letter-spacing:0.000000pt;}
.ls0_c00374{letter-spacing:1.589333pt;}
.ls3_c00374{letter-spacing:2.666667pt;}
.ls1_c00374{letter-spacing:9.056000pt;}
.ws0_c00374{word-spacing:-21.378667pt;}
.ws2_c00374{word-spacing:-18.090667pt;}
.ws1_c00374{word-spacing:-15.424000pt;}
.ws3_c00374{word-spacing:0.000000pt;}
._25_c00374{margin-left:-28.021333pt;}
._29_c00374{margin-left:-26.656000pt;}
._23_c00374{margin-left:-23.040000pt;}
._16_c00374{margin-left:-20.864000pt;}
._1e_c00374{margin-left:-19.520000pt;}
._21_c00374{margin-left:-18.176000pt;}
._1a_c00374{margin-left:-17.216000pt;}
._1b_c00374{margin-left:-16.085333pt;}
._12_c00374{margin-left:-13.440000pt;}
._18_c00374{margin-left:-12.213333pt;}
._13_c00374{margin-left:-11.136000pt;}
._19_c00374{margin-left:-8.896000pt;}
._11_c00374{margin-left:-7.552000pt;}
._e_c00374{margin-left:-6.272000pt;}
._c_c00374{margin-left:-5.056000pt;}
._b_c00374{margin-left:-4.032000pt;}
._14_c00374{margin-left:-3.018667pt;}
._17_c00374{margin-left:-1.920000pt;}
._a_c00374{margin-left:-1.024000pt;}
._9_c00374{width:1.088000pt;}
._10_c00374{width:2.048000pt;}
._d_c00374{width:3.264000pt;}
._22_c00374{width:4.181333pt;}
._1_c00374{width:5.184000pt;}
._4_c00374{width:6.848000pt;}
._0_c00374{width:8.320000pt;}
._5_c00374{width:9.984000pt;}
._2_c00374{width:11.328000pt;}
._3_c00374{width:12.224000pt;}
._24_c00374{width:14.037333pt;}
._7_c00374{width:17.728000pt;}
._27_c00374{width:22.741333pt;}
._20_c00374{width:27.658667pt;}
._1c_c00374{width:33.920000pt;}
._8_c00374{width:35.392000pt;}
._28_c00374{width:93.013333pt;}
._15_c00374{width:148.224000pt;}
._1f_c00374{width:149.888000pt;}
._f_c00374{width:156.544000pt;}
._26_c00374{width:168.000000pt;}
._6_c00374{width:328.512000pt;}
._1d_c00374{width:443.712000pt;}
.fs2_c00374{font-size:42.666667pt;}
.fs1_c00374{font-size:56.000000pt;}
.fs0_c00374{font-size:64.000000pt;}
.y0_c00374{bottom:0.000000pt;}
.y1f_c00374{bottom:2.760000pt;}
.y1e_c00374{bottom:6.425212pt;}
.y1d_c00374{bottom:31.866667pt;}
.y1c_c00374{bottom:57.066667pt;}
.y1b_c00374{bottom:79.866667pt;}
.y1a_c00374{bottom:100.533333pt;}
.y19_c00374{bottom:123.600000pt;}
.y18_c00374{bottom:145.600000pt;}
.y17_c00374{bottom:168.933333pt;}
.y16_c00374{bottom:190.800000pt;}
.y15_c00374{bottom:212.800000pt;}
.y14_c00374{bottom:235.200000pt;}
.y13_c00374{bottom:255.600000pt;}
.y12_c00374{bottom:278.133333pt;}
.y11_c00374{bottom:299.200000pt;}
.y10_c00374{bottom:320.800000pt;}
.yf_c00374{bottom:342.933333pt;}
.ye_c00374{bottom:365.466667pt;}
.yd_c00374{bottom:386.800000pt;}
.yc_c00374{bottom:408.666667pt;}
.yb_c00374{bottom:430.533333pt;}
.ya_c00374{bottom:453.600000pt;}
.y9_c00374{bottom:474.933333pt;}
.y8_c00374{bottom:497.333333pt;}
.y7_c00374{bottom:518.666667pt;}
.y6_c00374{bottom:540.666667pt;}
.y5_c00374{bottom:561.866667pt;}
.y4_c00374{bottom:584.400000pt;}
.y3_c00374{bottom:607.200000pt;}
.y2_c00374{bottom:628.533333pt;}
.y1_c00374{bottom:650.800000pt;}
.h4_c00374{height:11.733399pt;}
.h5_c00374{height:38.937500pt;}
.h2_c00374{height:74.906250pt;}
.h3_c00374{height:81.031250pt;}
.h1_c00374{height:688.666667pt;}
.h0_c00374{height:688.800000pt;}
.w2_c00374{width:93.222667pt;}
.w0_c00374{width:458.400000pt;}
.w1_c00374{width:458.666667pt;}
.x0_c00374{left:0.000000pt;}
.x2_c00374{left:30.800000pt;}
.x3_c00374{left:32.400000pt;}
.x4_c00374{left:34.533333pt;}
.x7_c00374{left:36.533333pt;}
.x5_c00374{left:37.466667pt;}
.x6_c00374{left:38.400000pt;}
.x8_c00374{left:39.333333pt;}
.x1_c00374{left:126.000000pt;}
.xa_c00374{left:186.368205pt;}
.x9_c00374{left:347.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3fcb36d389b7ebb177e7ff7a.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00375;src:url('chunks/assets/font_0d85d4ed72bf96d4782809ab.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:1.568848;font-style:normal;font-weight:normal;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_629fbd463ff24476a649b4ce.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:1.480469;font-style:normal;font-weight:normal;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_e93ec334abddd1330b64ae92.woff2')format("woff");}.ff4_c00375{font-family:ff4_c00375;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00375{font-family:ff5_c00375;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00375{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00375{vertical-align:0.000000px;}
.ls3_c00375{letter-spacing:-6.000000px;}
.ls2_c00375{letter-spacing:0.000000px;}
.ls0_c00375{letter-spacing:3.000000px;}
.ls1_c00375{letter-spacing:13.188000px;}
.sc__c00375{text-shadow:none;}
.sc0_c00375{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00375{-webkit-text-stroke:0px transparent;}
.sc0_c00375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00375{word-spacing:-42.000000px;}
.ws1_c00375{word-spacing:-33.192000px;}
.ws2_c00375{word-spacing:-20.352000px;}
.ws3_c00375{word-spacing:-12.963000px;}
.ws4_c00375{word-spacing:0.000000px;}
._15_c00375{margin-left:-18.060000px;}
._5_c00375{margin-left:-13.968000px;}
._4_c00375{margin-left:-11.808000px;}
._14_c00375{margin-left:-9.360000px;}
._12_c00375{margin-left:-8.352000px;}
._e_c00375{margin-left:-6.552000px;}
._6_c00375{margin-left:-5.544000px;}
._f_c00375{margin-left:-4.392000px;}
._a_c00375{margin-left:-3.384000px;}
._d_c00375{margin-left:-2.232000px;}
._7_c00375{margin-left:-1.188000px;}
._8_c00375{width:1.476000px;}
._1_c00375{width:2.772000px;}
._3_c00375{width:4.032000px;}
._2_c00375{width:5.124000px;}
._19_c00375{width:6.132000px;}
._0_c00375{width:7.140000px;}
._17_c00375{width:8.172000px;}
._b_c00375{width:10.224000px;}
._c_c00375{width:11.304000px;}
._16_c00375{width:12.732000px;}
._11_c00375{width:14.244000px;}
._9_c00375{width:15.264000px;}
._10_c00375{width:16.932000px;}
._1a_c00375{width:26.832000px;}
._13_c00375{width:31.608000px;}
._18_c00375{width:44.460000px;}
.fc2_c00375{color:transparent;}
.fc1_c00375{color:rgb(128,128,128);}
.fc0_c00375{color:rgb(0,0,0);}
.fs3_c00375{font-size:48.000000px;}
.fs2_c00375{font-size:63.000000px;}
.fs1_c00375{font-size:72.000000px;}
.fs0_c00375{font-size:84.000000px;}
.y0_c00375{bottom:0.000000px;}
.y1f_c00375{bottom:3.105000px;}
.y1e_c00375{bottom:7.228357px;}
.y1d_c00375{bottom:50.580000px;}
.y1c_c00375{bottom:72.630000px;}
.y1b_c00375{bottom:99.630000px;}
.y1a_c00375{bottom:122.130000px;}
.y19_c00375{bottom:147.180000px;}
.y18_c00375{bottom:173.130000px;}
.y17_c00375{bottom:197.730000px;}
.y16_c00375{bottom:223.530000px;}
.y15_c00375{bottom:247.680000px;}
.y14_c00375{bottom:271.380000px;}
.y13_c00375{bottom:296.430000px;}
.y12_c00375{bottom:321.330000px;}
.y11_c00375{bottom:345.630000px;}
.y10_c00375{bottom:370.980000px;}
.yf_c00375{bottom:394.530000px;}
.ye_c00375{bottom:420.630000px;}
.yd_c00375{bottom:445.230000px;}
.yc_c00375{bottom:468.780000px;}
.yb_c00375{bottom:493.530000px;}
.ya_c00375{bottom:518.430000px;}
.y9_c00375{bottom:542.730000px;}
.y8_c00375{bottom:566.730000px;}
.y7_c00375{bottom:592.080000px;}
.y6_c00375{bottom:616.380000px;}
.y5_c00375{bottom:641.580000px;}
.y4_c00375{bottom:665.580000px;}
.y3_c00375{bottom:690.630000px;}
.y2_c00375{bottom:715.230000px;}
.y1_c00375{bottom:740.580000px;}
.h4_c00375{height:13.200074px;}
.h5_c00375{height:43.804688px;}
.h2_c00375{height:82.400391px;}
.h3_c00375{height:91.160156px;}
.h0_c00375{height:781.950000px;}
.h1_c00375{height:782.250000px;}
.w2_c00375{width:104.875500px;}
.w0_c00375{width:517.350000px;}
.w1_c00375{width:517.500000px;}
.x0_c00375{left:0.000000px;}
.x2_c00375{left:88.050000px;}
.x4_c00375{left:89.400000px;}
.x3_c00375{left:90.450000px;}
.x5_c00375{left:92.400000px;}
.x6_c00375{left:93.450000px;}
.x8_c00375{left:94.800000px;}
.x7_c00375{left:131.550000px;}
.xa_c00375{left:210.489258px;}
.x1_c00375{left:227.850000px;}
.x9_c00375{left:456.300000px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls3_c00375{letter-spacing:-5.333333pt;}
.ls2_c00375{letter-spacing:0.000000pt;}
.ls0_c00375{letter-spacing:2.666667pt;}
.ls1_c00375{letter-spacing:11.722667pt;}
.ws0_c00375{word-spacing:-37.333333pt;}
.ws1_c00375{word-spacing:-29.504000pt;}
.ws2_c00375{word-spacing:-18.090667pt;}
.ws3_c00375{word-spacing:-11.522667pt;}
.ws4_c00375{word-spacing:0.000000pt;}
._15_c00375{margin-left:-16.053333pt;}
._5_c00375{margin-left:-12.416000pt;}
._4_c00375{margin-left:-10.496000pt;}
._14_c00375{margin-left:-8.320000pt;}
._12_c00375{margin-left:-7.424000pt;}
._e_c00375{margin-left:-5.824000pt;}
._6_c00375{margin-left:-4.928000pt;}
._f_c00375{margin-left:-3.904000pt;}
._a_c00375{margin-left:-3.008000pt;}
._d_c00375{margin-left:-1.984000pt;}
._7_c00375{margin-left:-1.056000pt;}
._8_c00375{width:1.312000pt;}
._1_c00375{width:2.464000pt;}
._3_c00375{width:3.584000pt;}
._2_c00375{width:4.554667pt;}
._19_c00375{width:5.450667pt;}
._0_c00375{width:6.346667pt;}
._17_c00375{width:7.264000pt;}
._b_c00375{width:9.088000pt;}
._c_c00375{width:10.048000pt;}
._16_c00375{width:11.317333pt;}
._11_c00375{width:12.661333pt;}
._9_c00375{width:13.568000pt;}
._10_c00375{width:15.050667pt;}
._1a_c00375{width:23.850667pt;}
._13_c00375{width:28.096000pt;}
._18_c00375{width:39.520000pt;}
.fs3_c00375{font-size:42.666667pt;}
.fs2_c00375{font-size:56.000000pt;}
.fs1_c00375{font-size:64.000000pt;}
.fs0_c00375{font-size:74.666667pt;}
.y0_c00375{bottom:0.000000pt;}
.y1f_c00375{bottom:2.760000pt;}
.y1e_c00375{bottom:6.425206pt;}
.y1d_c00375{bottom:44.960000pt;}
.y1c_c00375{bottom:64.560000pt;}
.y1b_c00375{bottom:88.560000pt;}
.y1a_c00375{bottom:108.560000pt;}
.y19_c00375{bottom:130.826667pt;}
.y18_c00375{bottom:153.893333pt;}
.y17_c00375{bottom:175.760000pt;}
.y16_c00375{bottom:198.693333pt;}
.y15_c00375{bottom:220.160000pt;}
.y14_c00375{bottom:241.226667pt;}
.y13_c00375{bottom:263.493333pt;}
.y12_c00375{bottom:285.626667pt;}
.y11_c00375{bottom:307.226667pt;}
.y10_c00375{bottom:329.760000pt;}
.yf_c00375{bottom:350.693333pt;}
.ye_c00375{bottom:373.893333pt;}
.yd_c00375{bottom:395.760000pt;}
.yc_c00375{bottom:416.693333pt;}
.yb_c00375{bottom:438.693333pt;}
.ya_c00375{bottom:460.826667pt;}
.y9_c00375{bottom:482.426667pt;}
.y8_c00375{bottom:503.760000pt;}
.y7_c00375{bottom:526.293333pt;}
.y6_c00375{bottom:547.893333pt;}
.y5_c00375{bottom:570.293333pt;}
.y4_c00375{bottom:591.626667pt;}
.y3_c00375{bottom:613.893333pt;}
.y2_c00375{bottom:635.760000pt;}
.y1_c00375{bottom:658.293333pt;}
.h4_c00375{height:11.733399pt;}
.h5_c00375{height:38.937500pt;}
.h2_c00375{height:73.244792pt;}
.h3_c00375{height:81.031250pt;}
.h0_c00375{height:695.066667pt;}
.h1_c00375{height:695.333333pt;}
.w2_c00375{width:93.222667pt;}
.w0_c00375{width:459.866667pt;}
.w1_c00375{width:460.000000pt;}
.x0_c00375{left:0.000000pt;}
.x2_c00375{left:78.266667pt;}
.x4_c00375{left:79.466667pt;}
.x3_c00375{left:80.400000pt;}
.x5_c00375{left:82.133333pt;}
.x6_c00375{left:83.066667pt;}
.x8_c00375{left:84.266667pt;}
.x7_c00375{left:116.933333pt;}
.xa_c00375{left:187.101563pt;}
.x1_c00375{left:202.533333pt;}
.x9_c00375{left:405.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4b33edc7fd75be913c7ad703.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.480469;font-style:normal;font-weight:normal;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_e50878773a219f5141831d58.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:1.568848;font-style:normal;font-weight:normal;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_c8884db397f6625849698527.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00376{font-family:ff4_c00376;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00376{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00376{vertical-align:0.000000px;}
.ls0_c00376{letter-spacing:0.000000px;}
.ls1_c00376{letter-spacing:3.000000px;}
.ls2_c00376{letter-spacing:12.000000px;}
.sc__c00376{text-shadow:none;}
.sc0_c00376{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00376{-webkit-text-stroke:0px transparent;}
.sc0_c00376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00376{word-spacing:-37.790400px;}
.ws2_c00376{word-spacing:-28.629000px;}
.ws1_c00376{word-spacing:-20.352000px;}
.ws3_c00376{word-spacing:0.000000px;}
._14_c00376{margin-left:-12.312000px;}
._16_c00376{margin-left:-11.232000px;}
._15_c00376{margin-left:-10.008000px;}
._13_c00376{margin-left:-7.992000px;}
._e_c00376{margin-left:-5.832000px;}
._10_c00376{margin-left:-4.392000px;}
._a_c00376{margin-left:-2.808000px;}
._8_c00376{margin-left:-1.440000px;}
._9_c00376{width:1.512000px;}
._c_c00376{width:2.592000px;}
._d_c00376{width:4.392000px;}
._2_c00376{width:6.420000px;}
._4_c00376{width:7.980000px;}
._3_c00376{width:9.120000px;}
._f_c00376{width:11.076000px;}
._12_c00376{width:12.588000px;}
._11_c00376{width:13.896000px;}
._1_c00376{width:15.780000px;}
._6_c00376{width:19.500000px;}
._b_c00376{width:21.456000px;}
._7_c00376{width:22.680000px;}
._0_c00376{width:25.560000px;}
._5_c00376{width:343.860000px;}
.fc2_c00376{color:transparent;}
.fc1_c00376{color:rgb(128,128,128);}
.fc0_c00376{color:rgb(0,0,0);}
.fs4_c00376{font-size:48.000000px;}
.fs2_c00376{font-size:57.600000px;}
.fs0_c00376{font-size:60.000000px;}
.fs3_c00376{font-size:69.000000px;}
.fs1_c00376{font-size:72.000000px;}
.y0_c00376{bottom:0.000000px;}
.y1f_c00376{bottom:3.105000px;}
.y1e_c00376{bottom:7.228363px;}
.y1d_c00376{bottom:53.250000px;}
.y1c_c00376{bottom:81.000000px;}
.y1b_c00376{bottom:103.950000px;}
.y1a_c00376{bottom:132.900000px;}
.y19_c00376{bottom:158.250000px;}
.y18_c00376{bottom:182.550000px;}
.y17_c00376{bottom:209.250000px;}
.y16_c00376{bottom:230.850000px;}
.y15_c00376{bottom:256.500000px;}
.y14_c00376{bottom:282.150000px;}
.y13_c00376{bottom:306.750000px;}
.y12_c00376{bottom:328.650000px;}
.y11_c00376{bottom:353.400000px;}
.y10_c00376{bottom:378.600000px;}
.yf_c00376{bottom:402.900000px;}
.ye_c00376{bottom:427.650000px;}
.yd_c00376{bottom:452.550000px;}
.yc_c00376{bottom:477.600000px;}
.yb_c00376{bottom:501.900000px;}
.ya_c00376{bottom:526.500000px;}
.y9_c00376{bottom:551.250000px;}
.y8_c00376{bottom:576.150000px;}
.y7_c00376{bottom:600.450000px;}
.y6_c00376{bottom:625.350000px;}
.y5_c00376{bottom:649.800000px;}
.y4_c00376{bottom:674.700000px;}
.y3_c00376{bottom:699.300000px;}
.y2_c00376{bottom:724.050000px;}
.y1_c00376{bottom:748.500000px;}
.h4_c00376{height:13.200074px;}
.h5_c00376{height:43.804688px;}
.h1_c00376{height:70.224609px;}
.h3_c00376{height:87.361816px;}
.h2_c00376{height:91.160156px;}
.h0_c00376{height:789.750000px;}
.w2_c00376{width:104.875500px;}
.w0_c00376{width:528.675000px;}
.w1_c00376{width:528.750000px;}
.x0_c00376{left:0.000000px;}
.x2_c00376{left:18.900000px;}
.x3_c00376{left:20.850000px;}
.x4_c00376{left:21.900000px;}
.x5_c00376{left:23.250000px;}
.x6_c00376{left:24.300000px;}
.x7_c00376{left:25.350000px;}
.x1_c00376{left:141.000000px;}
.x9_c00376{left:216.151749px;}
.x8_c00376{left:360.450000px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls0_c00376{letter-spacing:0.000000pt;}
.ls1_c00376{letter-spacing:2.666667pt;}
.ls2_c00376{letter-spacing:10.666667pt;}
.ws0_c00376{word-spacing:-33.591467pt;}
.ws2_c00376{word-spacing:-25.448000pt;}
.ws1_c00376{word-spacing:-18.090667pt;}
.ws3_c00376{word-spacing:0.000000pt;}
._14_c00376{margin-left:-10.944000pt;}
._16_c00376{margin-left:-9.984000pt;}
._15_c00376{margin-left:-8.896000pt;}
._13_c00376{margin-left:-7.104000pt;}
._e_c00376{margin-left:-5.184000pt;}
._10_c00376{margin-left:-3.904000pt;}
._a_c00376{margin-left:-2.496000pt;}
._8_c00376{margin-left:-1.280000pt;}
._9_c00376{width:1.344000pt;}
._c_c00376{width:2.304000pt;}
._d_c00376{width:3.904000pt;}
._2_c00376{width:5.706667pt;}
._4_c00376{width:7.093333pt;}
._3_c00376{width:8.106667pt;}
._f_c00376{width:9.845333pt;}
._12_c00376{width:11.189333pt;}
._11_c00376{width:12.352000pt;}
._1_c00376{width:14.026667pt;}
._6_c00376{width:17.333333pt;}
._b_c00376{width:19.072000pt;}
._7_c00376{width:20.160000pt;}
._0_c00376{width:22.720000pt;}
._5_c00376{width:305.653333pt;}
.fs4_c00376{font-size:42.666667pt;}
.fs2_c00376{font-size:51.200000pt;}
.fs0_c00376{font-size:53.333333pt;}
.fs3_c00376{font-size:61.333333pt;}
.fs1_c00376{font-size:64.000000pt;}
.y0_c00376{bottom:0.000000pt;}
.y1f_c00376{bottom:2.760000pt;}
.y1e_c00376{bottom:6.425212pt;}
.y1d_c00376{bottom:47.333333pt;}
.y1c_c00376{bottom:72.000000pt;}
.y1b_c00376{bottom:92.400000pt;}
.y1a_c00376{bottom:118.133333pt;}
.y19_c00376{bottom:140.666667pt;}
.y18_c00376{bottom:162.266667pt;}
.y17_c00376{bottom:186.000000pt;}
.y16_c00376{bottom:205.200000pt;}
.y15_c00376{bottom:228.000000pt;}
.y14_c00376{bottom:250.800000pt;}
.y13_c00376{bottom:272.666667pt;}
.y12_c00376{bottom:292.133333pt;}
.y11_c00376{bottom:314.133333pt;}
.y10_c00376{bottom:336.533333pt;}
.yf_c00376{bottom:358.133333pt;}
.ye_c00376{bottom:380.133333pt;}
.yd_c00376{bottom:402.266667pt;}
.yc_c00376{bottom:424.533333pt;}
.yb_c00376{bottom:446.133333pt;}
.ya_c00376{bottom:468.000000pt;}
.y9_c00376{bottom:490.000000pt;}
.y8_c00376{bottom:512.133333pt;}
.y7_c00376{bottom:533.733333pt;}
.y6_c00376{bottom:555.866667pt;}
.y5_c00376{bottom:577.600000pt;}
.y4_c00376{bottom:599.733333pt;}
.y3_c00376{bottom:621.600000pt;}
.y2_c00376{bottom:643.600000pt;}
.y1_c00376{bottom:665.333333pt;}
.h4_c00376{height:11.733399pt;}
.h5_c00376{height:38.937500pt;}
.h1_c00376{height:62.421875pt;}
.h3_c00376{height:77.654948pt;}
.h2_c00376{height:81.031250pt;}
.h0_c00376{height:702.000000pt;}
.w2_c00376{width:93.222667pt;}
.w0_c00376{width:469.933333pt;}
.w1_c00376{width:470.000000pt;}
.x0_c00376{left:0.000000pt;}
.x2_c00376{left:16.800000pt;}
.x3_c00376{left:18.533333pt;}
.x4_c00376{left:19.466667pt;}
.x5_c00376{left:20.666667pt;}
.x6_c00376{left:21.600000pt;}
.x7_c00376{left:22.533333pt;}
.x1_c00376{left:125.333333pt;}
.x9_c00376{left:192.134888pt;}
.x8_c00376{left:320.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5f98ce841a2a54b97d8a52dc.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00377;src:url('chunks/assets/font_dc8209beea2b9d2973a3bb03.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00377;src:url('chunks/assets/font_e4be9cb605b32aa0abd102d0.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;line-height:1.568848;font-style:normal;font-weight:normal;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_7cc41dbdd1bfcb25177f24ef.woff2')format("woff");}.ff4_c00377{font-family:ff4_c00377;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00377;src:url('chunks/assets/font_fa7be1ad154b58e58ebc5ae6.woff2')format("woff");}.ff5_c00377{font-family:ff5_c00377;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00377;src:url('chunks/assets/font_e2fa284cd54c4a8361177ea1.woff2')format("woff");}.ff6_c00377{font-family:ff6_c00377;line-height:1.575000;font-style:normal;font-weight: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_c00377;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00377{font-family:ff7_c00377;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00377{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00377{vertical-align:0.000000px;}
.ls3_c00377{letter-spacing:-6.000000px;}
.ls2_c00377{letter-spacing:0.000000px;}
.ls1_c00377{letter-spacing:3.000000px;}
.ls0_c00377{letter-spacing:6.000000px;}
.sc__c00377{text-shadow:none;}
.sc0_c00377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00377{-webkit-text-stroke:0px transparent;}
.sc0_c00377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00377{word-spacing:-42.000000px;}
.ws2_c00377{word-spacing:-33.192000px;}
.ws3_c00377{word-spacing:-24.051000px;}
.ws4_c00377{word-spacing:-20.352000px;}
.ws1_c00377{word-spacing:-3.063000px;}
.ws5_c00377{word-spacing:0.000000px;}
._a_c00377{margin-left:-14.304000px;}
._10_c00377{margin-left:-9.837000px;}
._12_c00377{margin-left:-8.691000px;}
._b_c00377{margin-left:-7.515000px;}
._d_c00377{margin-left:-6.444000px;}
._6_c00377{margin-left:-4.572000px;}
._8_c00377{margin-left:-2.925000px;}
._5_c00377{margin-left:-1.464000px;}
._4_c00377{width:1.656000px;}
._7_c00377{width:2.829000px;}
._1_c00377{width:3.948000px;}
._3_c00377{width:5.964000px;}
._2_c00377{width:6.972000px;}
._9_c00377{width:9.087000px;}
._0_c00377{width:10.416000px;}
._f_c00377{width:12.177000px;}
._13_c00377{width:13.569000px;}
._c_c00377{width:14.832000px;}
._11_c00377{width:15.984000px;}
._e_c00377{width:299.232000px;}
.fc2_c00377{color:transparent;}
.fc1_c00377{color:rgb(128,128,128);}
.fc0_c00377{color:rgb(0,0,0);}
.fs5_c00377{font-size:48.000000px;}
.fs3_c00377{font-size:57.000000px;}
.fs2_c00377{font-size:63.000000px;}
.fs4_c00377{font-size:69.000000px;}
.fs1_c00377{font-size:72.000000px;}
.fs0_c00377{font-size:84.000000px;}
.y0_c00377{bottom:0.000000px;}
.y1f_c00377{bottom:3.105000px;}
.y1e_c00377{bottom:7.228357px;}
.y1d_c00377{bottom:47.580000px;}
.y1c_c00377{bottom:69.480000px;}
.y1b_c00377{bottom:95.280000px;}
.y1a_c00377{bottom:122.130000px;}
.y19_c00377{bottom:145.530000px;}
.y18_c00377{bottom:172.230000px;}
.y17_c00377{bottom:196.080000px;}
.y16_c00377{bottom:222.030000px;}
.y15_c00377{bottom:246.480000px;}
.y14_c00377{bottom:271.380000px;}
.y13_c00377{bottom:294.630000px;}
.y12_c00377{bottom:319.230000px;}
.y11_c00377{bottom:344.580000px;}
.y10_c00377{bottom:368.880000px;}
.yf_c00377{bottom:393.180000px;}
.ye_c00377{bottom:418.230000px;}
.yd_c00377{bottom:442.230000px;}
.yc_c00377{bottom:467.130000px;}
.yb_c00377{bottom:490.830000px;}
.ya_c00377{bottom:515.730000px;}
.y9_c00377{bottom:540.330000px;}
.y8_c00377{bottom:565.380000px;}
.y7_c00377{bottom:589.980000px;}
.y6_c00377{bottom:614.280000px;}
.y5_c00377{bottom:639.180000px;}
.y4_c00377{bottom:664.530000px;}
.y3_c00377{bottom:688.830000px;}
.y2_c00377{bottom:713.130000px;}
.y1_c00377{bottom:737.880000px;}
.h5_c00377{height:13.200074px;}
.h6_c00377{height:43.804688px;}
.h2_c00377{height:82.441406px;}
.h4_c00377{height:87.361816px;}
.h3_c00377{height:91.160156px;}
.h0_c00377{height:775.200000px;}
.h1_c00377{height:775.500000px;}
.w2_c00377{width:104.875500px;}
.w1_c00377{width:492.000000px;}
.w0_c00377{width:492.225000px;}
.x0_c00377{left:0.000000px;}
.x6_c00377{left:88.050000px;}
.x5_c00377{left:89.400000px;}
.x4_c00377{left:90.450000px;}
.x3_c00377{left:91.500000px;}
.x2_c00377{left:92.850000px;}
.x8_c00377{left:197.926758px;}
.x1_c00377{left:225.750000px;}
.x7_c00377{left:457.650000px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls3_c00377{letter-spacing:-5.333333pt;}
.ls2_c00377{letter-spacing:0.000000pt;}
.ls1_c00377{letter-spacing:2.666667pt;}
.ls0_c00377{letter-spacing:5.333333pt;}
.ws0_c00377{word-spacing:-37.333333pt;}
.ws2_c00377{word-spacing:-29.504000pt;}
.ws3_c00377{word-spacing:-21.378667pt;}
.ws4_c00377{word-spacing:-18.090667pt;}
.ws1_c00377{word-spacing:-2.722667pt;}
.ws5_c00377{word-spacing:0.000000pt;}
._a_c00377{margin-left:-12.714667pt;}
._10_c00377{margin-left:-8.744000pt;}
._12_c00377{margin-left:-7.725333pt;}
._b_c00377{margin-left:-6.680000pt;}
._d_c00377{margin-left:-5.728000pt;}
._6_c00377{margin-left:-4.064000pt;}
._8_c00377{margin-left:-2.600000pt;}
._5_c00377{margin-left:-1.301333pt;}
._4_c00377{width:1.472000pt;}
._7_c00377{width:2.514667pt;}
._1_c00377{width:3.509333pt;}
._3_c00377{width:5.301333pt;}
._2_c00377{width:6.197333pt;}
._9_c00377{width:8.077333pt;}
._0_c00377{width:9.258667pt;}
._f_c00377{width:10.824000pt;}
._13_c00377{width:12.061333pt;}
._c_c00377{width:13.184000pt;}
._11_c00377{width:14.208000pt;}
._e_c00377{width:265.984000pt;}
.fs5_c00377{font-size:42.666667pt;}
.fs3_c00377{font-size:50.666667pt;}
.fs2_c00377{font-size:56.000000pt;}
.fs4_c00377{font-size:61.333333pt;}
.fs1_c00377{font-size:64.000000pt;}
.fs0_c00377{font-size:74.666667pt;}
.y0_c00377{bottom:0.000000pt;}
.y1f_c00377{bottom:2.760000pt;}
.y1e_c00377{bottom:6.425206pt;}
.y1d_c00377{bottom:42.293333pt;}
.y1c_c00377{bottom:61.760000pt;}
.y1b_c00377{bottom:84.693333pt;}
.y1a_c00377{bottom:108.560000pt;}
.y19_c00377{bottom:129.360000pt;}
.y18_c00377{bottom:153.093333pt;}
.y17_c00377{bottom:174.293333pt;}
.y16_c00377{bottom:197.360000pt;}
.y15_c00377{bottom:219.093333pt;}
.y14_c00377{bottom:241.226667pt;}
.y13_c00377{bottom:261.893333pt;}
.y12_c00377{bottom:283.760000pt;}
.y11_c00377{bottom:306.293333pt;}
.y10_c00377{bottom:327.893333pt;}
.yf_c00377{bottom:349.493333pt;}
.ye_c00377{bottom:371.760000pt;}
.yd_c00377{bottom:393.093333pt;}
.yc_c00377{bottom:415.226667pt;}
.yb_c00377{bottom:436.293333pt;}
.ya_c00377{bottom:458.426667pt;}
.y9_c00377{bottom:480.293333pt;}
.y8_c00377{bottom:502.560000pt;}
.y7_c00377{bottom:524.426667pt;}
.y6_c00377{bottom:546.026667pt;}
.y5_c00377{bottom:568.160000pt;}
.y4_c00377{bottom:590.693333pt;}
.y3_c00377{bottom:612.293333pt;}
.y2_c00377{bottom:633.893333pt;}
.y1_c00377{bottom:655.893333pt;}
.h5_c00377{height:11.733399pt;}
.h6_c00377{height:38.937500pt;}
.h2_c00377{height:73.281250pt;}
.h4_c00377{height:77.654948pt;}
.h3_c00377{height:81.031250pt;}
.h0_c00377{height:689.066667pt;}
.h1_c00377{height:689.333333pt;}
.w2_c00377{width:93.222667pt;}
.w1_c00377{width:437.333333pt;}
.w0_c00377{width:437.533333pt;}
.x0_c00377{left:0.000000pt;}
.x6_c00377{left:78.266667pt;}
.x5_c00377{left:79.466667pt;}
.x4_c00377{left:80.400000pt;}
.x3_c00377{left:81.333333pt;}
.x2_c00377{left:82.533333pt;}
.x8_c00377{left:175.934896pt;}
.x1_c00377{left:200.666667pt;}
.x7_c00377{left:406.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8db2b8c270ce9e6b4790e95b.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.480469;font-style:normal;font-weight:normal;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_83edf750992e35fdf41ebc16.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:1.568848;font-style:normal;font-weight:normal;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_9f250cd8b7116c2728a02197.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00378;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00378{font-family:ff4_c00378;line-height:1.219238;font-style: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;}
.lsb_c00378{letter-spacing:-6.000000px;}
.ls9_c00378{letter-spacing:0.000000px;}
.ls3_c00378{letter-spacing:0.879000px;}
.ls8_c00378{letter-spacing:2.988000px;}
.ls4_c00378{letter-spacing:3.000000px;}
.ls7_c00378{letter-spacing:5.388000px;}
.ls0_c00378{letter-spacing:5.988000px;}
.lsa_c00378{letter-spacing:6.000000px;}
.ls1_c00378{letter-spacing:7.560000px;}
.ls5_c00378{letter-spacing:13.188000px;}
.ls6_c00378{letter-spacing:19.584000px;}
.ls2_c00378{letter-spacing:26.388000px;}
.lsc_c00378{letter-spacing:42.000000px;}
.sc__c00378{text-shadow:none;}
.sc0_c00378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00378{-webkit-text-stroke:0px transparent;}
.sc0_c00378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00378{word-spacing:-59.352000px;}
.ws1_c00378{word-spacing:-24.051000px;}
.ws0_c00378{word-spacing:-20.352000px;}
.ws2_c00378{word-spacing:-17.352000px;}
.ws4_c00378{word-spacing:0.000000px;}
._2_c00378{margin-left:-16.968000px;}
._17_c00378{margin-left:-14.364000px;}
._12_c00378{margin-left:-12.744000px;}
._16_c00378{margin-left:-11.484000px;}
._4_c00378{margin-left:-10.332000px;}
._5_c00378{margin-left:-8.568000px;}
._15_c00378{margin-left:-7.056000px;}
._18_c00378{margin-left:-5.904000px;}
._8_c00378{margin-left:-4.824000px;}
._f_c00378{margin-left:-3.816000px;}
._9_c00378{margin-left:-2.808000px;}
._6_c00378{margin-left:-1.764000px;}
._3_c00378{width:1.176000px;}
._11_c00378{width:2.184000px;}
._e_c00378{width:3.204000px;}
._1_c00378{width:4.452000px;}
._b_c00378{width:5.532000px;}
._0_c00378{width:7.140000px;}
._c_c00378{width:8.844000px;}
._10_c00378{width:11.136000px;}
._a_c00378{width:12.420000px;}
._d_c00378{width:14.712000px;}
._19_c00378{width:16.632000px;}
._13_c00378{width:17.844000px;}
._14_c00378{width:24.384000px;}
._1e_c00378{width:33.312000px;}
._1d_c00378{width:35.784000px;}
._20_c00378{width:40.824000px;}
._1f_c00378{width:51.864000px;}
._1b_c00378{width:55.092000px;}
._1c_c00378{width:56.664000px;}
._22_c00378{width:303.144000px;}
._7_c00378{width:334.821000px;}
._1a_c00378{width:394.260000px;}
._21_c00378{width:881.544000px;}
.fc2_c00378{color:transparent;}
.fc1_c00378{color:rgb(128,128,128);}
.fc0_c00378{color:rgb(0,0,0);}
.fs4_c00378{font-size:48.000000px;}
.fs3_c00378{font-size:63.000000px;}
.fs2_c00378{font-size:72.000000px;}
.fs1_c00378{font-size:81.000000px;}
.fs0_c00378{font-size:84.000000px;}
.y0_c00378{bottom:0.000000px;}
.y1e_c00378{bottom:3.105000px;}
.y1d_c00378{bottom:7.228369px;}
.y1c_c00378{bottom:55.020000px;}
.y1b_c00378{bottom:84.270000px;}
.y1a_c00378{bottom:107.970000px;}
.y19_c00378{bottom:132.870000px;}
.y18_c00378{bottom:157.320000px;}
.y17_c00378{bottom:182.520000px;}
.y16_c00378{bottom:207.870000px;}
.y15_c00378{bottom:232.770000px;}
.y14_c00378{bottom:256.770000px;}
.y13_c00378{bottom:305.070000px;}
.y12_c00378{bottom:329.970000px;}
.y11_c00378{bottom:353.370000px;}
.y10_c00378{bottom:378.720000px;}
.yf_c00378{bottom:402.870000px;}
.ye_c00378{bottom:427.920000px;}
.yd_c00378{bottom:452.520000px;}
.yc_c00378{bottom:477.270000px;}
.yb_c00378{bottom:502.170000px;}
.ya_c00378{bottom:526.770000px;}
.y9_c00378{bottom:551.520000px;}
.y8_c00378{bottom:576.420000px;}
.y7_c00378{bottom:600.420000px;}
.y6_c00378{bottom:626.070000px;}
.y5_c00378{bottom:650.670000px;}
.y4_c00378{bottom:674.670000px;}
.y3_c00378{bottom:699.570000px;}
.y2_c00378{bottom:724.620000px;}
.y1_c00378{bottom:749.520000px;}
.h3_c00378{height:13.200073px;}
.h4_c00378{height:43.804688px;}
.h2_c00378{height:91.160156px;}
.h1_c00378{height:102.555176px;}
.h0_c00378{height:793.500000px;}
.w2_c00378{width:104.875500px;}
.w0_c00378{width:528.375000px;}
.w1_c00378{width:528.750000px;}
.x0_c00378{left:0.000000px;}
.x7_c00378{left:19.950000px;}
.x6_c00378{left:21.600000px;}
.x5_c00378{left:22.950000px;}
.x2_c00378{left:24.600000px;}
.x3_c00378{left:25.950000px;}
.x8_c00378{left:40.800000px;}
.x4_c00378{left:61.500000px;}
.x1_c00378{left:140.700000px;}
.x9_c00378{left:216.001740px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.lsb_c00378{letter-spacing:-5.333333pt;}
.ls9_c00378{letter-spacing:0.000000pt;}
.ls3_c00378{letter-spacing:0.781333pt;}
.ls8_c00378{letter-spacing:2.656000pt;}
.ls4_c00378{letter-spacing:2.666667pt;}
.ls7_c00378{letter-spacing:4.789333pt;}
.ls0_c00378{letter-spacing:5.322667pt;}
.lsa_c00378{letter-spacing:5.333333pt;}
.ls1_c00378{letter-spacing:6.720000pt;}
.ls5_c00378{letter-spacing:11.722667pt;}
.ls6_c00378{letter-spacing:17.408000pt;}
.ls2_c00378{letter-spacing:23.456000pt;}
.lsc_c00378{letter-spacing:37.333333pt;}
.ws3_c00378{word-spacing:-52.757333pt;}
.ws1_c00378{word-spacing:-21.378667pt;}
.ws0_c00378{word-spacing:-18.090667pt;}
.ws2_c00378{word-spacing:-15.424000pt;}
.ws4_c00378{word-spacing:0.000000pt;}
._2_c00378{margin-left:-15.082667pt;}
._17_c00378{margin-left:-12.768000pt;}
._12_c00378{margin-left:-11.328000pt;}
._16_c00378{margin-left:-10.208000pt;}
._4_c00378{margin-left:-9.184000pt;}
._5_c00378{margin-left:-7.616000pt;}
._15_c00378{margin-left:-6.272000pt;}
._18_c00378{margin-left:-5.248000pt;}
._8_c00378{margin-left:-4.288000pt;}
._f_c00378{margin-left:-3.392000pt;}
._9_c00378{margin-left:-2.496000pt;}
._6_c00378{margin-left:-1.568000pt;}
._3_c00378{width:1.045333pt;}
._11_c00378{width:1.941333pt;}
._e_c00378{width:2.848000pt;}
._1_c00378{width:3.957333pt;}
._b_c00378{width:4.917333pt;}
._0_c00378{width:6.346667pt;}
._c_c00378{width:7.861333pt;}
._10_c00378{width:9.898667pt;}
._a_c00378{width:11.040000pt;}
._d_c00378{width:13.077333pt;}
._19_c00378{width:14.784000pt;}
._13_c00378{width:15.861333pt;}
._14_c00378{width:21.674667pt;}
._1e_c00378{width:29.610667pt;}
._1d_c00378{width:31.808000pt;}
._20_c00378{width:36.288000pt;}
._1f_c00378{width:46.101333pt;}
._1b_c00378{width:48.970667pt;}
._1c_c00378{width:50.368000pt;}
._22_c00378{width:269.461333pt;}
._7_c00378{width:297.618667pt;}
._1a_c00378{width:350.453333pt;}
._21_c00378{width:783.594667pt;}
.fs4_c00378{font-size:42.666667pt;}
.fs3_c00378{font-size:56.000000pt;}
.fs2_c00378{font-size:64.000000pt;}
.fs1_c00378{font-size:72.000000pt;}
.fs0_c00378{font-size:74.666667pt;}
.y0_c00378{bottom:0.000000pt;}
.y1e_c00378{bottom:2.760000pt;}
.y1d_c00378{bottom:6.425217pt;}
.y1c_c00378{bottom:48.906667pt;}
.y1b_c00378{bottom:74.906667pt;}
.y1a_c00378{bottom:95.973333pt;}
.y19_c00378{bottom:118.106667pt;}
.y18_c00378{bottom:139.840000pt;}
.y17_c00378{bottom:162.240000pt;}
.y16_c00378{bottom:184.773333pt;}
.y15_c00378{bottom:206.906667pt;}
.y14_c00378{bottom:228.240000pt;}
.y13_c00378{bottom:271.173333pt;}
.y12_c00378{bottom:293.306667pt;}
.y11_c00378{bottom:314.106667pt;}
.y10_c00378{bottom:336.640000pt;}
.yf_c00378{bottom:358.106667pt;}
.ye_c00378{bottom:380.373333pt;}
.yd_c00378{bottom:402.240000pt;}
.yc_c00378{bottom:424.240000pt;}
.yb_c00378{bottom:446.373333pt;}
.ya_c00378{bottom:468.240000pt;}
.y9_c00378{bottom:490.240000pt;}
.y8_c00378{bottom:512.373333pt;}
.y7_c00378{bottom:533.706667pt;}
.y6_c00378{bottom:556.506667pt;}
.y5_c00378{bottom:578.373333pt;}
.y4_c00378{bottom:599.706667pt;}
.y3_c00378{bottom:621.840000pt;}
.y2_c00378{bottom:644.106667pt;}
.y1_c00378{bottom:666.240000pt;}
.h3_c00378{height:11.733399pt;}
.h4_c00378{height:38.937500pt;}
.h2_c00378{height:81.031250pt;}
.h1_c00378{height:91.160156pt;}
.h0_c00378{height:705.333333pt;}
.w2_c00378{width:93.222667pt;}
.w0_c00378{width:469.666667pt;}
.w1_c00378{width:470.000000pt;}
.x0_c00378{left:0.000000pt;}
.x7_c00378{left:17.733333pt;}
.x6_c00378{left:19.200000pt;}
.x5_c00378{left:20.400000pt;}
.x2_c00378{left:21.866667pt;}
.x3_c00378{left:23.066667pt;}
.x8_c00378{left:36.266667pt;}
.x4_c00378{left:54.666667pt;}
.x1_c00378{left:125.066667pt;}
.x9_c00378{left:192.001546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_19d9c4235fde9f74b038deb5.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.480469;font-style:normal;font-weight:normal;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_65dfcc2f51f4282d799922c4.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:1.568848;font-style:normal;font-weight:normal;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_cd5d29cf1935117f8f42369a.woff2')format("woff");}.ff3_c00379{font-family:ff3_c00379;line-height:1.480469;font-style:normal;font-weight:normal;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_d86ecd481a848b2d458e2af2.woff2')format("woff");}.ff4_c00379{font-family:ff4_c00379;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00379;src:url('chunks/assets/font_b2fcf5e70e01cf70cd2b4ff4.woff2')format("woff");}.ff5_c00379{font-family:ff5_c00379;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00379;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00379{font-family:ff6_c00379;line-height:1.219238;font-style: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;}
.ls5_c00379{letter-spacing:-6.000000px;}
.ls3_c00379{letter-spacing:-3.000000px;}
.ls2_c00379{letter-spacing:0.000000px;}
.ls4_c00379{letter-spacing:3.000000px;}
.ls0_c00379{letter-spacing:9.912000px;}
.ls1_c00379{letter-spacing:17.880000px;}
.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;}
}
.ws4_c00379{word-spacing:-57.705000px;}
.ws3_c00379{word-spacing:-54.540000px;}
.ws0_c00379{word-spacing:-20.967000px;}
.ws5_c00379{word-spacing:-20.352000px;}
.ws2_c00379{word-spacing:-18.075000px;}
.ws1_c00379{word-spacing:-17.352000px;}
.ws6_c00379{word-spacing:0.000000px;}
._1c_c00379{margin-left:-22.188000px;}
._1a_c00379{margin-left:-19.656000px;}
._15_c00379{margin-left:-16.584000px;}
._19_c00379{margin-left:-14.844000px;}
._d_c00379{margin-left:-13.800000px;}
._1e_c00379{margin-left:-12.636000px;}
._13_c00379{margin-left:-11.418000px;}
._e_c00379{margin-left:-9.972000px;}
._14_c00379{margin-left:-8.424000px;}
._3_c00379{margin-left:-6.480000px;}
._12_c00379{margin-left:-5.202000px;}
._2_c00379{margin-left:-4.176000px;}
._0_c00379{margin-left:-2.871000px;}
._1_c00379{margin-left:-1.392000px;}
._6_c00379{width:1.386000px;}
._7_c00379{width:2.718000px;}
._4_c00379{width:3.942000px;}
._a_c00379{width:4.968000px;}
._5_c00379{width:6.012000px;}
._b_c00379{width:7.020000px;}
._8_c00379{width:8.082000px;}
._11_c00379{width:9.144000px;}
._9_c00379{width:10.158000px;}
._10_c00379{width:11.826000px;}
._c_c00379{width:13.188000px;}
._18_c00379{width:14.562000px;}
._16_c00379{width:17.484000px;}
._17_c00379{width:23.040000px;}
._1b_c00379{width:173.112000px;}
._1d_c00379{width:304.380000px;}
._f_c00379{width:562.590000px;}
._1f_c00379{width:1192.806000px;}
.fc2_c00379{color:transparent;}
.fc1_c00379{color:rgb(128,128,128);}
.fc0_c00379{color:rgb(0,0,0);}
.fs7_c00379{font-size:24.000000px;}
.fs8_c00379{font-size:48.000000px;}
.fs4_c00379{font-size:63.000000px;}
.fs1_c00379{font-size:72.000000px;}
.fs2_c00379{font-size:75.000000px;}
.fs3_c00379{font-size:84.000000px;}
.fs0_c00379{font-size:87.000000px;}
.fs6_c00379{font-size:93.000000px;}
.fs5_c00379{font-size:96.000000px;}
.y0_c00379{bottom:0.000000px;}
.y1f_c00379{bottom:3.105000px;}
.y1e_c00379{bottom:7.228357px;}
.y1d_c00379{bottom:51.630000px;}
.y1c_c00379{bottom:74.580000px;}
.y1b_c00379{bottom:100.680000px;}
.y1a_c00379{bottom:125.880000px;}
.y19_c00379{bottom:151.980000px;}
.y18_c00379{bottom:176.580000px;}
.y17_c00379{bottom:202.230000px;}
.y16_c00379{bottom:226.830000px;}
.y15_c00379{bottom:251.430000px;}
.y14_c00379{bottom:275.730000px;}
.y13_c00379{bottom:300.330000px;}
.y12_c00379{bottom:325.980000px;}
.y11_c00379{bottom:349.980000px;}
.y10_c00379{bottom:375.030000px;}
.yf_c00379{bottom:399.630000px;}
.ye_c00379{bottom:424.530000px;}
.yd_c00379{bottom:447.630000px;}
.yc_c00379{bottom:471.480000px;}
.yb_c00379{bottom:496.830000px;}
.ya_c00379{bottom:521.880000px;}
.y9_c00379{bottom:546.030000px;}
.y8_c00379{bottom:570.330000px;}
.y7_c00379{bottom:595.680000px;}
.y6_c00379{bottom:620.730000px;}
.y5_c00379{bottom:645.030000px;}
.y4_c00379{bottom:669.030000px;}
.y3_c00379{bottom:694.680000px;}
.y2_c00379{bottom:718.980000px;}
.y1_c00379{bottom:744.180000px;}
.h8_c00379{height:13.200074px;}
.h9_c00379{height:43.804688px;}
.h3_c00379{height:91.160156px;}
.h4_c00379{height:94.958496px;}
.h6_c00379{height:98.314453px;}
.h5_c00379{height:106.353516px;}
.h2_c00379{height:110.151855px;}
.h7_c00379{height:121.546875px;}
.h0_c00379{height:781.950000px;}
.h1_c00379{height:782.250000px;}
.w2_c00379{width:104.875500px;}
.w1_c00379{width:505.500000px;}
.w0_c00379{width:505.725000px;}
.x0_c00379{left:0.000000px;}
.x2_c00379{left:96.300000px;}
.x5_c00379{left:98.550000px;}
.x3_c00379{left:99.600000px;}
.x4_c00379{left:100.950000px;}
.x7_c00379{left:102.600000px;}
.x8_c00379{left:135.300000px;}
.x6_c00379{left:166.650000px;}
.x9_c00379{left:204.676758px;}
.x1_c00379{left:234.450000px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls5_c00379{letter-spacing:-5.333333pt;}
.ls3_c00379{letter-spacing:-2.666667pt;}
.ls2_c00379{letter-spacing:0.000000pt;}
.ls4_c00379{letter-spacing:2.666667pt;}
.ls0_c00379{letter-spacing:8.810667pt;}
.ls1_c00379{letter-spacing:15.893333pt;}
.ws4_c00379{word-spacing:-51.293333pt;}
.ws3_c00379{word-spacing:-48.480000pt;}
.ws0_c00379{word-spacing:-18.637333pt;}
.ws5_c00379{word-spacing:-18.090667pt;}
.ws2_c00379{word-spacing:-16.066667pt;}
.ws1_c00379{word-spacing:-15.424000pt;}
.ws6_c00379{word-spacing:0.000000pt;}
._1c_c00379{margin-left:-19.722667pt;}
._1a_c00379{margin-left:-17.472000pt;}
._15_c00379{margin-left:-14.741333pt;}
._19_c00379{margin-left:-13.194667pt;}
._d_c00379{margin-left:-12.266667pt;}
._1e_c00379{margin-left:-11.232000pt;}
._13_c00379{margin-left:-10.149333pt;}
._e_c00379{margin-left:-8.864000pt;}
._14_c00379{margin-left:-7.488000pt;}
._3_c00379{margin-left:-5.760000pt;}
._12_c00379{margin-left:-4.624000pt;}
._2_c00379{margin-left:-3.712000pt;}
._0_c00379{margin-left:-2.552000pt;}
._1_c00379{margin-left:-1.237333pt;}
._6_c00379{width:1.232000pt;}
._7_c00379{width:2.416000pt;}
._4_c00379{width:3.504000pt;}
._a_c00379{width:4.416000pt;}
._5_c00379{width:5.344000pt;}
._b_c00379{width:6.240000pt;}
._8_c00379{width:7.184000pt;}
._11_c00379{width:8.128000pt;}
._9_c00379{width:9.029333pt;}
._10_c00379{width:10.512000pt;}
._c_c00379{width:11.722667pt;}
._18_c00379{width:12.944000pt;}
._16_c00379{width:15.541333pt;}
._17_c00379{width:20.480000pt;}
._1b_c00379{width:153.877333pt;}
._1d_c00379{width:270.560000pt;}
._f_c00379{width:500.080000pt;}
._1f_c00379{width:1060.272000pt;}
.fs7_c00379{font-size:21.333333pt;}
.fs8_c00379{font-size:42.666667pt;}
.fs4_c00379{font-size:56.000000pt;}
.fs1_c00379{font-size:64.000000pt;}
.fs2_c00379{font-size:66.666667pt;}
.fs3_c00379{font-size:74.666667pt;}
.fs0_c00379{font-size:77.333333pt;}
.fs6_c00379{font-size:82.666667pt;}
.fs5_c00379{font-size:85.333333pt;}
.y0_c00379{bottom:0.000000pt;}
.y1f_c00379{bottom:2.760000pt;}
.y1e_c00379{bottom:6.425206pt;}
.y1d_c00379{bottom:45.893333pt;}
.y1c_c00379{bottom:66.293333pt;}
.y1b_c00379{bottom:89.493333pt;}
.y1a_c00379{bottom:111.893333pt;}
.y19_c00379{bottom:135.093333pt;}
.y18_c00379{bottom:156.960000pt;}
.y17_c00379{bottom:179.760000pt;}
.y16_c00379{bottom:201.626667pt;}
.y15_c00379{bottom:223.493333pt;}
.y14_c00379{bottom:245.093333pt;}
.y13_c00379{bottom:266.960000pt;}
.y12_c00379{bottom:289.760000pt;}
.y11_c00379{bottom:311.093333pt;}
.y10_c00379{bottom:333.360000pt;}
.yf_c00379{bottom:355.226667pt;}
.ye_c00379{bottom:377.360000pt;}
.yd_c00379{bottom:397.893333pt;}
.yc_c00379{bottom:419.093333pt;}
.yb_c00379{bottom:441.626667pt;}
.ya_c00379{bottom:463.893333pt;}
.y9_c00379{bottom:485.360000pt;}
.y8_c00379{bottom:506.960000pt;}
.y7_c00379{bottom:529.493333pt;}
.y6_c00379{bottom:551.760000pt;}
.y5_c00379{bottom:573.360000pt;}
.y4_c00379{bottom:594.693333pt;}
.y3_c00379{bottom:617.493333pt;}
.y2_c00379{bottom:639.093333pt;}
.y1_c00379{bottom:661.493333pt;}
.h8_c00379{height:11.733399pt;}
.h9_c00379{height:38.937500pt;}
.h3_c00379{height:81.031250pt;}
.h4_c00379{height:84.407552pt;}
.h6_c00379{height:87.390625pt;}
.h5_c00379{height:94.536458pt;}
.h2_c00379{height:97.912760pt;}
.h7_c00379{height:108.041667pt;}
.h0_c00379{height:695.066667pt;}
.h1_c00379{height:695.333333pt;}
.w2_c00379{width:93.222667pt;}
.w1_c00379{width:449.333333pt;}
.w0_c00379{width:449.533333pt;}
.x0_c00379{left:0.000000pt;}
.x2_c00379{left:85.600000pt;}
.x5_c00379{left:87.600000pt;}
.x3_c00379{left:88.533333pt;}
.x4_c00379{left:89.733333pt;}
.x7_c00379{left:91.200000pt;}
.x8_c00379{left:120.266667pt;}
.x6_c00379{left:148.133333pt;}
.x9_c00379{left:181.934896pt;}
.x1_c00379{left:208.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_955f389be50a886025968988.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.480469;font-style:normal;font-weight:normal;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_55e38e37442406325177ab1b.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:1.568848;font-style:normal;font-weight:normal;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_a639e1a4eb1ef0f813d9f8be.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00380;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00380{font-family:ff4_c00380;line-height:1.219238;font-style: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;}
.ls3_c00380{letter-spacing:-6.000000px;}
.ls1_c00380{letter-spacing:0.000000px;}
.ls2_c00380{letter-spacing:3.000000px;}
.ls0_c00380{letter-spacing:30.588000px;}
.sc__c00380{text-shadow:none;}
.sc0_c00380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00380{-webkit-text-stroke:0px transparent;}
.sc0_c00380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00380{word-spacing:-33.192000px;}
.ws1_c00380{word-spacing:-24.051000px;}
.ws0_c00380{word-spacing:-14.832000px;}
.ws3_c00380{word-spacing:-7.293000px;}
.ws4_c00380{word-spacing:0.000000px;}
._17_c00380{margin-left:-21.600000px;}
._1b_c00380{margin-left:-15.120000px;}
._12_c00380{margin-left:-13.752000px;}
._a_c00380{margin-left:-10.512000px;}
._c_c00380{margin-left:-8.748000px;}
._9_c00380{margin-left:-7.056000px;}
._10_c00380{margin-left:-6.024000px;}
._b_c00380{margin-left:-4.104000px;}
._8_c00380{margin-left:-3.024000px;}
._7_c00380{margin-left:-2.016000px;}
._f_c00380{margin-left:-1.008000px;}
._6_c00380{width:1.584000px;}
._d_c00380{width:2.700000px;}
._13_c00380{width:4.512000px;}
._e_c00380{width:5.760000px;}
._4_c00380{width:7.128000px;}
._1_c00380{width:8.136000px;}
._15_c00380{width:9.312000px;}
._0_c00380{width:11.304000px;}
._18_c00380{width:12.600000px;}
._3_c00380{width:14.184000px;}
._2_c00380{width:15.480000px;}
._11_c00380{width:18.792000px;}
._1d_c00380{width:21.744000px;}
._19_c00380{width:26.280000px;}
._1e_c00380{width:31.608000px;}
._14_c00380{width:194.592000px;}
._16_c00380{width:220.320000px;}
._1a_c00380{width:238.812000px;}
._1f_c00380{width:312.120000px;}
._5_c00380{width:327.432000px;}
._1c_c00380{width:724.896000px;}
.fc2_c00380{color:transparent;}
.fc1_c00380{color:rgb(128,128,128);}
.fc0_c00380{color:rgb(0,0,0);}
.fs2_c00380{font-size:48.000000px;}
.fs1_c00380{font-size:63.000000px;}
.fs0_c00380{font-size:72.000000px;}
.y0_c00380{bottom:0.000000px;}
.y1f_c00380{bottom:3.105000px;}
.y1e_c00380{bottom:7.228355px;}
.y1d_c00380{bottom:41.085000px;}
.y1c_c00380{bottom:65.685000px;}
.y1b_c00380{bottom:91.785000px;}
.y1a_c00380{bottom:116.385000px;}
.y19_c00380{bottom:141.735000px;}
.y18_c00380{bottom:166.935000px;}
.y17_c00380{bottom:191.385000px;}
.y16_c00380{bottom:216.585000px;}
.y15_c00380{bottom:241.335000px;}
.y14_c00380{bottom:265.935000px;}
.y13_c00380{bottom:290.535000px;}
.y12_c00380{bottom:314.235000px;}
.y11_c00380{bottom:337.035000px;}
.y10_c00380{bottom:361.335000px;}
.yf_c00380{bottom:386.685000px;}
.ye_c00380{bottom:411.435000px;}
.yd_c00380{bottom:435.285000px;}
.yc_c00380{bottom:460.335000px;}
.yb_c00380{bottom:485.235000px;}
.ya_c00380{bottom:510.285000px;}
.y9_c00380{bottom:535.185000px;}
.y8_c00380{bottom:559.485000px;}
.y7_c00380{bottom:585.435000px;}
.y6_c00380{bottom:608.535000px;}
.y5_c00380{bottom:633.735000px;}
.y4_c00380{bottom:658.035000px;}
.y3_c00380{bottom:683.085000px;}
.y2_c00380{bottom:708.285000px;}
.y1_c00380{bottom:732.585000px;}
.h3_c00380{height:13.200074px;}
.h4_c00380{height:43.804688px;}
.h2_c00380{height:91.160156px;}
.h1_c00380{height:774.000000px;}
.h0_c00380{height:774.075000px;}
.w2_c00380{width:104.875500px;}
.w1_c00380{width:531.750000px;}
.w0_c00380{width:531.900000px;}
.x0_c00380{left:0.000000px;}
.x9_c00380{left:41.550000px;}
.x2_c00380{left:45.900000px;}
.x3_c00380{left:47.250000px;}
.x4_c00380{left:48.300000px;}
.x5_c00380{left:49.650000px;}
.x6_c00380{left:51.000000px;}
.x7_c00380{left:52.650000px;}
.x8_c00380{left:53.700000px;}
.x1_c00380{left:170.700000px;}
.xa_c00380{left:217.764267px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls3_c00380{letter-spacing:-5.333333pt;}
.ls1_c00380{letter-spacing:0.000000pt;}
.ls2_c00380{letter-spacing:2.666667pt;}
.ls0_c00380{letter-spacing:27.189333pt;}
.ws2_c00380{word-spacing:-29.504000pt;}
.ws1_c00380{word-spacing:-21.378667pt;}
.ws0_c00380{word-spacing:-13.184000pt;}
.ws3_c00380{word-spacing:-6.482667pt;}
.ws4_c00380{word-spacing:0.000000pt;}
._17_c00380{margin-left:-19.200000pt;}
._1b_c00380{margin-left:-13.440000pt;}
._12_c00380{margin-left:-12.224000pt;}
._a_c00380{margin-left:-9.344000pt;}
._c_c00380{margin-left:-7.776000pt;}
._9_c00380{margin-left:-6.272000pt;}
._10_c00380{margin-left:-5.354667pt;}
._b_c00380{margin-left:-3.648000pt;}
._8_c00380{margin-left:-2.688000pt;}
._7_c00380{margin-left:-1.792000pt;}
._f_c00380{margin-left:-0.896000pt;}
._6_c00380{width:1.408000pt;}
._d_c00380{width:2.400000pt;}
._13_c00380{width:4.010667pt;}
._e_c00380{width:5.120000pt;}
._4_c00380{width:6.336000pt;}
._1_c00380{width:7.232000pt;}
._15_c00380{width:8.277333pt;}
._0_c00380{width:10.048000pt;}
._18_c00380{width:11.200000pt;}
._3_c00380{width:12.608000pt;}
._2_c00380{width:13.760000pt;}
._11_c00380{width:16.704000pt;}
._1d_c00380{width:19.328000pt;}
._19_c00380{width:23.360000pt;}
._1e_c00380{width:28.096000pt;}
._14_c00380{width:172.970667pt;}
._16_c00380{width:195.840000pt;}
._1a_c00380{width:212.277333pt;}
._1f_c00380{width:277.440000pt;}
._5_c00380{width:291.050667pt;}
._1c_c00380{width:644.352000pt;}
.fs2_c00380{font-size:42.666667pt;}
.fs1_c00380{font-size:56.000000pt;}
.fs0_c00380{font-size:64.000000pt;}
.y0_c00380{bottom:0.000000pt;}
.y1f_c00380{bottom:2.760000pt;}
.y1e_c00380{bottom:6.425204pt;}
.y1d_c00380{bottom:36.520000pt;}
.y1c_c00380{bottom:58.386667pt;}
.y1b_c00380{bottom:81.586667pt;}
.y1a_c00380{bottom:103.453333pt;}
.y19_c00380{bottom:125.986667pt;}
.y18_c00380{bottom:148.386667pt;}
.y17_c00380{bottom:170.120000pt;}
.y16_c00380{bottom:192.520000pt;}
.y15_c00380{bottom:214.520000pt;}
.y14_c00380{bottom:236.386667pt;}
.y13_c00380{bottom:258.253333pt;}
.y12_c00380{bottom:279.320000pt;}
.y11_c00380{bottom:299.586667pt;}
.y10_c00380{bottom:321.186667pt;}
.yf_c00380{bottom:343.720000pt;}
.ye_c00380{bottom:365.720000pt;}
.yd_c00380{bottom:386.920000pt;}
.yc_c00380{bottom:409.186667pt;}
.yb_c00380{bottom:431.320000pt;}
.ya_c00380{bottom:453.586667pt;}
.y9_c00380{bottom:475.720000pt;}
.y8_c00380{bottom:497.320000pt;}
.y7_c00380{bottom:520.386667pt;}
.y6_c00380{bottom:540.920000pt;}
.y5_c00380{bottom:563.320000pt;}
.y4_c00380{bottom:584.920000pt;}
.y3_c00380{bottom:607.186667pt;}
.y2_c00380{bottom:629.586667pt;}
.y1_c00380{bottom:651.186667pt;}
.h3_c00380{height:11.733399pt;}
.h4_c00380{height:38.937500pt;}
.h2_c00380{height:81.031250pt;}
.h1_c00380{height:688.000000pt;}
.h0_c00380{height:688.066667pt;}
.w2_c00380{width:93.222667pt;}
.w1_c00380{width:472.666667pt;}
.w0_c00380{width:472.800000pt;}
.x0_c00380{left:0.000000pt;}
.x9_c00380{left:36.933333pt;}
.x2_c00380{left:40.800000pt;}
.x3_c00380{left:42.000000pt;}
.x4_c00380{left:42.933333pt;}
.x5_c00380{left:44.133333pt;}
.x6_c00380{left:45.333333pt;}
.x7_c00380{left:46.800000pt;}
.x8_c00380{left:47.733333pt;}
.x1_c00380{left:151.733333pt;}
.xa_c00380{left:193.568237pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a31124dc1f02454b1e45abb8.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.480469;font-style:normal;font-weight:normal;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_7533ef92d53570b7625a2d76.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:1.568848;font-style:normal;font-weight:normal;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_518e927d616081044efc9fc1.woff2')format("woff");}.ff3_c00381{font-family:ff3_c00381;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00381;src:url('chunks/assets/font_3e5513e8048054a11281b1d3.woff2')format("woff");}.ff4_c00381{font-family:ff4_c00381;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00381;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00381{font-family:ff5_c00381;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00381;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00381{font-family:ff6_c00381;line-height:1.219238;font-style: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;}
.ls5_c00381{letter-spacing:-15.000000px;}
.ls3_c00381{letter-spacing:0.000000px;}
.ls4_c00381{letter-spacing:3.000000px;}
.ls0_c00381{letter-spacing:6.000000px;}
.ls2_c00381{letter-spacing:16.152000px;}
.ls1_c00381{letter-spacing:16.248000px;}
.ls6_c00381{letter-spacing:33.000000px;}
.sc__c00381{text-shadow:none;}
.sc0_c00381{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00381{-webkit-text-stroke:0px transparent;}
.sc0_c00381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00381{word-spacing:-54.000000px;}
.ws4_c00381{word-spacing:-36.780000px;}
.ws0_c00381{word-spacing:-27.000000px;}
.ws7_c00381{word-spacing:-20.352000px;}
.ws3_c00381{word-spacing:-20.250000px;}
.ws2_c00381{word-spacing:-18.183000px;}
.ws6_c00381{word-spacing:-17.352000px;}
.ws1_c00381{word-spacing:-2.352000px;}
.ws8_c00381{word-spacing:0.000000px;}
._1b_c00381{margin-left:-16.878000px;}
._c_c00381{margin-left:-14.043000px;}
._e_c00381{margin-left:-10.131000px;}
._f_c00381{margin-left:-8.682000px;}
._7_c00381{margin-left:-7.248000px;}
._d_c00381{margin-left:-5.991000px;}
._11_c00381{margin-left:-4.572000px;}
._0_c00381{margin-left:-3.393000px;}
._2_c00381{margin-left:-2.349000px;}
._1_c00381{margin-left:-1.218000px;}
._5_c00381{width:1.578000px;}
._a_c00381{width:2.709000px;}
._3_c00381{width:3.915000px;}
._8_c00381{width:5.733000px;}
._6_c00381{width:7.593000px;}
._17_c00381{width:8.685000px;}
._10_c00381{width:10.116000px;}
._9_c00381{width:11.547000px;}
._18_c00381{width:12.576000px;}
._4_c00381{width:13.851000px;}
._b_c00381{width:14.868000px;}
._1a_c00381{width:15.915000px;}
._12_c00381{width:19.740000px;}
._19_c00381{width:22.428000px;}
._14_c00381{width:24.021000px;}
._16_c00381{width:32.340000px;}
._13_c00381{width:75.045000px;}
._15_c00381{width:142.515000px;}
._1c_c00381{width:333.072000px;}
.fc2_c00381{color:transparent;}
.fc1_c00381{color:rgb(128,128,128);}
.fc0_c00381{color:rgb(0,0,0);}
.fs5_c00381{font-size:48.000000px;}
.fs2_c00381{font-size:63.000000px;}
.fs4_c00381{font-size:72.000000px;}
.fs1_c00381{font-size:81.000000px;}
.fs3_c00381{font-size:84.000000px;}
.fs0_c00381{font-size:87.000000px;}
.y0_c00381{bottom:0.000000px;}
.y1a_c00381{bottom:3.105000px;}
.y19_c00381{bottom:7.228369px;}
.y18_c00381{bottom:47.220000px;}
.y17_c00381{bottom:71.220000px;}
.y16_c00381{bottom:97.920000px;}
.y15_c00381{bottom:122.520000px;}
.y14_c00381{bottom:147.720000px;}
.y13_c00381{bottom:172.770000px;}
.y12_c00381{bottom:197.370000px;}
.y11_c00381{bottom:248.670000px;}
.y10_c00381{bottom:325.920000px;}
.yf_c00381{bottom:353.970000px;}
.ye_c00381{bottom:382.020000px;}
.yd_c00381{bottom:408.720000px;}
.yc_c00381{bottom:436.620000px;}
.yb_c00381{bottom:462.720000px;}
.ya_c00381{bottom:488.670000px;}
.y9_c00381{bottom:543.270000px;}
.y8_c00381{bottom:566.670000px;}
.y7_c00381{bottom:591.570000px;}
.y6_c00381{bottom:616.620000px;}
.y5_c00381{bottom:639.870000px;}
.y4_c00381{bottom:664.770000px;}
.y3_c00381{bottom:690.420000px;}
.y2_c00381{bottom:715.470000px;}
.y1_c00381{bottom:740.520000px;}
.h8_c00381{height:13.200073px;}
.h9_c00381{height:43.804688px;}
.h2_c00381{height:81.632812px;}
.h4_c00381{height:82.400391px;}
.h3_c00381{height:82.441406px;}
.h7_c00381{height:84.269531px;}
.h5_c00381{height:91.160156px;}
.h6_c00381{height:101.825684px;}
.h1_c00381{height:110.151855px;}
.h0_c00381{height:786.750000px;}
.w1_c00381{width:104.875500px;}
.w0_c00381{width:489.750000px;}
.x0_c00381{left:0.000000px;}
.x3_c00381{left:62.550000px;}
.x2_c00381{left:65.400000px;}
.x7_c00381{left:67.200000px;}
.x4_c00381{left:68.550000px;}
.x5_c00381{left:70.200000px;}
.xe_c00381{left:74.250000px;}
.x9_c00381{left:123.600000px;}
.xa_c00381{left:171.750000px;}
.x1_c00381{left:197.100000px;}
.xb_c00381{left:198.150000px;}
.xd_c00381{left:199.200000px;}
.xc_c00381{left:200.550000px;}
.x8_c00381{left:239.700000px;}
.x6_c00381{left:260.250000px;}
.xf_c00381{left:402.750000px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls5_c00381{letter-spacing:-13.333333pt;}
.ls3_c00381{letter-spacing:0.000000pt;}
.ls4_c00381{letter-spacing:2.666667pt;}
.ls0_c00381{letter-spacing:5.333333pt;}
.ls2_c00381{letter-spacing:14.357333pt;}
.ls1_c00381{letter-spacing:14.442667pt;}
.ls6_c00381{letter-spacing:29.333333pt;}
.ws5_c00381{word-spacing:-48.000000pt;}
.ws4_c00381{word-spacing:-32.693333pt;}
.ws0_c00381{word-spacing:-24.000000pt;}
.ws7_c00381{word-spacing:-18.090667pt;}
.ws3_c00381{word-spacing:-18.000000pt;}
.ws2_c00381{word-spacing:-16.162667pt;}
.ws6_c00381{word-spacing:-15.424000pt;}
.ws1_c00381{word-spacing:-2.090667pt;}
.ws8_c00381{word-spacing:0.000000pt;}
._1b_c00381{margin-left:-15.002667pt;}
._c_c00381{margin-left:-12.482667pt;}
._e_c00381{margin-left:-9.005333pt;}
._f_c00381{margin-left:-7.717333pt;}
._7_c00381{margin-left:-6.442667pt;}
._d_c00381{margin-left:-5.325333pt;}
._11_c00381{margin-left:-4.064000pt;}
._0_c00381{margin-left:-3.016000pt;}
._2_c00381{margin-left:-2.088000pt;}
._1_c00381{margin-left:-1.082667pt;}
._5_c00381{width:1.402667pt;}
._a_c00381{width:2.408000pt;}
._3_c00381{width:3.480000pt;}
._8_c00381{width:5.096000pt;}
._6_c00381{width:6.749333pt;}
._17_c00381{width:7.720000pt;}
._10_c00381{width:8.992000pt;}
._9_c00381{width:10.264000pt;}
._18_c00381{width:11.178667pt;}
._4_c00381{width:12.312000pt;}
._b_c00381{width:13.216000pt;}
._1a_c00381{width:14.146667pt;}
._12_c00381{width:17.546667pt;}
._19_c00381{width:19.936000pt;}
._14_c00381{width:21.352000pt;}
._16_c00381{width:28.746667pt;}
._13_c00381{width:66.706667pt;}
._15_c00381{width:126.680000pt;}
._1c_c00381{width:296.064000pt;}
.fs5_c00381{font-size:42.666667pt;}
.fs2_c00381{font-size:56.000000pt;}
.fs4_c00381{font-size:64.000000pt;}
.fs1_c00381{font-size:72.000000pt;}
.fs3_c00381{font-size:74.666667pt;}
.fs0_c00381{font-size:77.333333pt;}
.y0_c00381{bottom:0.000000pt;}
.y1a_c00381{bottom:2.760000pt;}
.y19_c00381{bottom:6.425217pt;}
.y18_c00381{bottom:41.973333pt;}
.y17_c00381{bottom:63.306667pt;}
.y16_c00381{bottom:87.040000pt;}
.y15_c00381{bottom:108.906667pt;}
.y14_c00381{bottom:131.306667pt;}
.y13_c00381{bottom:153.573333pt;}
.y12_c00381{bottom:175.440000pt;}
.y11_c00381{bottom:221.040000pt;}
.y10_c00381{bottom:289.706667pt;}
.yf_c00381{bottom:314.640000pt;}
.ye_c00381{bottom:339.573333pt;}
.yd_c00381{bottom:363.306667pt;}
.yc_c00381{bottom:388.106667pt;}
.yb_c00381{bottom:411.306667pt;}
.ya_c00381{bottom:434.373333pt;}
.y9_c00381{bottom:482.906667pt;}
.y8_c00381{bottom:503.706667pt;}
.y7_c00381{bottom:525.840000pt;}
.y6_c00381{bottom:548.106667pt;}
.y5_c00381{bottom:568.773333pt;}
.y4_c00381{bottom:590.906667pt;}
.y3_c00381{bottom:613.706667pt;}
.y2_c00381{bottom:635.973333pt;}
.y1_c00381{bottom:658.240000pt;}
.h8_c00381{height:11.733399pt;}
.h9_c00381{height:38.937500pt;}
.h2_c00381{height:72.562500pt;}
.h4_c00381{height:73.244792pt;}
.h3_c00381{height:73.281250pt;}
.h7_c00381{height:74.906250pt;}
.h5_c00381{height:81.031250pt;}
.h6_c00381{height:90.511719pt;}
.h1_c00381{height:97.912760pt;}
.h0_c00381{height:699.333333pt;}
.w1_c00381{width:93.222667pt;}
.w0_c00381{width:435.333333pt;}
.x0_c00381{left:0.000000pt;}
.x3_c00381{left:55.600000pt;}
.x2_c00381{left:58.133333pt;}
.x7_c00381{left:59.733333pt;}
.x4_c00381{left:60.933333pt;}
.x5_c00381{left:62.400000pt;}
.xe_c00381{left:66.000000pt;}
.x9_c00381{left:109.866667pt;}
.xa_c00381{left:152.666667pt;}
.x1_c00381{left:175.200000pt;}
.xb_c00381{left:176.133333pt;}
.xd_c00381{left:177.066667pt;}
.xc_c00381{left:178.266667pt;}
.x8_c00381{left:213.066667pt;}
.x6_c00381{left:231.333333pt;}
.xf_c00381{left:358.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_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_0262e19f0bc97ef8028de644.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00382;src:url('chunks/assets/font_bd9eb895d1d6edbca431aa2c.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:1.568848;font-style:normal;font-weight:normal;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_46468909b7e37bac0784c319.woff2')format("woff");}.ff3_c00382{font-family:ff3_c00382;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00382;src:url('chunks/assets/font_dd3c278772a4c8ae5814add1.woff2')format("woff");}.ff4_c00382{font-family:ff4_c00382;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00382;src:url('chunks/assets/font_19a1b0ff9851c901a491cd85.woff2')format("woff");}.ff5_c00382{font-family:ff5_c00382;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00382;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00382{font-family:ff6_c00382;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00382{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,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:3.000000px;}
.ls2_c00382{letter-spacing:9.000000px;}
.ls3_c00382{letter-spacing:36.000000px;}
.sc__c00382{text-shadow:none;}
.sc0_c00382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00382{-webkit-text-stroke:0px transparent;}
.sc0_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00382{word-spacing:-53.352000px;}
.ws3_c00382{word-spacing:-33.192000px;}
.ws1_c00382{word-spacing:-12.660000px;}
.ws4_c00382{word-spacing:0.000000px;}
.ws0_c00382{word-spacing:8.040000px;}
._1a_c00382{margin-left:-15.096000px;}
._1b_c00382{margin-left:-13.248000px;}
._1e_c00382{margin-left:-11.784000px;}
._a_c00382{margin-left:-10.668000px;}
._1f_c00382{margin-left:-9.348000px;}
._11_c00382{margin-left:-8.076000px;}
._20_c00382{margin-left:-6.984000px;}
._2_c00382{margin-left:-5.964000px;}
._d_c00382{margin-left:-4.464000px;}
._5_c00382{margin-left:-2.772000px;}
._c_c00382{margin-left:-1.296000px;}
._3_c00382{width:1.848000px;}
._4_c00382{width:3.024000px;}
._7_c00382{width:4.872000px;}
._19_c00382{width:5.952000px;}
._6_c00382{width:6.972000px;}
._1_c00382{width:7.980000px;}
._b_c00382{width:9.072000px;}
._9_c00382{width:10.836000px;}
._0_c00382{width:12.852000px;}
._18_c00382{width:14.040000px;}
._10_c00382{width:15.240000px;}
._e_c00382{width:16.488000px;}
._16_c00382{width:18.660000px;}
._14_c00382{width:19.680000px;}
._f_c00382{width:21.024000px;}
._13_c00382{width:25.740000px;}
._17_c00382{width:30.372000px;}
._15_c00382{width:33.540000px;}
._12_c00382{width:41.712000px;}
._1c_c00382{width:195.120000px;}
._1d_c00382{width:266.124000px;}
._8_c00382{width:303.072000px;}
._21_c00382{width:313.170000px;}
.fc2_c00382{color:transparent;}
.fc1_c00382{color:rgb(128,128,128);}
.fc0_c00382{color:rgb(0,0,0);}
.fs2_c00382{font-size:24.000000px;}
.fs5_c00382{font-size:48.000000px;}
.fs3_c00382{font-size:60.000000px;}
.fs1_c00382{font-size:72.000000px;}
.fs4_c00382{font-size:78.000000px;}
.fs0_c00382{font-size:84.000000px;}
.y0_c00382{bottom:0.000000px;}
.y1f_c00382{bottom:3.105000px;}
.y1e_c00382{bottom:7.228369px;}
.y1d_c00382{bottom:43.920000px;}
.y1c_c00382{bottom:71.520000px;}
.y1b_c00382{bottom:96.120000px;}
.y1a_c00382{bottom:120.870000px;}
.y19_c00382{bottom:146.820000px;}
.y18_c00382{bottom:170.820000px;}
.y17_c00382{bottom:197.070000px;}
.y16_c00382{bottom:221.070000px;}
.y15_c00382{bottom:246.270000px;}
.y14_c00382{bottom:271.320000px;}
.y13_c00382{bottom:293.970000px;}
.y12_c00382{bottom:319.170000px;}
.y11_c00382{bottom:342.870000px;}
.y10_c00382{bottom:367.470000px;}
.yf_c00382{bottom:393.420000px;}
.ye_c00382{bottom:416.820000px;}
.yd_c00382{bottom:442.020000px;}
.yc_c00382{bottom:466.470000px;}
.yb_c00382{bottom:492.120000px;}
.ya_c00382{bottom:516.270000px;}
.y9_c00382{bottom:540.570000px;}
.y8_c00382{bottom:565.920000px;}
.y7_c00382{bottom:590.220000px;}
.y6_c00382{bottom:614.970000px;}
.y5_c00382{bottom:639.570000px;}
.y4_c00382{bottom:664.470000px;}
.y3_c00382{bottom:689.220000px;}
.y2_c00382{bottom:713.820000px;}
.y1_c00382{bottom:739.020000px;}
.h6_c00382{height:13.200073px;}
.h7_c00382{height:43.804688px;}
.h4_c00382{height:76.552734px;}
.h2_c00382{height:82.400391px;}
.h3_c00382{height:91.160156px;}
.h5_c00382{height:98.756836px;}
.h0_c00382{height:774.600000px;}
.h1_c00382{height:774.750000px;}
.w2_c00382{width:104.875500px;}
.w1_c00382{width:549.750000px;}
.w0_c00382{width:549.975000px;}
.x0_c00382{left:0.000000px;}
.x5_c00382{left:39.150000px;}
.x2_c00382{left:40.950000px;}
.x3_c00382{left:42.300000px;}
.x4_c00382{left:43.950000px;}
.x1_c00382{left:166.350000px;}
.x9_c00382{left:226.801758px;}
.x6_c00382{left:262.350000px;}
.x7_c00382{left:290.550000px;}
.x8_c00382{left:298.050000px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls1_c00382{letter-spacing:0.000000pt;}
.ls0_c00382{letter-spacing:2.666667pt;}
.ls2_c00382{letter-spacing:8.000000pt;}
.ls3_c00382{letter-spacing:32.000000pt;}
.ws2_c00382{word-spacing:-47.424000pt;}
.ws3_c00382{word-spacing:-29.504000pt;}
.ws1_c00382{word-spacing:-11.253333pt;}
.ws4_c00382{word-spacing:0.000000pt;}
.ws0_c00382{word-spacing:7.146667pt;}
._1a_c00382{margin-left:-13.418667pt;}
._1b_c00382{margin-left:-11.776000pt;}
._1e_c00382{margin-left:-10.474667pt;}
._a_c00382{margin-left:-9.482667pt;}
._1f_c00382{margin-left:-8.309333pt;}
._11_c00382{margin-left:-7.178667pt;}
._20_c00382{margin-left:-6.208000pt;}
._2_c00382{margin-left:-5.301333pt;}
._d_c00382{margin-left:-3.968000pt;}
._5_c00382{margin-left:-2.464000pt;}
._c_c00382{margin-left:-1.152000pt;}
._3_c00382{width:1.642667pt;}
._4_c00382{width:2.688000pt;}
._7_c00382{width:4.330667pt;}
._19_c00382{width:5.290667pt;}
._6_c00382{width:6.197333pt;}
._1_c00382{width:7.093333pt;}
._b_c00382{width:8.064000pt;}
._9_c00382{width:9.632000pt;}
._0_c00382{width:11.424000pt;}
._18_c00382{width:12.480000pt;}
._10_c00382{width:13.546667pt;}
._e_c00382{width:14.656000pt;}
._16_c00382{width:16.586667pt;}
._14_c00382{width:17.493333pt;}
._f_c00382{width:18.688000pt;}
._13_c00382{width:22.880000pt;}
._17_c00382{width:26.997333pt;}
._15_c00382{width:29.813333pt;}
._12_c00382{width:37.077333pt;}
._1c_c00382{width:173.440000pt;}
._1d_c00382{width:236.554667pt;}
._8_c00382{width:269.397333pt;}
._21_c00382{width:278.373333pt;}
.fs2_c00382{font-size:21.333333pt;}
.fs5_c00382{font-size:42.666667pt;}
.fs3_c00382{font-size:53.333333pt;}
.fs1_c00382{font-size:64.000000pt;}
.fs4_c00382{font-size:69.333333pt;}
.fs0_c00382{font-size:74.666667pt;}
.y0_c00382{bottom:0.000000pt;}
.y1f_c00382{bottom:2.760000pt;}
.y1e_c00382{bottom:6.425217pt;}
.y1d_c00382{bottom:39.040000pt;}
.y1c_c00382{bottom:63.573333pt;}
.y1b_c00382{bottom:85.440000pt;}
.y1a_c00382{bottom:107.440000pt;}
.y19_c00382{bottom:130.506667pt;}
.y18_c00382{bottom:151.840000pt;}
.y17_c00382{bottom:175.173333pt;}
.y16_c00382{bottom:196.506667pt;}
.y15_c00382{bottom:218.906667pt;}
.y14_c00382{bottom:241.173333pt;}
.y13_c00382{bottom:261.306667pt;}
.y12_c00382{bottom:283.706667pt;}
.y11_c00382{bottom:304.773333pt;}
.y10_c00382{bottom:326.640000pt;}
.yf_c00382{bottom:349.706667pt;}
.ye_c00382{bottom:370.506667pt;}
.yd_c00382{bottom:392.906667pt;}
.yc_c00382{bottom:414.640000pt;}
.yb_c00382{bottom:437.440000pt;}
.ya_c00382{bottom:458.906667pt;}
.y9_c00382{bottom:480.506667pt;}
.y8_c00382{bottom:503.040000pt;}
.y7_c00382{bottom:524.640000pt;}
.y6_c00382{bottom:546.640000pt;}
.y5_c00382{bottom:568.506667pt;}
.y4_c00382{bottom:590.640000pt;}
.y3_c00382{bottom:612.640000pt;}
.y2_c00382{bottom:634.506667pt;}
.y1_c00382{bottom:656.906667pt;}
.h6_c00382{height:11.733399pt;}
.h7_c00382{height:38.937500pt;}
.h4_c00382{height:68.046875pt;}
.h2_c00382{height:73.244792pt;}
.h3_c00382{height:81.031250pt;}
.h5_c00382{height:87.783854pt;}
.h0_c00382{height:688.533333pt;}
.h1_c00382{height:688.666667pt;}
.w2_c00382{width:93.222667pt;}
.w1_c00382{width:488.666667pt;}
.w0_c00382{width:488.866667pt;}
.x0_c00382{left:0.000000pt;}
.x5_c00382{left:34.800000pt;}
.x2_c00382{left:36.400000pt;}
.x3_c00382{left:37.600000pt;}
.x4_c00382{left:39.066667pt;}
.x1_c00382{left:147.866667pt;}
.x9_c00382{left:201.601563pt;}
.x6_c00382{left:233.200000pt;}
.x7_c00382{left:258.266667pt;}
.x8_c00382{left:264.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_715b39dc9e1fc5b557226331.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.480469;font-style:normal;font-weight:normal;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_8f0e3f29295ec195df0d665f.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:1.568848;font-style:normal;font-weight:normal;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_003dca98ae0dce2580732ce7.woff2')format("woff");}.ff3_c00383{font-family:ff3_c00383;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00383{font-family:ff4_c00383;line-height:1.219238;font-style: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;}
.ls2_c00383{letter-spacing:-6.000000px;}
.ls1_c00383{letter-spacing:0.000000px;}
.ls0_c00383{letter-spacing:3.000000px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00383{word-spacing:-24.051000px;}
.ws0_c00383{word-spacing:-17.352000px;}
.ws2_c00383{word-spacing:0.000000px;}
._16_c00383{margin-left:-20.424000px;}
._14_c00383{margin-left:-14.463000px;}
._1b_c00383{margin-left:-12.993000px;}
._19_c00383{margin-left:-11.631000px;}
._18_c00383{margin-left:-9.576000px;}
._e_c00383{margin-left:-8.112000px;}
._13_c00383{margin-left:-6.936000px;}
._11_c00383{margin-left:-5.280000px;}
._9_c00383{margin-left:-3.960000px;}
._a_c00383{margin-left:-2.808000px;}
._8_c00383{margin-left:-1.656000px;}
._d_c00383{width:1.032000px;}
._c_c00383{width:2.064000px;}
._4_c00383{width:3.120000px;}
._b_c00383{width:4.176000px;}
._10_c00383{width:5.415000px;}
._1_c00383{width:6.480000px;}
._f_c00383{width:7.497000px;}
._12_c00383{width:8.592000px;}
._17_c00383{width:9.633000px;}
._3_c00383{width:11.700000px;}
._2_c00383{width:13.020000px;}
._15_c00383{width:14.415000px;}
._5_c00383{width:15.540000px;}
._0_c00383{width:16.860000px;}
._7_c00383{width:18.180000px;}
._1e_c00383{width:22.608000px;}
._1a_c00383{width:23.832000px;}
._1d_c00383{width:26.904000px;}
._6_c00383{width:29.940000px;}
._1c_c00383{width:37.227000px;}
.fc2_c00383{color:transparent;}
.fc1_c00383{color:rgb(128,128,128);}
.fc0_c00383{color:rgb(0,0,0);}
.fs3_c00383{font-size:48.000000px;}
.fs0_c00383{font-size:60.000000px;}
.fs2_c00383{font-size:63.000000px;}
.fs1_c00383{font-size:72.000000px;}
.y0_c00383{bottom:0.000000px;}
.y1f_c00383{bottom:3.105000px;}
.y1e_c00383{bottom:7.228357px;}
.y1d_c00383{bottom:54.780000px;}
.y1c_c00383{bottom:78.630000px;}
.y1b_c00383{bottom:103.980000px;}
.y1a_c00383{bottom:129.630000px;}
.y19_c00383{bottom:154.530000px;}
.y18_c00383{bottom:179.580000px;}
.y17_c00383{bottom:204.930000px;}
.y16_c00383{bottom:230.280000px;}
.y15_c00383{bottom:254.430000px;}
.y14_c00383{bottom:279.780000px;}
.y13_c00383{bottom:305.130000px;}
.y12_c00383{bottom:328.830000px;}
.y11_c00383{bottom:353.430000px;}
.y10_c00383{bottom:378.630000px;}
.yf_c00383{bottom:403.980000px;}
.ye_c00383{bottom:427.380000px;}
.yd_c00383{bottom:451.980000px;}
.yc_c00383{bottom:475.830000px;}
.yb_c00383{bottom:500.880000px;}
.ya_c00383{bottom:525.780000px;}
.y9_c00383{bottom:550.230000px;}
.y8_c00383{bottom:575.130000px;}
.y7_c00383{bottom:599.730000px;}
.y6_c00383{bottom:624.480000px;}
.y5_c00383{bottom:648.780000px;}
.y4_c00383{bottom:673.680000px;}
.y3_c00383{bottom:698.730000px;}
.y2_c00383{bottom:723.330000px;}
.y1_c00383{bottom:748.980000px;}
.h4_c00383{height:13.200074px;}
.h5_c00383{height:43.804688px;}
.h2_c00383{height:75.966797px;}
.h3_c00383{height:91.160156px;}
.h1_c00383{height:784.500000px;}
.h0_c00383{height:784.650000px;}
.w2_c00383{width:104.875500px;}
.w0_c00383{width:504.375000px;}
.w1_c00383{width:504.750000px;}
.x0_c00383{left:0.000000px;}
.x2_c00383{left:78.600000px;}
.x4_c00383{left:79.650000px;}
.x3_c00383{left:80.700000px;}
.x6_c00383{left:204.001740px;}
.x1_c00383{left:210.900000px;}
.x5_c00383{left:430.350000px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls2_c00383{letter-spacing:-5.333333pt;}
.ls1_c00383{letter-spacing:0.000000pt;}
.ls0_c00383{letter-spacing:2.666667pt;}
.ws1_c00383{word-spacing:-21.378667pt;}
.ws0_c00383{word-spacing:-15.424000pt;}
.ws2_c00383{word-spacing:0.000000pt;}
._16_c00383{margin-left:-18.154667pt;}
._14_c00383{margin-left:-12.856000pt;}
._1b_c00383{margin-left:-11.549333pt;}
._19_c00383{margin-left:-10.338667pt;}
._18_c00383{margin-left:-8.512000pt;}
._e_c00383{margin-left:-7.210667pt;}
._13_c00383{margin-left:-6.165333pt;}
._11_c00383{margin-left:-4.693333pt;}
._9_c00383{margin-left:-3.520000pt;}
._a_c00383{margin-left:-2.496000pt;}
._8_c00383{margin-left:-1.472000pt;}
._d_c00383{width:0.917333pt;}
._c_c00383{width:1.834667pt;}
._4_c00383{width:2.773333pt;}
._b_c00383{width:3.712000pt;}
._10_c00383{width:4.813333pt;}
._1_c00383{width:5.760000pt;}
._f_c00383{width:6.664000pt;}
._12_c00383{width:7.637333pt;}
._17_c00383{width:8.562667pt;}
._3_c00383{width:10.400000pt;}
._2_c00383{width:11.573333pt;}
._15_c00383{width:12.813333pt;}
._5_c00383{width:13.813333pt;}
._0_c00383{width:14.986667pt;}
._7_c00383{width:16.160000pt;}
._1e_c00383{width:20.096000pt;}
._1a_c00383{width:21.184000pt;}
._1d_c00383{width:23.914667pt;}
._6_c00383{width:26.613333pt;}
._1c_c00383{width:33.090667pt;}
.fs3_c00383{font-size:42.666667pt;}
.fs0_c00383{font-size:53.333333pt;}
.fs2_c00383{font-size:56.000000pt;}
.fs1_c00383{font-size:64.000000pt;}
.y0_c00383{bottom:0.000000pt;}
.y1f_c00383{bottom:2.760000pt;}
.y1e_c00383{bottom:6.425206pt;}
.y1d_c00383{bottom:48.693333pt;}
.y1c_c00383{bottom:69.893333pt;}
.y1b_c00383{bottom:92.426667pt;}
.y1a_c00383{bottom:115.226667pt;}
.y19_c00383{bottom:137.360000pt;}
.y18_c00383{bottom:159.626667pt;}
.y17_c00383{bottom:182.160000pt;}
.y16_c00383{bottom:204.693333pt;}
.y15_c00383{bottom:226.160000pt;}
.y14_c00383{bottom:248.693333pt;}
.y13_c00383{bottom:271.226667pt;}
.y12_c00383{bottom:292.293333pt;}
.y11_c00383{bottom:314.160000pt;}
.y10_c00383{bottom:336.560000pt;}
.yf_c00383{bottom:359.093333pt;}
.ye_c00383{bottom:379.893333pt;}
.yd_c00383{bottom:401.760000pt;}
.yc_c00383{bottom:422.960000pt;}
.yb_c00383{bottom:445.226667pt;}
.ya_c00383{bottom:467.360000pt;}
.y9_c00383{bottom:489.093333pt;}
.y8_c00383{bottom:511.226667pt;}
.y7_c00383{bottom:533.093333pt;}
.y6_c00383{bottom:555.093333pt;}
.y5_c00383{bottom:576.693333pt;}
.y4_c00383{bottom:598.826667pt;}
.y3_c00383{bottom:621.093333pt;}
.y2_c00383{bottom:642.960000pt;}
.y1_c00383{bottom:665.760000pt;}
.h4_c00383{height:11.733399pt;}
.h5_c00383{height:38.937500pt;}
.h2_c00383{height:67.526042pt;}
.h3_c00383{height:81.031250pt;}
.h1_c00383{height:697.333333pt;}
.h0_c00383{height:697.466667pt;}
.w2_c00383{width:93.222667pt;}
.w0_c00383{width:448.333333pt;}
.w1_c00383{width:448.666667pt;}
.x0_c00383{left:0.000000pt;}
.x2_c00383{left:69.866667pt;}
.x4_c00383{left:70.800000pt;}
.x3_c00383{left:71.733333pt;}
.x6_c00383{left:181.334880pt;}
.x1_c00383{left:187.466667pt;}
.x5_c00383{left:382.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d743c7472312f77a97b2a39e.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00384;src:url('chunks/assets/font_05d97da9ef891f4fa0ba5ccc.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00384;src:url('chunks/assets/font_5bf49b33dd4b851a9569bab7.woff2')format("woff");}.ff3_c00384{font-family:ff3_c00384;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00384;src:url('chunks/assets/font_aae3b49d7b384b6eede65e22.woff2')format("woff");}.ff4_c00384{font-family:ff4_c00384;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00384;src:url('chunks/assets/font_99380492272b12646d93332e.woff2')format("woff");}.ff5_c00384{font-family:ff5_c00384;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00384;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00384{font-family:ff6_c00384;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00384{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00384{vertical-align:0.000000px;}
.ls4_c00384{letter-spacing:0.000000px;}
.ls2_c00384{letter-spacing:2.988000px;}
.ls0_c00384{letter-spacing:3.000000px;}
.ls3_c00384{letter-spacing:9.168000px;}
.ls1_c00384{letter-spacing:10.788000px;}
.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:-42.000000px;}
.ws1_c00384{word-spacing:0.000000px;}
._14_c00384{margin-left:-21.144000px;}
._11_c00384{margin-left:-11.664000px;}
._10_c00384{margin-left:-10.656000px;}
._12_c00384{margin-left:-8.832000px;}
._e_c00384{margin-left:-7.080000px;}
._c_c00384{margin-left:-5.520000px;}
._7_c00384{margin-left:-4.032000px;}
._8_c00384{margin-left:-3.024000px;}
._9_c00384{margin-left:-1.728000px;}
._a_c00384{width:1.656000px;}
._b_c00384{width:2.664000px;}
._d_c00384{width:4.128000px;}
._2_c00384{width:5.376000px;}
._f_c00384{width:6.408000px;}
._1_c00384{width:8.316000px;}
._3_c00384{width:9.324000px;}
._5_c00384{width:10.530000px;}
._13_c00384{width:12.312000px;}
._0_c00384{width:13.776000px;}
._15_c00384{width:15.084000px;}
._6_c00384{width:18.549000px;}
._17_c00384{width:19.656000px;}
._18_c00384{width:28.350000px;}
._16_c00384{width:30.384000px;}
._1a_c00384{width:72.852000px;}
._19_c00384{width:203.679000px;}
._4_c00384{width:368.874000px;}
.fc2_c00384{color:transparent;}
.fc1_c00384{color:rgb(128,128,128);}
.fc0_c00384{color:rgb(0,0,0);}
.fs4_c00384{font-size:48.000000px;}
.fs3_c00384{font-size:63.000000px;}
.fs2_c00384{font-size:72.000000px;}
.fs1_c00384{font-size:81.000000px;}
.fs0_c00384{font-size:84.000000px;}
.y0_c00384{bottom:0.000000px;}
.y1f_c00384{bottom:3.105000px;}
.y1e_c00384{bottom:7.228363px;}
.y1d_c00384{bottom:48.600000px;}
.y1c_c00384{bottom:75.150000px;}
.y1b_c00384{bottom:100.500000px;}
.y1a_c00384{bottom:125.550000px;}
.y19_c00384{bottom:148.500000px;}
.y18_c00384{bottom:172.350000px;}
.y17_c00384{bottom:200.400000px;}
.y16_c00384{bottom:225.000000px;}
.y15_c00384{bottom:249.300000px;}
.y14_c00384{bottom:274.950000px;}
.y13_c00384{bottom:299.250000px;}
.y12_c00384{bottom:322.950000px;}
.y11_c00384{bottom:346.200000px;}
.y10_c00384{bottom:370.500000px;}
.yf_c00384{bottom:395.250000px;}
.ye_c00384{bottom:420.150000px;}
.yd_c00384{bottom:445.200000px;}
.yc_c00384{bottom:469.500000px;}
.yb_c00384{bottom:493.500000px;}
.ya_c00384{bottom:518.850000px;}
.y9_c00384{bottom:543.750000px;}
.y8_c00384{bottom:567.750000px;}
.y7_c00384{bottom:592.650000px;}
.y6_c00384{bottom:617.850000px;}
.y5_c00384{bottom:642.600000px;}
.y4_c00384{bottom:666.900000px;}
.y3_c00384{bottom:691.500000px;}
.y2_c00384{bottom:716.550000px;}
.y1_c00384{bottom:741.750000px;}
.h5_c00384{height:13.200074px;}
.h6_c00384{height:43.804688px;}
.h4_c00384{height:79.765137px;}
.h2_c00384{height:82.400391px;}
.h3_c00384{height:91.160156px;}
.h0_c00384{height:785.700000px;}
.h1_c00384{height:786.000000px;}
.w2_c00384{width:104.875500px;}
.w1_c00384{width:521.250000px;}
.w0_c00384{width:521.400000px;}
.x0_c00384{left:0.000000px;}
.x2_c00384{left:30.000000px;}
.x6_c00384{left:33.150000px;}
.x5_c00384{left:35.400000px;}
.x3_c00384{left:37.350000px;}
.x4_c00384{left:38.850000px;}
.x1_c00384{left:148.950000px;}
.x8_c00384{left:212.514267px;}
.x7_c00384{left:272.400000px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls4_c00384{letter-spacing:0.000000pt;}
.ls2_c00384{letter-spacing:2.656000pt;}
.ls0_c00384{letter-spacing:2.666667pt;}
.ls3_c00384{letter-spacing:8.149333pt;}
.ls1_c00384{letter-spacing:9.589333pt;}
.ws0_c00384{word-spacing:-37.333333pt;}
.ws1_c00384{word-spacing:0.000000pt;}
._14_c00384{margin-left:-18.794667pt;}
._11_c00384{margin-left:-10.368000pt;}
._10_c00384{margin-left:-9.472000pt;}
._12_c00384{margin-left:-7.850667pt;}
._e_c00384{margin-left:-6.293333pt;}
._c_c00384{margin-left:-4.906667pt;}
._7_c00384{margin-left:-3.584000pt;}
._8_c00384{margin-left:-2.688000pt;}
._9_c00384{margin-left:-1.536000pt;}
._a_c00384{width:1.472000pt;}
._b_c00384{width:2.368000pt;}
._d_c00384{width:3.669333pt;}
._2_c00384{width:4.778667pt;}
._f_c00384{width:5.696000pt;}
._1_c00384{width:7.392000pt;}
._3_c00384{width:8.288000pt;}
._5_c00384{width:9.360000pt;}
._13_c00384{width:10.944000pt;}
._0_c00384{width:12.245333pt;}
._15_c00384{width:13.408000pt;}
._6_c00384{width:16.488000pt;}
._17_c00384{width:17.472000pt;}
._18_c00384{width:25.200000pt;}
._16_c00384{width:27.008000pt;}
._1a_c00384{width:64.757333pt;}
._19_c00384{width:181.048000pt;}
._4_c00384{width:327.888000pt;}
.fs4_c00384{font-size:42.666667pt;}
.fs3_c00384{font-size:56.000000pt;}
.fs2_c00384{font-size:64.000000pt;}
.fs1_c00384{font-size:72.000000pt;}
.fs0_c00384{font-size:74.666667pt;}
.y0_c00384{bottom:0.000000pt;}
.y1f_c00384{bottom:2.760000pt;}
.y1e_c00384{bottom:6.425212pt;}
.y1d_c00384{bottom:43.200000pt;}
.y1c_c00384{bottom:66.800000pt;}
.y1b_c00384{bottom:89.333333pt;}
.y1a_c00384{bottom:111.600000pt;}
.y19_c00384{bottom:132.000000pt;}
.y18_c00384{bottom:153.200000pt;}
.y17_c00384{bottom:178.133333pt;}
.y16_c00384{bottom:200.000000pt;}
.y15_c00384{bottom:221.600000pt;}
.y14_c00384{bottom:244.400000pt;}
.y13_c00384{bottom:266.000000pt;}
.y12_c00384{bottom:287.066667pt;}
.y11_c00384{bottom:307.733333pt;}
.y10_c00384{bottom:329.333333pt;}
.yf_c00384{bottom:351.333333pt;}
.ye_c00384{bottom:373.466667pt;}
.yd_c00384{bottom:395.733333pt;}
.yc_c00384{bottom:417.333333pt;}
.yb_c00384{bottom:438.666667pt;}
.ya_c00384{bottom:461.200000pt;}
.y9_c00384{bottom:483.333333pt;}
.y8_c00384{bottom:504.666667pt;}
.y7_c00384{bottom:526.800000pt;}
.y6_c00384{bottom:549.200000pt;}
.y5_c00384{bottom:571.200000pt;}
.y4_c00384{bottom:592.800000pt;}
.y3_c00384{bottom:614.666667pt;}
.y2_c00384{bottom:636.933333pt;}
.y1_c00384{bottom:659.333333pt;}
.h5_c00384{height:11.733399pt;}
.h6_c00384{height:38.937500pt;}
.h4_c00384{height:70.902344pt;}
.h2_c00384{height:73.244792pt;}
.h3_c00384{height:81.031250pt;}
.h0_c00384{height:698.400000pt;}
.h1_c00384{height:698.666667pt;}
.w2_c00384{width:93.222667pt;}
.w1_c00384{width:463.333333pt;}
.w0_c00384{width:463.466667pt;}
.x0_c00384{left:0.000000pt;}
.x2_c00384{left:26.666667pt;}
.x6_c00384{left:29.466667pt;}
.x5_c00384{left:31.466667pt;}
.x3_c00384{left:33.200000pt;}
.x4_c00384{left:34.533333pt;}
.x1_c00384{left:132.400000pt;}
.x8_c00384{left:188.901571pt;}
.x7_c00384{left:242.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8cec68d4efff170031730d08.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.480469;font-style:normal;font-weight:normal;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_deab6cfd6898dfe0c6778876.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:1.568848;font-style:normal;font-weight:normal;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_9b6e5227ba5568e33477ce7a.woff2')format("woff");}.ff3_c00385{font-family:ff3_c00385;line-height:1.575000;font-style:normal;font-weight:normal;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_5728bd63ec3e2d09752c48a8.woff2')format("woff");}.ff4_c00385{font-family:ff4_c00385;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00385;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00385{font-family:ff5_c00385;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00385{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00385{vertical-align:0.000000px;}
.ls3_c00385{letter-spacing:-6.000000px;}
.ls1_c00385{letter-spacing:0.000000px;}
.ls2_c00385{letter-spacing:3.000000px;}
.ls4_c00385{letter-spacing:6.000000px;}
.ls0_c00385{letter-spacing:8.400000px;}
.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:-24.051000px;}
.ws1_c00385{word-spacing:0.000000px;}
._1_c00385{margin-left:-11.310000px;}
._8_c00385{margin-left:-6.660000px;}
._9_c00385{margin-left:-5.256000px;}
._3_c00385{margin-left:-3.306000px;}
._6_c00385{margin-left:-2.202000px;}
._2_c00385{margin-left:-1.044000px;}
._0_c00385{width:1.044000px;}
._4_c00385{width:2.808000px;}
._5_c00385{width:4.464000px;}
._c_c00385{width:6.066000px;}
._7_c00385{width:7.758000px;}
._a_c00385{width:10.236000px;}
._e_c00385{width:12.132000px;}
._d_c00385{width:15.660000px;}
._b_c00385{width:16.668000px;}
._f_c00385{width:18.024000px;}
.fc2_c00385{color:transparent;}
.fc1_c00385{color:rgb(128,128,128);}
.fc0_c00385{color:rgb(0,0,0);}
.fs4_c00385{font-size:48.000000px;}
.fs3_c00385{font-size:57.000000px;}
.fs2_c00385{font-size:63.000000px;}
.fs1_c00385{font-size:72.000000px;}
.fs0_c00385{font-size:87.000000px;}
.y0_c00385{bottom:0.000000px;}
.y1e_c00385{bottom:3.105000px;}
.y1d_c00385{bottom:7.228371px;}
.y1c_c00385{bottom:68.865000px;}
.y1b_c00385{bottom:95.565000px;}
.y1a_c00385{bottom:120.165000px;}
.y19_c00385{bottom:145.215000px;}
.y18_c00385{bottom:170.565000px;}
.y17_c00385{bottom:195.165000px;}
.y16_c00385{bottom:220.365000px;}
.y15_c00385{bottom:245.415000px;}
.y14_c00385{bottom:270.315000px;}
.y13_c00385{bottom:294.615000px;}
.y12_c00385{bottom:319.665000px;}
.y11_c00385{bottom:343.965000px;}
.y10_c00385{bottom:369.315000px;}
.yf_c00385{bottom:393.915000px;}
.ye_c00385{bottom:418.215000px;}
.yd_c00385{bottom:443.265000px;}
.yc_c00385{bottom:467.565000px;}
.yb_c00385{bottom:491.715000px;}
.ya_c00385{bottom:516.765000px;}
.y9_c00385{bottom:541.665000px;}
.y8_c00385{bottom:566.115000px;}
.y7_c00385{bottom:591.015000px;}
.y6_c00385{bottom:615.015000px;}
.y5_c00385{bottom:639.915000px;}
.y4_c00385{bottom:664.665000px;}
.y3_c00385{bottom:689.565000px;}
.y2_c00385{bottom:714.465000px;}
.y1_c00385{bottom:739.815000px;}
.h4_c00385{height:13.200074px;}
.h5_c00385{height:43.804688px;}
.h3_c00385{height:91.160156px;}
.h2_c00385{height:110.151855px;}
.h0_c00385{height:779.775000px;}
.h1_c00385{height:780.000000px;}
.w2_c00385{width:104.875500px;}
.w1_c00385{width:514.500000px;}
.w0_c00385{width:514.650000px;}
.x0_c00385{left:0.000000px;}
.x2_c00385{left:86.400000px;}
.x3_c00385{left:87.450000px;}
.x4_c00385{left:88.650000px;}
.x5_c00385{left:90.000000px;}
.x6_c00385{left:91.350000px;}
.x7_c00385{left:92.700000px;}
.x9_c00385{left:209.139267px;}
.x1_c00385{left:213.600000px;}
.x8_c00385{left:440.400000px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls3_c00385{letter-spacing:-5.333333pt;}
.ls1_c00385{letter-spacing:0.000000pt;}
.ls2_c00385{letter-spacing:2.666667pt;}
.ls4_c00385{letter-spacing:5.333333pt;}
.ls0_c00385{letter-spacing:7.466667pt;}
.ws0_c00385{word-spacing:-21.378667pt;}
.ws1_c00385{word-spacing:0.000000pt;}
._1_c00385{margin-left:-10.053333pt;}
._8_c00385{margin-left:-5.920000pt;}
._9_c00385{margin-left:-4.672000pt;}
._3_c00385{margin-left:-2.938667pt;}
._6_c00385{margin-left:-1.957333pt;}
._2_c00385{margin-left:-0.928000pt;}
._0_c00385{width:0.928000pt;}
._4_c00385{width:2.496000pt;}
._5_c00385{width:3.968000pt;}
._c_c00385{width:5.392000pt;}
._7_c00385{width:6.896000pt;}
._a_c00385{width:9.098667pt;}
._e_c00385{width:10.784000pt;}
._d_c00385{width:13.920000pt;}
._b_c00385{width:14.816000pt;}
._f_c00385{width:16.021333pt;}
.fs4_c00385{font-size:42.666667pt;}
.fs3_c00385{font-size:50.666667pt;}
.fs2_c00385{font-size:56.000000pt;}
.fs1_c00385{font-size:64.000000pt;}
.fs0_c00385{font-size:77.333333pt;}
.y0_c00385{bottom:0.000000pt;}
.y1e_c00385{bottom:2.760000pt;}
.y1d_c00385{bottom:6.425219pt;}
.y1c_c00385{bottom:61.213333pt;}
.y1b_c00385{bottom:84.946667pt;}
.y1a_c00385{bottom:106.813333pt;}
.y19_c00385{bottom:129.080000pt;}
.y18_c00385{bottom:151.613333pt;}
.y17_c00385{bottom:173.480000pt;}
.y16_c00385{bottom:195.880000pt;}
.y15_c00385{bottom:218.146667pt;}
.y14_c00385{bottom:240.280000pt;}
.y13_c00385{bottom:261.880000pt;}
.y12_c00385{bottom:284.146667pt;}
.y11_c00385{bottom:305.746667pt;}
.y10_c00385{bottom:328.280000pt;}
.yf_c00385{bottom:350.146667pt;}
.ye_c00385{bottom:371.746667pt;}
.yd_c00385{bottom:394.013333pt;}
.yc_c00385{bottom:415.613333pt;}
.yb_c00385{bottom:437.080000pt;}
.ya_c00385{bottom:459.346667pt;}
.y9_c00385{bottom:481.480000pt;}
.y8_c00385{bottom:503.213333pt;}
.y7_c00385{bottom:525.346667pt;}
.y6_c00385{bottom:546.680000pt;}
.y5_c00385{bottom:568.813333pt;}
.y4_c00385{bottom:590.813333pt;}
.y3_c00385{bottom:612.946667pt;}
.y2_c00385{bottom:635.080000pt;}
.y1_c00385{bottom:657.613333pt;}
.h4_c00385{height:11.733399pt;}
.h5_c00385{height:38.937500pt;}
.h3_c00385{height:81.031250pt;}
.h2_c00385{height:97.912760pt;}
.h0_c00385{height:693.133333pt;}
.h1_c00385{height:693.333333pt;}
.w2_c00385{width:93.222667pt;}
.w1_c00385{width:457.333333pt;}
.w0_c00385{width:457.466667pt;}
.x0_c00385{left:0.000000pt;}
.x2_c00385{left:76.800000pt;}
.x3_c00385{left:77.733333pt;}
.x4_c00385{left:78.800000pt;}
.x5_c00385{left:80.000000pt;}
.x6_c00385{left:81.200000pt;}
.x7_c00385{left:82.400000pt;}
.x9_c00385{left:185.901571pt;}
.x1_c00385{left:189.866667pt;}
.x8_c00385{left:391.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bab19a78f86d2ea639602d0b.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.480469;font-style:normal;font-weight:normal;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_6a8a066a66d08fc612c2a6b6.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:1.568848;font-style:normal;font-weight:normal;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_947a6f7c33b073e095b3f16d.woff2')format("woff");}.ff3_c00386{font-family:ff3_c00386;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00386;src:url('chunks/assets/font_c3d30719151b5c1084e4742d.woff2')format("woff");}.ff4_c00386{font-family:ff4_c00386;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00386;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00386{font-family:ff5_c00386;line-height:1.219238;font-style: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.588000px;}
.ls2_c00386{letter-spacing:3.000000px;}
.ls3_c00386{letter-spacing:6.000000px;}
.ls4_c00386{letter-spacing:9.000000px;}
.sc__c00386{text-shadow:none;}
.sc0_c00386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00386{-webkit-text-stroke:0px transparent;}
.sc0_c00386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00386{word-spacing:0.000000px;}
._13_c00386{margin-left:-15.432000px;}
._14_c00386{margin-left:-9.360000px;}
._10_c00386{margin-left:-6.651000px;}
._5_c00386{margin-left:-5.304000px;}
._11_c00386{margin-left:-4.056000px;}
._2_c00386{margin-left:-3.042000px;}
._1_c00386{margin-left:-1.482000px;}
._0_c00386{width:1.404000px;}
._6_c00386{width:2.664000px;}
._a_c00386{width:3.762000px;}
._b_c00386{width:4.791000px;}
._9_c00386{width:5.802000px;}
._d_c00386{width:7.644000px;}
._8_c00386{width:8.796000px;}
._7_c00386{width:9.936000px;}
._4_c00386{width:11.310000px;}
._c_c00386{width:13.071000px;}
._12_c00386{width:14.718000px;}
._f_c00386{width:15.912000px;}
._e_c00386{width:17.142000px;}
._15_c00386{width:25.926000px;}
._16_c00386{width:36.594000px;}
._17_c00386{width:318.960000px;}
._3_c00386{width:350.688000px;}
.fc2_c00386{color:transparent;}
.fc1_c00386{color:rgb(128,128,128);}
.fc0_c00386{color:rgb(0,0,0);}
.fs5_c00386{font-size:48.000000px;}
.fs4_c00386{font-size:63.000000px;}
.fs2_c00386{font-size:69.000000px;}
.fs1_c00386{font-size:72.000000px;}
.fs0_c00386{font-size:78.000000px;}
.fs3_c00386{font-size:87.000000px;}
.y0_c00386{bottom:0.000000px;}
.y1e_c00386{bottom:3.105000px;}
.y1d_c00386{bottom:7.228355px;}
.y1c_c00386{bottom:76.485000px;}
.y1b_c00386{bottom:102.585000px;}
.y1a_c00386{bottom:127.785000px;}
.y19_c00386{bottom:151.185000px;}
.y18_c00386{bottom:177.735000px;}
.y17_c00386{bottom:202.785000px;}
.y16_c00386{bottom:227.085000px;}
.y15_c00386{bottom:251.685000px;}
.y14_c00386{bottom:276.435000px;}
.y13_c00386{bottom:301.335000px;}
.y12_c00386{bottom:325.035000px;}
.y11_c00386{bottom:347.985000px;}
.y10_c00386{bottom:372.585000px;}
.yf_c00386{bottom:397.485000px;}
.ye_c00386{bottom:421.785000px;}
.yd_c00386{bottom:446.685000px;}
.yc_c00386{bottom:471.735000px;}
.yb_c00386{bottom:496.785000px;}
.ya_c00386{bottom:520.335000px;}
.y9_c00386{bottom:544.635000px;}
.y8_c00386{bottom:570.735000px;}
.y7_c00386{bottom:594.585000px;}
.y6_c00386{bottom:618.885000px;}
.y5_c00386{bottom:644.835000px;}
.y4_c00386{bottom:668.235000px;}
.y3_c00386{bottom:693.135000px;}
.y2_c00386{bottom:718.185000px;}
.y1_c00386{bottom:742.785000px;}
.h5_c00386{height:13.200074px;}
.h6_c00386{height:43.804688px;}
.h3_c00386{height:91.160156px;}
.h2_c00386{height:91.291992px;}
.h4_c00386{height:110.151855px;}
.h0_c00386{height:791.625000px;}
.h1_c00386{height:792.000000px;}
.w1_c00386{width:104.875500px;}
.w0_c00386{width:540.000000px;}
.x0_c00386{left:0.000000px;}
.x2_c00386{left:33.750000px;}
.x3_c00386{left:35.100000px;}
.x4_c00386{left:36.750000px;}
.x5_c00386{left:38.250000px;}
.x6_c00386{left:39.450000px;}
.x7_c00386{left:40.800000px;}
.x8_c00386{left:42.150000px;}
.x9_c00386{left:43.500000px;}
.xa_c00386{left:45.600000px;}
.x1_c00386{left:152.550000px;}
.xc_c00386{left:221.814240px;}
.xb_c00386{left:275.550000px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls1_c00386{letter-spacing:0.000000pt;}
.ls0_c00386{letter-spacing:0.522667pt;}
.ls2_c00386{letter-spacing:2.666667pt;}
.ls3_c00386{letter-spacing:5.333333pt;}
.ls4_c00386{letter-spacing:8.000000pt;}
.ws0_c00386{word-spacing:0.000000pt;}
._13_c00386{margin-left:-13.717333pt;}
._14_c00386{margin-left:-8.320000pt;}
._10_c00386{margin-left:-5.912000pt;}
._5_c00386{margin-left:-4.714667pt;}
._11_c00386{margin-left:-3.605333pt;}
._2_c00386{margin-left:-2.704000pt;}
._1_c00386{margin-left:-1.317333pt;}
._0_c00386{width:1.248000pt;}
._6_c00386{width:2.368000pt;}
._a_c00386{width:3.344000pt;}
._b_c00386{width:4.258667pt;}
._9_c00386{width:5.157333pt;}
._d_c00386{width:6.794667pt;}
._8_c00386{width:7.818667pt;}
._7_c00386{width:8.832000pt;}
._4_c00386{width:10.053333pt;}
._c_c00386{width:11.618667pt;}
._12_c00386{width:13.082667pt;}
._f_c00386{width:14.144000pt;}
._e_c00386{width:15.237333pt;}
._15_c00386{width:23.045333pt;}
._16_c00386{width:32.528000pt;}
._17_c00386{width:283.520000pt;}
._3_c00386{width:311.722667pt;}
.fs5_c00386{font-size:42.666667pt;}
.fs4_c00386{font-size:56.000000pt;}
.fs2_c00386{font-size:61.333333pt;}
.fs1_c00386{font-size:64.000000pt;}
.fs0_c00386{font-size:69.333333pt;}
.fs3_c00386{font-size:77.333333pt;}
.y0_c00386{bottom:0.000000pt;}
.y1e_c00386{bottom:2.760000pt;}
.y1d_c00386{bottom:6.425204pt;}
.y1c_c00386{bottom:67.986667pt;}
.y1b_c00386{bottom:91.186667pt;}
.y1a_c00386{bottom:113.586667pt;}
.y19_c00386{bottom:134.386667pt;}
.y18_c00386{bottom:157.986667pt;}
.y17_c00386{bottom:180.253333pt;}
.y16_c00386{bottom:201.853333pt;}
.y15_c00386{bottom:223.720000pt;}
.y14_c00386{bottom:245.720000pt;}
.y13_c00386{bottom:267.853333pt;}
.y12_c00386{bottom:288.920000pt;}
.y11_c00386{bottom:309.320000pt;}
.y10_c00386{bottom:331.186667pt;}
.yf_c00386{bottom:353.320000pt;}
.ye_c00386{bottom:374.920000pt;}
.yd_c00386{bottom:397.053333pt;}
.yc_c00386{bottom:419.320000pt;}
.yb_c00386{bottom:441.586667pt;}
.ya_c00386{bottom:462.520000pt;}
.y9_c00386{bottom:484.120000pt;}
.y8_c00386{bottom:507.320000pt;}
.y7_c00386{bottom:528.520000pt;}
.y6_c00386{bottom:550.120000pt;}
.y5_c00386{bottom:573.186667pt;}
.y4_c00386{bottom:593.986667pt;}
.y3_c00386{bottom:616.120000pt;}
.y2_c00386{bottom:638.386667pt;}
.y1_c00386{bottom:660.253333pt;}
.h5_c00386{height:11.733399pt;}
.h6_c00386{height:38.937500pt;}
.h3_c00386{height:81.031250pt;}
.h2_c00386{height:81.148438pt;}
.h4_c00386{height:97.912760pt;}
.h0_c00386{height:703.666667pt;}
.h1_c00386{height:704.000000pt;}
.w1_c00386{width:93.222667pt;}
.w0_c00386{width:480.000000pt;}
.x0_c00386{left:0.000000pt;}
.x2_c00386{left:30.000000pt;}
.x3_c00386{left:31.200000pt;}
.x4_c00386{left:32.666667pt;}
.x5_c00386{left:34.000000pt;}
.x6_c00386{left:35.066667pt;}
.x7_c00386{left:36.266667pt;}
.x8_c00386{left:37.466667pt;}
.x9_c00386{left:38.666667pt;}
.xa_c00386{left:40.533333pt;}
.x1_c00386{left:135.600000pt;}
.xc_c00386{left:197.168213pt;}
.xb_c00386{left:244.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_21892bfe7299ae6ff881927f.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00387;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00387;src:url('chunks/assets/font_9c4f4209c99c02abbd132125.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:1.568848;font-style:normal;font-weight:normal;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_32d36074e7c8d414c65d4209.woff2')format("woff");}.ff4_c00387{font-family:ff4_c00387;line-height:1.575000;font-style:normal;font-weight:normal;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_32631a460cb76c2e98ca86b2.woff2')format("woff");}.ff5_c00387{font-family:ff5_c00387;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00387;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00387{font-family:ff6_c00387;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00387;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00387{font-family:ff7_c00387;line-height:1.219238;font-style: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;}
.ls4_c00387{letter-spacing:0.000000px;}
.ls0_c00387{letter-spacing:1.188000px;}
.ls1_c00387{letter-spacing:3.000000px;}
.ls2_c00387{letter-spacing:7.350000px;}
.ls3_c00387{letter-spacing:9.900000px;}
.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:-33.192000px;}
.ws3_c00387{word-spacing:-20.352000px;}
.ws4_c00387{word-spacing:-19.629000px;}
.ws2_c00387{word-spacing:-18.000000px;}
.ws1_c00387{word-spacing:-14.250000px;}
.ws5_c00387{word-spacing:0.000000px;}
._2_c00387{margin-left:-19.656000px;}
._e_c00387{margin-left:-11.160000px;}
._14_c00387{margin-left:-10.101000px;}
._9_c00387{margin-left:-8.712000px;}
._8_c00387{margin-left:-6.576000px;}
._7_c00387{margin-left:-4.752000px;}
._d_c00387{margin-left:-3.744000px;}
._6_c00387{margin-left:-2.736000px;}
._5_c00387{margin-left:-1.584000px;}
._1_c00387{width:1.596000px;}
._0_c00387{width:3.528000px;}
._4_c00387{width:4.536000px;}
._a_c00387{width:5.760000px;}
._3_c00387{width:7.560000px;}
._f_c00387{width:9.405000px;}
._10_c00387{width:10.806000px;}
._b_c00387{width:11.808000px;}
._c_c00387{width:14.532000px;}
._15_c00387{width:15.714000px;}
._12_c00387{width:17.124000px;}
._13_c00387{width:18.540000px;}
._16_c00387{width:24.606000px;}
._17_c00387{width:26.139000px;}
._11_c00387{width:131.820000px;}
.fc2_c00387{color:transparent;}
.fc1_c00387{color:rgb(128,128,128);}
.fc0_c00387{color:rgb(0,0,0);}
.fs6_c00387{font-size:48.000000px;}
.fs3_c00387{font-size:57.000000px;}
.fs2_c00387{font-size:63.000000px;}
.fs5_c00387{font-size:69.000000px;}
.fs1_c00387{font-size:72.000000px;}
.fs4_c00387{font-size:78.000000px;}
.fs0_c00387{font-size:84.000000px;}
.y0_c00387{bottom:0.000000px;}
.y1f_c00387{bottom:3.105000px;}
.y1e_c00387{bottom:7.228355px;}
.y1d_c00387{bottom:50.835000px;}
.y1c_c00387{bottom:74.835000px;}
.y1b_c00387{bottom:100.185000px;}
.y1a_c00387{bottom:125.085000px;}
.y19_c00387{bottom:150.435000px;}
.y18_c00387{bottom:175.485000px;}
.y17_c00387{bottom:199.785000px;}
.y16_c00387{bottom:225.435000px;}
.y15_c00387{bottom:250.035000px;}
.y14_c00387{bottom:274.935000px;}
.y13_c00387{bottom:299.235000px;}
.y12_c00387{bottom:323.985000px;}
.y11_c00387{bottom:348.885000px;}
.y10_c00387{bottom:372.585000px;}
.yf_c00387{bottom:397.185000px;}
.ye_c00387{bottom:419.835000px;}
.yd_c00387{bottom:448.185000px;}
.yc_c00387{bottom:471.735000px;}
.yb_c00387{bottom:495.135000px;}
.ya_c00387{bottom:520.635000px;}
.y9_c00387{bottom:545.685000px;}
.y8_c00387{bottom:570.285000px;}
.y7_c00387{bottom:594.885000px;}
.y6_c00387{bottom:619.635000px;}
.y5_c00387{bottom:643.485000px;}
.y4_c00387{bottom:668.535000px;}
.y3_c00387{bottom:692.835000px;}
.y2_c00387{bottom:718.185000px;}
.y1_c00387{bottom:743.535000px;}
.h5_c00387{height:13.200074px;}
.h6_c00387{height:43.804688px;}
.h2_c00387{height:82.441406px;}
.h4_c00387{height:87.361816px;}
.h3_c00387{height:91.160156px;}
.h0_c00387{height:776.775000px;}
.h1_c00387{height:777.000000px;}
.w2_c00387{width:104.875500px;}
.w1_c00387{width:526.500000px;}
.w0_c00387{width:526.800000px;}
.x0_c00387{left:0.000000px;}
.x7_c00387{left:5.400000px;}
.x6_c00387{left:12.150000px;}
.x9_c00387{left:89.400000px;}
.x8_c00387{left:90.450000px;}
.x5_c00387{left:91.800000px;}
.x4_c00387{left:93.600000px;}
.x3_c00387{left:95.850000px;}
.x2_c00387{left:97.200000px;}
.xb_c00387{left:215.214249px;}
.x1_c00387{left:226.500000px;}
.xa_c00387{left:450.900000px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls4_c00387{letter-spacing:0.000000pt;}
.ls0_c00387{letter-spacing:1.056000pt;}
.ls1_c00387{letter-spacing:2.666667pt;}
.ls2_c00387{letter-spacing:6.533333pt;}
.ls3_c00387{letter-spacing:8.800000pt;}
.ws0_c00387{word-spacing:-29.504000pt;}
.ws3_c00387{word-spacing:-18.090667pt;}
.ws4_c00387{word-spacing:-17.448000pt;}
.ws2_c00387{word-spacing:-16.000000pt;}
.ws1_c00387{word-spacing:-12.666667pt;}
.ws5_c00387{word-spacing:0.000000pt;}
._2_c00387{margin-left:-17.472000pt;}
._e_c00387{margin-left:-9.920000pt;}
._14_c00387{margin-left:-8.978667pt;}
._9_c00387{margin-left:-7.744000pt;}
._8_c00387{margin-left:-5.845333pt;}
._7_c00387{margin-left:-4.224000pt;}
._d_c00387{margin-left:-3.328000pt;}
._6_c00387{margin-left:-2.432000pt;}
._5_c00387{margin-left:-1.408000pt;}
._1_c00387{width:1.418667pt;}
._0_c00387{width:3.136000pt;}
._4_c00387{width:4.032000pt;}
._a_c00387{width:5.120000pt;}
._3_c00387{width:6.720000pt;}
._f_c00387{width:8.360000pt;}
._10_c00387{width:9.605333pt;}
._b_c00387{width:10.496000pt;}
._c_c00387{width:12.917333pt;}
._15_c00387{width:13.968000pt;}
._12_c00387{width:15.221333pt;}
._13_c00387{width:16.480000pt;}
._16_c00387{width:21.872000pt;}
._17_c00387{width:23.234667pt;}
._11_c00387{width:117.173333pt;}
.fs6_c00387{font-size:42.666667pt;}
.fs3_c00387{font-size:50.666667pt;}
.fs2_c00387{font-size:56.000000pt;}
.fs5_c00387{font-size:61.333333pt;}
.fs1_c00387{font-size:64.000000pt;}
.fs4_c00387{font-size:69.333333pt;}
.fs0_c00387{font-size:74.666667pt;}
.y0_c00387{bottom:0.000000pt;}
.y1f_c00387{bottom:2.760000pt;}
.y1e_c00387{bottom:6.425204pt;}
.y1d_c00387{bottom:45.186667pt;}
.y1c_c00387{bottom:66.520000pt;}
.y1b_c00387{bottom:89.053333pt;}
.y1a_c00387{bottom:111.186667pt;}
.y19_c00387{bottom:133.720000pt;}
.y18_c00387{bottom:155.986667pt;}
.y17_c00387{bottom:177.586667pt;}
.y16_c00387{bottom:200.386667pt;}
.y15_c00387{bottom:222.253333pt;}
.y14_c00387{bottom:244.386667pt;}
.y13_c00387{bottom:265.986667pt;}
.y12_c00387{bottom:287.986667pt;}
.y11_c00387{bottom:310.120000pt;}
.y10_c00387{bottom:331.186667pt;}
.yf_c00387{bottom:353.053333pt;}
.ye_c00387{bottom:373.186667pt;}
.yd_c00387{bottom:398.386667pt;}
.yc_c00387{bottom:419.320000pt;}
.yb_c00387{bottom:440.120000pt;}
.ya_c00387{bottom:462.786667pt;}
.y9_c00387{bottom:485.053333pt;}
.y8_c00387{bottom:506.920000pt;}
.y7_c00387{bottom:528.786667pt;}
.y6_c00387{bottom:550.786667pt;}
.y5_c00387{bottom:571.986667pt;}
.y4_c00387{bottom:594.253333pt;}
.y3_c00387{bottom:615.853333pt;}
.y2_c00387{bottom:638.386667pt;}
.y1_c00387{bottom:660.920000pt;}
.h5_c00387{height:11.733399pt;}
.h6_c00387{height:38.937500pt;}
.h2_c00387{height:73.281250pt;}
.h4_c00387{height:77.654948pt;}
.h3_c00387{height:81.031250pt;}
.h0_c00387{height:690.466667pt;}
.h1_c00387{height:690.666667pt;}
.w2_c00387{width:93.222667pt;}
.w1_c00387{width:468.000000pt;}
.w0_c00387{width:468.266667pt;}
.x0_c00387{left:0.000000pt;}
.x7_c00387{left:4.800000pt;}
.x6_c00387{left:10.800000pt;}
.x9_c00387{left:79.466667pt;}
.x8_c00387{left:80.400000pt;}
.x5_c00387{left:81.600000pt;}
.x4_c00387{left:83.200000pt;}
.x3_c00387{left:85.200000pt;}
.x2_c00387{left:86.400000pt;}
.xb_c00387{left:191.301554pt;}
.x1_c00387{left:201.333333pt;}
.xa_c00387{left:400.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a780555d120b7e2591d3b2.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.480469;font-style:normal;font-weight:normal;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_21232db052bee862c98ce4b9.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:1.219238;font-style: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;}
.ls2_c00388{letter-spacing:-3.000000px;}
.ls1_c00388{letter-spacing:0.000000px;}
.ls0_c00388{letter-spacing:3.000000px;}
.sc__c00388{text-shadow:none;}
.sc0_c00388{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00388{-webkit-text-stroke:0px transparent;}
.sc0_c00388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00388{word-spacing:-19.629000px;}
.ws0_c00388{word-spacing:-16.629000px;}
.ws2_c00388{word-spacing:-13.629000px;}
.ws3_c00388{word-spacing:0.000000px;}
._15_c00388{margin-left:-26.157000px;}
._13_c00388{margin-left:-11.385000px;}
._16_c00388{margin-left:-9.279000px;}
._14_c00388{margin-left:-8.190000px;}
._12_c00388{margin-left:-7.029000px;}
._10_c00388{margin-left:-5.118000px;}
._e_c00388{margin-left:-3.951000px;}
._f_c00388{margin-left:-2.391000px;}
._4_c00388{margin-left:-1.311000px;}
._a_c00388{width:1.800000px;}
._b_c00388{width:3.240000px;}
._2_c00388{width:4.830000px;}
._6_c00388{width:6.624000px;}
._3_c00388{width:7.866000px;}
._11_c00388{width:9.240000px;}
._5_c00388{width:10.419000px;}
._1_c00388{width:12.420000px;}
._8_c00388{width:15.318000px;}
._9_c00388{width:18.285000px;}
._0_c00388{width:20.010000px;}
._17_c00388{width:21.459000px;}
._d_c00388{width:37.653000px;}
._c_c00388{width:39.129000px;}
._7_c00388{width:385.365000px;}
.fc2_c00388{color:transparent;}
.fc1_c00388{color:rgb(128,128,128);}
.fc0_c00388{color:rgb(0,0,0);}
.fs2_c00388{font-size:48.000000px;}
.fs0_c00388{font-size:69.000000px;}
.fs1_c00388{font-size:72.000000px;}
.y0_c00388{bottom:0.000000px;}
.y1f_c00388{bottom:3.105000px;}
.y1e_c00388{bottom:7.228363px;}
.y1d_c00388{bottom:46.800000px;}
.y1c_c00388{bottom:72.600000px;}
.y1b_c00388{bottom:102.300000px;}
.y1a_c00388{bottom:126.450000px;}
.y19_c00388{bottom:151.800000px;}
.y18_c00388{bottom:176.100000px;}
.y17_c00388{bottom:197.700000px;}
.y16_c00388{bottom:227.100000px;}
.y15_c00388{bottom:250.500000px;}
.y14_c00388{bottom:271.950000px;}
.y13_c00388{bottom:299.700000px;}
.y12_c00388{bottom:321.900000px;}
.y11_c00388{bottom:348.000000px;}
.y10_c00388{bottom:372.300000px;}
.yf_c00388{bottom:396.900000px;}
.ye_c00388{bottom:422.100000px;}
.yd_c00388{bottom:446.550000px;}
.yc_c00388{bottom:470.850000px;}
.yb_c00388{bottom:495.750000px;}
.ya_c00388{bottom:520.650000px;}
.y9_c00388{bottom:545.100000px;}
.y8_c00388{bottom:570.000000px;}
.y7_c00388{bottom:594.300000px;}
.y6_c00388{bottom:618.600000px;}
.y5_c00388{bottom:643.650000px;}
.y4_c00388{bottom:668.250000px;}
.y3_c00388{bottom:692.850000px;}
.y2_c00388{bottom:717.900000px;}
.y1_c00388{bottom:742.500000px;}
.h5_c00388{height:13.200074px;}
.h6_c00388{height:43.804688px;}
.h1_c00388{height:80.758301px;}
.h3_c00388{height:87.361816px;}
.h4_c00388{height:90.560156px;}
.h2_c00388{height:91.160156px;}
.h0_c00388{height:783.000000px;}
.w2_c00388{width:104.875500px;}
.w1_c00388{width:524.250000px;}
.w0_c00388{width:524.325000px;}
.x0_c00388{left:0.000000px;}
.x2_c00388{left:31.050000px;}
.x3_c00388{left:32.400000px;}
.x5_c00388{left:33.450000px;}
.x4_c00388{left:34.650000px;}
.x6_c00388{left:35.700000px;}
.x7_c00388{left:37.350000px;}
.x8_c00388{left:39.450000px;}
.x1_c00388{left:138.750000px;}
.xa_c00388{left:213.976730px;}
.x9_c00388{left:375.300000px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls2_c00388{letter-spacing:-2.666667pt;}
.ls1_c00388{letter-spacing:0.000000pt;}
.ls0_c00388{letter-spacing:2.666667pt;}
.ws1_c00388{word-spacing:-17.448000pt;}
.ws0_c00388{word-spacing:-14.781333pt;}
.ws2_c00388{word-spacing:-12.114667pt;}
.ws3_c00388{word-spacing:0.000000pt;}
._15_c00388{margin-left:-23.250667pt;}
._13_c00388{margin-left:-10.120000pt;}
._16_c00388{margin-left:-8.248000pt;}
._14_c00388{margin-left:-7.280000pt;}
._12_c00388{margin-left:-6.248000pt;}
._10_c00388{margin-left:-4.549333pt;}
._e_c00388{margin-left:-3.512000pt;}
._f_c00388{margin-left:-2.125333pt;}
._4_c00388{margin-left:-1.165333pt;}
._a_c00388{width:1.600000pt;}
._b_c00388{width:2.880000pt;}
._2_c00388{width:4.293333pt;}
._6_c00388{width:5.888000pt;}
._3_c00388{width:6.992000pt;}
._11_c00388{width:8.213333pt;}
._5_c00388{width:9.261333pt;}
._1_c00388{width:11.040000pt;}
._8_c00388{width:13.616000pt;}
._9_c00388{width:16.253333pt;}
._0_c00388{width:17.786667pt;}
._17_c00388{width:19.074667pt;}
._d_c00388{width:33.469333pt;}
._c_c00388{width:34.781333pt;}
._7_c00388{width:342.546667pt;}
.fs2_c00388{font-size:42.666667pt;}
.fs0_c00388{font-size:61.333333pt;}
.fs1_c00388{font-size:64.000000pt;}
.y0_c00388{bottom:0.000000pt;}
.y1f_c00388{bottom:2.760000pt;}
.y1e_c00388{bottom:6.425212pt;}
.y1d_c00388{bottom:41.600000pt;}
.y1c_c00388{bottom:64.533333pt;}
.y1b_c00388{bottom:90.933333pt;}
.y1a_c00388{bottom:112.400000pt;}
.y19_c00388{bottom:134.933333pt;}
.y18_c00388{bottom:156.533333pt;}
.y17_c00388{bottom:175.733333pt;}
.y16_c00388{bottom:201.866667pt;}
.y15_c00388{bottom:222.666667pt;}
.y14_c00388{bottom:241.733333pt;}
.y13_c00388{bottom:266.400000pt;}
.y12_c00388{bottom:286.133333pt;}
.y11_c00388{bottom:309.333333pt;}
.y10_c00388{bottom:330.933333pt;}
.yf_c00388{bottom:352.800000pt;}
.ye_c00388{bottom:375.200000pt;}
.yd_c00388{bottom:396.933333pt;}
.yc_c00388{bottom:418.533333pt;}
.yb_c00388{bottom:440.666667pt;}
.ya_c00388{bottom:462.800000pt;}
.y9_c00388{bottom:484.533333pt;}
.y8_c00388{bottom:506.666667pt;}
.y7_c00388{bottom:528.266667pt;}
.y6_c00388{bottom:549.866667pt;}
.y5_c00388{bottom:572.133333pt;}
.y4_c00388{bottom:594.000000pt;}
.y3_c00388{bottom:615.866667pt;}
.y2_c00388{bottom:638.133333pt;}
.y1_c00388{bottom:660.000000pt;}
.h5_c00388{height:11.733399pt;}
.h6_c00388{height:38.937500pt;}
.h1_c00388{height:71.785156pt;}
.h3_c00388{height:77.654948pt;}
.h4_c00388{height:80.497917pt;}
.h2_c00388{height:81.031250pt;}
.h0_c00388{height:696.000000pt;}
.w2_c00388{width:93.222667pt;}
.w1_c00388{width:466.000000pt;}
.w0_c00388{width:466.066667pt;}
.x0_c00388{left:0.000000pt;}
.x2_c00388{left:27.600000pt;}
.x3_c00388{left:28.800000pt;}
.x5_c00388{left:29.733333pt;}
.x4_c00388{left:30.800000pt;}
.x6_c00388{left:31.733333pt;}
.x7_c00388{left:33.200000pt;}
.x8_c00388{left:35.066667pt;}
.x1_c00388{left:123.333333pt;}
.xa_c00388{left:190.201538pt;}
.x9_c00388{left:333.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c6319c94769ca5d592bb126d.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00389;src:url('chunks/assets/font_19d0ffbfeef885a5acd29a6b.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00389;src:url('chunks/assets/font_0bf62f87b8d3d7e3bd4d4c24.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:1.568848;font-style:normal;font-weight:normal;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_ae5614080021cf679f73398d.woff2')format("woff");}.ff4_c00389{font-family:ff4_c00389;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00389;src:url('chunks/assets/font_4c6765d4c0a4b411dd0ac352.woff2')format("woff");}.ff5_c00389{font-family:ff5_c00389;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00389;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00389{font-family:ff6_c00389;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00389{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00389{vertical-align:0.000000px;}
.ls1_c00389{letter-spacing:0.000000px;}
.ls2_c00389{letter-spacing:3.000000px;}
.ls3_c00389{letter-spacing:6.000000px;}
.ls0_c00389{letter-spacing:18.597000px;}
.sc__c00389{text-shadow:none;}
.sc0_c00389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00389{-webkit-text-stroke:0px transparent;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00389{word-spacing:-20.352000px;}
.ws0_c00389{word-spacing:-17.352000px;}
.ws2_c00389{word-spacing:0.000000px;}
._b_c00389{margin-left:-10.440000px;}
._6_c00389{margin-left:-9.096000px;}
._11_c00389{margin-left:-7.992000px;}
._3_c00389{margin-left:-6.888000px;}
._f_c00389{margin-left:-5.808000px;}
._5_c00389{margin-left:-4.176000px;}
._a_c00389{margin-left:-2.808000px;}
._4_c00389{margin-left:-1.728000px;}
._7_c00389{width:1.632000px;}
._8_c00389{width:2.640000px;}
._1_c00389{width:4.536000px;}
._e_c00389{width:5.592000px;}
._10_c00389{width:6.792000px;}
._2_c00389{width:8.400000px;}
._9_c00389{width:9.408000px;}
._c_c00389{width:10.776000px;}
._0_c00389{width:12.264000px;}
._d_c00389{width:13.488000px;}
._12_c00389{width:226.368000px;}
.fc2_c00389{color:transparent;}
.fc1_c00389{color:rgb(128,128,128);}
.fc0_c00389{color:rgb(0,0,0);}
.fs2_c00389{font-size:36.000000px;}
.fs4_c00389{font-size:48.000000px;}
.fs3_c00389{font-size:57.000000px;}
.fs1_c00389{font-size:72.000000px;}
.fs0_c00389{font-size:84.000000px;}
.y0_c00389{bottom:0.000000px;}
.y1f_c00389{bottom:3.105000px;}
.y1e_c00389{bottom:7.228371px;}
.y1d_c00389{bottom:55.665000px;}
.y1c_c00389{bottom:76.965000px;}
.y1b_c00389{bottom:102.615000px;}
.y1a_c00389{bottom:127.965000px;}
.y19_c00389{bottom:152.865000px;}
.y18_c00389{bottom:178.515000px;}
.y17_c00389{bottom:202.965000px;}
.y16_c00389{bottom:230.865000px;}
.y15_c00389{bottom:252.915000px;}
.y14_c00389{bottom:279.165000px;}
.y13_c00389{bottom:305.565000px;}
.y12_c00389{bottom:329.715000px;}
.y11_c00389{bottom:352.365000px;}
.y10_c00389{bottom:378.765000px;}
.yf_c00389{bottom:402.015000px;}
.ye_c00389{bottom:426.615000px;}
.yd_c00389{bottom:451.215000px;}
.yc_c00389{bottom:476.565000px;}
.yb_c00389{bottom:499.965000px;}
.ya_c00389{bottom:524.865000px;}
.y9_c00389{bottom:549.465000px;}
.y8_c00389{bottom:574.215000px;}
.y7_c00389{bottom:598.815000px;}
.y6_c00389{bottom:623.715000px;}
.y5_c00389{bottom:648.765000px;}
.y4_c00389{bottom:673.065000px;}
.y3_c00389{bottom:697.965000px;}
.y2_c00389{bottom:722.565000px;}
.y1_c00389{bottom:748.215000px;}
.h4_c00389{height:13.200074px;}
.h5_c00389{height:43.804688px;}
.h2_c00389{height:82.441406px;}
.h3_c00389{height:91.160156px;}
.h0_c00389{height:786.525000px;}
.h1_c00389{height:786.750000px;}
.w2_c00389{width:104.875500px;}
.w1_c00389{width:517.500000px;}
.w0_c00389{width:517.575000px;}
.x0_c00389{left:0.000000px;}
.x6_c00389{left:14.550000px;}
.x8_c00389{left:92.850000px;}
.x7_c00389{left:94.500000px;}
.x5_c00389{left:95.550000px;}
.x4_c00389{left:96.600000px;}
.x3_c00389{left:97.800000px;}
.x2_c00389{left:99.450000px;}
.xa_c00389{left:210.601730px;}
.x1_c00389{left:223.800000px;}
.x9_c00389{left:454.500000px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls1_c00389{letter-spacing:0.000000pt;}
.ls2_c00389{letter-spacing:2.666667pt;}
.ls3_c00389{letter-spacing:5.333333pt;}
.ls0_c00389{letter-spacing:16.530667pt;}
.ws1_c00389{word-spacing:-18.090667pt;}
.ws0_c00389{word-spacing:-15.424000pt;}
.ws2_c00389{word-spacing:0.000000pt;}
._b_c00389{margin-left:-9.280000pt;}
._6_c00389{margin-left:-8.085333pt;}
._11_c00389{margin-left:-7.104000pt;}
._3_c00389{margin-left:-6.122667pt;}
._f_c00389{margin-left:-5.162667pt;}
._5_c00389{margin-left:-3.712000pt;}
._a_c00389{margin-left:-2.496000pt;}
._4_c00389{margin-left:-1.536000pt;}
._7_c00389{width:1.450667pt;}
._8_c00389{width:2.346667pt;}
._1_c00389{width:4.032000pt;}
._e_c00389{width:4.970667pt;}
._10_c00389{width:6.037333pt;}
._2_c00389{width:7.466667pt;}
._9_c00389{width:8.362667pt;}
._c_c00389{width:9.578667pt;}
._0_c00389{width:10.901333pt;}
._d_c00389{width:11.989333pt;}
._12_c00389{width:201.216000pt;}
.fs2_c00389{font-size:32.000000pt;}
.fs4_c00389{font-size:42.666667pt;}
.fs3_c00389{font-size:50.666667pt;}
.fs1_c00389{font-size:64.000000pt;}
.fs0_c00389{font-size:74.666667pt;}
.y0_c00389{bottom:0.000000pt;}
.y1f_c00389{bottom:2.760000pt;}
.y1e_c00389{bottom:6.425219pt;}
.y1d_c00389{bottom:49.480000pt;}
.y1c_c00389{bottom:68.413333pt;}
.y1b_c00389{bottom:91.213333pt;}
.y1a_c00389{bottom:113.746667pt;}
.y19_c00389{bottom:135.880000pt;}
.y18_c00389{bottom:158.680000pt;}
.y17_c00389{bottom:180.413333pt;}
.y16_c00389{bottom:205.213333pt;}
.y15_c00389{bottom:224.813333pt;}
.y14_c00389{bottom:248.146667pt;}
.y13_c00389{bottom:271.613333pt;}
.y12_c00389{bottom:293.080000pt;}
.y11_c00389{bottom:313.213333pt;}
.y10_c00389{bottom:336.680000pt;}
.yf_c00389{bottom:357.346667pt;}
.ye_c00389{bottom:379.213333pt;}
.yd_c00389{bottom:401.080000pt;}
.yc_c00389{bottom:423.613333pt;}
.yb_c00389{bottom:444.413333pt;}
.ya_c00389{bottom:466.546667pt;}
.y9_c00389{bottom:488.413333pt;}
.y8_c00389{bottom:510.413333pt;}
.y7_c00389{bottom:532.280000pt;}
.y6_c00389{bottom:554.413333pt;}
.y5_c00389{bottom:576.680000pt;}
.y4_c00389{bottom:598.280000pt;}
.y3_c00389{bottom:620.413333pt;}
.y2_c00389{bottom:642.280000pt;}
.y1_c00389{bottom:665.080000pt;}
.h4_c00389{height:11.733399pt;}
.h5_c00389{height:38.937500pt;}
.h2_c00389{height:73.281250pt;}
.h3_c00389{height:81.031250pt;}
.h0_c00389{height:699.133333pt;}
.h1_c00389{height:699.333333pt;}
.w2_c00389{width:93.222667pt;}
.w1_c00389{width:460.000000pt;}
.w0_c00389{width:460.066667pt;}
.x0_c00389{left:0.000000pt;}
.x6_c00389{left:12.933333pt;}
.x8_c00389{left:82.533333pt;}
.x7_c00389{left:84.000000pt;}
.x5_c00389{left:84.933333pt;}
.x4_c00389{left:85.866667pt;}
.x3_c00389{left:86.933333pt;}
.x2_c00389{left:88.400000pt;}
.xa_c00389{left:187.201538pt;}
.x1_c00389{left:198.933333pt;}
.x9_c00389{left:404.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_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_63666ce100b107d142919189.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.480469;font-style:normal;font-weight:normal;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_37cf468578e2e10aa5e4b50c.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00390;src:url('chunks/assets/font_2d828ff181c4b5c4d0842027.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00390;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00390{font-family:ff4_c00390;line-height:1.219238;font-style: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:-3.000000px;}
.ls2_c00390{letter-spacing:0.000000px;}
.ls0_c00390{letter-spacing:3.000000px;}
.sc__c00390{text-shadow:none;}
.sc0_c00390{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00390{-webkit-text-stroke:0px transparent;}
.sc0_c00390{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00390{word-spacing:-20.352000px;}
.ws0_c00390{word-spacing:-15.906000px;}
.ws2_c00390{word-spacing:0.000000px;}
._15_c00390{margin-left:-13.827000px;}
._16_c00390{margin-left:-11.568000px;}
._18_c00390{margin-left:-9.471000px;}
._17_c00390{margin-left:-8.202000px;}
._19_c00390{margin-left:-7.092000px;}
._d_c00390{margin-left:-5.994000px;}
._14_c00390{margin-left:-4.962000px;}
._c_c00390{margin-left:-3.888000px;}
._12_c00390{margin-left:-2.673000px;}
._f_c00390{margin-left:-1.512000px;}
._10_c00390{width:1.215000px;}
._4_c00390{width:2.580000px;}
._e_c00390{width:3.645000px;}
._2_c00390{width:5.640000px;}
._7_c00390{width:7.080000px;}
._3_c00390{width:8.100000px;}
._11_c00390{width:9.888000px;}
._1a_c00390{width:11.103000px;}
._13_c00390{width:12.138000px;}
._5_c00390{width:13.920000px;}
._8_c00390{width:15.300000px;}
._1_c00390{width:17.880000px;}
._6_c00390{width:19.920000px;}
._a_c00390{width:22.260000px;}
._1b_c00390{width:25.542000px;}
._b_c00390{width:26.640000px;}
._0_c00390{width:30.360000px;}
._9_c00390{width:384.900000px;}
.fc2_c00390{color:transparent;}
.fc1_c00390{color:rgb(128,128,128);}
.fc0_c00390{color:rgb(0,0,0);}
.fs4_c00390{font-size:48.000000px;}
.fs0_c00390{font-size:60.000000px;}
.fs2_c00390{font-size:66.000000px;}
.fs3_c00390{font-size:72.000000px;}
.fs1_c00390{font-size:81.000000px;}
.y0_c00390{bottom:0.000000px;}
.y1f_c00390{bottom:3.105000px;}
.y1e_c00390{bottom:7.228355px;}
.y1d_c00390{bottom:46.485000px;}
.y1c_c00390{bottom:74.835000px;}
.y1b_c00390{bottom:101.535000px;}
.y1a_c00390{bottom:126.435000px;}
.y19_c00390{bottom:152.085000px;}
.y18_c00390{bottom:176.085000px;}
.y17_c00390{bottom:201.735000px;}
.y16_c00390{bottom:226.485000px;}
.y15_c00390{bottom:251.085000px;}
.y14_c00390{bottom:275.685000px;}
.y13_c00390{bottom:300.735000px;}
.y12_c00390{bottom:321.285000px;}
.y11_c00390{bottom:346.635000px;}
.y10_c00390{bottom:371.235000px;}
.yf_c00390{bottom:395.835000px;}
.ye_c00390{bottom:420.735000px;}
.yd_c00390{bottom:445.185000px;}
.yc_c00390{bottom:469.785000px;}
.yb_c00390{bottom:494.685000px;}
.ya_c00390{bottom:519.435000px;}
.y9_c00390{bottom:544.335000px;}
.y8_c00390{bottom:568.935000px;}
.y7_c00390{bottom:593.685000px;}
.y6_c00390{bottom:618.585000px;}
.y5_c00390{bottom:642.885000px;}
.y4_c00390{bottom:667.935000px;}
.y3_c00390{bottom:692.085000px;}
.y2_c00390{bottom:716.835000px;}
.y1_c00390{bottom:742.035000px;}
.h6_c00390{height:13.200074px;}
.h7_c00390{height:43.804688px;}
.h2_c00390{height:70.224609px;}
.h3_c00390{height:79.497070px;}
.h4_c00390{height:83.563477px;}
.h5_c00390{height:91.160156px;}
.h0_c00390{height:795.675000px;}
.h1_c00390{height:795.750000px;}
.w2_c00390{width:104.875500px;}
.w1_c00390{width:533.250000px;}
.w0_c00390{width:533.550000px;}
.x0_c00390{left:0.000000px;}
.x2_c00390{left:29.400000px;}
.x3_c00390{left:30.600000px;}
.x4_c00390{left:32.100000px;}
.x5_c00390{left:33.150000px;}
.x6_c00390{left:34.200000px;}
.x7_c00390{left:35.400000px;}
.x1_c00390{left:135.300000px;}
.x9_c00390{left:218.589249px;}
.x8_c00390{left:376.950000px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls1_c00390{letter-spacing:-2.666667pt;}
.ls2_c00390{letter-spacing:0.000000pt;}
.ls0_c00390{letter-spacing:2.666667pt;}
.ws1_c00390{word-spacing:-18.090667pt;}
.ws0_c00390{word-spacing:-14.138667pt;}
.ws2_c00390{word-spacing:0.000000pt;}
._15_c00390{margin-left:-12.290667pt;}
._16_c00390{margin-left:-10.282667pt;}
._18_c00390{margin-left:-8.418667pt;}
._17_c00390{margin-left:-7.290667pt;}
._19_c00390{margin-left:-6.304000pt;}
._d_c00390{margin-left:-5.328000pt;}
._14_c00390{margin-left:-4.410667pt;}
._c_c00390{margin-left:-3.456000pt;}
._12_c00390{margin-left:-2.376000pt;}
._f_c00390{margin-left:-1.344000pt;}
._10_c00390{width:1.080000pt;}
._4_c00390{width:2.293333pt;}
._e_c00390{width:3.240000pt;}
._2_c00390{width:5.013333pt;}
._7_c00390{width:6.293333pt;}
._3_c00390{width:7.200000pt;}
._11_c00390{width:8.789333pt;}
._1a_c00390{width:9.869333pt;}
._13_c00390{width:10.789333pt;}
._5_c00390{width:12.373333pt;}
._8_c00390{width:13.600000pt;}
._1_c00390{width:15.893333pt;}
._6_c00390{width:17.706667pt;}
._a_c00390{width:19.786667pt;}
._1b_c00390{width:22.704000pt;}
._b_c00390{width:23.680000pt;}
._0_c00390{width:26.986667pt;}
._9_c00390{width:342.133333pt;}
.fs4_c00390{font-size:42.666667pt;}
.fs0_c00390{font-size:53.333333pt;}
.fs2_c00390{font-size:58.666667pt;}
.fs3_c00390{font-size:64.000000pt;}
.fs1_c00390{font-size:72.000000pt;}
.y0_c00390{bottom:0.000000pt;}
.y1f_c00390{bottom:2.760000pt;}
.y1e_c00390{bottom:6.425204pt;}
.y1d_c00390{bottom:41.320000pt;}
.y1c_c00390{bottom:66.520000pt;}
.y1b_c00390{bottom:90.253333pt;}
.y1a_c00390{bottom:112.386667pt;}
.y19_c00390{bottom:135.186667pt;}
.y18_c00390{bottom:156.520000pt;}
.y17_c00390{bottom:179.320000pt;}
.y16_c00390{bottom:201.320000pt;}
.y15_c00390{bottom:223.186667pt;}
.y14_c00390{bottom:245.053333pt;}
.y13_c00390{bottom:267.320000pt;}
.y12_c00390{bottom:285.586667pt;}
.y11_c00390{bottom:308.120000pt;}
.y10_c00390{bottom:329.986667pt;}
.yf_c00390{bottom:351.853333pt;}
.ye_c00390{bottom:373.986667pt;}
.yd_c00390{bottom:395.720000pt;}
.yc_c00390{bottom:417.586667pt;}
.yb_c00390{bottom:439.720000pt;}
.ya_c00390{bottom:461.720000pt;}
.y9_c00390{bottom:483.853333pt;}
.y8_c00390{bottom:505.720000pt;}
.y7_c00390{bottom:527.720000pt;}
.y6_c00390{bottom:549.853333pt;}
.y5_c00390{bottom:571.453333pt;}
.y4_c00390{bottom:593.720000pt;}
.y3_c00390{bottom:615.186667pt;}
.y2_c00390{bottom:637.186667pt;}
.y1_c00390{bottom:659.586667pt;}
.h6_c00390{height:11.733399pt;}
.h7_c00390{height:38.937500pt;}
.h2_c00390{height:62.421875pt;}
.h3_c00390{height:70.664062pt;}
.h4_c00390{height:74.278646pt;}
.h5_c00390{height:81.031250pt;}
.h0_c00390{height:707.266667pt;}
.h1_c00390{height:707.333333pt;}
.w2_c00390{width:93.222667pt;}
.w1_c00390{width:474.000000pt;}
.w0_c00390{width:474.266667pt;}
.x0_c00390{left:0.000000pt;}
.x2_c00390{left:26.133333pt;}
.x3_c00390{left:27.200000pt;}
.x4_c00390{left:28.533333pt;}
.x5_c00390{left:29.466667pt;}
.x6_c00390{left:30.400000pt;}
.x7_c00390{left:31.466667pt;}
.x1_c00390{left:120.266667pt;}
.x9_c00390{left:194.301554pt;}
.x8_c00390{left:335.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_10959774e58d97ac1e55969f.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00391;src:url('chunks/assets/font_b8eb5af3ebb469a8ed14226c.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00391;src:url('chunks/assets/font_e2854bfe53165e4db9b871ef.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;line-height:1.568848;font-style:normal;font-weight:normal;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_7963d2e439ea4045a49bddad.woff2')format("woff");}.ff4_c00391{font-family:ff4_c00391;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00391;src:url('chunks/assets/font_b17f0c81aff5568e032cf4c0.woff2')format("woff");}.ff5_c00391{font-family:ff5_c00391;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00391;src:url('chunks/assets/font_38cf7b6458373b7eeddab4e2.woff2')format("woff");}.ff6_c00391{font-family:ff6_c00391;line-height:1.480469;font-style:normal;font-weight: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_c00391;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00391{font-family:ff7_c00391;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00391{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,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;}
.ls5_c00391{letter-spacing:-6.000000px;}
.ls3_c00391{letter-spacing:0.000000px;}
.ls0_c00391{letter-spacing:2.988000px;}
.ls1_c00391{letter-spacing:3.000000px;}
.ls2_c00391{letter-spacing:4.544000px;}
.ls4_c00391{letter-spacing:6.000000px;}
.sc__c00391{text-shadow:none;}
.sc0_c00391{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00391{-webkit-text-stroke:0px transparent;}
.sc0_c00391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00391{word-spacing:-33.192000px;}
.ws1_c00391{word-spacing:-20.250000px;}
.ws2_c00391{word-spacing:0.000000px;}
._14_c00391{margin-left:-16.776000px;}
._3_c00391{margin-left:-13.272000px;}
._15_c00391{margin-left:-12.057000px;}
._7_c00391{margin-left:-9.120000px;}
._10_c00391{margin-left:-7.344000px;}
._f_c00391{margin-left:-6.324000px;}
._d_c00391{margin-left:-5.100000px;}
._a_c00391{margin-left:-4.008000px;}
._6_c00391{margin-left:-2.256000px;}
._9_c00391{margin-left:-1.224000px;}
._1_c00391{width:1.848000px;}
._2_c00391{width:2.940000px;}
._0_c00391{width:4.788000px;}
._5_c00391{width:6.300000px;}
._e_c00391{width:7.728000px;}
._4_c00391{width:9.072000px;}
._c_c00391{width:10.512000px;}
._13_c00391{width:11.688000px;}
._b_c00391{width:12.960000px;}
._8_c00391{width:15.180000px;}
._11_c00391{width:16.272000px;}
._12_c00391{width:22.692000px;}
.fc2_c00391{color:transparent;}
.fc1_c00391{color:rgb(128,128,128);}
.fc0_c00391{color:rgb(0,0,0);}
.fs6_c00391{font-size:48.000000px;}
.fs4_c00391{font-size:57.000000px;}
.fs2_c00391{font-size:63.000000px;}
.fs1_c00391{font-size:72.000000px;}
.fs5_c00391{font-size:78.000000px;}
.fs3_c00391{font-size:81.000000px;}
.fs0_c00391{font-size:84.000000px;}
.y0_c00391{bottom:0.000000px;}
.y1f_c00391{bottom:3.105000px;}
.y1e_c00391{bottom:7.228363px;}
.y1d_c00391{bottom:43.650000px;}
.y1c_c00391{bottom:65.700000px;}
.y1b_c00391{bottom:90.750000px;}
.y1a_c00391{bottom:115.800000px;}
.y19_c00391{bottom:142.050000px;}
.y18_c00391{bottom:166.800000px;}
.y17_c00391{bottom:191.400000px;}
.y16_c00391{bottom:216.300000px;}
.y15_c00391{bottom:241.050000px;}
.y14_c00391{bottom:266.700000px;}
.y13_c00391{bottom:290.700000px;}
.y12_c00391{bottom:315.600000px;}
.y11_c00391{bottom:340.200000px;}
.y10_c00391{bottom:364.800000px;}
.yf_c00391{bottom:389.100000px;}
.ye_c00391{bottom:413.100000px;}
.yd_c00391{bottom:440.400000px;}
.yc_c00391{bottom:463.350000px;}
.yb_c00391{bottom:486.750000px;}
.ya_c00391{bottom:510.750000px;}
.y9_c00391{bottom:535.650000px;}
.y8_c00391{bottom:560.250000px;}
.y7_c00391{bottom:585.300000px;}
.y6_c00391{bottom:610.650000px;}
.y5_c00391{bottom:635.250000px;}
.y4_c00391{bottom:659.550000px;}
.y3_c00391{bottom:683.400000px;}
.y2_c00391{bottom:708.000000px;}
.y1_c00391{bottom:733.950000px;}
.h7_c00391{height:13.200074px;}
.h8_c00391{height:43.804688px;}
.h6_c00391{height:79.497070px;}
.h2_c00391{height:82.441406px;}
.h4_c00391{height:87.804000px;}
.h3_c00391{height:91.160156px;}
.h5_c00391{height:98.756836px;}
.h1_c00391{height:781.500000px;}
.h0_c00391{height:781.650000px;}
.w2_c00391{width:104.875500px;}
.w0_c00391{width:522.450000px;}
.w1_c00391{width:522.750000px;}
.x0_c00391{left:0.000000px;}
.x4_c00391{left:104.250000px;}
.x2_c00391{left:105.600000px;}
.x6_c00391{left:106.950000px;}
.x3_c00391{left:129.600000px;}
.x8_c00391{left:213.039230px;}
.x1_c00391{left:237.900000px;}
.x7_c00391{left:442.200000px;}
.x5_c00391{left:486.750000px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls5_c00391{letter-spacing:-5.333333pt;}
.ls3_c00391{letter-spacing:0.000000pt;}
.ls0_c00391{letter-spacing:2.656000pt;}
.ls1_c00391{letter-spacing:2.666667pt;}
.ls2_c00391{letter-spacing:4.039111pt;}
.ls4_c00391{letter-spacing:5.333333pt;}
.ws0_c00391{word-spacing:-29.504000pt;}
.ws1_c00391{word-spacing:-18.000000pt;}
.ws2_c00391{word-spacing:0.000000pt;}
._14_c00391{margin-left:-14.912000pt;}
._3_c00391{margin-left:-11.797333pt;}
._15_c00391{margin-left:-10.717333pt;}
._7_c00391{margin-left:-8.106667pt;}
._10_c00391{margin-left:-6.528000pt;}
._f_c00391{margin-left:-5.621333pt;}
._d_c00391{margin-left:-4.533333pt;}
._a_c00391{margin-left:-3.562667pt;}
._6_c00391{margin-left:-2.005333pt;}
._9_c00391{margin-left:-1.088000pt;}
._1_c00391{width:1.642667pt;}
._2_c00391{width:2.613333pt;}
._0_c00391{width:4.256000pt;}
._5_c00391{width:5.600000pt;}
._e_c00391{width:6.869333pt;}
._4_c00391{width:8.064000pt;}
._c_c00391{width:9.344000pt;}
._13_c00391{width:10.389333pt;}
._b_c00391{width:11.520000pt;}
._8_c00391{width:13.493333pt;}
._11_c00391{width:14.464000pt;}
._12_c00391{width:20.170667pt;}
.fs6_c00391{font-size:42.666667pt;}
.fs4_c00391{font-size:50.666667pt;}
.fs2_c00391{font-size:56.000000pt;}
.fs1_c00391{font-size:64.000000pt;}
.fs5_c00391{font-size:69.333333pt;}
.fs3_c00391{font-size:72.000000pt;}
.fs0_c00391{font-size:74.666667pt;}
.y0_c00391{bottom:0.000000pt;}
.y1f_c00391{bottom:2.760000pt;}
.y1e_c00391{bottom:6.425212pt;}
.y1d_c00391{bottom:38.800000pt;}
.y1c_c00391{bottom:58.400000pt;}
.y1b_c00391{bottom:80.666667pt;}
.y1a_c00391{bottom:102.933333pt;}
.y19_c00391{bottom:126.266667pt;}
.y18_c00391{bottom:148.266667pt;}
.y17_c00391{bottom:170.133333pt;}
.y16_c00391{bottom:192.266667pt;}
.y15_c00391{bottom:214.266667pt;}
.y14_c00391{bottom:237.066667pt;}
.y13_c00391{bottom:258.400000pt;}
.y12_c00391{bottom:280.533333pt;}
.y11_c00391{bottom:302.400000pt;}
.y10_c00391{bottom:324.266667pt;}
.yf_c00391{bottom:345.866667pt;}
.ye_c00391{bottom:367.200000pt;}
.yd_c00391{bottom:391.466667pt;}
.yc_c00391{bottom:411.866667pt;}
.yb_c00391{bottom:432.666667pt;}
.ya_c00391{bottom:454.000000pt;}
.y9_c00391{bottom:476.133333pt;}
.y8_c00391{bottom:498.000000pt;}
.y7_c00391{bottom:520.266667pt;}
.y6_c00391{bottom:542.800000pt;}
.y5_c00391{bottom:564.666667pt;}
.y4_c00391{bottom:586.266667pt;}
.y3_c00391{bottom:607.466667pt;}
.y2_c00391{bottom:629.333333pt;}
.y1_c00391{bottom:652.400000pt;}
.h7_c00391{height:11.733399pt;}
.h8_c00391{height:38.937500pt;}
.h6_c00391{height:70.664062pt;}
.h2_c00391{height:73.281250pt;}
.h4_c00391{height:78.048000pt;}
.h3_c00391{height:81.031250pt;}
.h5_c00391{height:87.783854pt;}
.h1_c00391{height:694.666667pt;}
.h0_c00391{height:694.800000pt;}
.w2_c00391{width:93.222667pt;}
.w0_c00391{width:464.400000pt;}
.w1_c00391{width:464.666667pt;}
.x0_c00391{left:0.000000pt;}
.x4_c00391{left:92.666667pt;}
.x2_c00391{left:93.866667pt;}
.x6_c00391{left:95.066667pt;}
.x3_c00391{left:115.200000pt;}
.x8_c00391{left:189.368205pt;}
.x1_c00391{left:211.466667pt;}
.x7_c00391{left:393.066667pt;}
.x5_c00391{left:432.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_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_551f28538dd72780f29bf75b.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00392;src:url('chunks/assets/font_5be5da3bd7383f524000166f.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:1.480469;font-style:normal;font-weight:normal;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_bd577962a40ce33442b53153.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00392;src:url('chunks/assets/font_4641f0afd6b8626950c5af66.woff2')format("woff");}.ff4_c00392{font-family:ff4_c00392;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00392;src:url('chunks/assets/font_eb916dc1e55485dab361600c.woff2')format("woff");}.ff5_c00392{font-family:ff5_c00392;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00392;src:url('chunks/assets/font_e56a1d04a68a75383280643a.woff2')format("woff");}.ff6_c00392{font-family:ff6_c00392;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00392;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00392{font-family:ff7_c00392;line-height:1.219238;font-style: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;}
.ls5_c00392{letter-spacing:-6.000000px;}
.ls3_c00392{letter-spacing:0.000000px;}
.ls4_c00392{letter-spacing:3.000000px;}
.ls0_c00392{letter-spacing:10.188000px;}
.ls1_c00392{letter-spacing:11.988000px;}
.ls2_c00392{letter-spacing:20.988000px;}
.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:-33.192000px;}
.ws3_c00392{word-spacing:-26.973000px;}
.ws2_c00392{word-spacing:-24.051000px;}
.ws1_c00392{word-spacing:-20.352000px;}
.ws4_c00392{word-spacing:0.000000px;}
._17_c00392{margin-left:-19.683000px;}
._1c_c00392{margin-left:-18.672000px;}
._16_c00392{margin-left:-17.520000px;}
._14_c00392{margin-left:-16.032000px;}
._a_c00392{margin-left:-12.624000px;}
._d_c00392{margin-left:-10.584000px;}
._2_c00392{margin-left:-9.072000px;}
._9_c00392{margin-left:-7.488000px;}
._5_c00392{margin-left:-5.964000px;}
._e_c00392{margin-left:-4.200000px;}
._b_c00392{margin-left:-3.036000px;}
._c_c00392{margin-left:-1.200000px;}
._3_c00392{width:1.848000px;}
._4_c00392{width:3.024000px;}
._6_c00392{width:4.704000px;}
._10_c00392{width:5.820000px;}
._7_c00392{width:7.476000px;}
._1_c00392{width:9.240000px;}
._f_c00392{width:10.788000px;}
._11_c00392{width:13.152000px;}
._0_c00392{width:14.952000px;}
._12_c00392{width:16.464000px;}
._1d_c00392{width:17.472000px;}
._15_c00392{width:26.538000px;}
._1a_c00392{width:29.880000px;}
._13_c00392{width:167.529000px;}
._1e_c00392{width:168.972000px;}
._19_c00392{width:238.002000px;}
._1b_c00392{width:260.496000px;}
._8_c00392{width:361.368000px;}
._18_c00392{width:502.362000px;}
.fc2_c00392{color:transparent;}
.fc1_c00392{color:rgb(128,128,128);}
.fc0_c00392{color:rgb(0,0,0);}
.fs4_c00392{font-size:48.000000px;}
.fs2_c00392{font-size:63.000000px;}
.fs1_c00392{font-size:72.000000px;}
.fs3_c00392{font-size:81.000000px;}
.fs0_c00392{font-size:84.000000px;}
.y0_c00392{bottom:0.000000px;}
.y1f_c00392{bottom:3.105000px;}
.y1e_c00392{bottom:7.228355px;}
.y1d_c00392{bottom:57.585000px;}
.y1c_c00392{bottom:86.085000px;}
.y1b_c00392{bottom:107.685000px;}
.y1a_c00392{bottom:134.235000px;}
.y19_c00392{bottom:162.585000px;}
.y18_c00392{bottom:187.935000px;}
.y17_c00392{bottom:211.635000px;}
.y16_c00392{bottom:236.535000px;}
.y15_c00392{bottom:260.235000px;}
.y14_c00392{bottom:286.185000px;}
.y13_c00392{bottom:308.835000px;}
.y12_c00392{bottom:332.985000px;}
.y11_c00392{bottom:356.985000px;}
.y10_c00392{bottom:381.285000px;}
.yf_c00392{bottom:406.335000px;}
.ye_c00392{bottom:430.935000px;}
.yd_c00392{bottom:455.535000px;}
.yc_c00392{bottom:479.835000px;}
.yb_c00392{bottom:504.885000px;}
.ya_c00392{bottom:529.185000px;}
.y9_c00392{bottom:554.085000px;}
.y8_c00392{bottom:578.835000px;}
.y7_c00392{bottom:604.035000px;}
.y6_c00392{bottom:628.335000px;}
.y5_c00392{bottom:652.635000px;}
.y4_c00392{bottom:677.685000px;}
.y3_c00392{bottom:701.985000px;}
.y2_c00392{bottom:726.285000px;}
.y1_c00392{bottom:751.485000px;}
.h6_c00392{height:13.200074px;}
.h7_c00392{height:43.804688px;}
.h4_c00392{height:79.497070px;}
.h5_c00392{height:81.632812px;}
.h2_c00392{height:82.400391px;}
.h3_c00392{height:91.160156px;}
.h0_c00392{height:795.675000px;}
.h1_c00392{height:795.750000px;}
.w1_c00392{width:104.875500px;}
.w0_c00392{width:533.250000px;}
.x0_c00392{left:0.000000px;}
.x2_c00392{left:28.650000px;}
.x3_c00392{left:30.300000px;}
.x4_c00392{left:31.950000px;}
.x5_c00392{left:33.450000px;}
.x6_c00392{left:34.650000px;}
.x7_c00392{left:36.450000px;}
.x9_c00392{left:107.100000px;}
.x8_c00392{left:129.900000px;}
.x1_c00392{left:140.100000px;}
.xb_c00392{left:218.439240px;}
.xa_c00392{left:383.700000px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls5_c00392{letter-spacing:-5.333333pt;}
.ls3_c00392{letter-spacing:0.000000pt;}
.ls4_c00392{letter-spacing:2.666667pt;}
.ls0_c00392{letter-spacing:9.056000pt;}
.ls1_c00392{letter-spacing:10.656000pt;}
.ls2_c00392{letter-spacing:18.656000pt;}
.ws0_c00392{word-spacing:-29.504000pt;}
.ws3_c00392{word-spacing:-23.976000pt;}
.ws2_c00392{word-spacing:-21.378667pt;}
.ws1_c00392{word-spacing:-18.090667pt;}
.ws4_c00392{word-spacing:0.000000pt;}
._17_c00392{margin-left:-17.496000pt;}
._1c_c00392{margin-left:-16.597333pt;}
._16_c00392{margin-left:-15.573333pt;}
._14_c00392{margin-left:-14.250667pt;}
._a_c00392{margin-left:-11.221333pt;}
._d_c00392{margin-left:-9.408000pt;}
._2_c00392{margin-left:-8.064000pt;}
._9_c00392{margin-left:-6.656000pt;}
._5_c00392{margin-left:-5.301333pt;}
._e_c00392{margin-left:-3.733333pt;}
._b_c00392{margin-left:-2.698667pt;}
._c_c00392{margin-left:-1.066667pt;}
._3_c00392{width:1.642667pt;}
._4_c00392{width:2.688000pt;}
._6_c00392{width:4.181333pt;}
._10_c00392{width:5.173333pt;}
._7_c00392{width:6.645333pt;}
._1_c00392{width:8.213333pt;}
._f_c00392{width:9.589333pt;}
._11_c00392{width:11.690667pt;}
._0_c00392{width:13.290667pt;}
._12_c00392{width:14.634667pt;}
._1d_c00392{width:15.530667pt;}
._15_c00392{width:23.589333pt;}
._1a_c00392{width:26.560000pt;}
._13_c00392{width:148.914667pt;}
._1e_c00392{width:150.197333pt;}
._19_c00392{width:211.557333pt;}
._1b_c00392{width:231.552000pt;}
._8_c00392{width:321.216000pt;}
._18_c00392{width:446.544000pt;}
.fs4_c00392{font-size:42.666667pt;}
.fs2_c00392{font-size:56.000000pt;}
.fs1_c00392{font-size:64.000000pt;}
.fs3_c00392{font-size:72.000000pt;}
.fs0_c00392{font-size:74.666667pt;}
.y0_c00392{bottom:0.000000pt;}
.y1f_c00392{bottom:2.760000pt;}
.y1e_c00392{bottom:6.425204pt;}
.y1d_c00392{bottom:51.186667pt;}
.y1c_c00392{bottom:76.520000pt;}
.y1b_c00392{bottom:95.720000pt;}
.y1a_c00392{bottom:119.320000pt;}
.y19_c00392{bottom:144.520000pt;}
.y18_c00392{bottom:167.053333pt;}
.y17_c00392{bottom:188.120000pt;}
.y16_c00392{bottom:210.253333pt;}
.y15_c00392{bottom:231.320000pt;}
.y14_c00392{bottom:254.386667pt;}
.y13_c00392{bottom:274.520000pt;}
.y12_c00392{bottom:295.986667pt;}
.y11_c00392{bottom:317.320000pt;}
.y10_c00392{bottom:338.920000pt;}
.yf_c00392{bottom:361.186667pt;}
.ye_c00392{bottom:383.053333pt;}
.yd_c00392{bottom:404.920000pt;}
.yc_c00392{bottom:426.520000pt;}
.yb_c00392{bottom:448.786667pt;}
.ya_c00392{bottom:470.386667pt;}
.y9_c00392{bottom:492.520000pt;}
.y8_c00392{bottom:514.520000pt;}
.y7_c00392{bottom:536.920000pt;}
.y6_c00392{bottom:558.520000pt;}
.y5_c00392{bottom:580.120000pt;}
.y4_c00392{bottom:602.386667pt;}
.y3_c00392{bottom:623.986667pt;}
.y2_c00392{bottom:645.586667pt;}
.y1_c00392{bottom:667.986667pt;}
.h6_c00392{height:11.733399pt;}
.h7_c00392{height:38.937500pt;}
.h4_c00392{height:70.664062pt;}
.h5_c00392{height:72.562500pt;}
.h2_c00392{height:73.244792pt;}
.h3_c00392{height:81.031250pt;}
.h0_c00392{height:707.266667pt;}
.h1_c00392{height:707.333333pt;}
.w1_c00392{width:93.222667pt;}
.w0_c00392{width:474.000000pt;}
.x0_c00392{left:0.000000pt;}
.x2_c00392{left:25.466667pt;}
.x3_c00392{left:26.933333pt;}
.x4_c00392{left:28.400000pt;}
.x5_c00392{left:29.733333pt;}
.x6_c00392{left:30.800000pt;}
.x7_c00392{left:32.400000pt;}
.x9_c00392{left:95.200000pt;}
.x8_c00392{left:115.466667pt;}
.x1_c00392{left:124.533333pt;}
.xb_c00392{left:194.168213pt;}
.xa_c00392{left:341.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eee6e3599acd2def69366271.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00393;src:url('chunks/assets/font_bd3ab94347830960d7427b0f.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:1.568848;font-style:normal;font-weight:normal;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_00060351f591bbedc85b8dd1.woff2')format("woff");}.ff3_c00393{font-family:ff3_c00393;line-height:1.575000;font-style:normal;font-weight:normal;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_568618805365a8e5272692c1.woff2')format("woff");}.ff4_c00393{font-family:ff4_c00393;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00393;src:url('chunks/assets/font_8b3442c4b665368d8abea4e0.woff2')format("woff");}.ff5_c00393{font-family:ff5_c00393;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00393;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00393{font-family:ff6_c00393;line-height:1.219238;font-style: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;}
.ls3_c00393{letter-spacing:-6.000000px;}
.ls2_c00393{letter-spacing:0.000000px;}
.ls0_c00393{letter-spacing:3.000000px;}
.ls1_c00393{letter-spacing:4.788000px;}
.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:-42.000000px;}
.ws1_c00393{word-spacing:-24.051000px;}
.ws2_c00393{word-spacing:-17.352000px;}
.ws3_c00393{word-spacing:0.000000px;}
._16_c00393{margin-left:-28.338000px;}
._1b_c00393{margin-left:-26.082000px;}
._1c_c00393{margin-left:-22.392000px;}
._1d_c00393{margin-left:-18.648000px;}
._17_c00393{margin-left:-16.788000px;}
._19_c00393{margin-left:-14.850000px;}
._11_c00393{margin-left:-13.848000px;}
._c_c00393{margin-left:-11.928000px;}
._8_c00393{margin-left:-10.080000px;}
._d_c00393{margin-left:-8.160000px;}
._f_c00393{margin-left:-6.840000px;}
._7_c00393{margin-left:-5.832000px;}
._6_c00393{margin-left:-4.716000px;}
._5_c00393{margin-left:-3.528000px;}
._4_c00393{margin-left:-2.328000px;}
._a_c00393{margin-left:-1.224000px;}
._3_c00393{width:1.032000px;}
._1_c00393{width:2.688000px;}
._2_c00393{width:4.536000px;}
._13_c00393{width:5.640000px;}
._0_c00393{width:6.888000px;}
._14_c00393{width:8.397000px;}
._b_c00393{width:9.432000px;}
._1a_c00393{width:10.497000px;}
._9_c00393{width:11.544000px;}
._12_c00393{width:12.600000px;}
._15_c00393{width:14.343000px;}
._10_c00393{width:15.744000px;}
._18_c00393{width:25.872000px;}
._e_c00393{width:75.840000px;}
.fc2_c00393{color:transparent;}
.fc1_c00393{color:rgb(128,128,128);}
.fc0_c00393{color:rgb(0,0,0);}
.fs4_c00393{font-size:48.000000px;}
.fs2_c00393{font-size:63.000000px;}
.fs1_c00393{font-size:72.000000px;}
.fs3_c00393{font-size:75.000000px;}
.fs0_c00393{font-size:84.000000px;}
.y0_c00393{bottom:0.000000px;}
.y1d_c00393{bottom:3.105000px;}
.y1c_c00393{bottom:7.228363px;}
.y1b_c00393{bottom:47.250000px;}
.y1a_c00393{bottom:120.450000px;}
.y19_c00393{bottom:145.350000px;}
.y18_c00393{bottom:170.100000px;}
.y17_c00393{bottom:196.500000px;}
.y16_c00393{bottom:220.350000px;}
.y15_c00393{bottom:245.700000px;}
.y14_c00393{bottom:269.550000px;}
.y13_c00393{bottom:294.600000px;}
.y12_c00393{bottom:319.500000px;}
.y11_c00393{bottom:344.550000px;}
.y10_c00393{bottom:369.150000px;}
.yf_c00393{bottom:394.500000px;}
.ye_c00393{bottom:418.200000px;}
.yd_c00393{bottom:443.700000px;}
.yc_c00393{bottom:465.300000px;}
.yb_c00393{bottom:492.450000px;}
.ya_c00393{bottom:516.750000px;}
.y9_c00393{bottom:541.650000px;}
.y8_c00393{bottom:565.950000px;}
.y7_c00393{bottom:591.300000px;}
.y6_c00393{bottom:616.200000px;}
.y5_c00393{bottom:640.950000px;}
.y4_c00393{bottom:665.250000px;}
.y3_c00393{bottom:690.450000px;}
.y2_c00393{bottom:715.050000px;}
.y1_c00393{bottom:740.700000px;}
.h4_c00393{height:13.200074px;}
.h5_c00393{height:43.804688px;}
.h3_c00393{height:73.608398px;}
.h1_c00393{height:82.400391px;}
.h2_c00393{height:91.160156px;}
.h0_c00393{height:776.250000px;}
.w2_c00393{width:104.875500px;}
.w1_c00393{width:509.250000px;}
.w0_c00393{width:509.475000px;}
.x0_c00393{left:0.000000px;}
.x5_c00393{left:28.350000px;}
.x8_c00393{left:89.100000px;}
.x7_c00393{left:90.150000px;}
.x6_c00393{left:91.200000px;}
.x4_c00393{left:93.600000px;}
.x3_c00393{left:94.950000px;}
.x2_c00393{left:96.300000px;}
.xa_c00393{left:206.551758px;}
.x1_c00393{left:225.750000px;}
.x9_c00393{left:446.250000px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls3_c00393{letter-spacing:-5.333333pt;}
.ls2_c00393{letter-spacing:0.000000pt;}
.ls0_c00393{letter-spacing:2.666667pt;}
.ls1_c00393{letter-spacing:4.256000pt;}
.ws0_c00393{word-spacing:-37.333333pt;}
.ws1_c00393{word-spacing:-21.378667pt;}
.ws2_c00393{word-spacing:-15.424000pt;}
.ws3_c00393{word-spacing:0.000000pt;}
._16_c00393{margin-left:-25.189333pt;}
._1b_c00393{margin-left:-23.184000pt;}
._1c_c00393{margin-left:-19.904000pt;}
._1d_c00393{margin-left:-16.576000pt;}
._17_c00393{margin-left:-14.922667pt;}
._19_c00393{margin-left:-13.200000pt;}
._11_c00393{margin-left:-12.309333pt;}
._c_c00393{margin-left:-10.602667pt;}
._8_c00393{margin-left:-8.960000pt;}
._d_c00393{margin-left:-7.253333pt;}
._f_c00393{margin-left:-6.080000pt;}
._7_c00393{margin-left:-5.184000pt;}
._6_c00393{margin-left:-4.192000pt;}
._5_c00393{margin-left:-3.136000pt;}
._4_c00393{margin-left:-2.069333pt;}
._a_c00393{margin-left:-1.088000pt;}
._3_c00393{width:0.917333pt;}
._1_c00393{width:2.389333pt;}
._2_c00393{width:4.032000pt;}
._13_c00393{width:5.013333pt;}
._0_c00393{width:6.122667pt;}
._14_c00393{width:7.464000pt;}
._b_c00393{width:8.384000pt;}
._1a_c00393{width:9.330667pt;}
._9_c00393{width:10.261333pt;}
._12_c00393{width:11.200000pt;}
._15_c00393{width:12.749333pt;}
._10_c00393{width:13.994667pt;}
._18_c00393{width:22.997333pt;}
._e_c00393{width:67.413333pt;}
.fs4_c00393{font-size:42.666667pt;}
.fs2_c00393{font-size:56.000000pt;}
.fs1_c00393{font-size:64.000000pt;}
.fs3_c00393{font-size:66.666667pt;}
.fs0_c00393{font-size:74.666667pt;}
.y0_c00393{bottom:0.000000pt;}
.y1d_c00393{bottom:2.760000pt;}
.y1c_c00393{bottom:6.425212pt;}
.y1b_c00393{bottom:42.000000pt;}
.y1a_c00393{bottom:107.066667pt;}
.y19_c00393{bottom:129.200000pt;}
.y18_c00393{bottom:151.200000pt;}
.y17_c00393{bottom:174.666667pt;}
.y16_c00393{bottom:195.866667pt;}
.y15_c00393{bottom:218.400000pt;}
.y14_c00393{bottom:239.600000pt;}
.y13_c00393{bottom:261.866667pt;}
.y12_c00393{bottom:284.000000pt;}
.y11_c00393{bottom:306.266667pt;}
.y10_c00393{bottom:328.133333pt;}
.yf_c00393{bottom:350.666667pt;}
.ye_c00393{bottom:371.733333pt;}
.yd_c00393{bottom:394.400000pt;}
.yc_c00393{bottom:413.600000pt;}
.yb_c00393{bottom:437.733333pt;}
.ya_c00393{bottom:459.333333pt;}
.y9_c00393{bottom:481.466667pt;}
.y8_c00393{bottom:503.066667pt;}
.y7_c00393{bottom:525.600000pt;}
.y6_c00393{bottom:547.733333pt;}
.y5_c00393{bottom:569.733333pt;}
.y4_c00393{bottom:591.333333pt;}
.y3_c00393{bottom:613.733333pt;}
.y2_c00393{bottom:635.600000pt;}
.y1_c00393{bottom:658.400000pt;}
.h4_c00393{height:11.733399pt;}
.h5_c00393{height:38.937500pt;}
.h3_c00393{height:65.429688pt;}
.h1_c00393{height:73.244792pt;}
.h2_c00393{height:81.031250pt;}
.h0_c00393{height:690.000000pt;}
.w2_c00393{width:93.222667pt;}
.w1_c00393{width:452.666667pt;}
.w0_c00393{width:452.866667pt;}
.x0_c00393{left:0.000000pt;}
.x5_c00393{left:25.200000pt;}
.x8_c00393{left:79.200000pt;}
.x7_c00393{left:80.133333pt;}
.x6_c00393{left:81.066667pt;}
.x4_c00393{left:83.200000pt;}
.x3_c00393{left:84.400000pt;}
.x2_c00393{left:85.600000pt;}
.xa_c00393{left:183.601563pt;}
.x1_c00393{left:200.666667pt;}
.x9_c00393{left:396.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_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_ee8888a38c8be911624a9725.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.480469;font-style:normal;font-weight:normal;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_b9d5cc2990c04ad42a6d3980.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:1.568848;font-style:normal;font-weight:normal;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_64249d63a718772c01f78197.woff2')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00394;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00394{font-family:ff4_c00394;line-height:1.219238;font-style: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;}
.ls4_c00394{letter-spacing:-6.000000px;}
.ls1_c00394{letter-spacing:-3.000000px;}
.ls3_c00394{letter-spacing:0.000000px;}
.ls2_c00394{letter-spacing:3.000000px;}
.ls0_c00394{letter-spacing:11.988000px;}
.sc__c00394{text-shadow:none;}
.sc0_c00394{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00394{-webkit-text-stroke:0px transparent;}
.sc0_c00394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00394{word-spacing:-24.051000px;}
.ws3_c00394{word-spacing:-20.352000px;}
.ws0_c00394{word-spacing:-17.352000px;}
.ws2_c00394{word-spacing:-6.978000px;}
.ws4_c00394{word-spacing:0.000000px;}
._1a_c00394{margin-left:-17.280000px;}
._15_c00394{margin-left:-10.992000px;}
._14_c00394{margin-left:-9.936000px;}
._12_c00394{margin-left:-8.424000px;}
._13_c00394{margin-left:-7.416000px;}
._c_c00394{margin-left:-6.120000px;}
._10_c00394{margin-left:-4.896000px;}
._b_c00394{margin-left:-2.880000px;}
._a_c00394{margin-left:-1.800000px;}
._f_c00394{width:1.512000px;}
._2_c00394{width:2.640000px;}
._d_c00394{width:3.672000px;}
._e_c00394{width:5.016000px;}
._18_c00394{width:6.552000px;}
._4_c00394{width:8.040000px;}
._5_c00394{width:9.780000px;}
._19_c00394{width:11.064000px;}
._16_c00394{width:13.092000px;}
._11_c00394{width:14.472000px;}
._20_c00394{width:17.088000px;}
._8_c00394{width:18.780000px;}
._1_c00394{width:19.980000px;}
._6_c00394{width:21.300000px;}
._1b_c00394{width:22.824000px;}
._1d_c00394{width:26.304000px;}
._3_c00394{width:27.840000px;}
._1e_c00394{width:32.472000px;}
._0_c00394{width:33.960000px;}
._9_c00394{width:47.220000px;}
._17_c00394{width:76.008000px;}
._1c_c00394{width:178.104000px;}
._21_c00394{width:312.144000px;}
._7_c00394{width:328.440000px;}
._1f_c00394{width:1112.664000px;}
.fc2_c00394{color:transparent;}
.fc1_c00394{color:rgb(128,128,128);}
.fc0_c00394{color:rgb(0,0,0);}
.fs3_c00394{font-size:48.000000px;}
.fs0_c00394{font-size:60.000000px;}
.fs2_c00394{font-size:63.000000px;}
.fs1_c00394{font-size:72.000000px;}
.y0_c00394{bottom:0.000000px;}
.y1f_c00394{bottom:3.105000px;}
.y1e_c00394{bottom:7.228355px;}
.y1d_c00394{bottom:42.435000px;}
.y1c_c00394{bottom:70.185000px;}
.y1b_c00394{bottom:94.485000px;}
.y1a_c00394{bottom:116.985000px;}
.y19_c00394{bottom:143.385000px;}
.y18_c00394{bottom:170.085000px;}
.y17_c00394{bottom:193.635000px;}
.y16_c00394{bottom:220.035000px;}
.y15_c00394{bottom:244.635000px;}
.y14_c00394{bottom:269.685000px;}
.y13_c00394{bottom:292.485000px;}
.y12_c00394{bottom:316.785000px;}
.y11_c00394{bottom:339.735000px;}
.y10_c00394{bottom:363.735000px;}
.yf_c00394{bottom:389.685000px;}
.ye_c00394{bottom:413.985000px;}
.yd_c00394{bottom:439.335000px;}
.yc_c00394{bottom:464.085000px;}
.yb_c00394{bottom:488.235000px;}
.ya_c00394{bottom:512.985000px;}
.y9_c00394{bottom:536.835000px;}
.y8_c00394{bottom:561.285000px;}
.y7_c00394{bottom:586.485000px;}
.y6_c00394{bottom:611.085000px;}
.y5_c00394{bottom:635.535000px;}
.y4_c00394{bottom:659.835000px;}
.y3_c00394{bottom:684.735000px;}
.y2_c00394{bottom:709.635000px;}
.y1_c00394{bottom:734.685000px;}
.h5_c00394{height:13.200074px;}
.h6_c00394{height:43.804688px;}
.h2_c00394{height:70.224609px;}
.h4_c00394{height:79.765137px;}
.h3_c00394{height:91.160156px;}
.h0_c00394{height:782.175000px;}
.h1_c00394{height:782.250000px;}
.w2_c00394{width:104.875500px;}
.w0_c00394{width:544.875000px;}
.w1_c00394{width:545.250000px;}
.x0_c00394{left:0.000000px;}
.x8_c00394{left:28.350000px;}
.x5_c00394{left:31.350000px;}
.x6_c00394{left:32.850000px;}
.x3_c00394{left:34.050000px;}
.x2_c00394{left:35.400000px;}
.x4_c00394{left:36.450000px;}
.x7_c00394{left:54.300000px;}
.x1_c00394{left:157.350000px;}
.xa_c00394{left:224.251740px;}
.x9_c00394{left:247.950000px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls4_c00394{letter-spacing:-5.333333pt;}
.ls1_c00394{letter-spacing:-2.666667pt;}
.ls3_c00394{letter-spacing:0.000000pt;}
.ls2_c00394{letter-spacing:2.666667pt;}
.ls0_c00394{letter-spacing:10.656000pt;}
.ws1_c00394{word-spacing:-21.378667pt;}
.ws3_c00394{word-spacing:-18.090667pt;}
.ws0_c00394{word-spacing:-15.424000pt;}
.ws2_c00394{word-spacing:-6.202667pt;}
.ws4_c00394{word-spacing:0.000000pt;}
._1a_c00394{margin-left:-15.360000pt;}
._15_c00394{margin-left:-9.770667pt;}
._14_c00394{margin-left:-8.832000pt;}
._12_c00394{margin-left:-7.488000pt;}
._13_c00394{margin-left:-6.592000pt;}
._c_c00394{margin-left:-5.440000pt;}
._10_c00394{margin-left:-4.352000pt;}
._b_c00394{margin-left:-2.560000pt;}
._a_c00394{margin-left:-1.600000pt;}
._f_c00394{width:1.344000pt;}
._2_c00394{width:2.346667pt;}
._d_c00394{width:3.264000pt;}
._e_c00394{width:4.458667pt;}
._18_c00394{width:5.824000pt;}
._4_c00394{width:7.146667pt;}
._5_c00394{width:8.693333pt;}
._19_c00394{width:9.834667pt;}
._16_c00394{width:11.637333pt;}
._11_c00394{width:12.864000pt;}
._20_c00394{width:15.189333pt;}
._8_c00394{width:16.693333pt;}
._1_c00394{width:17.760000pt;}
._6_c00394{width:18.933333pt;}
._1b_c00394{width:20.288000pt;}
._1d_c00394{width:23.381333pt;}
._3_c00394{width:24.746667pt;}
._1e_c00394{width:28.864000pt;}
._0_c00394{width:30.186667pt;}
._9_c00394{width:41.973333pt;}
._17_c00394{width:67.562667pt;}
._1c_c00394{width:158.314667pt;}
._21_c00394{width:277.461333pt;}
._7_c00394{width:291.946667pt;}
._1f_c00394{width:989.034667pt;}
.fs3_c00394{font-size:42.666667pt;}
.fs0_c00394{font-size:53.333333pt;}
.fs2_c00394{font-size:56.000000pt;}
.fs1_c00394{font-size:64.000000pt;}
.y0_c00394{bottom:0.000000pt;}
.y1f_c00394{bottom:2.760000pt;}
.y1e_c00394{bottom:6.425204pt;}
.y1d_c00394{bottom:37.720000pt;}
.y1c_c00394{bottom:62.386667pt;}
.y1b_c00394{bottom:83.986667pt;}
.y1a_c00394{bottom:103.986667pt;}
.y19_c00394{bottom:127.453333pt;}
.y18_c00394{bottom:151.186667pt;}
.y17_c00394{bottom:172.120000pt;}
.y16_c00394{bottom:195.586667pt;}
.y15_c00394{bottom:217.453333pt;}
.y14_c00394{bottom:239.720000pt;}
.y13_c00394{bottom:259.986667pt;}
.y12_c00394{bottom:281.586667pt;}
.y11_c00394{bottom:301.986667pt;}
.y10_c00394{bottom:323.320000pt;}
.yf_c00394{bottom:346.386667pt;}
.ye_c00394{bottom:367.986667pt;}
.yd_c00394{bottom:390.520000pt;}
.yc_c00394{bottom:412.520000pt;}
.yb_c00394{bottom:433.986667pt;}
.ya_c00394{bottom:455.986667pt;}
.y9_c00394{bottom:477.186667pt;}
.y8_c00394{bottom:498.920000pt;}
.y7_c00394{bottom:521.320000pt;}
.y6_c00394{bottom:543.186667pt;}
.y5_c00394{bottom:564.920000pt;}
.y4_c00394{bottom:586.520000pt;}
.y3_c00394{bottom:608.653333pt;}
.y2_c00394{bottom:630.786667pt;}
.y1_c00394{bottom:653.053333pt;}
.h5_c00394{height:11.733399pt;}
.h6_c00394{height:38.937500pt;}
.h2_c00394{height:62.421875pt;}
.h4_c00394{height:70.902344pt;}
.h3_c00394{height:81.031250pt;}
.h0_c00394{height:695.266667pt;}
.h1_c00394{height:695.333333pt;}
.w2_c00394{width:93.222667pt;}
.w0_c00394{width:484.333333pt;}
.w1_c00394{width:484.666667pt;}
.x0_c00394{left:0.000000pt;}
.x8_c00394{left:25.200000pt;}
.x5_c00394{left:27.866667pt;}
.x6_c00394{left:29.200000pt;}
.x3_c00394{left:30.266667pt;}
.x2_c00394{left:31.466667pt;}
.x4_c00394{left:32.400000pt;}
.x7_c00394{left:48.266667pt;}
.x1_c00394{left:139.866667pt;}
.xa_c00394{left:199.334880pt;}
.x9_c00394{left:220.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_96e1dca43dfaa0527bfc7c8f.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.480469;font-style:normal;font-weight:normal;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_4b93cc939552a631ebe8d96d.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00395{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00395{vertical-align:0.000000px;}
.ls1_c00395{letter-spacing:0.000000px;}
.ls0_c00395{letter-spacing:3.000000px;}
.sc__c00395{text-shadow:none;}
.sc0_c00395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00395{-webkit-text-stroke:0px transparent;}
.sc0_c00395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00395{word-spacing:-20.352000px;}
.ws0_c00395{word-spacing:-17.352000px;}
.ws2_c00395{word-spacing:0.000000px;}
._10_c00395{margin-left:-11.910000px;}
._c_c00395{margin-left:-10.506000px;}
._f_c00395{margin-left:-9.348000px;}
._2_c00395{margin-left:-8.178000px;}
._a_c00395{margin-left:-6.504000px;}
._0_c00395{margin-left:-5.046000px;}
._1_c00395{margin-left:-3.480000px;}
._3_c00395{margin-left:-1.800000px;}
._5_c00395{width:1.356000px;}
._4_c00395{width:2.820000px;}
._6_c00395{width:4.284000px;}
._8_c00395{width:5.820000px;}
._b_c00395{width:7.200000px;}
._9_c00395{width:8.316000px;}
._d_c00395{width:9.780000px;}
._7_c00395{width:10.836000px;}
._e_c00395{width:12.120000px;}
._12_c00395{width:13.788000px;}
._11_c00395{width:15.504000px;}
._13_c00395{width:22.332000px;}
.fc2_c00395{color:transparent;}
.fc1_c00395{color:rgb(128,128,128);}
.fc0_c00395{color:rgb(0,0,0);}
.fs2_c00395{font-size:48.000000px;}
.fs1_c00395{font-size:72.000000px;}
.fs0_c00395{font-size:87.000000px;}
.y0_c00395{bottom:0.000000px;}
.y1f_c00395{bottom:3.105000px;}
.y1e_c00395{bottom:7.228357px;}
.y1d_c00395{bottom:43.830000px;}
.y1c_c00395{bottom:66.180000px;}
.y1b_c00395{bottom:91.230000px;}
.y1a_c00395{bottom:116.430000px;}
.y19_c00395{bottom:141.180000px;}
.y18_c00395{bottom:166.680000px;}
.y17_c00395{bottom:191.430000px;}
.y16_c00395{bottom:217.380000px;}
.y15_c00395{bottom:241.080000px;}
.y14_c00395{bottom:265.680000px;}
.y13_c00395{bottom:290.130000px;}
.y12_c00395{bottom:315.030000px;}
.y11_c00395{bottom:339.930000px;}
.y10_c00395{bottom:364.830000px;}
.yf_c00395{bottom:388.830000px;}
.ye_c00395{bottom:413.430000px;}
.yd_c00395{bottom:438.030000px;}
.yc_c00395{bottom:462.030000px;}
.yb_c00395{bottom:486.330000px;}
.ya_c00395{bottom:511.080000px;}
.y9_c00395{bottom:535.380000px;}
.y8_c00395{bottom:559.980000px;}
.y7_c00395{bottom:584.580000px;}
.y6_c00395{bottom:609.480000px;}
.y5_c00395{bottom:633.930000px;}
.y4_c00395{bottom:658.830000px;}
.y3_c00395{bottom:683.430000px;}
.y2_c00395{bottom:707.130000px;}
.y1_c00395{bottom:733.680000px;}
.h4_c00395{height:13.200074px;}
.h5_c00395{height:43.804688px;}
.h3_c00395{height:91.160156px;}
.h2_c00395{height:110.151855px;}
.h1_c00395{height:777.750000px;}
.h0_c00395{height:777.900000px;}
.w2_c00395{width:104.875500px;}
.w0_c00395{width:516.525000px;}
.w1_c00395{width:516.750000px;}
.x0_c00395{left:0.000000px;}
.x2_c00395{left:106.050000px;}
.x3_c00395{left:107.100000px;}
.x4_c00395{left:108.300000px;}
.x6_c00395{left:210.076767px;}
.x1_c00395{left:225.450000px;}
.x5_c00395{left:451.800000px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls1_c00395{letter-spacing:0.000000pt;}
.ls0_c00395{letter-spacing:2.666667pt;}
.ws1_c00395{word-spacing:-18.090667pt;}
.ws0_c00395{word-spacing:-15.424000pt;}
.ws2_c00395{word-spacing:0.000000pt;}
._10_c00395{margin-left:-10.586667pt;}
._c_c00395{margin-left:-9.338667pt;}
._f_c00395{margin-left:-8.309333pt;}
._2_c00395{margin-left:-7.269333pt;}
._a_c00395{margin-left:-5.781333pt;}
._0_c00395{margin-left:-4.485333pt;}
._1_c00395{margin-left:-3.093333pt;}
._3_c00395{margin-left:-1.600000pt;}
._5_c00395{width:1.205333pt;}
._4_c00395{width:2.506667pt;}
._6_c00395{width:3.808000pt;}
._8_c00395{width:5.173333pt;}
._b_c00395{width:6.400000pt;}
._9_c00395{width:7.392000pt;}
._d_c00395{width:8.693333pt;}
._7_c00395{width:9.632000pt;}
._e_c00395{width:10.773333pt;}
._12_c00395{width:12.256000pt;}
._11_c00395{width:13.781333pt;}
._13_c00395{width:19.850667pt;}
.fs2_c00395{font-size:42.666667pt;}
.fs1_c00395{font-size:64.000000pt;}
.fs0_c00395{font-size:77.333333pt;}
.y0_c00395{bottom:0.000000pt;}
.y1f_c00395{bottom:2.760000pt;}
.y1e_c00395{bottom:6.425206pt;}
.y1d_c00395{bottom:38.960000pt;}
.y1c_c00395{bottom:58.826667pt;}
.y1b_c00395{bottom:81.093333pt;}
.y1a_c00395{bottom:103.493333pt;}
.y19_c00395{bottom:125.493333pt;}
.y18_c00395{bottom:148.160000pt;}
.y17_c00395{bottom:170.160000pt;}
.y16_c00395{bottom:193.226667pt;}
.y15_c00395{bottom:214.293333pt;}
.y14_c00395{bottom:236.160000pt;}
.y13_c00395{bottom:257.893333pt;}
.y12_c00395{bottom:280.026667pt;}
.y11_c00395{bottom:302.160000pt;}
.y10_c00395{bottom:324.293333pt;}
.yf_c00395{bottom:345.626667pt;}
.ye_c00395{bottom:367.493333pt;}
.yd_c00395{bottom:389.360000pt;}
.yc_c00395{bottom:410.693333pt;}
.yb_c00395{bottom:432.293333pt;}
.ya_c00395{bottom:454.293333pt;}
.y9_c00395{bottom:475.893333pt;}
.y8_c00395{bottom:497.760000pt;}
.y7_c00395{bottom:519.626667pt;}
.y6_c00395{bottom:541.760000pt;}
.y5_c00395{bottom:563.493333pt;}
.y4_c00395{bottom:585.626667pt;}
.y3_c00395{bottom:607.493333pt;}
.y2_c00395{bottom:628.560000pt;}
.y1_c00395{bottom:652.160000pt;}
.h4_c00395{height:11.733399pt;}
.h5_c00395{height:38.937500pt;}
.h3_c00395{height:81.031250pt;}
.h2_c00395{height:97.912760pt;}
.h1_c00395{height:691.333333pt;}
.h0_c00395{height:691.466667pt;}
.w2_c00395{width:93.222667pt;}
.w0_c00395{width:459.133333pt;}
.w1_c00395{width:459.333333pt;}
.x0_c00395{left:0.000000pt;}
.x2_c00395{left:94.266667pt;}
.x3_c00395{left:95.200000pt;}
.x4_c00395{left:96.266667pt;}
.x6_c00395{left:186.734904pt;}
.x1_c00395{left:200.400000pt;}
.x5_c00395{left:401.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c87f73fc57e3e8cca59fdcf0.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.480469;font-style:normal;font-weight:normal;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_a2bc00cd49552f50f250d642.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:1.568848;font-style:normal;font-weight:normal;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_ad1b1c3b7a54f977e7a10bbd.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00396;src:url('chunks/assets/font_f99fa69e485ae96e8c482691.woff2')format("woff");}.ff4_c00396{font-family:ff4_c00396;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00396;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00396{font-family:ff5_c00396;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00396{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00396{vertical-align:0.000000px;}
.ls2_c00396{letter-spacing:0.000000px;}
.ls3_c00396{letter-spacing:3.000000px;}
.ls4_c00396{letter-spacing:6.000000px;}
.ls1_c00396{letter-spacing:7.788000px;}
.ls0_c00396{letter-spacing:10.248000px;}
.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:-9.135000px;}
.ws2_c00396{word-spacing:0.000000px;}
.ws1_c00396{word-spacing:0.648000px;}
._7_c00396{margin-left:-11.664000px;}
._16_c00396{margin-left:-9.648000px;}
._12_c00396{margin-left:-8.208000px;}
._11_c00396{margin-left:-7.056000px;}
._8_c00396{margin-left:-5.352000px;}
._b_c00396{margin-left:-3.384000px;}
._e_c00396{margin-left:-2.376000px;}
._a_c00396{margin-left:-1.368000px;}
._9_c00396{width:1.872000px;}
._5_c00396{width:2.952000px;}
._4_c00396{width:4.824000px;}
._d_c00396{width:5.904000px;}
._2_c00396{width:7.128000px;}
._13_c00396{width:8.208000px;}
._c_c00396{width:10.080000px;}
._1_c00396{width:11.880000px;}
._3_c00396{width:14.184000px;}
._10_c00396{width:15.795000px;}
._0_c00396{width:19.584000px;}
._15_c00396{width:21.672000px;}
._14_c00396{width:23.352000px;}
._17_c00396{width:29.496000px;}
._f_c00396{width:95.112000px;}
._18_c00396{width:315.000000px;}
._6_c00396{width:379.008000px;}
.fc2_c00396{color:transparent;}
.fc1_c00396{color:rgb(128,128,128);}
.fc0_c00396{color:rgb(0,0,0);}
.fs4_c00396{font-size:48.000000px;}
.fs2_c00396{font-size:57.000000px;}
.fs1_c00396{font-size:63.000000px;}
.fs3_c00396{font-size:69.000000px;}
.fs0_c00396{font-size:72.000000px;}
.y0_c00396{bottom:0.000000px;}
.y1f_c00396{bottom:3.105000px;}
.y1e_c00396{bottom:7.228363px;}
.y1d_c00396{bottom:63.150000px;}
.y1c_c00396{bottom:89.400000px;}
.y1b_c00396{bottom:115.050000px;}
.y1a_c00396{bottom:141.450000px;}
.y19_c00396{bottom:166.050000px;}
.y18_c00396{bottom:189.750000px;}
.y17_c00396{bottom:215.700000px;}
.y16_c00396{bottom:240.000000px;}
.y15_c00396{bottom:264.600000px;}
.y14_c00396{bottom:289.650000px;}
.y13_c00396{bottom:313.650000px;}
.y12_c00396{bottom:335.850000px;}
.y11_c00396{bottom:360.450000px;}
.y10_c00396{bottom:384.450000px;}
.yf_c00396{bottom:409.650000px;}
.ye_c00396{bottom:433.650000px;}
.yd_c00396{bottom:458.400000px;}
.yc_c00396{bottom:483.000000px;}
.yb_c00396{bottom:507.600000px;}
.ya_c00396{bottom:531.600000px;}
.y9_c00396{bottom:555.900000px;}
.y8_c00396{bottom:581.100000px;}
.y7_c00396{bottom:605.100000px;}
.y6_c00396{bottom:630.150000px;}
.y5_c00396{bottom:654.750000px;}
.y4_c00396{bottom:679.950000px;}
.y3_c00396{bottom:704.400000px;}
.y2_c00396{bottom:728.700000px;}
.y1_c00396{bottom:754.200000px;}
.h3_c00396{height:13.200074px;}
.h4_c00396{height:43.804688px;}
.h2_c00396{height:91.160156px;}
.h1_c00396{height:795.000000px;}
.h0_c00396{height:795.150000px;}
.w2_c00396{width:104.875500px;}
.w1_c00396{width:537.000000px;}
.w0_c00396{width:537.300000px;}
.x0_c00396{left:0.000000px;}
.x5_c00396{left:28.800000px;}
.x3_c00396{left:31.650000px;}
.x4_c00396{left:33.300000px;}
.x2_c00396{left:34.350000px;}
.x1_c00396{left:148.200000px;}
.x7_c00396{left:220.464249px;}
.x6_c00396{left:238.650000px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls2_c00396{letter-spacing:0.000000pt;}
.ls3_c00396{letter-spacing:2.666667pt;}
.ls4_c00396{letter-spacing:5.333333pt;}
.ls1_c00396{letter-spacing:6.922667pt;}
.ls0_c00396{letter-spacing:9.109333pt;}
.ws0_c00396{word-spacing:-8.120000pt;}
.ws2_c00396{word-spacing:0.000000pt;}
.ws1_c00396{word-spacing:0.576000pt;}
._7_c00396{margin-left:-10.368000pt;}
._16_c00396{margin-left:-8.576000pt;}
._12_c00396{margin-left:-7.296000pt;}
._11_c00396{margin-left:-6.272000pt;}
._8_c00396{margin-left:-4.757333pt;}
._b_c00396{margin-left:-3.008000pt;}
._e_c00396{margin-left:-2.112000pt;}
._a_c00396{margin-left:-1.216000pt;}
._9_c00396{width:1.664000pt;}
._5_c00396{width:2.624000pt;}
._4_c00396{width:4.288000pt;}
._d_c00396{width:5.248000pt;}
._2_c00396{width:6.336000pt;}
._13_c00396{width:7.296000pt;}
._c_c00396{width:8.960000pt;}
._1_c00396{width:10.560000pt;}
._3_c00396{width:12.608000pt;}
._10_c00396{width:14.040000pt;}
._0_c00396{width:17.408000pt;}
._15_c00396{width:19.264000pt;}
._14_c00396{width:20.757333pt;}
._17_c00396{width:26.218667pt;}
._f_c00396{width:84.544000pt;}
._18_c00396{width:280.000000pt;}
._6_c00396{width:336.896000pt;}
.fs4_c00396{font-size:42.666667pt;}
.fs2_c00396{font-size:50.666667pt;}
.fs1_c00396{font-size:56.000000pt;}
.fs3_c00396{font-size:61.333333pt;}
.fs0_c00396{font-size:64.000000pt;}
.y0_c00396{bottom:0.000000pt;}
.y1f_c00396{bottom:2.760000pt;}
.y1e_c00396{bottom:6.425212pt;}
.y1d_c00396{bottom:56.133333pt;}
.y1c_c00396{bottom:79.466667pt;}
.y1b_c00396{bottom:102.266667pt;}
.y1a_c00396{bottom:125.733333pt;}
.y19_c00396{bottom:147.600000pt;}
.y18_c00396{bottom:168.666667pt;}
.y17_c00396{bottom:191.733333pt;}
.y16_c00396{bottom:213.333333pt;}
.y15_c00396{bottom:235.200000pt;}
.y14_c00396{bottom:257.466667pt;}
.y13_c00396{bottom:278.800000pt;}
.y12_c00396{bottom:298.533333pt;}
.y11_c00396{bottom:320.400000pt;}
.y10_c00396{bottom:341.733333pt;}
.yf_c00396{bottom:364.133333pt;}
.ye_c00396{bottom:385.466667pt;}
.yd_c00396{bottom:407.466667pt;}
.yc_c00396{bottom:429.333333pt;}
.yb_c00396{bottom:451.200000pt;}
.ya_c00396{bottom:472.533333pt;}
.y9_c00396{bottom:494.133333pt;}
.y8_c00396{bottom:516.533333pt;}
.y7_c00396{bottom:537.866667pt;}
.y6_c00396{bottom:560.133333pt;}
.y5_c00396{bottom:582.000000pt;}
.y4_c00396{bottom:604.400000pt;}
.y3_c00396{bottom:626.133333pt;}
.y2_c00396{bottom:647.733333pt;}
.y1_c00396{bottom:670.400000pt;}
.h3_c00396{height:11.733399pt;}
.h4_c00396{height:38.937500pt;}
.h2_c00396{height:81.031250pt;}
.h1_c00396{height:706.666667pt;}
.h0_c00396{height:706.800000pt;}
.w2_c00396{width:93.222667pt;}
.w1_c00396{width:477.333333pt;}
.w0_c00396{width:477.600000pt;}
.x0_c00396{left:0.000000pt;}
.x5_c00396{left:25.600000pt;}
.x3_c00396{left:28.133333pt;}
.x4_c00396{left:29.600000pt;}
.x2_c00396{left:30.533333pt;}
.x1_c00396{left:131.733333pt;}
.x7_c00396{left:195.968221pt;}
.x6_c00396{left:212.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_10959774e58d97ac1e55969f.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00397;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00397;src:url('chunks/assets/font_4369e880ceb68b10f6999db4.woff2')format("woff");}.ff3_c00397{font-family:ff3_c00397;line-height:1.568848;font-style:normal;font-weight:normal;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_260e32867bf7d42887e4f1e0.woff2')format("woff");}.ff4_c00397{font-family:ff4_c00397;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00397;src:url('chunks/assets/font_57e1d5b226035c9c553733f3.woff2')format("woff");}.ff5_c00397{font-family:ff5_c00397;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00397;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00397{font-family:ff6_c00397;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00397{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00397{vertical-align:0.000000px;}
.ls2_c00397{letter-spacing:0.000000px;}
.ls0_c00397{letter-spacing:3.000000px;}
.ls3_c00397{letter-spacing:6.000000px;}
.ls1_c00397{letter-spacing:15.588000px;}
.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:-33.192000px;}
.ws1_c00397{word-spacing:-17.352000px;}
.ws2_c00397{word-spacing:0.000000px;}
._3_c00397{margin-left:-13.356000px;}
._11_c00397{margin-left:-9.984000px;}
._c_c00397{margin-left:-8.100000px;}
._b_c00397{margin-left:-6.132000px;}
._6_c00397{margin-left:-4.176000px;}
._5_c00397{margin-left:-3.096000px;}
._4_c00397{margin-left:-1.440000px;}
._7_c00397{width:1.224000px;}
._1_c00397{width:2.688000px;}
._10_c00397{width:3.780000px;}
._2_c00397{width:4.788000px;}
._e_c00397{width:5.805000px;}
._0_c00397{width:6.888000px;}
._8_c00397{width:7.992000px;}
._d_c00397{width:10.176000px;}
._a_c00397{width:12.144000px;}
._f_c00397{width:13.221000px;}
._9_c00397{width:23.880000px;}
.fc2_c00397{color:transparent;}
.fc1_c00397{color:rgb(128,128,128);}
.fc0_c00397{color:rgb(0,0,0);}
.fs4_c00397{font-size:48.000000px;}
.fs2_c00397{font-size:51.000000px;}
.fs3_c00397{font-size:63.000000px;}
.fs1_c00397{font-size:72.000000px;}
.fs0_c00397{font-size:84.000000px;}
.y0_c00397{bottom:0.000000px;}
.y1f_c00397{bottom:3.105000px;}
.y1e_c00397{bottom:7.228363px;}
.y1d_c00397{bottom:43.500000px;}
.y1c_c00397{bottom:66.150000px;}
.y1b_c00397{bottom:92.100000px;}
.y1a_c00397{bottom:116.400000px;}
.y19_c00397{bottom:142.050000px;}
.y18_c00397{bottom:166.500000px;}
.y17_c00397{bottom:192.000000px;}
.y16_c00397{bottom:216.300000px;}
.y15_c00397{bottom:240.600000px;}
.y14_c00397{bottom:265.050000px;}
.y13_c00397{bottom:290.550000px;}
.y12_c00397{bottom:315.000000px;}
.y11_c00397{bottom:339.300000px;}
.y10_c00397{bottom:363.900000px;}
.yf_c00397{bottom:388.800000px;}
.ye_c00397{bottom:412.200000px;}
.yd_c00397{bottom:437.100000px;}
.yc_c00397{bottom:461.100000px;}
.yb_c00397{bottom:486.000000px;}
.ya_c00397{bottom:510.600000px;}
.y9_c00397{bottom:535.050000px;}
.y8_c00397{bottom:559.650000px;}
.y7_c00397{bottom:584.250000px;}
.y6_c00397{bottom:608.850000px;}
.y5_c00397{bottom:633.150000px;}
.y4_c00397{bottom:658.200000px;}
.y3_c00397{bottom:683.400000px;}
.y2_c00397{bottom:708.150000px;}
.y1_c00397{bottom:733.050000px;}
.h3_c00397{height:13.200074px;}
.h4_c00397{height:43.804688px;}
.h1_c00397{height:82.441406px;}
.h2_c00397{height:91.160156px;}
.h0_c00397{height:769.500000px;}
.w2_c00397{width:104.875500px;}
.w1_c00397{width:507.750000px;}
.w0_c00397{width:507.900000px;}
.x0_c00397{left:0.000000px;}
.x2_c00397{left:90.900000px;}
.x3_c00397{left:92.100000px;}
.x4_c00397{left:93.150000px;}
.x5_c00397{left:94.200000px;}
.x6_c00397{left:95.850000px;}
.x7_c00397{left:97.800000px;}
.x8_c00397{left:98.850000px;}
.x9_c00397{left:100.800000px;}
.xb_c00397{left:205.764267px;}
.x1_c00397{left:222.150000px;}
.xa_c00397{left:427.200000px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls2_c00397{letter-spacing:0.000000pt;}
.ls0_c00397{letter-spacing:2.666667pt;}
.ls3_c00397{letter-spacing:5.333333pt;}
.ls1_c00397{letter-spacing:13.856000pt;}
.ws0_c00397{word-spacing:-29.504000pt;}
.ws1_c00397{word-spacing:-15.424000pt;}
.ws2_c00397{word-spacing:0.000000pt;}
._3_c00397{margin-left:-11.872000pt;}
._11_c00397{margin-left:-8.874667pt;}
._c_c00397{margin-left:-7.200000pt;}
._b_c00397{margin-left:-5.450667pt;}
._6_c00397{margin-left:-3.712000pt;}
._5_c00397{margin-left:-2.752000pt;}
._4_c00397{margin-left:-1.280000pt;}
._7_c00397{width:1.088000pt;}
._1_c00397{width:2.389333pt;}
._10_c00397{width:3.360000pt;}
._2_c00397{width:4.256000pt;}
._e_c00397{width:5.160000pt;}
._0_c00397{width:6.122667pt;}
._8_c00397{width:7.104000pt;}
._d_c00397{width:9.045333pt;}
._a_c00397{width:10.794667pt;}
._f_c00397{width:11.752000pt;}
._9_c00397{width:21.226667pt;}
.fs4_c00397{font-size:42.666667pt;}
.fs2_c00397{font-size:45.333333pt;}
.fs3_c00397{font-size:56.000000pt;}
.fs1_c00397{font-size:64.000000pt;}
.fs0_c00397{font-size:74.666667pt;}
.y0_c00397{bottom:0.000000pt;}
.y1f_c00397{bottom:2.760000pt;}
.y1e_c00397{bottom:6.425212pt;}
.y1d_c00397{bottom:38.666667pt;}
.y1c_c00397{bottom:58.800000pt;}
.y1b_c00397{bottom:81.866667pt;}
.y1a_c00397{bottom:103.466667pt;}
.y19_c00397{bottom:126.266667pt;}
.y18_c00397{bottom:148.000000pt;}
.y17_c00397{bottom:170.666667pt;}
.y16_c00397{bottom:192.266667pt;}
.y15_c00397{bottom:213.866667pt;}
.y14_c00397{bottom:235.600000pt;}
.y13_c00397{bottom:258.266667pt;}
.y12_c00397{bottom:280.000000pt;}
.y11_c00397{bottom:301.600000pt;}
.y10_c00397{bottom:323.466667pt;}
.yf_c00397{bottom:345.600000pt;}
.ye_c00397{bottom:366.400000pt;}
.yd_c00397{bottom:388.533333pt;}
.yc_c00397{bottom:409.866667pt;}
.yb_c00397{bottom:432.000000pt;}
.ya_c00397{bottom:453.866667pt;}
.y9_c00397{bottom:475.600000pt;}
.y8_c00397{bottom:497.466667pt;}
.y7_c00397{bottom:519.333333pt;}
.y6_c00397{bottom:541.200000pt;}
.y5_c00397{bottom:562.800000pt;}
.y4_c00397{bottom:585.066667pt;}
.y3_c00397{bottom:607.466667pt;}
.y2_c00397{bottom:629.466667pt;}
.y1_c00397{bottom:651.600000pt;}
.h3_c00397{height:11.733399pt;}
.h4_c00397{height:38.937500pt;}
.h1_c00397{height:73.281250pt;}
.h2_c00397{height:81.031250pt;}
.h0_c00397{height:684.000000pt;}
.w2_c00397{width:93.222667pt;}
.w1_c00397{width:451.333333pt;}
.w0_c00397{width:451.466667pt;}
.x0_c00397{left:0.000000pt;}
.x2_c00397{left:80.800000pt;}
.x3_c00397{left:81.866667pt;}
.x4_c00397{left:82.800000pt;}
.x5_c00397{left:83.733333pt;}
.x6_c00397{left:85.200000pt;}
.x7_c00397{left:86.933333pt;}
.x8_c00397{left:87.866667pt;}
.x9_c00397{left:89.600000pt;}
.xb_c00397{left:182.901571pt;}
.x1_c00397{left:197.466667pt;}
.xa_c00397{left:379.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b667dc788ef8b5f6fd2a3733.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.480469;font-style:normal;font-weight:normal;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_6f90d0305c860b66c9a48cc4.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:1.568848;font-style:normal;font-weight:normal;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_4a7ef26e5c0d71197591c86a.woff2')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00398;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00398{font-family:ff4_c00398;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00398{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00398{vertical-align:0.000000px;}
.ls0_c00398{letter-spacing:0.000000px;}
.ls1_c00398{letter-spacing:3.000000px;}
.sc__c00398{text-shadow:none;}
.sc0_c00398{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00398{-webkit-text-stroke:0px transparent;}
.sc0_c00398{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00398{word-spacing:-17.352000px;}
.ws1_c00398{word-spacing:0.000000px;}
._14_c00398{margin-left:-12.303000px;}
._15_c00398{margin-left:-11.187000px;}
._10_c00398{margin-left:-9.357000px;}
._f_c00398{margin-left:-8.154000px;}
._5_c00398{margin-left:-6.642000px;}
._2_c00398{margin-left:-5.427000px;}
._b_c00398{margin-left:-4.014000px;}
._d_c00398{margin-left:-2.700000px;}
._c_c00398{margin-left:-1.692000px;}
._a_c00398{width:1.656000px;}
._3_c00398{width:2.997000px;}
._e_c00398{width:4.509000px;}
._4_c00398{width:6.399000px;}
._1_c00398{width:7.695000px;}
._12_c00398{width:8.793000px;}
._6_c00398{width:10.692000px;}
._0_c00398{width:12.231000px;}
._8_c00398{width:13.770000px;}
._9_c00398{width:15.795000px;}
._16_c00398{width:35.730000px;}
._11_c00398{width:250.488000px;}
._17_c00398{width:259.227000px;}
._7_c00398{width:321.894000px;}
._13_c00398{width:565.596000px;}
.fc2_c00398{color:transparent;}
.fc1_c00398{color:rgb(128,128,128);}
.fc0_c00398{color:rgb(0,0,0);}
.fs2_c00398{font-size:48.000000px;}
.fs1_c00398{font-size:72.000000px;}
.fs0_c00398{font-size:81.000000px;}
.y0_c00398{bottom:0.000000px;}
.y1f_c00398{bottom:3.105000px;}
.y1e_c00398{bottom:7.228371px;}
.y1d_c00398{bottom:51.315000px;}
.y1c_c00398{bottom:79.365000px;}
.y1b_c00398{bottom:104.265000px;}
.y1a_c00398{bottom:129.915000px;}
.y19_c00398{bottom:154.665000px;}
.y18_c00398{bottom:179.865000px;}
.y17_c00398{bottom:204.315000px;}
.y16_c00398{bottom:229.215000px;}
.y15_c00398{bottom:252.465000px;}
.y14_c00398{bottom:278.565000px;}
.y13_c00398{bottom:303.165000px;}
.y12_c00398{bottom:325.065000px;}
.y11_c00398{bottom:349.065000px;}
.y10_c00398{bottom:374.715000px;}
.yf_c00398{bottom:399.315000px;}
.ye_c00398{bottom:424.215000px;}
.yd_c00398{bottom:447.915000px;}
.yc_c00398{bottom:472.965000px;}
.yb_c00398{bottom:498.165000px;}
.ya_c00398{bottom:522.765000px;}
.y9_c00398{bottom:547.515000px;}
.y8_c00398{bottom:571.815000px;}
.y7_c00398{bottom:596.115000px;}
.y6_c00398{bottom:621.015000px;}
.y5_c00398{bottom:645.765000px;}
.y4_c00398{bottom:670.965000px;}
.y3_c00398{bottom:695.265000px;}
.y2_c00398{bottom:720.015000px;}
.y1_c00398{bottom:744.615000px;}
.h5_c00398{height:13.200074px;}
.h6_c00398{height:43.804688px;}
.h4_c00398{height:84.269531px;}
.h3_c00398{height:91.160156px;}
.h2_c00398{height:94.803223px;}
.h0_c00398{height:787.875000px;}
.h1_c00398{height:788.250000px;}
.w2_c00398{width:104.875500px;}
.w1_c00398{width:546.000000px;}
.w0_c00398{width:546.225000px;}
.x0_c00398{left:0.000000px;}
.x9_c00398{left:21.900000px;}
.x8_c00398{left:24.300000px;}
.x7_c00398{left:25.350000px;}
.x4_c00398{left:27.000000px;}
.x6_c00398{left:28.050000px;}
.x5_c00398{left:29.700000px;}
.x3_c00398{left:30.750000px;}
.x2_c00398{left:33.450000px;}
.x1_c00398{left:157.950000px;}
.xb_c00398{left:224.926758px;}
.xa_c00398{left:234.900000px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls0_c00398{letter-spacing:0.000000pt;}
.ls1_c00398{letter-spacing:2.666667pt;}
.ws0_c00398{word-spacing:-15.424000pt;}
.ws1_c00398{word-spacing:0.000000pt;}
._14_c00398{margin-left:-10.936000pt;}
._15_c00398{margin-left:-9.944000pt;}
._10_c00398{margin-left:-8.317333pt;}
._f_c00398{margin-left:-7.248000pt;}
._5_c00398{margin-left:-5.904000pt;}
._2_c00398{margin-left:-4.824000pt;}
._b_c00398{margin-left:-3.568000pt;}
._d_c00398{margin-left:-2.400000pt;}
._c_c00398{margin-left:-1.504000pt;}
._a_c00398{width:1.472000pt;}
._3_c00398{width:2.664000pt;}
._e_c00398{width:4.008000pt;}
._4_c00398{width:5.688000pt;}
._1_c00398{width:6.840000pt;}
._12_c00398{width:7.816000pt;}
._6_c00398{width:9.504000pt;}
._0_c00398{width:10.872000pt;}
._8_c00398{width:12.240000pt;}
._9_c00398{width:14.040000pt;}
._16_c00398{width:31.760000pt;}
._11_c00398{width:222.656000pt;}
._17_c00398{width:230.424000pt;}
._7_c00398{width:286.128000pt;}
._13_c00398{width:502.752000pt;}
.fs2_c00398{font-size:42.666667pt;}
.fs1_c00398{font-size:64.000000pt;}
.fs0_c00398{font-size:72.000000pt;}
.y0_c00398{bottom:0.000000pt;}
.y1f_c00398{bottom:2.760000pt;}
.y1e_c00398{bottom:6.425219pt;}
.y1d_c00398{bottom:45.613333pt;}
.y1c_c00398{bottom:70.546667pt;}
.y1b_c00398{bottom:92.680000pt;}
.y1a_c00398{bottom:115.480000pt;}
.y19_c00398{bottom:137.480000pt;}
.y18_c00398{bottom:159.880000pt;}
.y17_c00398{bottom:181.613333pt;}
.y16_c00398{bottom:203.746667pt;}
.y15_c00398{bottom:224.413333pt;}
.y14_c00398{bottom:247.613333pt;}
.y13_c00398{bottom:269.480000pt;}
.y12_c00398{bottom:288.946667pt;}
.y11_c00398{bottom:310.280000pt;}
.y10_c00398{bottom:333.080000pt;}
.yf_c00398{bottom:354.946667pt;}
.ye_c00398{bottom:377.080000pt;}
.yd_c00398{bottom:398.146667pt;}
.yc_c00398{bottom:420.413333pt;}
.yb_c00398{bottom:442.813333pt;}
.ya_c00398{bottom:464.680000pt;}
.y9_c00398{bottom:486.680000pt;}
.y8_c00398{bottom:508.280000pt;}
.y7_c00398{bottom:529.880000pt;}
.y6_c00398{bottom:552.013333pt;}
.y5_c00398{bottom:574.013333pt;}
.y4_c00398{bottom:596.413333pt;}
.y3_c00398{bottom:618.013333pt;}
.y2_c00398{bottom:640.013333pt;}
.y1_c00398{bottom:661.880000pt;}
.h5_c00398{height:11.733399pt;}
.h6_c00398{height:38.937500pt;}
.h4_c00398{height:74.906250pt;}
.h3_c00398{height:81.031250pt;}
.h2_c00398{height:84.269531pt;}
.h0_c00398{height:700.333333pt;}
.h1_c00398{height:700.666667pt;}
.w2_c00398{width:93.222667pt;}
.w1_c00398{width:485.333333pt;}
.w0_c00398{width:485.533333pt;}
.x0_c00398{left:0.000000pt;}
.x9_c00398{left:19.466667pt;}
.x8_c00398{left:21.600000pt;}
.x7_c00398{left:22.533333pt;}
.x4_c00398{left:24.000000pt;}
.x6_c00398{left:24.933333pt;}
.x5_c00398{left:26.400000pt;}
.x3_c00398{left:27.333333pt;}
.x2_c00398{left:29.733333pt;}
.x1_c00398{left:140.400000pt;}
.xb_c00398{left:199.934896pt;}
.xa_c00398{left:208.800000pt;}
}





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

.ir_c00399:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00399{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00399;src:url('chunks/assets/font_328d9af30089492beb1cedad.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.480469;font-style:normal;font-weight:normal;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_df3b320245a66499737caed8.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:1.568848;font-style:normal;font-weight:normal;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_95824af6ad23e3ecdbe570f7.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;line-height:1.575000;font-style:normal;font-weight:normal;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_b57b87b204f4bb95aa618d58.woff2')format("woff");}.ff4_c00399{font-family:ff4_c00399;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00399;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00399{font-family:ff5_c00399;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00399{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,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;}
.ls4_c00399{letter-spacing:-6.000000px;}
.ls1_c00399{letter-spacing:-3.000000px;}
.ls3_c00399{letter-spacing:0.000000px;}
.ls2_c00399{letter-spacing:3.000000px;}
.ls0_c00399{letter-spacing:10.248000px;}
.sc__c00399{text-shadow:none;}
.sc0_c00399{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00399{-webkit-text-stroke:0px transparent;}
.sc0_c00399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00399{word-spacing:-24.051000px;}
.ws0_c00399{word-spacing:-17.352000px;}
.ws1_c00399{word-spacing:-14.352000px;}
.ws3_c00399{word-spacing:0.000000px;}
._18_c00399{margin-left:-54.720000px;}
._19_c00399{margin-left:-16.128000px;}
._17_c00399{margin-left:-13.812000px;}
._9_c00399{margin-left:-12.744000px;}
._4_c00399{margin-left:-11.160000px;}
._10_c00399{margin-left:-9.576000px;}
._1a_c00399{margin-left:-8.136000px;}
._c_c00399{margin-left:-6.984000px;}
._6_c00399{margin-left:-5.904000px;}
._5_c00399{margin-left:-4.392000px;}
._7_c00399{margin-left:-3.168000px;}
._8_c00399{margin-left:-2.016000px;}
._a_c00399{margin-left:-1.008000px;}
._d_c00399{width:1.008000px;}
._2_c00399{width:2.016000px;}
._1_c00399{width:3.024000px;}
._3_c00399{width:4.608000px;}
._0_c00399{width:6.408000px;}
._f_c00399{width:7.416000px;}
._b_c00399{width:8.568000px;}
._12_c00399{width:9.720000px;}
._13_c00399{width:10.872000px;}
._e_c00399{width:12.096000px;}
._11_c00399{width:13.104000px;}
._14_c00399{width:15.120000px;}
._15_c00399{width:16.632000px;}
._16_c00399{width:17.928000px;}
.fc2_c00399{color:transparent;}
.fc1_c00399{color:rgb(128,128,128);}
.fc0_c00399{color:rgb(0,0,0);}
.fs5_c00399{font-size:48.000000px;}
.fs1_c00399{font-size:63.000000px;}
.fs4_c00399{font-size:69.000000px;}
.fs0_c00399{font-size:72.000000px;}
.fs3_c00399{font-size:99.000000px;}
.fs2_c00399{font-size:102.000000px;}
.y0_c00399{bottom:0.000000px;}
.y1f_c00399{bottom:3.105000px;}
.y1e_c00399{bottom:7.228355px;}
.y1d_c00399{bottom:54.885000px;}
.y1c_c00399{bottom:78.585000px;}
.y1b_c00399{bottom:102.885000px;}
.y1a_c00399{bottom:127.935000px;}
.y19_c00399{bottom:153.135000px;}
.y18_c00399{bottom:179.085000px;}
.y17_c00399{bottom:203.385000px;}
.y16_c00399{bottom:229.185000px;}
.y15_c00399{bottom:253.335000px;}
.y14_c00399{bottom:278.085000px;}
.y13_c00399{bottom:304.635000px;}
.y12_c00399{bottom:328.035000px;}
.y11_c00399{bottom:353.235000px;}
.y10_c00399{bottom:376.935000px;}
.yf_c00399{bottom:401.535000px;}
.ye_c00399{bottom:426.135000px;}
.yd_c00399{bottom:451.185000px;}
.yc_c00399{bottom:474.735000px;}
.yb_c00399{bottom:500.085000px;}
.ya_c00399{bottom:523.785000px;}
.y9_c00399{bottom:548.385000px;}
.y8_c00399{bottom:572.385000px;}
.y7_c00399{bottom:597.735000px;}
.y6_c00399{bottom:622.335000px;}
.y5_c00399{bottom:646.635000px;}
.y4_c00399{bottom:671.835000px;}
.y3_c00399{bottom:696.585000px;}
.y2_c00399{bottom:721.485000px;}
.y1_c00399{bottom:747.135000px;}
.h7_c00399{height:13.200074px;}
.h8_c00399{height:43.804688px;}
.h2_c00399{height:84.269531px;}
.h6_c00399{height:87.361816px;}
.h3_c00399{height:91.160156px;}
.h4_c00399{height:102.796875px;}
.h5_c00399{height:125.345215px;}
.h0_c00399{height:790.275000px;}
.h1_c00399{height:790.500000px;}
.w2_c00399{width:104.875500px;}
.w0_c00399{width:515.175000px;}
.w1_c00399{width:515.250000px;}
.x0_c00399{left:0.000000px;}
.x4_c00399{left:103.050000px;}
.x3_c00399{left:104.250000px;}
.x2_c00399{left:105.600000px;}
.x5_c00399{left:107.400000px;}
.xb_c00399{left:108.750000px;}
.x6_c00399{left:110.700000px;}
.x7_c00399{left:111.750000px;}
.xa_c00399{left:112.800000px;}
.xd_c00399{left:209.401749px;}
.x1_c00399{left:232.650000px;}
.x8_c00399{left:297.000000px;}
.x9_c00399{left:301.350000px;}
.xc_c00399{left:440.850000px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls4_c00399{letter-spacing:-5.333333pt;}
.ls1_c00399{letter-spacing:-2.666667pt;}
.ls3_c00399{letter-spacing:0.000000pt;}
.ls2_c00399{letter-spacing:2.666667pt;}
.ls0_c00399{letter-spacing:9.109333pt;}
.ws2_c00399{word-spacing:-21.378667pt;}
.ws0_c00399{word-spacing:-15.424000pt;}
.ws1_c00399{word-spacing:-12.757333pt;}
.ws3_c00399{word-spacing:0.000000pt;}
._18_c00399{margin-left:-48.640000pt;}
._19_c00399{margin-left:-14.336000pt;}
._17_c00399{margin-left:-12.277333pt;}
._9_c00399{margin-left:-11.328000pt;}
._4_c00399{margin-left:-9.920000pt;}
._10_c00399{margin-left:-8.512000pt;}
._1a_c00399{margin-left:-7.232000pt;}
._c_c00399{margin-left:-6.208000pt;}
._6_c00399{margin-left:-5.248000pt;}
._5_c00399{margin-left:-3.904000pt;}
._7_c00399{margin-left:-2.816000pt;}
._8_c00399{margin-left:-1.792000pt;}
._a_c00399{margin-left:-0.896000pt;}
._d_c00399{width:0.896000pt;}
._2_c00399{width:1.792000pt;}
._1_c00399{width:2.688000pt;}
._3_c00399{width:4.096000pt;}
._0_c00399{width:5.696000pt;}
._f_c00399{width:6.592000pt;}
._b_c00399{width:7.616000pt;}
._12_c00399{width:8.640000pt;}
._13_c00399{width:9.664000pt;}
._e_c00399{width:10.752000pt;}
._11_c00399{width:11.648000pt;}
._14_c00399{width:13.440000pt;}
._15_c00399{width:14.784000pt;}
._16_c00399{width:15.936000pt;}
.fs5_c00399{font-size:42.666667pt;}
.fs1_c00399{font-size:56.000000pt;}
.fs4_c00399{font-size:61.333333pt;}
.fs0_c00399{font-size:64.000000pt;}
.fs3_c00399{font-size:88.000000pt;}
.fs2_c00399{font-size:90.666667pt;}
.y0_c00399{bottom:0.000000pt;}
.y1f_c00399{bottom:2.760000pt;}
.y1e_c00399{bottom:6.425204pt;}
.y1d_c00399{bottom:48.786667pt;}
.y1c_c00399{bottom:69.853333pt;}
.y1b_c00399{bottom:91.453333pt;}
.y1a_c00399{bottom:113.720000pt;}
.y19_c00399{bottom:136.120000pt;}
.y18_c00399{bottom:159.186667pt;}
.y17_c00399{bottom:180.786667pt;}
.y16_c00399{bottom:203.720000pt;}
.y15_c00399{bottom:225.186667pt;}
.y14_c00399{bottom:247.186667pt;}
.y13_c00399{bottom:270.786667pt;}
.y12_c00399{bottom:291.586667pt;}
.y11_c00399{bottom:313.986667pt;}
.y10_c00399{bottom:335.053333pt;}
.yf_c00399{bottom:356.920000pt;}
.ye_c00399{bottom:378.786667pt;}
.yd_c00399{bottom:401.053333pt;}
.yc_c00399{bottom:421.986667pt;}
.yb_c00399{bottom:444.520000pt;}
.ya_c00399{bottom:465.586667pt;}
.y9_c00399{bottom:487.453333pt;}
.y8_c00399{bottom:508.786667pt;}
.y7_c00399{bottom:531.320000pt;}
.y6_c00399{bottom:553.186667pt;}
.y5_c00399{bottom:574.786667pt;}
.y4_c00399{bottom:597.186667pt;}
.y3_c00399{bottom:619.186667pt;}
.y2_c00399{bottom:641.320000pt;}
.y1_c00399{bottom:664.120000pt;}
.h7_c00399{height:11.733399pt;}
.h8_c00399{height:38.937500pt;}
.h2_c00399{height:74.906250pt;}
.h6_c00399{height:77.654948pt;}
.h3_c00399{height:81.031250pt;}
.h4_c00399{height:91.375000pt;}
.h5_c00399{height:111.417969pt;}
.h0_c00399{height:702.466667pt;}
.h1_c00399{height:702.666667pt;}
.w2_c00399{width:93.222667pt;}
.w0_c00399{width:457.933333pt;}
.w1_c00399{width:458.000000pt;}
.x0_c00399{left:0.000000pt;}
.x4_c00399{left:91.600000pt;}
.x3_c00399{left:92.666667pt;}
.x2_c00399{left:93.866667pt;}
.x5_c00399{left:95.466667pt;}
.xb_c00399{left:96.666667pt;}
.x6_c00399{left:98.400000pt;}
.x7_c00399{left:99.333333pt;}
.xa_c00399{left:100.266667pt;}
.xd_c00399{left:186.134888pt;}
.x1_c00399{left:206.800000pt;}
.x8_c00399{left:264.000000pt;}
.x9_c00399{left:267.866667pt;}
.xc_c00399{left:391.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8765b421b7d6a7204360ba52.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.480469;font-style:normal;font-weight:normal;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_8be5b0bd25b9c36eaa282953.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:1.568848;font-style:normal;font-weight:normal;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_35640121a6f43a8f626b503b.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00400;src:url('chunks/assets/font_dfd459b0b00a4a81a1fd7c42.woff2')format("woff");}.ff4_c00400{font-family:ff4_c00400;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00400;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00400{font-family:ff5_c00400;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00400{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00400{vertical-align:0.000000px;}
.ls4_c00400{letter-spacing:-6.000000px;}
.ls2_c00400{letter-spacing:0.000000px;}
.ls3_c00400{letter-spacing:3.000000px;}
.ls5_c00400{letter-spacing:9.000000px;}
.ls0_c00400{letter-spacing:11.388000px;}
.ls1_c00400{letter-spacing:28.188000px;}
.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:-20.352000px;}
.ws2_c00400{word-spacing:-17.352000px;}
.ws1_c00400{word-spacing:-9.057000px;}
.ws3_c00400{word-spacing:0.000000px;}
._19_c00400{margin-left:-20.232000px;}
._1a_c00400{margin-left:-16.488000px;}
._16_c00400{margin-left:-12.096000px;}
._9_c00400{margin-left:-10.680000px;}
._15_c00400{margin-left:-9.408000px;}
._b_c00400{margin-left:-8.280000px;}
._d_c00400{margin-left:-6.408000px;}
._c_c00400{margin-left:-4.968000px;}
._e_c00400{margin-left:-3.816000px;}
._2_c00400{margin-left:-2.016000px;}
._f_c00400{margin-left:-1.008000px;}
._3_c00400{width:1.368000px;}
._4_c00400{width:2.520000px;}
._13_c00400{width:3.600000px;}
._6_c00400{width:4.680000px;}
._17_c00400{width:5.760000px;}
._7_c00400{width:6.984000px;}
._5_c00400{width:7.992000px;}
._12_c00400{width:9.000000px;}
._14_c00400{width:10.080000px;}
._1_c00400{width:11.304000px;}
._a_c00400{width:12.600000px;}
._11_c00400{width:14.859000px;}
._18_c00400{width:16.062000px;}
._10_c00400{width:17.208000px;}
._0_c00400{width:18.648000px;}
._1b_c00400{width:34.128000px;}
._1c_c00400{width:297.360000px;}
._8_c00400{width:340.008000px;}
.fc2_c00400{color:transparent;}
.fc1_c00400{color:rgb(128,128,128);}
.fc0_c00400{color:rgb(0,0,0);}
.fs2_c00400{font-size:39.000000px;}
.fs3_c00400{font-size:48.000000px;}
.fs1_c00400{font-size:63.000000px;}
.fs0_c00400{font-size:72.000000px;}
.y0_c00400{bottom:0.000000px;}
.y1f_c00400{bottom:3.105000px;}
.y1e_c00400{bottom:7.228355px;}
.y1d_c00400{bottom:45.135000px;}
.y1c_c00400{bottom:71.235000px;}
.y1b_c00400{bottom:96.435000px;}
.y1a_c00400{bottom:121.785000px;}
.y19_c00400{bottom:146.835000px;}
.y18_c00400{bottom:170.985000px;}
.y17_c00400{bottom:195.285000px;}
.y16_c00400{bottom:221.085000px;}
.y15_c00400{bottom:245.235000px;}
.y14_c00400{bottom:269.985000px;}
.y13_c00400{bottom:295.335000px;}
.y12_c00400{bottom:316.185000px;}
.y11_c00400{bottom:341.085000px;}
.y10_c00400{bottom:365.085000px;}
.yf_c00400{bottom:390.135000px;}
.ye_c00400{bottom:415.335000px;}
.yd_c00400{bottom:440.685000px;}
.yc_c00400{bottom:465.285000px;}
.yb_c00400{bottom:490.335000px;}
.ya_c00400{bottom:513.885000px;}
.y9_c00400{bottom:538.935000px;}
.y8_c00400{bottom:563.235000px;}
.y7_c00400{bottom:587.535000px;}
.y6_c00400{bottom:612.885000px;}
.y5_c00400{bottom:637.485000px;}
.y4_c00400{bottom:662.835000px;}
.y3_c00400{bottom:686.385000px;}
.y2_c00400{bottom:711.135000px;}
.y1_c00400{bottom:736.035000px;}
.h3_c00400{height:13.200074px;}
.h4_c00400{height:43.804688px;}
.h2_c00400{height:91.160156px;}
.h0_c00400{height:782.175000px;}
.h1_c00400{height:782.250000px;}
.w2_c00400{width:104.875500px;}
.w0_c00400{width:538.350000px;}
.w1_c00400{width:538.500000px;}
.x0_c00400{left:0.000000px;}
.x2_c00400{left:24.300000px;}
.x3_c00400{left:25.650000px;}
.x4_c00400{left:27.300000px;}
.x5_c00400{left:29.250000px;}
.x6_c00400{left:30.750000px;}
.x7_c00400{left:31.950000px;}
.x1_c00400{left:143.850000px;}
.x9_c00400{left:220.989258px;}
.x8_c00400{left:237.300000px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls4_c00400{letter-spacing:-5.333333pt;}
.ls2_c00400{letter-spacing:0.000000pt;}
.ls3_c00400{letter-spacing:2.666667pt;}
.ls5_c00400{letter-spacing:8.000000pt;}
.ls0_c00400{letter-spacing:10.122667pt;}
.ls1_c00400{letter-spacing:25.056000pt;}
.ws0_c00400{word-spacing:-18.090667pt;}
.ws2_c00400{word-spacing:-15.424000pt;}
.ws1_c00400{word-spacing:-8.050667pt;}
.ws3_c00400{word-spacing:0.000000pt;}
._19_c00400{margin-left:-17.984000pt;}
._1a_c00400{margin-left:-14.656000pt;}
._16_c00400{margin-left:-10.752000pt;}
._9_c00400{margin-left:-9.493333pt;}
._15_c00400{margin-left:-8.362667pt;}
._b_c00400{margin-left:-7.360000pt;}
._d_c00400{margin-left:-5.696000pt;}
._c_c00400{margin-left:-4.416000pt;}
._e_c00400{margin-left:-3.392000pt;}
._2_c00400{margin-left:-1.792000pt;}
._f_c00400{margin-left:-0.896000pt;}
._3_c00400{width:1.216000pt;}
._4_c00400{width:2.240000pt;}
._13_c00400{width:3.200000pt;}
._6_c00400{width:4.160000pt;}
._17_c00400{width:5.120000pt;}
._7_c00400{width:6.208000pt;}
._5_c00400{width:7.104000pt;}
._12_c00400{width:8.000000pt;}
._14_c00400{width:8.960000pt;}
._1_c00400{width:10.048000pt;}
._a_c00400{width:11.200000pt;}
._11_c00400{width:13.208000pt;}
._18_c00400{width:14.277333pt;}
._10_c00400{width:15.296000pt;}
._0_c00400{width:16.576000pt;}
._1b_c00400{width:30.336000pt;}
._1c_c00400{width:264.320000pt;}
._8_c00400{width:302.229333pt;}
.fs2_c00400{font-size:34.666667pt;}
.fs3_c00400{font-size:42.666667pt;}
.fs1_c00400{font-size:56.000000pt;}
.fs0_c00400{font-size:64.000000pt;}
.y0_c00400{bottom:0.000000pt;}
.y1f_c00400{bottom:2.760000pt;}
.y1e_c00400{bottom:6.425204pt;}
.y1d_c00400{bottom:40.120000pt;}
.y1c_c00400{bottom:63.320000pt;}
.y1b_c00400{bottom:85.720000pt;}
.y1a_c00400{bottom:108.253333pt;}
.y19_c00400{bottom:130.520000pt;}
.y18_c00400{bottom:151.986667pt;}
.y17_c00400{bottom:173.586667pt;}
.y16_c00400{bottom:196.520000pt;}
.y15_c00400{bottom:217.986667pt;}
.y14_c00400{bottom:239.986667pt;}
.y13_c00400{bottom:262.520000pt;}
.y12_c00400{bottom:281.053333pt;}
.y11_c00400{bottom:303.186667pt;}
.y10_c00400{bottom:324.520000pt;}
.yf_c00400{bottom:346.786667pt;}
.ye_c00400{bottom:369.186667pt;}
.yd_c00400{bottom:391.720000pt;}
.yc_c00400{bottom:413.586667pt;}
.yb_c00400{bottom:435.853333pt;}
.ya_c00400{bottom:456.786667pt;}
.y9_c00400{bottom:479.053333pt;}
.y8_c00400{bottom:500.653333pt;}
.y7_c00400{bottom:522.253333pt;}
.y6_c00400{bottom:544.786667pt;}
.y5_c00400{bottom:566.653333pt;}
.y4_c00400{bottom:589.186667pt;}
.y3_c00400{bottom:610.120000pt;}
.y2_c00400{bottom:632.120000pt;}
.y1_c00400{bottom:654.253333pt;}
.h3_c00400{height:11.733399pt;}
.h4_c00400{height:38.937500pt;}
.h2_c00400{height:81.031250pt;}
.h0_c00400{height:695.266667pt;}
.h1_c00400{height:695.333333pt;}
.w2_c00400{width:93.222667pt;}
.w0_c00400{width:478.533333pt;}
.w1_c00400{width:478.666667pt;}
.x0_c00400{left:0.000000pt;}
.x2_c00400{left:21.600000pt;}
.x3_c00400{left:22.800000pt;}
.x4_c00400{left:24.266667pt;}
.x5_c00400{left:26.000000pt;}
.x6_c00400{left:27.333333pt;}
.x7_c00400{left:28.400000pt;}
.x1_c00400{left:127.866667pt;}
.x9_c00400{left:196.434896pt;}
.x8_c00400{left:210.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7081c61e1dc6f0fed96c4b26.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.480469;font-style:normal;font-weight:normal;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_53a8b2f664d7a7a7b287bcb6.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00401{font-family:ff3_c00401;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00401{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.ls1_c00401{letter-spacing:0.000000px;}
.ls0_c00401{letter-spacing:3.000000px;}
.sc__c00401{text-shadow:none;}
.sc0_c00401{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00401{-webkit-text-stroke:0px transparent;}
.sc0_c00401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00401{word-spacing:-33.192000px;}
.ws1_c00401{word-spacing:-20.352000px;}
.ws2_c00401{word-spacing:0.000000px;}
._16_c00401{margin-left:-22.176000px;}
._14_c00401{margin-left:-20.712000px;}
._d_c00401{margin-left:-10.224000px;}
._e_c00401{margin-left:-8.280000px;}
._9_c00401{margin-left:-6.912000px;}
._f_c00401{margin-left:-5.616000px;}
._b_c00401{margin-left:-4.176000px;}
._a_c00401{margin-left:-2.952000px;}
._c_c00401{margin-left:-1.800000px;}
._7_c00401{width:1.008000px;}
._0_c00401{width:2.520000px;}
._2_c00401{width:3.528000px;}
._5_c00401{width:4.752000px;}
._3_c00401{width:6.192000px;}
._1_c00401{width:8.136000px;}
._11_c00401{width:9.288000px;}
._4_c00401{width:10.512000px;}
._6_c00401{width:12.384000px;}
._8_c00401{width:15.048000px;}
._13_c00401{width:16.632000px;}
._12_c00401{width:19.224000px;}
._10_c00401{width:32.688000px;}
._15_c00401{width:98.496000px;}
.fc2_c00401{color:transparent;}
.fc1_c00401{color:rgb(128,128,128);}
.fc0_c00401{color:rgb(0,0,0);}
.fs1_c00401{font-size:48.000000px;}
.fs0_c00401{font-size:72.000000px;}
.y0_c00401{bottom:0.000000px;}
.y1f_c00401{bottom:3.105000px;}
.y1e_c00401{bottom:7.228371px;}
.y1d_c00401{bottom:55.815000px;}
.y1c_c00401{bottom:78.615000px;}
.y1b_c00401{bottom:103.815000px;}
.y1a_c00401{bottom:128.715000px;}
.y19_c00401{bottom:153.615000px;}
.y18_c00401{bottom:178.965000px;}
.y17_c00401{bottom:203.865000px;}
.y16_c00401{bottom:228.465000px;}
.y15_c00401{bottom:253.815000px;}
.y14_c00401{bottom:277.815000px;}
.y13_c00401{bottom:302.415000px;}
.y12_c00401{bottom:327.165000px;}
.y11_c00401{bottom:351.465000px;}
.y10_c00401{bottom:376.365000px;}
.yf_c00401{bottom:402.015000px;}
.ye_c00401{bottom:425.565000px;}
.yd_c00401{bottom:449.565000px;}
.yc_c00401{bottom:474.615000px;}
.yb_c00401{bottom:497.865000px;}
.ya_c00401{bottom:522.765000px;}
.y9_c00401{bottom:546.765000px;}
.y8_c00401{bottom:571.815000px;}
.y7_c00401{bottom:595.815000px;}
.y6_c00401{bottom:620.415000px;}
.y5_c00401{bottom:642.615000px;}
.y4_c00401{bottom:669.315000px;}
.y3_c00401{bottom:694.215000px;}
.y2_c00401{bottom:718.515000px;}
.y1_c00401{bottom:744.315000px;}
.h3_c00401{height:13.200074px;}
.h4_c00401{height:43.804688px;}
.h2_c00401{height:91.160156px;}
.h1_c00401{height:789.000000px;}
.h0_c00401{height:789.225000px;}
.w2_c00401{width:104.875500px;}
.w0_c00401{width:509.775000px;}
.w1_c00401{width:510.000000px;}
.x0_c00401{left:0.000000px;}
.x2_c00401{left:100.200000px;}
.x3_c00401{left:101.250000px;}
.x4_c00401{left:102.300000px;}
.x5_c00401{left:103.500000px;}
.x6_c00401{left:105.000000px;}
.x8_c00401{left:206.701767px;}
.x1_c00401{left:220.650000px;}
.x7_c00401{left:461.400000px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls1_c00401{letter-spacing:0.000000pt;}
.ls0_c00401{letter-spacing:2.666667pt;}
.ws0_c00401{word-spacing:-29.504000pt;}
.ws1_c00401{word-spacing:-18.090667pt;}
.ws2_c00401{word-spacing:0.000000pt;}
._16_c00401{margin-left:-19.712000pt;}
._14_c00401{margin-left:-18.410667pt;}
._d_c00401{margin-left:-9.088000pt;}
._e_c00401{margin-left:-7.360000pt;}
._9_c00401{margin-left:-6.144000pt;}
._f_c00401{margin-left:-4.992000pt;}
._b_c00401{margin-left:-3.712000pt;}
._a_c00401{margin-left:-2.624000pt;}
._c_c00401{margin-left:-1.600000pt;}
._7_c00401{width:0.896000pt;}
._0_c00401{width:2.240000pt;}
._2_c00401{width:3.136000pt;}
._5_c00401{width:4.224000pt;}
._3_c00401{width:5.504000pt;}
._1_c00401{width:7.232000pt;}
._11_c00401{width:8.256000pt;}
._4_c00401{width:9.344000pt;}
._6_c00401{width:11.008000pt;}
._8_c00401{width:13.376000pt;}
._13_c00401{width:14.784000pt;}
._12_c00401{width:17.088000pt;}
._10_c00401{width:29.056000pt;}
._15_c00401{width:87.552000pt;}
.fs1_c00401{font-size:42.666667pt;}
.fs0_c00401{font-size:64.000000pt;}
.y0_c00401{bottom:0.000000pt;}
.y1f_c00401{bottom:2.760000pt;}
.y1e_c00401{bottom:6.425219pt;}
.y1d_c00401{bottom:49.613333pt;}
.y1c_c00401{bottom:69.880000pt;}
.y1b_c00401{bottom:92.280000pt;}
.y1a_c00401{bottom:114.413333pt;}
.y19_c00401{bottom:136.546667pt;}
.y18_c00401{bottom:159.080000pt;}
.y17_c00401{bottom:181.213333pt;}
.y16_c00401{bottom:203.080000pt;}
.y15_c00401{bottom:225.613333pt;}
.y14_c00401{bottom:246.946667pt;}
.y13_c00401{bottom:268.813333pt;}
.y12_c00401{bottom:290.813333pt;}
.y11_c00401{bottom:312.413333pt;}
.y10_c00401{bottom:334.546667pt;}
.yf_c00401{bottom:357.346667pt;}
.ye_c00401{bottom:378.280000pt;}
.yd_c00401{bottom:399.613333pt;}
.yc_c00401{bottom:421.880000pt;}
.yb_c00401{bottom:442.546667pt;}
.ya_c00401{bottom:464.680000pt;}
.y9_c00401{bottom:486.013333pt;}
.y8_c00401{bottom:508.280000pt;}
.y7_c00401{bottom:529.613333pt;}
.y6_c00401{bottom:551.480000pt;}
.y5_c00401{bottom:571.213333pt;}
.y4_c00401{bottom:594.946667pt;}
.y3_c00401{bottom:617.080000pt;}
.y2_c00401{bottom:638.680000pt;}
.y1_c00401{bottom:661.613333pt;}
.h3_c00401{height:11.733399pt;}
.h4_c00401{height:38.937500pt;}
.h2_c00401{height:81.031250pt;}
.h1_c00401{height:701.333333pt;}
.h0_c00401{height:701.533333pt;}
.w2_c00401{width:93.222667pt;}
.w0_c00401{width:453.133333pt;}
.w1_c00401{width:453.333333pt;}
.x0_c00401{left:0.000000pt;}
.x2_c00401{left:89.066667pt;}
.x3_c00401{left:90.000000pt;}
.x4_c00401{left:90.933333pt;}
.x5_c00401{left:92.000000pt;}
.x6_c00401{left:93.333333pt;}
.x8_c00401{left:183.734904pt;}
.x1_c00401{left:196.133333pt;}
.x7_c00401{left:410.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_04b39d4ebfe50c8d285bcc25.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.480469;font-style:normal;font-weight:normal;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_36e9931b191b0e1b718715e6.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:1.568848;font-style:normal;font-weight:normal;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_4fc49d334059c59a1f5e38c3.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00402{font-family:ff4_c00402;line-height:1.219238;font-style: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;}
.ls6_c00402{letter-spacing:-6.000000px;}
.ls5_c00402{letter-spacing:0.000000px;}
.ls0_c00402{letter-spacing:3.000000px;}
.ls4_c00402{letter-spacing:4.788000px;}
.ls1_c00402{letter-spacing:23.388000px;}
.ls3_c00402{letter-spacing:25.848000px;}
.ls2_c00402{letter-spacing:66.504000px;}
.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:-33.192000px;}
.ws1_c00402{word-spacing:-20.352000px;}
.ws2_c00402{word-spacing:0.000000px;}
._f_c00402{margin-left:-20.880000px;}
._e_c00402{margin-left:-18.504000px;}
._1b_c00402{margin-left:-16.464000px;}
._1a_c00402{margin-left:-11.904000px;}
._19_c00402{margin-left:-10.224000px;}
._10_c00402{margin-left:-8.784000px;}
._15_c00402{margin-left:-7.392000px;}
._12_c00402{margin-left:-6.336000px;}
._11_c00402{margin-left:-5.328000px;}
._b_c00402{margin-left:-4.104000px;}
._a_c00402{margin-left:-3.096000px;}
._6_c00402{margin-left:-1.656000px;}
._8_c00402{width:1.008000px;}
._7_c00402{width:2.376000px;}
._c_c00402{width:3.744000px;}
._d_c00402{width:5.328000px;}
._14_c00402{width:6.624000px;}
._1_c00402{width:7.704000px;}
._4_c00402{width:8.784000px;}
._2_c00402{width:10.368000px;}
._0_c00402{width:12.384000px;}
._3_c00402{width:13.392000px;}
._13_c00402{width:14.472000px;}
._16_c00402{width:15.840000px;}
._18_c00402{width:18.072000px;}
._17_c00402{width:25.656000px;}
._9_c00402{width:166.104000px;}
._1c_c00402{width:308.448000px;}
._5_c00402{width:352.272000px;}
.fc2_c00402{color:transparent;}
.fc1_c00402{color:rgb(128,128,128);}
.fc0_c00402{color:rgb(0,0,0);}
.fs2_c00402{font-size:48.000000px;}
.fs1_c00402{font-size:63.000000px;}
.fs0_c00402{font-size:72.000000px;}
.y0_c00402{bottom:0.000000px;}
.y1f_c00402{bottom:3.105000px;}
.y1e_c00402{bottom:7.228355px;}
.y1d_c00402{bottom:54.585000px;}
.y1c_c00402{bottom:84.585000px;}
.y1b_c00402{bottom:110.235000px;}
.y1a_c00402{bottom:135.585000px;}
.y19_c00402{bottom:160.185000px;}
.y18_c00402{bottom:183.135000px;}
.y17_c00402{bottom:209.535000px;}
.y16_c00402{bottom:234.135000px;}
.y15_c00402{bottom:257.535000px;}
.y14_c00402{bottom:283.785000px;}
.y13_c00402{bottom:304.635000px;}
.y12_c00402{bottom:331.035000px;}
.y11_c00402{bottom:353.985000px;}
.y10_c00402{bottom:378.585000px;}
.yf_c00402{bottom:403.185000px;}
.ye_c00402{bottom:427.635000px;}
.yd_c00402{bottom:451.935000px;}
.yc_c00402{bottom:476.835000px;}
.yb_c00402{bottom:501.435000px;}
.ya_c00402{bottom:526.035000px;}
.y9_c00402{bottom:550.335000px;}
.y8_c00402{bottom:575.385000px;}
.y7_c00402{bottom:599.685000px;}
.y6_c00402{bottom:624.285000px;}
.y5_c00402{bottom:648.885000px;}
.y4_c00402{bottom:673.635000px;}
.y3_c00402{bottom:698.535000px;}
.y2_c00402{bottom:721.785000px;}
.y1_c00402{bottom:746.235000px;}
.h3_c00402{height:13.200074px;}
.h4_c00402{height:43.804688px;}
.h2_c00402{height:91.160156px;}
.h0_c00402{height:790.275000px;}
.h1_c00402{height:790.500000px;}
.w2_c00402{width:104.875500px;}
.w1_c00402{width:533.250000px;}
.w0_c00402{width:533.550000px;}
.x0_c00402{left:0.000000px;}
.x2_c00402{left:38.850000px;}
.x3_c00402{left:41.550000px;}
.x4_c00402{left:43.200000px;}
.x8_c00402{left:44.550000px;}
.x5_c00402{left:45.600000px;}
.x6_c00402{left:47.250000px;}
.x7_c00402{left:48.300000px;}
.x1_c00402{left:156.150000px;}
.xa_c00402{left:218.589249px;}
.x9_c00402{left:256.500000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls6_c00402{letter-spacing:-5.333333pt;}
.ls5_c00402{letter-spacing:0.000000pt;}
.ls0_c00402{letter-spacing:2.666667pt;}
.ls4_c00402{letter-spacing:4.256000pt;}
.ls1_c00402{letter-spacing:20.789333pt;}
.ls3_c00402{letter-spacing:22.976000pt;}
.ls2_c00402{letter-spacing:59.114667pt;}
.ws0_c00402{word-spacing:-29.504000pt;}
.ws1_c00402{word-spacing:-18.090667pt;}
.ws2_c00402{word-spacing:0.000000pt;}
._f_c00402{margin-left:-18.560000pt;}
._e_c00402{margin-left:-16.448000pt;}
._1b_c00402{margin-left:-14.634667pt;}
._1a_c00402{margin-left:-10.581333pt;}
._19_c00402{margin-left:-9.088000pt;}
._10_c00402{margin-left:-7.808000pt;}
._15_c00402{margin-left:-6.570667pt;}
._12_c00402{margin-left:-5.632000pt;}
._11_c00402{margin-left:-4.736000pt;}
._b_c00402{margin-left:-3.648000pt;}
._a_c00402{margin-left:-2.752000pt;}
._6_c00402{margin-left:-1.472000pt;}
._8_c00402{width:0.896000pt;}
._7_c00402{width:2.112000pt;}
._c_c00402{width:3.328000pt;}
._d_c00402{width:4.736000pt;}
._14_c00402{width:5.888000pt;}
._1_c00402{width:6.848000pt;}
._4_c00402{width:7.808000pt;}
._2_c00402{width:9.216000pt;}
._0_c00402{width:11.008000pt;}
._3_c00402{width:11.904000pt;}
._13_c00402{width:12.864000pt;}
._16_c00402{width:14.080000pt;}
._18_c00402{width:16.064000pt;}
._17_c00402{width:22.805333pt;}
._9_c00402{width:147.648000pt;}
._1c_c00402{width:274.176000pt;}
._5_c00402{width:313.130667pt;}
.fs2_c00402{font-size:42.666667pt;}
.fs1_c00402{font-size:56.000000pt;}
.fs0_c00402{font-size:64.000000pt;}
.y0_c00402{bottom:0.000000pt;}
.y1f_c00402{bottom:2.760000pt;}
.y1e_c00402{bottom:6.425204pt;}
.y1d_c00402{bottom:48.520000pt;}
.y1c_c00402{bottom:75.186667pt;}
.y1b_c00402{bottom:97.986667pt;}
.y1a_c00402{bottom:120.520000pt;}
.y19_c00402{bottom:142.386667pt;}
.y18_c00402{bottom:162.786667pt;}
.y17_c00402{bottom:186.253333pt;}
.y16_c00402{bottom:208.120000pt;}
.y15_c00402{bottom:228.920000pt;}
.y14_c00402{bottom:252.253333pt;}
.y13_c00402{bottom:270.786667pt;}
.y12_c00402{bottom:294.253333pt;}
.y11_c00402{bottom:314.653333pt;}
.y10_c00402{bottom:336.520000pt;}
.yf_c00402{bottom:358.386667pt;}
.ye_c00402{bottom:380.120000pt;}
.yd_c00402{bottom:401.720000pt;}
.yc_c00402{bottom:423.853333pt;}
.yb_c00402{bottom:445.720000pt;}
.ya_c00402{bottom:467.586667pt;}
.y9_c00402{bottom:489.186667pt;}
.y8_c00402{bottom:511.453333pt;}
.y7_c00402{bottom:533.053333pt;}
.y6_c00402{bottom:554.920000pt;}
.y5_c00402{bottom:576.786667pt;}
.y4_c00402{bottom:598.786667pt;}
.y3_c00402{bottom:620.920000pt;}
.y2_c00402{bottom:641.586667pt;}
.y1_c00402{bottom:663.320000pt;}
.h3_c00402{height:11.733399pt;}
.h4_c00402{height:38.937500pt;}
.h2_c00402{height:81.031250pt;}
.h0_c00402{height:702.466667pt;}
.h1_c00402{height:702.666667pt;}
.w2_c00402{width:93.222667pt;}
.w1_c00402{width:474.000000pt;}
.w0_c00402{width:474.266667pt;}
.x0_c00402{left:0.000000pt;}
.x2_c00402{left:34.533333pt;}
.x3_c00402{left:36.933333pt;}
.x4_c00402{left:38.400000pt;}
.x8_c00402{left:39.600000pt;}
.x5_c00402{left:40.533333pt;}
.x6_c00402{left:42.000000pt;}
.x7_c00402{left:42.933333pt;}
.x1_c00402{left:138.800000pt;}
.xa_c00402{left:194.301554pt;}
.x9_c00402{left:228.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_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_03e804e009dc9e866260d869.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.284180;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:1.284668;font-style:normal;font-weight:normal;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_acbdd84a90e8ff8bb80af237.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:1.568848;font-style:normal;font-weight:normal;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_61e20f8ae1cd0510f5c4be8a.woff2')format("woff");}.ff4_c00403{font-family:ff4_c00403;line-height:1.480469;font-style:normal;font-weight:normal;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_6497e747c24cc8fa160bd279.woff2')format("woff");}.ff5_c00403{font-family:ff5_c00403;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00403;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00403{font-family:ff6_c00403;line-height:1.219238;font-style: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;}
.ls3_c00403{letter-spacing:-6.000000px;}
.ls2_c00403{letter-spacing:0.000000px;}
.ls1_c00403{letter-spacing:3.000000px;}
.ls5_c00403{letter-spacing:6.000000px;}
.ls4_c00403{letter-spacing:9.000000px;}
.ls0_c00403{letter-spacing:13.416000px;}
.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:-24.051000px;}
.ws2_c00403{word-spacing:-20.352000px;}
.ws3_c00403{word-spacing:0.000000px;}
.ws1_c00403{word-spacing:0.984000px;}
._13_c00403{margin-left:-30.960000px;}
._16_c00403{margin-left:-16.644000px;}
._3_c00403{margin-left:-15.372000px;}
._17_c00403{margin-left:-14.040000px;}
._e_c00403{margin-left:-12.828000px;}
._14_c00403{margin-left:-11.112000px;}
._10_c00403{margin-left:-8.232000px;}
._11_c00403{margin-left:-7.200000px;}
._b_c00403{margin-left:-5.664000px;}
._8_c00403{margin-left:-4.464000px;}
._9_c00403{margin-left:-2.484000px;}
._7_c00403{margin-left:-1.440000px;}
._1_c00403{width:1.848000px;}
._2_c00403{width:2.940000px;}
._0_c00403{width:4.788000px;}
._4_c00403{width:5.964000px;}
._6_c00403{width:7.512000px;}
._a_c00403{width:9.276000px;}
._5_c00403{width:10.584000px;}
._f_c00403{width:12.168000px;}
._12_c00403{width:13.632000px;}
._c_c00403{width:15.600000px;}
._d_c00403{width:17.496000px;}
._18_c00403{width:19.320000px;}
._19_c00403{width:20.736000px;}
._15_c00403{width:22.872000px;}
.fc2_c00403{color:transparent;}
.fc1_c00403{color:rgb(128,128,128);}
.fc0_c00403{color:rgb(0,0,0);}
.fs3_c00403{font-size:24.000000px;}
.fs5_c00403{font-size:48.000000px;}
.fs2_c00403{font-size:63.000000px;}
.fs4_c00403{font-size:66.000000px;}
.fs1_c00403{font-size:72.000000px;}
.fs0_c00403{font-size:84.000000px;}
.y0_c00403{bottom:0.000000px;}
.y1f_c00403{bottom:3.105000px;}
.y1e_c00403{bottom:7.228369px;}
.y1d_c00403{bottom:58.320000px;}
.y1c_c00403{bottom:79.320000px;}
.y1b_c00403{bottom:105.870000px;}
.y1a_c00403{bottom:130.170000px;}
.y19_c00403{bottom:154.170000px;}
.y18_c00403{bottom:180.270000px;}
.y17_c00403{bottom:204.570000px;}
.y16_c00403{bottom:231.420000px;}
.y15_c00403{bottom:254.070000px;}
.y14_c00403{bottom:278.670000px;}
.y13_c00403{bottom:303.420000px;}
.y12_c00403{bottom:328.020000px;}
.y11_c00403{bottom:353.070000px;}
.y10_c00403{bottom:377.370000px;}
.yf_c00403{bottom:401.670000px;}
.ye_c00403{bottom:426.270000px;}
.yd_c00403{bottom:451.470000px;}
.yc_c00403{bottom:475.470000px;}
.yb_c00403{bottom:499.770000px;}
.ya_c00403{bottom:524.520000px;}
.y9_c00403{bottom:548.670000px;}
.y8_c00403{bottom:573.420000px;}
.y7_c00403{bottom:597.720000px;}
.y6_c00403{bottom:622.020000px;}
.y5_c00403{bottom:647.220000px;}
.y4_c00403{bottom:671.520000px;}
.y3_c00403{bottom:696.270000px;}
.y2_c00403{bottom:719.820000px;}
.y1_c00403{bottom:745.470000px;}
.h3_c00403{height:13.200073px;}
.h4_c00403{height:43.804688px;}
.h1_c00403{height:82.441406px;}
.h2_c00403{height:91.160156px;}
.h0_c00403{height:786.750000px;}
.w2_c00403{width:104.875500px;}
.w0_c00403{width:511.950000px;}
.w1_c00403{width:512.250000px;}
.x0_c00403{left:0.000000px;}
.x6_c00403{left:89.100000px;}
.x5_c00403{left:90.150000px;}
.x4_c00403{left:91.500000px;}
.x3_c00403{left:92.700000px;}
.x2_c00403{left:94.950000px;}
.x8_c00403{left:207.789230px;}
.x1_c00403{left:228.150000px;}
.x7_c00403{left:429.000000px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls3_c00403{letter-spacing:-5.333333pt;}
.ls2_c00403{letter-spacing:0.000000pt;}
.ls1_c00403{letter-spacing:2.666667pt;}
.ls5_c00403{letter-spacing:5.333333pt;}
.ls4_c00403{letter-spacing:8.000000pt;}
.ls0_c00403{letter-spacing:11.925333pt;}
.ws0_c00403{word-spacing:-21.378667pt;}
.ws2_c00403{word-spacing:-18.090667pt;}
.ws3_c00403{word-spacing:0.000000pt;}
.ws1_c00403{word-spacing:0.874667pt;}
._13_c00403{margin-left:-27.520000pt;}
._16_c00403{margin-left:-14.794667pt;}
._3_c00403{margin-left:-13.664000pt;}
._17_c00403{margin-left:-12.480000pt;}
._e_c00403{margin-left:-11.402667pt;}
._14_c00403{margin-left:-9.877333pt;}
._10_c00403{margin-left:-7.317333pt;}
._11_c00403{margin-left:-6.400000pt;}
._b_c00403{margin-left:-5.034667pt;}
._8_c00403{margin-left:-3.968000pt;}
._9_c00403{margin-left:-2.208000pt;}
._7_c00403{margin-left:-1.280000pt;}
._1_c00403{width:1.642667pt;}
._2_c00403{width:2.613333pt;}
._0_c00403{width:4.256000pt;}
._4_c00403{width:5.301333pt;}
._6_c00403{width:6.677333pt;}
._a_c00403{width:8.245333pt;}
._5_c00403{width:9.408000pt;}
._f_c00403{width:10.816000pt;}
._12_c00403{width:12.117333pt;}
._c_c00403{width:13.866667pt;}
._d_c00403{width:15.552000pt;}
._18_c00403{width:17.173333pt;}
._19_c00403{width:18.432000pt;}
._15_c00403{width:20.330667pt;}
.fs3_c00403{font-size:21.333333pt;}
.fs5_c00403{font-size:42.666667pt;}
.fs2_c00403{font-size:56.000000pt;}
.fs4_c00403{font-size:58.666667pt;}
.fs1_c00403{font-size:64.000000pt;}
.fs0_c00403{font-size:74.666667pt;}
.y0_c00403{bottom:0.000000pt;}
.y1f_c00403{bottom:2.760000pt;}
.y1e_c00403{bottom:6.425217pt;}
.y1d_c00403{bottom:51.840000pt;}
.y1c_c00403{bottom:70.506667pt;}
.y1b_c00403{bottom:94.106667pt;}
.y1a_c00403{bottom:115.706667pt;}
.y19_c00403{bottom:137.040000pt;}
.y18_c00403{bottom:160.240000pt;}
.y17_c00403{bottom:181.840000pt;}
.y16_c00403{bottom:205.706667pt;}
.y15_c00403{bottom:225.840000pt;}
.y14_c00403{bottom:247.706667pt;}
.y13_c00403{bottom:269.706667pt;}
.y12_c00403{bottom:291.573333pt;}
.y11_c00403{bottom:313.840000pt;}
.y10_c00403{bottom:335.440000pt;}
.yf_c00403{bottom:357.040000pt;}
.ye_c00403{bottom:378.906667pt;}
.yd_c00403{bottom:401.306667pt;}
.yc_c00403{bottom:422.640000pt;}
.yb_c00403{bottom:444.240000pt;}
.ya_c00403{bottom:466.240000pt;}
.y9_c00403{bottom:487.706667pt;}
.y8_c00403{bottom:509.706667pt;}
.y7_c00403{bottom:531.306667pt;}
.y6_c00403{bottom:552.906667pt;}
.y5_c00403{bottom:575.306667pt;}
.y4_c00403{bottom:596.906667pt;}
.y3_c00403{bottom:618.906667pt;}
.y2_c00403{bottom:639.840000pt;}
.y1_c00403{bottom:662.640000pt;}
.h3_c00403{height:11.733399pt;}
.h4_c00403{height:38.937500pt;}
.h1_c00403{height:73.281250pt;}
.h2_c00403{height:81.031250pt;}
.h0_c00403{height:699.333333pt;}
.w2_c00403{width:93.222667pt;}
.w0_c00403{width:455.066667pt;}
.w1_c00403{width:455.333333pt;}
.x0_c00403{left:0.000000pt;}
.x6_c00403{left:79.200000pt;}
.x5_c00403{left:80.133333pt;}
.x4_c00403{left:81.333333pt;}
.x3_c00403{left:82.400000pt;}
.x2_c00403{left:84.400000pt;}
.x8_c00403{left:184.701538pt;}
.x1_c00403{left:202.800000pt;}
.x7_c00403{left:381.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_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_7a654540e2dd625df7004e14.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00404;src:url('chunks/assets/font_4d330fdb4585421e836cf8af.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:1.568848;font-style:normal;font-weight:normal;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_858dadb14abc4d8515fc2e93.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00404;src:url('chunks/assets/font_12e1010e8daf6c09ad016158.woff2')format("woff");}.ff4_c00404{font-family:ff4_c00404;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00404;src:url('chunks/assets/font_50023d6c9bc030ce32c1d582.woff2')format("woff");}.ff5_c00404{font-family:ff5_c00404;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00404;src:url('chunks/assets/font_4e70b6473557903191e1433a.woff2')format("woff");}.ff6_c00404{font-family:ff6_c00404;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00404;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00404{font-family:ff7_c00404;line-height:1.219238;font-style: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;}
.ls5_c00404{letter-spacing:-6.000000px;}
.ls2_c00404{letter-spacing:0.000000px;}
.ls0_c00404{letter-spacing:1.188000px;}
.ls3_c00404{letter-spacing:3.000000px;}
.ls1_c00404{letter-spacing:4.200000px;}
.ls4_c00404{letter-spacing:6.000000px;}
.sc__c00404{text-shadow:none;}
.sc0_c00404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00404{-webkit-text-stroke:0px transparent;}
.sc0_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00404{word-spacing:-31.968000px;}
.ws0_c00404{word-spacing:-27.972000px;}
.ws2_c00404{word-spacing:-20.352000px;}
.ws3_c00404{word-spacing:0.000000px;}
._10_c00404{margin-left:-27.000000px;}
._18_c00404{margin-left:-19.056000px;}
._15_c00404{margin-left:-17.772000px;}
._12_c00404{margin-left:-16.488000px;}
._14_c00404{margin-left:-14.772000px;}
._13_c00404{margin-left:-13.320000px;}
._f_c00404{margin-left:-11.544000px;}
._11_c00404{margin-left:-9.864000px;}
._e_c00404{margin-left:-8.712000px;}
._d_c00404{margin-left:-7.668000px;}
._b_c00404{margin-left:-6.540000px;}
._c_c00404{margin-left:-4.716000px;}
._a_c00404{margin-left:-2.988000px;}
._7_c00404{margin-left:-1.152000px;}
._6_c00404{width:1.584000px;}
._8_c00404{width:3.432000px;}
._4_c00404{width:5.124000px;}
._3_c00404{width:6.636000px;}
._9_c00404{width:8.607000px;}
._1_c00404{width:10.416000px;}
._0_c00404{width:12.684000px;}
._16_c00404{width:14.976000px;}
._2_c00404{width:16.716000px;}
._17_c00404{width:30.384000px;}
._5_c00404{width:333.228000px;}
.fc2_c00404{color:transparent;}
.fc1_c00404{color:rgb(128,128,128);}
.fc0_c00404{color:rgb(0,0,0);}
.fs5_c00404{font-size:48.000000px;}
.fs2_c00404{font-size:57.000000px;}
.fs3_c00404{font-size:63.000000px;}
.fs1_c00404{font-size:72.000000px;}
.fs0_c00404{font-size:84.000000px;}
.fs4_c00404{font-size:96.000000px;}
.y0_c00404{bottom:0.000000px;}
.y1f_c00404{bottom:3.105000px;}
.y1e_c00404{bottom:7.228369px;}
.y1d_c00404{bottom:46.620000px;}
.y1c_c00404{bottom:73.470000px;}
.y1b_c00404{bottom:100.170000px;}
.y1a_c00404{bottom:126.570000px;}
.y19_c00404{bottom:151.470000px;}
.y18_c00404{bottom:176.820000px;}
.y17_c00404{bottom:200.070000px;}
.y16_c00404{bottom:226.020000px;}
.y15_c00404{bottom:248.670000px;}
.y14_c00404{bottom:274.770000px;}
.y13_c00404{bottom:296.970000px;}
.y12_c00404{bottom:322.920000px;}
.y11_c00404{bottom:346.320000px;}
.y10_c00404{bottom:370.470000px;}
.yf_c00404{bottom:396.270000px;}
.ye_c00404{bottom:419.820000px;}
.yd_c00404{bottom:444.420000px;}
.yc_c00404{bottom:469.170000px;}
.yb_c00404{bottom:493.770000px;}
.ya_c00404{bottom:518.670000px;}
.y9_c00404{bottom:542.670000px;}
.y8_c00404{bottom:568.320000px;}
.y7_c00404{bottom:592.320000px;}
.y6_c00404{bottom:617.220000px;}
.y5_c00404{bottom:641.220000px;}
.y4_c00404{bottom:667.470000px;}
.y3_c00404{bottom:690.870000px;}
.y2_c00404{bottom:715.770000px;}
.y1_c00404{bottom:740.370000px;}
.h6_c00404{height:13.200073px;}
.h7_c00404{height:43.804688px;}
.h2_c00404{height:82.400391px;}
.h4_c00404{height:84.656250px;}
.h3_c00404{height:91.160156px;}
.h5_c00404{height:96.750000px;}
.h1_c00404{height:783.750000px;}
.h0_c00404{height:784.050000px;}
.w1_c00404{width:104.875500px;}
.w0_c00404{width:516.000000px;}
.x0_c00404{left:0.000000px;}
.x2_c00404{left:28.050000px;}
.x3_c00404{left:33.000000px;}
.x4_c00404{left:35.400000px;}
.x6_c00404{left:37.050000px;}
.x5_c00404{left:38.100000px;}
.x8_c00404{left:39.150000px;}
.x7_c00404{left:40.200000px;}
.x1_c00404{left:154.950000px;}
.xa_c00404{left:209.814240px;}
.x9_c00404{left:369.450000px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls5_c00404{letter-spacing:-5.333333pt;}
.ls2_c00404{letter-spacing:0.000000pt;}
.ls0_c00404{letter-spacing:1.056000pt;}
.ls3_c00404{letter-spacing:2.666667pt;}
.ls1_c00404{letter-spacing:3.733333pt;}
.ls4_c00404{letter-spacing:5.333333pt;}
.ws1_c00404{word-spacing:-28.416000pt;}
.ws0_c00404{word-spacing:-24.864000pt;}
.ws2_c00404{word-spacing:-18.090667pt;}
.ws3_c00404{word-spacing:0.000000pt;}
._10_c00404{margin-left:-24.000000pt;}
._18_c00404{margin-left:-16.938667pt;}
._15_c00404{margin-left:-15.797333pt;}
._12_c00404{margin-left:-14.656000pt;}
._14_c00404{margin-left:-13.130667pt;}
._13_c00404{margin-left:-11.840000pt;}
._f_c00404{margin-left:-10.261333pt;}
._11_c00404{margin-left:-8.768000pt;}
._e_c00404{margin-left:-7.744000pt;}
._d_c00404{margin-left:-6.816000pt;}
._b_c00404{margin-left:-5.813333pt;}
._c_c00404{margin-left:-4.192000pt;}
._a_c00404{margin-left:-2.656000pt;}
._7_c00404{margin-left:-1.024000pt;}
._6_c00404{width:1.408000pt;}
._8_c00404{width:3.050667pt;}
._4_c00404{width:4.554667pt;}
._3_c00404{width:5.898667pt;}
._9_c00404{width:7.650667pt;}
._1_c00404{width:9.258667pt;}
._0_c00404{width:11.274667pt;}
._16_c00404{width:13.312000pt;}
._2_c00404{width:14.858667pt;}
._17_c00404{width:27.008000pt;}
._5_c00404{width:296.202667pt;}
.fs5_c00404{font-size:42.666667pt;}
.fs2_c00404{font-size:50.666667pt;}
.fs3_c00404{font-size:56.000000pt;}
.fs1_c00404{font-size:64.000000pt;}
.fs0_c00404{font-size:74.666667pt;}
.fs4_c00404{font-size:85.333333pt;}
.y0_c00404{bottom:0.000000pt;}
.y1f_c00404{bottom:2.760000pt;}
.y1e_c00404{bottom:6.425217pt;}
.y1d_c00404{bottom:41.440000pt;}
.y1c_c00404{bottom:65.306667pt;}
.y1b_c00404{bottom:89.040000pt;}
.y1a_c00404{bottom:112.506667pt;}
.y19_c00404{bottom:134.640000pt;}
.y18_c00404{bottom:157.173333pt;}
.y17_c00404{bottom:177.840000pt;}
.y16_c00404{bottom:200.906667pt;}
.y15_c00404{bottom:221.040000pt;}
.y14_c00404{bottom:244.240000pt;}
.y13_c00404{bottom:263.973333pt;}
.y12_c00404{bottom:287.040000pt;}
.y11_c00404{bottom:307.840000pt;}
.y10_c00404{bottom:329.306667pt;}
.yf_c00404{bottom:352.240000pt;}
.ye_c00404{bottom:373.173333pt;}
.yd_c00404{bottom:395.040000pt;}
.yc_c00404{bottom:417.040000pt;}
.yb_c00404{bottom:438.906667pt;}
.ya_c00404{bottom:461.040000pt;}
.y9_c00404{bottom:482.373333pt;}
.y8_c00404{bottom:505.173333pt;}
.y7_c00404{bottom:526.506667pt;}
.y6_c00404{bottom:548.640000pt;}
.y5_c00404{bottom:569.973333pt;}
.y4_c00404{bottom:593.306667pt;}
.y3_c00404{bottom:614.106667pt;}
.y2_c00404{bottom:636.240000pt;}
.y1_c00404{bottom:658.106667pt;}
.h6_c00404{height:11.733399pt;}
.h7_c00404{height:38.937500pt;}
.h2_c00404{height:73.244792pt;}
.h4_c00404{height:75.250000pt;}
.h3_c00404{height:81.031250pt;}
.h5_c00404{height:86.000000pt;}
.h1_c00404{height:696.666667pt;}
.h0_c00404{height:696.933333pt;}
.w1_c00404{width:93.222667pt;}
.w0_c00404{width:458.666667pt;}
.x0_c00404{left:0.000000pt;}
.x2_c00404{left:24.933333pt;}
.x3_c00404{left:29.333333pt;}
.x4_c00404{left:31.466667pt;}
.x6_c00404{left:32.933333pt;}
.x5_c00404{left:33.866667pt;}
.x8_c00404{left:34.800000pt;}
.x7_c00404{left:35.733333pt;}
.x1_c00404{left:137.733333pt;}
.xa_c00404{left:186.501546pt;}
.x9_c00404{left:328.400000pt;}
}





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

.ir_c00405:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00405{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00405;src:url('chunks/assets/font_0014dabaad83e8935bd53166.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.568848;font-style:normal;font-weight:normal;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_deca636b8f78af24111cd410.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:1.480469;font-style:normal;font-weight:normal;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_dcdc232181e5a7f9dc19728e.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00405{font-family:ff4_c00405;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00405{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00405{vertical-align:0.000000px;}
.ls3_c00405{letter-spacing:-6.000000px;}
.ls2_c00405{letter-spacing:0.000000px;}
.ls1_c00405{letter-spacing:3.000000px;}
.ls0_c00405{letter-spacing:11.988000px;}
.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:-33.192000px;}
.ws1_c00405{word-spacing:-24.051000px;}
.ws2_c00405{word-spacing:-19.629000px;}
.ws3_c00405{word-spacing:0.000000px;}
._0_c00405{margin-left:-20.520000px;}
._10_c00405{margin-left:-12.312000px;}
._f_c00405{margin-left:-10.488000px;}
._b_c00405{margin-left:-9.432000px;}
._9_c00405{margin-left:-8.208000px;}
._6_c00405{margin-left:-6.696000px;}
._13_c00405{margin-left:-5.688000px;}
._a_c00405{margin-left:-4.680000px;}
._8_c00405{margin-left:-3.024000px;}
._7_c00405{margin-left:-1.152000px;}
._2_c00405{width:1.800000px;}
._3_c00405{width:3.672000px;}
._5_c00405{width:5.472000px;}
._4_c00405{width:6.984000px;}
._12_c00405{width:8.568000px;}
._c_c00405{width:10.512000px;}
._11_c00405{width:12.312000px;}
._e_c00405{width:13.800000px;}
._14_c00405{width:28.656000px;}
._15_c00405{width:37.008000px;}
._d_c00405{width:49.896000px;}
._1_c00405{width:351.072000px;}
.fc2_c00405{color:transparent;}
.fc1_c00405{color:rgb(128,128,128);}
.fc0_c00405{color:rgb(0,0,0);}
.fs3_c00405{font-size:48.000000px;}
.fs1_c00405{font-size:63.000000px;}
.fs2_c00405{font-size:69.000000px;}
.fs0_c00405{font-size:72.000000px;}
.y0_c00405{bottom:0.000000px;}
.y20_c00405{bottom:3.105000px;}
.y1f_c00405{bottom:7.228363px;}
.y1e_c00405{bottom:49.950000px;}
.y1d_c00405{bottom:54.300000px;}
.y1c_c00405{bottom:77.250000px;}
.y1b_c00405{bottom:102.300000px;}
.y1a_c00405{bottom:127.350000px;}
.y19_c00405{bottom:152.850000px;}
.y18_c00405{bottom:178.500000px;}
.y17_c00405{bottom:202.800000px;}
.y16_c00405{bottom:227.850000px;}
.y15_c00405{bottom:252.150000px;}
.y14_c00405{bottom:277.200000px;}
.y13_c00405{bottom:302.400000px;}
.y12_c00405{bottom:327.000000px;}
.y11_c00405{bottom:351.300000px;}
.y10_c00405{bottom:376.650000px;}
.yf_c00405{bottom:400.950000px;}
.ye_c00405{bottom:425.850000px;}
.yd_c00405{bottom:449.850000px;}
.yc_c00405{bottom:473.850000px;}
.yb_c00405{bottom:498.750000px;}
.ya_c00405{bottom:522.900000px;}
.y9_c00405{bottom:547.800000px;}
.y8_c00405{bottom:572.400000px;}
.y7_c00405{bottom:597.150000px;}
.y6_c00405{bottom:621.750000px;}
.y5_c00405{bottom:645.750000px;}
.y4_c00405{bottom:670.650000px;}
.y3_c00405{bottom:696.000000px;}
.y2_c00405{bottom:720.000000px;}
.y1_c00405{bottom:745.500000px;}
.h4_c00405{height:13.200074px;}
.h5_c00405{height:43.804688px;}
.h3_c00405{height:87.361816px;}
.h2_c00405{height:91.160156px;}
.h0_c00405{height:784.350000px;}
.h1_c00405{height:784.500000px;}
.w2_c00405{width:104.875500px;}
.w0_c00405{width:505.200000px;}
.w1_c00405{width:505.500000px;}
.x0_c00405{left:0.000000px;}
.x9_c00405{left:85.050000px;}
.x7_c00405{left:87.000000px;}
.x8_c00405{left:89.700000px;}
.x5_c00405{left:90.750000px;}
.x4_c00405{left:92.700000px;}
.x6_c00405{left:95.100000px;}
.x3_c00405{left:96.450000px;}
.x2_c00405{left:99.150000px;}
.xb_c00405{left:122.400000px;}
.x1_c00405{left:129.300000px;}
.xc_c00405{left:204.414230px;}
.xa_c00405{left:420.750000px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls3_c00405{letter-spacing:-5.333333pt;}
.ls2_c00405{letter-spacing:0.000000pt;}
.ls1_c00405{letter-spacing:2.666667pt;}
.ls0_c00405{letter-spacing:10.656000pt;}
.ws0_c00405{word-spacing:-29.504000pt;}
.ws1_c00405{word-spacing:-21.378667pt;}
.ws2_c00405{word-spacing:-17.448000pt;}
.ws3_c00405{word-spacing:0.000000pt;}
._0_c00405{margin-left:-18.240000pt;}
._10_c00405{margin-left:-10.944000pt;}
._f_c00405{margin-left:-9.322667pt;}
._b_c00405{margin-left:-8.384000pt;}
._9_c00405{margin-left:-7.296000pt;}
._6_c00405{margin-left:-5.952000pt;}
._13_c00405{margin-left:-5.056000pt;}
._a_c00405{margin-left:-4.160000pt;}
._8_c00405{margin-left:-2.688000pt;}
._7_c00405{margin-left:-1.024000pt;}
._2_c00405{width:1.600000pt;}
._3_c00405{width:3.264000pt;}
._5_c00405{width:4.864000pt;}
._4_c00405{width:6.208000pt;}
._12_c00405{width:7.616000pt;}
._c_c00405{width:9.344000pt;}
._11_c00405{width:10.944000pt;}
._e_c00405{width:12.266667pt;}
._14_c00405{width:25.472000pt;}
._15_c00405{width:32.896000pt;}
._d_c00405{width:44.352000pt;}
._1_c00405{width:312.064000pt;}
.fs3_c00405{font-size:42.666667pt;}
.fs1_c00405{font-size:56.000000pt;}
.fs2_c00405{font-size:61.333333pt;}
.fs0_c00405{font-size:64.000000pt;}
.y0_c00405{bottom:0.000000pt;}
.y20_c00405{bottom:2.760000pt;}
.y1f_c00405{bottom:6.425212pt;}
.y1e_c00405{bottom:44.400000pt;}
.y1d_c00405{bottom:48.266667pt;}
.y1c_c00405{bottom:68.666667pt;}
.y1b_c00405{bottom:90.933333pt;}
.y1a_c00405{bottom:113.200000pt;}
.y19_c00405{bottom:135.866667pt;}
.y18_c00405{bottom:158.666667pt;}
.y17_c00405{bottom:180.266667pt;}
.y16_c00405{bottom:202.533333pt;}
.y15_c00405{bottom:224.133333pt;}
.y14_c00405{bottom:246.400000pt;}
.y13_c00405{bottom:268.800000pt;}
.y12_c00405{bottom:290.666667pt;}
.y11_c00405{bottom:312.266667pt;}
.y10_c00405{bottom:334.800000pt;}
.yf_c00405{bottom:356.400000pt;}
.ye_c00405{bottom:378.533333pt;}
.yd_c00405{bottom:399.866667pt;}
.yc_c00405{bottom:421.200000pt;}
.yb_c00405{bottom:443.333333pt;}
.ya_c00405{bottom:464.800000pt;}
.y9_c00405{bottom:486.933333pt;}
.y8_c00405{bottom:508.800000pt;}
.y7_c00405{bottom:530.800000pt;}
.y6_c00405{bottom:552.666667pt;}
.y5_c00405{bottom:574.000000pt;}
.y4_c00405{bottom:596.133333pt;}
.y3_c00405{bottom:618.666667pt;}
.y2_c00405{bottom:640.000000pt;}
.y1_c00405{bottom:662.666667pt;}
.h4_c00405{height:11.733399pt;}
.h5_c00405{height:38.937500pt;}
.h3_c00405{height:77.654948pt;}
.h2_c00405{height:81.031250pt;}
.h0_c00405{height:697.200000pt;}
.h1_c00405{height:697.333333pt;}
.w2_c00405{width:93.222667pt;}
.w0_c00405{width:449.066667pt;}
.w1_c00405{width:449.333333pt;}
.x0_c00405{left:0.000000pt;}
.x9_c00405{left:75.600000pt;}
.x7_c00405{left:77.333333pt;}
.x8_c00405{left:79.733333pt;}
.x5_c00405{left:80.666667pt;}
.x4_c00405{left:82.400000pt;}
.x6_c00405{left:84.533333pt;}
.x3_c00405{left:85.733333pt;}
.x2_c00405{left:88.133333pt;}
.xb_c00405{left:108.800000pt;}
.x1_c00405{left:114.933333pt;}
.xc_c00405{left:181.701538pt;}
.xa_c00405{left:374.000000pt;}
}





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

.ir_c00406:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00406{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00406;src:url('chunks/assets/font_f69191a8f59ebcf5c879cf0e.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00406;src:url('chunks/assets/font_2bfcc86127283b522644240e.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:1.568848;font-style:normal;font-weight:normal;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_a873e89aad32ad716ef43f70.woff2')format("woff");}.ff3_c00406{font-family:ff3_c00406;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00406;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00406{font-family:ff4_c00406;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00406{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00406{vertical-align:0.000000px;}
.ls2_c00406{letter-spacing:-6.000000px;}
.ls1_c00406{letter-spacing:0.000000px;}
.ls0_c00406{letter-spacing:3.000000px;}
.ls3_c00406{letter-spacing:6.000000px;}
.sc__c00406{text-shadow:none;}
.sc0_c00406{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00406{-webkit-text-stroke:0px transparent;}
.sc0_c00406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00406{word-spacing:-24.051000px;}
.ws1_c00406{word-spacing:-20.352000px;}
.ws2_c00406{word-spacing:0.000000px;}
._10_c00406{margin-left:-12.048000px;}
._18_c00406{margin-left:-9.132000px;}
._c_c00406{margin-left:-7.344000px;}
._19_c00406{margin-left:-5.808000px;}
._5_c00406{margin-left:-4.788000px;}
._11_c00406{margin-left:-3.696000px;}
._2_c00406{margin-left:-2.688000px;}
._b_c00406{margin-left:-1.260000px;}
._3_c00406{width:1.260000px;}
._4_c00406{width:2.352000px;}
._6_c00406{width:4.116000px;}
._1_c00406{width:5.880000px;}
._7_c00406{width:7.140000px;}
._d_c00406{width:8.520000px;}
._0_c00406{width:9.576000px;}
._9_c00406{width:10.920000px;}
._13_c00406{width:12.228000px;}
._f_c00406{width:13.260000px;}
._e_c00406{width:14.400000px;}
._17_c00406{width:15.696000px;}
._12_c00406{width:16.716000px;}
._15_c00406{width:22.080000px;}
._a_c00406{width:23.436000px;}
._16_c00406{width:26.868000px;}
._14_c00406{width:32.316000px;}
._8_c00406{width:388.584000px;}
.fc2_c00406{color:transparent;}
.fc1_c00406{color:rgb(128,128,128);}
.fc0_c00406{color:rgb(0,0,0);}
.fs3_c00406{font-size:48.000000px;}
.fs2_c00406{font-size:63.000000px;}
.fs1_c00406{font-size:72.000000px;}
.fs0_c00406{font-size:84.000000px;}
.y0_c00406{bottom:0.000000px;}
.y1f_c00406{bottom:3.105000px;}
.y1e_c00406{bottom:7.228363px;}
.y1d_c00406{bottom:56.100000px;}
.y1c_c00406{bottom:85.050000px;}
.y1b_c00406{bottom:110.700000px;}
.y1a_c00406{bottom:135.300000px;}
.y19_c00406{bottom:159.300000px;}
.y18_c00406{bottom:184.050000px;}
.y17_c00406{bottom:209.550000px;}
.y16_c00406{bottom:232.950000px;}
.y15_c00406{bottom:258.300000px;}
.y14_c00406{bottom:283.200000px;}
.y13_c00406{bottom:305.100000px;}
.y12_c00406{bottom:329.700000px;}
.y11_c00406{bottom:353.700000px;}
.y10_c00406{bottom:377.700000px;}
.yf_c00406{bottom:402.300000px;}
.ye_c00406{bottom:427.050000px;}
.yd_c00406{bottom:451.500000px;}
.yc_c00406{bottom:476.100000px;}
.yb_c00406{bottom:500.550000px;}
.ya_c00406{bottom:524.850000px;}
.y9_c00406{bottom:549.150000px;}
.y8_c00406{bottom:574.050000px;}
.y7_c00406{bottom:598.500000px;}
.y6_c00406{bottom:622.800000px;}
.y5_c00406{bottom:647.700000px;}
.y4_c00406{bottom:672.300000px;}
.y3_c00406{bottom:696.600000px;}
.y2_c00406{bottom:721.950000px;}
.y1_c00406{bottom:746.550000px;}
.h3_c00406{height:13.200074px;}
.h4_c00406{height:43.804688px;}
.h1_c00406{height:82.400391px;}
.h2_c00406{height:91.160156px;}
.h0_c00406{height:789.750000px;}
.w2_c00406{width:104.875500px;}
.w0_c00406{width:525.450000px;}
.w1_c00406{width:525.750000px;}
.x0_c00406{left:0.000000px;}
.x2_c00406{left:20.700000px;}
.x3_c00406{left:22.200000px;}
.x4_c00406{left:24.300000px;}
.x5_c00406{left:25.950000px;}
.x6_c00406{left:27.300000px;}
.x7_c00406{left:28.350000px;}
.x8_c00406{left:30.750000px;}
.x9_c00406{left:32.400000px;}
.x1_c00406{left:129.900000px;}
.xb_c00406{left:214.539230px;}
.xa_c00406{left:378.600000px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls2_c00406{letter-spacing:-5.333333pt;}
.ls1_c00406{letter-spacing:0.000000pt;}
.ls0_c00406{letter-spacing:2.666667pt;}
.ls3_c00406{letter-spacing:5.333333pt;}
.ws0_c00406{word-spacing:-21.378667pt;}
.ws1_c00406{word-spacing:-18.090667pt;}
.ws2_c00406{word-spacing:0.000000pt;}
._10_c00406{margin-left:-10.709333pt;}
._18_c00406{margin-left:-8.117333pt;}
._c_c00406{margin-left:-6.528000pt;}
._19_c00406{margin-left:-5.162667pt;}
._5_c00406{margin-left:-4.256000pt;}
._11_c00406{margin-left:-3.285333pt;}
._2_c00406{margin-left:-2.389333pt;}
._b_c00406{margin-left:-1.120000pt;}
._3_c00406{width:1.120000pt;}
._4_c00406{width:2.090667pt;}
._6_c00406{width:3.658667pt;}
._1_c00406{width:5.226667pt;}
._7_c00406{width:6.346667pt;}
._d_c00406{width:7.573333pt;}
._0_c00406{width:8.512000pt;}
._9_c00406{width:9.706667pt;}
._13_c00406{width:10.869333pt;}
._f_c00406{width:11.786667pt;}
._e_c00406{width:12.800000pt;}
._17_c00406{width:13.952000pt;}
._12_c00406{width:14.858667pt;}
._15_c00406{width:19.626667pt;}
._a_c00406{width:20.832000pt;}
._16_c00406{width:23.882667pt;}
._14_c00406{width:28.725333pt;}
._8_c00406{width:345.408000pt;}
.fs3_c00406{font-size:42.666667pt;}
.fs2_c00406{font-size:56.000000pt;}
.fs1_c00406{font-size:64.000000pt;}
.fs0_c00406{font-size:74.666667pt;}
.y0_c00406{bottom:0.000000pt;}
.y1f_c00406{bottom:2.760000pt;}
.y1e_c00406{bottom:6.425212pt;}
.y1d_c00406{bottom:49.866667pt;}
.y1c_c00406{bottom:75.600000pt;}
.y1b_c00406{bottom:98.400000pt;}
.y1a_c00406{bottom:120.266667pt;}
.y19_c00406{bottom:141.600000pt;}
.y18_c00406{bottom:163.600000pt;}
.y17_c00406{bottom:186.266667pt;}
.y16_c00406{bottom:207.066667pt;}
.y15_c00406{bottom:229.600000pt;}
.y14_c00406{bottom:251.733333pt;}
.y13_c00406{bottom:271.200000pt;}
.y12_c00406{bottom:293.066667pt;}
.y11_c00406{bottom:314.400000pt;}
.y10_c00406{bottom:335.733333pt;}
.yf_c00406{bottom:357.600000pt;}
.ye_c00406{bottom:379.600000pt;}
.yd_c00406{bottom:401.333333pt;}
.yc_c00406{bottom:423.200000pt;}
.yb_c00406{bottom:444.933333pt;}
.ya_c00406{bottom:466.533333pt;}
.y9_c00406{bottom:488.133333pt;}
.y8_c00406{bottom:510.266667pt;}
.y7_c00406{bottom:532.000000pt;}
.y6_c00406{bottom:553.600000pt;}
.y5_c00406{bottom:575.733333pt;}
.y4_c00406{bottom:597.600000pt;}
.y3_c00406{bottom:619.200000pt;}
.y2_c00406{bottom:641.733333pt;}
.y1_c00406{bottom:663.600000pt;}
.h3_c00406{height:11.733399pt;}
.h4_c00406{height:38.937500pt;}
.h1_c00406{height:73.244792pt;}
.h2_c00406{height:81.031250pt;}
.h0_c00406{height:702.000000pt;}
.w2_c00406{width:93.222667pt;}
.w0_c00406{width:467.066667pt;}
.w1_c00406{width:467.333333pt;}
.x0_c00406{left:0.000000pt;}
.x2_c00406{left:18.400000pt;}
.x3_c00406{left:19.733333pt;}
.x4_c00406{left:21.600000pt;}
.x5_c00406{left:23.066667pt;}
.x6_c00406{left:24.266667pt;}
.x7_c00406{left:25.200000pt;}
.x8_c00406{left:27.333333pt;}
.x9_c00406{left:28.800000pt;}
.x1_c00406{left:115.466667pt;}
.xb_c00406{left:190.701538pt;}
.xa_c00406{left:336.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_58ef5ad2fcdba82feaaa4ef3.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.480469;font-style:normal;font-weight:normal;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_282193333280a0db323bda72.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:1.568848;font-style:normal;font-weight:normal;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_0165530f2a57c92e977a6835.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00407{font-family:ff4_c00407;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00407{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00407{vertical-align:0.000000px;}
.ls0_c00407{letter-spacing:0.000000px;}
.ls1_c00407{letter-spacing:3.000000px;}
.ls2_c00407{letter-spacing:9.000000px;}
.sc__c00407{text-shadow:none;}
.sc0_c00407{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00407{-webkit-text-stroke:0px transparent;}
.sc0_c00407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00407{word-spacing:-20.352000px;}
.ws1_c00407{word-spacing:0.000000px;}
._1b_c00407{margin-left:-29.160000px;}
._17_c00407{margin-left:-23.544000px;}
._5_c00407{margin-left:-14.460000px;}
._1c_c00407{margin-left:-13.176000px;}
._12_c00407{margin-left:-10.800000px;}
._8_c00407{margin-left:-9.648000px;}
._13_c00407{margin-left:-8.352000px;}
._11_c00407{margin-left:-6.840000px;}
._7_c00407{margin-left:-5.616000px;}
._9_c00407{margin-left:-3.720000px;}
._e_c00407{margin-left:-2.640000px;}
._18_c00407{margin-left:-1.092000px;}
._a_c00407{width:1.932000px;}
._c_c00407{width:3.684000px;}
._b_c00407{width:5.052000px;}
._1_c00407{width:6.180000px;}
._f_c00407{width:7.440000px;}
._6_c00407{width:8.580000px;}
._d_c00407{width:9.756000px;}
._3_c00407{width:10.800000px;}
._2_c00407{width:12.120000px;}
._16_c00407{width:13.476000px;}
._0_c00407{width:15.660000px;}
._10_c00407{width:18.012000px;}
._19_c00407{width:19.128000px;}
._1a_c00407{width:22.344000px;}
._14_c00407{width:23.556000px;}
._15_c00407{width:24.840000px;}
._4_c00407{width:27.360000px;}
.fc2_c00407{color:transparent;}
.fc1_c00407{color:rgb(128,128,128);}
.fc0_c00407{color:rgb(0,0,0);}
.fs3_c00407{font-size:33.000000px;}
.fs4_c00407{font-size:48.000000px;}
.fs0_c00407{font-size:60.000000px;}
.fs2_c00407{font-size:66.000000px;}
.fs1_c00407{font-size:72.000000px;}
.y0_c00407{bottom:0.000000px;}
.y1f_c00407{bottom:3.105000px;}
.y1e_c00407{bottom:7.228357px;}
.y1d_c00407{bottom:53.280000px;}
.y1c_c00407{bottom:73.530000px;}
.y1b_c00407{bottom:98.280000px;}
.y1a_c00407{bottom:123.630000px;}
.y19_c00407{bottom:148.230000px;}
.y18_c00407{bottom:172.530000px;}
.y17_c00407{bottom:198.180000px;}
.y16_c00407{bottom:223.080000px;}
.y15_c00407{bottom:247.830000px;}
.y14_c00407{bottom:271.380000px;}
.y13_c00407{bottom:296.430000px;}
.y12_c00407{bottom:321.930000px;}
.y11_c00407{bottom:345.930000px;}
.y10_c00407{bottom:370.230000px;}
.yf_c00407{bottom:394.530000px;}
.ye_c00407{bottom:419.130000px;}
.yd_c00407{bottom:443.880000px;}
.yc_c00407{bottom:468.180000px;}
.yb_c00407{bottom:493.080000px;}
.ya_c00407{bottom:516.780000px;}
.y9_c00407{bottom:541.080000px;}
.y8_c00407{bottom:566.730000px;}
.y7_c00407{bottom:590.730000px;}
.y6_c00407{bottom:615.330000px;}
.y5_c00407{bottom:639.930000px;}
.y4_c00407{bottom:664.830000px;}
.y3_c00407{bottom:689.280000px;}
.y2_c00407{bottom:714.180000px;}
.y1_c00407{bottom:739.230000px;}
.h4_c00407{height:13.200074px;}
.h5_c00407{height:43.804688px;}
.h2_c00407{height:75.966797px;}
.h3_c00407{height:91.160156px;}
.h1_c00407{height:777.750000px;}
.h0_c00407{height:777.900000px;}
.w2_c00407{width:104.875500px;}
.w0_c00407{width:518.100000px;}
.w1_c00407{width:518.250000px;}
.x0_c00407{left:0.000000px;}
.x2_c00407{left:91.500000px;}
.x3_c00407{left:93.150000px;}
.x4_c00407{left:94.950000px;}
.x5_c00407{left:96.900000px;}
.x6_c00407{left:97.950000px;}
.x7_c00407{left:99.000000px;}
.x9_c00407{left:210.864258px;}
.x1_c00407{left:217.950000px;}
.x8_c00407{left:431.400000px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls0_c00407{letter-spacing:0.000000pt;}
.ls1_c00407{letter-spacing:2.666667pt;}
.ls2_c00407{letter-spacing:8.000000pt;}
.ws0_c00407{word-spacing:-18.090667pt;}
.ws1_c00407{word-spacing:0.000000pt;}
._1b_c00407{margin-left:-25.920000pt;}
._17_c00407{margin-left:-20.928000pt;}
._5_c00407{margin-left:-12.853333pt;}
._1c_c00407{margin-left:-11.712000pt;}
._12_c00407{margin-left:-9.600000pt;}
._8_c00407{margin-left:-8.576000pt;}
._13_c00407{margin-left:-7.424000pt;}
._11_c00407{margin-left:-6.080000pt;}
._7_c00407{margin-left:-4.992000pt;}
._9_c00407{margin-left:-3.306667pt;}
._e_c00407{margin-left:-2.346667pt;}
._18_c00407{margin-left:-0.970667pt;}
._a_c00407{width:1.717333pt;}
._c_c00407{width:3.274667pt;}
._b_c00407{width:4.490667pt;}
._1_c00407{width:5.493333pt;}
._f_c00407{width:6.613333pt;}
._6_c00407{width:7.626667pt;}
._d_c00407{width:8.672000pt;}
._3_c00407{width:9.600000pt;}
._2_c00407{width:10.773333pt;}
._16_c00407{width:11.978667pt;}
._0_c00407{width:13.920000pt;}
._10_c00407{width:16.010667pt;}
._19_c00407{width:17.002667pt;}
._1a_c00407{width:19.861333pt;}
._14_c00407{width:20.938667pt;}
._15_c00407{width:22.080000pt;}
._4_c00407{width:24.320000pt;}
.fs3_c00407{font-size:29.333333pt;}
.fs4_c00407{font-size:42.666667pt;}
.fs0_c00407{font-size:53.333333pt;}
.fs2_c00407{font-size:58.666667pt;}
.fs1_c00407{font-size:64.000000pt;}
.y0_c00407{bottom:0.000000pt;}
.y1f_c00407{bottom:2.760000pt;}
.y1e_c00407{bottom:6.425206pt;}
.y1d_c00407{bottom:47.360000pt;}
.y1c_c00407{bottom:65.360000pt;}
.y1b_c00407{bottom:87.360000pt;}
.y1a_c00407{bottom:109.893333pt;}
.y19_c00407{bottom:131.760000pt;}
.y18_c00407{bottom:153.360000pt;}
.y17_c00407{bottom:176.160000pt;}
.y16_c00407{bottom:198.293333pt;}
.y15_c00407{bottom:220.293333pt;}
.y14_c00407{bottom:241.226667pt;}
.y13_c00407{bottom:263.493333pt;}
.y12_c00407{bottom:286.160000pt;}
.y11_c00407{bottom:307.493333pt;}
.y10_c00407{bottom:329.093333pt;}
.yf_c00407{bottom:350.693333pt;}
.ye_c00407{bottom:372.560000pt;}
.yd_c00407{bottom:394.560000pt;}
.yc_c00407{bottom:416.160000pt;}
.yb_c00407{bottom:438.293333pt;}
.ya_c00407{bottom:459.360000pt;}
.y9_c00407{bottom:480.960000pt;}
.y8_c00407{bottom:503.760000pt;}
.y7_c00407{bottom:525.093333pt;}
.y6_c00407{bottom:546.960000pt;}
.y5_c00407{bottom:568.826667pt;}
.y4_c00407{bottom:590.960000pt;}
.y3_c00407{bottom:612.693333pt;}
.y2_c00407{bottom:634.826667pt;}
.y1_c00407{bottom:657.093333pt;}
.h4_c00407{height:11.733399pt;}
.h5_c00407{height:38.937500pt;}
.h2_c00407{height:67.526042pt;}
.h3_c00407{height:81.031250pt;}
.h1_c00407{height:691.333333pt;}
.h0_c00407{height:691.466667pt;}
.w2_c00407{width:93.222667pt;}
.w0_c00407{width:460.533333pt;}
.w1_c00407{width:460.666667pt;}
.x0_c00407{left:0.000000pt;}
.x2_c00407{left:81.333333pt;}
.x3_c00407{left:82.800000pt;}
.x4_c00407{left:84.400000pt;}
.x5_c00407{left:86.133333pt;}
.x6_c00407{left:87.066667pt;}
.x7_c00407{left:88.000000pt;}
.x9_c00407{left:187.434896pt;}
.x1_c00407{left:193.733333pt;}
.x8_c00407{left:383.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_11576369feeb67f15e22ae04.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.480469;font-style:normal;font-weight:normal;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_c9ef94d0ca3308087b0fccc1.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:1.568848;font-style:normal;font-weight:normal;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_78177f81f3825f22932ba51b.woff2')format("woff");}.ff3_c00408{font-family:ff3_c00408;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00408;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00408{font-family:ff4_c00408;line-height:1.219238;font-style: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;}
.ls0_c00408{letter-spacing:0.000000px;}
.ls1_c00408{letter-spacing:3.000000px;}
.ls2_c00408{letter-spacing:6.000000px;}
.sc__c00408{text-shadow:none;}
.sc0_c00408{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00408{-webkit-text-stroke:0px transparent;}
.sc0_c00408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00408{word-spacing:-20.352000px;}
.ws0_c00408{word-spacing:-17.352000px;}
.ws2_c00408{word-spacing:0.000000px;}
._19_c00408{margin-left:-24.696000px;}
._18_c00408{margin-left:-18.864000px;}
._13_c00408{margin-left:-15.336000px;}
._17_c00408{margin-left:-11.568000px;}
._1b_c00408{margin-left:-10.272000px;}
._11_c00408{margin-left:-8.640000px;}
._10_c00408{margin-left:-7.632000px;}
._f_c00408{margin-left:-6.120000px;}
._c_c00408{margin-left:-4.536000px;}
._9_c00408{margin-left:-2.880000px;}
._a_c00408{margin-left:-1.152000px;}
._8_c00408{width:1.296000px;}
._b_c00408{width:3.024000px;}
._16_c00408{width:4.152000px;}
._e_c00408{width:5.328000px;}
._d_c00408{width:6.840000px;}
._2_c00408{width:7.992000px;}
._5_c00408{width:9.792000px;}
._14_c00408{width:11.376000px;}
._1_c00408{width:13.104000px;}
._4_c00408{width:15.264000px;}
._3_c00408{width:16.344000px;}
._1c_c00408{width:18.960000px;}
._0_c00408{width:21.096000px;}
._6_c00408{width:22.392000px;}
._12_c00408{width:24.552000px;}
._15_c00408{width:30.624000px;}
._1a_c00408{width:48.312000px;}
._7_c00408{width:351.936000px;}
.fc2_c00408{color:transparent;}
.fc1_c00408{color:rgb(128,128,128);}
.fc0_c00408{color:rgb(0,0,0);}
.fs2_c00408{font-size:48.000000px;}
.fs1_c00408{font-size:57.000000px;}
.fs0_c00408{font-size:72.000000px;}
.y0_c00408{bottom:0.000000px;}
.y1f_c00408{bottom:3.105000px;}
.y1e_c00408{bottom:7.228371px;}
.y1d_c00408{bottom:49.665000px;}
.y1c_c00408{bottom:81.315000px;}
.y1b_c00408{bottom:106.065000px;}
.y1a_c00408{bottom:130.965000px;}
.y19_c00408{bottom:156.015000px;}
.y18_c00408{bottom:180.615000px;}
.y17_c00408{bottom:205.665000px;}
.y16_c00408{bottom:229.215000px;}
.y15_c00408{bottom:255.165000px;}
.y14_c00408{bottom:279.165000px;}
.y13_c00408{bottom:303.765000px;}
.y12_c00408{bottom:327.465000px;}
.y11_c00408{bottom:350.115000px;}
.y10_c00408{bottom:374.265000px;}
.yf_c00408{bottom:399.015000px;}
.ye_c00408{bottom:423.615000px;}
.yd_c00408{bottom:448.665000px;}
.yc_c00408{bottom:472.815000px;}
.yb_c00408{bottom:497.265000px;}
.ya_c00408{bottom:521.565000px;}
.y9_c00408{bottom:546.465000px;}
.y8_c00408{bottom:571.065000px;}
.y7_c00408{bottom:595.665000px;}
.y6_c00408{bottom:620.115000px;}
.y5_c00408{bottom:644.415000px;}
.y4_c00408{bottom:669.015000px;}
.y3_c00408{bottom:693.615000px;}
.y2_c00408{bottom:718.215000px;}
.y1_c00408{bottom:743.865000px;}
.h4_c00408{height:13.200074px;}
.h5_c00408{height:43.804688px;}
.h2_c00408{height:84.269531px;}
.h3_c00408{height:91.160156px;}
.h1_c00408{height:790.500000px;}
.h0_c00408{height:790.575000px;}
.w2_c00408{width:104.875500px;}
.w1_c00408{width:535.500000px;}
.w0_c00408{width:535.650000px;}
.x0_c00408{left:0.000000px;}
.x2_c00408{left:30.750000px;}
.x3_c00408{left:33.000000px;}
.x4_c00408{left:34.500000px;}
.x5_c00408{left:36.450000px;}
.x6_c00408{left:38.400000px;}
.x7_c00408{left:39.450000px;}
.x1_c00408{left:144.000000px;}
.x9_c00408{left:219.639267px;}
.x8_c00408{left:379.350000px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls0_c00408{letter-spacing:0.000000pt;}
.ls1_c00408{letter-spacing:2.666667pt;}
.ls2_c00408{letter-spacing:5.333333pt;}
.ws1_c00408{word-spacing:-18.090667pt;}
.ws0_c00408{word-spacing:-15.424000pt;}
.ws2_c00408{word-spacing:0.000000pt;}
._19_c00408{margin-left:-21.952000pt;}
._18_c00408{margin-left:-16.768000pt;}
._13_c00408{margin-left:-13.632000pt;}
._17_c00408{margin-left:-10.282667pt;}
._1b_c00408{margin-left:-9.130667pt;}
._11_c00408{margin-left:-7.680000pt;}
._10_c00408{margin-left:-6.784000pt;}
._f_c00408{margin-left:-5.440000pt;}
._c_c00408{margin-left:-4.032000pt;}
._9_c00408{margin-left:-2.560000pt;}
._a_c00408{margin-left:-1.024000pt;}
._8_c00408{width:1.152000pt;}
._b_c00408{width:2.688000pt;}
._16_c00408{width:3.690667pt;}
._e_c00408{width:4.736000pt;}
._d_c00408{width:6.080000pt;}
._2_c00408{width:7.104000pt;}
._5_c00408{width:8.704000pt;}
._14_c00408{width:10.112000pt;}
._1_c00408{width:11.648000pt;}
._4_c00408{width:13.568000pt;}
._3_c00408{width:14.528000pt;}
._1c_c00408{width:16.853333pt;}
._0_c00408{width:18.752000pt;}
._6_c00408{width:19.904000pt;}
._12_c00408{width:21.824000pt;}
._15_c00408{width:27.221333pt;}
._1a_c00408{width:42.944000pt;}
._7_c00408{width:312.832000pt;}
.fs2_c00408{font-size:42.666667pt;}
.fs1_c00408{font-size:50.666667pt;}
.fs0_c00408{font-size:64.000000pt;}
.y0_c00408{bottom:0.000000pt;}
.y1f_c00408{bottom:2.760000pt;}
.y1e_c00408{bottom:6.425219pt;}
.y1d_c00408{bottom:44.146667pt;}
.y1c_c00408{bottom:72.280000pt;}
.y1b_c00408{bottom:94.280000pt;}
.y1a_c00408{bottom:116.413333pt;}
.y19_c00408{bottom:138.680000pt;}
.y18_c00408{bottom:160.546667pt;}
.y17_c00408{bottom:182.813333pt;}
.y16_c00408{bottom:203.746667pt;}
.y15_c00408{bottom:226.813333pt;}
.y14_c00408{bottom:248.146667pt;}
.y13_c00408{bottom:270.013333pt;}
.y12_c00408{bottom:291.080000pt;}
.y11_c00408{bottom:311.213333pt;}
.y10_c00408{bottom:332.680000pt;}
.yf_c00408{bottom:354.680000pt;}
.ye_c00408{bottom:376.546667pt;}
.yd_c00408{bottom:398.813333pt;}
.yc_c00408{bottom:420.280000pt;}
.yb_c00408{bottom:442.013333pt;}
.ya_c00408{bottom:463.613333pt;}
.y9_c00408{bottom:485.746667pt;}
.y8_c00408{bottom:507.613333pt;}
.y7_c00408{bottom:529.480000pt;}
.y6_c00408{bottom:551.213333pt;}
.y5_c00408{bottom:572.813333pt;}
.y4_c00408{bottom:594.680000pt;}
.y3_c00408{bottom:616.546667pt;}
.y2_c00408{bottom:638.413333pt;}
.y1_c00408{bottom:661.213333pt;}
.h4_c00408{height:11.733399pt;}
.h5_c00408{height:38.937500pt;}
.h2_c00408{height:74.906250pt;}
.h3_c00408{height:81.031250pt;}
.h1_c00408{height:702.666667pt;}
.h0_c00408{height:702.733333pt;}
.w2_c00408{width:93.222667pt;}
.w1_c00408{width:476.000000pt;}
.w0_c00408{width:476.133333pt;}
.x0_c00408{left:0.000000pt;}
.x2_c00408{left:27.333333pt;}
.x3_c00408{left:29.333333pt;}
.x4_c00408{left:30.666667pt;}
.x5_c00408{left:32.400000pt;}
.x6_c00408{left:34.133333pt;}
.x7_c00408{left:35.066667pt;}
.x1_c00408{left:128.000000pt;}
.x9_c00408{left:195.234904pt;}
.x8_c00408{left:337.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_52d15efa4f21c739c03f82f9.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.480469;font-style:normal;font-weight:normal;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_c25be6b921f91ebffcff0e1e.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00409;src:url('chunks/assets/font_8ddcf2a017edaf0935fcd3c0.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00409;src:url('chunks/assets/font_4256395252767841a564da46.woff2')format("woff");}.ff4_c00409{font-family:ff4_c00409;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00409;src:url('chunks/assets/font_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff5_c00409{font-family:ff5_c00409;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00409;src:url('chunks/assets/font_149fcc7b3d180049cc2e3696.woff2')format("woff");}.ff6_c00409{font-family:ff6_c00409;line-height:1.575000;font-style:normal;font-weight: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_c00409;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00409{font-family:ff7_c00409;line-height:1.219238;font-style: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;}
.ls4_c00409{letter-spacing:-6.000000px;}
.ls3_c00409{letter-spacing:0.000000px;}
.ls2_c00409{letter-spacing:3.000000px;}
.ls0_c00409{letter-spacing:5.400000px;}
.ls1_c00409{letter-spacing:14.388000px;}
.sc__c00409{text-shadow:none;}
.sc0_c00409{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00409{-webkit-text-stroke:0px transparent;}
.sc0_c00409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00409{word-spacing:-42.000000px;}
.ws2_c00409{word-spacing:-20.352000px;}
.ws0_c00409{word-spacing:-17.352000px;}
.ws3_c00409{word-spacing:0.000000px;}
._15_c00409{margin-left:-26.565000px;}
._3_c00409{margin-left:-18.648000px;}
._13_c00409{margin-left:-14.928000px;}
._2_c00409{margin-left:-13.176000px;}
._0_c00409{margin-left:-9.288000px;}
._12_c00409{margin-left:-7.968000px;}
._1_c00409{margin-left:-6.768000px;}
._10_c00409{margin-left:-5.712000px;}
._c_c00409{margin-left:-3.768000px;}
._11_c00409{margin-left:-2.640000px;}
._b_c00409{margin-left:-1.440000px;}
._5_c00409{width:1.596000px;}
._4_c00409{width:3.528000px;}
._6_c00409{width:5.292000px;}
._d_c00409{width:6.603000px;}
._7_c00409{width:7.728000px;}
._9_c00409{width:9.024000px;}
._e_c00409{width:10.188000px;}
._f_c00409{width:11.628000px;}
._8_c00409{width:13.440000px;}
._17_c00409{width:15.096000px;}
._a_c00409{width:16.248000px;}
._18_c00409{width:17.268000px;}
._19_c00409{width:19.308000px;}
._16_c00409{width:23.076000px;}
._1b_c00409{width:26.301000px;}
._1a_c00409{width:29.853000px;}
._14_c00409{width:35.472000px;}
.fc2_c00409{color:transparent;}
.fc1_c00409{color:rgb(128,128,128);}
.fc0_c00409{color:rgb(0,0,0);}
.fs6_c00409{font-size:48.000000px;}
.fs4_c00409{font-size:63.000000px;}
.fs5_c00409{font-size:69.000000px;}
.fs0_c00409{font-size:72.000000px;}
.fs2_c00409{font-size:75.000000px;}
.fs3_c00409{font-size:78.000000px;}
.fs1_c00409{font-size:84.000000px;}
.y0_c00409{bottom:0.000000px;}
.y21_c00409{bottom:3.105000px;}
.y20_c00409{bottom:7.228369px;}
.y1f_c00409{bottom:46.620000px;}
.y1e_c00409{bottom:70.920000px;}
.y1d_c00409{bottom:95.820000px;}
.y1c_c00409{bottom:120.870000px;}
.y1b_c00409{bottom:146.070000px;}
.y1a_c00409{bottom:170.820000px;}
.y19_c00409{bottom:196.320000px;}
.y18_c00409{bottom:220.620000px;}
.y17_c00409{bottom:245.670000px;}
.y16_c00409{bottom:269.970000px;}
.y15_c00409{bottom:294.570000px;}
.y14_c00409{bottom:319.320000px;}
.y13_c00409{bottom:343.920000px;}
.y12_c00409{bottom:367.770000px;}
.y11_c00409{bottom:392.220000px;}
.y2_c00409{bottom:404.220000px;}
.y10_c00409{bottom:416.820000px;}
.y1_c00409{bottom:425.970000px;}
.yf_c00409{bottom:441.420000px;}
.ye_c00409{bottom:466.020000px;}
.yd_c00409{bottom:490.620000px;}
.yc_c00409{bottom:514.920000px;}
.yb_c00409{bottom:539.220000px;}
.ya_c00409{bottom:563.520000px;}
.y9_c00409{bottom:588.570000px;}
.y8_c00409{bottom:612.870000px;}
.y7_c00409{bottom:637.770000px;}
.y6_c00409{bottom:662.220000px;}
.y5_c00409{bottom:686.820000px;}
.y4_c00409{bottom:710.670000px;}
.y3_c00409{bottom:737.370000px;}
.h5_c00409{height:13.200073px;}
.h6_c00409{height:43.804688px;}
.h2_c00409{height:82.400391px;}
.h3_c00409{height:82.441406px;}
.h1_c00409{height:84.269531px;}
.h4_c00409{height:91.160156px;}
.h0_c00409{height:786.750000px;}
.w2_c00409{width:104.875500px;}
.w1_c00409{width:504.750000px;}
.w0_c00409{width:504.900000px;}
.x0_c00409{left:0.000000px;}
.x1_c00409{left:14.100000px;}
.xd_c00409{left:84.750000px;}
.xc_c00409{left:86.400000px;}
.xb_c00409{left:87.450000px;}
.xa_c00409{left:88.800000px;}
.x9_c00409{left:90.750000px;}
.x8_c00409{left:92.250000px;}
.x7_c00409{left:93.450000px;}
.x6_c00409{left:94.800000px;}
.x5_c00409{left:95.850000px;}
.x4_c00409{left:97.500000px;}
.x3_c00409{left:99.900000px;}
.xf_c00409{left:204.264267px;}
.x2_c00409{left:229.500000px;}
.xe_c00409{left:427.050000px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls4_c00409{letter-spacing:-5.333333pt;}
.ls3_c00409{letter-spacing:0.000000pt;}
.ls2_c00409{letter-spacing:2.666667pt;}
.ls0_c00409{letter-spacing:4.800000pt;}
.ls1_c00409{letter-spacing:12.789333pt;}
.ws1_c00409{word-spacing:-37.333333pt;}
.ws2_c00409{word-spacing:-18.090667pt;}
.ws0_c00409{word-spacing:-15.424000pt;}
.ws3_c00409{word-spacing:0.000000pt;}
._15_c00409{margin-left:-23.613333pt;}
._3_c00409{margin-left:-16.576000pt;}
._13_c00409{margin-left:-13.269333pt;}
._2_c00409{margin-left:-11.712000pt;}
._0_c00409{margin-left:-8.256000pt;}
._12_c00409{margin-left:-7.082667pt;}
._1_c00409{margin-left:-6.016000pt;}
._10_c00409{margin-left:-5.077333pt;}
._c_c00409{margin-left:-3.349333pt;}
._11_c00409{margin-left:-2.346667pt;}
._b_c00409{margin-left:-1.280000pt;}
._5_c00409{width:1.418667pt;}
._4_c00409{width:3.136000pt;}
._6_c00409{width:4.704000pt;}
._d_c00409{width:5.869333pt;}
._7_c00409{width:6.869333pt;}
._9_c00409{width:8.021333pt;}
._e_c00409{width:9.056000pt;}
._f_c00409{width:10.336000pt;}
._8_c00409{width:11.946667pt;}
._17_c00409{width:13.418667pt;}
._a_c00409{width:14.442667pt;}
._18_c00409{width:15.349333pt;}
._19_c00409{width:17.162667pt;}
._16_c00409{width:20.512000pt;}
._1b_c00409{width:23.378667pt;}
._1a_c00409{width:26.536000pt;}
._14_c00409{width:31.530667pt;}
.fs6_c00409{font-size:42.666667pt;}
.fs4_c00409{font-size:56.000000pt;}
.fs5_c00409{font-size:61.333333pt;}
.fs0_c00409{font-size:64.000000pt;}
.fs2_c00409{font-size:66.666667pt;}
.fs3_c00409{font-size:69.333333pt;}
.fs1_c00409{font-size:74.666667pt;}
.y0_c00409{bottom:0.000000pt;}
.y21_c00409{bottom:2.760000pt;}
.y20_c00409{bottom:6.425217pt;}
.y1f_c00409{bottom:41.440000pt;}
.y1e_c00409{bottom:63.040000pt;}
.y1d_c00409{bottom:85.173333pt;}
.y1c_c00409{bottom:107.440000pt;}
.y1b_c00409{bottom:129.840000pt;}
.y1a_c00409{bottom:151.840000pt;}
.y19_c00409{bottom:174.506667pt;}
.y18_c00409{bottom:196.106667pt;}
.y17_c00409{bottom:218.373333pt;}
.y16_c00409{bottom:239.973333pt;}
.y15_c00409{bottom:261.840000pt;}
.y14_c00409{bottom:283.840000pt;}
.y13_c00409{bottom:305.706667pt;}
.y12_c00409{bottom:326.906667pt;}
.y11_c00409{bottom:348.640000pt;}
.y2_c00409{bottom:359.306667pt;}
.y10_c00409{bottom:370.506667pt;}
.y1_c00409{bottom:378.640000pt;}
.yf_c00409{bottom:392.373333pt;}
.ye_c00409{bottom:414.240000pt;}
.yd_c00409{bottom:436.106667pt;}
.yc_c00409{bottom:457.706667pt;}
.yb_c00409{bottom:479.306667pt;}
.ya_c00409{bottom:500.906667pt;}
.y9_c00409{bottom:523.173333pt;}
.y8_c00409{bottom:544.773333pt;}
.y7_c00409{bottom:566.906667pt;}
.y6_c00409{bottom:588.640000pt;}
.y5_c00409{bottom:610.506667pt;}
.y4_c00409{bottom:631.706667pt;}
.y3_c00409{bottom:655.440000pt;}
.h5_c00409{height:11.733399pt;}
.h6_c00409{height:38.937500pt;}
.h2_c00409{height:73.244792pt;}
.h3_c00409{height:73.281250pt;}
.h1_c00409{height:74.906250pt;}
.h4_c00409{height:81.031250pt;}
.h0_c00409{height:699.333333pt;}
.w2_c00409{width:93.222667pt;}
.w1_c00409{width:448.666667pt;}
.w0_c00409{width:448.800000pt;}
.x0_c00409{left:0.000000pt;}
.x1_c00409{left:12.533333pt;}
.xd_c00409{left:75.333333pt;}
.xc_c00409{left:76.800000pt;}
.xb_c00409{left:77.733333pt;}
.xa_c00409{left:78.933333pt;}
.x9_c00409{left:80.666667pt;}
.x8_c00409{left:82.000000pt;}
.x7_c00409{left:83.066667pt;}
.x6_c00409{left:84.266667pt;}
.x5_c00409{left:85.200000pt;}
.x4_c00409{left:86.666667pt;}
.x3_c00409{left:88.800000pt;}
.xf_c00409{left:181.568237pt;}
.x2_c00409{left:204.000000pt;}
.xe_c00409{left:379.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d501c6517048dd5a9c18268f.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.480469;font-style:normal;font-weight:normal;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_1ac2d829083d0c46351d6037.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:1.568848;font-style:normal;font-weight:normal;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_e98b9adb152a2e5b997e41bc.woff2')format("woff");}.ff3_c00410{font-family:ff3_c00410;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00410;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00410{font-family:ff4_c00410;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00410{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00410{vertical-align:0.000000px;}
.ls0_c00410{letter-spacing:0.000000px;}
.ls1_c00410{letter-spacing:3.000000px;}
.ls2_c00410{letter-spacing:6.000000px;}
.sc__c00410{text-shadow:none;}
.sc0_c00410{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00410{-webkit-text-stroke:0px transparent;}
.sc0_c00410{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00410{word-spacing:-17.352000px;}
.ws1_c00410{word-spacing:0.000000px;}
._17_c00410{margin-left:-10.272000px;}
._18_c00410{margin-left:-8.448000px;}
._10_c00410{margin-left:-6.408000px;}
._d_c00410{margin-left:-5.328000px;}
._e_c00410{margin-left:-4.032000px;}
._7_c00410{margin-left:-2.160000px;}
._6_c00410{margin-left:-1.152000px;}
._9_c00410{width:1.080000px;}
._2_c00410{width:2.160000px;}
._c_c00410{width:3.168000px;}
._3_c00410{width:4.176000px;}
._b_c00410{width:5.616000px;}
._5_c00410{width:7.416000px;}
._1_c00410{width:8.640000px;}
._8_c00410{width:10.368000px;}
._11_c00410{width:12.096000px;}
._0_c00410{width:13.248000px;}
._a_c00410{width:14.760000px;}
._f_c00410{width:15.984000px;}
._12_c00410{width:17.064000px;}
._15_c00410{width:21.456000px;}
._14_c00410{width:22.608000px;}
._13_c00410{width:26.352000px;}
._16_c00410{width:34.848000px;}
._19_c00410{width:310.680000px;}
._4_c00410{width:341.256000px;}
.fc2_c00410{color:transparent;}
.fc1_c00410{color:rgb(128,128,128);}
.fc0_c00410{color:rgb(0,0,0);}
.fs3_c00410{font-size:48.000000px;}
.fs1_c00410{font-size:57.000000px;}
.fs2_c00410{font-size:60.000000px;}
.fs0_c00410{font-size:72.000000px;}
.y0_c00410{bottom:0.000000px;}
.y1f_c00410{bottom:3.105000px;}
.y1e_c00410{bottom:7.228369px;}
.y1d_c00410{bottom:54.570000px;}
.y1c_c00410{bottom:83.070000px;}
.y1b_c00410{bottom:107.370000px;}
.y1a_c00410{bottom:133.920000px;}
.y19_c00410{bottom:158.670000px;}
.y18_c00410{bottom:182.970000px;}
.y17_c00410{bottom:207.870000px;}
.y16_c00410{bottom:230.520000px;}
.y15_c00410{bottom:256.770000px;}
.y14_c00410{bottom:280.770000px;}
.y13_c00410{bottom:305.820000px;}
.y12_c00410{bottom:328.770000px;}
.y11_c00410{bottom:351.570000px;}
.y10_c00410{bottom:376.020000px;}
.yf_c00410{bottom:400.320000px;}
.ye_c00410{bottom:424.920000px;}
.yd_c00410{bottom:449.820000px;}
.yc_c00410{bottom:474.420000px;}
.yb_c00410{bottom:498.720000px;}
.ya_c00410{bottom:523.470000px;}
.y9_c00410{bottom:548.820000px;}
.y8_c00410{bottom:573.120000px;}
.y7_c00410{bottom:597.270000px;}
.y6_c00410{bottom:622.020000px;}
.y5_c00410{bottom:646.020000px;}
.y4_c00410{bottom:671.670000px;}
.y3_c00410{bottom:695.520000px;}
.y2_c00410{bottom:719.820000px;}
.y1_c00410{bottom:744.870000px;}
.h3_c00410{height:13.200073px;}
.h4_c00410{height:43.804688px;}
.h2_c00410{height:91.160156px;}
.h0_c00410{height:788.100000px;}
.h1_c00410{height:788.250000px;}
.w2_c00410{width:104.875500px;}
.w1_c00410{width:539.250000px;}
.w0_c00410{width:539.475000px;}
.x0_c00410{left:0.000000px;}
.x6_c00410{left:35.550000px;}
.x2_c00410{left:36.750000px;}
.x4_c00410{left:38.100000px;}
.x3_c00410{left:39.150000px;}
.x5_c00410{left:40.200000px;}
.x1_c00410{left:162.900000px;}
.x8_c00410{left:221.551758px;}
.x7_c00410{left:248.400000px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls0_c00410{letter-spacing:0.000000pt;}
.ls1_c00410{letter-spacing:2.666667pt;}
.ls2_c00410{letter-spacing:5.333333pt;}
.ws0_c00410{word-spacing:-15.424000pt;}
.ws1_c00410{word-spacing:0.000000pt;}
._17_c00410{margin-left:-9.130667pt;}
._18_c00410{margin-left:-7.509333pt;}
._10_c00410{margin-left:-5.696000pt;}
._d_c00410{margin-left:-4.736000pt;}
._e_c00410{margin-left:-3.584000pt;}
._7_c00410{margin-left:-1.920000pt;}
._6_c00410{margin-left:-1.024000pt;}
._9_c00410{width:0.960000pt;}
._2_c00410{width:1.920000pt;}
._c_c00410{width:2.816000pt;}
._3_c00410{width:3.712000pt;}
._b_c00410{width:4.992000pt;}
._5_c00410{width:6.592000pt;}
._1_c00410{width:7.680000pt;}
._8_c00410{width:9.216000pt;}
._11_c00410{width:10.752000pt;}
._0_c00410{width:11.776000pt;}
._a_c00410{width:13.120000pt;}
._f_c00410{width:14.208000pt;}
._12_c00410{width:15.168000pt;}
._15_c00410{width:19.072000pt;}
._14_c00410{width:20.096000pt;}
._13_c00410{width:23.424000pt;}
._16_c00410{width:30.976000pt;}
._19_c00410{width:276.160000pt;}
._4_c00410{width:303.338667pt;}
.fs3_c00410{font-size:42.666667pt;}
.fs1_c00410{font-size:50.666667pt;}
.fs2_c00410{font-size:53.333333pt;}
.fs0_c00410{font-size:64.000000pt;}
.y0_c00410{bottom:0.000000pt;}
.y1f_c00410{bottom:2.760000pt;}
.y1e_c00410{bottom:6.425217pt;}
.y1d_c00410{bottom:48.506667pt;}
.y1c_c00410{bottom:73.840000pt;}
.y1b_c00410{bottom:95.440000pt;}
.y1a_c00410{bottom:119.040000pt;}
.y19_c00410{bottom:141.040000pt;}
.y18_c00410{bottom:162.640000pt;}
.y17_c00410{bottom:184.773333pt;}
.y16_c00410{bottom:204.906667pt;}
.y15_c00410{bottom:228.240000pt;}
.y14_c00410{bottom:249.573333pt;}
.y13_c00410{bottom:271.840000pt;}
.y12_c00410{bottom:292.240000pt;}
.y11_c00410{bottom:312.506667pt;}
.y10_c00410{bottom:334.240000pt;}
.yf_c00410{bottom:355.840000pt;}
.ye_c00410{bottom:377.706667pt;}
.yd_c00410{bottom:399.840000pt;}
.yc_c00410{bottom:421.706667pt;}
.yb_c00410{bottom:443.306667pt;}
.ya_c00410{bottom:465.306667pt;}
.y9_c00410{bottom:487.840000pt;}
.y8_c00410{bottom:509.440000pt;}
.y7_c00410{bottom:530.906667pt;}
.y6_c00410{bottom:552.906667pt;}
.y5_c00410{bottom:574.240000pt;}
.y4_c00410{bottom:597.040000pt;}
.y3_c00410{bottom:618.240000pt;}
.y2_c00410{bottom:639.840000pt;}
.y1_c00410{bottom:662.106667pt;}
.h3_c00410{height:11.733399pt;}
.h4_c00410{height:38.937500pt;}
.h2_c00410{height:81.031250pt;}
.h0_c00410{height:700.533333pt;}
.h1_c00410{height:700.666667pt;}
.w2_c00410{width:93.222667pt;}
.w1_c00410{width:479.333333pt;}
.w0_c00410{width:479.533333pt;}
.x0_c00410{left:0.000000pt;}
.x6_c00410{left:31.600000pt;}
.x2_c00410{left:32.666667pt;}
.x4_c00410{left:33.866667pt;}
.x3_c00410{left:34.800000pt;}
.x5_c00410{left:35.733333pt;}
.x1_c00410{left:144.800000pt;}
.x8_c00410{left:196.934896pt;}
.x7_c00410{left:220.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_10959774e58d97ac1e55969f.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00411;src:url('chunks/assets/font_92487e5945bf741e6dd0b10d.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00411;src:url('chunks/assets/font_37bc3922b6dd8eb981d91613.woff2')format("woff");}.ff3_c00411{font-family:ff3_c00411;line-height:1.568848;font-style:normal;font-weight:normal;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_06cb31d68e95c82b19c9c959.woff2')format("woff");}.ff4_c00411{font-family:ff4_c00411;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00411{font-family:ff5_c00411;line-height:1.219238;font-style: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;}
.ls2_c00411{letter-spacing:3.000000px;}
.ls0_c00411{letter-spacing:3.588000px;}
.ls3_c00411{letter-spacing:6.000000px;}
.ls4_c00411{letter-spacing:9.000000px;}
.sc__c00411{text-shadow:none;}
.sc0_c00411{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00411{-webkit-text-stroke:0px transparent;}
.sc0_c00411{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00411{word-spacing:-16.629000px;}
.ws2_c00411{word-spacing:0.000000px;}
.ws0_c00411{word-spacing:2.424000px;}
._17_c00411{margin-left:-11.712000px;}
._16_c00411{margin-left:-8.904000px;}
._d_c00411{margin-left:-7.524000px;}
._b_c00411{margin-left:-5.736000px;}
._3_c00411{margin-left:-4.704000px;}
._c_c00411{margin-left:-3.672000px;}
._9_c00411{margin-left:-2.664000px;}
._8_c00411{margin-left:-1.536000px;}
._1_c00411{width:1.848000px;}
._2_c00411{width:3.276000px;}
._0_c00411{width:4.788000px;}
._15_c00411{width:5.832000px;}
._4_c00411{width:6.888000px;}
._a_c00411{width:8.760000px;}
._f_c00411{width:9.804000px;}
._5_c00411{width:11.004000px;}
._7_c00411{width:12.276000px;}
._11_c00411{width:13.428000px;}
._10_c00411{width:14.496000px;}
._e_c00411{width:16.296000px;}
._6_c00411{width:18.060000px;}
._13_c00411{width:22.296000px;}
._12_c00411{width:24.180000px;}
._14_c00411{width:26.016000px;}
.fc2_c00411{color:transparent;}
.fc1_c00411{color:rgb(128,128,128);}
.fc0_c00411{color:rgb(0,0,0);}
.fs4_c00411{font-size:24.000000px;}
.fs6_c00411{font-size:48.000000px;}
.fs3_c00411{font-size:57.000000px;}
.fs2_c00411{font-size:63.000000px;}
.fs5_c00411{font-size:69.000000px;}
.fs1_c00411{font-size:72.000000px;}
.fs0_c00411{font-size:84.000000px;}
.y0_c00411{bottom:0.000000px;}
.y1f_c00411{bottom:3.105000px;}
.y1e_c00411{bottom:7.228357px;}
.y1d_c00411{bottom:45.930000px;}
.y1c_c00411{bottom:69.480000px;}
.y1b_c00411{bottom:93.930000px;}
.y1a_c00411{bottom:119.430000px;}
.y19_c00411{bottom:143.880000px;}
.y18_c00411{bottom:169.380000px;}
.y17_c00411{bottom:194.130000px;}
.y16_c00411{bottom:219.330000px;}
.y15_c00411{bottom:244.980000px;}
.y14_c00411{bottom:271.380000px;}
.y13_c00411{bottom:296.280000px;}
.y12_c00411{bottom:318.930000px;}
.y11_c00411{bottom:343.680000px;}
.y10_c00411{bottom:367.830000px;}
.yf_c00411{bottom:392.280000px;}
.ye_c00411{bottom:418.230000px;}
.yd_c00411{bottom:442.080000px;}
.yc_c00411{bottom:465.780000px;}
.yb_c00411{bottom:490.530000px;}
.ya_c00411{bottom:514.980000px;}
.y9_c00411{bottom:539.430000px;}
.y8_c00411{bottom:562.980000px;}
.y7_c00411{bottom:588.030000px;}
.y6_c00411{bottom:612.630000px;}
.y5_c00411{bottom:638.280000px;}
.y4_c00411{bottom:662.580000px;}
.y3_c00411{bottom:687.480000px;}
.y2_c00411{bottom:712.080000px;}
.y1_c00411{bottom:737.430000px;}
.h5_c00411{height:13.200074px;}
.h6_c00411{height:43.804688px;}
.h1_c00411{height:82.441406px;}
.h4_c00411{height:87.361816px;}
.h2_c00411{height:91.160156px;}
.h3_c00411{height:91.760156px;}
.h0_c00411{height:772.500000px;}
.w2_c00411{width:104.875500px;}
.w0_c00411{width:510.600000px;}
.w1_c00411{width:510.750000px;}
.x0_c00411{left:0.000000px;}
.x4_c00411{left:90.900000px;}
.x3_c00411{left:92.700000px;}
.x2_c00411{left:94.050000px;}
.x5_c00411{left:95.100000px;}
.x6_c00411{left:96.450000px;}
.x8_c00411{left:207.114258px;}
.x1_c00411{left:226.800000px;}
.x7_c00411{left:467.700000px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls1_c00411{letter-spacing:0.000000pt;}
.ls2_c00411{letter-spacing:2.666667pt;}
.ls0_c00411{letter-spacing:3.189333pt;}
.ls3_c00411{letter-spacing:5.333333pt;}
.ls4_c00411{letter-spacing:8.000000pt;}
.ws1_c00411{word-spacing:-14.781333pt;}
.ws2_c00411{word-spacing:0.000000pt;}
.ws0_c00411{word-spacing:2.154667pt;}
._17_c00411{margin-left:-10.410667pt;}
._16_c00411{margin-left:-7.914667pt;}
._d_c00411{margin-left:-6.688000pt;}
._b_c00411{margin-left:-5.098667pt;}
._3_c00411{margin-left:-4.181333pt;}
._c_c00411{margin-left:-3.264000pt;}
._9_c00411{margin-left:-2.368000pt;}
._8_c00411{margin-left:-1.365333pt;}
._1_c00411{width:1.642667pt;}
._2_c00411{width:2.912000pt;}
._0_c00411{width:4.256000pt;}
._15_c00411{width:5.184000pt;}
._4_c00411{width:6.122667pt;}
._a_c00411{width:7.786667pt;}
._f_c00411{width:8.714667pt;}
._5_c00411{width:9.781333pt;}
._7_c00411{width:10.912000pt;}
._11_c00411{width:11.936000pt;}
._10_c00411{width:12.885333pt;}
._e_c00411{width:14.485333pt;}
._6_c00411{width:16.053333pt;}
._13_c00411{width:19.818667pt;}
._12_c00411{width:21.493333pt;}
._14_c00411{width:23.125333pt;}
.fs4_c00411{font-size:21.333333pt;}
.fs6_c00411{font-size:42.666667pt;}
.fs3_c00411{font-size:50.666667pt;}
.fs2_c00411{font-size:56.000000pt;}
.fs5_c00411{font-size:61.333333pt;}
.fs1_c00411{font-size:64.000000pt;}
.fs0_c00411{font-size:74.666667pt;}
.y0_c00411{bottom:0.000000pt;}
.y1f_c00411{bottom:2.760000pt;}
.y1e_c00411{bottom:6.425206pt;}
.y1d_c00411{bottom:40.826667pt;}
.y1c_c00411{bottom:61.760000pt;}
.y1b_c00411{bottom:83.493333pt;}
.y1a_c00411{bottom:106.160000pt;}
.y19_c00411{bottom:127.893333pt;}
.y18_c00411{bottom:150.560000pt;}
.y17_c00411{bottom:172.560000pt;}
.y16_c00411{bottom:194.960000pt;}
.y15_c00411{bottom:217.760000pt;}
.y14_c00411{bottom:241.226667pt;}
.y13_c00411{bottom:263.360000pt;}
.y12_c00411{bottom:283.493333pt;}
.y11_c00411{bottom:305.493333pt;}
.y10_c00411{bottom:326.960000pt;}
.yf_c00411{bottom:348.693333pt;}
.ye_c00411{bottom:371.760000pt;}
.yd_c00411{bottom:392.960000pt;}
.yc_c00411{bottom:414.026667pt;}
.yb_c00411{bottom:436.026667pt;}
.ya_c00411{bottom:457.760000pt;}
.y9_c00411{bottom:479.493333pt;}
.y8_c00411{bottom:500.426667pt;}
.y7_c00411{bottom:522.693333pt;}
.y6_c00411{bottom:544.560000pt;}
.y5_c00411{bottom:567.360000pt;}
.y4_c00411{bottom:588.960000pt;}
.y3_c00411{bottom:611.093333pt;}
.y2_c00411{bottom:632.960000pt;}
.y1_c00411{bottom:655.493333pt;}
.h5_c00411{height:11.733399pt;}
.h6_c00411{height:38.937500pt;}
.h1_c00411{height:73.281250pt;}
.h4_c00411{height:77.654948pt;}
.h2_c00411{height:81.031250pt;}
.h3_c00411{height:81.564583pt;}
.h0_c00411{height:686.666667pt;}
.w2_c00411{width:93.222667pt;}
.w0_c00411{width:453.866667pt;}
.w1_c00411{width:454.000000pt;}
.x0_c00411{left:0.000000pt;}
.x4_c00411{left:80.800000pt;}
.x3_c00411{left:82.400000pt;}
.x2_c00411{left:83.600000pt;}
.x5_c00411{left:84.533333pt;}
.x6_c00411{left:85.733333pt;}
.x8_c00411{left:184.101563pt;}
.x1_c00411{left:201.600000pt;}
.x7_c00411{left:415.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4c6c209f9a945f3868c1b2cc.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00412;src:url('chunks/assets/font_d761a0ec4f125fcbf81cb9d1.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:1.568848;font-style:normal;font-weight:normal;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_5603d1253da75945772f06fc.woff2')format("woff");}.ff3_c00412{font-family:ff3_c00412;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00412;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00412{font-family:ff4_c00412;line-height:1.219238;font-style: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:3.000000px;}
.ls2_c00412{letter-spacing:6.000000px;}
.sc__c00412{text-shadow:none;}
.sc0_c00412{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00412{-webkit-text-stroke:0px transparent;}
.sc0_c00412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00412{word-spacing:-20.352000px;}
.ws1_c00412{word-spacing:0.000000px;}
._17_c00412{margin-left:-27.498000px;}
._19_c00412{margin-left:-26.421000px;}
._18_c00412{margin-left:-21.330000px;}
._8_c00412{margin-left:-11.880000px;}
._b_c00412{margin-left:-10.584000px;}
._15_c00412{margin-left:-9.147000px;}
._a_c00412{margin-left:-7.920000px;}
._2_c00412{margin-left:-6.264000px;}
._9_c00412{margin-left:-5.040000px;}
._c_c00412{margin-left:-3.657000px;}
._f_c00412{margin-left:-2.463000px;}
._e_c00412{margin-left:-1.296000px;}
._d_c00412{width:1.008000px;}
._10_c00412{width:2.046000px;}
._3_c00412{width:3.096000px;}
._12_c00412{width:4.416000px;}
._4_c00412{width:5.688000px;}
._5_c00412{width:7.560000px;}
._11_c00412{width:8.568000px;}
._13_c00412{width:10.368000px;}
._14_c00412{width:11.808000px;}
._1_c00412{width:12.960000px;}
._6_c00412{width:14.400000px;}
._16_c00412{width:15.504000px;}
._0_c00412{width:20.952000px;}
._1a_c00412{width:31.032000px;}
._1b_c00412{width:314.208000px;}
._7_c00412{width:338.376000px;}
.fc2_c00412{color:transparent;}
.fc1_c00412{color:rgb(128,128,128);}
.fc0_c00412{color:rgb(0,0,0);}
.fs2_c00412{font-size:48.000000px;}
.fs1_c00412{font-size:57.000000px;}
.fs0_c00412{font-size:72.000000px;}
.y0_c00412{bottom:0.000000px;}
.y1f_c00412{bottom:3.105000px;}
.y1e_c00412{bottom:7.228355px;}
.y1d_c00412{bottom:46.785000px;}
.y1c_c00412{bottom:71.535000px;}
.y1b_c00412{bottom:96.735000px;}
.y1a_c00412{bottom:125.235000px;}
.y19_c00412{bottom:148.185000px;}
.y18_c00412{bottom:173.685000px;}
.y17_c00412{bottom:196.635000px;}
.y16_c00412{bottom:222.285000px;}
.y15_c00412{bottom:246.735000px;}
.y14_c00412{bottom:268.635000px;}
.y13_c00412{bottom:296.985000px;}
.y12_c00412{bottom:319.635000px;}
.y11_c00412{bottom:342.435000px;}
.y10_c00412{bottom:366.735000px;}
.yf_c00412{bottom:391.185000px;}
.ye_c00412{bottom:415.485000px;}
.yd_c00412{bottom:440.085000px;}
.yc_c00412{bottom:464.685000px;}
.yb_c00412{bottom:489.735000px;}
.ya_c00412{bottom:514.035000px;}
.y9_c00412{bottom:538.935000px;}
.y8_c00412{bottom:563.835000px;}
.y7_c00412{bottom:587.835000px;}
.y6_c00412{bottom:612.585000px;}
.y5_c00412{bottom:637.185000px;}
.y4_c00412{bottom:661.485000px;}
.y3_c00412{bottom:685.785000px;}
.y2_c00412{bottom:710.685000px;}
.y1_c00412{bottom:735.285000px;}
.h3_c00412{height:13.200074px;}
.h4_c00412{height:43.804688px;}
.h2_c00412{height:91.160156px;}
.h0_c00412{height:782.175000px;}
.h1_c00412{height:782.250000px;}
.w2_c00412{width:104.875500px;}
.w1_c00412{width:524.250000px;}
.w0_c00412{width:524.325000px;}
.x0_c00412{left:0.000000px;}
.x6_c00412{left:17.250000px;}
.x4_c00412{left:19.200000px;}
.x3_c00412{left:20.250000px;}
.x2_c00412{left:21.300000px;}
.x5_c00412{left:22.500000px;}
.x7_c00412{left:42.900000px;}
.x1_c00412{left:141.450000px;}
.x8_c00412{left:210.300000px;}
.x9_c00412{left:213.976730px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls1_c00412{letter-spacing:0.000000pt;}
.ls0_c00412{letter-spacing:2.666667pt;}
.ls2_c00412{letter-spacing:5.333333pt;}
.ws0_c00412{word-spacing:-18.090667pt;}
.ws1_c00412{word-spacing:0.000000pt;}
._17_c00412{margin-left:-24.442667pt;}
._19_c00412{margin-left:-23.485333pt;}
._18_c00412{margin-left:-18.960000pt;}
._8_c00412{margin-left:-10.560000pt;}
._b_c00412{margin-left:-9.408000pt;}
._15_c00412{margin-left:-8.130667pt;}
._a_c00412{margin-left:-7.040000pt;}
._2_c00412{margin-left:-5.568000pt;}
._9_c00412{margin-left:-4.480000pt;}
._c_c00412{margin-left:-3.250667pt;}
._f_c00412{margin-left:-2.189333pt;}
._e_c00412{margin-left:-1.152000pt;}
._d_c00412{width:0.896000pt;}
._10_c00412{width:1.818667pt;}
._3_c00412{width:2.752000pt;}
._12_c00412{width:3.925333pt;}
._4_c00412{width:5.056000pt;}
._5_c00412{width:6.720000pt;}
._11_c00412{width:7.616000pt;}
._13_c00412{width:9.216000pt;}
._14_c00412{width:10.496000pt;}
._1_c00412{width:11.520000pt;}
._6_c00412{width:12.800000pt;}
._16_c00412{width:13.781333pt;}
._0_c00412{width:18.624000pt;}
._1a_c00412{width:27.584000pt;}
._1b_c00412{width:279.296000pt;}
._7_c00412{width:300.778667pt;}
.fs2_c00412{font-size:42.666667pt;}
.fs1_c00412{font-size:50.666667pt;}
.fs0_c00412{font-size:64.000000pt;}
.y0_c00412{bottom:0.000000pt;}
.y1f_c00412{bottom:2.760000pt;}
.y1e_c00412{bottom:6.425204pt;}
.y1d_c00412{bottom:41.586667pt;}
.y1c_c00412{bottom:63.586667pt;}
.y1b_c00412{bottom:85.986667pt;}
.y1a_c00412{bottom:111.320000pt;}
.y19_c00412{bottom:131.720000pt;}
.y18_c00412{bottom:154.386667pt;}
.y17_c00412{bottom:174.786667pt;}
.y16_c00412{bottom:197.586667pt;}
.y15_c00412{bottom:219.320000pt;}
.y14_c00412{bottom:238.786667pt;}
.y13_c00412{bottom:263.986667pt;}
.y12_c00412{bottom:284.120000pt;}
.y11_c00412{bottom:304.386667pt;}
.y10_c00412{bottom:325.986667pt;}
.yf_c00412{bottom:347.720000pt;}
.ye_c00412{bottom:369.320000pt;}
.yd_c00412{bottom:391.186667pt;}
.yc_c00412{bottom:413.053333pt;}
.yb_c00412{bottom:435.320000pt;}
.ya_c00412{bottom:456.920000pt;}
.y9_c00412{bottom:479.053333pt;}
.y8_c00412{bottom:501.186667pt;}
.y7_c00412{bottom:522.520000pt;}
.y6_c00412{bottom:544.520000pt;}
.y5_c00412{bottom:566.386667pt;}
.y4_c00412{bottom:587.986667pt;}
.y3_c00412{bottom:609.586667pt;}
.y2_c00412{bottom:631.720000pt;}
.y1_c00412{bottom:653.586667pt;}
.h3_c00412{height:11.733399pt;}
.h4_c00412{height:38.937500pt;}
.h2_c00412{height:81.031250pt;}
.h0_c00412{height:695.266667pt;}
.h1_c00412{height:695.333333pt;}
.w2_c00412{width:93.222667pt;}
.w1_c00412{width:466.000000pt;}
.w0_c00412{width:466.066667pt;}
.x0_c00412{left:0.000000pt;}
.x6_c00412{left:15.333333pt;}
.x4_c00412{left:17.066667pt;}
.x3_c00412{left:18.000000pt;}
.x2_c00412{left:18.933333pt;}
.x5_c00412{left:20.000000pt;}
.x7_c00412{left:38.133333pt;}
.x1_c00412{left:125.733333pt;}
.x8_c00412{left:186.933333pt;}
.x9_c00412{left:190.201538pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0b9291302e7a42d94ea86c38.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00413;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00413;src:url('chunks/assets/font_c42eb84039f870040fd20257.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:1.568848;font-style:normal;font-weight:normal;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_d3bbafe78246033d426721c5.woff2')format("woff");}.ff4_c00413{font-family:ff4_c00413;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00413;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00413{font-family:ff5_c00413;line-height:1.219238;font-style: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:3.000000px;}
.ls3_c00413{letter-spacing:6.000000px;}
.ls0_c00413{letter-spacing:24.750000px;}
.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:-33.192000px;}
.ws2_c00413{word-spacing:-20.352000px;}
.ws3_c00413{word-spacing:0.000000px;}
.ws1_c00413{word-spacing:0.342000px;}
._15_c00413{margin-left:-16.488000px;}
._14_c00413{margin-left:-14.328000px;}
._10_c00413{margin-left:-11.712000px;}
._3_c00413{margin-left:-9.324000px;}
._7_c00413{margin-left:-7.416000px;}
._b_c00413{margin-left:-5.856000px;}
._6_c00413{margin-left:-4.176000px;}
._8_c00413{margin-left:-2.376000px;}
._9_c00413{margin-left:-1.080000px;}
._5_c00413{width:1.944000px;}
._4_c00413{width:3.360000px;}
._1_c00413{width:5.124000px;}
._a_c00413{width:6.180000px;}
._2_c00413{width:7.476000px;}
._0_c00413{width:8.736000px;}
._16_c00413{width:9.840000px;}
._d_c00413{width:11.448000px;}
._c_c00413{width:13.116000px;}
._f_c00413{width:14.892000px;}
._13_c00413{width:16.860000px;}
._12_c00413{width:21.888000px;}
._11_c00413{width:26.208000px;}
._e_c00413{width:63.900000px;}
.fc2_c00413{color:transparent;}
.fc1_c00413{color:rgb(128,128,128);}
.fc0_c00413{color:rgb(0,0,0);}
.fs3_c00413{font-size:48.000000px;}
.fs2_c00413{font-size:57.000000px;}
.fs1_c00413{font-size:72.000000px;}
.fs0_c00413{font-size:84.000000px;}
.y0_c00413{bottom:0.000000px;}
.y1f_c00413{bottom:3.105000px;}
.y1e_c00413{bottom:7.228369px;}
.y1d_c00413{bottom:57.720000px;}
.y1c_c00413{bottom:77.970000px;}
.y1b_c00413{bottom:104.070000px;}
.y1a_c00413{bottom:129.270000px;}
.y19_c00413{bottom:154.470000px;}
.y18_c00413{bottom:178.170000px;}
.y17_c00413{bottom:203.520000px;}
.y16_c00413{bottom:230.070000px;}
.y15_c00413{bottom:254.070000px;}
.y14_c00413{bottom:278.670000px;}
.y13_c00413{bottom:303.420000px;}
.y12_c00413{bottom:328.620000px;}
.y11_c00413{bottom:352.470000px;}
.y10_c00413{bottom:377.220000px;}
.yf_c00413{bottom:401.970000px;}
.ye_c00413{bottom:426.270000px;}
.yd_c00413{bottom:450.870000px;}
.yc_c00413{bottom:474.570000px;}
.yb_c00413{bottom:499.170000px;}
.ya_c00413{bottom:524.070000px;}
.y9_c00413{bottom:548.370000px;}
.y8_c00413{bottom:572.670000px;}
.y7_c00413{bottom:596.670000px;}
.y6_c00413{bottom:622.620000px;}
.y5_c00413{bottom:646.320000px;}
.y4_c00413{bottom:671.220000px;}
.y3_c00413{bottom:695.820000px;}
.y2_c00413{bottom:720.570000px;}
.y1_c00413{bottom:745.770000px;}
.h6_c00413{height:13.200073px;}
.h7_c00413{height:43.804688px;}
.h5_c00413{height:72.168457px;}
.h2_c00413{height:82.441406px;}
.h3_c00413{height:91.160156px;}
.h4_c00413{height:91.760156px;}
.h1_c00413{height:792.000000px;}
.h0_c00413{height:792.150000px;}
.w2_c00413{width:104.875500px;}
.w1_c00413{width:504.000000px;}
.w0_c00413{width:504.075000px;}
.x0_c00413{left:0.000000px;}
.x6_c00413{left:19.350000px;}
.x5_c00413{left:61.500000px;}
.x2_c00413{left:96.150000px;}
.x3_c00413{left:97.500000px;}
.x4_c00413{left:99.000000px;}
.x7_c00413{left:100.800000px;}
.x9_c00413{left:203.851730px;}
.x1_c00413{left:221.400000px;}
.x8_c00413{left:460.350000px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls1_c00413{letter-spacing:0.000000pt;}
.ls2_c00413{letter-spacing:2.666667pt;}
.ls3_c00413{letter-spacing:5.333333pt;}
.ls0_c00413{letter-spacing:22.000000pt;}
.ws0_c00413{word-spacing:-29.504000pt;}
.ws2_c00413{word-spacing:-18.090667pt;}
.ws3_c00413{word-spacing:0.000000pt;}
.ws1_c00413{word-spacing:0.304000pt;}
._15_c00413{margin-left:-14.656000pt;}
._14_c00413{margin-left:-12.736000pt;}
._10_c00413{margin-left:-10.410667pt;}
._3_c00413{margin-left:-8.288000pt;}
._7_c00413{margin-left:-6.592000pt;}
._b_c00413{margin-left:-5.205333pt;}
._6_c00413{margin-left:-3.712000pt;}
._8_c00413{margin-left:-2.112000pt;}
._9_c00413{margin-left:-0.960000pt;}
._5_c00413{width:1.728000pt;}
._4_c00413{width:2.986667pt;}
._1_c00413{width:4.554667pt;}
._a_c00413{width:5.493333pt;}
._2_c00413{width:6.645333pt;}
._0_c00413{width:7.765333pt;}
._16_c00413{width:8.746667pt;}
._d_c00413{width:10.176000pt;}
._c_c00413{width:11.658667pt;}
._f_c00413{width:13.237333pt;}
._13_c00413{width:14.986667pt;}
._12_c00413{width:19.456000pt;}
._11_c00413{width:23.296000pt;}
._e_c00413{width:56.800000pt;}
.fs3_c00413{font-size:42.666667pt;}
.fs2_c00413{font-size:50.666667pt;}
.fs1_c00413{font-size:64.000000pt;}
.fs0_c00413{font-size:74.666667pt;}
.y0_c00413{bottom:0.000000pt;}
.y1f_c00413{bottom:2.760000pt;}
.y1e_c00413{bottom:6.425217pt;}
.y1d_c00413{bottom:51.306667pt;}
.y1c_c00413{bottom:69.306667pt;}
.y1b_c00413{bottom:92.506667pt;}
.y1a_c00413{bottom:114.906667pt;}
.y19_c00413{bottom:137.306667pt;}
.y18_c00413{bottom:158.373333pt;}
.y17_c00413{bottom:180.906667pt;}
.y16_c00413{bottom:204.506667pt;}
.y15_c00413{bottom:225.840000pt;}
.y14_c00413{bottom:247.706667pt;}
.y13_c00413{bottom:269.706667pt;}
.y12_c00413{bottom:292.106667pt;}
.y11_c00413{bottom:313.306667pt;}
.y10_c00413{bottom:335.306667pt;}
.yf_c00413{bottom:357.306667pt;}
.ye_c00413{bottom:378.906667pt;}
.yd_c00413{bottom:400.773333pt;}
.yc_c00413{bottom:421.840000pt;}
.yb_c00413{bottom:443.706667pt;}
.ya_c00413{bottom:465.840000pt;}
.y9_c00413{bottom:487.440000pt;}
.y8_c00413{bottom:509.040000pt;}
.y7_c00413{bottom:530.373333pt;}
.y6_c00413{bottom:553.440000pt;}
.y5_c00413{bottom:574.506667pt;}
.y4_c00413{bottom:596.640000pt;}
.y3_c00413{bottom:618.506667pt;}
.y2_c00413{bottom:640.506667pt;}
.y1_c00413{bottom:662.906667pt;}
.h6_c00413{height:11.733399pt;}
.h7_c00413{height:38.937500pt;}
.h5_c00413{height:64.149740pt;}
.h2_c00413{height:73.281250pt;}
.h3_c00413{height:81.031250pt;}
.h4_c00413{height:81.564583pt;}
.h1_c00413{height:704.000000pt;}
.h0_c00413{height:704.133333pt;}
.w2_c00413{width:93.222667pt;}
.w1_c00413{width:448.000000pt;}
.w0_c00413{width:448.066667pt;}
.x0_c00413{left:0.000000pt;}
.x6_c00413{left:17.200000pt;}
.x5_c00413{left:54.666667pt;}
.x2_c00413{left:85.466667pt;}
.x3_c00413{left:86.666667pt;}
.x4_c00413{left:88.000000pt;}
.x7_c00413{left:89.600000pt;}
.x9_c00413{left:181.201538pt;}
.x1_c00413{left:196.800000pt;}
.x8_c00413{left:409.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_31d86a29e6ced513dd3e302e.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.480469;font-style:normal;font-weight:normal;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_7a41f5e21a8f7f1226126701.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00414{font-family:ff3_c00414;line-height:1.219238;font-style: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;}
.ls0_c00414{letter-spacing:-3.000000px;}
.ls2_c00414{letter-spacing:0.000000px;}
.ls1_c00414{letter-spacing:3.000000px;}
.sc__c00414{text-shadow:none;}
.sc0_c00414{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00414{-webkit-text-stroke:0px transparent;}
.sc0_c00414{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00414{word-spacing:0.000000px;}
._13_c00414{margin-left:-6.387000px;}
._d_c00414{margin-left:-5.211000px;}
._c_c00414{margin-left:-3.942000px;}
._b_c00414{margin-left:-2.745000px;}
._6_c00414{margin-left:-1.518000px;}
._a_c00414{width:1.104000px;}
._2_c00414{width:2.262000px;}
._3_c00414{width:4.176000px;}
._1_c00414{width:5.394000px;}
._9_c00414{width:7.302000px;}
._0_c00414{width:8.961000px;}
._f_c00414{width:10.041000px;}
._e_c00414{width:11.217000px;}
._8_c00414{width:12.417000px;}
._5_c00414{width:13.746000px;}
._10_c00414{width:14.778000px;}
._7_c00414{width:16.077000px;}
._12_c00414{width:25.116000px;}
._11_c00414{width:33.948000px;}
._14_c00414{width:315.243000px;}
._4_c00414{width:338.952000px;}
.fc2_c00414{color:transparent;}
.fc1_c00414{color:rgb(128,128,128);}
.fc0_c00414{color:rgb(0,0,0);}
.fs2_c00414{font-size:48.000000px;}
.fs1_c00414{font-size:69.000000px;}
.fs0_c00414{font-size:87.000000px;}
.y0_c00414{bottom:0.000000px;}
.y1f_c00414{bottom:3.105000px;}
.y1e_c00414{bottom:7.228363px;}
.y1d_c00414{bottom:52.350000px;}
.y1c_c00414{bottom:77.700000px;}
.y1b_c00414{bottom:104.400000px;}
.y1a_c00414{bottom:129.600000px;}
.y19_c00414{bottom:154.950000px;}
.y18_c00414{bottom:178.200000px;}
.y17_c00414{bottom:203.850000px;}
.y16_c00414{bottom:227.850000px;}
.y15_c00414{bottom:249.150000px;}
.y14_c00414{bottom:278.400000px;}
.y13_c00414{bottom:302.400000px;}
.y12_c00414{bottom:325.650000px;}
.y11_c00414{bottom:348.750000px;}
.y10_c00414{bottom:372.600000px;}
.yf_c00414{bottom:397.950000px;}
.ye_c00414{bottom:422.550000px;}
.yd_c00414{bottom:446.850000px;}
.yc_c00414{bottom:471.450000px;}
.yb_c00414{bottom:496.500000px;}
.ya_c00414{bottom:521.400000px;}
.y9_c00414{bottom:545.400000px;}
.y8_c00414{bottom:570.000000px;}
.y7_c00414{bottom:594.300000px;}
.y6_c00414{bottom:619.950000px;}
.y5_c00414{bottom:643.650000px;}
.y4_c00414{bottom:668.250000px;}
.y3_c00414{bottom:693.000000px;}
.y2_c00414{bottom:718.500000px;}
.y1_c00414{bottom:742.800000px;}
.h3_c00414{height:13.200074px;}
.h4_c00414{height:43.804688px;}
.h2_c00414{height:87.361816px;}
.h1_c00414{height:101.825684px;}
.h0_c00414{height:789.750000px;}
.w2_c00414{width:104.875500px;}
.w1_c00414{width:528.000000px;}
.w0_c00414{width:528.150000px;}
.x0_c00414{left:0.000000px;}
.x5_c00414{left:27.750000px;}
.x6_c00414{left:28.950000px;}
.x4_c00414{left:30.000000px;}
.x2_c00414{left:31.500000px;}
.x3_c00414{left:32.700000px;}
.x1_c00414{left:153.600000px;}
.x8_c00414{left:215.889267px;}
.x7_c00414{left:225.750000px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls0_c00414{letter-spacing:-2.666667pt;}
.ls2_c00414{letter-spacing:0.000000pt;}
.ls1_c00414{letter-spacing:2.666667pt;}
.ws0_c00414{word-spacing:0.000000pt;}
._13_c00414{margin-left:-5.677333pt;}
._d_c00414{margin-left:-4.632000pt;}
._c_c00414{margin-left:-3.504000pt;}
._b_c00414{margin-left:-2.440000pt;}
._6_c00414{margin-left:-1.349333pt;}
._a_c00414{width:0.981333pt;}
._2_c00414{width:2.010667pt;}
._3_c00414{width:3.712000pt;}
._1_c00414{width:4.794667pt;}
._9_c00414{width:6.490667pt;}
._0_c00414{width:7.965333pt;}
._f_c00414{width:8.925333pt;}
._e_c00414{width:9.970667pt;}
._8_c00414{width:11.037333pt;}
._5_c00414{width:12.218667pt;}
._10_c00414{width:13.136000pt;}
._7_c00414{width:14.290667pt;}
._12_c00414{width:22.325333pt;}
._11_c00414{width:30.176000pt;}
._14_c00414{width:280.216000pt;}
._4_c00414{width:301.290667pt;}
.fs2_c00414{font-size:42.666667pt;}
.fs1_c00414{font-size:61.333333pt;}
.fs0_c00414{font-size:77.333333pt;}
.y0_c00414{bottom:0.000000pt;}
.y1f_c00414{bottom:2.760000pt;}
.y1e_c00414{bottom:6.425212pt;}
.y1d_c00414{bottom:46.533333pt;}
.y1c_c00414{bottom:69.066667pt;}
.y1b_c00414{bottom:92.800000pt;}
.y1a_c00414{bottom:115.200000pt;}
.y19_c00414{bottom:137.733333pt;}
.y18_c00414{bottom:158.400000pt;}
.y17_c00414{bottom:181.200000pt;}
.y16_c00414{bottom:202.533333pt;}
.y15_c00414{bottom:221.466667pt;}
.y14_c00414{bottom:247.466667pt;}
.y13_c00414{bottom:268.800000pt;}
.y12_c00414{bottom:289.466667pt;}
.y11_c00414{bottom:310.000000pt;}
.y10_c00414{bottom:331.200000pt;}
.yf_c00414{bottom:353.733333pt;}
.ye_c00414{bottom:375.600000pt;}
.yd_c00414{bottom:397.200000pt;}
.yc_c00414{bottom:419.066667pt;}
.yb_c00414{bottom:441.333333pt;}
.ya_c00414{bottom:463.466667pt;}
.y9_c00414{bottom:484.800000pt;}
.y8_c00414{bottom:506.666667pt;}
.y7_c00414{bottom:528.266667pt;}
.y6_c00414{bottom:551.066667pt;}
.y5_c00414{bottom:572.133333pt;}
.y4_c00414{bottom:594.000000pt;}
.y3_c00414{bottom:616.000000pt;}
.y2_c00414{bottom:638.666667pt;}
.y1_c00414{bottom:660.266667pt;}
.h3_c00414{height:11.733399pt;}
.h4_c00414{height:38.937500pt;}
.h2_c00414{height:77.654948pt;}
.h1_c00414{height:90.511719pt;}
.h0_c00414{height:702.000000pt;}
.w2_c00414{width:93.222667pt;}
.w1_c00414{width:469.333333pt;}
.w0_c00414{width:469.466667pt;}
.x0_c00414{left:0.000000pt;}
.x5_c00414{left:24.666667pt;}
.x6_c00414{left:25.733333pt;}
.x4_c00414{left:26.666667pt;}
.x2_c00414{left:28.000000pt;}
.x3_c00414{left:29.066667pt;}
.x1_c00414{left:136.533333pt;}
.x8_c00414{left:191.901571pt;}
.x7_c00414{left:200.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_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_91d84963079aec5298abd8fc.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.480469;font-style:normal;font-weight:normal;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_fa3892e274fa46def65a6c39.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00415{font-family:ff3_c00415;line-height:1.219238;font-style: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;}
.ls1_c00415{letter-spacing:0.000000px;}
.ls2_c00415{letter-spacing:3.000000px;}
.ls0_c00415{letter-spacing:6.720000px;}
.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:-33.192000px;}
.ws1_c00415{word-spacing:0.000000px;}
._c_c00415{margin-left:-12.312000px;}
._e_c00415{margin-left:-8.712000px;}
._d_c00415{margin-left:-7.704000px;}
._9_c00415{margin-left:-5.832000px;}
._a_c00415{margin-left:-3.960000px;}
._6_c00415{margin-left:-2.232000px;}
._b_c00415{margin-left:-1.152000px;}
._7_c00415{width:1.656000px;}
._8_c00415{width:3.096000px;}
._1_c00415{width:4.104000px;}
._4_c00415{width:5.256000px;}
._3_c00415{width:6.696000px;}
._2_c00415{width:8.280000px;}
._12_c00415{width:10.152000px;}
._0_c00415{width:11.160000px;}
._5_c00415{width:12.312000px;}
._10_c00415{width:21.360000px;}
._11_c00415{width:24.504000px;}
._f_c00415{width:27.360000px;}
.fc2_c00415{color:transparent;}
.fc1_c00415{color:rgb(128,128,128);}
.fc0_c00415{color:rgb(0,0,0);}
.fs2_c00415{font-size:24.000000px;}
.fs3_c00415{font-size:48.000000px;}
.fs1_c00415{font-size:57.000000px;}
.fs0_c00415{font-size:72.000000px;}
.y0_c00415{bottom:0.000000px;}
.y1e_c00415{bottom:3.105000px;}
.y1d_c00415{bottom:7.228363px;}
.y1c_c00415{bottom:77.250000px;}
.y1b_c00415{bottom:102.900000px;}
.y1a_c00415{bottom:127.950000px;}
.y19_c00415{bottom:152.250000px;}
.y18_c00415{bottom:178.200000px;}
.y17_c00415{bottom:202.050000px;}
.y16_c00415{bottom:227.850000px;}
.y15_c00415{bottom:252.750000px;}
.y14_c00415{bottom:276.300000px;}
.y13_c00415{bottom:302.700000px;}
.y12_c00415{bottom:325.950000px;}
.y11_c00415{bottom:349.950000px;}
.y10_c00415{bottom:376.350000px;}
.yf_c00415{bottom:399.150000px;}
.ye_c00415{bottom:424.200000px;}
.yd_c00415{bottom:447.900000px;}
.yc_c00415{bottom:473.100000px;}
.yb_c00415{bottom:496.500000px;}
.ya_c00415{bottom:520.800000px;}
.y9_c00415{bottom:545.700000px;}
.y8_c00415{bottom:569.400000px;}
.y7_c00415{bottom:594.600000px;}
.y6_c00415{bottom:619.350000px;}
.y5_c00415{bottom:644.250000px;}
.y4_c00415{bottom:668.550000px;}
.y3_c00415{bottom:693.600000px;}
.y2_c00415{bottom:717.750000px;}
.y1_c00415{bottom:743.250000px;}
.h3_c00415{height:13.200074px;}
.h4_c00415{height:43.804688px;}
.h2_c00415{height:91.160156px;}
.h1_c00415{height:788.250000px;}
.h0_c00415{height:788.400000px;}
.w2_c00415{width:104.875500px;}
.w0_c00415{width:505.425000px;}
.w1_c00415{width:505.500000px;}
.x0_c00415{left:0.000000px;}
.x3_c00415{left:88.800000px;}
.x2_c00415{left:89.850000px;}
.x4_c00415{left:91.050000px;}
.x5_c00415{left:92.100000px;}
.x6_c00415{left:93.150000px;}
.x7_c00415{left:94.800000px;}
.x8_c00415{left:204.526749px;}
.x1_c00415{left:218.100000px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls1_c00415{letter-spacing:0.000000pt;}
.ls2_c00415{letter-spacing:2.666667pt;}
.ls0_c00415{letter-spacing:5.973333pt;}
.ws0_c00415{word-spacing:-29.504000pt;}
.ws1_c00415{word-spacing:0.000000pt;}
._c_c00415{margin-left:-10.944000pt;}
._e_c00415{margin-left:-7.744000pt;}
._d_c00415{margin-left:-6.848000pt;}
._9_c00415{margin-left:-5.184000pt;}
._a_c00415{margin-left:-3.520000pt;}
._6_c00415{margin-left:-1.984000pt;}
._b_c00415{margin-left:-1.024000pt;}
._7_c00415{width:1.472000pt;}
._8_c00415{width:2.752000pt;}
._1_c00415{width:3.648000pt;}
._4_c00415{width:4.672000pt;}
._3_c00415{width:5.952000pt;}
._2_c00415{width:7.360000pt;}
._12_c00415{width:9.024000pt;}
._0_c00415{width:9.920000pt;}
._5_c00415{width:10.944000pt;}
._10_c00415{width:18.986667pt;}
._11_c00415{width:21.781333pt;}
._f_c00415{width:24.320000pt;}
.fs2_c00415{font-size:21.333333pt;}
.fs3_c00415{font-size:42.666667pt;}
.fs1_c00415{font-size:50.666667pt;}
.fs0_c00415{font-size:64.000000pt;}
.y0_c00415{bottom:0.000000pt;}
.y1e_c00415{bottom:2.760000pt;}
.y1d_c00415{bottom:6.425212pt;}
.y1c_c00415{bottom:68.666667pt;}
.y1b_c00415{bottom:91.466667pt;}
.y1a_c00415{bottom:113.733333pt;}
.y19_c00415{bottom:135.333333pt;}
.y18_c00415{bottom:158.400000pt;}
.y17_c00415{bottom:179.600000pt;}
.y16_c00415{bottom:202.533333pt;}
.y15_c00415{bottom:224.666667pt;}
.y14_c00415{bottom:245.600000pt;}
.y13_c00415{bottom:269.066667pt;}
.y12_c00415{bottom:289.733333pt;}
.y11_c00415{bottom:311.066667pt;}
.y10_c00415{bottom:334.533333pt;}
.yf_c00415{bottom:354.800000pt;}
.ye_c00415{bottom:377.066667pt;}
.yd_c00415{bottom:398.133333pt;}
.yc_c00415{bottom:420.533333pt;}
.yb_c00415{bottom:441.333333pt;}
.ya_c00415{bottom:462.933333pt;}
.y9_c00415{bottom:485.066667pt;}
.y8_c00415{bottom:506.133333pt;}
.y7_c00415{bottom:528.533333pt;}
.y6_c00415{bottom:550.533333pt;}
.y5_c00415{bottom:572.666667pt;}
.y4_c00415{bottom:594.266667pt;}
.y3_c00415{bottom:616.533333pt;}
.y2_c00415{bottom:638.000000pt;}
.y1_c00415{bottom:660.666667pt;}
.h3_c00415{height:11.733399pt;}
.h4_c00415{height:38.937500pt;}
.h2_c00415{height:81.031250pt;}
.h1_c00415{height:700.666667pt;}
.h0_c00415{height:700.800000pt;}
.w2_c00415{width:93.222667pt;}
.w0_c00415{width:449.266667pt;}
.w1_c00415{width:449.333333pt;}
.x0_c00415{left:0.000000pt;}
.x3_c00415{left:78.933333pt;}
.x2_c00415{left:79.866667pt;}
.x4_c00415{left:80.933333pt;}
.x5_c00415{left:81.866667pt;}
.x6_c00415{left:82.800000pt;}
.x7_c00415{left:84.266667pt;}
.x8_c00415{left:181.801554pt;}
.x1_c00415{left:193.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5672cc2657bbc22e865cce9c.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.480469;font-style:normal;font-weight:normal;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_11b0f520f4f12e75d1f2a2a2.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:1.568848;font-style:normal;font-weight:normal;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_7f7fea5d0dde06b911b60e99.woff2')format("woff");}.ff3_c00416{font-family:ff3_c00416;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00416{font-family:ff4_c00416;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00416{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00416{vertical-align:0.000000px;}
.ls3_c00416{letter-spacing:-12.000000px;}
.ls1_c00416{letter-spacing:0.000000px;}
.ls2_c00416{letter-spacing:3.000000px;}
.ls0_c00416{letter-spacing:5.400000px;}
.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:-18.051000px;}
.ws1_c00416{word-spacing:-17.352000px;}
.ws2_c00416{word-spacing:0.000000px;}
._f_c00416{margin-left:-8.712000px;}
._e_c00416{margin-left:-7.632000px;}
._d_c00416{margin-left:-6.336000px;}
._a_c00416{margin-left:-5.040000px;}
._b_c00416{margin-left:-3.600000px;}
._2_c00416{margin-left:-2.304000px;}
._9_c00416{margin-left:-1.296000px;}
._c_c00416{width:1.584000px;}
._3_c00416{width:3.168000px;}
._5_c00416{width:4.176000px;}
._4_c00416{width:6.120000px;}
._8_c00416{width:7.488000px;}
._7_c00416{width:8.640000px;}
._11_c00416{width:9.726000px;}
._1_c00416{width:11.304000px;}
._10_c00416{width:12.744000px;}
._0_c00416{width:18.360000px;}
._12_c00416{width:25.848000px;}
._13_c00416{width:308.592000px;}
._6_c00416{width:383.976000px;}
.fc2_c00416{color:transparent;}
.fc1_c00416{color:rgb(128,128,128);}
.fc0_c00416{color:rgb(0,0,0);}
.fs4_c00416{font-size:48.000000px;}
.fs3_c00416{font-size:60.000000px;}
.fs1_c00416{font-size:63.000000px;}
.fs2_c00416{font-size:69.000000px;}
.fs0_c00416{font-size:72.000000px;}
.y0_c00416{bottom:0.000000px;}
.y1f_c00416{bottom:3.105000px;}
.y1e_c00416{bottom:7.228371px;}
.y1d_c00416{bottom:63.165000px;}
.y1c_c00416{bottom:87.465000px;}
.y1b_c00416{bottom:113.865000px;}
.y1a_c00416{bottom:136.365000px;}
.y19_c00416{bottom:165.015000px;}
.y18_c00416{bottom:189.765000px;}
.y17_c00416{bottom:214.665000px;}
.y16_c00416{bottom:238.665000px;}
.y15_c00416{bottom:262.965000px;}
.y14_c00416{bottom:285.915000px;}
.y13_c00416{bottom:312.165000px;}
.y12_c00416{bottom:335.865000px;}
.y11_c00416{bottom:358.815000px;}
.y10_c00416{bottom:383.115000px;}
.yf_c00416{bottom:407.115000px;}
.ye_c00416{bottom:432.465000px;}
.yd_c00416{bottom:458.415000px;}
.yc_c00416{bottom:481.365000px;}
.yb_c00416{bottom:506.565000px;}
.ya_c00416{bottom:530.265000px;}
.y9_c00416{bottom:555.165000px;}
.y8_c00416{bottom:580.215000px;}
.y7_c00416{bottom:603.915000px;}
.y6_c00416{bottom:631.815000px;}
.y5_c00416{bottom:653.865000px;}
.y4_c00416{bottom:678.465000px;}
.y3_c00416{bottom:703.065000px;}
.y2_c00416{bottom:727.365000px;}
.y1_c00416{bottom:752.265000px;}
.h5_c00416{height:13.200074px;}
.h6_c00416{height:43.804688px;}
.h2_c00416{height:84.269531px;}
.h4_c00416{height:87.361816px;}
.h3_c00416{height:91.160156px;}
.h0_c00416{height:794.625000px;}
.h1_c00416{height:795.000000px;}
.w2_c00416{width:104.875500px;}
.w1_c00416{width:522.750000px;}
.w0_c00416{width:522.975000px;}
.x0_c00416{left:0.000000px;}
.x2_c00416{left:34.800000px;}
.x3_c00416{left:36.000000px;}
.x4_c00416{left:37.350000px;}
.x5_c00416{left:39.150000px;}
.x6_c00416{left:41.400000px;}
.x7_c00416{left:42.750000px;}
.x1_c00416{left:142.050000px;}
.x9_c00416{left:213.301758px;}
.x8_c00416{left:244.800000px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls3_c00416{letter-spacing:-10.666667pt;}
.ls1_c00416{letter-spacing:0.000000pt;}
.ls2_c00416{letter-spacing:2.666667pt;}
.ls0_c00416{letter-spacing:4.800000pt;}
.ws0_c00416{word-spacing:-16.045333pt;}
.ws1_c00416{word-spacing:-15.424000pt;}
.ws2_c00416{word-spacing:0.000000pt;}
._f_c00416{margin-left:-7.744000pt;}
._e_c00416{margin-left:-6.784000pt;}
._d_c00416{margin-left:-5.632000pt;}
._a_c00416{margin-left:-4.480000pt;}
._b_c00416{margin-left:-3.200000pt;}
._2_c00416{margin-left:-2.048000pt;}
._9_c00416{margin-left:-1.152000pt;}
._c_c00416{width:1.408000pt;}
._3_c00416{width:2.816000pt;}
._5_c00416{width:3.712000pt;}
._4_c00416{width:5.440000pt;}
._8_c00416{width:6.656000pt;}
._7_c00416{width:7.680000pt;}
._11_c00416{width:8.645333pt;}
._1_c00416{width:10.048000pt;}
._10_c00416{width:11.328000pt;}
._0_c00416{width:16.320000pt;}
._12_c00416{width:22.976000pt;}
._13_c00416{width:274.304000pt;}
._6_c00416{width:341.312000pt;}
.fs4_c00416{font-size:42.666667pt;}
.fs3_c00416{font-size:53.333333pt;}
.fs1_c00416{font-size:56.000000pt;}
.fs2_c00416{font-size:61.333333pt;}
.fs0_c00416{font-size:64.000000pt;}
.y0_c00416{bottom:0.000000pt;}
.y1f_c00416{bottom:2.760000pt;}
.y1e_c00416{bottom:6.425219pt;}
.y1d_c00416{bottom:56.146667pt;}
.y1c_c00416{bottom:77.746667pt;}
.y1b_c00416{bottom:101.213333pt;}
.y1a_c00416{bottom:121.213333pt;}
.y19_c00416{bottom:146.680000pt;}
.y18_c00416{bottom:168.680000pt;}
.y17_c00416{bottom:190.813333pt;}
.y16_c00416{bottom:212.146667pt;}
.y15_c00416{bottom:233.746667pt;}
.y14_c00416{bottom:254.146667pt;}
.y13_c00416{bottom:277.480000pt;}
.y12_c00416{bottom:298.546667pt;}
.y11_c00416{bottom:318.946667pt;}
.y10_c00416{bottom:340.546667pt;}
.yf_c00416{bottom:361.880000pt;}
.ye_c00416{bottom:384.413333pt;}
.yd_c00416{bottom:407.480000pt;}
.yc_c00416{bottom:427.880000pt;}
.yb_c00416{bottom:450.280000pt;}
.ya_c00416{bottom:471.346667pt;}
.y9_c00416{bottom:493.480000pt;}
.y8_c00416{bottom:515.746667pt;}
.y7_c00416{bottom:536.813333pt;}
.y6_c00416{bottom:561.613333pt;}
.y5_c00416{bottom:581.213333pt;}
.y4_c00416{bottom:603.080000pt;}
.y3_c00416{bottom:624.946667pt;}
.y2_c00416{bottom:646.546667pt;}
.y1_c00416{bottom:668.680000pt;}
.h5_c00416{height:11.733399pt;}
.h6_c00416{height:38.937500pt;}
.h2_c00416{height:74.906250pt;}
.h4_c00416{height:77.654948pt;}
.h3_c00416{height:81.031250pt;}
.h0_c00416{height:706.333333pt;}
.h1_c00416{height:706.666667pt;}
.w2_c00416{width:93.222667pt;}
.w1_c00416{width:464.666667pt;}
.w0_c00416{width:464.866667pt;}
.x0_c00416{left:0.000000pt;}
.x2_c00416{left:30.933333pt;}
.x3_c00416{left:32.000000pt;}
.x4_c00416{left:33.200000pt;}
.x5_c00416{left:34.800000pt;}
.x6_c00416{left:36.800000pt;}
.x7_c00416{left:38.000000pt;}
.x1_c00416{left:126.266667pt;}
.x9_c00416{left:189.601563pt;}
.x8_c00416{left:217.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0277f47437fc3ca24a909e52.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.480469;font-style:normal;font-weight:normal;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_852eae9d85b62ecb2863e5cb.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:1.568848;font-style:normal;font-weight:normal;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_cf4f34ca08bea49d788d82ff.woff2')format("woff");}.ff3_c00417{font-family:ff3_c00417;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00417;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00417{font-family:ff4_c00417;line-height:1.219238;font-style: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;}
.ls2_c00417{letter-spacing:-6.000000px;}
.ls3_c00417{letter-spacing:0.000000px;}
.ls1_c00417{letter-spacing:3.000000px;}
.ls0_c00417{letter-spacing:21.264000px;}
.sc__c00417{text-shadow:none;}
.sc0_c00417{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00417{-webkit-text-stroke:0px transparent;}
.sc0_c00417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00417{word-spacing:-19.629000px;}
.ws0_c00417{word-spacing:-17.352000px;}
.ws2_c00417{word-spacing:0.000000px;}
._11_c00417{margin-left:-9.864000px;}
._2_c00417{margin-left:-8.448000px;}
._c_c00417{margin-left:-7.128000px;}
._6_c00417{margin-left:-5.712000px;}
._4_c00417{margin-left:-4.152000px;}
._7_c00417{margin-left:-2.376000px;}
._5_c00417{margin-left:-1.152000px;}
._3_c00417{width:1.008000px;}
._1_c00417{width:2.112000px;}
._a_c00417{width:3.144000px;}
._0_c00417{width:4.224000px;}
._9_c00417{width:5.544000px;}
._8_c00417{width:7.152000px;}
._d_c00417{width:8.976000px;}
._e_c00417{width:10.056000px;}
._f_c00417{width:11.472000px;}
._b_c00417{width:12.864000px;}
._13_c00417{width:14.112000px;}
._12_c00417{width:15.552000px;}
._10_c00417{width:17.520000px;}
._14_c00417{width:18.888000px;}
.fc2_c00417{color:transparent;}
.fc1_c00417{color:rgb(128,128,128);}
.fc0_c00417{color:rgb(0,0,0);}
.fs6_c00417{font-size:48.000000px;}
.fs2_c00417{font-size:57.000000px;}
.fs4_c00417{font-size:63.000000px;}
.fs5_c00417{font-size:69.000000px;}
.fs1_c00417{font-size:72.000000px;}
.fs3_c00417{font-size:87.000000px;}
.fs0_c00417{font-size:96.000000px;}
.y0_c00417{bottom:0.000000px;}
.y1f_c00417{bottom:3.105000px;}
.y1e_c00417{bottom:7.228363px;}
.y1d_c00417{bottom:52.350000px;}
.y1c_c00417{bottom:73.200000px;}
.y1b_c00417{bottom:99.900000px;}
.y1a_c00417{bottom:124.200000px;}
.y19_c00417{bottom:149.850000px;}
.y18_c00417{bottom:174.750000px;}
.y17_c00417{bottom:200.250000px;}
.y16_c00417{bottom:224.700000px;}
.y15_c00417{bottom:250.050000px;}
.y14_c00417{bottom:277.050000px;}
.y13_c00417{bottom:300.000000px;}
.y12_c00417{bottom:323.400000px;}
.y11_c00417{bottom:347.700000px;}
.y10_c00417{bottom:372.600000px;}
.yf_c00417{bottom:397.650000px;}
.ye_c00417{bottom:422.100000px;}
.yd_c00417{bottom:446.100000px;}
.yc_c00417{bottom:470.850000px;}
.yb_c00417{bottom:495.750000px;}
.ya_c00417{bottom:519.450000px;}
.y9_c00417{bottom:544.500000px;}
.y8_c00417{bottom:568.650000px;}
.y7_c00417{bottom:593.700000px;}
.y6_c00417{bottom:618.300000px;}
.y5_c00417{bottom:642.900000px;}
.y4_c00417{bottom:667.950000px;}
.y3_c00417{bottom:692.550000px;}
.y2_c00417{bottom:717.150000px;}
.y1_c00417{bottom:742.500000px;}
.h5_c00417{height:13.200074px;}
.h6_c00417{height:43.804688px;}
.h4_c00417{height:87.361816px;}
.h2_c00417{height:91.160156px;}
.h3_c00417{height:110.151855px;}
.h1_c00417{height:121.546875px;}
.h0_c00417{height:783.000000px;}
.w1_c00417{width:104.875500px;}
.w0_c00417{width:519.750000px;}
.x0_c00417{left:0.000000px;}
.x2_c00417{left:92.700000px;}
.x3_c00417{left:95.100000px;}
.x4_c00417{left:96.450000px;}
.x5_c00417{left:97.500000px;}
.x6_c00417{left:98.550000px;}
.x8_c00417{left:211.689240px;}
.x1_c00417{left:219.000000px;}
.x7_c00417{left:449.100000px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls2_c00417{letter-spacing:-5.333333pt;}
.ls3_c00417{letter-spacing:0.000000pt;}
.ls1_c00417{letter-spacing:2.666667pt;}
.ls0_c00417{letter-spacing:18.901333pt;}
.ws1_c00417{word-spacing:-17.448000pt;}
.ws0_c00417{word-spacing:-15.424000pt;}
.ws2_c00417{word-spacing:0.000000pt;}
._11_c00417{margin-left:-8.768000pt;}
._2_c00417{margin-left:-7.509333pt;}
._c_c00417{margin-left:-6.336000pt;}
._6_c00417{margin-left:-5.077333pt;}
._4_c00417{margin-left:-3.690667pt;}
._7_c00417{margin-left:-2.112000pt;}
._5_c00417{margin-left:-1.024000pt;}
._3_c00417{width:0.896000pt;}
._1_c00417{width:1.877333pt;}
._a_c00417{width:2.794667pt;}
._0_c00417{width:3.754667pt;}
._9_c00417{width:4.928000pt;}
._8_c00417{width:6.357333pt;}
._d_c00417{width:7.978667pt;}
._e_c00417{width:8.938667pt;}
._f_c00417{width:10.197333pt;}
._b_c00417{width:11.434667pt;}
._13_c00417{width:12.544000pt;}
._12_c00417{width:13.824000pt;}
._10_c00417{width:15.573333pt;}
._14_c00417{width:16.789333pt;}
.fs6_c00417{font-size:42.666667pt;}
.fs2_c00417{font-size:50.666667pt;}
.fs4_c00417{font-size:56.000000pt;}
.fs5_c00417{font-size:61.333333pt;}
.fs1_c00417{font-size:64.000000pt;}
.fs3_c00417{font-size:77.333333pt;}
.fs0_c00417{font-size:85.333333pt;}
.y0_c00417{bottom:0.000000pt;}
.y1f_c00417{bottom:2.760000pt;}
.y1e_c00417{bottom:6.425212pt;}
.y1d_c00417{bottom:46.533333pt;}
.y1c_c00417{bottom:65.066667pt;}
.y1b_c00417{bottom:88.800000pt;}
.y1a_c00417{bottom:110.400000pt;}
.y19_c00417{bottom:133.200000pt;}
.y18_c00417{bottom:155.333333pt;}
.y17_c00417{bottom:178.000000pt;}
.y16_c00417{bottom:199.733333pt;}
.y15_c00417{bottom:222.266667pt;}
.y14_c00417{bottom:246.266667pt;}
.y13_c00417{bottom:266.666667pt;}
.y12_c00417{bottom:287.466667pt;}
.y11_c00417{bottom:309.066667pt;}
.y10_c00417{bottom:331.200000pt;}
.yf_c00417{bottom:353.466667pt;}
.ye_c00417{bottom:375.200000pt;}
.yd_c00417{bottom:396.533333pt;}
.yc_c00417{bottom:418.533333pt;}
.yb_c00417{bottom:440.666667pt;}
.ya_c00417{bottom:461.733333pt;}
.y9_c00417{bottom:484.000000pt;}
.y8_c00417{bottom:505.466667pt;}
.y7_c00417{bottom:527.733333pt;}
.y6_c00417{bottom:549.600000pt;}
.y5_c00417{bottom:571.466667pt;}
.y4_c00417{bottom:593.733333pt;}
.y3_c00417{bottom:615.600000pt;}
.y2_c00417{bottom:637.466667pt;}
.y1_c00417{bottom:660.000000pt;}
.h5_c00417{height:11.733399pt;}
.h6_c00417{height:38.937500pt;}
.h4_c00417{height:77.654948pt;}
.h2_c00417{height:81.031250pt;}
.h3_c00417{height:97.912760pt;}
.h1_c00417{height:108.041667pt;}
.h0_c00417{height:696.000000pt;}
.w1_c00417{width:93.222667pt;}
.w0_c00417{width:462.000000pt;}
.x0_c00417{left:0.000000pt;}
.x2_c00417{left:82.400000pt;}
.x3_c00417{left:84.533333pt;}
.x4_c00417{left:85.733333pt;}
.x5_c00417{left:86.666667pt;}
.x6_c00417{left:87.600000pt;}
.x8_c00417{left:188.168213pt;}
.x1_c00417{left:194.666667pt;}
.x7_c00417{left:399.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_88d24ff4d2d47ba9b000ab8b.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.480469;font-style:normal;font-weight:normal;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_db6d19e4f83a2208d8acbb79.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:1.568848;font-style:normal;font-weight:normal;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_b04c050c1fb8dfb25ad1fde9.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;line-height:1.575000;font-style:normal;font-weight:normal;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_e7518646c1244ca46d6e05fe.woff2')format("woff");}.ff4_c00418{font-family:ff4_c00418;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00418;src:url('chunks/assets/font_c7fdd33315d63dc1da3fea09.woff2')format("woff");}.ff5_c00418{font-family:ff5_c00418;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00418;src:url('chunks/assets/font_fa380c4afa0cda23dccc008d.woff2')format("woff");}.ff6_c00418{font-family:ff6_c00418;line-height:1.568848;font-style:normal;font-weight: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_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00418{font-family:ff7_c00418;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00418{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00418{vertical-align:0.000000px;}
.ls2_c00418{letter-spacing:-3.000000px;}
.ls3_c00418{letter-spacing:0.000000px;}
.ls1_c00418{letter-spacing:3.000000px;}
.ls0_c00418{letter-spacing:19.188000px;}
.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:-42.000000px;}
.ws2_c00418{word-spacing:0.000000px;}
.ws0_c00418{word-spacing:5.322000px;}
._14_c00418{margin-left:-9.576000px;}
._11_c00418{margin-left:-8.529000px;}
._12_c00418{margin-left:-7.416000px;}
._2_c00418{margin-left:-6.264000px;}
._10_c00418{margin-left:-5.190000px;}
._c_c00418{margin-left:-3.810000px;}
._3_c00418{margin-left:-2.610000px;}
._b_c00418{margin-left:-1.584000px;}
._4_c00418{width:1.479000px;}
._6_c00418{width:2.958000px;}
._a_c00418{width:4.287000px;}
._5_c00418{width:5.742000px;}
._1_c00418{width:7.482000px;}
._8_c00418{width:9.483000px;}
._d_c00418{width:11.184000px;}
._0_c00418{width:12.267000px;}
._e_c00418{width:13.398000px;}
._16_c00418{width:16.452000px;}
._15_c00418{width:18.183000px;}
._17_c00418{width:21.891000px;}
._f_c00418{width:23.313000px;}
._18_c00418{width:25.107000px;}
._9_c00418{width:30.276000px;}
._13_c00418{width:50.328000px;}
._19_c00418{width:317.385000px;}
._7_c00418{width:342.432000px;}
.fc2_c00418{color:transparent;}
.fc1_c00418{color:rgb(128,128,128);}
.fc0_c00418{color:rgb(0,0,0);}
.fs6_c00418{font-size:48.000000px;}
.fs2_c00418{font-size:57.000000px;}
.fs3_c00418{font-size:63.000000px;}
.fs1_c00418{font-size:72.000000px;}
.fs4_c00418{font-size:81.000000px;}
.fs5_c00418{font-size:84.000000px;}
.fs0_c00418{font-size:87.000000px;}
.y0_c00418{bottom:0.000000px;}
.y1f_c00418{bottom:3.105000px;}
.y1e_c00418{bottom:7.228369px;}
.y1d_c00418{bottom:50.220000px;}
.y1c_c00418{bottom:80.970000px;}
.y1b_c00418{bottom:103.320000px;}
.y1a_c00418{bottom:125.820000px;}
.y19_c00418{bottom:154.920000px;}
.y18_c00418{bottom:180.120000px;}
.y17_c00418{bottom:203.520000px;}
.y16_c00418{bottom:227.820000px;}
.y15_c00418{bottom:253.470000px;}
.y14_c00418{bottom:278.370000px;}
.y13_c00418{bottom:302.970000px;}
.y12_c00418{bottom:323.670000px;}
.y11_c00418{bottom:347.220000px;}
.y10_c00418{bottom:373.320000px;}
.yf_c00418{bottom:397.620000px;}
.ye_c00418{bottom:422.520000px;}
.yd_c00418{bottom:447.120000px;}
.yc_c00418{bottom:471.720000px;}
.yb_c00418{bottom:496.170000px;}
.ya_c00418{bottom:520.470000px;}
.y9_c00418{bottom:544.020000px;}
.y8_c00418{bottom:569.970000px;}
.y7_c00418{bottom:594.270000px;}
.y6_c00418{bottom:618.570000px;}
.y5_c00418{bottom:642.870000px;}
.y4_c00418{bottom:667.470000px;}
.y3_c00418{bottom:692.520000px;}
.y2_c00418{bottom:717.120000px;}
.y1_c00418{bottom:741.870000px;}
.h6_c00418{height:13.200073px;}
.h7_c00418{height:43.804688px;}
.h4_c00418{height:79.765137px;}
.h5_c00418{height:82.400391px;}
.h3_c00418{height:91.160156px;}
.h2_c00418{height:101.825684px;}
.h1_c00418{height:785.250000px;}
.h0_c00418{height:785.400000px;}
.w2_c00418{width:104.875500px;}
.w1_c00418{width:526.500000px;}
.w0_c00418{width:526.800000px;}
.x0_c00418{left:0.000000px;}
.x2_c00418{left:32.700000px;}
.x3_c00418{left:34.800000px;}
.x4_c00418{left:36.750000px;}
.x5_c00418{left:37.800000px;}
.x6_c00418{left:40.200000px;}
.x1_c00418{left:149.850000px;}
.x8_c00418{left:215.214249px;}
.x7_c00418{left:281.100000px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.ls2_c00418{letter-spacing:-2.666667pt;}
.ls3_c00418{letter-spacing:0.000000pt;}
.ls1_c00418{letter-spacing:2.666667pt;}
.ls0_c00418{letter-spacing:17.056000pt;}
.ws1_c00418{word-spacing:-37.333333pt;}
.ws2_c00418{word-spacing:0.000000pt;}
.ws0_c00418{word-spacing:4.730667pt;}
._14_c00418{margin-left:-8.512000pt;}
._11_c00418{margin-left:-7.581333pt;}
._12_c00418{margin-left:-6.592000pt;}
._2_c00418{margin-left:-5.568000pt;}
._10_c00418{margin-left:-4.613333pt;}
._c_c00418{margin-left:-3.386667pt;}
._3_c00418{margin-left:-2.320000pt;}
._b_c00418{margin-left:-1.408000pt;}
._4_c00418{width:1.314667pt;}
._6_c00418{width:2.629333pt;}
._a_c00418{width:3.810667pt;}
._5_c00418{width:5.104000pt;}
._1_c00418{width:6.650667pt;}
._8_c00418{width:8.429333pt;}
._d_c00418{width:9.941333pt;}
._0_c00418{width:10.904000pt;}
._e_c00418{width:11.909333pt;}
._16_c00418{width:14.624000pt;}
._15_c00418{width:16.162667pt;}
._17_c00418{width:19.458667pt;}
._f_c00418{width:20.722667pt;}
._18_c00418{width:22.317333pt;}
._9_c00418{width:26.912000pt;}
._13_c00418{width:44.736000pt;}
._19_c00418{width:282.120000pt;}
._7_c00418{width:304.384000pt;}
.fs6_c00418{font-size:42.666667pt;}
.fs2_c00418{font-size:50.666667pt;}
.fs3_c00418{font-size:56.000000pt;}
.fs1_c00418{font-size:64.000000pt;}
.fs4_c00418{font-size:72.000000pt;}
.fs5_c00418{font-size:74.666667pt;}
.fs0_c00418{font-size:77.333333pt;}
.y0_c00418{bottom:0.000000pt;}
.y1f_c00418{bottom:2.760000pt;}
.y1e_c00418{bottom:6.425217pt;}
.y1d_c00418{bottom:44.640000pt;}
.y1c_c00418{bottom:71.973333pt;}
.y1b_c00418{bottom:91.840000pt;}
.y1a_c00418{bottom:111.840000pt;}
.y19_c00418{bottom:137.706667pt;}
.y18_c00418{bottom:160.106667pt;}
.y17_c00418{bottom:180.906667pt;}
.y16_c00418{bottom:202.506667pt;}
.y15_c00418{bottom:225.306667pt;}
.y14_c00418{bottom:247.440000pt;}
.y13_c00418{bottom:269.306667pt;}
.y12_c00418{bottom:287.706667pt;}
.y11_c00418{bottom:308.640000pt;}
.y10_c00418{bottom:331.840000pt;}
.yf_c00418{bottom:353.440000pt;}
.ye_c00418{bottom:375.573333pt;}
.yd_c00418{bottom:397.440000pt;}
.yc_c00418{bottom:419.306667pt;}
.yb_c00418{bottom:441.040000pt;}
.ya_c00418{bottom:462.640000pt;}
.y9_c00418{bottom:483.573333pt;}
.y8_c00418{bottom:506.640000pt;}
.y7_c00418{bottom:528.240000pt;}
.y6_c00418{bottom:549.840000pt;}
.y5_c00418{bottom:571.440000pt;}
.y4_c00418{bottom:593.306667pt;}
.y3_c00418{bottom:615.573333pt;}
.y2_c00418{bottom:637.440000pt;}
.y1_c00418{bottom:659.440000pt;}
.h6_c00418{height:11.733399pt;}
.h7_c00418{height:38.937500pt;}
.h4_c00418{height:70.902344pt;}
.h5_c00418{height:73.244792pt;}
.h3_c00418{height:81.031250pt;}
.h2_c00418{height:90.511719pt;}
.h1_c00418{height:698.000000pt;}
.h0_c00418{height:698.133333pt;}
.w2_c00418{width:93.222667pt;}
.w1_c00418{width:468.000000pt;}
.w0_c00418{width:468.266667pt;}
.x0_c00418{left:0.000000pt;}
.x2_c00418{left:29.066667pt;}
.x3_c00418{left:30.933333pt;}
.x4_c00418{left:32.666667pt;}
.x5_c00418{left:33.600000pt;}
.x6_c00418{left:35.733333pt;}
.x1_c00418{left:133.200000pt;}
.x8_c00418{left:191.301554pt;}
.x7_c00418{left:249.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b43fc3f6b4c21449298c6956.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00419;src:url('chunks/assets/font_3de481d9c18cada181dbaa10.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00419;src:url('chunks/assets/font_66c495e1b13e6bebd973a1b2.woff2')format("woff");}.ff3_c00419{font-family:ff3_c00419;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00419{font-family:ff4_c00419;line-height:1.219238;font-style: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:3.000000px;}
.ls2_c00419{letter-spacing:6.000000px;}
.sc__c00419{text-shadow:none;}
.sc0_c00419{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00419{-webkit-text-stroke:0px transparent;}
.sc0_c00419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00419{word-spacing:-20.250000px;}
.ws0_c00419{word-spacing:-18.183000px;}
.ws3_c00419{word-spacing:0.000000px;}
.ws1_c00419{word-spacing:7.584000px;}
._0_c00419{margin-left:-27.297000px;}
._c_c00419{margin-left:-20.202000px;}
._15_c00419{margin-left:-15.120000px;}
._f_c00419{margin-left:-10.530000px;}
._d_c00419{margin-left:-8.694000px;}
._b_c00419{margin-left:-7.584000px;}
._7_c00419{margin-left:-6.282000px;}
._8_c00419{margin-left:-4.158000px;}
._e_c00419{margin-left:-3.120000px;}
._9_c00419{margin-left:-2.016000px;}
._6_c00419{width:1.182000px;}
._5_c00419{width:2.184000px;}
._3_c00419{width:3.360000px;}
._2_c00419{width:5.376000px;}
._4_c00419{width:6.384000px;}
._a_c00419{width:7.776000px;}
._10_c00419{width:8.946000px;}
._14_c00419{width:10.278000px;}
._12_c00419{width:12.024000px;}
._11_c00419{width:13.824000px;}
._13_c00419{width:18.828000px;}
._18_c00419{width:19.848000px;}
._17_c00419{width:24.240000px;}
._16_c00419{width:38.154000px;}
._1_c00419{width:465.765000px;}
.fc2_c00419{color:transparent;}
.fc1_c00419{color:rgb(128,128,128);}
.fc0_c00419{color:rgb(0,0,0);}
.fs5_c00419{font-size:24.000000px;}
.fs6_c00419{font-size:48.000000px;}
.fs4_c00419{font-size:63.000000px;}
.fs2_c00419{font-size:66.000000px;}
.fs3_c00419{font-size:72.000000px;}
.fs0_c00419{font-size:81.000000px;}
.fs1_c00419{font-size:84.000000px;}
.y0_c00419{bottom:0.000000px;}
.y1f_c00419{bottom:3.105000px;}
.y1e_c00419{bottom:7.228357px;}
.y1d_c00419{bottom:53.430000px;}
.y1c_c00419{bottom:75.030000px;}
.y1b_c00419{bottom:103.230000px;}
.y1a_c00419{bottom:125.280000px;}
.y19_c00419{bottom:150.930000px;}
.y18_c00419{bottom:176.280000px;}
.y17_c00419{bottom:200.880000px;}
.y16_c00419{bottom:224.880000px;}
.y15_c00419{bottom:250.080000px;}
.y14_c00419{bottom:275.430000px;}
.y13_c00419{bottom:299.430000px;}
.y12_c00419{bottom:323.430000px;}
.y11_c00419{bottom:351.330000px;}
.y10_c00419{bottom:372.330000px;}
.yf_c00419{bottom:396.630000px;}
.ye_c00419{bottom:424.230000px;}
.yd_c00419{bottom:445.530000px;}
.yc_c00419{bottom:470.430000px;}
.yb_c00419{bottom:494.880000px;}
.ya_c00419{bottom:519.780000px;}
.y9_c00419{bottom:543.330000px;}
.y8_c00419{bottom:567.630000px;}
.y7_c00419{bottom:592.380000px;}
.y6_c00419{bottom:617.280000px;}
.y5_c00419{bottom:643.230000px;}
.y4_c00419{bottom:666.630000px;}
.y3_c00419{bottom:691.830000px;}
.y2_c00419{bottom:715.230000px;}
.y1_c00419{bottom:741.180000px;}
.h5_c00419{height:13.200074px;}
.h6_c00419{height:43.804688px;}
.h4_c00419{height:79.497070px;}
.h2_c00419{height:82.400391px;}
.h3_c00419{height:91.160156px;}
.h1_c00419{height:784.500000px;}
.h0_c00419{height:784.650000px;}
.w2_c00419{width:104.875500px;}
.w1_c00419{width:516.750000px;}
.w0_c00419{width:517.050000px;}
.x0_c00419{left:0.000000px;}
.x2_c00419{left:92.850000px;}
.x5_c00419{left:98.550000px;}
.x4_c00419{left:100.500000px;}
.x3_c00419{left:101.550000px;}
.x1_c00419{left:102.900000px;}
.x7_c00419{left:210.339249px;}
.x6_c00419{left:467.100000px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.ls0_c00419{letter-spacing:0.000000pt;}
.ls1_c00419{letter-spacing:2.666667pt;}
.ls2_c00419{letter-spacing:5.333333pt;}
.ws2_c00419{word-spacing:-18.000000pt;}
.ws0_c00419{word-spacing:-16.162667pt;}
.ws3_c00419{word-spacing:0.000000pt;}
.ws1_c00419{word-spacing:6.741333pt;}
._0_c00419{margin-left:-24.264000pt;}
._c_c00419{margin-left:-17.957333pt;}
._15_c00419{margin-left:-13.440000pt;}
._f_c00419{margin-left:-9.360000pt;}
._d_c00419{margin-left:-7.728000pt;}
._b_c00419{margin-left:-6.741333pt;}
._7_c00419{margin-left:-5.584000pt;}
._8_c00419{margin-left:-3.696000pt;}
._e_c00419{margin-left:-2.773333pt;}
._9_c00419{margin-left:-1.792000pt;}
._6_c00419{width:1.050667pt;}
._5_c00419{width:1.941333pt;}
._3_c00419{width:2.986667pt;}
._2_c00419{width:4.778667pt;}
._4_c00419{width:5.674667pt;}
._a_c00419{width:6.912000pt;}
._10_c00419{width:7.952000pt;}
._14_c00419{width:9.136000pt;}
._12_c00419{width:10.688000pt;}
._11_c00419{width:12.288000pt;}
._13_c00419{width:16.736000pt;}
._18_c00419{width:17.642667pt;}
._17_c00419{width:21.546667pt;}
._16_c00419{width:33.914667pt;}
._1_c00419{width:414.013333pt;}
.fs5_c00419{font-size:21.333333pt;}
.fs6_c00419{font-size:42.666667pt;}
.fs4_c00419{font-size:56.000000pt;}
.fs2_c00419{font-size:58.666667pt;}
.fs3_c00419{font-size:64.000000pt;}
.fs0_c00419{font-size:72.000000pt;}
.fs1_c00419{font-size:74.666667pt;}
.y0_c00419{bottom:0.000000pt;}
.y1f_c00419{bottom:2.760000pt;}
.y1e_c00419{bottom:6.425206pt;}
.y1d_c00419{bottom:47.493333pt;}
.y1c_c00419{bottom:66.693333pt;}
.y1b_c00419{bottom:91.760000pt;}
.y1a_c00419{bottom:111.360000pt;}
.y19_c00419{bottom:134.160000pt;}
.y18_c00419{bottom:156.693333pt;}
.y17_c00419{bottom:178.560000pt;}
.y16_c00419{bottom:199.893333pt;}
.y15_c00419{bottom:222.293333pt;}
.y14_c00419{bottom:244.826667pt;}
.y13_c00419{bottom:266.160000pt;}
.y12_c00419{bottom:287.493333pt;}
.y11_c00419{bottom:312.293333pt;}
.y10_c00419{bottom:330.960000pt;}
.yf_c00419{bottom:352.560000pt;}
.ye_c00419{bottom:377.093333pt;}
.yd_c00419{bottom:396.026667pt;}
.yc_c00419{bottom:418.160000pt;}
.yb_c00419{bottom:439.893333pt;}
.ya_c00419{bottom:462.026667pt;}
.y9_c00419{bottom:482.960000pt;}
.y8_c00419{bottom:504.560000pt;}
.y7_c00419{bottom:526.560000pt;}
.y6_c00419{bottom:548.693333pt;}
.y5_c00419{bottom:571.760000pt;}
.y4_c00419{bottom:592.560000pt;}
.y3_c00419{bottom:614.960000pt;}
.y2_c00419{bottom:635.760000pt;}
.y1_c00419{bottom:658.826667pt;}
.h5_c00419{height:11.733399pt;}
.h6_c00419{height:38.937500pt;}
.h4_c00419{height:70.664062pt;}
.h2_c00419{height:73.244792pt;}
.h3_c00419{height:81.031250pt;}
.h1_c00419{height:697.333333pt;}
.h0_c00419{height:697.466667pt;}
.w2_c00419{width:93.222667pt;}
.w1_c00419{width:459.333333pt;}
.w0_c00419{width:459.600000pt;}
.x0_c00419{left:0.000000pt;}
.x2_c00419{left:82.533333pt;}
.x5_c00419{left:87.600000pt;}
.x4_c00419{left:89.333333pt;}
.x3_c00419{left:90.266667pt;}
.x1_c00419{left:91.466667pt;}
.x7_c00419{left:186.968221pt;}
.x6_c00419{left:415.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7cb57425f6a5083c9d38201f.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.480469;font-style:normal;font-weight:normal;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_83d3cd71d571db7fe5828817.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:1.568848;font-style:normal;font-weight:normal;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_dbb3ea1ea00748ab0a7bbdac.woff2')format("woff");}.ff3_c00420{font-family:ff3_c00420;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00420;src:url('chunks/assets/font_35062bb602d680ad179f3920.woff2')format("woff");}.ff4_c00420{font-family:ff4_c00420;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00420;src:url('chunks/assets/font_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff5_c00420{font-family:ff5_c00420;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00420;src:url('chunks/assets/font_a308d9b46ce25c98598a3778.woff2')format("woff");}.ff6_c00420{font-family:ff6_c00420;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00420;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00420{font-family:ff7_c00420;line-height:1.219238;font-style: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;}
.ls4_c00420{letter-spacing:0.000000px;}
.ls3_c00420{letter-spacing:1.200000px;}
.ls0_c00420{letter-spacing:3.000000px;}
.ls1_c00420{letter-spacing:8.988000px;}
.ls2_c00420{letter-spacing:13.788000px;}
.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:-20.352000px;}
.ws1_c00420{word-spacing:-17.352000px;}
.ws2_c00420{word-spacing:0.000000px;}
._17_c00420{margin-left:-23.043000px;}
._a_c00420{margin-left:-18.972000px;}
._18_c00420{margin-left:-14.568000px;}
._10_c00420{margin-left:-11.934000px;}
._14_c00420{margin-left:-9.855000px;}
._13_c00420{margin-left:-8.136000px;}
._8_c00420{margin-left:-7.068000px;}
._5_c00420{margin-left:-5.940000px;}
._e_c00420{margin-left:-4.104000px;}
._c_c00420{margin-left:-3.096000px;}
._b_c00420{margin-left:-2.088000px;}
._d_c00420{margin-left:-1.008000px;}
._12_c00420{width:1.488000px;}
._9_c00420{width:2.511000px;}
._2_c00420{width:3.840000px;}
._0_c00420{width:5.400000px;}
._6_c00420{width:6.480000px;}
._4_c00420{width:7.980000px;}
._15_c00420{width:9.144000px;}
._f_c00420{width:10.179000px;}
._1_c00420{width:11.220000px;}
._3_c00420{width:13.320000px;}
._16_c00420{width:15.300000px;}
._11_c00420{width:17.496000px;}
._19_c00420{width:18.633000px;}
._1a_c00420{width:22.464000px;}
._7_c00420{width:353.214000px;}
.fc2_c00420{color:transparent;}
.fc1_c00420{color:rgb(128,128,128);}
.fc0_c00420{color:rgb(0,0,0);}
.fs5_c00420{font-size:48.000000px;}
.fs0_c00420{font-size:60.000000px;}
.fs3_c00420{font-size:63.000000px;}
.fs2_c00420{font-size:72.000000px;}
.fs4_c00420{font-size:78.000000px;}
.fs1_c00420{font-size:93.000000px;}
.y0_c00420{bottom:0.000000px;}
.y1e_c00420{bottom:3.105000px;}
.y1d_c00420{bottom:7.228369px;}
.y1c_c00420{bottom:82.620000px;}
.y1b_c00420{bottom:107.670000px;}
.y1a_c00420{bottom:130.920000px;}
.y19_c00420{bottom:157.620000px;}
.y18_c00420{bottom:182.220000px;}
.y17_c00420{bottom:205.920000px;}
.y16_c00420{bottom:231.870000px;}
.y15_c00420{bottom:254.370000px;}
.y14_c00420{bottom:281.070000px;}
.y13_c00420{bottom:303.420000px;}
.y12_c00420{bottom:328.620000px;}
.y11_c00420{bottom:352.020000px;}
.y10_c00420{bottom:375.870000px;}
.yf_c00420{bottom:400.320000px;}
.ye_c00420{bottom:425.820000px;}
.yd_c00420{bottom:449.220000px;}
.yc_c00420{bottom:473.820000px;}
.yb_c00420{bottom:498.120000px;}
.ya_c00420{bottom:522.720000px;}
.y9_c00420{bottom:547.320000px;}
.y8_c00420{bottom:571.620000px;}
.y7_c00420{bottom:596.370000px;}
.y6_c00420{bottom:621.270000px;}
.y5_c00420{bottom:645.270000px;}
.y4_c00420{bottom:669.570000px;}
.y3_c00420{bottom:694.170000px;}
.y2_c00420{bottom:719.520000px;}
.y1_c00420{bottom:744.120000px;}
.h4_c00420{height:13.200073px;}
.h5_c00420{height:43.804688px;}
.h3_c00420{height:91.160156px;}
.h2_c00420{height:117.748535px;}
.h1_c00420{height:792.000000px;}
.h0_c00420{height:792.150000px;}
.w2_c00420{width:104.875500px;}
.w1_c00420{width:528.750000px;}
.w0_c00420{width:528.900000px;}
.x0_c00420{left:0.000000px;}
.xa_c00420{left:22.950000px;}
.x2_c00420{left:25.350000px;}
.x3_c00420{left:27.300000px;}
.x4_c00420{left:29.400000px;}
.x5_c00420{left:32.100000px;}
.x6_c00420{left:34.050000px;}
.x7_c00420{left:35.850000px;}
.x8_c00420{left:38.100000px;}
.x9_c00420{left:39.450000px;}
.x1_c00420{left:174.150000px;}
.xb_c00420{left:216.264267px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls4_c00420{letter-spacing:0.000000pt;}
.ls3_c00420{letter-spacing:1.066667pt;}
.ls0_c00420{letter-spacing:2.666667pt;}
.ls1_c00420{letter-spacing:7.989333pt;}
.ls2_c00420{letter-spacing:12.256000pt;}
.ws0_c00420{word-spacing:-18.090667pt;}
.ws1_c00420{word-spacing:-15.424000pt;}
.ws2_c00420{word-spacing:0.000000pt;}
._17_c00420{margin-left:-20.482667pt;}
._a_c00420{margin-left:-16.864000pt;}
._18_c00420{margin-left:-12.949333pt;}
._10_c00420{margin-left:-10.608000pt;}
._14_c00420{margin-left:-8.760000pt;}
._13_c00420{margin-left:-7.232000pt;}
._8_c00420{margin-left:-6.282667pt;}
._5_c00420{margin-left:-5.280000pt;}
._e_c00420{margin-left:-3.648000pt;}
._c_c00420{margin-left:-2.752000pt;}
._b_c00420{margin-left:-1.856000pt;}
._d_c00420{margin-left:-0.896000pt;}
._12_c00420{width:1.322667pt;}
._9_c00420{width:2.232000pt;}
._2_c00420{width:3.413333pt;}
._0_c00420{width:4.800000pt;}
._6_c00420{width:5.760000pt;}
._4_c00420{width:7.093333pt;}
._15_c00420{width:8.128000pt;}
._f_c00420{width:9.048000pt;}
._1_c00420{width:9.973333pt;}
._3_c00420{width:11.840000pt;}
._16_c00420{width:13.600000pt;}
._11_c00420{width:15.552000pt;}
._19_c00420{width:16.562667pt;}
._1a_c00420{width:19.968000pt;}
._7_c00420{width:313.968000pt;}
.fs5_c00420{font-size:42.666667pt;}
.fs0_c00420{font-size:53.333333pt;}
.fs3_c00420{font-size:56.000000pt;}
.fs2_c00420{font-size:64.000000pt;}
.fs4_c00420{font-size:69.333333pt;}
.fs1_c00420{font-size:82.666667pt;}
.y0_c00420{bottom:0.000000pt;}
.y1e_c00420{bottom:2.760000pt;}
.y1d_c00420{bottom:6.425217pt;}
.y1c_c00420{bottom:73.440000pt;}
.y1b_c00420{bottom:95.706667pt;}
.y1a_c00420{bottom:116.373333pt;}
.y19_c00420{bottom:140.106667pt;}
.y18_c00420{bottom:161.973333pt;}
.y17_c00420{bottom:183.040000pt;}
.y16_c00420{bottom:206.106667pt;}
.y15_c00420{bottom:226.106667pt;}
.y14_c00420{bottom:249.840000pt;}
.y13_c00420{bottom:269.706667pt;}
.y12_c00420{bottom:292.106667pt;}
.y11_c00420{bottom:312.906667pt;}
.y10_c00420{bottom:334.106667pt;}
.yf_c00420{bottom:355.840000pt;}
.ye_c00420{bottom:378.506667pt;}
.yd_c00420{bottom:399.306667pt;}
.yc_c00420{bottom:421.173333pt;}
.yb_c00420{bottom:442.773333pt;}
.ya_c00420{bottom:464.640000pt;}
.y9_c00420{bottom:486.506667pt;}
.y8_c00420{bottom:508.106667pt;}
.y7_c00420{bottom:530.106667pt;}
.y6_c00420{bottom:552.240000pt;}
.y5_c00420{bottom:573.573333pt;}
.y4_c00420{bottom:595.173333pt;}
.y3_c00420{bottom:617.040000pt;}
.y2_c00420{bottom:639.573333pt;}
.y1_c00420{bottom:661.440000pt;}
.h4_c00420{height:11.733399pt;}
.h5_c00420{height:38.937500pt;}
.h3_c00420{height:81.031250pt;}
.h2_c00420{height:104.665365pt;}
.h1_c00420{height:704.000000pt;}
.h0_c00420{height:704.133333pt;}
.w2_c00420{width:93.222667pt;}
.w1_c00420{width:470.000000pt;}
.w0_c00420{width:470.133333pt;}
.x0_c00420{left:0.000000pt;}
.xa_c00420{left:20.400000pt;}
.x2_c00420{left:22.533333pt;}
.x3_c00420{left:24.266667pt;}
.x4_c00420{left:26.133333pt;}
.x5_c00420{left:28.533333pt;}
.x6_c00420{left:30.266667pt;}
.x7_c00420{left:31.866667pt;}
.x8_c00420{left:33.866667pt;}
.x9_c00420{left:35.066667pt;}
.x1_c00420{left:154.800000pt;}
.xb_c00420{left:192.234904pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6960b6154e03e7ee644144e9.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00421;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00421;src:url('chunks/assets/font_6e978063f77d0fef820ab0fe.woff2')format("woff");}.ff3_c00421{font-family:ff3_c00421;line-height:1.568848;font-style:normal;font-weight:normal;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_b4ba83baf3740b5d52f8325c.woff2')format("woff");}.ff4_c00421{font-family:ff4_c00421;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00421;src:url('chunks/assets/font_49b6f5f51f1feb7031b8fa31.woff2')format("woff");}.ff5_c00421{font-family:ff5_c00421;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00421;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00421{font-family:ff6_c00421;line-height:1.219238;font-style: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;}
.ls3_c00421{letter-spacing:-12.000000px;}
.ls2_c00421{letter-spacing:0.000000px;}
.ls0_c00421{letter-spacing:1.350000px;}
.ls1_c00421{letter-spacing:3.000000px;}
.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;}
}
.ws3_c00421{word-spacing:-33.192000px;}
.ws0_c00421{word-spacing:-21.000000px;}
.ws1_c00421{word-spacing:-20.352000px;}
.ws2_c00421{word-spacing:-18.051000px;}
.ws4_c00421{word-spacing:0.000000px;}
._a_c00421{margin-left:-15.024000px;}
._f_c00421{margin-left:-8.268000px;}
._9_c00421{margin-left:-6.312000px;}
._10_c00421{margin-left:-5.256000px;}
._c_c00421{margin-left:-4.140000px;}
._3_c00421{margin-left:-2.772000px;}
._8_c00421{margin-left:-1.560000px;}
._b_c00421{width:1.044000px;}
._1_c00421{width:2.100000px;}
._2_c00421{width:3.360000px;}
._0_c00421{width:5.376000px;}
._4_c00421{width:7.224000px;}
._d_c00421{width:8.664000px;}
._11_c00421{width:9.900000px;}
._5_c00421{width:11.004000px;}
._7_c00421{width:12.936000px;}
._e_c00421{width:14.196000px;}
._12_c00421{width:17.040000px;}
._6_c00421{width:18.228000px;}
.fc2_c00421{color:transparent;}
.fc1_c00421{color:rgb(128,128,128);}
.fc0_c00421{color:rgb(0,0,0);}
.fs5_c00421{font-size:48.000000px;}
.fs4_c00421{font-size:57.000000px;}
.fs3_c00421{font-size:63.000000px;}
.fs1_c00421{font-size:72.000000px;}
.fs2_c00421{font-size:81.000000px;}
.fs0_c00421{font-size:84.000000px;}
.y0_c00421{bottom:0.000000px;}
.y1f_c00421{bottom:3.105000px;}
.y1e_c00421{bottom:7.228371px;}
.y1d_c00421{bottom:46.365000px;}
.y1c_c00421{bottom:69.165000px;}
.y1b_c00421{bottom:93.915000px;}
.y1a_c00421{bottom:119.265000px;}
.y19_c00421{bottom:144.165000px;}
.y18_c00421{bottom:168.465000px;}
.y17_c00421{bottom:193.515000px;}
.y16_c00421{bottom:218.115000px;}
.y15_c00421{bottom:242.415000px;}
.y14_c00421{bottom:267.315000px;}
.y13_c00421{bottom:292.065000px;}
.y12_c00421{bottom:317.565000px;}
.y11_c00421{bottom:341.265000px;}
.y10_c00421{bottom:364.965000px;}
.yf_c00421{bottom:389.865000px;}
.ye_c00421{bottom:414.165000px;}
.yd_c00421{bottom:438.465000px;}
.yc_c00421{bottom:462.165000px;}
.yb_c00421{bottom:486.765000px;}
.ya_c00421{bottom:511.665000px;}
.y9_c00421{bottom:535.365000px;}
.y8_c00421{bottom:560.265000px;}
.y7_c00421{bottom:584.865000px;}
.y6_c00421{bottom:610.215000px;}
.y5_c00421{bottom:633.915000px;}
.y4_c00421{bottom:659.265000px;}
.y3_c00421{bottom:683.565000px;}
.y2_c00421{bottom:708.465000px;}
.y1_c00421{bottom:734.115000px;}
.h4_c00421{height:13.200074px;}
.h5_c00421{height:43.804688px;}
.h2_c00421{height:82.441406px;}
.h3_c00421{height:91.160156px;}
.h1_c00421{height:777.000000px;}
.h0_c00421{height:777.075000px;}
.w2_c00421{width:104.875500px;}
.w1_c00421{width:515.250000px;}
.w0_c00421{width:515.400000px;}
.x0_c00421{left:0.000000px;}
.xa_c00421{left:98.100000px;}
.x9_c00421{left:99.900000px;}
.x8_c00421{left:101.250000px;}
.x7_c00421{left:102.300000px;}
.x6_c00421{left:103.650000px;}
.x5_c00421{left:104.850000px;}
.x4_c00421{left:105.900000px;}
.x3_c00421{left:107.550000px;}
.x2_c00421{left:109.650000px;}
.xc_c00421{left:209.514267px;}
.x1_c00421{left:243.300000px;}
.xb_c00421{left:420.150000px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls3_c00421{letter-spacing:-10.666667pt;}
.ls2_c00421{letter-spacing:0.000000pt;}
.ls0_c00421{letter-spacing:1.200000pt;}
.ls1_c00421{letter-spacing:2.666667pt;}
.ws3_c00421{word-spacing:-29.504000pt;}
.ws0_c00421{word-spacing:-18.666667pt;}
.ws1_c00421{word-spacing:-18.090667pt;}
.ws2_c00421{word-spacing:-16.045333pt;}
.ws4_c00421{word-spacing:0.000000pt;}
._a_c00421{margin-left:-13.354667pt;}
._f_c00421{margin-left:-7.349333pt;}
._9_c00421{margin-left:-5.610667pt;}
._10_c00421{margin-left:-4.672000pt;}
._c_c00421{margin-left:-3.680000pt;}
._3_c00421{margin-left:-2.464000pt;}
._8_c00421{margin-left:-1.386667pt;}
._b_c00421{width:0.928000pt;}
._1_c00421{width:1.866667pt;}
._2_c00421{width:2.986667pt;}
._0_c00421{width:4.778667pt;}
._4_c00421{width:6.421333pt;}
._d_c00421{width:7.701333pt;}
._11_c00421{width:8.800000pt;}
._5_c00421{width:9.781333pt;}
._7_c00421{width:11.498667pt;}
._e_c00421{width:12.618667pt;}
._12_c00421{width:15.146667pt;}
._6_c00421{width:16.202667pt;}
.fs5_c00421{font-size:42.666667pt;}
.fs4_c00421{font-size:50.666667pt;}
.fs3_c00421{font-size:56.000000pt;}
.fs1_c00421{font-size:64.000000pt;}
.fs2_c00421{font-size:72.000000pt;}
.fs0_c00421{font-size:74.666667pt;}
.y0_c00421{bottom:0.000000pt;}
.y1f_c00421{bottom:2.760000pt;}
.y1e_c00421{bottom:6.425219pt;}
.y1d_c00421{bottom:41.213333pt;}
.y1c_c00421{bottom:61.480000pt;}
.y1b_c00421{bottom:83.480000pt;}
.y1a_c00421{bottom:106.013333pt;}
.y19_c00421{bottom:128.146667pt;}
.y18_c00421{bottom:149.746667pt;}
.y17_c00421{bottom:172.013333pt;}
.y16_c00421{bottom:193.880000pt;}
.y15_c00421{bottom:215.480000pt;}
.y14_c00421{bottom:237.613333pt;}
.y13_c00421{bottom:259.613333pt;}
.y12_c00421{bottom:282.280000pt;}
.y11_c00421{bottom:303.346667pt;}
.y10_c00421{bottom:324.413333pt;}
.yf_c00421{bottom:346.546667pt;}
.ye_c00421{bottom:368.146667pt;}
.yd_c00421{bottom:389.746667pt;}
.yc_c00421{bottom:410.813333pt;}
.yb_c00421{bottom:432.680000pt;}
.ya_c00421{bottom:454.813333pt;}
.y9_c00421{bottom:475.880000pt;}
.y8_c00421{bottom:498.013333pt;}
.y7_c00421{bottom:519.880000pt;}
.y6_c00421{bottom:542.413333pt;}
.y5_c00421{bottom:563.480000pt;}
.y4_c00421{bottom:586.013333pt;}
.y3_c00421{bottom:607.613333pt;}
.y2_c00421{bottom:629.746667pt;}
.y1_c00421{bottom:652.546667pt;}
.h4_c00421{height:11.733399pt;}
.h5_c00421{height:38.937500pt;}
.h2_c00421{height:73.281250pt;}
.h3_c00421{height:81.031250pt;}
.h1_c00421{height:690.666667pt;}
.h0_c00421{height:690.733333pt;}
.w2_c00421{width:93.222667pt;}
.w1_c00421{width:458.000000pt;}
.w0_c00421{width:458.133333pt;}
.x0_c00421{left:0.000000pt;}
.xa_c00421{left:87.200000pt;}
.x9_c00421{left:88.800000pt;}
.x8_c00421{left:90.000000pt;}
.x7_c00421{left:90.933333pt;}
.x6_c00421{left:92.133333pt;}
.x5_c00421{left:93.200000pt;}
.x4_c00421{left:94.133333pt;}
.x3_c00421{left:95.600000pt;}
.x2_c00421{left:97.466667pt;}
.xc_c00421{left:186.234904pt;}
.x1_c00421{left:216.266667pt;}
.xb_c00421{left:373.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_397ed8fafc19af0e3a393eac.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.480469;font-style:normal;font-weight:normal;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_414efc2418cad7115217dce1.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00422;src:url('chunks/assets/font_dc2fccf325f75127c9b0c61f.woff2')format("woff");}.ff3_c00422{font-family:ff3_c00422;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00422;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00422{font-family:ff4_c00422;line-height:1.219238;font-style: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:3.000000px;}
.sc__c00422{text-shadow:none;}
.sc0_c00422{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00422{-webkit-text-stroke:0px transparent;}
.sc0_c00422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00422{word-spacing:-21.750000px;}
.ws2_c00422{word-spacing:-18.183000px;}
.ws0_c00422{word-spacing:-15.906000px;}
.ws3_c00422{word-spacing:0.000000px;}
._19_c00422{margin-left:-26.511000px;}
._13_c00422{margin-left:-15.003000px;}
._15_c00422{margin-left:-13.152000px;}
._16_c00422{margin-left:-11.637000px;}
._11_c00422{margin-left:-10.128000px;}
._12_c00422{margin-left:-8.574000px;}
._18_c00422{margin-left:-7.557000px;}
._10_c00422{margin-left:-6.144000px;}
._f_c00422{margin-left:-4.620000px;}
._d_c00422{margin-left:-3.576000px;}
._8_c00422{margin-left:-1.812000px;}
._2_c00422{width:1.518000px;}
._5_c00422{width:2.772000px;}
._3_c00422{width:4.290000px;}
._e_c00422{width:5.418000px;}
._b_c00422{width:6.810000px;}
._4_c00422{width:8.052000px;}
._a_c00422{width:9.342000px;}
._9_c00422{width:10.365000px;}
._c_c00422{width:11.430000px;}
._17_c00422{width:13.392000px;}
._1_c00422{width:14.454000px;}
._7_c00422{width:17.292000px;}
._14_c00422{width:19.542000px;}
._0_c00422{width:22.242000px;}
._6_c00422{width:328.680000px;}
.fc2_c00422{color:transparent;}
.fc1_c00422{color:rgb(128,128,128);}
.fc0_c00422{color:rgb(0,0,0);}
.fs4_c00422{font-size:48.000000px;}
.fs3_c00422{font-size:63.000000px;}
.fs0_c00422{font-size:66.000000px;}
.fs2_c00422{font-size:72.000000px;}
.fs1_c00422{font-size:75.000000px;}
.y0_c00422{bottom:0.000000px;}
.y1f_c00422{bottom:3.105000px;}
.y1e_c00422{bottom:7.228371px;}
.y1d_c00422{bottom:54.465000px;}
.y1c_c00422{bottom:82.665000px;}
.y1b_c00422{bottom:106.065000px;}
.y1a_c00422{bottom:132.315000px;}
.y19_c00422{bottom:158.265000px;}
.y18_c00422{bottom:181.215000px;}
.y17_c00422{bottom:207.765000px;}
.y16_c00422{bottom:232.515000px;}
.y15_c00422{bottom:257.265000px;}
.y14_c00422{bottom:281.865000px;}
.y13_c00422{bottom:305.865000px;}
.y12_c00422{bottom:330.165000px;}
.y11_c00422{bottom:352.815000px;}
.y10_c00422{bottom:377.115000px;}
.yf_c00422{bottom:402.615000px;}
.ye_c00422{bottom:426.615000px;}
.yd_c00422{bottom:450.915000px;}
.yc_c00422{bottom:475.665000px;}
.yb_c00422{bottom:500.565000px;}
.ya_c00422{bottom:525.465000px;}
.y9_c00422{bottom:549.465000px;}
.y8_c00422{bottom:574.215000px;}
.y7_c00422{bottom:598.815000px;}
.y6_c00422{bottom:623.415000px;}
.y5_c00422{bottom:647.415000px;}
.y4_c00422{bottom:672.315000px;}
.y3_c00422{bottom:698.265000px;}
.y2_c00422{bottom:722.265000px;}
.y1_c00422{bottom:745.965000px;}
.h7_c00422{height:13.200074px;}
.h8_c00422{height:43.804688px;}
.h3_c00422{height:73.608398px;}
.h2_c00422{height:77.247070px;}
.h6_c00422{height:79.765137px;}
.h4_c00422{height:83.563477px;}
.h5_c00422{height:91.160156px;}
.h0_c00422{height:786.525000px;}
.h1_c00422{height:786.750000px;}
.w1_c00422{width:104.875500px;}
.w0_c00422{width:533.250000px;}
.x0_c00422{left:0.000000px;}
.x2_c00422{left:38.250000px;}
.x3_c00422{left:40.500000px;}
.x4_c00422{left:43.200000px;}
.x5_c00422{left:45.000000px;}
.x7_c00422{left:46.350000px;}
.x6_c00422{left:47.700000px;}
.x8_c00422{left:49.350000px;}
.x9_c00422{left:50.400000px;}
.x1_c00422{left:160.200000px;}
.xb_c00422{left:218.439240px;}
.xa_c00422{left:381.450000px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls1_c00422{letter-spacing:0.000000pt;}
.ls0_c00422{letter-spacing:2.666667pt;}
.ws1_c00422{word-spacing:-19.333333pt;}
.ws2_c00422{word-spacing:-16.162667pt;}
.ws0_c00422{word-spacing:-14.138667pt;}
.ws3_c00422{word-spacing:0.000000pt;}
._19_c00422{margin-left:-23.565333pt;}
._13_c00422{margin-left:-13.336000pt;}
._15_c00422{margin-left:-11.690667pt;}
._16_c00422{margin-left:-10.344000pt;}
._11_c00422{margin-left:-9.002667pt;}
._12_c00422{margin-left:-7.621333pt;}
._18_c00422{margin-left:-6.717333pt;}
._10_c00422{margin-left:-5.461333pt;}
._f_c00422{margin-left:-4.106667pt;}
._d_c00422{margin-left:-3.178667pt;}
._8_c00422{margin-left:-1.610667pt;}
._2_c00422{width:1.349333pt;}
._5_c00422{width:2.464000pt;}
._3_c00422{width:3.813333pt;}
._e_c00422{width:4.816000pt;}
._b_c00422{width:6.053333pt;}
._4_c00422{width:7.157333pt;}
._a_c00422{width:8.304000pt;}
._9_c00422{width:9.213333pt;}
._c_c00422{width:10.160000pt;}
._17_c00422{width:11.904000pt;}
._1_c00422{width:12.848000pt;}
._7_c00422{width:15.370667pt;}
._14_c00422{width:17.370667pt;}
._0_c00422{width:19.770667pt;}
._6_c00422{width:292.160000pt;}
.fs4_c00422{font-size:42.666667pt;}
.fs3_c00422{font-size:56.000000pt;}
.fs0_c00422{font-size:58.666667pt;}
.fs2_c00422{font-size:64.000000pt;}
.fs1_c00422{font-size:66.666667pt;}
.y0_c00422{bottom:0.000000pt;}
.y1f_c00422{bottom:2.760000pt;}
.y1e_c00422{bottom:6.425219pt;}
.y1d_c00422{bottom:48.413333pt;}
.y1c_c00422{bottom:73.480000pt;}
.y1b_c00422{bottom:94.280000pt;}
.y1a_c00422{bottom:117.613333pt;}
.y19_c00422{bottom:140.680000pt;}
.y18_c00422{bottom:161.080000pt;}
.y17_c00422{bottom:184.680000pt;}
.y16_c00422{bottom:206.680000pt;}
.y15_c00422{bottom:228.680000pt;}
.y14_c00422{bottom:250.546667pt;}
.y13_c00422{bottom:271.880000pt;}
.y12_c00422{bottom:293.480000pt;}
.y11_c00422{bottom:313.613333pt;}
.y10_c00422{bottom:335.213333pt;}
.yf_c00422{bottom:357.880000pt;}
.ye_c00422{bottom:379.213333pt;}
.yd_c00422{bottom:400.813333pt;}
.yc_c00422{bottom:422.813333pt;}
.yb_c00422{bottom:444.946667pt;}
.ya_c00422{bottom:467.080000pt;}
.y9_c00422{bottom:488.413333pt;}
.y8_c00422{bottom:510.413333pt;}
.y7_c00422{bottom:532.280000pt;}
.y6_c00422{bottom:554.146667pt;}
.y5_c00422{bottom:575.480000pt;}
.y4_c00422{bottom:597.613333pt;}
.y3_c00422{bottom:620.680000pt;}
.y2_c00422{bottom:642.013333pt;}
.y1_c00422{bottom:663.080000pt;}
.h7_c00422{height:11.733399pt;}
.h8_c00422{height:38.937500pt;}
.h3_c00422{height:65.429688pt;}
.h2_c00422{height:68.664062pt;}
.h6_c00422{height:70.902344pt;}
.h4_c00422{height:74.278646pt;}
.h5_c00422{height:81.031250pt;}
.h0_c00422{height:699.133333pt;}
.h1_c00422{height:699.333333pt;}
.w1_c00422{width:93.222667pt;}
.w0_c00422{width:474.000000pt;}
.x0_c00422{left:0.000000pt;}
.x2_c00422{left:34.000000pt;}
.x3_c00422{left:36.000000pt;}
.x4_c00422{left:38.400000pt;}
.x5_c00422{left:40.000000pt;}
.x7_c00422{left:41.200000pt;}
.x6_c00422{left:42.400000pt;}
.x8_c00422{left:43.866667pt;}
.x9_c00422{left:44.800000pt;}
.x1_c00422{left:142.400000pt;}
.xb_c00422{left:194.168213pt;}
.xa_c00422{left:339.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_562396ad07af965653e48cd0.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.480469;font-style:normal;font-weight:normal;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_509e3e0c5b0051ece84c93f8.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00423{font-family:ff3_c00423;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00423{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00423{vertical-align:0.000000px;}
.ls2_c00423{letter-spacing:0.000000px;}
.ls1_c00423{letter-spacing:0.624000px;}
.ls0_c00423{letter-spacing:3.000000px;}
.sc__c00423{text-shadow:none;}
.sc0_c00423{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00423{-webkit-text-stroke:0px transparent;}
.sc0_c00423{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00423{word-spacing:-17.352000px;}
.ws1_c00423{word-spacing:0.000000px;}
._f_c00423{margin-left:-17.820000px;}
._17_c00423{margin-left:-13.452000px;}
._11_c00423{margin-left:-10.896000px;}
._e_c00423{margin-left:-9.516000px;}
._10_c00423{margin-left:-7.896000px;}
._12_c00423{margin-left:-6.432000px;}
._4_c00423{margin-left:-5.220000px;}
._b_c00423{margin-left:-3.492000px;}
._a_c00423{margin-left:-2.088000px;}
._d_c00423{margin-left:-1.020000px;}
._9_c00423{width:1.320000px;}
._2_c00423{width:3.120000px;}
._c_c00423{width:4.200000px;}
._14_c00423{width:5.208000px;}
._3_c00423{width:6.480000px;}
._5_c00423{width:7.560000px;}
._13_c00423{width:8.916000px;}
._6_c00423{width:10.080000px;}
._8_c00423{width:11.280000px;}
._15_c00423{width:12.852000px;}
._7_c00423{width:19.380000px;}
._16_c00423{width:23.388000px;}
._1_c00423{width:27.900000px;}
._18_c00423{width:28.968000px;}
._0_c00423{width:31.020000px;}
.fc2_c00423{color:transparent;}
.fc1_c00423{color:rgb(128,128,128);}
.fc0_c00423{color:rgb(0,0,0);}
.fs2_c00423{font-size:48.000000px;}
.fs0_c00423{font-size:60.000000px;}
.fs1_c00423{font-size:72.000000px;}
.y0_c00423{bottom:0.000000px;}
.y1f_c00423{bottom:3.105000px;}
.y1e_c00423{bottom:7.228363px;}
.y1d_c00423{bottom:57.750000px;}
.y1c_c00423{bottom:80.550000px;}
.y1b_c00423{bottom:106.650000px;}
.y1a_c00423{bottom:131.550000px;}
.y19_c00423{bottom:156.600000px;}
.y18_c00423{bottom:181.800000px;}
.y17_c00423{bottom:206.550000px;}
.y16_c00423{bottom:232.800000px;}
.y15_c00423{bottom:257.400000px;}
.y14_c00423{bottom:281.400000px;}
.y13_c00423{bottom:306.450000px;}
.y12_c00423{bottom:330.450000px;}
.y11_c00423{bottom:356.100000px;}
.y10_c00423{bottom:379.350000px;}
.yf_c00423{bottom:403.650000px;}
.ye_c00423{bottom:429.300000px;}
.yd_c00423{bottom:452.550000px;}
.yc_c00423{bottom:477.450000px;}
.yb_c00423{bottom:501.750000px;}
.ya_c00423{bottom:526.800000px;}
.y9_c00423{bottom:551.100000px;}
.y8_c00423{bottom:575.100000px;}
.y7_c00423{bottom:600.450000px;}
.y6_c00423{bottom:623.700000px;}
.y5_c00423{bottom:649.650000px;}
.y4_c00423{bottom:674.700000px;}
.y3_c00423{bottom:698.250000px;}
.y2_c00423{bottom:723.000000px;}
.y1_c00423{bottom:748.500000px;}
.h4_c00423{height:13.200074px;}
.h5_c00423{height:43.804688px;}
.h2_c00423{height:75.966797px;}
.h3_c00423{height:91.160156px;}
.h1_c00423{height:788.250000px;}
.h0_c00423{height:788.400000px;}
.w2_c00423{width:104.875500px;}
.w0_c00423{width:504.375000px;}
.w1_c00423{width:504.750000px;}
.x0_c00423{left:0.000000px;}
.x8_c00423{left:69.300000px;}
.x6_c00423{left:82.050000px;}
.x7_c00423{left:83.700000px;}
.x5_c00423{left:84.750000px;}
.x4_c00423{left:86.850000px;}
.x3_c00423{left:88.500000px;}
.x2_c00423{left:89.550000px;}
.xa_c00423{left:204.001740px;}
.x1_c00423{left:224.400000px;}
.x9_c00423{left:439.050000px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls2_c00423{letter-spacing:0.000000pt;}
.ls1_c00423{letter-spacing:0.554667pt;}
.ls0_c00423{letter-spacing:2.666667pt;}
.ws0_c00423{word-spacing:-15.424000pt;}
.ws1_c00423{word-spacing:0.000000pt;}
._f_c00423{margin-left:-15.840000pt;}
._17_c00423{margin-left:-11.957333pt;}
._11_c00423{margin-left:-9.685333pt;}
._e_c00423{margin-left:-8.458667pt;}
._10_c00423{margin-left:-7.018667pt;}
._12_c00423{margin-left:-5.717333pt;}
._4_c00423{margin-left:-4.640000pt;}
._b_c00423{margin-left:-3.104000pt;}
._a_c00423{margin-left:-1.856000pt;}
._d_c00423{margin-left:-0.906667pt;}
._9_c00423{width:1.173333pt;}
._2_c00423{width:2.773333pt;}
._c_c00423{width:3.733333pt;}
._14_c00423{width:4.629333pt;}
._3_c00423{width:5.760000pt;}
._5_c00423{width:6.720000pt;}
._13_c00423{width:7.925333pt;}
._6_c00423{width:8.960000pt;}
._8_c00423{width:10.026667pt;}
._15_c00423{width:11.424000pt;}
._7_c00423{width:17.226667pt;}
._16_c00423{width:20.789333pt;}
._1_c00423{width:24.800000pt;}
._18_c00423{width:25.749333pt;}
._0_c00423{width:27.573333pt;}
.fs2_c00423{font-size:42.666667pt;}
.fs0_c00423{font-size:53.333333pt;}
.fs1_c00423{font-size:64.000000pt;}
.y0_c00423{bottom:0.000000pt;}
.y1f_c00423{bottom:2.760000pt;}
.y1e_c00423{bottom:6.425212pt;}
.y1d_c00423{bottom:51.333333pt;}
.y1c_c00423{bottom:71.600000pt;}
.y1b_c00423{bottom:94.800000pt;}
.y1a_c00423{bottom:116.933333pt;}
.y19_c00423{bottom:139.200000pt;}
.y18_c00423{bottom:161.600000pt;}
.y17_c00423{bottom:183.600000pt;}
.y16_c00423{bottom:206.933333pt;}
.y15_c00423{bottom:228.800000pt;}
.y14_c00423{bottom:250.133333pt;}
.y13_c00423{bottom:272.400000pt;}
.y12_c00423{bottom:293.733333pt;}
.y11_c00423{bottom:316.533333pt;}
.y10_c00423{bottom:337.200000pt;}
.yf_c00423{bottom:358.800000pt;}
.ye_c00423{bottom:381.600000pt;}
.yd_c00423{bottom:402.266667pt;}
.yc_c00423{bottom:424.400000pt;}
.yb_c00423{bottom:446.000000pt;}
.ya_c00423{bottom:468.266667pt;}
.y9_c00423{bottom:489.866667pt;}
.y8_c00423{bottom:511.200000pt;}
.y7_c00423{bottom:533.733333pt;}
.y6_c00423{bottom:554.400000pt;}
.y5_c00423{bottom:577.466667pt;}
.y4_c00423{bottom:599.733333pt;}
.y3_c00423{bottom:620.666667pt;}
.y2_c00423{bottom:642.666667pt;}
.y1_c00423{bottom:665.333333pt;}
.h4_c00423{height:11.733399pt;}
.h5_c00423{height:38.937500pt;}
.h2_c00423{height:67.526042pt;}
.h3_c00423{height:81.031250pt;}
.h1_c00423{height:700.666667pt;}
.h0_c00423{height:700.800000pt;}
.w2_c00423{width:93.222667pt;}
.w0_c00423{width:448.333333pt;}
.w1_c00423{width:448.666667pt;}
.x0_c00423{left:0.000000pt;}
.x8_c00423{left:61.600000pt;}
.x6_c00423{left:72.933333pt;}
.x7_c00423{left:74.400000pt;}
.x5_c00423{left:75.333333pt;}
.x4_c00423{left:77.200000pt;}
.x3_c00423{left:78.666667pt;}
.x2_c00423{left:79.600000pt;}
.xa_c00423{left:181.334880pt;}
.x1_c00423{left:199.466667pt;}
.x9_c00423{left:390.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16c12cadf9996df94e59b8a0.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.480469;font-style:normal;font-weight:normal;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_8da86e5a57f75f29770263b4.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;line-height:1.219238;font-style: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:3.000000px;}
.ls2_c00424{letter-spacing:39.000000px;}
.sc__c00424{text-shadow:none;}
.sc0_c00424{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00424{-webkit-text-stroke:0px transparent;}
.sc0_c00424{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00424{word-spacing:-56.352000px;}
.ws2_c00424{word-spacing:-20.352000px;}
.ws0_c00424{word-spacing:-17.352000px;}
.ws3_c00424{word-spacing:0.000000px;}
._14_c00424{margin-left:-41.016000px;}
._13_c00424{margin-left:-16.920000px;}
._12_c00424{margin-left:-11.160000px;}
._15_c00424{margin-left:-9.504000px;}
._10_c00424{margin-left:-7.560000px;}
._11_c00424{margin-left:-5.616000px;}
._6_c00424{margin-left:-4.464000px;}
._a_c00424{margin-left:-2.808000px;}
._7_c00424{margin-left:-1.368000px;}
._8_c00424{width:1.152000px;}
._b_c00424{width:2.736000px;}
._1_c00424{width:3.816000px;}
._2_c00424{width:5.544000px;}
._3_c00424{width:7.272000px;}
._d_c00424{width:8.424000px;}
._0_c00424{width:9.648000px;}
._5_c00424{width:10.872000px;}
._c_c00424{width:11.880000px;}
._f_c00424{width:13.536000px;}
._9_c00424{width:15.048000px;}
._e_c00424{width:31.656000px;}
._4_c00424{width:385.056000px;}
._16_c00424{width:1259.136000px;}
.fc2_c00424{color:transparent;}
.fc1_c00424{color:rgb(128,128,128);}
.fc0_c00424{color:rgb(0,0,0);}
.fs1_c00424{font-size:48.000000px;}
.fs0_c00424{font-size:72.000000px;}
.y0_c00424{bottom:0.000000px;}
.y1f_c00424{bottom:3.105000px;}
.y1e_c00424{bottom:7.228355px;}
.y1d_c00424{bottom:46.485000px;}
.y1c_c00424{bottom:74.235000px;}
.y1b_c00424{bottom:102.135000px;}
.y1a_c00424{bottom:128.535000px;}
.y19_c00424{bottom:153.885000px;}
.y18_c00424{bottom:173.685000px;}
.y17_c00424{bottom:203.385000px;}
.y16_c00424{bottom:227.985000px;}
.y15_c00424{bottom:253.035000px;}
.y14_c00424{bottom:278.085000px;}
.y13_c00424{bottom:297.585000px;}
.y12_c00424{bottom:323.985000px;}
.y11_c00424{bottom:348.885000px;}
.y10_c00424{bottom:372.585000px;}
.yf_c00424{bottom:396.885000px;}
.ye_c00424{bottom:421.785000px;}
.yd_c00424{bottom:446.535000px;}
.yc_c00424{bottom:470.835000px;}
.yb_c00424{bottom:495.735000px;}
.ya_c00424{bottom:520.335000px;}
.y9_c00424{bottom:544.935000px;}
.y8_c00424{bottom:569.385000px;}
.y7_c00424{bottom:594.285000px;}
.y6_c00424{bottom:617.985000px;}
.y5_c00424{bottom:643.485000px;}
.y4_c00424{bottom:667.485000px;}
.y3_c00424{bottom:692.535000px;}
.y2_c00424{bottom:716.835000px;}
.y1_c00424{bottom:741.735000px;}
.h4_c00424{height:13.200074px;}
.h5_c00424{height:43.804688px;}
.h2_c00424{height:84.269531px;}
.h3_c00424{height:91.160156px;}
.h1_c00424{height:786.000000px;}
.h0_c00424{height:786.225000px;}
.w2_c00424{width:104.875500px;}
.w0_c00424{width:531.375000px;}
.w1_c00424{width:531.750000px;}
.x0_c00424{left:0.000000px;}
.x2_c00424{left:24.600000px;}
.x3_c00424{left:25.650000px;}
.x4_c00424{left:26.700000px;}
.x5_c00424{left:27.900000px;}
.x6_c00424{left:29.700000px;}
.x7_c00424{left:49.650000px;}
.x1_c00424{left:133.350000px;}
.x8_c00424{left:217.501740px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls1_c00424{letter-spacing:0.000000pt;}
.ls0_c00424{letter-spacing:2.666667pt;}
.ls2_c00424{letter-spacing:34.666667pt;}
.ws1_c00424{word-spacing:-50.090667pt;}
.ws2_c00424{word-spacing:-18.090667pt;}
.ws0_c00424{word-spacing:-15.424000pt;}
.ws3_c00424{word-spacing:0.000000pt;}
._14_c00424{margin-left:-36.458667pt;}
._13_c00424{margin-left:-15.040000pt;}
._12_c00424{margin-left:-9.920000pt;}
._15_c00424{margin-left:-8.448000pt;}
._10_c00424{margin-left:-6.720000pt;}
._11_c00424{margin-left:-4.992000pt;}
._6_c00424{margin-left:-3.968000pt;}
._a_c00424{margin-left:-2.496000pt;}
._7_c00424{margin-left:-1.216000pt;}
._8_c00424{width:1.024000pt;}
._b_c00424{width:2.432000pt;}
._1_c00424{width:3.392000pt;}
._2_c00424{width:4.928000pt;}
._3_c00424{width:6.464000pt;}
._d_c00424{width:7.488000pt;}
._0_c00424{width:8.576000pt;}
._5_c00424{width:9.664000pt;}
._c_c00424{width:10.560000pt;}
._f_c00424{width:12.032000pt;}
._9_c00424{width:13.376000pt;}
._e_c00424{width:28.138667pt;}
._4_c00424{width:342.272000pt;}
._16_c00424{width:1119.232000pt;}
.fs1_c00424{font-size:42.666667pt;}
.fs0_c00424{font-size:64.000000pt;}
.y0_c00424{bottom:0.000000pt;}
.y1f_c00424{bottom:2.760000pt;}
.y1e_c00424{bottom:6.425204pt;}
.y1d_c00424{bottom:41.320000pt;}
.y1c_c00424{bottom:65.986667pt;}
.y1b_c00424{bottom:90.786667pt;}
.y1a_c00424{bottom:114.253333pt;}
.y19_c00424{bottom:136.786667pt;}
.y18_c00424{bottom:154.386667pt;}
.y17_c00424{bottom:180.786667pt;}
.y16_c00424{bottom:202.653333pt;}
.y15_c00424{bottom:224.920000pt;}
.y14_c00424{bottom:247.186667pt;}
.y13_c00424{bottom:264.520000pt;}
.y12_c00424{bottom:287.986667pt;}
.y11_c00424{bottom:310.120000pt;}
.y10_c00424{bottom:331.186667pt;}
.yf_c00424{bottom:352.786667pt;}
.ye_c00424{bottom:374.920000pt;}
.yd_c00424{bottom:396.920000pt;}
.yc_c00424{bottom:418.520000pt;}
.yb_c00424{bottom:440.653333pt;}
.ya_c00424{bottom:462.520000pt;}
.y9_c00424{bottom:484.386667pt;}
.y8_c00424{bottom:506.120000pt;}
.y7_c00424{bottom:528.253333pt;}
.y6_c00424{bottom:549.320000pt;}
.y5_c00424{bottom:571.986667pt;}
.y4_c00424{bottom:593.320000pt;}
.y3_c00424{bottom:615.586667pt;}
.y2_c00424{bottom:637.186667pt;}
.y1_c00424{bottom:659.320000pt;}
.h4_c00424{height:11.733399pt;}
.h5_c00424{height:38.937500pt;}
.h2_c00424{height:74.906250pt;}
.h3_c00424{height:81.031250pt;}
.h1_c00424{height:698.666667pt;}
.h0_c00424{height:698.866667pt;}
.w2_c00424{width:93.222667pt;}
.w0_c00424{width:472.333333pt;}
.w1_c00424{width:472.666667pt;}
.x0_c00424{left:0.000000pt;}
.x2_c00424{left:21.866667pt;}
.x3_c00424{left:22.800000pt;}
.x4_c00424{left:23.733333pt;}
.x5_c00424{left:24.800000pt;}
.x6_c00424{left:26.400000pt;}
.x7_c00424{left:44.133333pt;}
.x1_c00424{left:118.533333pt;}
.x8_c00424{left:193.334880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b5efa8e91620f8c9658966ba.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.480469;font-style:normal;font-weight:normal;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_f6302d52181f132837b2cb84.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00425{font-family:ff3_c00425;line-height:1.219238;font-style: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:3.000000px;}
.ls2_c00425{letter-spacing:6.000000px;}
.sc__c00425{text-shadow:none;}
.sc0_c00425{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00425{-webkit-text-stroke:0px transparent;}
.sc0_c00425{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00425{word-spacing:-17.352000px;}
.ws0_c00425{word-spacing:-15.183000px;}
.ws2_c00425{word-spacing:0.000000px;}
._3_c00425{margin-left:-14.280000px;}
._13_c00425{margin-left:-10.974000px;}
._c_c00425{margin-left:-9.456000px;}
._10_c00425{margin-left:-7.098000px;}
._8_c00425{margin-left:-5.184000px;}
._6_c00425{margin-left:-3.600000px;}
._7_c00425{margin-left:-1.944000px;}
._9_c00425{width:1.224000px;}
._b_c00425{width:2.232000px;}
._a_c00425{width:3.384000px;}
._d_c00425{width:5.016000px;}
._1_c00425{width:7.080000px;}
._4_c00425{width:8.700000px;}
._e_c00425{width:9.864000px;}
._f_c00425{width:10.872000px;}
._2_c00425{width:12.060000px;}
._14_c00425{width:13.164000px;}
._11_c00425{width:14.832000px;}
._0_c00425{width:17.460000px;}
._12_c00425{width:19.320000px;}
._5_c00425{width:21.780000px;}
._15_c00425{width:46.392000px;}
.fc2_c00425{color:transparent;}
.fc1_c00425{color:rgb(128,128,128);}
.fc0_c00425{color:rgb(0,0,0);}
.fs3_c00425{font-size:24.000000px;}
.fs4_c00425{font-size:48.000000px;}
.fs0_c00425{font-size:60.000000px;}
.fs2_c00425{font-size:63.000000px;}
.fs1_c00425{font-size:72.000000px;}
.y0_c00425{bottom:0.000000px;}
.y1e_c00425{bottom:3.105000px;}
.y1d_c00425{bottom:7.228357px;}
.y1c_c00425{bottom:75.930000px;}
.y1b_c00425{bottom:100.980000px;}
.y1a_c00425{bottom:126.630000px;}
.y19_c00425{bottom:152.280000px;}
.y18_c00425{bottom:177.930000px;}
.y17_c00425{bottom:203.130000px;}
.y16_c00425{bottom:226.080000px;}
.y15_c00425{bottom:251.730000px;}
.y14_c00425{bottom:276.480000px;}
.y13_c00425{bottom:302.130000px;}
.y12_c00425{bottom:328.830000px;}
.y11_c00425{bottom:350.430000px;}
.y10_c00425{bottom:375.930000px;}
.yf_c00425{bottom:398.880000px;}
.ye_c00425{bottom:423.330000px;}
.yd_c00425{bottom:448.530000px;}
.yc_c00425{bottom:472.230000px;}
.yb_c00425{bottom:497.580000px;}
.ya_c00425{bottom:522.480000px;}
.y9_c00425{bottom:546.780000px;}
.y8_c00425{bottom:571.830000px;}
.y7_c00425{bottom:596.430000px;}
.y6_c00425{bottom:621.030000px;}
.y5_c00425{bottom:646.080000px;}
.y4_c00425{bottom:670.230000px;}
.y3_c00425{bottom:694.980000px;}
.y2_c00425{bottom:719.280000px;}
.y1_c00425{bottom:745.830000px;}
.h4_c00425{height:13.200074px;}
.h5_c00425{height:43.804688px;}
.h2_c00425{height:75.966797px;}
.h3_c00425{height:91.160156px;}
.h0_c00425{height:787.350000px;}
.h1_c00425{height:787.500000px;}
.w1_c00425{width:104.875500px;}
.w0_c00425{width:509.250000px;}
.x0_c00425{left:0.000000px;}
.x3_c00425{left:96.300000px;}
.x2_c00425{left:97.650000px;}
.x4_c00425{left:99.150000px;}
.x5_c00425{left:100.500000px;}
.x6_c00425{left:206.439240px;}
.x1_c00425{left:231.450000px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls0_c00425{letter-spacing:0.000000pt;}
.ls1_c00425{letter-spacing:2.666667pt;}
.ls2_c00425{letter-spacing:5.333333pt;}
.ws1_c00425{word-spacing:-15.424000pt;}
.ws0_c00425{word-spacing:-13.496000pt;}
.ws2_c00425{word-spacing:0.000000pt;}
._3_c00425{margin-left:-12.693333pt;}
._13_c00425{margin-left:-9.754667pt;}
._c_c00425{margin-left:-8.405333pt;}
._10_c00425{margin-left:-6.309333pt;}
._8_c00425{margin-left:-4.608000pt;}
._6_c00425{margin-left:-3.200000pt;}
._7_c00425{margin-left:-1.728000pt;}
._9_c00425{width:1.088000pt;}
._b_c00425{width:1.984000pt;}
._a_c00425{width:3.008000pt;}
._d_c00425{width:4.458667pt;}
._1_c00425{width:6.293333pt;}
._4_c00425{width:7.733333pt;}
._e_c00425{width:8.768000pt;}
._f_c00425{width:9.664000pt;}
._2_c00425{width:10.720000pt;}
._14_c00425{width:11.701333pt;}
._11_c00425{width:13.184000pt;}
._0_c00425{width:15.520000pt;}
._12_c00425{width:17.173333pt;}
._5_c00425{width:19.360000pt;}
._15_c00425{width:41.237333pt;}
.fs3_c00425{font-size:21.333333pt;}
.fs4_c00425{font-size:42.666667pt;}
.fs0_c00425{font-size:53.333333pt;}
.fs2_c00425{font-size:56.000000pt;}
.fs1_c00425{font-size:64.000000pt;}
.y0_c00425{bottom:0.000000pt;}
.y1e_c00425{bottom:2.760000pt;}
.y1d_c00425{bottom:6.425206pt;}
.y1c_c00425{bottom:67.493333pt;}
.y1b_c00425{bottom:89.760000pt;}
.y1a_c00425{bottom:112.560000pt;}
.y19_c00425{bottom:135.360000pt;}
.y18_c00425{bottom:158.160000pt;}
.y17_c00425{bottom:180.560000pt;}
.y16_c00425{bottom:200.960000pt;}
.y15_c00425{bottom:223.760000pt;}
.y14_c00425{bottom:245.760000pt;}
.y13_c00425{bottom:268.560000pt;}
.y12_c00425{bottom:292.293333pt;}
.y11_c00425{bottom:311.493333pt;}
.y10_c00425{bottom:334.160000pt;}
.yf_c00425{bottom:354.560000pt;}
.ye_c00425{bottom:376.293333pt;}
.yd_c00425{bottom:398.693333pt;}
.yc_c00425{bottom:419.760000pt;}
.yb_c00425{bottom:442.293333pt;}
.ya_c00425{bottom:464.426667pt;}
.y9_c00425{bottom:486.026667pt;}
.y8_c00425{bottom:508.293333pt;}
.y7_c00425{bottom:530.160000pt;}
.y6_c00425{bottom:552.026667pt;}
.y5_c00425{bottom:574.293333pt;}
.y4_c00425{bottom:595.760000pt;}
.y3_c00425{bottom:617.760000pt;}
.y2_c00425{bottom:639.360000pt;}
.y1_c00425{bottom:662.960000pt;}
.h4_c00425{height:11.733399pt;}
.h5_c00425{height:38.937500pt;}
.h2_c00425{height:67.526042pt;}
.h3_c00425{height:81.031250pt;}
.h0_c00425{height:699.866667pt;}
.h1_c00425{height:700.000000pt;}
.w1_c00425{width:93.222667pt;}
.w0_c00425{width:452.666667pt;}
.x0_c00425{left:0.000000pt;}
.x3_c00425{left:85.600000pt;}
.x2_c00425{left:86.800000pt;}
.x4_c00425{left:88.133333pt;}
.x5_c00425{left:89.333333pt;}
.x6_c00425{left:183.501546pt;}
.x1_c00425{left:205.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3c9d6de2f5d41f7fa53b72d3.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.480469;font-style:normal;font-weight:normal;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_18939674eff97f275c863849.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:1.568848;font-style:normal;font-weight:normal;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_197fbe573c06ac3f6e46736e.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00426;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00426{font-family:ff4_c00426;line-height:1.219238;font-style: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;}
.ls2_c00426{letter-spacing:0.000000px;}
.ls0_c00426{letter-spacing:1.248000px;}
.ls3_c00426{letter-spacing:3.000000px;}
.ls1_c00426{letter-spacing:32.340000px;}
.ls4_c00426{letter-spacing:45.000000px;}
.sc__c00426{text-shadow:none;}
.sc0_c00426{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00426{-webkit-text-stroke:0px transparent;}
.sc0_c00426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00426{word-spacing:-17.352000px;}
.ws1_c00426{word-spacing:0.000000px;}
._1c_c00426{margin-left:-42.120000px;}
._14_c00426{margin-left:-22.200000px;}
._16_c00426{margin-left:-14.136000px;}
._6_c00426{margin-left:-12.600000px;}
._e_c00426{margin-left:-11.520000px;}
._4_c00426{margin-left:-9.792000px;}
._7_c00426{margin-left:-8.136000px;}
._12_c00426{margin-left:-6.336000px;}
._d_c00426{margin-left:-5.184000px;}
._a_c00426{margin-left:-3.672000px;}
._9_c00426{margin-left:-2.088000px;}
._c_c00426{margin-left:-1.080000px;}
._b_c00426{width:1.368000px;}
._5_c00426{width:2.952000px;}
._2_c00426{width:4.032000px;}
._0_c00426{width:5.256000px;}
._f_c00426{width:7.200000px;}
._10_c00426{width:9.288000px;}
._1_c00426{width:10.656000px;}
._3_c00426{width:12.240000px;}
._11_c00426{width:15.648000px;}
._17_c00426{width:16.872000px;}
._15_c00426{width:19.056000px;}
._13_c00426{width:22.200000px;}
._1b_c00426{width:24.408000px;}
._1a_c00426{width:25.848000px;}
._19_c00426{width:28.704000px;}
._18_c00426{width:33.552000px;}
._8_c00426{width:278.784000px;}
._1e_c00426{width:294.072000px;}
._1d_c00426{width:851.544000px;}
.fc2_c00426{color:transparent;}
.fc1_c00426{color:rgb(128,128,128);}
.fc0_c00426{color:rgb(0,0,0);}
.fs2_c00426{font-size:48.000000px;}
.fs0_c00426{font-size:72.000000px;}
.fs1_c00426{font-size:84.000000px;}
.y0_c00426{bottom:0.000000px;}
.y1f_c00426{bottom:3.105000px;}
.y1e_c00426{bottom:7.228363px;}
.y1d_c00426{bottom:55.800000px;}
.y1c_c00426{bottom:83.400000px;}
.y1b_c00426{bottom:108.450000px;}
.y1a_c00426{bottom:130.950000px;}
.y19_c00426{bottom:159.300000px;}
.y18_c00426{bottom:183.900000px;}
.y17_c00426{bottom:208.650000px;}
.y16_c00426{bottom:232.950000px;}
.y15_c00426{bottom:257.850000px;}
.y14_c00426{bottom:280.800000px;}
.y13_c00426{bottom:306.450000px;}
.y12_c00426{bottom:329.400000px;}
.y11_c00426{bottom:353.400000px;}
.y10_c00426{bottom:377.700000px;}
.yf_c00426{bottom:402.000000px;}
.ye_c00426{bottom:427.350000px;}
.yd_c00426{bottom:451.650000px;}
.yc_c00426{bottom:475.650000px;}
.yb_c00426{bottom:501.900000px;}
.ya_c00426{bottom:524.850000px;}
.y9_c00426{bottom:549.150000px;}
.y8_c00426{bottom:575.550000px;}
.y7_c00426{bottom:598.500000px;}
.y6_c00426{bottom:623.100000px;}
.y5_c00426{bottom:647.700000px;}
.y4_c00426{bottom:672.300000px;}
.y3_c00426{bottom:697.500000px;}
.y2_c00426{bottom:721.650000px;}
.y1_c00426{bottom:747.000000px;}
.h5_c00426{height:13.200074px;}
.h6_c00426{height:43.804688px;}
.h2_c00426{height:84.269531px;}
.h3_c00426{height:91.160156px;}
.h4_c00426{height:98.314453px;}
.h1_c00426{height:793.500000px;}
.h0_c00426{height:793.800000px;}
.w2_c00426{width:104.875500px;}
.w0_c00426{width:527.025000px;}
.w1_c00426{width:527.250000px;}
.x0_c00426{left:0.000000px;}
.x8_c00426{left:22.350000px;}
.x7_c00426{left:25.050000px;}
.x3_c00426{left:28.800000px;}
.x4_c00426{left:30.750000px;}
.x2_c00426{left:32.400000px;}
.x5_c00426{left:34.200000px;}
.x9_c00426{left:43.200000px;}
.x6_c00426{left:57.450000px;}
.x1_c00426{left:194.700000px;}
.xa_c00426{left:215.326767px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls2_c00426{letter-spacing:0.000000pt;}
.ls0_c00426{letter-spacing:1.109333pt;}
.ls3_c00426{letter-spacing:2.666667pt;}
.ls1_c00426{letter-spacing:28.746667pt;}
.ls4_c00426{letter-spacing:40.000000pt;}
.ws0_c00426{word-spacing:-15.424000pt;}
.ws1_c00426{word-spacing:0.000000pt;}
._1c_c00426{margin-left:-37.440000pt;}
._14_c00426{margin-left:-19.733333pt;}
._16_c00426{margin-left:-12.565333pt;}
._6_c00426{margin-left:-11.200000pt;}
._e_c00426{margin-left:-10.240000pt;}
._4_c00426{margin-left:-8.704000pt;}
._7_c00426{margin-left:-7.232000pt;}
._12_c00426{margin-left:-5.632000pt;}
._d_c00426{margin-left:-4.608000pt;}
._a_c00426{margin-left:-3.264000pt;}
._9_c00426{margin-left:-1.856000pt;}
._c_c00426{margin-left:-0.960000pt;}
._b_c00426{width:1.216000pt;}
._5_c00426{width:2.624000pt;}
._2_c00426{width:3.584000pt;}
._0_c00426{width:4.672000pt;}
._f_c00426{width:6.400000pt;}
._10_c00426{width:8.256000pt;}
._1_c00426{width:9.472000pt;}
._3_c00426{width:10.880000pt;}
._11_c00426{width:13.909333pt;}
._17_c00426{width:14.997333pt;}
._15_c00426{width:16.938667pt;}
._13_c00426{width:19.733333pt;}
._1b_c00426{width:21.696000pt;}
._1a_c00426{width:22.976000pt;}
._19_c00426{width:25.514667pt;}
._18_c00426{width:29.824000pt;}
._8_c00426{width:247.808000pt;}
._1e_c00426{width:261.397333pt;}
._1d_c00426{width:756.928000pt;}
.fs2_c00426{font-size:42.666667pt;}
.fs0_c00426{font-size:64.000000pt;}
.fs1_c00426{font-size:74.666667pt;}
.y0_c00426{bottom:0.000000pt;}
.y1f_c00426{bottom:2.760000pt;}
.y1e_c00426{bottom:6.425212pt;}
.y1d_c00426{bottom:49.600000pt;}
.y1c_c00426{bottom:74.133333pt;}
.y1b_c00426{bottom:96.400000pt;}
.y1a_c00426{bottom:116.400000pt;}
.y19_c00426{bottom:141.600000pt;}
.y18_c00426{bottom:163.466667pt;}
.y17_c00426{bottom:185.466667pt;}
.y16_c00426{bottom:207.066667pt;}
.y15_c00426{bottom:229.200000pt;}
.y14_c00426{bottom:249.600000pt;}
.y13_c00426{bottom:272.400000pt;}
.y12_c00426{bottom:292.800000pt;}
.y11_c00426{bottom:314.133333pt;}
.y10_c00426{bottom:335.733333pt;}
.yf_c00426{bottom:357.333333pt;}
.ye_c00426{bottom:379.866667pt;}
.yd_c00426{bottom:401.466667pt;}
.yc_c00426{bottom:422.800000pt;}
.yb_c00426{bottom:446.133333pt;}
.ya_c00426{bottom:466.533333pt;}
.y9_c00426{bottom:488.133333pt;}
.y8_c00426{bottom:511.600000pt;}
.y7_c00426{bottom:532.000000pt;}
.y6_c00426{bottom:553.866667pt;}
.y5_c00426{bottom:575.733333pt;}
.y4_c00426{bottom:597.600000pt;}
.y3_c00426{bottom:620.000000pt;}
.y2_c00426{bottom:641.466667pt;}
.y1_c00426{bottom:664.000000pt;}
.h5_c00426{height:11.733399pt;}
.h6_c00426{height:38.937500pt;}
.h2_c00426{height:74.906250pt;}
.h3_c00426{height:81.031250pt;}
.h4_c00426{height:87.390625pt;}
.h1_c00426{height:705.333333pt;}
.h0_c00426{height:705.600000pt;}
.w2_c00426{width:93.222667pt;}
.w0_c00426{width:468.466667pt;}
.w1_c00426{width:468.666667pt;}
.x0_c00426{left:0.000000pt;}
.x8_c00426{left:19.866667pt;}
.x7_c00426{left:22.266667pt;}
.x3_c00426{left:25.600000pt;}
.x4_c00426{left:27.333333pt;}
.x2_c00426{left:28.800000pt;}
.x5_c00426{left:30.400000pt;}
.x9_c00426{left:38.400000pt;}
.x6_c00426{left:51.066667pt;}
.x1_c00426{left:173.066667pt;}
.xa_c00426{left:191.401571pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8754a064125064579a3d3874.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00427;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00427;src:url('chunks/assets/font_8422278e8d6a5eeeb4663ddd.woff2')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:1.568848;font-style:normal;font-weight:normal;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_f9824443df441acfe2bb1012.woff2')format("woff");}.ff4_c00427{font-family:ff4_c00427;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00427;src:url('chunks/assets/font_037ff99e59639d915acd95b3.woff2')format("woff");}.ff5_c00427{font-family:ff5_c00427;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00427;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00427{font-family:ff6_c00427;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00427{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00427{vertical-align:0.000000px;}
.ls2_c00427{letter-spacing:0.000000px;}
.ls0_c00427{letter-spacing:3.000000px;}
.ls3_c00427{letter-spacing:6.000000px;}
.ls1_c00427{letter-spacing:37.368000px;}
.sc__c00427{text-shadow:none;}
.sc0_c00427{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00427{-webkit-text-stroke:0px transparent;}
.sc0_c00427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00427{word-spacing:-23.352000px;}
.ws2_c00427{word-spacing:-22.464000px;}
.ws0_c00427{word-spacing:-17.352000px;}
.ws3_c00427{word-spacing:0.000000px;}
._16_c00427{margin-left:-15.148800px;}
._14_c00427{margin-left:-11.160000px;}
._10_c00427{margin-left:-9.576000px;}
._f_c00427{margin-left:-6.720000px;}
._9_c00427{margin-left:-5.232000px;}
._8_c00427{margin-left:-3.672000px;}
._4_c00427{margin-left:-1.848000px;}
._5_c00427{width:1.776000px;}
._6_c00427{width:3.024000px;}
._1_c00427{width:4.536000px;}
._7_c00427{width:6.192000px;}
._2_c00427{width:7.728000px;}
._d_c00427{width:9.168000px;}
._b_c00427{width:10.296000px;}
._0_c00427{width:11.340000px;}
._a_c00427{width:13.416000px;}
._c_c00427{width:15.096000px;}
._e_c00427{width:18.792000px;}
._15_c00427{width:20.664000px;}
._12_c00427{width:23.064000px;}
._11_c00427{width:26.928000px;}
._3_c00427{width:28.140000px;}
._18_c00427{width:33.792000px;}
._1b_c00427{width:42.336000px;}
._19_c00427{width:125.256000px;}
._1c_c00427{width:215.136000px;}
._13_c00427{width:349.704000px;}
._1a_c00427{width:409.536000px;}
._17_c00427{width:547.315200px;}
.fc2_c00427{color:transparent;}
.fc1_c00427{color:rgb(128,128,128);}
.fc0_c00427{color:rgb(0,0,0);}
.fs3_c00427{font-size:48.000000px;}
.fs2_c00427{font-size:57.600000px;}
.fs1_c00427{font-size:72.000000px;}
.fs0_c00427{font-size:84.000000px;}
.y0_c00427{bottom:0.000000px;}
.y1f_c00427{bottom:3.105000px;}
.y1e_c00427{bottom:7.228371px;}
.y1d_c00427{bottom:43.665000px;}
.y1c_c00427{bottom:61.515000px;}
.y1b_c00427{bottom:88.215000px;}
.y1a_c00427{bottom:113.415000px;}
.y19_c00427{bottom:138.465000px;}
.y18_c00427{bottom:164.715000px;}
.y17_c00427{bottom:189.315000px;}
.y16_c00427{bottom:215.115000px;}
.y15_c00427{bottom:243.315000px;}
.y14_c00427{bottom:266.265000px;}
.y13_c00427{bottom:290.265000px;}
.y12_c00427{bottom:315.015000px;}
.y11_c00427{bottom:339.915000px;}
.y10_c00427{bottom:365.865000px;}
.yf_c00427{bottom:391.215000px;}
.ye_c00427{bottom:415.515000px;}
.yd_c00427{bottom:439.815000px;}
.yc_c00427{bottom:464.115000px;}
.yb_c00427{bottom:489.015000px;}
.ya_c00427{bottom:513.465000px;}
.y9_c00427{bottom:537.765000px;}
.y8_c00427{bottom:562.665000px;}
.y7_c00427{bottom:586.665000px;}
.y6_c00427{bottom:611.565000px;}
.y5_c00427{bottom:636.615000px;}
.y4_c00427{bottom:660.915000px;}
.y3_c00427{bottom:685.515000px;}
.y2_c00427{bottom:709.815000px;}
.y1_c00427{bottom:736.815000px;}
.h4_c00427{height:13.200074px;}
.h5_c00427{height:43.804688px;}
.h2_c00427{height:82.441406px;}
.h3_c00427{height:91.160156px;}
.h0_c00427{height:798.675000px;}
.h1_c00427{height:798.750000px;}
.w2_c00427{width:104.875500px;}
.w0_c00427{width:518.925000px;}
.w1_c00427{width:519.000000px;}
.x0_c00427{left:0.000000px;}
.x6_c00427{left:24.000000px;}
.x5_c00427{left:103.050000px;}
.x4_c00427{left:104.400000px;}
.x2_c00427{left:106.050000px;}
.x3_c00427{left:107.700000px;}
.x7_c00427{left:109.050000px;}
.x8_c00427{left:209.550000px;}
.x9_c00427{left:211.276749px;}
.x1_c00427{left:217.950000px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls2_c00427{letter-spacing:0.000000pt;}
.ls0_c00427{letter-spacing:2.666667pt;}
.ls3_c00427{letter-spacing:5.333333pt;}
.ls1_c00427{letter-spacing:33.216000pt;}
.ws1_c00427{word-spacing:-20.757333pt;}
.ws2_c00427{word-spacing:-19.968000pt;}
.ws0_c00427{word-spacing:-15.424000pt;}
.ws3_c00427{word-spacing:0.000000pt;}
._16_c00427{margin-left:-13.465600pt;}
._14_c00427{margin-left:-9.920000pt;}
._10_c00427{margin-left:-8.512000pt;}
._f_c00427{margin-left:-5.973333pt;}
._9_c00427{margin-left:-4.650667pt;}
._8_c00427{margin-left:-3.264000pt;}
._4_c00427{margin-left:-1.642667pt;}
._5_c00427{width:1.578667pt;}
._6_c00427{width:2.688000pt;}
._1_c00427{width:4.032000pt;}
._7_c00427{width:5.504000pt;}
._2_c00427{width:6.869333pt;}
._d_c00427{width:8.149333pt;}
._b_c00427{width:9.152000pt;}
._0_c00427{width:10.080000pt;}
._a_c00427{width:11.925333pt;}
._c_c00427{width:13.418667pt;}
._e_c00427{width:16.704000pt;}
._15_c00427{width:18.368000pt;}
._12_c00427{width:20.501333pt;}
._11_c00427{width:23.936000pt;}
._3_c00427{width:25.013333pt;}
._18_c00427{width:30.037333pt;}
._1b_c00427{width:37.632000pt;}
._19_c00427{width:111.338667pt;}
._1c_c00427{width:191.232000pt;}
._13_c00427{width:310.848000pt;}
._1a_c00427{width:364.032000pt;}
._17_c00427{width:486.502400pt;}
.fs3_c00427{font-size:42.666667pt;}
.fs2_c00427{font-size:51.200000pt;}
.fs1_c00427{font-size:64.000000pt;}
.fs0_c00427{font-size:74.666667pt;}
.y0_c00427{bottom:0.000000pt;}
.y1f_c00427{bottom:2.760000pt;}
.y1e_c00427{bottom:6.425219pt;}
.y1d_c00427{bottom:38.813333pt;}
.y1c_c00427{bottom:54.680000pt;}
.y1b_c00427{bottom:78.413333pt;}
.y1a_c00427{bottom:100.813333pt;}
.y19_c00427{bottom:123.080000pt;}
.y18_c00427{bottom:146.413333pt;}
.y17_c00427{bottom:168.280000pt;}
.y16_c00427{bottom:191.213333pt;}
.y15_c00427{bottom:216.280000pt;}
.y14_c00427{bottom:236.680000pt;}
.y13_c00427{bottom:258.013333pt;}
.y12_c00427{bottom:280.013333pt;}
.y11_c00427{bottom:302.146667pt;}
.y10_c00427{bottom:325.213333pt;}
.yf_c00427{bottom:347.746667pt;}
.ye_c00427{bottom:369.346667pt;}
.yd_c00427{bottom:390.946667pt;}
.yc_c00427{bottom:412.546667pt;}
.yb_c00427{bottom:434.680000pt;}
.ya_c00427{bottom:456.413333pt;}
.y9_c00427{bottom:478.013333pt;}
.y8_c00427{bottom:500.146667pt;}
.y7_c00427{bottom:521.480000pt;}
.y6_c00427{bottom:543.613333pt;}
.y5_c00427{bottom:565.880000pt;}
.y4_c00427{bottom:587.480000pt;}
.y3_c00427{bottom:609.346667pt;}
.y2_c00427{bottom:630.946667pt;}
.y1_c00427{bottom:654.946667pt;}
.h4_c00427{height:11.733399pt;}
.h5_c00427{height:38.937500pt;}
.h2_c00427{height:73.281250pt;}
.h3_c00427{height:81.031250pt;}
.h0_c00427{height:709.933333pt;}
.h1_c00427{height:710.000000pt;}
.w2_c00427{width:93.222667pt;}
.w0_c00427{width:461.266667pt;}
.w1_c00427{width:461.333333pt;}
.x0_c00427{left:0.000000pt;}
.x6_c00427{left:21.333333pt;}
.x5_c00427{left:91.600000pt;}
.x4_c00427{left:92.800000pt;}
.x2_c00427{left:94.266667pt;}
.x3_c00427{left:95.733333pt;}
.x7_c00427{left:96.933333pt;}
.x8_c00427{left:186.266667pt;}
.x9_c00427{left:187.801554pt;}
.x1_c00427{left:193.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_02d74e107d4de823065e28f6.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.480469;font-style:normal;font-weight:normal;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_8038036b3b9945e90505c822.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:1.480469;font-style:normal;font-weight:normal;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_43003feb0b8a52661cdded1a.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00428;src:url('chunks/assets/font_f628fd17a7e41e927cba6b97.woff2')format("woff");}.ff4_c00428{font-family:ff4_c00428;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00428;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00428{font-family:ff5_c00428;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00428;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00428{font-family:ff6_c00428;line-height:1.219238;font-style: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;}
.ls9_c00428{letter-spacing:-6.000000px;}
.ls8_c00428{letter-spacing:0.000000px;}
.ls2_c00428{letter-spacing:0.960000px;}
.ls1_c00428{letter-spacing:3.000000px;}
.ls0_c00428{letter-spacing:5.150400px;}
.ls6_c00428{letter-spacing:6.960000px;}
.ls4_c00428{letter-spacing:7.488000px;}
.ls3_c00428{letter-spacing:10.188000px;}
.ls5_c00428{letter-spacing:15.960000px;}
.ls7_c00428{letter-spacing:16.650000px;}
.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:-28.080000px;}
.ws2_c00428{word-spacing:-23.400000px;}
.ws1_c00428{word-spacing:-17.352000px;}
.ws3_c00428{word-spacing:0.000000px;}
._10_c00428{margin-left:-14.640000px;}
._c_c00428{margin-left:-7.776000px;}
._b_c00428{margin-left:-6.168000px;}
._8_c00428{margin-left:-4.800000px;}
._7_c00428{margin-left:-3.600000px;}
._0_c00428{margin-left:-2.280000px;}
._9_c00428{margin-left:-1.128000px;}
._5_c00428{width:1.584000px;}
._3_c00428{width:2.592000px;}
._2_c00428{width:4.392000px;}
._4_c00428{width:6.336000px;}
._1_c00428{width:8.040000px;}
._a_c00428{width:9.288000px;}
._11_c00428{width:10.920000px;}
._6_c00428{width:12.456000px;}
._e_c00428{width:14.280000px;}
._13_c00428{width:15.336000px;}
._f_c00428{width:16.344000px;}
._12_c00428{width:19.080000px;}
._16_c00428{width:21.408000px;}
._15_c00428{width:26.496000px;}
._14_c00428{width:32.160000px;}
._d_c00428{width:36.504000px;}
._17_c00428{width:38.808000px;}
._18_c00428{width:168.408000px;}
.fc2_c00428{color:transparent;}
.fc1_c00428{color:rgb(128,128,128);}
.fc0_c00428{color:rgb(0,0,0);}
.fs3_c00428{font-size:48.000000px;}
.fs1_c00428{font-size:57.600000px;}
.fs4_c00428{font-size:60.000000px;}
.fs2_c00428{font-size:63.000000px;}
.fs0_c00428{font-size:72.000000px;}
.fs5_c00428{font-size:96.000000px;}
.y0_c00428{bottom:0.000000px;}
.y1f_c00428{bottom:3.105000px;}
.y1e_c00428{bottom:7.228369px;}
.y1d_c00428{bottom:45.270000px;}
.y1c_c00428{bottom:71.520000px;}
.y1b_c00428{bottom:97.170000px;}
.y1a_c00428{bottom:122.070000px;}
.y19_c00428{bottom:147.120000px;}
.y18_c00428{bottom:171.720000px;}
.y17_c00428{bottom:196.470000px;}
.y16_c00428{bottom:220.770000px;}
.y15_c00428{bottom:245.370000px;}
.y14_c00428{bottom:269.370000px;}
.y13_c00428{bottom:294.870000px;}
.y12_c00428{bottom:318.270000px;}
.y11_c00428{bottom:341.520000px;}
.y10_c00428{bottom:365.220000px;}
.yf_c00428{bottom:389.820000px;}
.ye_c00428{bottom:415.770000px;}
.yd_c00428{bottom:439.020000px;}
.yc_c00428{bottom:464.370000px;}
.yb_c00428{bottom:488.670000px;}
.ya_c00428{bottom:513.270000px;}
.y9_c00428{bottom:537.570000px;}
.y8_c00428{bottom:563.220000px;}
.y7_c00428{bottom:590.670000px;}
.y6_c00428{bottom:612.120000px;}
.y5_c00428{bottom:637.470000px;}
.y4_c00428{bottom:660.120000px;}
.y3_c00428{bottom:685.020000px;}
.y2_c00428{bottom:711.420000px;}
.y1_c00428{bottom:734.070000px;}
.h5_c00428{height:13.200073px;}
.h6_c00428{height:43.804688px;}
.h2_c00428{height:84.269531px;}
.h3_c00428{height:91.160156px;}
.h4_c00428{height:112.359375px;}
.h1_c00428{height:785.250000px;}
.h0_c00428{height:785.400000px;}
.w2_c00428{width:104.875500px;}
.w1_c00428{width:528.750000px;}
.w0_c00428{width:528.900000px;}
.x0_c00428{left:0.000000px;}
.x9_c00428{left:20.550000px;}
.xa_c00428{left:25.650000px;}
.x2_c00428{left:29.400000px;}
.x3_c00428{left:30.750000px;}
.x4_c00428{left:32.700000px;}
.x7_c00428{left:34.050000px;}
.x5_c00428{left:35.100000px;}
.x6_c00428{left:36.150000px;}
.x8_c00428{left:64.200000px;}
.x1_c00428{left:178.950000px;}
.xc_c00428{left:216.264267px;}
.xb_c00428{left:263.550000px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls9_c00428{letter-spacing:-5.333333pt;}
.ls8_c00428{letter-spacing:0.000000pt;}
.ls2_c00428{letter-spacing:0.853333pt;}
.ls1_c00428{letter-spacing:2.666667pt;}
.ls0_c00428{letter-spacing:4.578133pt;}
.ls6_c00428{letter-spacing:6.186667pt;}
.ls4_c00428{letter-spacing:6.656000pt;}
.ls3_c00428{letter-spacing:9.056000pt;}
.ls5_c00428{letter-spacing:14.186667pt;}
.ls7_c00428{letter-spacing:14.800000pt;}
.ws0_c00428{word-spacing:-24.960000pt;}
.ws2_c00428{word-spacing:-20.800000pt;}
.ws1_c00428{word-spacing:-15.424000pt;}
.ws3_c00428{word-spacing:0.000000pt;}
._10_c00428{margin-left:-13.013333pt;}
._c_c00428{margin-left:-6.912000pt;}
._b_c00428{margin-left:-5.482667pt;}
._8_c00428{margin-left:-4.266667pt;}
._7_c00428{margin-left:-3.200000pt;}
._0_c00428{margin-left:-2.026667pt;}
._9_c00428{margin-left:-1.002667pt;}
._5_c00428{width:1.408000pt;}
._3_c00428{width:2.304000pt;}
._2_c00428{width:3.904000pt;}
._4_c00428{width:5.632000pt;}
._1_c00428{width:7.146667pt;}
._a_c00428{width:8.256000pt;}
._11_c00428{width:9.706667pt;}
._6_c00428{width:11.072000pt;}
._e_c00428{width:12.693333pt;}
._13_c00428{width:13.632000pt;}
._f_c00428{width:14.528000pt;}
._12_c00428{width:16.960000pt;}
._16_c00428{width:19.029333pt;}
._15_c00428{width:23.552000pt;}
._14_c00428{width:28.586667pt;}
._d_c00428{width:32.448000pt;}
._17_c00428{width:34.496000pt;}
._18_c00428{width:149.696000pt;}
.fs3_c00428{font-size:42.666667pt;}
.fs1_c00428{font-size:51.200000pt;}
.fs4_c00428{font-size:53.333333pt;}
.fs2_c00428{font-size:56.000000pt;}
.fs0_c00428{font-size:64.000000pt;}
.fs5_c00428{font-size:85.333333pt;}
.y0_c00428{bottom:0.000000pt;}
.y1f_c00428{bottom:2.760000pt;}
.y1e_c00428{bottom:6.425217pt;}
.y1d_c00428{bottom:40.240000pt;}
.y1c_c00428{bottom:63.573333pt;}
.y1b_c00428{bottom:86.373333pt;}
.y1a_c00428{bottom:108.506667pt;}
.y19_c00428{bottom:130.773333pt;}
.y18_c00428{bottom:152.640000pt;}
.y17_c00428{bottom:174.640000pt;}
.y16_c00428{bottom:196.240000pt;}
.y15_c00428{bottom:218.106667pt;}
.y14_c00428{bottom:239.440000pt;}
.y13_c00428{bottom:262.106667pt;}
.y12_c00428{bottom:282.906667pt;}
.y11_c00428{bottom:303.573333pt;}
.y10_c00428{bottom:324.640000pt;}
.yf_c00428{bottom:346.506667pt;}
.ye_c00428{bottom:369.573333pt;}
.yd_c00428{bottom:390.240000pt;}
.yc_c00428{bottom:412.773333pt;}
.yb_c00428{bottom:434.373333pt;}
.ya_c00428{bottom:456.240000pt;}
.y9_c00428{bottom:477.840000pt;}
.y8_c00428{bottom:500.640000pt;}
.y7_c00428{bottom:525.040000pt;}
.y6_c00428{bottom:544.106667pt;}
.y5_c00428{bottom:566.640000pt;}
.y4_c00428{bottom:586.773333pt;}
.y3_c00428{bottom:608.906667pt;}
.y2_c00428{bottom:632.373333pt;}
.y1_c00428{bottom:652.506667pt;}
.h5_c00428{height:11.733399pt;}
.h6_c00428{height:38.937500pt;}
.h2_c00428{height:74.906250pt;}
.h3_c00428{height:81.031250pt;}
.h4_c00428{height:99.875000pt;}
.h1_c00428{height:698.000000pt;}
.h0_c00428{height:698.133333pt;}
.w2_c00428{width:93.222667pt;}
.w1_c00428{width:470.000000pt;}
.w0_c00428{width:470.133333pt;}
.x0_c00428{left:0.000000pt;}
.x9_c00428{left:18.266667pt;}
.xa_c00428{left:22.800000pt;}
.x2_c00428{left:26.133333pt;}
.x3_c00428{left:27.333333pt;}
.x4_c00428{left:29.066667pt;}
.x7_c00428{left:30.266667pt;}
.x5_c00428{left:31.200000pt;}
.x6_c00428{left:32.133333pt;}
.x8_c00428{left:57.066667pt;}
.x1_c00428{left:159.066667pt;}
.xc_c00428{left:192.234904pt;}
.xb_c00428{left:234.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_942659e120b0b4efceac0888.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00429;src:url('chunks/assets/font_5b338fc7b2e641f05d4f6374.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:1.568848;font-style:normal;font-weight:normal;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_7934ddbd2e16dd83fd49b1a6.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00429{font-family:ff4_c00429;line-height:1.219238;font-style: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:3.000000px;}
.sc__c00429{text-shadow:none;}
.sc0_c00429{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00429{-webkit-text-stroke:0px transparent;}
.sc0_c00429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00429{word-spacing:-33.192000px;}
.ws1_c00429{word-spacing:-14.460000px;}
.ws2_c00429{word-spacing:0.000000px;}
._16_c00429{margin-left:-11.628000px;}
._17_c00429{margin-left:-9.324000px;}
._13_c00429{margin-left:-7.848000px;}
._9_c00429{margin-left:-5.976000px;}
._14_c00429{margin-left:-4.452000px;}
._c_c00429{margin-left:-3.384000px;}
._4_c00429{margin-left:-2.304000px;}
._5_c00429{margin-left:-1.008000px;}
._1_c00429{width:1.848000px;}
._2_c00429{width:2.940000px;}
._0_c00429{width:4.788000px;}
._7_c00429{width:6.120000px;}
._18_c00429{width:7.776000px;}
._a_c00429{width:9.000000px;}
._15_c00429{width:10.320000px;}
._3_c00429{width:11.628000px;}
._8_c00429{width:12.852000px;}
._e_c00429{width:14.760000px;}
._10_c00429{width:16.560000px;}
._11_c00429{width:17.832000px;}
._6_c00429{width:19.260000px;}
._b_c00429{width:21.888000px;}
._1a_c00429{width:23.796000px;}
._f_c00429{width:24.840000px;}
._1b_c00429{width:27.936000px;}
._d_c00429{width:30.132000px;}
._1f_c00429{width:32.544000px;}
._1c_c00429{width:33.624000px;}
._12_c00429{width:35.184000px;}
._1e_c00429{width:40.716000px;}
._1d_c00429{width:51.732000px;}
._19_c00429{width:256.932000px;}
.fc2_c00429{color:transparent;}
.fc1_c00429{color:rgb(128,128,128);}
.fc0_c00429{color:rgb(0,0,0);}
.fs3_c00429{font-size:48.000000px;}
.fs2_c00429{font-size:60.000000px;}
.fs1_c00429{font-size:72.000000px;}
.fs0_c00429{font-size:84.000000px;}
.y0_c00429{bottom:0.000000px;}
.y1f_c00429{bottom:3.105000px;}
.y1e_c00429{bottom:7.228363px;}
.y1d_c00429{bottom:30.150000px;}
.y1c_c00429{bottom:54.750000px;}
.y1b_c00429{bottom:80.700000px;}
.y1a_c00429{bottom:105.000000px;}
.y19_c00429{bottom:130.350000px;}
.y18_c00429{bottom:154.950000px;}
.y17_c00429{bottom:180.300000px;}
.y16_c00429{bottom:205.200000px;}
.y15_c00429{bottom:229.200000px;}
.y14_c00429{bottom:254.550000px;}
.y13_c00429{bottom:279.450000px;}
.y12_c00429{bottom:304.050000px;}
.y11_c00429{bottom:327.750000px;}
.y10_c00429{bottom:352.650000px;}
.yf_c00429{bottom:377.400000px;}
.ye_c00429{bottom:400.950000px;}
.yd_c00429{bottom:426.300000px;}
.yc_c00429{bottom:450.000000px;}
.yb_c00429{bottom:474.600000px;}
.ya_c00429{bottom:499.200000px;}
.y9_c00429{bottom:523.500000px;}
.y8_c00429{bottom:548.100000px;}
.y7_c00429{bottom:572.400000px;}
.y6_c00429{bottom:597.150000px;}
.y5_c00429{bottom:621.750000px;}
.y4_c00429{bottom:646.650000px;}
.y3_c00429{bottom:671.250000px;}
.y2_c00429{bottom:695.850000px;}
.y1_c00429{bottom:720.450000px;}
.h6_c00429{height:13.200074px;}
.h7_c00429{height:43.804688px;}
.h5_c00429{height:75.966797px;}
.h2_c00429{height:82.400391px;}
.h3_c00429{height:91.160156px;}
.h4_c00429{height:91.760156px;}
.h0_c00429{height:778.950000px;}
.h1_c00429{height:779.250000px;}
.w2_c00429{width:104.875500px;}
.w1_c00429{width:493.500000px;}
.w0_c00429{width:493.800000px;}
.x0_c00429{left:0.000000px;}
.x4_c00429{left:80.400000px;}
.x5_c00429{left:81.450000px;}
.x3_c00429{left:83.100000px;}
.x2_c00429{left:84.450000px;}
.x7_c00429{left:198.714249px;}
.x1_c00429{left:204.150000px;}
.x6_c00429{left:436.350000px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls0_c00429{letter-spacing:0.000000pt;}
.ls1_c00429{letter-spacing:2.666667pt;}
.ws0_c00429{word-spacing:-29.504000pt;}
.ws1_c00429{word-spacing:-12.853333pt;}
.ws2_c00429{word-spacing:0.000000pt;}
._16_c00429{margin-left:-10.336000pt;}
._17_c00429{margin-left:-8.288000pt;}
._13_c00429{margin-left:-6.976000pt;}
._9_c00429{margin-left:-5.312000pt;}
._14_c00429{margin-left:-3.957333pt;}
._c_c00429{margin-left:-3.008000pt;}
._4_c00429{margin-left:-2.048000pt;}
._5_c00429{margin-left:-0.896000pt;}
._1_c00429{width:1.642667pt;}
._2_c00429{width:2.613333pt;}
._0_c00429{width:4.256000pt;}
._7_c00429{width:5.440000pt;}
._18_c00429{width:6.912000pt;}
._a_c00429{width:8.000000pt;}
._15_c00429{width:9.173333pt;}
._3_c00429{width:10.336000pt;}
._8_c00429{width:11.424000pt;}
._e_c00429{width:13.120000pt;}
._10_c00429{width:14.720000pt;}
._11_c00429{width:15.850667pt;}
._6_c00429{width:17.120000pt;}
._b_c00429{width:19.456000pt;}
._1a_c00429{width:21.152000pt;}
._f_c00429{width:22.080000pt;}
._1b_c00429{width:24.832000pt;}
._d_c00429{width:26.784000pt;}
._1f_c00429{width:28.928000pt;}
._1c_c00429{width:29.888000pt;}
._12_c00429{width:31.274667pt;}
._1e_c00429{width:36.192000pt;}
._1d_c00429{width:45.984000pt;}
._19_c00429{width:228.384000pt;}
.fs3_c00429{font-size:42.666667pt;}
.fs2_c00429{font-size:53.333333pt;}
.fs1_c00429{font-size:64.000000pt;}
.fs0_c00429{font-size:74.666667pt;}
.y0_c00429{bottom:0.000000pt;}
.y1f_c00429{bottom:2.760000pt;}
.y1e_c00429{bottom:6.425212pt;}
.y1d_c00429{bottom:26.800000pt;}
.y1c_c00429{bottom:48.666667pt;}
.y1b_c00429{bottom:71.733333pt;}
.y1a_c00429{bottom:93.333333pt;}
.y19_c00429{bottom:115.866667pt;}
.y18_c00429{bottom:137.733333pt;}
.y17_c00429{bottom:160.266667pt;}
.y16_c00429{bottom:182.400000pt;}
.y15_c00429{bottom:203.733333pt;}
.y14_c00429{bottom:226.266667pt;}
.y13_c00429{bottom:248.400000pt;}
.y12_c00429{bottom:270.266667pt;}
.y11_c00429{bottom:291.333333pt;}
.y10_c00429{bottom:313.466667pt;}
.yf_c00429{bottom:335.466667pt;}
.ye_c00429{bottom:356.400000pt;}
.yd_c00429{bottom:378.933333pt;}
.yc_c00429{bottom:400.000000pt;}
.yb_c00429{bottom:421.866667pt;}
.ya_c00429{bottom:443.733333pt;}
.y9_c00429{bottom:465.333333pt;}
.y8_c00429{bottom:487.200000pt;}
.y7_c00429{bottom:508.800000pt;}
.y6_c00429{bottom:530.800000pt;}
.y5_c00429{bottom:552.666667pt;}
.y4_c00429{bottom:574.800000pt;}
.y3_c00429{bottom:596.666667pt;}
.y2_c00429{bottom:618.533333pt;}
.y1_c00429{bottom:640.400000pt;}
.h6_c00429{height:11.733399pt;}
.h7_c00429{height:38.937500pt;}
.h5_c00429{height:67.526042pt;}
.h2_c00429{height:73.244792pt;}
.h3_c00429{height:81.031250pt;}
.h4_c00429{height:81.564583pt;}
.h0_c00429{height:692.400000pt;}
.h1_c00429{height:692.666667pt;}
.w2_c00429{width:93.222667pt;}
.w1_c00429{width:438.666667pt;}
.w0_c00429{width:438.933333pt;}
.x0_c00429{left:0.000000pt;}
.x4_c00429{left:71.466667pt;}
.x5_c00429{left:72.400000pt;}
.x3_c00429{left:73.866667pt;}
.x2_c00429{left:75.066667pt;}
.x7_c00429{left:176.634888pt;}
.x1_c00429{left:181.466667pt;}
.x6_c00429{left:387.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f3f032eb7a857d58866a1e55.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00430;src:url('chunks/assets/font_a3340e8e7c17a60f5cfa5b93.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:1.568848;font-style:normal;font-weight:normal;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_e8b54b509e713354a71f1613.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00430{font-family:ff4_c00430;line-height:1.219238;font-style: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;}
.ls2_c00430{letter-spacing:0.000000px;}
.ls1_c00430{letter-spacing:3.000000px;}
.ls3_c00430{letter-spacing:6.000000px;}
.ls0_c00430{letter-spacing:427.509000px;}
.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:-17.352000px;}
.ws0_c00430{word-spacing:-5.328000px;}
.ws2_c00430{word-spacing:0.000000px;}
._20_c00430{margin-left:-31.716000px;}
._1a_c00430{margin-left:-17.568000px;}
._22_c00430{margin-left:-15.012000px;}
._1c_c00430{margin-left:-13.536000px;}
._1f_c00430{margin-left:-12.024000px;}
._19_c00430{margin-left:-10.968000px;}
._10_c00430{margin-left:-8.988000px;}
._1e_c00430{margin-left:-7.104000px;}
._e_c00430{margin-left:-5.916000px;}
._4_c00430{margin-left:-4.788000px;}
._9_c00430{margin-left:-2.916000px;}
._c_c00430{margin-left:-1.728000px;}
._6_c00430{width:1.176000px;}
._a_c00430{width:2.340000px;}
._5_c00430{width:3.612000px;}
._1b_c00430{width:4.644000px;}
._7_c00430{width:5.712000px;}
._1_c00430{width:7.308000px;}
._1d_c00430{width:9.276000px;}
._0_c00430{width:10.416000px;}
._3_c00430{width:12.012000px;}
._2_c00430{width:13.104000px;}
._d_c00430{width:14.256000px;}
._b_c00430{width:15.360000px;}
._18_c00430{width:18.408000px;}
._12_c00430{width:19.968000px;}
._17_c00430{width:22.104000px;}
._15_c00430{width:33.378000px;}
._13_c00430{width:74.658000px;}
._11_c00430{width:165.060000px;}
._f_c00430{width:211.455000px;}
._16_c00430{width:217.884000px;}
._14_c00430{width:258.384000px;}
._23_c00430{width:275.760000px;}
._8_c00430{width:328.776000px;}
._21_c00430{width:827.316000px;}
.fc2_c00430{color:transparent;}
.fc1_c00430{color:rgb(128,128,128);}
.fc0_c00430{color:rgb(0,0,0);}
.fs3_c00430{font-size:42.000000px;}
.fs5_c00430{font-size:48.000000px;}
.fs2_c00430{font-size:51.000000px;}
.fs4_c00430{font-size:60.000000px;}
.fs1_c00430{font-size:72.000000px;}
.fs0_c00430{font-size:84.000000px;}
.y0_c00430{bottom:0.000000px;}
.y20_c00430{bottom:3.105000px;}
.y1f_c00430{bottom:7.228369px;}
.y1e_c00430{bottom:45.120000px;}
.y1d_c00430{bottom:70.470000px;}
.y1c_c00430{bottom:95.820000px;}
.y1b_c00430{bottom:121.770000px;}
.y1a_c00430{bottom:146.070000px;}
.y19_c00430{bottom:171.420000px;}
.y18_c00430{bottom:196.770000px;}
.y17_c00430{bottom:221.070000px;}
.y16_c00430{bottom:247.320000px;}
.y15_c00430{bottom:271.620000px;}
.y14_c00430{bottom:295.920000px;}
.y13_c00430{bottom:319.920000px;}
.y12_c00430{bottom:342.870000px;}
.y11_c00430{bottom:367.170000px;}
.y10_c00430{bottom:393.570000px;}
.yf_c00430{bottom:415.470000px;}
.ye_c00430{bottom:440.070000px;}
.yd_c00430{bottom:465.420000px;}
.yc_c00430{bottom:489.420000px;}
.yb_c00430{bottom:514.320000px;}
.ya_c00430{bottom:538.920000px;}
.y9_c00430{bottom:563.970000px;}
.y8_c00430{bottom:590.220000px;}
.y7_c00430{bottom:612.870000px;}
.y6_c00430{bottom:637.770000px;}
.y5_c00430{bottom:662.820000px;}
.y4_c00430{bottom:674.220000px;}
.y3_c00430{bottom:687.720000px;}
.y2_c00430{bottom:712.020000px;}
.y1_c00430{bottom:737.370000px;}
.h5_c00430{height:13.200073px;}
.h6_c00430{height:43.804688px;}
.h4_c00430{height:70.224609px;}
.h2_c00430{height:82.400391px;}
.h3_c00430{height:91.160156px;}
.h1_c00430{height:783.750000px;}
.h0_c00430{height:784.050000px;}
.w2_c00430{width:104.875500px;}
.w0_c00430{width:533.775000px;}
.w1_c00430{width:534.000000px;}
.x0_c00430{left:0.000000px;}
.x2_c00430{left:27.750000px;}
.x4_c00430{left:30.000000px;}
.x5_c00430{left:31.350000px;}
.x6_c00430{left:32.700000px;}
.x8_c00430{left:38.850000px;}
.x3_c00430{left:60.750000px;}
.x7_c00430{left:88.800000px;}
.x1_c00430{left:121.950000px;}
.x9_c00430{left:218.701767px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls2_c00430{letter-spacing:0.000000pt;}
.ls1_c00430{letter-spacing:2.666667pt;}
.ls3_c00430{letter-spacing:5.333333pt;}
.ls0_c00430{letter-spacing:380.008000pt;}
.ws1_c00430{word-spacing:-15.424000pt;}
.ws0_c00430{word-spacing:-4.736000pt;}
.ws2_c00430{word-spacing:0.000000pt;}
._20_c00430{margin-left:-28.192000pt;}
._1a_c00430{margin-left:-15.616000pt;}
._22_c00430{margin-left:-13.344000pt;}
._1c_c00430{margin-left:-12.032000pt;}
._1f_c00430{margin-left:-10.688000pt;}
._19_c00430{margin-left:-9.749333pt;}
._10_c00430{margin-left:-7.989333pt;}
._1e_c00430{margin-left:-6.314667pt;}
._e_c00430{margin-left:-5.258667pt;}
._4_c00430{margin-left:-4.256000pt;}
._9_c00430{margin-left:-2.592000pt;}
._c_c00430{margin-left:-1.536000pt;}
._6_c00430{width:1.045333pt;}
._a_c00430{width:2.080000pt;}
._5_c00430{width:3.210667pt;}
._1b_c00430{width:4.128000pt;}
._7_c00430{width:5.077333pt;}
._1_c00430{width:6.496000pt;}
._1d_c00430{width:8.245333pt;}
._0_c00430{width:9.258667pt;}
._3_c00430{width:10.677333pt;}
._2_c00430{width:11.648000pt;}
._d_c00430{width:12.672000pt;}
._b_c00430{width:13.653333pt;}
._18_c00430{width:16.362667pt;}
._12_c00430{width:17.749333pt;}
._17_c00430{width:19.648000pt;}
._15_c00430{width:29.669333pt;}
._13_c00430{width:66.362667pt;}
._11_c00430{width:146.720000pt;}
._f_c00430{width:187.960000pt;}
._16_c00430{width:193.674667pt;}
._14_c00430{width:229.674667pt;}
._23_c00430{width:245.120000pt;}
._8_c00430{width:292.245333pt;}
._21_c00430{width:735.392000pt;}
.fs3_c00430{font-size:37.333333pt;}
.fs5_c00430{font-size:42.666667pt;}
.fs2_c00430{font-size:45.333333pt;}
.fs4_c00430{font-size:53.333333pt;}
.fs1_c00430{font-size:64.000000pt;}
.fs0_c00430{font-size:74.666667pt;}
.y0_c00430{bottom:0.000000pt;}
.y20_c00430{bottom:2.760000pt;}
.y1f_c00430{bottom:6.425217pt;}
.y1e_c00430{bottom:40.106667pt;}
.y1d_c00430{bottom:62.640000pt;}
.y1c_c00430{bottom:85.173333pt;}
.y1b_c00430{bottom:108.240000pt;}
.y1a_c00430{bottom:129.840000pt;}
.y19_c00430{bottom:152.373333pt;}
.y18_c00430{bottom:174.906667pt;}
.y17_c00430{bottom:196.506667pt;}
.y16_c00430{bottom:219.840000pt;}
.y15_c00430{bottom:241.440000pt;}
.y14_c00430{bottom:263.040000pt;}
.y13_c00430{bottom:284.373333pt;}
.y12_c00430{bottom:304.773333pt;}
.y11_c00430{bottom:326.373333pt;}
.y10_c00430{bottom:349.840000pt;}
.yf_c00430{bottom:369.306667pt;}
.ye_c00430{bottom:391.173333pt;}
.yd_c00430{bottom:413.706667pt;}
.yc_c00430{bottom:435.040000pt;}
.yb_c00430{bottom:457.173333pt;}
.ya_c00430{bottom:479.040000pt;}
.y9_c00430{bottom:501.306667pt;}
.y8_c00430{bottom:524.640000pt;}
.y7_c00430{bottom:544.773333pt;}
.y6_c00430{bottom:566.906667pt;}
.y5_c00430{bottom:589.173333pt;}
.y4_c00430{bottom:599.306667pt;}
.y3_c00430{bottom:611.306667pt;}
.y2_c00430{bottom:632.906667pt;}
.y1_c00430{bottom:655.440000pt;}
.h5_c00430{height:11.733399pt;}
.h6_c00430{height:38.937500pt;}
.h4_c00430{height:62.421875pt;}
.h2_c00430{height:73.244792pt;}
.h3_c00430{height:81.031250pt;}
.h1_c00430{height:696.666667pt;}
.h0_c00430{height:696.933333pt;}
.w2_c00430{width:93.222667pt;}
.w0_c00430{width:474.466667pt;}
.w1_c00430{width:474.666667pt;}
.x0_c00430{left:0.000000pt;}
.x2_c00430{left:24.666667pt;}
.x4_c00430{left:26.666667pt;}
.x5_c00430{left:27.866667pt;}
.x6_c00430{left:29.066667pt;}
.x8_c00430{left:34.533333pt;}
.x3_c00430{left:54.000000pt;}
.x7_c00430{left:78.933333pt;}
.x1_c00430{left:108.400000pt;}
.x9_c00430{left:194.401571pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_66ecab3d79a2077ddf738674.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.480469;font-style:normal;font-weight:normal;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_51c4a12a0622de285351fb50.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:1.568848;font-style:normal;font-weight:normal;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_89718c7fa965801ad4a935e4.woff2')format("woff");}.ff3_c00431{font-family:ff3_c00431;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00431;src:url('chunks/assets/font_b873334cc6fa12ce8b2e1c7d.woff2')format("woff");}.ff4_c00431{font-family:ff4_c00431;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00431;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00431{font-family:ff5_c00431;line-height:1.219238;font-style: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:3.000000px;}
.ls0_c00431{letter-spacing:8.700000px;}
.ls2_c00431{letter-spacing:14.802000px;}
.sc__c00431{text-shadow:none;}
.sc0_c00431{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00431{-webkit-text-stroke:0px transparent;}
.sc0_c00431{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00431{word-spacing:-27.660000px;}
.ws1_c00431{word-spacing:-20.250000px;}
.ws0_c00431{word-spacing:-16.128000px;}
.ws3_c00431{word-spacing:0.000000px;}
._14_c00431{margin-left:-14.112000px;}
._12_c00431{margin-left:-12.306000px;}
._17_c00431{margin-left:-9.792000px;}
._13_c00431{margin-left:-7.644000px;}
._15_c00431{margin-left:-6.612000px;}
._10_c00431{margin-left:-5.574000px;}
._b_c00431{margin-left:-4.200000px;}
._e_c00431{margin-left:-2.622000px;}
._a_c00431{margin-left:-1.254000px;}
._c_c00431{width:1.008000px;}
._8_c00431{width:2.016000px;}
._9_c00431{width:3.024000px;}
._d_c00431{width:4.392000px;}
._7_c00431{width:5.400000px;}
._6_c00431{width:7.344000px;}
._2_c00431{width:8.568000px;}
._4_c00431{width:9.576000px;}
._3_c00431{width:11.160000px;}
._f_c00431{width:13.200000px;}
._1_c00431{width:14.976000px;}
._0_c00431{width:19.080000px;}
._5_c00431{width:23.256000px;}
._18_c00431{width:31.851000px;}
._11_c00431{width:86.496000px;}
._16_c00431{width:123.120000px;}
._19_c00431{width:1111.188000px;}
.fc2_c00431{color:transparent;}
.fc1_c00431{color:rgb(128,128,128);}
.fc0_c00431{color:rgb(0,0,0);}
.fs6_c00431{font-size:48.000000px;}
.fs4_c00431{font-size:60.000000px;}
.fs3_c00431{font-size:66.000000px;}
.fs0_c00431{font-size:72.000000px;}
.fs1_c00431{font-size:75.000000px;}
.fs5_c00431{font-size:78.000000px;}
.fs2_c00431{font-size:81.000000px;}
.y0_c00431{bottom:0.000000px;}
.y1f_c00431{bottom:3.105000px;}
.y1e_c00431{bottom:7.228363px;}
.y1d_c00431{bottom:38.100000px;}
.y1c_c00431{bottom:63.450000px;}
.y1b_c00431{bottom:88.200000px;}
.y1a_c00431{bottom:113.400000px;}
.y19_c00431{bottom:138.450000px;}
.y18_c00431{bottom:163.350000px;}
.y17_c00431{bottom:188.550000px;}
.y16_c00431{bottom:213.750000px;}
.y15_c00431{bottom:238.950000px;}
.y14_c00431{bottom:263.250000px;}
.y13_c00431{bottom:288.300000px;}
.y12_c00431{bottom:312.300000px;}
.y11_c00431{bottom:337.500000px;}
.y10_c00431{bottom:362.100000px;}
.yf_c00431{bottom:386.850000px;}
.ye_c00431{bottom:411.750000px;}
.yd_c00431{bottom:436.050000px;}
.yc_c00431{bottom:460.650000px;}
.yb_c00431{bottom:484.350000px;}
.ya_c00431{bottom:508.950000px;}
.y9_c00431{bottom:533.550000px;}
.y8_c00431{bottom:555.600000px;}
.y7_c00431{bottom:582.600000px;}
.y6_c00431{bottom:607.950000px;}
.y5_c00431{bottom:632.850000px;}
.y4_c00431{bottom:657.450000px;}
.y3_c00431{bottom:682.050000px;}
.y2_c00431{bottom:706.500000px;}
.y1_c00431{bottom:733.050000px;}
.h6_c00431{height:13.200074px;}
.h7_c00431{height:43.804688px;}
.h5_c00431{height:81.632812px;}
.h2_c00431{height:84.269531px;}
.h3_c00431{height:91.160156px;}
.h4_c00431{height:98.756836px;}
.h1_c00431{height:788.250000px;}
.h0_c00431{height:788.400000px;}
.w1_c00431{width:104.875500px;}
.w0_c00431{width:482.250000px;}
.x0_c00431{left:0.000000px;}
.x8_c00431{left:69.450000px;}
.x7_c00431{left:70.800000px;}
.x6_c00431{left:72.600000px;}
.x5_c00431{left:74.550000px;}
.x4_c00431{left:75.600000px;}
.x3_c00431{left:77.550000px;}
.x2_c00431{left:79.950000px;}
.x9_c00431{left:112.350000px;}
.xa_c00431{left:192.939240px;}
.x1_c00431{left:204.450000px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls3_c00431{letter-spacing:0.000000pt;}
.ls1_c00431{letter-spacing:2.666667pt;}
.ls0_c00431{letter-spacing:7.733333pt;}
.ls2_c00431{letter-spacing:13.157333pt;}
.ws2_c00431{word-spacing:-24.586667pt;}
.ws1_c00431{word-spacing:-18.000000pt;}
.ws0_c00431{word-spacing:-14.336000pt;}
.ws3_c00431{word-spacing:0.000000pt;}
._14_c00431{margin-left:-12.544000pt;}
._12_c00431{margin-left:-10.938667pt;}
._17_c00431{margin-left:-8.704000pt;}
._13_c00431{margin-left:-6.794667pt;}
._15_c00431{margin-left:-5.877333pt;}
._10_c00431{margin-left:-4.954667pt;}
._b_c00431{margin-left:-3.733333pt;}
._e_c00431{margin-left:-2.330667pt;}
._a_c00431{margin-left:-1.114667pt;}
._c_c00431{width:0.896000pt;}
._8_c00431{width:1.792000pt;}
._9_c00431{width:2.688000pt;}
._d_c00431{width:3.904000pt;}
._7_c00431{width:4.800000pt;}
._6_c00431{width:6.528000pt;}
._2_c00431{width:7.616000pt;}
._4_c00431{width:8.512000pt;}
._3_c00431{width:9.920000pt;}
._f_c00431{width:11.733333pt;}
._1_c00431{width:13.312000pt;}
._0_c00431{width:16.960000pt;}
._5_c00431{width:20.672000pt;}
._18_c00431{width:28.312000pt;}
._11_c00431{width:76.885333pt;}
._16_c00431{width:109.440000pt;}
._19_c00431{width:987.722667pt;}
.fs6_c00431{font-size:42.666667pt;}
.fs4_c00431{font-size:53.333333pt;}
.fs3_c00431{font-size:58.666667pt;}
.fs0_c00431{font-size:64.000000pt;}
.fs1_c00431{font-size:66.666667pt;}
.fs5_c00431{font-size:69.333333pt;}
.fs2_c00431{font-size:72.000000pt;}
.y0_c00431{bottom:0.000000pt;}
.y1f_c00431{bottom:2.760000pt;}
.y1e_c00431{bottom:6.425212pt;}
.y1d_c00431{bottom:33.866667pt;}
.y1c_c00431{bottom:56.400000pt;}
.y1b_c00431{bottom:78.400000pt;}
.y1a_c00431{bottom:100.800000pt;}
.y19_c00431{bottom:123.066667pt;}
.y18_c00431{bottom:145.200000pt;}
.y17_c00431{bottom:167.600000pt;}
.y16_c00431{bottom:190.000000pt;}
.y15_c00431{bottom:212.400000pt;}
.y14_c00431{bottom:234.000000pt;}
.y13_c00431{bottom:256.266667pt;}
.y12_c00431{bottom:277.600000pt;}
.y11_c00431{bottom:300.000000pt;}
.y10_c00431{bottom:321.866667pt;}
.yf_c00431{bottom:343.866667pt;}
.ye_c00431{bottom:366.000000pt;}
.yd_c00431{bottom:387.600000pt;}
.yc_c00431{bottom:409.466667pt;}
.yb_c00431{bottom:430.533333pt;}
.ya_c00431{bottom:452.400000pt;}
.y9_c00431{bottom:474.266667pt;}
.y8_c00431{bottom:493.866667pt;}
.y7_c00431{bottom:517.866667pt;}
.y6_c00431{bottom:540.400000pt;}
.y5_c00431{bottom:562.533333pt;}
.y4_c00431{bottom:584.400000pt;}
.y3_c00431{bottom:606.266667pt;}
.y2_c00431{bottom:628.000000pt;}
.y1_c00431{bottom:651.600000pt;}
.h6_c00431{height:11.733399pt;}
.h7_c00431{height:38.937500pt;}
.h5_c00431{height:72.562500pt;}
.h2_c00431{height:74.906250pt;}
.h3_c00431{height:81.031250pt;}
.h4_c00431{height:87.783854pt;}
.h1_c00431{height:700.666667pt;}
.h0_c00431{height:700.800000pt;}
.w1_c00431{width:93.222667pt;}
.w0_c00431{width:428.666667pt;}
.x0_c00431{left:0.000000pt;}
.x8_c00431{left:61.733333pt;}
.x7_c00431{left:62.933333pt;}
.x6_c00431{left:64.533333pt;}
.x5_c00431{left:66.266667pt;}
.x4_c00431{left:67.200000pt;}
.x3_c00431{left:68.933333pt;}
.x2_c00431{left:71.066667pt;}
.x9_c00431{left:99.866667pt;}
.xa_c00431{left:171.501546pt;}
.x1_c00431{left:181.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_babb283a2011e45bed027c24.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.480469;font-style:normal;font-weight:normal;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_bda6c0016454c5d7e1518ace.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:1.568848;font-style:normal;font-weight:normal;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_81614ea2e689ee381f0027ed.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;line-height:1.575000;font-style:normal;font-weight:normal;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_d9309aa23e2a777619e9a4ec.woff2')format("woff");}.ff4_c00432{font-family:ff4_c00432;line-height:1.575000;font-style:normal;font-weight:normal;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_afaeff0c2ab7f7927a8e2c8c.woff2')format("woff");}.ff5_c00432{font-family:ff5_c00432;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00432;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00432{font-family:ff6_c00432;line-height:1.219238;font-style: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;}
.ls1_c00432{letter-spacing:0.000000px;}
.ls0_c00432{letter-spacing:3.000000px;}
.ls2_c00432{letter-spacing:6.000000px;}
.sc__c00432{text-shadow:none;}
.sc0_c00432{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00432{-webkit-text-stroke:0px transparent;}
.sc0_c00432{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00432{word-spacing:-17.352000px;}
.ws1_c00432{word-spacing:0.000000px;}
._8_c00432{margin-left:-15.696000px;}
._9_c00432{margin-left:-13.104000px;}
._14_c00432{margin-left:-11.448000px;}
._4_c00432{margin-left:-10.296000px;}
._15_c00432{margin-left:-8.640000px;}
._d_c00432{margin-left:-6.984000px;}
._e_c00432{margin-left:-5.688000px;}
._f_c00432{margin-left:-4.680000px;}
._a_c00432{margin-left:-3.600000px;}
._b_c00432{margin-left:-2.592000px;}
._c_c00432{margin-left:-1.152000px;}
._0_c00432{width:1.584000px;}
._2_c00432{width:2.664000px;}
._3_c00432{width:4.392000px;}
._1_c00432{width:5.472000px;}
._13_c00432{width:6.963000px;}
._6_c00432{width:8.928000px;}
._5_c00432{width:11.232000px;}
._17_c00432{width:12.492000px;}
._11_c00432{width:15.444000px;}
._12_c00432{width:25.083000px;}
._18_c00432{width:57.996000px;}
._16_c00432{width:92.304000px;}
._10_c00432{width:97.272000px;}
._19_c00432{width:279.156000px;}
._7_c00432{width:331.200000px;}
.fc2_c00432{color:transparent;}
.fc1_c00432{color:rgb(128,128,128);}
.fc0_c00432{color:rgb(0,0,0);}
.fs1_c00432{font-size:39.000000px;}
.fs4_c00432{font-size:48.000000px;}
.fs0_c00432{font-size:72.000000px;}
.fs3_c00432{font-size:84.000000px;}
.fs2_c00432{font-size:87.000000px;}
.y0_c00432{bottom:0.000000px;}
.y1f_c00432{bottom:3.105000px;}
.y1e_c00432{bottom:7.228355px;}
.y1d_c00432{bottom:49.185000px;}
.y1c_c00432{bottom:73.935000px;}
.y1b_c00432{bottom:100.935000px;}
.y1a_c00432{bottom:126.435000px;}
.y19_c00432{bottom:150.885000px;}
.y18_c00432{bottom:175.485000px;}
.y17_c00432{bottom:199.485000px;}
.y16_c00432{bottom:224.985000px;}
.y15_c00432{bottom:249.435000px;}
.y14_c00432{bottom:274.335000px;}
.y13_c00432{bottom:297.885000px;}
.y12_c00432{bottom:322.935000px;}
.y11_c00432{bottom:346.185000px;}
.y10_c00432{bottom:373.485000px;}
.yf_c00432{bottom:393.885000px;}
.ye_c00432{bottom:420.885000px;}
.yd_c00432{bottom:443.685000px;}
.yc_c00432{bottom:468.135000px;}
.yb_c00432{bottom:493.785000px;}
.ya_c00432{bottom:517.935000px;}
.y9_c00432{bottom:541.935000px;}
.y8_c00432{bottom:566.535000px;}
.y7_c00432{bottom:591.885000px;}
.y6_c00432{bottom:614.835000px;}
.y5_c00432{bottom:639.435000px;}
.y4_c00432{bottom:663.885000px;}
.y3_c00432{bottom:688.485000px;}
.y2_c00432{bottom:714.435000px;}
.y1_c00432{bottom:739.785000px;}
.h6_c00432{height:13.200074px;}
.h7_c00432{height:43.804688px;}
.h5_c00432{height:82.441406px;}
.h2_c00432{height:84.269531px;}
.h3_c00432{height:91.160156px;}
.h4_c00432{height:92.829000px;}
.h0_c00432{height:791.625000px;}
.h1_c00432{height:792.000000px;}
.w2_c00432{width:104.875500px;}
.w0_c00432{width:532.425000px;}
.w1_c00432{width:532.500000px;}
.x0_c00432{left:0.000000px;}
.x2_c00432{left:36.150000px;}
.x3_c00432{left:37.800000px;}
.x4_c00432{left:39.750000px;}
.x5_c00432{left:40.800000px;}
.x6_c00432{left:42.150000px;}
.x1_c00432{left:145.650000px;}
.x8_c00432{left:218.026749px;}
.x7_c00432{left:283.200000px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls1_c00432{letter-spacing:0.000000pt;}
.ls0_c00432{letter-spacing:2.666667pt;}
.ls2_c00432{letter-spacing:5.333333pt;}
.ws0_c00432{word-spacing:-15.424000pt;}
.ws1_c00432{word-spacing:0.000000pt;}
._8_c00432{margin-left:-13.952000pt;}
._9_c00432{margin-left:-11.648000pt;}
._14_c00432{margin-left:-10.176000pt;}
._4_c00432{margin-left:-9.152000pt;}
._15_c00432{margin-left:-7.680000pt;}
._d_c00432{margin-left:-6.208000pt;}
._e_c00432{margin-left:-5.056000pt;}
._f_c00432{margin-left:-4.160000pt;}
._a_c00432{margin-left:-3.200000pt;}
._b_c00432{margin-left:-2.304000pt;}
._c_c00432{margin-left:-1.024000pt;}
._0_c00432{width:1.408000pt;}
._2_c00432{width:2.368000pt;}
._3_c00432{width:3.904000pt;}
._1_c00432{width:4.864000pt;}
._13_c00432{width:6.189333pt;}
._6_c00432{width:7.936000pt;}
._5_c00432{width:9.984000pt;}
._17_c00432{width:11.104000pt;}
._11_c00432{width:13.728000pt;}
._12_c00432{width:22.296000pt;}
._18_c00432{width:51.552000pt;}
._16_c00432{width:82.048000pt;}
._10_c00432{width:86.464000pt;}
._19_c00432{width:248.138667pt;}
._7_c00432{width:294.400000pt;}
.fs1_c00432{font-size:34.666667pt;}
.fs4_c00432{font-size:42.666667pt;}
.fs0_c00432{font-size:64.000000pt;}
.fs3_c00432{font-size:74.666667pt;}
.fs2_c00432{font-size:77.333333pt;}
.y0_c00432{bottom:0.000000pt;}
.y1f_c00432{bottom:2.760000pt;}
.y1e_c00432{bottom:6.425204pt;}
.y1d_c00432{bottom:43.720000pt;}
.y1c_c00432{bottom:65.720000pt;}
.y1b_c00432{bottom:89.720000pt;}
.y1a_c00432{bottom:112.386667pt;}
.y19_c00432{bottom:134.120000pt;}
.y18_c00432{bottom:155.986667pt;}
.y17_c00432{bottom:177.320000pt;}
.y16_c00432{bottom:199.986667pt;}
.y15_c00432{bottom:221.720000pt;}
.y14_c00432{bottom:243.853333pt;}
.y13_c00432{bottom:264.786667pt;}
.y12_c00432{bottom:287.053333pt;}
.y11_c00432{bottom:307.720000pt;}
.y10_c00432{bottom:331.986667pt;}
.yf_c00432{bottom:350.120000pt;}
.ye_c00432{bottom:374.120000pt;}
.yd_c00432{bottom:394.386667pt;}
.yc_c00432{bottom:416.120000pt;}
.yb_c00432{bottom:438.920000pt;}
.ya_c00432{bottom:460.386667pt;}
.y9_c00432{bottom:481.720000pt;}
.y8_c00432{bottom:503.586667pt;}
.y7_c00432{bottom:526.120000pt;}
.y6_c00432{bottom:546.520000pt;}
.y5_c00432{bottom:568.386667pt;}
.y4_c00432{bottom:590.120000pt;}
.y3_c00432{bottom:611.986667pt;}
.y2_c00432{bottom:635.053333pt;}
.y1_c00432{bottom:657.586667pt;}
.h6_c00432{height:11.733399pt;}
.h7_c00432{height:38.937500pt;}
.h5_c00432{height:73.281250pt;}
.h2_c00432{height:74.906250pt;}
.h3_c00432{height:81.031250pt;}
.h4_c00432{height:82.514667pt;}
.h0_c00432{height:703.666667pt;}
.h1_c00432{height:704.000000pt;}
.w2_c00432{width:93.222667pt;}
.w0_c00432{width:473.266667pt;}
.w1_c00432{width:473.333333pt;}
.x0_c00432{left:0.000000pt;}
.x2_c00432{left:32.133333pt;}
.x3_c00432{left:33.600000pt;}
.x4_c00432{left:35.333333pt;}
.x5_c00432{left:36.266667pt;}
.x6_c00432{left:37.466667pt;}
.x1_c00432{left:129.466667pt;}
.x8_c00432{left:193.801554pt;}
.x7_c00432{left:251.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_14a9c6b8478c844d09a9d5fd.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00433;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00433;src:url('chunks/assets/font_7646f4b1f211f02d98e638fb.woff2')format("woff");}.ff3_c00433{font-family:ff3_c00433;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00433{font-family:ff4_c00433;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00433{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00433{vertical-align:0.000000px;}
.ls0_c00433{letter-spacing:0.000000px;}
.ls1_c00433{letter-spacing:3.000000px;}
.sc__c00433{text-shadow:none;}
.sc0_c00433{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00433{-webkit-text-stroke:0px transparent;}
.sc0_c00433{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00433{word-spacing:-42.000000px;}
.ws1_c00433{word-spacing:0.000000px;}
._18_c00433{margin-left:-29.808000px;}
._14_c00433{margin-left:-24.624000px;}
._22_c00433{margin-left:-19.596000px;}
._1e_c00433{margin-left:-17.202000px;}
._19_c00433{margin-left:-14.040000px;}
._e_c00433{margin-left:-11.928000px;}
._20_c00433{margin-left:-10.764000px;}
._c_c00433{margin-left:-9.072000px;}
._a_c00433{margin-left:-7.284000px;}
._b_c00433{margin-left:-5.904000px;}
._13_c00433{margin-left:-4.560000px;}
._4_c00433{margin-left:-2.952000px;}
._3_c00433{margin-left:-1.728000px;}
._8_c00433{width:1.008000px;}
._2_c00433{width:2.268000px;}
._1_c00433{width:3.612000px;}
._0_c00433{width:5.628000px;}
._7_c00433{width:7.128000px;}
._6_c00433{width:8.496000px;}
._f_c00433{width:10.344000px;}
._5_c00433{width:11.592000px;}
._d_c00433{width:12.708000px;}
._9_c00433{width:13.800000px;}
._11_c00433{width:14.904000px;}
._12_c00433{width:16.740000px;}
._10_c00433{width:18.144000px;}
._1f_c00433{width:27.426000px;}
._1b_c00433{width:44.244000px;}
._15_c00433{width:66.672000px;}
._16_c00433{width:82.464000px;}
._21_c00433{width:88.044000px;}
._1d_c00433{width:90.912000px;}
._1c_c00433{width:164.064000px;}
._17_c00433{width:165.132000px;}
._1a_c00433{width:176.472000px;}
._23_c00433{width:640.044000px;}
.fc2_c00433{color:transparent;}
.fc1_c00433{color:rgb(128,128,128);}
.fc0_c00433{color:rgb(0,0,0);}
.fs3_c00433{font-size:48.000000px;}
.fs2_c00433{font-size:69.000000px;}
.fs1_c00433{font-size:72.000000px;}
.fs0_c00433{font-size:84.000000px;}
.y0_c00433{bottom:0.000000px;}
.y1a_c00433{bottom:3.105000px;}
.y19_c00433{bottom:7.228369px;}
.y18_c00433{bottom:160.020000px;}
.y17_c00433{bottom:188.220000px;}
.y16_c00433{bottom:217.020000px;}
.y15_c00433{bottom:241.620000px;}
.y14_c00433{bottom:266.970000px;}
.y13_c00433{bottom:290.970000px;}
.y12_c00433{bottom:316.470000px;}
.y11_c00433{bottom:340.470000px;}
.y10_c00433{bottom:365.220000px;}
.yf_c00433{bottom:389.370000px;}
.ye_c00433{bottom:415.770000px;}
.yd_c00433{bottom:439.770000px;}
.yc_c00433{bottom:463.320000px;}
.yb_c00433{bottom:487.620000px;}
.ya_c00433{bottom:512.520000px;}
.y9_c00433{bottom:536.670000px;}
.y8_c00433{bottom:560.820000px;}
.y7_c00433{bottom:585.270000px;}
.y6_c00433{bottom:610.170000px;}
.y5_c00433{bottom:634.770000px;}
.y4_c00433{bottom:658.170000px;}
.y3_c00433{bottom:684.420000px;}
.y2_c00433{bottom:709.020000px;}
.y1_c00433{bottom:734.970000px;}
.h5_c00433{height:13.200073px;}
.h6_c00433{height:43.804688px;}
.h2_c00433{height:82.441406px;}
.h4_c00433{height:87.361816px;}
.h3_c00433{height:91.160156px;}
.h0_c00433{height:781.350000px;}
.h1_c00433{height:781.500000px;}
.w2_c00433{width:104.875500px;}
.w1_c00433{width:523.500000px;}
.w0_c00433{width:523.800000px;}
.x0_c00433{left:0.000000px;}
.x2_c00433{left:101.550000px;}
.x3_c00433{left:102.600000px;}
.x4_c00433{left:103.950000px;}
.x5_c00433{left:122.550000px;}
.x7_c00433{left:143.700000px;}
.x6_c00433{left:144.750000px;}
.x8_c00433{left:213.714249px;}
.x1_c00433{left:230.100000px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls0_c00433{letter-spacing:0.000000pt;}
.ls1_c00433{letter-spacing:2.666667pt;}
.ws0_c00433{word-spacing:-37.333333pt;}
.ws1_c00433{word-spacing:0.000000pt;}
._18_c00433{margin-left:-26.496000pt;}
._14_c00433{margin-left:-21.888000pt;}
._22_c00433{margin-left:-17.418667pt;}
._1e_c00433{margin-left:-15.290667pt;}
._19_c00433{margin-left:-12.480000pt;}
._e_c00433{margin-left:-10.602667pt;}
._20_c00433{margin-left:-9.568000pt;}
._c_c00433{margin-left:-8.064000pt;}
._a_c00433{margin-left:-6.474667pt;}
._b_c00433{margin-left:-5.248000pt;}
._13_c00433{margin-left:-4.053333pt;}
._4_c00433{margin-left:-2.624000pt;}
._3_c00433{margin-left:-1.536000pt;}
._8_c00433{width:0.896000pt;}
._2_c00433{width:2.016000pt;}
._1_c00433{width:3.210667pt;}
._0_c00433{width:5.002667pt;}
._7_c00433{width:6.336000pt;}
._6_c00433{width:7.552000pt;}
._f_c00433{width:9.194667pt;}
._5_c00433{width:10.304000pt;}
._d_c00433{width:11.296000pt;}
._9_c00433{width:12.266667pt;}
._11_c00433{width:13.248000pt;}
._12_c00433{width:14.880000pt;}
._10_c00433{width:16.128000pt;}
._1f_c00433{width:24.378667pt;}
._1b_c00433{width:39.328000pt;}
._15_c00433{width:59.264000pt;}
._16_c00433{width:73.301333pt;}
._21_c00433{width:78.261333pt;}
._1d_c00433{width:80.810667pt;}
._1c_c00433{width:145.834667pt;}
._17_c00433{width:146.784000pt;}
._1a_c00433{width:156.864000pt;}
._23_c00433{width:568.928000pt;}
.fs3_c00433{font-size:42.666667pt;}
.fs2_c00433{font-size:61.333333pt;}
.fs1_c00433{font-size:64.000000pt;}
.fs0_c00433{font-size:74.666667pt;}
.y0_c00433{bottom:0.000000pt;}
.y1a_c00433{bottom:2.760000pt;}
.y19_c00433{bottom:6.425217pt;}
.y18_c00433{bottom:142.240000pt;}
.y17_c00433{bottom:167.306667pt;}
.y16_c00433{bottom:192.906667pt;}
.y15_c00433{bottom:214.773333pt;}
.y14_c00433{bottom:237.306667pt;}
.y13_c00433{bottom:258.640000pt;}
.y12_c00433{bottom:281.306667pt;}
.y11_c00433{bottom:302.640000pt;}
.y10_c00433{bottom:324.640000pt;}
.yf_c00433{bottom:346.106667pt;}
.ye_c00433{bottom:369.573333pt;}
.yd_c00433{bottom:390.906667pt;}
.yc_c00433{bottom:411.840000pt;}
.yb_c00433{bottom:433.440000pt;}
.ya_c00433{bottom:455.573333pt;}
.y9_c00433{bottom:477.040000pt;}
.y8_c00433{bottom:498.506667pt;}
.y7_c00433{bottom:520.240000pt;}
.y6_c00433{bottom:542.373333pt;}
.y5_c00433{bottom:564.240000pt;}
.y4_c00433{bottom:585.040000pt;}
.y3_c00433{bottom:608.373333pt;}
.y2_c00433{bottom:630.240000pt;}
.y1_c00433{bottom:653.306667pt;}
.h5_c00433{height:11.733399pt;}
.h6_c00433{height:38.937500pt;}
.h2_c00433{height:73.281250pt;}
.h4_c00433{height:77.654948pt;}
.h3_c00433{height:81.031250pt;}
.h0_c00433{height:694.533333pt;}
.h1_c00433{height:694.666667pt;}
.w2_c00433{width:93.222667pt;}
.w1_c00433{width:465.333333pt;}
.w0_c00433{width:465.600000pt;}
.x0_c00433{left:0.000000pt;}
.x2_c00433{left:90.266667pt;}
.x3_c00433{left:91.200000pt;}
.x4_c00433{left:92.400000pt;}
.x5_c00433{left:108.933333pt;}
.x7_c00433{left:127.733333pt;}
.x6_c00433{left:128.666667pt;}
.x8_c00433{left:189.968221pt;}
.x1_c00433{left:204.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ecdefe903bf01c2d42aa4bcc.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.480469;font-style:normal;font-weight:normal;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_b5626f27b88421c4cad90022.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00434{font-family:ff3_c00434;line-height:1.219238;font-style: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;}
.ls1_c00434{letter-spacing:-3.000000px;}
.ls0_c00434{letter-spacing:0.000000px;}
.ls4_c00434{letter-spacing:3.000000px;}
.ls3_c00434{letter-spacing:24.000000px;}
.ls2_c00434{letter-spacing:33.000000px;}
.sc__c00434{text-shadow:none;}
.sc0_c00434{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00434{-webkit-text-stroke:0px transparent;}
.sc0_c00434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00434{word-spacing:-53.967000px;}
.ws0_c00434{word-spacing:-17.352000px;}
.ws3_c00434{word-spacing:0.000000px;}
.ws2_c00434{word-spacing:1.656000px;}
._11_c00434{margin-left:-12.501000px;}
._18_c00434{margin-left:-10.164000px;}
._10_c00434{margin-left:-8.091000px;}
._14_c00434{margin-left:-6.696000px;}
._15_c00434{margin-left:-5.358000px;}
._2_c00434{margin-left:-4.350000px;}
._12_c00434{margin-left:-2.424000px;}
._f_c00434{margin-left:-1.320000px;}
._9_c00434{width:1.944000px;}
._0_c00434{width:3.816000px;}
._a_c00434{width:4.824000px;}
._1_c00434{width:6.552000px;}
._4_c00434{width:8.184000px;}
._b_c00434{width:9.792000px;}
._8_c00434{width:11.223000px;}
._7_c00434{width:12.876000px;}
._6_c00434{width:13.920000px;}
._16_c00434{width:15.552000px;}
._17_c00434{width:17.208000px;}
._d_c00434{width:19.008000px;}
._c_c00434{width:22.128000px;}
._e_c00434{width:24.384000px;}
._3_c00434{width:26.139000px;}
._13_c00434{width:28.296000px;}
._5_c00434{width:66.903000px;}
.fc2_c00434{color:transparent;}
.fc1_c00434{color:rgb(128,128,128);}
.fc0_c00434{color:rgb(0,0,0);}
.fs4_c00434{font-size:48.000000px;}
.fs2_c00434{font-size:60.000000px;}
.fs3_c00434{font-size:69.000000px;}
.fs0_c00434{font-size:72.000000px;}
.fs1_c00434{font-size:87.000000px;}
.y0_c00434{bottom:0.000000px;}
.y1b_c00434{bottom:3.105000px;}
.y1a_c00434{bottom:7.228369px;}
.y19_c00434{bottom:59.370000px;}
.y18_c00434{bottom:85.770000px;}
.y17_c00434{bottom:113.070000px;}
.y16_c00434{bottom:138.720000px;}
.y15_c00434{bottom:162.270000px;}
.y14_c00434{bottom:185.220000px;}
.y13_c00434{bottom:212.220000px;}
.y12_c00434{bottom:237.570000px;}
.y11_c00434{bottom:262.620000px;}
.y10_c00434{bottom:285.870000px;}
.yf_c00434{bottom:308.520000px;}
.ye_c00434{bottom:333.420000px;}
.yd_c00434{bottom:357.420000px;}
.yc_c00434{bottom:381.270000px;}
.yb_c00434{bottom:406.020000px;}
.ya_c00434{bottom:431.220000px;}
.y9_c00434{bottom:482.520000px;}
.y8_c00434{bottom:531.570000px;}
.y7_c00434{bottom:559.620000px;}
.y6_c00434{bottom:587.520000px;}
.y5_c00434{bottom:614.520000px;}
.y4_c00434{bottom:642.570000px;}
.y3_c00434{bottom:668.970000px;}
.y2_c00434{bottom:697.170000px;}
.y1_c00434{bottom:725.670000px;}
.h6_c00434{height:13.200073px;}
.h7_c00434{height:43.804688px;}
.h5_c00434{height:75.966797px;}
.h2_c00434{height:84.269531px;}
.h4_c00434{height:91.160156px;}
.h3_c00434{height:101.825684px;}
.h0_c00434{height:775.950000px;}
.h1_c00434{height:776.250000px;}
.w2_c00434{width:104.875500px;}
.w0_c00434{width:540.525000px;}
.w1_c00434{width:540.750000px;}
.x0_c00434{left:0.000000px;}
.xc_c00434{left:17.250000px;}
.x3_c00434{left:28.800000px;}
.x2_c00434{left:39.450000px;}
.x4_c00434{left:55.650000px;}
.x5_c00434{left:95.850000px;}
.x9_c00434{left:135.000000px;}
.xa_c00434{left:147.600000px;}
.x6_c00434{left:155.550000px;}
.xd_c00434{left:181.950000px;}
.x8_c00434{left:190.350000px;}
.x7_c00434{left:194.850000px;}
.xb_c00434{left:211.650000px;}
.xe_c00434{left:222.076767px;}
.x1_c00434{left:378.900000px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls1_c00434{letter-spacing:-2.666667pt;}
.ls0_c00434{letter-spacing:0.000000pt;}
.ls4_c00434{letter-spacing:2.666667pt;}
.ls3_c00434{letter-spacing:21.333333pt;}
.ls2_c00434{letter-spacing:29.333333pt;}
.ws1_c00434{word-spacing:-47.970667pt;}
.ws0_c00434{word-spacing:-15.424000pt;}
.ws3_c00434{word-spacing:0.000000pt;}
.ws2_c00434{word-spacing:1.472000pt;}
._11_c00434{margin-left:-11.112000pt;}
._18_c00434{margin-left:-9.034667pt;}
._10_c00434{margin-left:-7.192000pt;}
._14_c00434{margin-left:-5.952000pt;}
._15_c00434{margin-left:-4.762667pt;}
._2_c00434{margin-left:-3.866667pt;}
._12_c00434{margin-left:-2.154667pt;}
._f_c00434{margin-left:-1.173333pt;}
._9_c00434{width:1.728000pt;}
._0_c00434{width:3.392000pt;}
._a_c00434{width:4.288000pt;}
._1_c00434{width:5.824000pt;}
._4_c00434{width:7.274667pt;}
._b_c00434{width:8.704000pt;}
._8_c00434{width:9.976000pt;}
._7_c00434{width:11.445333pt;}
._6_c00434{width:12.373333pt;}
._16_c00434{width:13.824000pt;}
._17_c00434{width:15.296000pt;}
._d_c00434{width:16.896000pt;}
._c_c00434{width:19.669333pt;}
._e_c00434{width:21.674667pt;}
._3_c00434{width:23.234667pt;}
._13_c00434{width:25.152000pt;}
._5_c00434{width:59.469333pt;}
.fs4_c00434{font-size:42.666667pt;}
.fs2_c00434{font-size:53.333333pt;}
.fs3_c00434{font-size:61.333333pt;}
.fs0_c00434{font-size:64.000000pt;}
.fs1_c00434{font-size:77.333333pt;}
.y0_c00434{bottom:0.000000pt;}
.y1b_c00434{bottom:2.760000pt;}
.y1a_c00434{bottom:6.425217pt;}
.y19_c00434{bottom:52.773333pt;}
.y18_c00434{bottom:76.240000pt;}
.y17_c00434{bottom:100.506667pt;}
.y16_c00434{bottom:123.306667pt;}
.y15_c00434{bottom:144.240000pt;}
.y14_c00434{bottom:164.640000pt;}
.y13_c00434{bottom:188.640000pt;}
.y12_c00434{bottom:211.173333pt;}
.y11_c00434{bottom:233.440000pt;}
.y10_c00434{bottom:254.106667pt;}
.yf_c00434{bottom:274.240000pt;}
.ye_c00434{bottom:296.373333pt;}
.yd_c00434{bottom:317.706667pt;}
.yc_c00434{bottom:338.906667pt;}
.yb_c00434{bottom:360.906667pt;}
.ya_c00434{bottom:383.306667pt;}
.y9_c00434{bottom:428.906667pt;}
.y8_c00434{bottom:472.506667pt;}
.y7_c00434{bottom:497.440000pt;}
.y6_c00434{bottom:522.240000pt;}
.y5_c00434{bottom:546.240000pt;}
.y4_c00434{bottom:571.173333pt;}
.y3_c00434{bottom:594.640000pt;}
.y2_c00434{bottom:619.706667pt;}
.y1_c00434{bottom:645.040000pt;}
.h6_c00434{height:11.733399pt;}
.h7_c00434{height:38.937500pt;}
.h5_c00434{height:67.526042pt;}
.h2_c00434{height:74.906250pt;}
.h4_c00434{height:81.031250pt;}
.h3_c00434{height:90.511719pt;}
.h0_c00434{height:689.733333pt;}
.h1_c00434{height:690.000000pt;}
.w2_c00434{width:93.222667pt;}
.w0_c00434{width:480.466667pt;}
.w1_c00434{width:480.666667pt;}
.x0_c00434{left:0.000000pt;}
.xc_c00434{left:15.333333pt;}
.x3_c00434{left:25.600000pt;}
.x2_c00434{left:35.066667pt;}
.x4_c00434{left:49.466667pt;}
.x5_c00434{left:85.200000pt;}
.x9_c00434{left:120.000000pt;}
.xa_c00434{left:131.200000pt;}
.x6_c00434{left:138.266667pt;}
.xd_c00434{left:161.733333pt;}
.x8_c00434{left:169.200000pt;}
.x7_c00434{left:173.200000pt;}
.xb_c00434{left:188.133333pt;}
.xe_c00434{left:197.401571pt;}
.x1_c00434{left:336.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f3e3577d4f9acfa5c387fc45.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.480469;font-style:normal;font-weight:normal;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_b833a8b74d6330d850776da8.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00435{font-family:ff3_c00435;line-height:1.219238;font-style: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;}
.ls1_c00435{letter-spacing:0.000000px;}
.ls0_c00435{letter-spacing:3.000000px;}
.sc__c00435{text-shadow:none;}
.sc0_c00435{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00435{-webkit-text-stroke:0px transparent;}
.sc0_c00435{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00435{word-spacing:-20.352000px;}
.ws0_c00435{word-spacing:-17.352000px;}
.ws3_c00435{word-spacing:0.000000px;}
.ws1_c00435{word-spacing:1.440000px;}
._1b_c00435{margin-left:-12.672000px;}
._a_c00435{margin-left:-8.064000px;}
._5_c00435{margin-left:-6.840000px;}
._13_c00435{margin-left:-4.248000px;}
._9_c00435{margin-left:-3.168000px;}
._7_c00435{margin-left:-1.728000px;}
._19_c00435{width:1.008000px;}
._6_c00435{width:2.016000px;}
._c_c00435{width:3.240000px;}
._b_c00435{width:4.608000px;}
._3_c00435{width:6.048000px;}
._8_c00435{width:7.056000px;}
._d_c00435{width:8.280000px;}
._1_c00435{width:9.504000px;}
._4_c00435{width:10.656000px;}
._15_c00435{width:11.664000px;}
._2_c00435{width:12.888000px;}
._1a_c00435{width:13.896000px;}
._0_c00435{width:15.048000px;}
._14_c00435{width:16.704000px;}
._10_c00435{width:18.600000px;}
._17_c00435{width:22.752000px;}
._16_c00435{width:23.832000px;}
._e_c00435{width:25.776000px;}
._18_c00435{width:27.360000px;}
._12_c00435{width:28.800000px;}
._f_c00435{width:33.912000px;}
._11_c00435{width:36.720000px;}
._1c_c00435{width:81.504000px;}
.fc2_c00435{color:transparent;}
.fc1_c00435{color:rgb(128,128,128);}
.fc0_c00435{color:rgb(0,0,0);}
.fs1_c00435{font-size:48.000000px;}
.fs0_c00435{font-size:72.000000px;}
.y0_c00435{bottom:0.000000px;}
.y1f_c00435{bottom:3.105000px;}
.y1e_c00435{bottom:7.228355px;}
.y1d_c00435{bottom:32.985000px;}
.y1c_c00435{bottom:54.285000px;}
.y1b_c00435{bottom:79.185000px;}
.y1a_c00435{bottom:104.535000px;}
.y19_c00435{bottom:129.585000px;}
.y18_c00435{bottom:154.485000px;}
.y17_c00435{bottom:178.485000px;}
.y16_c00435{bottom:203.385000px;}
.y15_c00435{bottom:228.435000px;}
.y14_c00435{bottom:253.485000px;}
.y13_c00435{bottom:278.685000px;}
.y12_c00435{bottom:303.285000px;}
.y11_c00435{bottom:328.635000px;}
.y10_c00435{bottom:352.635000px;}
.yf_c00435{bottom:377.985000px;}
.ye_c00435{bottom:402.585000px;}
.yd_c00435{bottom:427.635000px;}
.yc_c00435{bottom:451.485000px;}
.yb_c00435{bottom:476.085000px;}
.ya_c00435{bottom:500.835000px;}
.y9_c00435{bottom:524.835000px;}
.y8_c00435{bottom:549.435000px;}
.y7_c00435{bottom:574.335000px;}
.y6_c00435{bottom:598.935000px;}
.y5_c00435{bottom:623.685000px;}
.y4_c00435{bottom:647.685000px;}
.y3_c00435{bottom:673.335000px;}
.y2_c00435{bottom:697.935000px;}
.y1_c00435{bottom:723.585000px;}
.h4_c00435{height:13.200074px;}
.h5_c00435{height:43.804688px;}
.h2_c00435{height:84.269531px;}
.h3_c00435{height:91.160156px;}
.h1_c00435{height:779.250000px;}
.h0_c00435{height:779.475000px;}
.w2_c00435{width:104.875500px;}
.w0_c00435{width:518.100000px;}
.w1_c00435{width:518.250000px;}
.x0_c00435{left:0.000000px;}
.x4_c00435{left:105.300000px;}
.x5_c00435{left:107.100000px;}
.x2_c00435{left:108.300000px;}
.x3_c00435{left:109.650000px;}
.x7_c00435{left:210.864258px;}
.x1_c00435{left:244.950000px;}
.x6_c00435{left:458.400000px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls1_c00435{letter-spacing:0.000000pt;}
.ls0_c00435{letter-spacing:2.666667pt;}
.ws2_c00435{word-spacing:-18.090667pt;}
.ws0_c00435{word-spacing:-15.424000pt;}
.ws3_c00435{word-spacing:0.000000pt;}
.ws1_c00435{word-spacing:1.280000pt;}
._1b_c00435{margin-left:-11.264000pt;}
._a_c00435{margin-left:-7.168000pt;}
._5_c00435{margin-left:-6.080000pt;}
._13_c00435{margin-left:-3.776000pt;}
._9_c00435{margin-left:-2.816000pt;}
._7_c00435{margin-left:-1.536000pt;}
._19_c00435{width:0.896000pt;}
._6_c00435{width:1.792000pt;}
._c_c00435{width:2.880000pt;}
._b_c00435{width:4.096000pt;}
._3_c00435{width:5.376000pt;}
._8_c00435{width:6.272000pt;}
._d_c00435{width:7.360000pt;}
._1_c00435{width:8.448000pt;}
._4_c00435{width:9.472000pt;}
._15_c00435{width:10.368000pt;}
._2_c00435{width:11.456000pt;}
._1a_c00435{width:12.352000pt;}
._0_c00435{width:13.376000pt;}
._14_c00435{width:14.848000pt;}
._10_c00435{width:16.533333pt;}
._17_c00435{width:20.224000pt;}
._16_c00435{width:21.184000pt;}
._e_c00435{width:22.912000pt;}
._18_c00435{width:24.320000pt;}
._12_c00435{width:25.600000pt;}
._f_c00435{width:30.144000pt;}
._11_c00435{width:32.640000pt;}
._1c_c00435{width:72.448000pt;}
.fs1_c00435{font-size:42.666667pt;}
.fs0_c00435{font-size:64.000000pt;}
.y0_c00435{bottom:0.000000pt;}
.y1f_c00435{bottom:2.760000pt;}
.y1e_c00435{bottom:6.425204pt;}
.y1d_c00435{bottom:29.320000pt;}
.y1c_c00435{bottom:48.253333pt;}
.y1b_c00435{bottom:70.386667pt;}
.y1a_c00435{bottom:92.920000pt;}
.y19_c00435{bottom:115.186667pt;}
.y18_c00435{bottom:137.320000pt;}
.y17_c00435{bottom:158.653333pt;}
.y16_c00435{bottom:180.786667pt;}
.y15_c00435{bottom:203.053333pt;}
.y14_c00435{bottom:225.320000pt;}
.y13_c00435{bottom:247.720000pt;}
.y12_c00435{bottom:269.586667pt;}
.y11_c00435{bottom:292.120000pt;}
.y10_c00435{bottom:313.453333pt;}
.yf_c00435{bottom:335.986667pt;}
.ye_c00435{bottom:357.853333pt;}
.yd_c00435{bottom:380.120000pt;}
.yc_c00435{bottom:401.320000pt;}
.yb_c00435{bottom:423.186667pt;}
.ya_c00435{bottom:445.186667pt;}
.y9_c00435{bottom:466.520000pt;}
.y8_c00435{bottom:488.386667pt;}
.y7_c00435{bottom:510.520000pt;}
.y6_c00435{bottom:532.386667pt;}
.y5_c00435{bottom:554.386667pt;}
.y4_c00435{bottom:575.720000pt;}
.y3_c00435{bottom:598.520000pt;}
.y2_c00435{bottom:620.386667pt;}
.y1_c00435{bottom:643.186667pt;}
.h4_c00435{height:11.733399pt;}
.h5_c00435{height:38.937500pt;}
.h2_c00435{height:74.906250pt;}
.h3_c00435{height:81.031250pt;}
.h1_c00435{height:692.666667pt;}
.h0_c00435{height:692.866667pt;}
.w2_c00435{width:93.222667pt;}
.w0_c00435{width:460.533333pt;}
.w1_c00435{width:460.666667pt;}
.x0_c00435{left:0.000000pt;}
.x4_c00435{left:93.600000pt;}
.x5_c00435{left:95.200000pt;}
.x2_c00435{left:96.266667pt;}
.x3_c00435{left:97.466667pt;}
.x7_c00435{left:187.434896pt;}
.x1_c00435{left:217.733333pt;}
.x6_c00435{left:407.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_50e9508f8e51825da82e61f3.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.480469;font-style:normal;font-weight:normal;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_0bf9a5e6282906a945c1a97c.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00436{font-family:ff3_c00436;line-height:1.219238;font-style: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(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.v0_c00436{vertical-align:0.000000px;}
.ls2_c00436{letter-spacing:-3.000000px;}
.ls3_c00436{letter-spacing:0.000000px;}
.ls4_c00436{letter-spacing:3.000000px;}
.ls1_c00436{letter-spacing:14.571000px;}
.ls0_c00436{letter-spacing:265.233000px;}
.sc__c00436{text-shadow:none;}
.sc0_c00436{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00436{-webkit-text-stroke:0px transparent;}
.sc0_c00436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00436{word-spacing:-20.352000px;}
.ws0_c00436{word-spacing:-17.967000px;}
.ws1_c00436{word-spacing:-17.352000px;}
.ws2_c00436{word-spacing:-16.629000px;}
.ws4_c00436{word-spacing:0.000000px;}
._d_c00436{margin-left:-11.310000px;}
._b_c00436{margin-left:-9.474000px;}
._c_c00436{margin-left:-6.576000px;}
._4_c00436{margin-left:-5.307000px;}
._5_c00436{margin-left:-4.020000px;}
._6_c00436{margin-left:-2.160000px;}
._a_c00436{margin-left:-1.152000px;}
._1_c00436{width:1.218000px;}
._0_c00436{width:3.219000px;}
._f_c00436{width:4.233000px;}
._8_c00436{width:5.322000px;}
._2_c00436{width:7.308000px;}
._3_c00436{width:8.439000px;}
._9_c00436{width:9.654000px;}
._e_c00436{width:11.088000px;}
._7_c00436{width:12.528000px;}
._10_c00436{width:14.220000px;}
._11_c00436{width:16.047000px;}
._13_c00436{width:18.381000px;}
._12_c00436{width:21.894000px;}
._15_c00436{width:23.184000px;}
._14_c00436{width:26.694000px;}
._17_c00436{width:37.929000px;}
._16_c00436{width:83.169000px;}
.fc2_c00436{color:transparent;}
.fc1_c00436{color:rgb(128,128,128);}
.fc0_c00436{color:rgb(0,0,0);}
.fs3_c00436{font-size:48.000000px;}
.fs2_c00436{font-size:69.000000px;}
.fs1_c00436{font-size:72.000000px;}
.fs0_c00436{font-size:87.000000px;}
.y0_c00436{bottom:0.000000px;}
.y1f_c00436{bottom:3.105000px;}
.y1e_c00436{bottom:7.228369px;}
.y1d_c00436{bottom:41.820000px;}
.y1c_c00436{bottom:69.870000px;}
.y1b_c00436{bottom:95.520000px;}
.y1a_c00436{bottom:121.170000px;}
.y19_c00436{bottom:146.070000px;}
.y18_c00436{bottom:170.670000px;}
.y17_c00436{bottom:196.020000px;}
.y16_c00436{bottom:220.770000px;}
.y15_c00436{bottom:245.370000px;}
.y14_c00436{bottom:269.970000px;}
.y13_c00436{bottom:295.320000px;}
.y12_c00436{bottom:318.870000px;}
.y11_c00436{bottom:341.820000px;}
.y10_c00436{bottom:365.070000px;}
.yf_c00436{bottom:389.520000px;}
.ye_c00436{bottom:414.120000px;}
.yd_c00436{bottom:438.420000px;}
.yc_c00436{bottom:463.020000px;}
.yb_c00436{bottom:487.620000px;}
.ya_c00436{bottom:512.670000px;}
.y9_c00436{bottom:536.520000px;}
.y8_c00436{bottom:562.320000px;}
.y7_c00436{bottom:586.170000px;}
.y6_c00436{bottom:610.770000px;}
.y5_c00436{bottom:635.220000px;}
.y4_c00436{bottom:660.420000px;}
.y3_c00436{bottom:685.170000px;}
.y2_c00436{bottom:709.770000px;}
.y1_c00436{bottom:735.120000px;}
.h4_c00436{height:13.200073px;}
.h5_c00436{height:43.804688px;}
.h3_c00436{height:91.160156px;}
.h2_c00436{height:110.151855px;}
.h1_c00436{height:785.250000px;}
.h0_c00436{height:785.400000px;}
.w2_c00436{width:104.875500px;}
.w0_c00436{width:517.350000px;}
.w1_c00436{width:517.500000px;}
.x0_c00436{left:0.000000px;}
.x4_c00436{left:28.050000px;}
.x5_c00436{left:29.400000px;}
.xa_c00436{left:30.600000px;}
.x6_c00436{left:31.650000px;}
.x7_c00436{left:33.000000px;}
.x8_c00436{left:34.050000px;}
.x9_c00436{left:35.100000px;}
.x1_c00436{left:129.300000px;}
.xc_c00436{left:210.489258px;}
.x2_c00436{left:283.500000px;}
.x3_c00436{left:307.500000px;}
.xb_c00436{left:357.750000px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls2_c00436{letter-spacing:-2.666667pt;}
.ls3_c00436{letter-spacing:0.000000pt;}
.ls4_c00436{letter-spacing:2.666667pt;}
.ls1_c00436{letter-spacing:12.952000pt;}
.ls0_c00436{letter-spacing:235.762667pt;}
.ws3_c00436{word-spacing:-18.090667pt;}
.ws0_c00436{word-spacing:-15.970667pt;}
.ws1_c00436{word-spacing:-15.424000pt;}
.ws2_c00436{word-spacing:-14.781333pt;}
.ws4_c00436{word-spacing:0.000000pt;}
._d_c00436{margin-left:-10.053333pt;}
._b_c00436{margin-left:-8.421333pt;}
._c_c00436{margin-left:-5.845333pt;}
._4_c00436{margin-left:-4.717333pt;}
._5_c00436{margin-left:-3.573333pt;}
._6_c00436{margin-left:-1.920000pt;}
._a_c00436{margin-left:-1.024000pt;}
._1_c00436{width:1.082667pt;}
._0_c00436{width:2.861333pt;}
._f_c00436{width:3.762667pt;}
._8_c00436{width:4.730667pt;}
._2_c00436{width:6.496000pt;}
._3_c00436{width:7.501333pt;}
._9_c00436{width:8.581333pt;}
._e_c00436{width:9.856000pt;}
._7_c00436{width:11.136000pt;}
._10_c00436{width:12.640000pt;}
._11_c00436{width:14.264000pt;}
._13_c00436{width:16.338667pt;}
._12_c00436{width:19.461333pt;}
._15_c00436{width:20.608000pt;}
._14_c00436{width:23.728000pt;}
._17_c00436{width:33.714667pt;}
._16_c00436{width:73.928000pt;}
.fs3_c00436{font-size:42.666667pt;}
.fs2_c00436{font-size:61.333333pt;}
.fs1_c00436{font-size:64.000000pt;}
.fs0_c00436{font-size:77.333333pt;}
.y0_c00436{bottom:0.000000pt;}
.y1f_c00436{bottom:2.760000pt;}
.y1e_c00436{bottom:6.425217pt;}
.y1d_c00436{bottom:37.173333pt;}
.y1c_c00436{bottom:62.106667pt;}
.y1b_c00436{bottom:84.906667pt;}
.y1a_c00436{bottom:107.706667pt;}
.y19_c00436{bottom:129.840000pt;}
.y18_c00436{bottom:151.706667pt;}
.y17_c00436{bottom:174.240000pt;}
.y16_c00436{bottom:196.240000pt;}
.y15_c00436{bottom:218.106667pt;}
.y14_c00436{bottom:239.973333pt;}
.y13_c00436{bottom:262.506667pt;}
.y12_c00436{bottom:283.440000pt;}
.y11_c00436{bottom:303.840000pt;}
.y10_c00436{bottom:324.506667pt;}
.yf_c00436{bottom:346.240000pt;}
.ye_c00436{bottom:368.106667pt;}
.yd_c00436{bottom:389.706667pt;}
.yc_c00436{bottom:411.573333pt;}
.yb_c00436{bottom:433.440000pt;}
.ya_c00436{bottom:455.706667pt;}
.y9_c00436{bottom:476.906667pt;}
.y8_c00436{bottom:499.840000pt;}
.y7_c00436{bottom:521.040000pt;}
.y6_c00436{bottom:542.906667pt;}
.y5_c00436{bottom:564.640000pt;}
.y4_c00436{bottom:587.040000pt;}
.y3_c00436{bottom:609.040000pt;}
.y2_c00436{bottom:630.906667pt;}
.y1_c00436{bottom:653.440000pt;}
.h4_c00436{height:11.733399pt;}
.h5_c00436{height:38.937500pt;}
.h3_c00436{height:81.031250pt;}
.h2_c00436{height:97.912760pt;}
.h1_c00436{height:698.000000pt;}
.h0_c00436{height:698.133333pt;}
.w2_c00436{width:93.222667pt;}
.w0_c00436{width:459.866667pt;}
.w1_c00436{width:460.000000pt;}
.x0_c00436{left:0.000000pt;}
.x4_c00436{left:24.933333pt;}
.x5_c00436{left:26.133333pt;}
.xa_c00436{left:27.200000pt;}
.x6_c00436{left:28.133333pt;}
.x7_c00436{left:29.333333pt;}
.x8_c00436{left:30.266667pt;}
.x9_c00436{left:31.200000pt;}
.x1_c00436{left:114.933333pt;}
.xc_c00436{left:187.101563pt;}
.x2_c00436{left:252.000000pt;}
.x3_c00436{left:273.333333pt;}
.xb_c00436{left:318.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_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_8fc8a0058061f0305b910a83.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.480469;font-style:normal;font-weight:normal;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_b3803549f2b31a381d1fd3bb.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:1.568848;font-style:normal;font-weight:normal;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_d9f97d84bc9667dea1f61b67.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00437;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00437{font-family:ff4_c00437;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00437;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00437{font-family:ff5_c00437;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00437{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00437{vertical-align:0.000000px;}
.ls1_c00437{letter-spacing:0.000000px;}
.ls0_c00437{letter-spacing:3.000000px;}
.sc__c00437{text-shadow:none;}
.sc0_c00437{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00437{-webkit-text-stroke:0px transparent;}
.sc0_c00437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00437{word-spacing:-33.192000px;}
.ws1_c00437{word-spacing:-20.250000px;}
.ws2_c00437{word-spacing:0.000000px;}
._16_c00437{margin-left:-27.438000px;}
._14_c00437{margin-left:-12.024000px;}
._11_c00437{margin-left:-8.712000px;}
._c_c00437{margin-left:-7.632000px;}
._d_c00437{margin-left:-5.760000px;}
._5_c00437{margin-left:-4.752000px;}
._7_c00437{margin-left:-3.672000px;}
._6_c00437{margin-left:-2.520000px;}
._a_c00437{margin-left:-1.296000px;}
._9_c00437{width:1.656000px;}
._f_c00437{width:2.808000px;}
._b_c00437{width:3.894000px;}
._2_c00437{width:5.616000px;}
._4_c00437{width:6.624000px;}
._8_c00437{width:7.704000px;}
._15_c00437{width:8.766000px;}
._1_c00437{width:9.792000px;}
._3_c00437{width:11.232000px;}
._0_c00437{width:12.816000px;}
._19_c00437{width:14.706000px;}
._e_c00437{width:15.768000px;}
._1a_c00437{width:18.144000px;}
._18_c00437{width:21.384000px;}
._12_c00437{width:22.392000px;}
._13_c00437{width:24.768000px;}
._17_c00437{width:31.704000px;}
._10_c00437{width:34.950000px;}
._1b_c00437{width:111.636000px;}
.fc2_c00437{color:transparent;}
.fc1_c00437{color:rgb(128,128,128);}
.fc0_c00437{color:rgb(0,0,0);}
.fs4_c00437{font-size:48.000000px;}
.fs2_c00437{font-size:57.000000px;}
.fs3_c00437{font-size:60.000000px;}
.fs0_c00437{font-size:72.000000px;}
.fs1_c00437{font-size:81.000000px;}
.y0_c00437{bottom:0.000000px;}
.y1e_c00437{bottom:3.105000px;}
.y1d_c00437{bottom:7.228357px;}
.y1c_c00437{bottom:63.180000px;}
.y1b_c00437{bottom:88.830000px;}
.y1a_c00437{bottom:114.780000px;}
.y19_c00437{bottom:139.830000px;}
.y18_c00437{bottom:165.330000px;}
.y17_c00437{bottom:190.080000px;}
.y16_c00437{bottom:214.980000px;}
.y15_c00437{bottom:240.030000px;}
.y14_c00437{bottom:265.380000px;}
.y13_c00437{bottom:289.680000px;}
.y12_c00437{bottom:315.180000px;}
.y11_c00437{bottom:340.530000px;}
.y10_c00437{bottom:365.130000px;}
.yf_c00437{bottom:389.880000px;}
.ye_c00437{bottom:413.880000px;}
.yd_c00437{bottom:439.530000px;}
.yc_c00437{bottom:463.680000px;}
.yb_c00437{bottom:487.980000px;}
.ya_c00437{bottom:514.980000px;}
.y9_c00437{bottom:536.580000px;}
.y8_c00437{bottom:561.030000px;}
.y7_c00437{bottom:585.930000px;}
.y6_c00437{bottom:609.630000px;}
.y5_c00437{bottom:635.880000px;}
.y4_c00437{bottom:660.930000px;}
.y3_c00437{bottom:685.830000px;}
.y2_c00437{bottom:710.730000px;}
.y1_c00437{bottom:737.130000px;}
.h4_c00437{height:13.200074px;}
.h5_c00437{height:43.804688px;}
.h3_c00437{height:72.562500px;}
.h2_c00437{height:91.160156px;}
.h0_c00437{height:781.950000px;}
.h1_c00437{height:782.250000px;}
.w2_c00437{width:104.875500px;}
.w1_c00437{width:512.250000px;}
.w0_c00437{width:512.475000px;}
.x0_c00437{left:0.000000px;}
.x6_c00437{left:24.300000px;}
.x5_c00437{left:44.250000px;}
.xc_c00437{left:97.800000px;}
.xa_c00437{left:99.150000px;}
.x9_c00437{left:100.500000px;}
.x8_c00437{left:102.150000px;}
.x7_c00437{left:103.950000px;}
.x4_c00437{left:105.600000px;}
.x2_c00437{left:107.100000px;}
.x3_c00437{left:111.750000px;}
.xb_c00437{left:176.100000px;}
.xd_c00437{left:208.051758px;}
.x1_c00437{left:237.300000px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls1_c00437{letter-spacing:0.000000pt;}
.ls0_c00437{letter-spacing:2.666667pt;}
.ws0_c00437{word-spacing:-29.504000pt;}
.ws1_c00437{word-spacing:-18.000000pt;}
.ws2_c00437{word-spacing:0.000000pt;}
._16_c00437{margin-left:-24.389333pt;}
._14_c00437{margin-left:-10.688000pt;}
._11_c00437{margin-left:-7.744000pt;}
._c_c00437{margin-left:-6.784000pt;}
._d_c00437{margin-left:-5.120000pt;}
._5_c00437{margin-left:-4.224000pt;}
._7_c00437{margin-left:-3.264000pt;}
._6_c00437{margin-left:-2.240000pt;}
._a_c00437{margin-left:-1.152000pt;}
._9_c00437{width:1.472000pt;}
._f_c00437{width:2.496000pt;}
._b_c00437{width:3.461333pt;}
._2_c00437{width:4.992000pt;}
._4_c00437{width:5.888000pt;}
._8_c00437{width:6.848000pt;}
._15_c00437{width:7.792000pt;}
._1_c00437{width:8.704000pt;}
._3_c00437{width:9.984000pt;}
._0_c00437{width:11.392000pt;}
._19_c00437{width:13.072000pt;}
._e_c00437{width:14.016000pt;}
._1a_c00437{width:16.128000pt;}
._18_c00437{width:19.008000pt;}
._12_c00437{width:19.904000pt;}
._13_c00437{width:22.016000pt;}
._17_c00437{width:28.181333pt;}
._10_c00437{width:31.066667pt;}
._1b_c00437{width:99.232000pt;}
.fs4_c00437{font-size:42.666667pt;}
.fs2_c00437{font-size:50.666667pt;}
.fs3_c00437{font-size:53.333333pt;}
.fs0_c00437{font-size:64.000000pt;}
.fs1_c00437{font-size:72.000000pt;}
.y0_c00437{bottom:0.000000pt;}
.y1e_c00437{bottom:2.760000pt;}
.y1d_c00437{bottom:6.425206pt;}
.y1c_c00437{bottom:56.160000pt;}
.y1b_c00437{bottom:78.960000pt;}
.y1a_c00437{bottom:102.026667pt;}
.y19_c00437{bottom:124.293333pt;}
.y18_c00437{bottom:146.960000pt;}
.y17_c00437{bottom:168.960000pt;}
.y16_c00437{bottom:191.093333pt;}
.y15_c00437{bottom:213.360000pt;}
.y14_c00437{bottom:235.893333pt;}
.y13_c00437{bottom:257.493333pt;}
.y12_c00437{bottom:280.160000pt;}
.y11_c00437{bottom:302.693333pt;}
.y10_c00437{bottom:324.560000pt;}
.yf_c00437{bottom:346.560000pt;}
.ye_c00437{bottom:367.893333pt;}
.yd_c00437{bottom:390.693333pt;}
.yc_c00437{bottom:412.160000pt;}
.yb_c00437{bottom:433.760000pt;}
.ya_c00437{bottom:457.760000pt;}
.y9_c00437{bottom:476.960000pt;}
.y8_c00437{bottom:498.693333pt;}
.y7_c00437{bottom:520.826667pt;}
.y6_c00437{bottom:541.893333pt;}
.y5_c00437{bottom:565.226667pt;}
.y4_c00437{bottom:587.493333pt;}
.y3_c00437{bottom:609.626667pt;}
.y2_c00437{bottom:631.760000pt;}
.y1_c00437{bottom:655.226667pt;}
.h4_c00437{height:11.733399pt;}
.h5_c00437{height:38.937500pt;}
.h3_c00437{height:64.500000pt;}
.h2_c00437{height:81.031250pt;}
.h0_c00437{height:695.066667pt;}
.h1_c00437{height:695.333333pt;}
.w2_c00437{width:93.222667pt;}
.w1_c00437{width:455.333333pt;}
.w0_c00437{width:455.533333pt;}
.x0_c00437{left:0.000000pt;}
.x6_c00437{left:21.600000pt;}
.x5_c00437{left:39.333333pt;}
.xc_c00437{left:86.933333pt;}
.xa_c00437{left:88.133333pt;}
.x9_c00437{left:89.333333pt;}
.x8_c00437{left:90.800000pt;}
.x7_c00437{left:92.400000pt;}
.x4_c00437{left:93.866667pt;}
.x2_c00437{left:95.200000pt;}
.x3_c00437{left:99.333333pt;}
.xb_c00437{left:156.533333pt;}
.xd_c00437{left:184.934896pt;}
.x1_c00437{left:210.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e04ce802c0c26a01bd84de5c.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.480469;font-style:normal;font-weight:normal;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_c31b4b73ad235b6ca8efdce0.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00438{font-family:ff3_c00438;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00438{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.ls1_c00438{letter-spacing:0.000000px;}
.ls0_c00438{letter-spacing:3.000000px;}
.sc__c00438{text-shadow:none;}
.sc0_c00438{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00438{-webkit-text-stroke:0px transparent;}
.sc0_c00438{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00438{word-spacing:0.000000px;}
._17_c00438{margin-left:-12.816000px;}
._16_c00438{margin-left:-8.424000px;}
._9_c00438{margin-left:-7.056000px;}
._12_c00438{margin-left:-5.760000px;}
._a_c00438{margin-left:-4.464000px;}
._7_c00438{margin-left:-3.456000px;}
._14_c00438{margin-left:-2.448000px;}
._6_c00438{margin-left:-1.368000px;}
._8_c00438{width:1.080000px;}
._b_c00438{width:2.160000px;}
._e_c00438{width:3.672000px;}
._f_c00438{width:4.968000px;}
._15_c00438{width:6.048000px;}
._c_c00438{width:7.056000px;}
._3_c00438{width:8.064000px;}
._d_c00438{width:10.224000px;}
._1_c00438{width:11.376000px;}
._13_c00438{width:12.456000px;}
._2_c00438{width:13.464000px;}
._4_c00438{width:14.832000px;}
._18_c00438{width:16.920000px;}
._10_c00438{width:18.288000px;}
._0_c00438{width:19.296000px;}
._11_c00438{width:33.048000px;}
._19_c00438{width:48.645000px;}
._5_c00438{width:392.832000px;}
._1a_c00438{width:1321.971000px;}
.fc2_c00438{color:transparent;}
.fc1_c00438{color:rgb(128,128,128);}
.fc0_c00438{color:rgb(0,0,0);}
.fs2_c00438{font-size:48.000000px;}
.fs1_c00438{font-size:69.000000px;}
.fs0_c00438{font-size:72.000000px;}
.y0_c00438{bottom:0.000000px;}
.y1f_c00438{bottom:3.105000px;}
.y1e_c00438{bottom:7.228371px;}
.y1d_c00438{bottom:40.815000px;}
.y1c_c00438{bottom:67.965000px;}
.y1b_c00438{bottom:93.465000px;}
.y1a_c00438{bottom:118.815000px;}
.y19_c00438{bottom:141.165000px;}
.y18_c00438{bottom:166.515000px;}
.y17_c00438{bottom:193.515000px;}
.y16_c00438{bottom:218.415000px;}
.y15_c00438{bottom:243.315000px;}
.y14_c00438{bottom:267.765000px;}
.y13_c00438{bottom:292.365000px;}
.y12_c00438{bottom:316.215000px;}
.y11_c00438{bottom:338.865000px;}
.y10_c00438{bottom:362.565000px;}
.yf_c00438{bottom:386.865000px;}
.ye_c00438{bottom:412.065000px;}
.yd_c00438{bottom:435.465000px;}
.yc_c00438{bottom:460.365000px;}
.yb_c00438{bottom:485.715000px;}
.ya_c00438{bottom:509.415000px;}
.y9_c00438{bottom:534.015000px;}
.y8_c00438{bottom:559.215000px;}
.y7_c00438{bottom:583.515000px;}
.y6_c00438{bottom:607.965000px;}
.y5_c00438{bottom:632.265000px;}
.y4_c00438{bottom:657.165000px;}
.y3_c00438{bottom:683.115000px;}
.y2_c00438{bottom:706.065000px;}
.y1_c00438{bottom:731.715000px;}
.h5_c00438{height:13.200074px;}
.h6_c00438{height:43.804688px;}
.h2_c00438{height:84.269531px;}
.h4_c00438{height:87.361816px;}
.h3_c00438{height:91.160156px;}
.h0_c00438{height:779.775000px;}
.h1_c00438{height:780.000000px;}
.w2_c00438{width:104.875500px;}
.w1_c00438{width:525.000000px;}
.w0_c00438{width:525.150000px;}
.x0_c00438{left:0.000000px;}
.x2_c00438{left:23.400000px;}
.x3_c00438{left:25.650000px;}
.x4_c00438{left:27.450000px;}
.x5_c00438{left:29.400000px;}
.x6_c00438{left:30.450000px;}
.x7_c00438{left:31.500000px;}
.x1_c00438{left:151.200000px;}
.x8_c00438{left:214.389267px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls1_c00438{letter-spacing:0.000000pt;}
.ls0_c00438{letter-spacing:2.666667pt;}
.ws0_c00438{word-spacing:0.000000pt;}
._17_c00438{margin-left:-11.392000pt;}
._16_c00438{margin-left:-7.488000pt;}
._9_c00438{margin-left:-6.272000pt;}
._12_c00438{margin-left:-5.120000pt;}
._a_c00438{margin-left:-3.968000pt;}
._7_c00438{margin-left:-3.072000pt;}
._14_c00438{margin-left:-2.176000pt;}
._6_c00438{margin-left:-1.216000pt;}
._8_c00438{width:0.960000pt;}
._b_c00438{width:1.920000pt;}
._e_c00438{width:3.264000pt;}
._f_c00438{width:4.416000pt;}
._15_c00438{width:5.376000pt;}
._c_c00438{width:6.272000pt;}
._3_c00438{width:7.168000pt;}
._d_c00438{width:9.088000pt;}
._1_c00438{width:10.112000pt;}
._13_c00438{width:11.072000pt;}
._2_c00438{width:11.968000pt;}
._4_c00438{width:13.184000pt;}
._18_c00438{width:15.040000pt;}
._10_c00438{width:16.256000pt;}
._0_c00438{width:17.152000pt;}
._11_c00438{width:29.376000pt;}
._19_c00438{width:43.240000pt;}
._5_c00438{width:349.184000pt;}
._1a_c00438{width:1175.085333pt;}
.fs2_c00438{font-size:42.666667pt;}
.fs1_c00438{font-size:61.333333pt;}
.fs0_c00438{font-size:64.000000pt;}
.y0_c00438{bottom:0.000000pt;}
.y1f_c00438{bottom:2.760000pt;}
.y1e_c00438{bottom:6.425219pt;}
.y1d_c00438{bottom:36.280000pt;}
.y1c_c00438{bottom:60.413333pt;}
.y1b_c00438{bottom:83.080000pt;}
.y1a_c00438{bottom:105.613333pt;}
.y19_c00438{bottom:125.480000pt;}
.y18_c00438{bottom:148.013333pt;}
.y17_c00438{bottom:172.013333pt;}
.y16_c00438{bottom:194.146667pt;}
.y15_c00438{bottom:216.280000pt;}
.y14_c00438{bottom:238.013333pt;}
.y13_c00438{bottom:259.880000pt;}
.y12_c00438{bottom:281.080000pt;}
.y11_c00438{bottom:301.213333pt;}
.y10_c00438{bottom:322.280000pt;}
.yf_c00438{bottom:343.880000pt;}
.ye_c00438{bottom:366.280000pt;}
.yd_c00438{bottom:387.080000pt;}
.yc_c00438{bottom:409.213333pt;}
.yb_c00438{bottom:431.746667pt;}
.ya_c00438{bottom:452.813333pt;}
.y9_c00438{bottom:474.680000pt;}
.y8_c00438{bottom:497.080000pt;}
.y7_c00438{bottom:518.680000pt;}
.y6_c00438{bottom:540.413333pt;}
.y5_c00438{bottom:562.013333pt;}
.y4_c00438{bottom:584.146667pt;}
.y3_c00438{bottom:607.213333pt;}
.y2_c00438{bottom:627.613333pt;}
.y1_c00438{bottom:650.413333pt;}
.h5_c00438{height:11.733399pt;}
.h6_c00438{height:38.937500pt;}
.h2_c00438{height:74.906250pt;}
.h4_c00438{height:77.654948pt;}
.h3_c00438{height:81.031250pt;}
.h0_c00438{height:693.133333pt;}
.h1_c00438{height:693.333333pt;}
.w2_c00438{width:93.222667pt;}
.w1_c00438{width:466.666667pt;}
.w0_c00438{width:466.800000pt;}
.x0_c00438{left:0.000000pt;}
.x2_c00438{left:20.800000pt;}
.x3_c00438{left:22.800000pt;}
.x4_c00438{left:24.400000pt;}
.x5_c00438{left:26.133333pt;}
.x6_c00438{left:27.066667pt;}
.x7_c00438{left:28.000000pt;}
.x1_c00438{left:134.400000pt;}
.x8_c00438{left:190.568237pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7aebf488c40763dc11e3616e.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.592000;font-style:normal;font-weight:normal;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_031fbe467095a56dde368234.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.568848;font-style:normal;font-weight:normal;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_417af373fa71f0b38cccfd10.woff2')format("woff");}.ff3_c00439{font-family:ff3_c00439;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00439{font-family:ff4_c00439;line-height:1.219238;font-style: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;}
.ls2_c00439{letter-spacing:-6.000000px;}
.ls3_c00439{letter-spacing:0.000000px;}
.ls1_c00439{letter-spacing:3.000000px;}
.ls0_c00439{letter-spacing:31.233000px;}
.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:-17.352000px;}
.ws1_c00439{word-spacing:0.000000px;}
._11_c00439{margin-left:-15.906000px;}
._10_c00439{margin-left:-12.822000px;}
._7_c00439{margin-left:-10.908000px;}
._12_c00439{margin-left:-9.300000px;}
._14_c00439{margin-left:-8.208000px;}
._9_c00439{margin-left:-7.050000px;}
._5_c00439{margin-left:-6.030000px;}
._3_c00439{margin-left:-4.140000px;}
._8_c00439{margin-left:-2.928000px;}
._4_c00439{margin-left:-1.890000px;}
._6_c00439{width:1.542000px;}
._1_c00439{width:2.610000px;}
._b_c00439{width:3.612000px;}
._2_c00439{width:4.680000px;}
._0_c00439{width:5.760000px;}
._15_c00439{width:6.774000px;}
._a_c00439{width:7.776000px;}
._16_c00439{width:8.796000px;}
._13_c00439{width:9.930000px;}
._d_c00439{width:11.151000px;}
._18_c00439{width:12.438000px;}
._c_c00439{width:13.659000px;}
._17_c00439{width:17.112000px;}
._f_c00439{width:18.540000px;}
._e_c00439{width:37.191000px;}
.fc2_c00439{color:transparent;}
.fc1_c00439{color:rgb(128,128,128);}
.fc0_c00439{color:rgb(0,0,0);}
.fs4_c00439{font-size:48.000000px;}
.fs3_c00439{font-size:57.000000px;}
.fs1_c00439{font-size:69.000000px;}
.fs2_c00439{font-size:72.000000px;}
.fs0_c00439{font-size:90.000000px;}
.y0_c00439{bottom:0.000000px;}
.y1e_c00439{bottom:3.105000px;}
.y1d_c00439{bottom:7.228355px;}
.y1c_c00439{bottom:76.185000px;}
.y1b_c00439{bottom:102.135000px;}
.y1a_c00439{bottom:126.585000px;}
.y19_c00439{bottom:151.185000px;}
.y18_c00439{bottom:176.085000px;}
.y17_c00439{bottom:201.735000px;}
.y16_c00439{bottom:225.735000px;}
.y15_c00439{bottom:251.085000px;}
.y14_c00439{bottom:275.085000px;}
.y13_c00439{bottom:300.585000px;}
.y12_c00439{bottom:325.035000px;}
.y11_c00439{bottom:350.235000px;}
.y10_c00439{bottom:373.935000px;}
.yf_c00439{bottom:401.235000px;}
.ye_c00439{bottom:424.185000px;}
.yd_c00439{bottom:448.785000px;}
.yc_c00439{bottom:473.535000px;}
.yb_c00439{bottom:497.685000px;}
.ya_c00439{bottom:523.485000px;}
.y9_c00439{bottom:547.035000px;}
.y8_c00439{bottom:571.035000px;}
.y7_c00439{bottom:595.935000px;}
.y6_c00439{bottom:620.685000px;}
.y5_c00439{bottom:645.285000px;}
.y4_c00439{bottom:669.885000px;}
.y3_c00439{bottom:694.935000px;}
.y2_c00439{bottom:719.535000px;}
.y1_c00439{bottom:744.885000px;}
.h5_c00439{height:13.200074px;}
.h6_c00439{height:43.804688px;}
.h3_c00439{height:87.361816px;}
.h4_c00439{height:91.160156px;}
.h2_c00439{height:97.560000px;}
.h0_c00439{height:791.625000px;}
.h1_c00439{height:792.000000px;}
.w1_c00439{width:104.875500px;}
.w0_c00439{width:513.000000px;}
.x0_c00439{left:0.000000px;}
.x6_c00439{left:27.000000px;}
.x5_c00439{left:62.100000px;}
.x7_c00439{left:103.950000px;}
.x4_c00439{left:105.000000px;}
.x8_c00439{left:106.050000px;}
.x3_c00439{left:107.100000px;}
.x2_c00439{left:108.450000px;}
.x9_c00439{left:208.314240px;}
.x1_c00439{left:223.650000px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls2_c00439{letter-spacing:-5.333333pt;}
.ls3_c00439{letter-spacing:0.000000pt;}
.ls1_c00439{letter-spacing:2.666667pt;}
.ls0_c00439{letter-spacing:27.762667pt;}
.ws0_c00439{word-spacing:-15.424000pt;}
.ws1_c00439{word-spacing:0.000000pt;}
._11_c00439{margin-left:-14.138667pt;}
._10_c00439{margin-left:-11.397333pt;}
._7_c00439{margin-left:-9.696000pt;}
._12_c00439{margin-left:-8.266667pt;}
._14_c00439{margin-left:-7.296000pt;}
._9_c00439{margin-left:-6.266667pt;}
._5_c00439{margin-left:-5.360000pt;}
._3_c00439{margin-left:-3.680000pt;}
._8_c00439{margin-left:-2.602667pt;}
._4_c00439{margin-left:-1.680000pt;}
._6_c00439{width:1.370667pt;}
._1_c00439{width:2.320000pt;}
._b_c00439{width:3.210667pt;}
._2_c00439{width:4.160000pt;}
._0_c00439{width:5.120000pt;}
._15_c00439{width:6.021333pt;}
._a_c00439{width:6.912000pt;}
._16_c00439{width:7.818667pt;}
._13_c00439{width:8.826667pt;}
._d_c00439{width:9.912000pt;}
._18_c00439{width:11.056000pt;}
._c_c00439{width:12.141333pt;}
._17_c00439{width:15.210667pt;}
._f_c00439{width:16.480000pt;}
._e_c00439{width:33.058667pt;}
.fs4_c00439{font-size:42.666667pt;}
.fs3_c00439{font-size:50.666667pt;}
.fs1_c00439{font-size:61.333333pt;}
.fs2_c00439{font-size:64.000000pt;}
.fs0_c00439{font-size:80.000000pt;}
.y0_c00439{bottom:0.000000pt;}
.y1e_c00439{bottom:2.760000pt;}
.y1d_c00439{bottom:6.425204pt;}
.y1c_c00439{bottom:67.720000pt;}
.y1b_c00439{bottom:90.786667pt;}
.y1a_c00439{bottom:112.520000pt;}
.y19_c00439{bottom:134.386667pt;}
.y18_c00439{bottom:156.520000pt;}
.y17_c00439{bottom:179.320000pt;}
.y16_c00439{bottom:200.653333pt;}
.y15_c00439{bottom:223.186667pt;}
.y14_c00439{bottom:244.520000pt;}
.y13_c00439{bottom:267.186667pt;}
.y12_c00439{bottom:288.920000pt;}
.y11_c00439{bottom:311.320000pt;}
.y10_c00439{bottom:332.386667pt;}
.yf_c00439{bottom:356.653333pt;}
.ye_c00439{bottom:377.053333pt;}
.yd_c00439{bottom:398.920000pt;}
.yc_c00439{bottom:420.920000pt;}
.yb_c00439{bottom:442.386667pt;}
.ya_c00439{bottom:465.320000pt;}
.y9_c00439{bottom:486.253333pt;}
.y8_c00439{bottom:507.586667pt;}
.y7_c00439{bottom:529.720000pt;}
.y6_c00439{bottom:551.720000pt;}
.y5_c00439{bottom:573.586667pt;}
.y4_c00439{bottom:595.453333pt;}
.y3_c00439{bottom:617.720000pt;}
.y2_c00439{bottom:639.586667pt;}
.y1_c00439{bottom:662.120000pt;}
.h5_c00439{height:11.733399pt;}
.h6_c00439{height:38.937500pt;}
.h3_c00439{height:77.654948pt;}
.h4_c00439{height:81.031250pt;}
.h2_c00439{height:86.720000pt;}
.h0_c00439{height:703.666667pt;}
.h1_c00439{height:704.000000pt;}
.w1_c00439{width:93.222667pt;}
.w0_c00439{width:456.000000pt;}
.x0_c00439{left:0.000000pt;}
.x6_c00439{left:24.000000pt;}
.x5_c00439{left:55.200000pt;}
.x7_c00439{left:92.400000pt;}
.x4_c00439{left:93.333333pt;}
.x8_c00439{left:94.266667pt;}
.x3_c00439{left:95.200000pt;}
.x2_c00439{left:96.400000pt;}
.x9_c00439{left:185.168213pt;}
.x1_c00439{left:198.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_399f0322dd02580962eefb0a.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.480469;font-style:normal;font-weight:normal;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_df6454b5ecf8095b2466d2fe.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:1.568848;font-style:normal;font-weight:normal;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_6173ff1db19d8b6bd512d8ce.woff2')format("woff");}.ff3_c00440{font-family:ff3_c00440;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00440;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00440{font-family:ff4_c00440;line-height:1.219238;font-style: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;}
.ls6_c00440{letter-spacing:-9.000000px;}
.ls4_c00440{letter-spacing:0.000000px;}
.ls2_c00440{letter-spacing:1.602000px;}
.ls5_c00440{letter-spacing:3.000000px;}
.ls1_c00440{letter-spacing:8.988000px;}
.ls3_c00440{letter-spacing:31.602000px;}
.ls0_c00440{letter-spacing:35.988000px;}
.sc__c00440{text-shadow:none;}
.sc0_c00440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00440{-webkit-text-stroke:0px transparent;}
.sc0_c00440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00440{word-spacing:-20.352000px;}
.ws0_c00440{word-spacing:-17.352000px;}
.ws3_c00440{word-spacing:0.000000px;}
.ws2_c00440{word-spacing:10.440000px;}
._17_c00440{margin-left:-29.508000px;}
._13_c00440{margin-left:-19.296000px;}
._15_c00440{margin-left:-12.672000px;}
._11_c00440{margin-left:-10.992000px;}
._14_c00440{margin-left:-9.792000px;}
._10_c00440{margin-left:-7.488000px;}
._d_c00440{margin-left:-5.772000px;}
._e_c00440{margin-left:-4.092000px;}
._5_c00440{margin-left:-2.724000px;}
._6_c00440{margin-left:-1.440000px;}
._4_c00440{width:1.512000px;}
._a_c00440{width:3.096000px;}
._b_c00440{width:4.248000px;}
._9_c00440{width:5.328000px;}
._3_c00440{width:7.260000px;}
._16_c00440{width:8.352000px;}
._f_c00440{width:10.164000px;}
._8_c00440{width:11.736000px;}
._7_c00440{width:12.744000px;}
._18_c00440{width:13.848000px;}
._c_c00440{width:15.624000px;}
._1_c00440{width:17.580000px;}
._12_c00440{width:26.712000px;}
._0_c00440{width:27.960000px;}
._19_c00440{width:284.592000px;}
._2_c00440{width:815.940000px;}
.fc2_c00440{color:transparent;}
.fc1_c00440{color:rgb(128,128,128);}
.fc0_c00440{color:rgb(0,0,0);}
.fs5_c00440{font-size:48.000000px;}
.fs0_c00440{font-size:60.000000px;}
.fs2_c00440{font-size:63.000000px;}
.fs4_c00440{font-size:69.000000px;}
.fs1_c00440{font-size:72.000000px;}
.fs3_c00440{font-size:78.000000px;}
.y0_c00440{bottom:0.000000px;}
.y1f_c00440{bottom:3.105000px;}
.y1e_c00440{bottom:7.228357px;}
.y1d_c00440{bottom:42.180000px;}
.y1c_c00440{bottom:69.630000px;}
.y1b_c00440{bottom:94.530000px;}
.y1a_c00440{bottom:122.130000px;}
.y19_c00440{bottom:146.880000px;}
.y18_c00440{bottom:170.880000px;}
.y17_c00440{bottom:196.830000px;}
.y16_c00440{bottom:221.730000px;}
.y15_c00440{bottom:246.330000px;}
.y14_c00440{bottom:271.380000px;}
.y13_c00440{bottom:294.030000px;}
.y12_c00440{bottom:317.580000px;}
.y11_c00440{bottom:341.880000px;}
.y10_c00440{bottom:365.880000px;}
.yf_c00440{bottom:390.780000px;}
.ye_c00440{bottom:415.080000px;}
.yd_c00440{bottom:440.130000px;}
.yc_c00440{bottom:464.430000px;}
.yb_c00440{bottom:489.330000px;}
.ya_c00440{bottom:513.330000px;}
.y9_c00440{bottom:538.080000px;}
.y8_c00440{bottom:562.380000px;}
.y7_c00440{bottom:587.280000px;}
.y6_c00440{bottom:613.530000px;}
.y5_c00440{bottom:636.630000px;}
.y4_c00440{bottom:661.230000px;}
.y3_c00440{bottom:686.580000px;}
.y2_c00440{bottom:710.730000px;}
.y1_c00440{bottom:735.780000px;}
.h5_c00440{height:13.200074px;}
.h6_c00440{height:43.804688px;}
.h2_c00440{height:70.224609px;}
.h3_c00440{height:91.160156px;}
.h4_c00440{height:98.756836px;}
.h1_c00440{height:784.500000px;}
.h0_c00440{height:784.650000px;}
.w2_c00440{width:104.875500px;}
.w0_c00440{width:541.875000px;}
.w1_c00440{width:542.250000px;}
.x0_c00440{left:0.000000px;}
.x2_c00440{left:28.050000px;}
.x3_c00440{left:30.600000px;}
.x4_c00440{left:32.100000px;}
.x5_c00440{left:33.750000px;}
.x6_c00440{left:35.700000px;}
.x8_c00440{left:36.750000px;}
.x7_c00440{left:38.400000px;}
.x1_c00440{left:138.000000px;}
.xa_c00440{left:222.751740px;}
.x9_c00440{left:370.350000px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls6_c00440{letter-spacing:-8.000000pt;}
.ls4_c00440{letter-spacing:0.000000pt;}
.ls2_c00440{letter-spacing:1.424000pt;}
.ls5_c00440{letter-spacing:2.666667pt;}
.ls1_c00440{letter-spacing:7.989333pt;}
.ls3_c00440{letter-spacing:28.090667pt;}
.ls0_c00440{letter-spacing:31.989333pt;}
.ws1_c00440{word-spacing:-18.090667pt;}
.ws0_c00440{word-spacing:-15.424000pt;}
.ws3_c00440{word-spacing:0.000000pt;}
.ws2_c00440{word-spacing:9.280000pt;}
._17_c00440{margin-left:-26.229333pt;}
._13_c00440{margin-left:-17.152000pt;}
._15_c00440{margin-left:-11.264000pt;}
._11_c00440{margin-left:-9.770667pt;}
._14_c00440{margin-left:-8.704000pt;}
._10_c00440{margin-left:-6.656000pt;}
._d_c00440{margin-left:-5.130667pt;}
._e_c00440{margin-left:-3.637333pt;}
._5_c00440{margin-left:-2.421333pt;}
._6_c00440{margin-left:-1.280000pt;}
._4_c00440{width:1.344000pt;}
._a_c00440{width:2.752000pt;}
._b_c00440{width:3.776000pt;}
._9_c00440{width:4.736000pt;}
._3_c00440{width:6.453333pt;}
._16_c00440{width:7.424000pt;}
._f_c00440{width:9.034667pt;}
._8_c00440{width:10.432000pt;}
._7_c00440{width:11.328000pt;}
._18_c00440{width:12.309333pt;}
._c_c00440{width:13.888000pt;}
._1_c00440{width:15.626667pt;}
._12_c00440{width:23.744000pt;}
._0_c00440{width:24.853333pt;}
._19_c00440{width:252.970667pt;}
._2_c00440{width:725.280000pt;}
.fs5_c00440{font-size:42.666667pt;}
.fs0_c00440{font-size:53.333333pt;}
.fs2_c00440{font-size:56.000000pt;}
.fs4_c00440{font-size:61.333333pt;}
.fs1_c00440{font-size:64.000000pt;}
.fs3_c00440{font-size:69.333333pt;}
.y0_c00440{bottom:0.000000pt;}
.y1f_c00440{bottom:2.760000pt;}
.y1e_c00440{bottom:6.425206pt;}
.y1d_c00440{bottom:37.493333pt;}
.y1c_c00440{bottom:61.893333pt;}
.y1b_c00440{bottom:84.026667pt;}
.y1a_c00440{bottom:108.560000pt;}
.y19_c00440{bottom:130.560000pt;}
.y18_c00440{bottom:151.893333pt;}
.y17_c00440{bottom:174.960000pt;}
.y16_c00440{bottom:197.093333pt;}
.y15_c00440{bottom:218.960000pt;}
.y14_c00440{bottom:241.226667pt;}
.y13_c00440{bottom:261.360000pt;}
.y12_c00440{bottom:282.293333pt;}
.y11_c00440{bottom:303.893333pt;}
.y10_c00440{bottom:325.226667pt;}
.yf_c00440{bottom:347.360000pt;}
.ye_c00440{bottom:368.960000pt;}
.yd_c00440{bottom:391.226667pt;}
.yc_c00440{bottom:412.826667pt;}
.yb_c00440{bottom:434.960000pt;}
.ya_c00440{bottom:456.293333pt;}
.y9_c00440{bottom:478.293333pt;}
.y8_c00440{bottom:499.893333pt;}
.y7_c00440{bottom:522.026667pt;}
.y6_c00440{bottom:545.360000pt;}
.y5_c00440{bottom:565.893333pt;}
.y4_c00440{bottom:587.760000pt;}
.y3_c00440{bottom:610.293333pt;}
.y2_c00440{bottom:631.760000pt;}
.y1_c00440{bottom:654.026667pt;}
.h5_c00440{height:11.733399pt;}
.h6_c00440{height:38.937500pt;}
.h2_c00440{height:62.421875pt;}
.h3_c00440{height:81.031250pt;}
.h4_c00440{height:87.783854pt;}
.h1_c00440{height:697.333333pt;}
.h0_c00440{height:697.466667pt;}
.w2_c00440{width:93.222667pt;}
.w0_c00440{width:481.666667pt;}
.w1_c00440{width:482.000000pt;}
.x0_c00440{left:0.000000pt;}
.x2_c00440{left:24.933333pt;}
.x3_c00440{left:27.200000pt;}
.x4_c00440{left:28.533333pt;}
.x5_c00440{left:30.000000pt;}
.x6_c00440{left:31.733333pt;}
.x8_c00440{left:32.666667pt;}
.x7_c00440{left:34.133333pt;}
.x1_c00440{left:122.666667pt;}
.xa_c00440{left:198.001546pt;}
.x9_c00440{left:329.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cb114898b677da6deaf206ca.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00441;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00441;src:url('chunks/assets/font_ab4ff495df612e67149d43f6.woff2')format("woff");}.ff3_c00441{font-family:ff3_c00441;line-height:1.568848;font-style:normal;font-weight:normal;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_37daa021206d7d733befbe22.woff2')format("woff");}.ff4_c00441{font-family:ff4_c00441;line-height:1.480469;font-style:normal;font-weight:normal;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_1d784e9eb24ee37e58ea7ef6.woff2')format("woff");}.ff5_c00441{font-family:ff5_c00441;line-height:1.575000;font-style:normal;font-weight:normal;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_dade1949f171292e890682f4.woff2')format("woff");}.ff6_c00441{font-family:ff6_c00441;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00441;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00441{font-family:ff7_c00441;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00441{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00441{vertical-align:0.000000px;}
.ls3_c00441{letter-spacing:0.000000px;}
.ls2_c00441{letter-spacing:0.588000px;}
.ls0_c00441{letter-spacing:3.000000px;}
.ls1_c00441{letter-spacing:4.788000px;}
.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:-33.192000px;}
.ws1_c00441{word-spacing:-20.352000px;}
.ws2_c00441{word-spacing:0.000000px;}
._15_c00441{margin-left:-23.328000px;}
._17_c00441{margin-left:-11.340000px;}
._b_c00441{margin-left:-9.876000px;}
._13_c00441{margin-left:-8.568000px;}
._7_c00441{margin-left:-7.056000px;}
._11_c00441{margin-left:-5.952000px;}
._6_c00441{margin-left:-4.776000px;}
._8_c00441{margin-left:-3.240000px;}
._5_c00441{margin-left:-1.728000px;}
._4_c00441{width:1.080000px;}
._1_c00441{width:2.436000px;}
._2_c00441{width:4.200000px;}
._0_c00441{width:5.964000px;}
._14_c00441{width:7.056000px;}
._3_c00441{width:8.232000px;}
._12_c00441{width:9.720000px;}
._9_c00441{width:11.712000px;}
._a_c00441{width:13.248000px;}
._c_c00441{width:14.784000px;}
._10_c00441{width:16.824000px;}
._f_c00441{width:19.239000px;}
._e_c00441{width:20.772000px;}
._d_c00441{width:35.964000px;}
._18_c00441{width:189.135000px;}
._16_c00441{width:1064.178000px;}
.fc2_c00441{color:transparent;}
.fc1_c00441{color:rgb(128,128,128);}
.fc0_c00441{color:rgb(0,0,0);}
.fs2_c00441{font-size:33.000000px;}
.fs5_c00441{font-size:48.000000px;}
.fs3_c00441{font-size:63.000000px;}
.fs1_c00441{font-size:72.000000px;}
.fs4_c00441{font-size:81.000000px;}
.fs0_c00441{font-size:84.000000px;}
.y0_c00441{bottom:0.000000px;}
.y1f_c00441{bottom:3.105000px;}
.y1e_c00441{bottom:7.228363px;}
.y1d_c00441{bottom:46.950000px;}
.y1c_c00441{bottom:63.750000px;}
.y1b_c00441{bottom:87.750000px;}
.y1a_c00441{bottom:114.750000px;}
.y19_c00441{bottom:145.500000px;}
.y18_c00441{bottom:166.350000px;}
.y17_c00441{bottom:192.600000px;}
.y16_c00441{bottom:217.050000px;}
.y15_c00441{bottom:241.650000px;}
.y14_c00441{bottom:266.850000px;}
.y13_c00441{bottom:290.850000px;}
.y12_c00441{bottom:316.950000px;}
.y11_c00441{bottom:340.800000px;}
.y10_c00441{bottom:366.750000px;}
.yf_c00441{bottom:391.500000px;}
.ye_c00441{bottom:415.500000px;}
.yd_c00441{bottom:442.050000px;}
.yc_c00441{bottom:466.050000px;}
.yb_c00441{bottom:488.250000px;}
.ya_c00441{bottom:513.600000px;}
.y9_c00441{bottom:538.200000px;}
.y8_c00441{bottom:562.950000px;}
.y7_c00441{bottom:586.950000px;}
.y6_c00441{bottom:613.500000px;}
.y5_c00441{bottom:636.750000px;}
.y4_c00441{bottom:661.800000px;}
.y3_c00441{bottom:686.850000px;}
.y2_c00441{bottom:711.450000px;}
.y1_c00441{bottom:737.100000px;}
.h4_c00441{height:13.200074px;}
.h5_c00441{height:43.804688px;}
.h3_c00441{height:81.632812px;}
.h1_c00441{height:82.441406px;}
.h2_c00441{height:91.160156px;}
.h0_c00441{height:783.000000px;}
.w1_c00441{width:104.875500px;}
.w0_c00441{width:506.250000px;}
.x0_c00441{left:0.000000px;}
.x5_c00441{left:93.600000px;}
.x6_c00441{left:94.950000px;}
.x4_c00441{left:96.150000px;}
.x3_c00441{left:97.500000px;}
.x2_c00441{left:99.900000px;}
.x8_c00441{left:204.939240px;}
.x1_c00441{left:227.700000px;}
.x7_c00441{left:386.400000px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls3_c00441{letter-spacing:0.000000pt;}
.ls2_c00441{letter-spacing:0.522667pt;}
.ls0_c00441{letter-spacing:2.666667pt;}
.ls1_c00441{letter-spacing:4.256000pt;}
.ws0_c00441{word-spacing:-29.504000pt;}
.ws1_c00441{word-spacing:-18.090667pt;}
.ws2_c00441{word-spacing:0.000000pt;}
._15_c00441{margin-left:-20.736000pt;}
._17_c00441{margin-left:-10.080000pt;}
._b_c00441{margin-left:-8.778667pt;}
._13_c00441{margin-left:-7.616000pt;}
._7_c00441{margin-left:-6.272000pt;}
._11_c00441{margin-left:-5.290667pt;}
._6_c00441{margin-left:-4.245333pt;}
._8_c00441{margin-left:-2.880000pt;}
._5_c00441{margin-left:-1.536000pt;}
._4_c00441{width:0.960000pt;}
._1_c00441{width:2.165333pt;}
._2_c00441{width:3.733333pt;}
._0_c00441{width:5.301333pt;}
._14_c00441{width:6.272000pt;}
._3_c00441{width:7.317333pt;}
._12_c00441{width:8.640000pt;}
._9_c00441{width:10.410667pt;}
._a_c00441{width:11.776000pt;}
._c_c00441{width:13.141333pt;}
._10_c00441{width:14.954667pt;}
._f_c00441{width:17.101333pt;}
._e_c00441{width:18.464000pt;}
._d_c00441{width:31.968000pt;}
._18_c00441{width:168.120000pt;}
._16_c00441{width:945.936000pt;}
.fs2_c00441{font-size:29.333333pt;}
.fs5_c00441{font-size:42.666667pt;}
.fs3_c00441{font-size:56.000000pt;}
.fs1_c00441{font-size:64.000000pt;}
.fs4_c00441{font-size:72.000000pt;}
.fs0_c00441{font-size:74.666667pt;}
.y0_c00441{bottom:0.000000pt;}
.y1f_c00441{bottom:2.760000pt;}
.y1e_c00441{bottom:6.425212pt;}
.y1d_c00441{bottom:41.733333pt;}
.y1c_c00441{bottom:56.666667pt;}
.y1b_c00441{bottom:78.000000pt;}
.y1a_c00441{bottom:102.000000pt;}
.y19_c00441{bottom:129.333333pt;}
.y18_c00441{bottom:147.866667pt;}
.y17_c00441{bottom:171.200000pt;}
.y16_c00441{bottom:192.933333pt;}
.y15_c00441{bottom:214.800000pt;}
.y14_c00441{bottom:237.200000pt;}
.y13_c00441{bottom:258.533333pt;}
.y12_c00441{bottom:281.733333pt;}
.y11_c00441{bottom:302.933333pt;}
.y10_c00441{bottom:326.000000pt;}
.yf_c00441{bottom:348.000000pt;}
.ye_c00441{bottom:369.333333pt;}
.yd_c00441{bottom:392.933333pt;}
.yc_c00441{bottom:414.266667pt;}
.yb_c00441{bottom:434.000000pt;}
.ya_c00441{bottom:456.533333pt;}
.y9_c00441{bottom:478.400000pt;}
.y8_c00441{bottom:500.400000pt;}
.y7_c00441{bottom:521.733333pt;}
.y6_c00441{bottom:545.333333pt;}
.y5_c00441{bottom:566.000000pt;}
.y4_c00441{bottom:588.266667pt;}
.y3_c00441{bottom:610.533333pt;}
.y2_c00441{bottom:632.400000pt;}
.y1_c00441{bottom:655.200000pt;}
.h4_c00441{height:11.733399pt;}
.h5_c00441{height:38.937500pt;}
.h3_c00441{height:72.562500pt;}
.h1_c00441{height:73.281250pt;}
.h2_c00441{height:81.031250pt;}
.h0_c00441{height:696.000000pt;}
.w1_c00441{width:93.222667pt;}
.w0_c00441{width:450.000000pt;}
.x0_c00441{left:0.000000pt;}
.x5_c00441{left:83.200000pt;}
.x6_c00441{left:84.400000pt;}
.x4_c00441{left:85.466667pt;}
.x3_c00441{left:86.666667pt;}
.x2_c00441{left:88.800000pt;}
.x8_c00441{left:182.168213pt;}
.x1_c00441{left:202.400000pt;}
.x7_c00441{left:343.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_66a5cb7aaf3e9abeb7129e5a.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.480469;font-style:normal;font-weight:normal;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_dc08f6ef0bc44b5189415f33.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:1.568848;font-style:normal;font-weight:normal;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_54508f5e9ca7b10221cb7729.woff2')format("woff");}.ff3_c00442{font-family:ff3_c00442;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00442{font-family:ff4_c00442;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00442{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.ls2_c00442{letter-spacing:-12.000000px;}
.ls0_c00442{letter-spacing:0.000000px;}
.ls1_c00442{letter-spacing:3.000000px;}
.sc__c00442{text-shadow:none;}
.sc0_c00442{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00442{-webkit-text-stroke:0px transparent;}
.sc0_c00442{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00442{word-spacing:-20.352000px;}
.ws1_c00442{word-spacing:-18.051000px;}
.ws2_c00442{word-spacing:-17.352000px;}
.ws3_c00442{word-spacing:0.000000px;}
._1f_c00442{margin-left:-40.320000px;}
._20_c00442{margin-left:-30.024000px;}
._13_c00442{margin-left:-16.056000px;}
._1a_c00442{margin-left:-14.688000px;}
._15_c00442{margin-left:-12.420000px;}
._14_c00442{margin-left:-10.368000px;}
._1e_c00442{margin-left:-9.348000px;}
._12_c00442{margin-left:-8.316000px;}
._10_c00442{margin-left:-6.996000px;}
._16_c00442{margin-left:-5.856000px;}
._a_c00442{margin-left:-4.740000px;}
._c_c00442{margin-left:-2.760000px;}
._b_c00442{margin-left:-1.512000px;}
._f_c00442{width:1.224000px;}
._d_c00442{width:3.216000px;}
._4_c00442{width:5.040000px;}
._18_c00442{width:6.120000px;}
._e_c00442{width:7.128000px;}
._6_c00442{width:8.280000px;}
._1_c00442{width:10.080000px;}
._9_c00442{width:12.180000px;}
._11_c00442{width:14.256000px;}
._2_c00442{width:15.960000px;}
._7_c00442{width:17.820000px;}
._3_c00442{width:20.040000px;}
._0_c00442{width:21.960000px;}
._5_c00442{width:24.000000px;}
._1b_c00442{width:26.247000px;}
._1d_c00442{width:84.528000px;}
._8_c00442{width:271.740000px;}
._1c_c00442{width:286.896000px;}
._22_c00442{width:357.828000px;}
._19_c00442{width:459.468000px;}
._17_c00442{width:528.120000px;}
._21_c00442{width:723.600000px;}
.fc2_c00442{color:transparent;}
.fc1_c00442{color:rgb(128,128,128);}
.fc0_c00442{color:rgb(0,0,0);}
.fs3_c00442{font-size:48.000000px;}
.fs0_c00442{font-size:60.000000px;}
.fs2_c00442{font-size:63.000000px;}
.fs1_c00442{font-size:72.000000px;}
.y0_c00442{bottom:0.000000px;}
.y1f_c00442{bottom:3.105000px;}
.y1e_c00442{bottom:7.228371px;}
.y1d_c00442{bottom:49.065000px;}
.y1c_c00442{bottom:76.665000px;}
.y1b_c00442{bottom:101.265000px;}
.y1a_c00442{bottom:126.915000px;}
.y19_c00442{bottom:152.565000px;}
.y18_c00442{bottom:173.565000px;}
.y17_c00442{bottom:201.615000px;}
.y16_c00442{bottom:223.215000px;}
.y15_c00442{bottom:251.565000px;}
.y14_c00442{bottom:276.165000px;}
.y13_c00442{bottom:300.465000px;}
.y12_c00442{bottom:324.015000px;}
.y11_c00442{bottom:347.415000px;}
.y10_c00442{bottom:370.965000px;}
.yf_c00442{bottom:395.865000px;}
.ye_c00442{bottom:420.165000px;}
.yd_c00442{bottom:445.215000px;}
.yc_c00442{bottom:469.515000px;}
.yb_c00442{bottom:494.565000px;}
.ya_c00442{bottom:518.865000px;}
.y9_c00442{bottom:544.065000px;}
.y8_c00442{bottom:568.365000px;}
.y7_c00442{bottom:592.665000px;}
.y6_c00442{bottom:616.965000px;}
.y5_c00442{bottom:642.615000px;}
.y4_c00442{bottom:666.315000px;}
.y3_c00442{bottom:691.515000px;}
.y2_c00442{bottom:715.815000px;}
.y1_c00442{bottom:740.865000px;}
.h5_c00442{height:13.200074px;}
.h6_c00442{height:43.804688px;}
.h2_c00442{height:75.966797px;}
.h4_c00442{height:79.765137px;}
.h3_c00442{height:91.160156px;}
.h0_c00442{height:785.175000px;}
.h1_c00442{height:785.250000px;}
.w2_c00442{width:104.875500px;}
.w1_c00442{width:531.750000px;}
.w0_c00442{width:531.900000px;}
.x0_c00442{left:0.000000px;}
.x8_c00442{left:35.700000px;}
.x9_c00442{left:37.050000px;}
.x6_c00442{left:39.450000px;}
.x7_c00442{left:42.150000px;}
.x3_c00442{left:43.500000px;}
.x2_c00442{left:44.550000px;}
.x4_c00442{left:45.900000px;}
.xa_c00442{left:91.650000px;}
.x5_c00442{left:135.000000px;}
.x1_c00442{left:183.300000px;}
.xb_c00442{left:217.764267px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls2_c00442{letter-spacing:-10.666667pt;}
.ls0_c00442{letter-spacing:0.000000pt;}
.ls1_c00442{letter-spacing:2.666667pt;}
.ws0_c00442{word-spacing:-18.090667pt;}
.ws1_c00442{word-spacing:-16.045333pt;}
.ws2_c00442{word-spacing:-15.424000pt;}
.ws3_c00442{word-spacing:0.000000pt;}
._1f_c00442{margin-left:-35.840000pt;}
._20_c00442{margin-left:-26.688000pt;}
._13_c00442{margin-left:-14.272000pt;}
._1a_c00442{margin-left:-13.056000pt;}
._15_c00442{margin-left:-11.040000pt;}
._14_c00442{margin-left:-9.216000pt;}
._1e_c00442{margin-left:-8.309333pt;}
._12_c00442{margin-left:-7.392000pt;}
._10_c00442{margin-left:-6.218667pt;}
._16_c00442{margin-left:-5.205333pt;}
._a_c00442{margin-left:-4.213333pt;}
._c_c00442{margin-left:-2.453333pt;}
._b_c00442{margin-left:-1.344000pt;}
._f_c00442{width:1.088000pt;}
._d_c00442{width:2.858667pt;}
._4_c00442{width:4.480000pt;}
._18_c00442{width:5.440000pt;}
._e_c00442{width:6.336000pt;}
._6_c00442{width:7.360000pt;}
._1_c00442{width:8.960000pt;}
._9_c00442{width:10.826667pt;}
._11_c00442{width:12.672000pt;}
._2_c00442{width:14.186667pt;}
._7_c00442{width:15.840000pt;}
._3_c00442{width:17.813333pt;}
._0_c00442{width:19.520000pt;}
._5_c00442{width:21.333333pt;}
._1b_c00442{width:23.330667pt;}
._1d_c00442{width:75.136000pt;}
._8_c00442{width:241.546667pt;}
._1c_c00442{width:255.018667pt;}
._22_c00442{width:318.069333pt;}
._19_c00442{width:408.416000pt;}
._17_c00442{width:469.440000pt;}
._21_c00442{width:643.200000pt;}
.fs3_c00442{font-size:42.666667pt;}
.fs0_c00442{font-size:53.333333pt;}
.fs2_c00442{font-size:56.000000pt;}
.fs1_c00442{font-size:64.000000pt;}
.y0_c00442{bottom:0.000000pt;}
.y1f_c00442{bottom:2.760000pt;}
.y1e_c00442{bottom:6.425219pt;}
.y1d_c00442{bottom:43.613333pt;}
.y1c_c00442{bottom:68.146667pt;}
.y1b_c00442{bottom:90.013333pt;}
.y1a_c00442{bottom:112.813333pt;}
.y19_c00442{bottom:135.613333pt;}
.y18_c00442{bottom:154.280000pt;}
.y17_c00442{bottom:179.213333pt;}
.y16_c00442{bottom:198.413333pt;}
.y15_c00442{bottom:223.613333pt;}
.y14_c00442{bottom:245.480000pt;}
.y13_c00442{bottom:267.080000pt;}
.y12_c00442{bottom:288.013333pt;}
.y11_c00442{bottom:308.813333pt;}
.y10_c00442{bottom:329.746667pt;}
.yf_c00442{bottom:351.880000pt;}
.ye_c00442{bottom:373.480000pt;}
.yd_c00442{bottom:395.746667pt;}
.yc_c00442{bottom:417.346667pt;}
.yb_c00442{bottom:439.613333pt;}
.ya_c00442{bottom:461.213333pt;}
.y9_c00442{bottom:483.613333pt;}
.y8_c00442{bottom:505.213333pt;}
.y7_c00442{bottom:526.813333pt;}
.y6_c00442{bottom:548.413333pt;}
.y5_c00442{bottom:571.213333pt;}
.y4_c00442{bottom:592.280000pt;}
.y3_c00442{bottom:614.680000pt;}
.y2_c00442{bottom:636.280000pt;}
.y1_c00442{bottom:658.546667pt;}
.h5_c00442{height:11.733399pt;}
.h6_c00442{height:38.937500pt;}
.h2_c00442{height:67.526042pt;}
.h4_c00442{height:70.902344pt;}
.h3_c00442{height:81.031250pt;}
.h0_c00442{height:697.933333pt;}
.h1_c00442{height:698.000000pt;}
.w2_c00442{width:93.222667pt;}
.w1_c00442{width:472.666667pt;}
.w0_c00442{width:472.800000pt;}
.x0_c00442{left:0.000000pt;}
.x8_c00442{left:31.733333pt;}
.x9_c00442{left:32.933333pt;}
.x6_c00442{left:35.066667pt;}
.x7_c00442{left:37.466667pt;}
.x3_c00442{left:38.666667pt;}
.x2_c00442{left:39.600000pt;}
.x4_c00442{left:40.800000pt;}
.xa_c00442{left:81.466667pt;}
.x5_c00442{left:120.000000pt;}
.x1_c00442{left:162.933333pt;}
.xb_c00442{left:193.568237pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_80e9a188e1501424b39ab926.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.480469;font-style:normal;font-weight:normal;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_55b4495de7374b7c24a7d0d9.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:1.568848;font-style:normal;font-weight:normal;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_caa6ab41606519e0611ab24d.woff2')format("woff");}.ff3_c00443{font-family:ff3_c00443;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00443{font-family:ff4_c00443;line-height:1.219238;font-style: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);}
.v1_c00443{vertical-align:-82.200000px;}
.v0_c00443{vertical-align:0.000000px;}
.ls0_c00443{letter-spacing:0.000000px;}
.ls1_c00443{letter-spacing:3.000000px;}
.sc__c00443{text-shadow:none;}
.sc0_c00443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00443{-webkit-text-stroke:0px transparent;}
.sc0_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00443{word-spacing:-16.272000px;}
.ws2_c00443{word-spacing:0.000000px;}
.ws1_c00443{word-spacing:84.492000px;}
._1a_c00443{margin-left:-45.864000px;}
._1b_c00443{margin-left:-19.800000px;}
._16_c00443{margin-left:-11.577000px;}
._17_c00443{margin-left:-9.501000px;}
._1e_c00443{margin-left:-7.770000px;}
._18_c00443{margin-left:-6.423000px;}
._d_c00443{margin-left:-5.007000px;}
._14_c00443{margin-left:-3.180000px;}
._6_c00443{margin-left:-1.473000px;}
._8_c00443{width:1.359000px;}
._7_c00443{width:3.288000px;}
._5_c00443{width:5.106000px;}
._3_c00443{width:6.768000px;}
._9_c00443{width:7.785000px;}
._a_c00443{width:8.838000px;}
._4_c00443{width:10.440000px;}
._0_c00443{width:11.592000px;}
._2_c00443{width:13.032000px;}
._1_c00443{width:14.904000px;}
._b_c00443{width:18.627000px;}
._e_c00443{width:20.169000px;}
._f_c00443{width:21.522000px;}
._15_c00443{width:24.282000px;}
._11_c00443{width:26.154000px;}
._12_c00443{width:27.489000px;}
._13_c00443{width:28.896000px;}
._c_c00443{width:30.156000px;}
._10_c00443{width:33.408000px;}
._1c_c00443{width:44.496000px;}
._19_c00443{width:114.168000px;}
._1d_c00443{width:451.680000px;}
.fc2_c00443{color:transparent;}
.fc1_c00443{color:rgb(128,128,128);}
.fc0_c00443{color:rgb(0,0,0);}
.fs3_c00443{font-size:48.000000px;}
.fs1_c00443{font-size:69.000000px;}
.fs0_c00443{font-size:72.000000px;}
.fs2_c00443{font-size:87.000000px;}
.y0_c00443{bottom:0.000000px;}
.y1e_c00443{bottom:3.105000px;}
.y1d_c00443{bottom:7.228369px;}
.y1c_c00443{bottom:51.870000px;}
.y1b_c00443{bottom:81.570000px;}
.y1a_c00443{bottom:106.020000px;}
.y19_c00443{bottom:131.670000px;}
.y18_c00443{bottom:156.870000px;}
.y17_c00443{bottom:181.470000px;}
.y16_c00443{bottom:207.270000px;}
.y15_c00443{bottom:232.470000px;}
.y14_c00443{bottom:257.070000px;}
.y13_c00443{bottom:282.420000px;}
.y12_c00443{bottom:306.420000px;}
.y11_c00443{bottom:332.070000px;}
.y10_c00443{bottom:355.620000px;}
.yf_c00443{bottom:380.070000px;}
.ye_c00443{bottom:404.970000px;}
.yd_c00443{bottom:430.020000px;}
.yc_c00443{bottom:454.170000px;}
.yb_c00443{bottom:478.620000px;}
.ya_c00443{bottom:503.520000px;}
.y9_c00443{bottom:527.820000px;}
.y8_c00443{bottom:553.170000px;}
.y7_c00443{bottom:577.170000px;}
.y6_c00443{bottom:602.070000px;}
.y5_c00443{bottom:626.670000px;}
.y4_c00443{bottom:651.720000px;}
.y3_c00443{bottom:676.320000px;}
.y2_c00443{bottom:701.370000px;}
.y1_c00443{bottom:727.020000px;}
.h5_c00443{height:13.200073px;}
.h6_c00443{height:43.804688px;}
.h2_c00443{height:84.269531px;}
.h3_c00443{height:87.361816px;}
.h4_c00443{height:92.829000px;}
.h1_c00443{height:783.750000px;}
.h0_c00443{height:784.050000px;}
.w1_c00443{width:104.875500px;}
.w0_c00443{width:499.500000px;}
.x0_c00443{left:0.000000px;}
.x8_c00443{left:83.400000px;}
.x6_c00443{left:84.600000px;}
.x7_c00443{left:85.650000px;}
.x4_c00443{left:86.700000px;}
.x2_c00443{left:88.650000px;}
.x5_c00443{left:91.800000px;}
.x3_c00443{left:174.750000px;}
.x9_c00443{left:201.564240px;}
.x1_c00443{left:204.600000px;}
@media print{
.v1_c00443{vertical-align:-73.066667pt;}
.v0_c00443{vertical-align:0.000000pt;}
.ls0_c00443{letter-spacing:0.000000pt;}
.ls1_c00443{letter-spacing:2.666667pt;}
.ws0_c00443{word-spacing:-14.464000pt;}
.ws2_c00443{word-spacing:0.000000pt;}
.ws1_c00443{word-spacing:75.104000pt;}
._1a_c00443{margin-left:-40.768000pt;}
._1b_c00443{margin-left:-17.600000pt;}
._16_c00443{margin-left:-10.290667pt;}
._17_c00443{margin-left:-8.445333pt;}
._1e_c00443{margin-left:-6.906667pt;}
._18_c00443{margin-left:-5.709333pt;}
._d_c00443{margin-left:-4.450667pt;}
._14_c00443{margin-left:-2.826667pt;}
._6_c00443{margin-left:-1.309333pt;}
._8_c00443{width:1.208000pt;}
._7_c00443{width:2.922667pt;}
._5_c00443{width:4.538667pt;}
._3_c00443{width:6.016000pt;}
._9_c00443{width:6.920000pt;}
._a_c00443{width:7.856000pt;}
._4_c00443{width:9.280000pt;}
._0_c00443{width:10.304000pt;}
._2_c00443{width:11.584000pt;}
._1_c00443{width:13.248000pt;}
._b_c00443{width:16.557333pt;}
._e_c00443{width:17.928000pt;}
._f_c00443{width:19.130667pt;}
._15_c00443{width:21.584000pt;}
._11_c00443{width:23.248000pt;}
._12_c00443{width:24.434667pt;}
._13_c00443{width:25.685333pt;}
._c_c00443{width:26.805333pt;}
._10_c00443{width:29.696000pt;}
._1c_c00443{width:39.552000pt;}
._19_c00443{width:101.482667pt;}
._1d_c00443{width:401.493333pt;}
.fs3_c00443{font-size:42.666667pt;}
.fs1_c00443{font-size:61.333333pt;}
.fs0_c00443{font-size:64.000000pt;}
.fs2_c00443{font-size:77.333333pt;}
.y0_c00443{bottom:0.000000pt;}
.y1e_c00443{bottom:2.760000pt;}
.y1d_c00443{bottom:6.425217pt;}
.y1c_c00443{bottom:46.106667pt;}
.y1b_c00443{bottom:72.506667pt;}
.y1a_c00443{bottom:94.240000pt;}
.y19_c00443{bottom:117.040000pt;}
.y18_c00443{bottom:139.440000pt;}
.y17_c00443{bottom:161.306667pt;}
.y16_c00443{bottom:184.240000pt;}
.y15_c00443{bottom:206.640000pt;}
.y14_c00443{bottom:228.506667pt;}
.y13_c00443{bottom:251.040000pt;}
.y12_c00443{bottom:272.373333pt;}
.y11_c00443{bottom:295.173333pt;}
.y10_c00443{bottom:316.106667pt;}
.yf_c00443{bottom:337.840000pt;}
.ye_c00443{bottom:359.973333pt;}
.yd_c00443{bottom:382.240000pt;}
.yc_c00443{bottom:403.706667pt;}
.yb_c00443{bottom:425.440000pt;}
.ya_c00443{bottom:447.573333pt;}
.y9_c00443{bottom:469.173333pt;}
.y8_c00443{bottom:491.706667pt;}
.y7_c00443{bottom:513.040000pt;}
.y6_c00443{bottom:535.173333pt;}
.y5_c00443{bottom:557.040000pt;}
.y4_c00443{bottom:579.306667pt;}
.y3_c00443{bottom:601.173333pt;}
.y2_c00443{bottom:623.440000pt;}
.y1_c00443{bottom:646.240000pt;}
.h5_c00443{height:11.733399pt;}
.h6_c00443{height:38.937500pt;}
.h2_c00443{height:74.906250pt;}
.h3_c00443{height:77.654948pt;}
.h4_c00443{height:82.514667pt;}
.h1_c00443{height:696.666667pt;}
.h0_c00443{height:696.933333pt;}
.w1_c00443{width:93.222667pt;}
.w0_c00443{width:444.000000pt;}
.x0_c00443{left:0.000000pt;}
.x8_c00443{left:74.133333pt;}
.x6_c00443{left:75.200000pt;}
.x7_c00443{left:76.133333pt;}
.x4_c00443{left:77.066667pt;}
.x2_c00443{left:78.800000pt;}
.x5_c00443{left:81.600000pt;}
.x3_c00443{left:155.333333pt;}
.x9_c00443{left:179.168213pt;}
.x1_c00443{left:181.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7bff18f9a813548de83930f0.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.480469;font-style:normal;font-weight:normal;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_cbbb385b88264e343e608644.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:1.568848;font-style:normal;font-weight:normal;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_17ee58fd3aa3ee87ea685e3c.woff2')format("woff");}.ff3_c00444{font-family:ff3_c00444;line-height:1.575000;font-style:normal;font-weight:normal;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_ab8c64d1f64d108168708fd9.woff2')format("woff");}.ff4_c00444{font-family:ff4_c00444;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00444;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00444{font-family:ff5_c00444;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00444{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00444{vertical-align:0.000000px;}
.ls6_c00444{letter-spacing:-12.000000px;}
.ls4_c00444{letter-spacing:0.000000px;}
.ls0_c00444{letter-spacing:1.848000px;}
.ls1_c00444{letter-spacing:2.142000px;}
.ls2_c00444{letter-spacing:3.000000px;}
.ls3_c00444{letter-spacing:6.864000px;}
.ls5_c00444{letter-spacing:30.000000px;}
.sc__c00444{text-shadow:none;}
.sc0_c00444{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00444{-webkit-text-stroke:0px transparent;}
.sc0_c00444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00444{word-spacing:-47.352000px;}
.ws3_c00444{word-spacing:-20.352000px;}
.ws2_c00444{word-spacing:-18.051000px;}
.ws1_c00444{word-spacing:-17.352000px;}
.ws4_c00444{word-spacing:0.000000px;}
._15_c00444{margin-left:-67.536000px;}
._19_c00444{margin-left:-30.096000px;}
._1a_c00444{margin-left:-26.496000px;}
._16_c00444{margin-left:-21.888000px;}
._17_c00444{margin-left:-13.752000px;}
._12_c00444{margin-left:-12.312000px;}
._13_c00444{margin-left:-10.368000px;}
._18_c00444{margin-left:-9.144000px;}
._a_c00444{margin-left:-7.632000px;}
._14_c00444{margin-left:-6.552000px;}
._9_c00444{margin-left:-4.752000px;}
._8_c00444{margin-left:-3.600000px;}
._b_c00444{margin-left:-2.592000px;}
._c_c00444{margin-left:-1.440000px;}
._e_c00444{width:1.584000px;}
._d_c00444{width:2.736000px;}
._f_c00444{width:3.960000px;}
._4_c00444{width:5.760000px;}
._1_c00444{width:6.840000px;}
._3_c00444{width:8.784000px;}
._0_c00444{width:10.800000px;}
._2_c00444{width:13.320000px;}
._7_c00444{width:14.328000px;}
._10_c00444{width:15.474000px;}
._11_c00444{width:18.582000px;}
._6_c00444{width:22.032000px;}
._1d_c00444{width:29.403000px;}
._1c_c00444{width:38.070000px;}
._1e_c00444{width:389.862000px;}
._5_c00444{width:410.400000px;}
._1b_c00444{width:784.152000px;}
.fc2_c00444{color:transparent;}
.fc1_c00444{color:rgb(128,128,128);}
.fc0_c00444{color:rgb(0,0,0);}
.fs4_c00444{font-size:48.000000px;}
.fs2_c00444{font-size:63.000000px;}
.fs1_c00444{font-size:66.000000px;}
.fs0_c00444{font-size:72.000000px;}
.fs3_c00444{font-size:81.000000px;}
.y0_c00444{bottom:0.000000px;}
.y1f_c00444{bottom:3.105000px;}
.y1e_c00444{bottom:7.228369px;}
.y1d_c00444{bottom:65.370000px;}
.y1c_c00444{bottom:90.120000px;}
.y1b_c00444{bottom:115.320000px;}
.y1a_c00444{bottom:140.670000px;}
.y19_c00444{bottom:162.720000px;}
.y18_c00444{bottom:189.270000px;}
.y17_c00444{bottom:210.570000px;}
.y16_c00444{bottom:238.620000px;}
.y15_c00444{bottom:262.920000px;}
.y14_c00444{bottom:288.270000px;}
.y13_c00444{bottom:309.870000px;}
.y12_c00444{bottom:334.770000px;}
.y11_c00444{bottom:358.320000px;}
.y10_c00444{bottom:382.320000px;}
.yf_c00444{bottom:407.370000px;}
.ye_c00444{bottom:431.370000px;}
.yd_c00444{bottom:455.670000px;}
.yc_c00444{bottom:480.570000px;}
.yb_c00444{bottom:505.470000px;}
.ya_c00444{bottom:529.770000px;}
.y9_c00444{bottom:554.820000px;}
.y8_c00444{bottom:579.420000px;}
.y7_c00444{bottom:603.720000px;}
.y6_c00444{bottom:628.770000px;}
.y5_c00444{bottom:653.070000px;}
.y4_c00444{bottom:677.670000px;}
.y3_c00444{bottom:701.670000px;}
.y2_c00444{bottom:726.570000px;}
.y1_c00444{bottom:752.220000px;}
.h6_c00444{height:13.200073px;}
.h7_c00444{height:43.804688px;}
.h5_c00444{height:81.632812px;}
.h4_c00444{height:83.563477px;}
.h2_c00444{height:84.269531px;}
.h3_c00444{height:91.160156px;}
.h1_c00444{height:785.250000px;}
.h0_c00444{height:785.400000px;}
.w1_c00444{width:104.875500px;}
.w0_c00444{width:523.500000px;}
.x0_c00444{left:0.000000px;}
.xb_c00444{left:21.300000px;}
.xa_c00444{left:25.950000px;}
.x2_c00444{left:28.350000px;}
.x3_c00444{left:29.400000px;}
.x4_c00444{left:30.750000px;}
.x5_c00444{left:32.700000px;}
.x6_c00444{left:33.750000px;}
.x7_c00444{left:35.100000px;}
.x9_c00444{left:36.150000px;}
.xc_c00444{left:38.100000px;}
.x1_c00444{left:136.950000px;}
.xd_c00444{left:213.564240px;}
.x8_c00444{left:285.600000px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls6_c00444{letter-spacing:-10.666667pt;}
.ls4_c00444{letter-spacing:0.000000pt;}
.ls0_c00444{letter-spacing:1.642667pt;}
.ls1_c00444{letter-spacing:1.904000pt;}
.ls2_c00444{letter-spacing:2.666667pt;}
.ls3_c00444{letter-spacing:6.101333pt;}
.ls5_c00444{letter-spacing:26.666667pt;}
.ws0_c00444{word-spacing:-42.090667pt;}
.ws3_c00444{word-spacing:-18.090667pt;}
.ws2_c00444{word-spacing:-16.045333pt;}
.ws1_c00444{word-spacing:-15.424000pt;}
.ws4_c00444{word-spacing:0.000000pt;}
._15_c00444{margin-left:-60.032000pt;}
._19_c00444{margin-left:-26.752000pt;}
._1a_c00444{margin-left:-23.552000pt;}
._16_c00444{margin-left:-19.456000pt;}
._17_c00444{margin-left:-12.224000pt;}
._12_c00444{margin-left:-10.944000pt;}
._13_c00444{margin-left:-9.216000pt;}
._18_c00444{margin-left:-8.128000pt;}
._a_c00444{margin-left:-6.784000pt;}
._14_c00444{margin-left:-5.824000pt;}
._9_c00444{margin-left:-4.224000pt;}
._8_c00444{margin-left:-3.200000pt;}
._b_c00444{margin-left:-2.304000pt;}
._c_c00444{margin-left:-1.280000pt;}
._e_c00444{width:1.408000pt;}
._d_c00444{width:2.432000pt;}
._f_c00444{width:3.520000pt;}
._4_c00444{width:5.120000pt;}
._1_c00444{width:6.080000pt;}
._3_c00444{width:7.808000pt;}
._0_c00444{width:9.600000pt;}
._2_c00444{width:11.840000pt;}
._7_c00444{width:12.736000pt;}
._10_c00444{width:13.754667pt;}
._11_c00444{width:16.517333pt;}
._6_c00444{width:19.584000pt;}
._1d_c00444{width:26.136000pt;}
._1c_c00444{width:33.840000pt;}
._1e_c00444{width:346.544000pt;}
._5_c00444{width:364.800000pt;}
._1b_c00444{width:697.024000pt;}
.fs4_c00444{font-size:42.666667pt;}
.fs2_c00444{font-size:56.000000pt;}
.fs1_c00444{font-size:58.666667pt;}
.fs0_c00444{font-size:64.000000pt;}
.fs3_c00444{font-size:72.000000pt;}
.y0_c00444{bottom:0.000000pt;}
.y1f_c00444{bottom:2.760000pt;}
.y1e_c00444{bottom:6.425217pt;}
.y1d_c00444{bottom:58.106667pt;}
.y1c_c00444{bottom:80.106667pt;}
.y1b_c00444{bottom:102.506667pt;}
.y1a_c00444{bottom:125.040000pt;}
.y19_c00444{bottom:144.640000pt;}
.y18_c00444{bottom:168.240000pt;}
.y17_c00444{bottom:187.173333pt;}
.y16_c00444{bottom:212.106667pt;}
.y15_c00444{bottom:233.706667pt;}
.y14_c00444{bottom:256.240000pt;}
.y13_c00444{bottom:275.440000pt;}
.y12_c00444{bottom:297.573333pt;}
.y11_c00444{bottom:318.506667pt;}
.y10_c00444{bottom:339.840000pt;}
.yf_c00444{bottom:362.106667pt;}
.ye_c00444{bottom:383.440000pt;}
.yd_c00444{bottom:405.040000pt;}
.yc_c00444{bottom:427.173333pt;}
.yb_c00444{bottom:449.306667pt;}
.ya_c00444{bottom:470.906667pt;}
.y9_c00444{bottom:493.173333pt;}
.y8_c00444{bottom:515.040000pt;}
.y7_c00444{bottom:536.640000pt;}
.y6_c00444{bottom:558.906667pt;}
.y5_c00444{bottom:580.506667pt;}
.y4_c00444{bottom:602.373333pt;}
.y3_c00444{bottom:623.706667pt;}
.y2_c00444{bottom:645.840000pt;}
.y1_c00444{bottom:668.640000pt;}
.h6_c00444{height:11.733399pt;}
.h7_c00444{height:38.937500pt;}
.h5_c00444{height:72.562500pt;}
.h4_c00444{height:74.278646pt;}
.h2_c00444{height:74.906250pt;}
.h3_c00444{height:81.031250pt;}
.h1_c00444{height:698.000000pt;}
.h0_c00444{height:698.133333pt;}
.w1_c00444{width:93.222667pt;}
.w0_c00444{width:465.333333pt;}
.x0_c00444{left:0.000000pt;}
.xb_c00444{left:18.933333pt;}
.xa_c00444{left:23.066667pt;}
.x2_c00444{left:25.200000pt;}
.x3_c00444{left:26.133333pt;}
.x4_c00444{left:27.333333pt;}
.x5_c00444{left:29.066667pt;}
.x6_c00444{left:30.000000pt;}
.x7_c00444{left:31.200000pt;}
.x9_c00444{left:32.133333pt;}
.xc_c00444{left:33.866667pt;}
.x1_c00444{left:121.733333pt;}
.xd_c00444{left:189.834880pt;}
.x8_c00444{left:253.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_476b31f15a0b561c18bf74a1.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00445;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00445;src:url('chunks/assets/font_b4d051fc1e919cf09cec3432.woff2')format("woff");}.ff3_c00445{font-family:ff3_c00445;line-height:1.568848;font-style:normal;font-weight:normal;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_9df596203b39aba826d25c63.woff2')format("woff");}.ff4_c00445{font-family:ff4_c00445;line-height:1.480469;font-style:normal;font-weight:normal;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_c2ddb6153d090c5167487581.woff2')format("woff");}.ff5_c00445{font-family:ff5_c00445;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00445{font-family:ff6_c00445;line-height:1.219238;font-style: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;}
.ls3_c00445{letter-spacing:0.000000px;}
.ls0_c00445{letter-spacing:0.150000px;}
.ls1_c00445{letter-spacing:3.000000px;}
.ls2_c00445{letter-spacing:13.602000px;}
.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:-33.192000px;}
.ws3_c00445{word-spacing:-27.660000px;}
.ws1_c00445{word-spacing:-21.000000px;}
.ws2_c00445{word-spacing:-20.352000px;}
.ws4_c00445{word-spacing:0.000000px;}
._f_c00445{margin-left:-7.368000px;}
._e_c00445{margin-left:-6.240000px;}
._d_c00445{margin-left:-4.500000px;}
._7_c00445{margin-left:-2.736000px;}
._5_c00445{margin-left:-1.632000px;}
._1_c00445{width:1.260000px;}
._2_c00445{width:2.352000px;}
._0_c00445{width:3.528000px;}
._4_c00445{width:5.112000px;}
._a_c00445{width:6.912000px;}
._10_c00445{width:7.920000px;}
._8_c00445{width:8.976000px;}
._3_c00445{width:10.164000px;}
._9_c00445{width:12.132000px;}
._6_c00445{width:13.272000px;}
._b_c00445{width:15.360000px;}
._12_c00445{width:17.616000px;}
._c_c00445{width:18.816000px;}
._11_c00445{width:22.176000px;}
._13_c00445{width:40.188000px;}
.fc2_c00445{color:transparent;}
.fc1_c00445{color:rgb(128,128,128);}
.fc0_c00445{color:rgb(0,0,0);}
.fs6_c00445{font-size:48.000000px;}
.fs4_c00445{font-size:60.000000px;}
.fs2_c00445{font-size:63.000000px;}
.fs1_c00445{font-size:72.000000px;}
.fs5_c00445{font-size:78.000000px;}
.fs3_c00445{font-size:81.000000px;}
.fs0_c00445{font-size:84.000000px;}
.y0_c00445{bottom:0.000000px;}
.y1f_c00445{bottom:3.105000px;}
.y1e_c00445{bottom:7.228363px;}
.y1d_c00445{bottom:60.450000px;}
.y1c_c00445{bottom:79.950000px;}
.y1b_c00445{bottom:104.400000px;}
.y1a_c00445{bottom:129.600000px;}
.y19_c00445{bottom:154.200000px;}
.y18_c00445{bottom:180.300000px;}
.y17_c00445{bottom:204.150000px;}
.y16_c00445{bottom:229.200000px;}
.y15_c00445{bottom:254.250000px;}
.y14_c00445{bottom:280.800000px;}
.y13_c00445{bottom:304.500000px;}
.y12_c00445{bottom:328.350000px;}
.y11_c00445{bottom:355.350000px;}
.y10_c00445{bottom:377.700000px;}
.yf_c00445{bottom:403.950000px;}
.ye_c00445{bottom:427.500000px;}
.yd_c00445{bottom:451.650000px;}
.yc_c00445{bottom:475.650000px;}
.yb_c00445{bottom:499.950000px;}
.ya_c00445{bottom:524.850000px;}
.y9_c00445{bottom:549.450000px;}
.y8_c00445{bottom:574.050000px;}
.y7_c00445{bottom:598.500000px;}
.y6_c00445{bottom:623.400000px;}
.y5_c00445{bottom:648.000000px;}
.y4_c00445{bottom:672.750000px;}
.y3_c00445{bottom:696.900000px;}
.y2_c00445{bottom:721.950000px;}
.y1_c00445{bottom:747.900000px;}
.h4_c00445{height:13.200074px;}
.h5_c00445{height:43.804688px;}
.h1_c00445{height:82.441406px;}
.h2_c00445{height:91.160156px;}
.h3_c00445{height:98.756836px;}
.h0_c00445{height:783.000000px;}
.w2_c00445{width:104.875500px;}
.w0_c00445{width:504.600000px;}
.w1_c00445{width:504.750000px;}
.x0_c00445{left:0.000000px;}
.x5_c00445{left:88.050000px;}
.x4_c00445{left:90.000000px;}
.x3_c00445{left:91.500000px;}
.x2_c00445{left:92.550000px;}
.x6_c00445{left:94.050000px;}
.x7_c00445{left:95.100000px;}
.x8_c00445{left:96.450000px;}
.xa_c00445{left:98.250000px;}
.x9_c00445{left:99.900000px;}
.xc_c00445{left:204.114258px;}
.x1_c00445{left:215.400000px;}
.xb_c00445{left:411.000000px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls3_c00445{letter-spacing:0.000000pt;}
.ls0_c00445{letter-spacing:0.133333pt;}
.ls1_c00445{letter-spacing:2.666667pt;}
.ls2_c00445{letter-spacing:12.090667pt;}
.ws0_c00445{word-spacing:-29.504000pt;}
.ws3_c00445{word-spacing:-24.586667pt;}
.ws1_c00445{word-spacing:-18.666667pt;}
.ws2_c00445{word-spacing:-18.090667pt;}
.ws4_c00445{word-spacing:0.000000pt;}
._f_c00445{margin-left:-6.549333pt;}
._e_c00445{margin-left:-5.546667pt;}
._d_c00445{margin-left:-4.000000pt;}
._7_c00445{margin-left:-2.432000pt;}
._5_c00445{margin-left:-1.450667pt;}
._1_c00445{width:1.120000pt;}
._2_c00445{width:2.090667pt;}
._0_c00445{width:3.136000pt;}
._4_c00445{width:4.544000pt;}
._a_c00445{width:6.144000pt;}
._10_c00445{width:7.040000pt;}
._8_c00445{width:7.978667pt;}
._3_c00445{width:9.034667pt;}
._9_c00445{width:10.784000pt;}
._6_c00445{width:11.797333pt;}
._b_c00445{width:13.653333pt;}
._12_c00445{width:15.658667pt;}
._c_c00445{width:16.725333pt;}
._11_c00445{width:19.712000pt;}
._13_c00445{width:35.722667pt;}
.fs6_c00445{font-size:42.666667pt;}
.fs4_c00445{font-size:53.333333pt;}
.fs2_c00445{font-size:56.000000pt;}
.fs1_c00445{font-size:64.000000pt;}
.fs5_c00445{font-size:69.333333pt;}
.fs3_c00445{font-size:72.000000pt;}
.fs0_c00445{font-size:74.666667pt;}
.y0_c00445{bottom:0.000000pt;}
.y1f_c00445{bottom:2.760000pt;}
.y1e_c00445{bottom:6.425212pt;}
.y1d_c00445{bottom:53.733333pt;}
.y1c_c00445{bottom:71.066667pt;}
.y1b_c00445{bottom:92.800000pt;}
.y1a_c00445{bottom:115.200000pt;}
.y19_c00445{bottom:137.066667pt;}
.y18_c00445{bottom:160.266667pt;}
.y17_c00445{bottom:181.466667pt;}
.y16_c00445{bottom:203.733333pt;}
.y15_c00445{bottom:226.000000pt;}
.y14_c00445{bottom:249.600000pt;}
.y13_c00445{bottom:270.666667pt;}
.y12_c00445{bottom:291.866667pt;}
.y11_c00445{bottom:315.866667pt;}
.y10_c00445{bottom:335.733333pt;}
.yf_c00445{bottom:359.066667pt;}
.ye_c00445{bottom:380.000000pt;}
.yd_c00445{bottom:401.466667pt;}
.yc_c00445{bottom:422.800000pt;}
.yb_c00445{bottom:444.400000pt;}
.ya_c00445{bottom:466.533333pt;}
.y9_c00445{bottom:488.400000pt;}
.y8_c00445{bottom:510.266667pt;}
.y7_c00445{bottom:532.000000pt;}
.y6_c00445{bottom:554.133333pt;}
.y5_c00445{bottom:576.000000pt;}
.y4_c00445{bottom:598.000000pt;}
.y3_c00445{bottom:619.466667pt;}
.y2_c00445{bottom:641.733333pt;}
.y1_c00445{bottom:664.800000pt;}
.h4_c00445{height:11.733399pt;}
.h5_c00445{height:38.937500pt;}
.h1_c00445{height:73.281250pt;}
.h2_c00445{height:81.031250pt;}
.h3_c00445{height:87.783854pt;}
.h0_c00445{height:696.000000pt;}
.w2_c00445{width:93.222667pt;}
.w0_c00445{width:448.533333pt;}
.w1_c00445{width:448.666667pt;}
.x0_c00445{left:0.000000pt;}
.x5_c00445{left:78.266667pt;}
.x4_c00445{left:80.000000pt;}
.x3_c00445{left:81.333333pt;}
.x2_c00445{left:82.266667pt;}
.x6_c00445{left:83.600000pt;}
.x7_c00445{left:84.533333pt;}
.x8_c00445{left:85.733333pt;}
.xa_c00445{left:87.333333pt;}
.x9_c00445{left:88.800000pt;}
.xc_c00445{left:181.434896pt;}
.x1_c00445{left:191.466667pt;}
.xb_c00445{left:365.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_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_f8c4c4f9565332a431ac7d83.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.480469;font-style:normal;font-weight:normal;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_4174f9966ff52150f3bf8e1f.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00446{font-family:ff3_c00446;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00446{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00446{vertical-align:0.000000px;}
.ls0_c00446{letter-spacing:-3.000000px;}
.ls2_c00446{letter-spacing:0.000000px;}
.ls1_c00446{letter-spacing:3.000000px;}
.sc__c00446{text-shadow:none;}
.sc0_c00446{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00446{-webkit-text-stroke:0px transparent;}
.sc0_c00446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00446{word-spacing:-17.352000px;}
.ws1_c00446{word-spacing:-15.183000px;}
.ws2_c00446{word-spacing:0.000000px;}
._e_c00446{margin-left:-11.448000px;}
._10_c00446{margin-left:-9.750000px;}
._8_c00446{margin-left:-8.520000px;}
._11_c00446{margin-left:-7.416000px;}
._6_c00446{margin-left:-6.264000px;}
._d_c00446{margin-left:-4.716000px;}
._9_c00446{margin-left:-3.657000px;}
._7_c00446{margin-left:-2.436000px;}
._a_c00446{margin-left:-1.353000px;}
._0_c00446{width:1.305000px;}
._2_c00446{width:3.306000px;}
._f_c00446{width:4.485000px;}
._1_c00446{width:5.568000px;}
._3_c00446{width:7.134000px;}
._c_c00446{width:8.280000px;}
._15_c00446{width:9.435000px;}
._b_c00446{width:10.797000px;}
._14_c00446{width:12.873000px;}
._13_c00446{width:15.624000px;}
._12_c00446{width:16.764000px;}
._17_c00446{width:18.459000px;}
._5_c00446{width:20.358000px;}
._16_c00446{width:22.995000px;}
._18_c00446{width:41.814000px;}
._19_c00446{width:214.203000px;}
._4_c00446{width:320.247000px;}
.fc2_c00446{color:transparent;}
.fc1_c00446{color:rgb(128,128,128);}
.fc0_c00446{color:rgb(0,0,0);}
.fs4_c00446{font-size:48.000000px;}
.fs3_c00446{font-size:63.000000px;}
.fs2_c00446{font-size:69.000000px;}
.fs1_c00446{font-size:72.000000px;}
.fs0_c00446{font-size:87.000000px;}
.y0_c00446{bottom:0.000000px;}
.y1f_c00446{bottom:3.105000px;}
.y1e_c00446{bottom:7.228357px;}
.y1d_c00446{bottom:39.180000px;}
.y1c_c00446{bottom:66.480000px;}
.y1b_c00446{bottom:88.830000px;}
.y1a_c00446{bottom:116.130000px;}
.y19_c00446{bottom:143.430000px;}
.y18_c00446{bottom:169.080000px;}
.y17_c00446{bottom:193.830000px;}
.y16_c00446{bottom:214.980000px;}
.y15_c00446{bottom:244.080000px;}
.y14_c00446{bottom:264.930000px;}
.y13_c00446{bottom:293.280000px;}
.y12_c00446{bottom:318.030000px;}
.y11_c00446{bottom:340.980000px;}
.y10_c00446{bottom:364.830000px;}
.yf_c00446{bottom:389.880000px;}
.ye_c00446{bottom:414.780000px;}
.yd_c00446{bottom:439.530000px;}
.yc_c00446{bottom:465.030000px;}
.yb_c00446{bottom:488.730000px;}
.ya_c00446{bottom:513.780000px;}
.y9_c00446{bottom:538.680000px;}
.y8_c00446{bottom:564.030000px;}
.y7_c00446{bottom:588.030000px;}
.y6_c00446{bottom:615.030000px;}
.y5_c00446{bottom:637.830000px;}
.y4_c00446{bottom:662.280000px;}
.y3_c00446{bottom:687.480000px;}
.y2_c00446{bottom:711.780000px;}
.y1_c00446{bottom:736.830000px;}
.h5_c00446{height:13.200074px;}
.h6_c00446{height:43.804688px;}
.h4_c00446{height:87.361816px;}
.h3_c00446{height:91.160156px;}
.h2_c00446{height:101.825684px;}
.h0_c00446{height:788.700000px;}
.h1_c00446{height:789.000000px;}
.w2_c00446{width:104.875500px;}
.w1_c00446{width:527.250000px;}
.w0_c00446{width:527.325000px;}
.x0_c00446{left:0.000000px;}
.x2_c00446{left:33.000000px;}
.x3_c00446{left:34.050000px;}
.x4_c00446{left:36.150000px;}
.x5_c00446{left:37.500000px;}
.x6_c00446{left:39.450000px;}
.x8_c00446{left:40.500000px;}
.x7_c00446{left:42.150000px;}
.x1_c00446{left:194.100000px;}
.xa_c00446{left:215.476730px;}
.x9_c00446{left:281.700000px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.ls0_c00446{letter-spacing:-2.666667pt;}
.ls2_c00446{letter-spacing:0.000000pt;}
.ls1_c00446{letter-spacing:2.666667pt;}
.ws0_c00446{word-spacing:-15.424000pt;}
.ws1_c00446{word-spacing:-13.496000pt;}
.ws2_c00446{word-spacing:0.000000pt;}
._e_c00446{margin-left:-10.176000pt;}
._10_c00446{margin-left:-8.666667pt;}
._8_c00446{margin-left:-7.573333pt;}
._11_c00446{margin-left:-6.592000pt;}
._6_c00446{margin-left:-5.568000pt;}
._d_c00446{margin-left:-4.192000pt;}
._9_c00446{margin-left:-3.250667pt;}
._7_c00446{margin-left:-2.165333pt;}
._a_c00446{margin-left:-1.202667pt;}
._0_c00446{width:1.160000pt;}
._2_c00446{width:2.938667pt;}
._f_c00446{width:3.986667pt;}
._1_c00446{width:4.949333pt;}
._3_c00446{width:6.341333pt;}
._c_c00446{width:7.360000pt;}
._15_c00446{width:8.386667pt;}
._b_c00446{width:9.597333pt;}
._14_c00446{width:11.442667pt;}
._13_c00446{width:13.888000pt;}
._12_c00446{width:14.901333pt;}
._17_c00446{width:16.408000pt;}
._5_c00446{width:18.096000pt;}
._16_c00446{width:20.440000pt;}
._18_c00446{width:37.168000pt;}
._19_c00446{width:190.402667pt;}
._4_c00446{width:284.664000pt;}
.fs4_c00446{font-size:42.666667pt;}
.fs3_c00446{font-size:56.000000pt;}
.fs2_c00446{font-size:61.333333pt;}
.fs1_c00446{font-size:64.000000pt;}
.fs0_c00446{font-size:77.333333pt;}
.y0_c00446{bottom:0.000000pt;}
.y1f_c00446{bottom:2.760000pt;}
.y1e_c00446{bottom:6.425206pt;}
.y1d_c00446{bottom:34.826667pt;}
.y1c_c00446{bottom:59.093333pt;}
.y1b_c00446{bottom:78.960000pt;}
.y1a_c00446{bottom:103.226667pt;}
.y19_c00446{bottom:127.493333pt;}
.y18_c00446{bottom:150.293333pt;}
.y17_c00446{bottom:172.293333pt;}
.y16_c00446{bottom:191.093333pt;}
.y15_c00446{bottom:216.960000pt;}
.y14_c00446{bottom:235.493333pt;}
.y13_c00446{bottom:260.693333pt;}
.y12_c00446{bottom:282.693333pt;}
.y11_c00446{bottom:303.093333pt;}
.y10_c00446{bottom:324.293333pt;}
.yf_c00446{bottom:346.560000pt;}
.ye_c00446{bottom:368.693333pt;}
.yd_c00446{bottom:390.693333pt;}
.yc_c00446{bottom:413.360000pt;}
.yb_c00446{bottom:434.426667pt;}
.ya_c00446{bottom:456.693333pt;}
.y9_c00446{bottom:478.826667pt;}
.y8_c00446{bottom:501.360000pt;}
.y7_c00446{bottom:522.693333pt;}
.y6_c00446{bottom:546.693333pt;}
.y5_c00446{bottom:566.960000pt;}
.y4_c00446{bottom:588.693333pt;}
.y3_c00446{bottom:611.093333pt;}
.y2_c00446{bottom:632.693333pt;}
.y1_c00446{bottom:654.960000pt;}
.h5_c00446{height:11.733399pt;}
.h6_c00446{height:38.937500pt;}
.h4_c00446{height:77.654948pt;}
.h3_c00446{height:81.031250pt;}
.h2_c00446{height:90.511719pt;}
.h0_c00446{height:701.066667pt;}
.h1_c00446{height:701.333333pt;}
.w2_c00446{width:93.222667pt;}
.w1_c00446{width:468.666667pt;}
.w0_c00446{width:468.733333pt;}
.x0_c00446{left:0.000000pt;}
.x2_c00446{left:29.333333pt;}
.x3_c00446{left:30.266667pt;}
.x4_c00446{left:32.133333pt;}
.x5_c00446{left:33.333333pt;}
.x6_c00446{left:35.066667pt;}
.x8_c00446{left:36.000000pt;}
.x7_c00446{left:37.466667pt;}
.x1_c00446{left:172.533333pt;}
.xa_c00446{left:191.534871pt;}
.x9_c00446{left:250.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e827c1099a31b909b44b7179.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00447;src:url('chunks/assets/font_ee932ce7ba16436643878fb6.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00447;src:url('chunks/assets/font_d158d32317426a40836fda4d.woff2')format("woff");}.ff3_c00447{font-family:ff3_c00447;line-height:1.568848;font-style:normal;font-weight:normal;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_9c12ebfb76fa33bc9fe2fcef.woff2')format("woff");}.ff4_c00447{font-family:ff4_c00447;line-height:1.480469;font-style:normal;font-weight:normal;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_862848a3d1139ba850f05f9f.woff2')format("woff");}.ff5_c00447{font-family:ff5_c00447;line-height:1.575000;font-style:normal;font-weight:normal;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_9ff8fecee95886345e77418b.woff2')format("woff");}.ff6_c00447{font-family:ff6_c00447;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00447;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00447{font-family:ff7_c00447;line-height:1.219238;font-style: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;}
.ls3_c00447{letter-spacing:0.000000px;}
.ls1_c00447{letter-spacing:2.280000px;}
.ls4_c00447{letter-spacing:3.000000px;}
.ls0_c00447{letter-spacing:14.388000px;}
.ls2_c00447{letter-spacing:159.048000px;}
.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;}
}
.ws2_c00447{word-spacing:-21.750000px;}
.ws0_c00447{word-spacing:-21.000000px;}
.ws1_c00447{word-spacing:-20.352000px;}
.ws4_c00447{word-spacing:-18.798000px;}
.ws3_c00447{word-spacing:-17.352000px;}
.ws5_c00447{word-spacing:0.000000px;}
._0_c00447{margin-left:-29.160000px;}
._16_c00447{margin-left:-19.407000px;}
._15_c00447{margin-left:-17.529000px;}
._1a_c00447{margin-left:-16.416000px;}
._3_c00447{margin-left:-15.309000px;}
._18_c00447{margin-left:-11.736000px;}
._19_c00447{margin-left:-10.656000px;}
._9_c00447{margin-left:-8.937000px;}
._a_c00447{margin-left:-7.128000px;}
._b_c00447{margin-left:-5.544000px;}
._1_c00447{margin-left:-3.807000px;}
._8_c00447{margin-left:-2.484000px;}
._c_c00447{margin-left:-1.377000px;}
._6_c00447{width:1.596000px;}
._5_c00447{width:3.528000px;}
._7_c00447{width:5.460000px;}
._d_c00447{width:6.768000px;}
._f_c00447{width:8.103000px;}
._e_c00447{width:9.468000px;}
._13_c00447{width:10.929000px;}
._2_c00447{width:12.798000px;}
._10_c00447{width:13.962000px;}
._12_c00447{width:15.960000px;}
._11_c00447{width:17.499000px;}
._14_c00447{width:21.579000px;}
._1b_c00447{width:23.859000px;}
._1c_c00447{width:60.438000px;}
._1d_c00447{width:133.755000px;}
._1e_c00447{width:243.687000px;}
._17_c00447{width:245.448000px;}
._4_c00447{width:284.268000px;}
.fc2_c00447{color:transparent;}
.fc1_c00447{color:rgb(128,128,128);}
.fc0_c00447{color:rgb(0,0,0);}
.fs7_c00447{font-size:48.000000px;}
.fs5_c00447{font-size:57.000000px;}
.fs3_c00447{font-size:63.000000px;}
.fs2_c00447{font-size:72.000000px;}
.fs6_c00447{font-size:78.000000px;}
.fs0_c00447{font-size:81.000000px;}
.fs1_c00447{font-size:84.000000px;}
.fs4_c00447{font-size:87.000000px;}
.y0_c00447{bottom:0.000000px;}
.y1e_c00447{bottom:3.105000px;}
.y1d_c00447{bottom:7.228371px;}
.y1c_c00447{bottom:65.265000px;}
.y1b_c00447{bottom:93.165000px;}
.y1a_c00447{bottom:114.765000px;}
.y19_c00447{bottom:141.465000px;}
.y18_c00447{bottom:166.365000px;}
.y17_c00447{bottom:190.365000px;}
.y16_c00447{bottom:217.665000px;}
.y15_c00447{bottom:244.815000px;}
.y14_c00447{bottom:268.965000px;}
.y13_c00447{bottom:291.315000px;}
.y12_c00447{bottom:315.915000px;}
.y11_c00447{bottom:343.215000px;}
.y10_c00447{bottom:365.565000px;}
.yf_c00447{bottom:390.615000px;}
.ye_c00447{bottom:417.615000px;}
.yd_c00447{bottom:440.415000px;}
.yc_c00447{bottom:465.165000px;}
.yb_c00447{bottom:490.065000px;}
.ya_c00447{bottom:514.365000px;}
.y9_c00447{bottom:539.115000px;}
.y8_c00447{bottom:564.315000px;}
.y7_c00447{bottom:588.615000px;}
.y6_c00447{bottom:613.665000px;}
.y5_c00447{bottom:638.115000px;}
.y4_c00447{bottom:663.165000px;}
.y3_c00447{bottom:688.215000px;}
.y2_c00447{bottom:713.115000px;}
.y1_c00447{bottom:737.565000px;}
.h5_c00447{height:13.200074px;}
.h6_c00447{height:43.804688px;}
.h2_c00447{height:82.441406px;}
.h3_c00447{height:91.160156px;}
.h4_c00447{height:91.291992px;}
.h0_c00447{height:787.875000px;}
.h1_c00447{height:788.250000px;}
.w2_c00447{width:104.875500px;}
.w1_c00447{width:536.250000px;}
.w0_c00447{width:536.475000px;}
.x0_c00447{left:0.000000px;}
.x6_c00447{left:12.450000px;}
.x8_c00447{left:13.500000px;}
.x5_c00447{left:14.850000px;}
.x7_c00447{left:94.200000px;}
.x4_c00447{left:95.850000px;}
.x3_c00447{left:97.500000px;}
.x2_c00447{left:98.850000px;}
.x1_c00447{left:111.450000px;}
.x9_c00447{left:220.051758px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls3_c00447{letter-spacing:0.000000pt;}
.ls1_c00447{letter-spacing:2.026667pt;}
.ls4_c00447{letter-spacing:2.666667pt;}
.ls0_c00447{letter-spacing:12.789333pt;}
.ls2_c00447{letter-spacing:141.376000pt;}
.ws2_c00447{word-spacing:-19.333333pt;}
.ws0_c00447{word-spacing:-18.666667pt;}
.ws1_c00447{word-spacing:-18.090667pt;}
.ws4_c00447{word-spacing:-16.709333pt;}
.ws3_c00447{word-spacing:-15.424000pt;}
.ws5_c00447{word-spacing:0.000000pt;}
._0_c00447{margin-left:-25.920000pt;}
._16_c00447{margin-left:-17.250667pt;}
._15_c00447{margin-left:-15.581333pt;}
._1a_c00447{margin-left:-14.592000pt;}
._3_c00447{margin-left:-13.608000pt;}
._18_c00447{margin-left:-10.432000pt;}
._19_c00447{margin-left:-9.472000pt;}
._9_c00447{margin-left:-7.944000pt;}
._a_c00447{margin-left:-6.336000pt;}
._b_c00447{margin-left:-4.928000pt;}
._1_c00447{margin-left:-3.384000pt;}
._8_c00447{margin-left:-2.208000pt;}
._c_c00447{margin-left:-1.224000pt;}
._6_c00447{width:1.418667pt;}
._5_c00447{width:3.136000pt;}
._7_c00447{width:4.853333pt;}
._d_c00447{width:6.016000pt;}
._f_c00447{width:7.202667pt;}
._e_c00447{width:8.416000pt;}
._13_c00447{width:9.714667pt;}
._2_c00447{width:11.376000pt;}
._10_c00447{width:12.410667pt;}
._12_c00447{width:14.186667pt;}
._11_c00447{width:15.554667pt;}
._14_c00447{width:19.181333pt;}
._1b_c00447{width:21.208000pt;}
._1c_c00447{width:53.722667pt;}
._1d_c00447{width:118.893333pt;}
._1e_c00447{width:216.610667pt;}
._17_c00447{width:218.176000pt;}
._4_c00447{width:252.682667pt;}
.fs7_c00447{font-size:42.666667pt;}
.fs5_c00447{font-size:50.666667pt;}
.fs3_c00447{font-size:56.000000pt;}
.fs2_c00447{font-size:64.000000pt;}
.fs6_c00447{font-size:69.333333pt;}
.fs0_c00447{font-size:72.000000pt;}
.fs1_c00447{font-size:74.666667pt;}
.fs4_c00447{font-size:77.333333pt;}
.y0_c00447{bottom:0.000000pt;}
.y1e_c00447{bottom:2.760000pt;}
.y1d_c00447{bottom:6.425219pt;}
.y1c_c00447{bottom:58.013333pt;}
.y1b_c00447{bottom:82.813333pt;}
.y1a_c00447{bottom:102.013333pt;}
.y19_c00447{bottom:125.746667pt;}
.y18_c00447{bottom:147.880000pt;}
.y17_c00447{bottom:169.213333pt;}
.y16_c00447{bottom:193.480000pt;}
.y15_c00447{bottom:217.613333pt;}
.y14_c00447{bottom:239.080000pt;}
.y13_c00447{bottom:258.946667pt;}
.y12_c00447{bottom:280.813333pt;}
.y11_c00447{bottom:305.080000pt;}
.y10_c00447{bottom:324.946667pt;}
.yf_c00447{bottom:347.213333pt;}
.ye_c00447{bottom:371.213333pt;}
.yd_c00447{bottom:391.480000pt;}
.yc_c00447{bottom:413.480000pt;}
.yb_c00447{bottom:435.613333pt;}
.ya_c00447{bottom:457.213333pt;}
.y9_c00447{bottom:479.213333pt;}
.y8_c00447{bottom:501.613333pt;}
.y7_c00447{bottom:523.213333pt;}
.y6_c00447{bottom:545.480000pt;}
.y5_c00447{bottom:567.213333pt;}
.y4_c00447{bottom:589.480000pt;}
.y3_c00447{bottom:611.746667pt;}
.y2_c00447{bottom:633.880000pt;}
.y1_c00447{bottom:655.613333pt;}
.h5_c00447{height:11.733399pt;}
.h6_c00447{height:38.937500pt;}
.h2_c00447{height:73.281250pt;}
.h3_c00447{height:81.031250pt;}
.h4_c00447{height:81.148438pt;}
.h0_c00447{height:700.333333pt;}
.h1_c00447{height:700.666667pt;}
.w2_c00447{width:93.222667pt;}
.w1_c00447{width:476.666667pt;}
.w0_c00447{width:476.866667pt;}
.x0_c00447{left:0.000000pt;}
.x6_c00447{left:11.066667pt;}
.x8_c00447{left:12.000000pt;}
.x5_c00447{left:13.200000pt;}
.x7_c00447{left:83.733333pt;}
.x4_c00447{left:85.200000pt;}
.x3_c00447{left:86.666667pt;}
.x2_c00447{left:87.866667pt;}
.x1_c00447{left:99.066667pt;}
.x9_c00447{left:195.601563pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ab419222627be87e627c3da9.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.480469;font-style:normal;font-weight:normal;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_d4edcc36a6e97f5974e4da8a.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:1.568848;font-style:normal;font-weight:normal;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_5d7a6b357b4ecba684c23217.woff2')format("woff");}.ff3_c00448{font-family:ff3_c00448;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00448;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00448{font-family:ff4_c00448;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00448;src:url('chunks/assets/font_9ee8fe167f9f2c30b89861fa.woff2')format("woff");}.ff5_c00448{font-family:ff5_c00448;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00448;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00448{font-family:ff6_c00448;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00448{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00448{vertical-align:0.000000px;}
.ls2_c00448{letter-spacing:0.000000px;}
.ls0_c00448{letter-spacing:1.848000px;}
.ls1_c00448{letter-spacing:3.000000px;}
.ls3_c00448{letter-spacing:6.000000px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00448{word-spacing:-20.352000px;}
.ws1_c00448{word-spacing:0.000000px;}
._11_c00448{margin-left:-21.600000px;}
._9_c00448{margin-left:-12.240000px;}
._12_c00448{margin-left:-9.648000px;}
._d_c00448{margin-left:-8.496000px;}
._8_c00448{margin-left:-7.488000px;}
._a_c00448{margin-left:-6.480000px;}
._b_c00448{margin-left:-5.400000px;}
._13_c00448{margin-left:-4.392000px;}
._e_c00448{margin-left:-3.312000px;}
._7_c00448{margin-left:-2.232000px;}
._c_c00448{margin-left:-1.080000px;}
._10_c00448{width:1.296000px;}
._f_c00448{width:2.952000px;}
._14_c00448{width:4.014000px;}
._4_c00448{width:5.472000px;}
._3_c00448{width:7.128000px;}
._1_c00448{width:9.504000px;}
._2_c00448{width:11.088000px;}
._5_c00448{width:12.456000px;}
._15_c00448{width:14.688000px;}
._0_c00448{width:15.696000px;}
._16_c00448{width:309.687000px;}
._6_c00448{width:358.128000px;}
.fc2_c00448{color:transparent;}
.fc1_c00448{color:rgb(128,128,128);}
.fc0_c00448{color:rgb(0,0,0);}
.fs3_c00448{font-size:48.000000px;}
.fs2_c00448{font-size:63.000000px;}
.fs1_c00448{font-size:69.000000px;}
.fs0_c00448{font-size:72.000000px;}
.y0_c00448{bottom:0.000000px;}
.y1f_c00448{bottom:3.105000px;}
.y1e_c00448{bottom:7.228355px;}
.y1d_c00448{bottom:45.135000px;}
.y1c_c00448{bottom:73.785000px;}
.y1b_c00448{bottom:98.835000px;}
.y1a_c00448{bottom:122.535000px;}
.y19_c00448{bottom:148.035000px;}
.y18_c00448{bottom:174.435000px;}
.y17_c00448{bottom:198.435000px;}
.y16_c00448{bottom:221.685000px;}
.y15_c00448{bottom:248.685000px;}
.y14_c00448{bottom:273.285000px;}
.y13_c00448{bottom:295.935000px;}
.y12_c00448{bottom:321.885000px;}
.y11_c00448{bottom:346.635000px;}
.y10_c00448{bottom:370.485000px;}
.yf_c00448{bottom:395.235000px;}
.ye_c00448{bottom:420.885000px;}
.yd_c00448{bottom:445.035000px;}
.yc_c00448{bottom:469.785000px;}
.yb_c00448{bottom:494.535000px;}
.ya_c00448{bottom:519.435000px;}
.y9_c00448{bottom:544.335000px;}
.y8_c00448{bottom:569.385000px;}
.y7_c00448{bottom:593.685000px;}
.y6_c00448{bottom:619.185000px;}
.y5_c00448{bottom:644.235000px;}
.y4_c00448{bottom:669.285000px;}
.y3_c00448{bottom:692.835000px;}
.y2_c00448{bottom:717.435000px;}
.y1_c00448{bottom:743.385000px;}
.h5_c00448{height:13.200074px;}
.h6_c00448{height:43.804688px;}
.h2_c00448{height:84.269531px;}
.h3_c00448{height:91.160156px;}
.h4_c00448{height:91.760156px;}
.h1_c00448{height:786.000000px;}
.h0_c00448{height:786.225000px;}
.w1_c00448{width:104.875500px;}
.w0_c00448{width:526.500000px;}
.x0_c00448{left:0.000000px;}
.x6_c00448{left:37.800000px;}
.xa_c00448{left:42.900000px;}
.x8_c00448{left:44.250000px;}
.x9_c00448{left:45.600000px;}
.x7_c00448{left:47.550000px;}
.x5_c00448{left:48.600000px;}
.x4_c00448{left:50.250000px;}
.x3_c00448{left:51.600000px;}
.x2_c00448{left:52.650000px;}
.x1_c00448{left:166.650000px;}
.xc_c00448{left:215.064240px;}
.xb_c00448{left:233.550000px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls2_c00448{letter-spacing:0.000000pt;}
.ls0_c00448{letter-spacing:1.642667pt;}
.ls1_c00448{letter-spacing:2.666667pt;}
.ls3_c00448{letter-spacing:5.333333pt;}
.ws0_c00448{word-spacing:-18.090667pt;}
.ws1_c00448{word-spacing:0.000000pt;}
._11_c00448{margin-left:-19.200000pt;}
._9_c00448{margin-left:-10.880000pt;}
._12_c00448{margin-left:-8.576000pt;}
._d_c00448{margin-left:-7.552000pt;}
._8_c00448{margin-left:-6.656000pt;}
._a_c00448{margin-left:-5.760000pt;}
._b_c00448{margin-left:-4.800000pt;}
._13_c00448{margin-left:-3.904000pt;}
._e_c00448{margin-left:-2.944000pt;}
._7_c00448{margin-left:-1.984000pt;}
._c_c00448{margin-left:-0.960000pt;}
._10_c00448{width:1.152000pt;}
._f_c00448{width:2.624000pt;}
._14_c00448{width:3.568000pt;}
._4_c00448{width:4.864000pt;}
._3_c00448{width:6.336000pt;}
._1_c00448{width:8.448000pt;}
._2_c00448{width:9.856000pt;}
._5_c00448{width:11.072000pt;}
._15_c00448{width:13.056000pt;}
._0_c00448{width:13.952000pt;}
._16_c00448{width:275.277333pt;}
._6_c00448{width:318.336000pt;}
.fs3_c00448{font-size:42.666667pt;}
.fs2_c00448{font-size:56.000000pt;}
.fs1_c00448{font-size:61.333333pt;}
.fs0_c00448{font-size:64.000000pt;}
.y0_c00448{bottom:0.000000pt;}
.y1f_c00448{bottom:2.760000pt;}
.y1e_c00448{bottom:6.425204pt;}
.y1d_c00448{bottom:40.120000pt;}
.y1c_c00448{bottom:65.586667pt;}
.y1b_c00448{bottom:87.853333pt;}
.y1a_c00448{bottom:108.920000pt;}
.y19_c00448{bottom:131.586667pt;}
.y18_c00448{bottom:155.053333pt;}
.y17_c00448{bottom:176.386667pt;}
.y16_c00448{bottom:197.053333pt;}
.y15_c00448{bottom:221.053333pt;}
.y14_c00448{bottom:242.920000pt;}
.y13_c00448{bottom:263.053333pt;}
.y12_c00448{bottom:286.120000pt;}
.y11_c00448{bottom:308.120000pt;}
.y10_c00448{bottom:329.320000pt;}
.yf_c00448{bottom:351.320000pt;}
.ye_c00448{bottom:374.120000pt;}
.yd_c00448{bottom:395.586667pt;}
.yc_c00448{bottom:417.586667pt;}
.yb_c00448{bottom:439.586667pt;}
.ya_c00448{bottom:461.720000pt;}
.y9_c00448{bottom:483.853333pt;}
.y8_c00448{bottom:506.120000pt;}
.y7_c00448{bottom:527.720000pt;}
.y6_c00448{bottom:550.386667pt;}
.y5_c00448{bottom:572.653333pt;}
.y4_c00448{bottom:594.920000pt;}
.y3_c00448{bottom:615.853333pt;}
.y2_c00448{bottom:637.720000pt;}
.y1_c00448{bottom:660.786667pt;}
.h5_c00448{height:11.733399pt;}
.h6_c00448{height:38.937500pt;}
.h2_c00448{height:74.906250pt;}
.h3_c00448{height:81.031250pt;}
.h4_c00448{height:81.564583pt;}
.h1_c00448{height:698.666667pt;}
.h0_c00448{height:698.866667pt;}
.w1_c00448{width:93.222667pt;}
.w0_c00448{width:468.000000pt;}
.x0_c00448{left:0.000000pt;}
.x6_c00448{left:33.600000pt;}
.xa_c00448{left:38.133333pt;}
.x8_c00448{left:39.333333pt;}
.x9_c00448{left:40.533333pt;}
.x7_c00448{left:42.266667pt;}
.x5_c00448{left:43.200000pt;}
.x4_c00448{left:44.666667pt;}
.x3_c00448{left:45.866667pt;}
.x2_c00448{left:46.800000pt;}
.x1_c00448{left:148.133333pt;}
.xc_c00448{left:191.168213pt;}
.xb_c00448{left:207.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c812c3aae573bb975eaf0635.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00449;src:url('chunks/assets/font_faf43c01536e014b88debd28.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00449;src:url('chunks/assets/font_ec07896b8ccaecb463692c69.woff2')format("woff");}.ff3_c00449{font-family:ff3_c00449;line-height:1.480469;font-style:normal;font-weight:normal;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_e3c25de9b988f0ebca7393bd.woff2')format("woff");}.ff4_c00449{font-family:ff4_c00449;line-height:1.568848;font-style:normal;font-weight:normal;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_df0250caf8b5d3d367ace54e.woff2')format("woff");}.ff5_c00449{font-family:ff5_c00449;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00449;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00449{font-family:ff6_c00449;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00449;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00449{font-family:ff7_c00449;line-height:1.219238;font-style: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);}
.m3_c00449{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1_c00449{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2_c00449{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.v0_c00449{vertical-align:0.000000px;}
.ls4_c00449{letter-spacing:0.000000px;}
.ls5_c00449{letter-spacing:3.000000px;}
.ls6_c00449{letter-spacing:6.000000px;}
.ls2_c00449{letter-spacing:27.048000px;}
.ls1_c00449{letter-spacing:36.000000px;}
.ls3_c00449{letter-spacing:40.200000px;}
.ls0_c00449{letter-spacing:129.750000px;}
.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;}
}
.ws3_c00449{word-spacing:-23.352000px;}
.ws5_c00449{word-spacing:-19.818000px;}
.ws0_c00449{word-spacing:-17.352000px;}
.ws4_c00449{word-spacing:-14.460000px;}
.ws2_c00449{word-spacing:-14.250000px;}
.ws1_c00449{word-spacing:-11.784000px;}
.ws6_c00449{word-spacing:0.000000px;}
._c_c00449{margin-left:-17.784000px;}
._1c_c00449{margin-left:-13.500000px;}
._21_c00449{margin-left:-10.512000px;}
._1f_c00449{margin-left:-9.372000px;}
._7_c00449{margin-left:-8.148000px;}
._a_c00449{margin-left:-6.624000px;}
._5_c00449{margin-left:-5.376000px;}
._10_c00449{margin-left:-4.308000px;}
._6_c00449{margin-left:-2.940000px;}
._3_c00449{margin-left:-1.680000px;}
._1_c00449{width:1.596000px;}
._2_c00449{width:3.024000px;}
._0_c00449{width:4.116000px;}
._9_c00449{width:5.292000px;}
._8_c00449{width:7.020000px;}
._f_c00449{width:8.076000px;}
._12_c00449{width:10.128000px;}
._e_c00449{width:11.784000px;}
._19_c00449{width:12.900000px;}
._20_c00449{width:14.136000px;}
._11_c00449{width:18.972000px;}
._1d_c00449{width:20.133000px;}
._18_c00449{width:21.408000px;}
._1e_c00449{width:23.472000px;}
._4_c00449{width:27.300000px;}
._b_c00449{width:30.708000px;}
._15_c00449{width:34.380000px;}
._13_c00449{width:35.832000px;}
._1b_c00449{width:40.440000px;}
._1a_c00449{width:84.312000px;}
._17_c00449{width:126.180000px;}
._16_c00449{width:133.980000px;}
._d_c00449{width:261.648000px;}
._14_c00449{width:343.416000px;}
.fc2_c00449{color:transparent;}
.fc1_c00449{color:rgb(128,128,128);}
.fc0_c00449{color:rgb(0,0,0);}
.fs2_c00449{font-size:24.000000px;}
.fs7_c00449{font-size:48.000000px;}
.fs5_c00449{font-size:51.000000px;}
.fs6_c00449{font-size:54.000000px;}
.fs3_c00449{font-size:57.000000px;}
.fs4_c00449{font-size:60.000000px;}
.fs1_c00449{font-size:72.000000px;}
.fs0_c00449{font-size:84.000000px;}
.y0_c00449{bottom:0.000000px;}
.y1f_c00449{bottom:3.105000px;}
.y1e_c00449{bottom:7.228371px;}
.y1d_c00449{bottom:59.415000px;}
.y1c_c00449{bottom:86.115000px;}
.y1b_c00449{bottom:111.765000px;}
.y1a_c00449{bottom:136.365000px;}
.y19_c00449{bottom:161.415000px;}
.y18_c00449{bottom:187.365000px;}
.y17_c00449{bottom:213.765000px;}
.y16_c00449{bottom:238.065000px;}
.y15_c00449{bottom:263.565000px;}
.y14_c00449{bottom:287.865000px;}
.y13_c00449{bottom:311.565000px;}
.y12_c00449{bottom:338.565000px;}
.y11_c00449{bottom:363.165000px;}
.y10_c00449{bottom:385.515000px;}
.yf_c00449{bottom:386.865000px;}
.ye_c00449{bottom:412.065000px;}
.yd_c00449{bottom:436.815000px;}
.yc_c00449{bottom:462.015000px;}
.yb_c00449{bottom:486.765000px;}
.ya_c00449{bottom:511.965000px;}
.y9_c00449{bottom:536.415000px;}
.y8_c00449{bottom:561.315000px;}
.y7_c00449{bottom:586.365000px;}
.y6_c00449{bottom:610.965000px;}
.y5_c00449{bottom:635.865000px;}
.y4_c00449{bottom:660.615000px;}
.y3_c00449{bottom:686.565000px;}
.y2_c00449{bottom:710.865000px;}
.y1_c00449{bottom:736.065000px;}
.h5_c00449{height:13.200074px;}
.h4_c00449{height:30.386719px;}
.h6_c00449{height:43.804688px;}
.h2_c00449{height:82.441406px;}
.h3_c00449{height:91.160156px;}
.h1_c00449{height:775.500000px;}
.h0_c00449{height:775.725000px;}
.w2_c00449{width:104.875500px;}
.w1_c00449{width:526.500000px;}
.w0_c00449{width:526.800000px;}
.x0_c00449{left:0.000000px;}
.xc_c00449{left:22.200000px;}
.xd_c00449{left:24.300000px;}
.x11_c00449{left:25.350000px;}
.x3_c00449{left:26.700000px;}
.x2_c00449{left:28.650000px;}
.x4_c00449{left:32.100000px;}
.x7_c00449{left:35.550000px;}
.x10_c00449{left:36.750000px;}
.xf_c00449{left:42.750000px;}
.x6_c00449{left:104.400000px;}
.x5_c00449{left:105.750000px;}
.xe_c00449{left:107.550000px;}
.x8_c00449{left:159.900000px;}
.x9_c00449{left:164.400000px;}
.xa_c00449{left:190.050000px;}
.x12_c00449{left:215.214249px;}
.x1_c00449{left:224.400000px;}
.xb_c00449{left:250.350000px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls4_c00449{letter-spacing:0.000000pt;}
.ls5_c00449{letter-spacing:2.666667pt;}
.ls6_c00449{letter-spacing:5.333333pt;}
.ls2_c00449{letter-spacing:24.042667pt;}
.ls1_c00449{letter-spacing:32.000000pt;}
.ls3_c00449{letter-spacing:35.733333pt;}
.ls0_c00449{letter-spacing:115.333333pt;}
.ws3_c00449{word-spacing:-20.757333pt;}
.ws5_c00449{word-spacing:-17.616000pt;}
.ws0_c00449{word-spacing:-15.424000pt;}
.ws4_c00449{word-spacing:-12.853333pt;}
.ws2_c00449{word-spacing:-12.666667pt;}
.ws1_c00449{word-spacing:-10.474667pt;}
.ws6_c00449{word-spacing:0.000000pt;}
._c_c00449{margin-left:-15.808000pt;}
._1c_c00449{margin-left:-12.000000pt;}
._21_c00449{margin-left:-9.344000pt;}
._1f_c00449{margin-left:-8.330667pt;}
._7_c00449{margin-left:-7.242667pt;}
._a_c00449{margin-left:-5.888000pt;}
._5_c00449{margin-left:-4.778667pt;}
._10_c00449{margin-left:-3.829333pt;}
._6_c00449{margin-left:-2.613333pt;}
._3_c00449{margin-left:-1.493333pt;}
._1_c00449{width:1.418667pt;}
._2_c00449{width:2.688000pt;}
._0_c00449{width:3.658667pt;}
._9_c00449{width:4.704000pt;}
._8_c00449{width:6.240000pt;}
._f_c00449{width:7.178667pt;}
._12_c00449{width:9.002667pt;}
._e_c00449{width:10.474667pt;}
._19_c00449{width:11.466667pt;}
._20_c00449{width:12.565333pt;}
._11_c00449{width:16.864000pt;}
._1d_c00449{width:17.896000pt;}
._18_c00449{width:19.029333pt;}
._1e_c00449{width:20.864000pt;}
._4_c00449{width:24.266667pt;}
._b_c00449{width:27.296000pt;}
._15_c00449{width:30.560000pt;}
._13_c00449{width:31.850667pt;}
._1b_c00449{width:35.946667pt;}
._1a_c00449{width:74.944000pt;}
._17_c00449{width:112.160000pt;}
._16_c00449{width:119.093333pt;}
._d_c00449{width:232.576000pt;}
._14_c00449{width:305.258667pt;}
.fs2_c00449{font-size:21.333333pt;}
.fs7_c00449{font-size:42.666667pt;}
.fs5_c00449{font-size:45.333333pt;}
.fs6_c00449{font-size:48.000000pt;}
.fs3_c00449{font-size:50.666667pt;}
.fs4_c00449{font-size:53.333333pt;}
.fs1_c00449{font-size:64.000000pt;}
.fs0_c00449{font-size:74.666667pt;}
.y0_c00449{bottom:0.000000pt;}
.y1f_c00449{bottom:2.760000pt;}
.y1e_c00449{bottom:6.425219pt;}
.y1d_c00449{bottom:52.813333pt;}
.y1c_c00449{bottom:76.546667pt;}
.y1b_c00449{bottom:99.346667pt;}
.y1a_c00449{bottom:121.213333pt;}
.y19_c00449{bottom:143.480000pt;}
.y18_c00449{bottom:166.546667pt;}
.y17_c00449{bottom:190.013333pt;}
.y16_c00449{bottom:211.613333pt;}
.y15_c00449{bottom:234.280000pt;}
.y14_c00449{bottom:255.880000pt;}
.y13_c00449{bottom:276.946667pt;}
.y12_c00449{bottom:300.946667pt;}
.y11_c00449{bottom:322.813333pt;}
.y10_c00449{bottom:342.680000pt;}
.yf_c00449{bottom:343.880000pt;}
.ye_c00449{bottom:366.280000pt;}
.yd_c00449{bottom:388.280000pt;}
.yc_c00449{bottom:410.680000pt;}
.yb_c00449{bottom:432.680000pt;}
.ya_c00449{bottom:455.080000pt;}
.y9_c00449{bottom:476.813333pt;}
.y8_c00449{bottom:498.946667pt;}
.y7_c00449{bottom:521.213333pt;}
.y6_c00449{bottom:543.080000pt;}
.y5_c00449{bottom:565.213333pt;}
.y4_c00449{bottom:587.213333pt;}
.y3_c00449{bottom:610.280000pt;}
.y2_c00449{bottom:631.880000pt;}
.y1_c00449{bottom:654.280000pt;}
.h5_c00449{height:11.733399pt;}
.h4_c00449{height:27.010417pt;}
.h6_c00449{height:38.937500pt;}
.h2_c00449{height:73.281250pt;}
.h3_c00449{height:81.031250pt;}
.h1_c00449{height:689.333333pt;}
.h0_c00449{height:689.533333pt;}
.w2_c00449{width:93.222667pt;}
.w1_c00449{width:468.000000pt;}
.w0_c00449{width:468.266667pt;}
.x0_c00449{left:0.000000pt;}
.xc_c00449{left:19.733333pt;}
.xd_c00449{left:21.600000pt;}
.x11_c00449{left:22.533333pt;}
.x3_c00449{left:23.733333pt;}
.x2_c00449{left:25.466667pt;}
.x4_c00449{left:28.533333pt;}
.x7_c00449{left:31.600000pt;}
.x10_c00449{left:32.666667pt;}
.xf_c00449{left:38.000000pt;}
.x6_c00449{left:92.800000pt;}
.x5_c00449{left:94.000000pt;}
.xe_c00449{left:95.600000pt;}
.x8_c00449{left:142.133333pt;}
.x9_c00449{left:146.133333pt;}
.xa_c00449{left:168.933333pt;}
.x12_c00449{left:191.301554pt;}
.x1_c00449{left:199.466667pt;}
.xb_c00449{left:222.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8c6195416ecd15ba9c1f834c.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.480469;font-style:normal;font-weight:normal;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_a5741a422412b2860fcac0f3.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00450;src:url('chunks/assets/font_648d5af33ef68f053c43889f.woff2')format("woff");}.ff3_c00450{font-family:ff3_c00450;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00450;src:url('chunks/assets/font_e8aab24c9ea452674b7ce70d.woff2')format("woff");}.ff4_c00450{font-family:ff4_c00450;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00450;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00450{font-family:ff5_c00450;line-height:1.219238;font-style: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;}
.ls4_c00450{letter-spacing:0.000000px;}
.ls2_c00450{letter-spacing:3.000000px;}
.ls1_c00450{letter-spacing:3.171000px;}
.ls0_c00450{letter-spacing:5.571000px;}
.ls3_c00450{letter-spacing:29.400000px;}
.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:-40.107000px;}
.ws1_c00450{word-spacing:-31.809000px;}
.ws2_c00450{word-spacing:-21.798000px;}
.ws3_c00450{word-spacing:-15.000000px;}
.ws4_c00450{word-spacing:-10.080000px;}
.ws5_c00450{word-spacing:0.000000px;}
._15_c00450{margin-left:-19.086000px;}
._12_c00450{margin-left:-14.430000px;}
._11_c00450{margin-left:-11.778000px;}
._e_c00450{margin-left:-10.413000px;}
._16_c00450{margin-left:-9.189000px;}
._d_c00450{margin-left:-7.983000px;}
._c_c00450{margin-left:-6.435000px;}
._9_c00450{margin-left:-4.692000px;}
._8_c00450{margin-left:-3.510000px;}
._7_c00450{margin-left:-2.106000px;}
._b_c00450{margin-left:-1.014000px;}
._3_c00450{width:2.001000px;}
._1_c00450{width:3.132000px;}
._2_c00450{width:4.176000px;}
._0_c00450{width:5.220000px;}
._4_c00450{width:6.264000px;}
._a_c00450{width:7.749000px;}
._13_c00450{width:9.360000px;}
._f_c00450{width:11.463000px;}
._14_c00450{width:12.894000px;}
._10_c00450{width:19.086000px;}
._6_c00450{width:27.720000px;}
._5_c00450{width:357.282000px;}
.fc2_c00450{color:transparent;}
.fc1_c00450{color:rgb(128,128,128);}
.fc0_c00450{color:rgb(0,0,0);}
.fs6_c00450{font-size:48.000000px;}
.fs4_c00450{font-size:60.000000px;}
.fs3_c00450{font-size:69.000000px;}
.fs1_c00450{font-size:72.000000px;}
.fs2_c00450{font-size:78.000000px;}
.fs5_c00450{font-size:81.000000px;}
.fs0_c00450{font-size:87.000000px;}
.y0_c00450{bottom:0.000000px;}
.y1e_c00450{bottom:3.105000px;}
.y1d_c00450{bottom:7.228369px;}
.y1c_c00450{bottom:70.920000px;}
.y1b_c00450{bottom:97.470000px;}
.y1a_c00450{bottom:119.820000px;}
.y19_c00450{bottom:147.420000px;}
.y18_c00450{bottom:172.770000px;}
.y17_c00450{bottom:197.070000px;}
.y16_c00450{bottom:223.320000px;}
.y15_c00450{bottom:245.070000px;}
.y14_c00450{bottom:272.970000px;}
.y13_c00450{bottom:298.620000px;}
.y12_c00450{bottom:322.020000px;}
.y11_c00450{bottom:344.970000px;}
.y10_c00450{bottom:369.270000px;}
.yf_c00450{bottom:395.220000px;}
.ye_c00450{bottom:419.070000px;}
.yd_c00450{bottom:443.820000px;}
.yc_c00450{bottom:468.120000px;}
.yb_c00450{bottom:493.770000px;}
.ya_c00450{bottom:518.070000px;}
.y9_c00450{bottom:543.270000px;}
.y8_c00450{bottom:567.570000px;}
.y7_c00450{bottom:592.620000px;}
.y6_c00450{bottom:617.220000px;}
.y5_c00450{bottom:642.570000px;}
.y4_c00450{bottom:666.570000px;}
.y3_c00450{bottom:691.470000px;}
.y2_c00450{bottom:716.220000px;}
.y1_c00450{bottom:741.420000px;}
.h5_c00450{height:13.200073px;}
.h6_c00450{height:43.804688px;}
.h4_c00450{height:79.497070px;}
.h3_c00450{height:98.756836px;}
.h2_c00450{height:101.825684px;}
.h0_c00450{height:781.350000px;}
.h1_c00450{height:781.500000px;}
.w2_c00450{width:104.875500px;}
.w1_c00450{width:530.250000px;}
.w0_c00450{width:530.550000px;}
.x0_c00450{left:0.000000px;}
.x5_c00450{left:36.750000px;}
.x7_c00450{left:40.500000px;}
.x2_c00450{left:42.600000px;}
.x3_c00450{left:43.950000px;}
.x4_c00450{left:46.200000px;}
.x6_c00450{left:47.250000px;}
.x8_c00450{left:54.000000px;}
.x1_c00450{left:153.600000px;}
.x9_c00450{left:217.089249px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls4_c00450{letter-spacing:0.000000pt;}
.ls2_c00450{letter-spacing:2.666667pt;}
.ls1_c00450{letter-spacing:2.818667pt;}
.ls0_c00450{letter-spacing:4.952000pt;}
.ls3_c00450{letter-spacing:26.133333pt;}
.ws0_c00450{word-spacing:-35.650667pt;}
.ws1_c00450{word-spacing:-28.274667pt;}
.ws2_c00450{word-spacing:-19.376000pt;}
.ws3_c00450{word-spacing:-13.333333pt;}
.ws4_c00450{word-spacing:-8.960000pt;}
.ws5_c00450{word-spacing:0.000000pt;}
._15_c00450{margin-left:-16.965333pt;}
._12_c00450{margin-left:-12.826667pt;}
._11_c00450{margin-left:-10.469333pt;}
._e_c00450{margin-left:-9.256000pt;}
._16_c00450{margin-left:-8.168000pt;}
._d_c00450{margin-left:-7.096000pt;}
._c_c00450{margin-left:-5.720000pt;}
._9_c00450{margin-left:-4.170667pt;}
._8_c00450{margin-left:-3.120000pt;}
._7_c00450{margin-left:-1.872000pt;}
._b_c00450{margin-left:-0.901333pt;}
._3_c00450{width:1.778667pt;}
._1_c00450{width:2.784000pt;}
._2_c00450{width:3.712000pt;}
._0_c00450{width:4.640000pt;}
._4_c00450{width:5.568000pt;}
._a_c00450{width:6.888000pt;}
._13_c00450{width:8.320000pt;}
._f_c00450{width:10.189333pt;}
._14_c00450{width:11.461333pt;}
._10_c00450{width:16.965333pt;}
._6_c00450{width:24.640000pt;}
._5_c00450{width:317.584000pt;}
.fs6_c00450{font-size:42.666667pt;}
.fs4_c00450{font-size:53.333333pt;}
.fs3_c00450{font-size:61.333333pt;}
.fs1_c00450{font-size:64.000000pt;}
.fs2_c00450{font-size:69.333333pt;}
.fs5_c00450{font-size:72.000000pt;}
.fs0_c00450{font-size:77.333333pt;}
.y0_c00450{bottom:0.000000pt;}
.y1e_c00450{bottom:2.760000pt;}
.y1d_c00450{bottom:6.425217pt;}
.y1c_c00450{bottom:63.040000pt;}
.y1b_c00450{bottom:86.640000pt;}
.y1a_c00450{bottom:106.506667pt;}
.y19_c00450{bottom:131.040000pt;}
.y18_c00450{bottom:153.573333pt;}
.y17_c00450{bottom:175.173333pt;}
.y16_c00450{bottom:198.506667pt;}
.y15_c00450{bottom:217.840000pt;}
.y14_c00450{bottom:242.640000pt;}
.y13_c00450{bottom:265.440000pt;}
.y12_c00450{bottom:286.240000pt;}
.y11_c00450{bottom:306.640000pt;}
.y10_c00450{bottom:328.240000pt;}
.yf_c00450{bottom:351.306667pt;}
.ye_c00450{bottom:372.506667pt;}
.yd_c00450{bottom:394.506667pt;}
.yc_c00450{bottom:416.106667pt;}
.yb_c00450{bottom:438.906667pt;}
.ya_c00450{bottom:460.506667pt;}
.y9_c00450{bottom:482.906667pt;}
.y8_c00450{bottom:504.506667pt;}
.y7_c00450{bottom:526.773333pt;}
.y6_c00450{bottom:548.640000pt;}
.y5_c00450{bottom:571.173333pt;}
.y4_c00450{bottom:592.506667pt;}
.y3_c00450{bottom:614.640000pt;}
.y2_c00450{bottom:636.640000pt;}
.y1_c00450{bottom:659.040000pt;}
.h5_c00450{height:11.733399pt;}
.h6_c00450{height:38.937500pt;}
.h4_c00450{height:70.664062pt;}
.h3_c00450{height:87.783854pt;}
.h2_c00450{height:90.511719pt;}
.h0_c00450{height:694.533333pt;}
.h1_c00450{height:694.666667pt;}
.w2_c00450{width:93.222667pt;}
.w1_c00450{width:471.333333pt;}
.w0_c00450{width:471.600000pt;}
.x0_c00450{left:0.000000pt;}
.x5_c00450{left:32.666667pt;}
.x7_c00450{left:36.000000pt;}
.x2_c00450{left:37.866667pt;}
.x3_c00450{left:39.066667pt;}
.x4_c00450{left:41.066667pt;}
.x6_c00450{left:42.000000pt;}
.x8_c00450{left:48.000000pt;}
.x1_c00450{left:136.533333pt;}
.x9_c00450{left:192.968221pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_96baee0714c593a74c4781ff.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00451;src:url('chunks/assets/font_2becafe626db4db2b74a8d24.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:1.568848;font-style:normal;font-weight:normal;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_da92076122e2d954f1b4183f.woff2')format("woff");}.ff3_c00451{font-family:ff3_c00451;line-height:1.575000;font-style:normal;font-weight:normal;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_8fdf6448ac3eee6b81492bf2.woff2')format("woff");}.ff4_c00451{font-family:ff4_c00451;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00451;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00451{font-family:ff5_c00451;line-height:1.219238;font-style: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;}
.v1_c00451{vertical-align:96.600000px;}
.ls2_c00451{letter-spacing:0.000000px;}
.ls3_c00451{letter-spacing:3.000000px;}
.ls0_c00451{letter-spacing:6.000000px;}
.ls1_c00451{letter-spacing:13.788000px;}
.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:-94.446000px;}
.ws1_c00451{word-spacing:-65.775000px;}
.ws2_c00451{word-spacing:0.000000px;}
._14_c00451{margin-left:-18.417000px;}
._11_c00451{margin-left:-13.860000px;}
._13_c00451{margin-left:-11.055000px;}
._10_c00451{margin-left:-10.008000px;}
._f_c00451{margin-left:-8.580000px;}
._12_c00451{margin-left:-7.476000px;}
._7_c00451{margin-left:-6.408000px;}
._c_c00451{margin-left:-4.632000px;}
._1_c00451{margin-left:-3.612000px;}
._0_c00451{margin-left:-2.436000px;}
._2_c00451{margin-left:-1.428000px;}
._a_c00451{width:1.008000px;}
._3_c00451{width:2.100000px;}
._b_c00451{width:3.120000px;}
._6_c00451{width:4.248000px;}
._9_c00451{width:5.856000px;}
._5_c00451{width:7.476000px;}
._8_c00451{width:9.384000px;}
._4_c00451{width:11.340000px;}
._d_c00451{width:12.348000px;}
._e_c00451{width:16.872000px;}
.fc2_c00451{color:transparent;}
.fc1_c00451{color:rgb(128,128,128);}
.fc0_c00451{color:rgb(0,0,0);}
.fs5_c00451{font-size:48.000000px;}
.fs4_c00451{font-size:63.000000px;}
.fs1_c00451{font-size:72.000000px;}
.fs3_c00451{font-size:75.000000px;}
.fs0_c00451{font-size:84.000000px;}
.fs2_c00451{font-size:198.000000px;}
.y0_c00451{bottom:0.000000px;}
.y1f_c00451{bottom:3.105000px;}
.y1e_c00451{bottom:7.228355px;}
.y1d_c00451{bottom:69.735000px;}
.y1c_c00451{bottom:96.735000px;}
.y1b_c00451{bottom:121.785000px;}
.y1a_c00451{bottom:147.435000px;}
.y19_c00451{bottom:172.335000px;}
.y18_c00451{bottom:197.385000px;}
.y17_c00451{bottom:222.285000px;}
.y16_c00451{bottom:248.385000px;}
.y15_c00451{bottom:272.385000px;}
.y14_c00451{bottom:298.035000px;}
.y13_c00451{bottom:323.235000px;}
.y12_c00451{bottom:347.985000px;}
.y11_c00451{bottom:372.285000px;}
.y10_c00451{bottom:397.935000px;}
.yf_c00451{bottom:399.435000px;}
.ye_c00451{bottom:446.535000px;}
.yd_c00451{bottom:471.435000px;}
.yc_c00451{bottom:496.035000px;}
.yb_c00451{bottom:521.085000px;}
.ya_c00451{bottom:545.685000px;}
.y9_c00451{bottom:570.285000px;}
.y8_c00451{bottom:595.635000px;}
.y7_c00451{bottom:620.535000px;}
.y6_c00451{bottom:644.985000px;}
.y5_c00451{bottom:669.585000px;}
.y4_c00451{bottom:694.785000px;}
.y3_c00451{bottom:719.535000px;}
.y2_c00451{bottom:736.635000px;}
.y1_c00451{bottom:745.185000px;}
.h5_c00451{height:13.200074px;}
.h6_c00451{height:43.804688px;}
.h2_c00451{height:82.400391px;}
.h3_c00451{height:91.160156px;}
.h4_c00451{height:211.266000px;}
.h0_c00451{height:783.525000px;}
.h1_c00451{height:783.750000px;}
.w2_c00451{width:104.875500px;}
.w0_c00451{width:525.450000px;}
.w1_c00451{width:525.750000px;}
.x0_c00451{left:0.000000px;}
.xd_c00451{left:92.850000px;}
.xc_c00451{left:94.200000px;}
.xb_c00451{left:99.300000px;}
.xa_c00451{left:100.650000px;}
.x8_c00451{left:102.900000px;}
.x7_c00451{left:104.400000px;}
.x6_c00451{left:106.650000px;}
.x5_c00451{left:107.700000px;}
.x4_c00451{left:109.650000px;}
.x3_c00451{left:111.450000px;}
.x9_c00451{left:117.150000px;}
.xe_c00451{left:214.539230px;}
.x1_c00451{left:228.150000px;}
.x2_c00451{left:285.300000px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.v1_c00451{vertical-align:85.866667pt;}
.ls2_c00451{letter-spacing:0.000000pt;}
.ls3_c00451{letter-spacing:2.666667pt;}
.ls0_c00451{letter-spacing:5.333333pt;}
.ls1_c00451{letter-spacing:12.256000pt;}
.ws0_c00451{word-spacing:-83.952000pt;}
.ws1_c00451{word-spacing:-58.466667pt;}
.ws2_c00451{word-spacing:0.000000pt;}
._14_c00451{margin-left:-16.370667pt;}
._11_c00451{margin-left:-12.320000pt;}
._13_c00451{margin-left:-9.826667pt;}
._10_c00451{margin-left:-8.896000pt;}
._f_c00451{margin-left:-7.626667pt;}
._12_c00451{margin-left:-6.645333pt;}
._7_c00451{margin-left:-5.696000pt;}
._c_c00451{margin-left:-4.117333pt;}
._1_c00451{margin-left:-3.210667pt;}
._0_c00451{margin-left:-2.165333pt;}
._2_c00451{margin-left:-1.269333pt;}
._a_c00451{width:0.896000pt;}
._3_c00451{width:1.866667pt;}
._b_c00451{width:2.773333pt;}
._6_c00451{width:3.776000pt;}
._9_c00451{width:5.205333pt;}
._5_c00451{width:6.645333pt;}
._8_c00451{width:8.341333pt;}
._4_c00451{width:10.080000pt;}
._d_c00451{width:10.976000pt;}
._e_c00451{width:14.997333pt;}
.fs5_c00451{font-size:42.666667pt;}
.fs4_c00451{font-size:56.000000pt;}
.fs1_c00451{font-size:64.000000pt;}
.fs3_c00451{font-size:66.666667pt;}
.fs0_c00451{font-size:74.666667pt;}
.fs2_c00451{font-size:176.000000pt;}
.y0_c00451{bottom:0.000000pt;}
.y1f_c00451{bottom:2.760000pt;}
.y1e_c00451{bottom:6.425204pt;}
.y1d_c00451{bottom:61.986667pt;}
.y1c_c00451{bottom:85.986667pt;}
.y1b_c00451{bottom:108.253333pt;}
.y1a_c00451{bottom:131.053333pt;}
.y19_c00451{bottom:153.186667pt;}
.y18_c00451{bottom:175.453333pt;}
.y17_c00451{bottom:197.586667pt;}
.y16_c00451{bottom:220.786667pt;}
.y15_c00451{bottom:242.120000pt;}
.y14_c00451{bottom:264.920000pt;}
.y13_c00451{bottom:287.320000pt;}
.y12_c00451{bottom:309.320000pt;}
.y11_c00451{bottom:330.920000pt;}
.y10_c00451{bottom:353.720000pt;}
.yf_c00451{bottom:355.053333pt;}
.ye_c00451{bottom:396.920000pt;}
.yd_c00451{bottom:419.053333pt;}
.yc_c00451{bottom:440.920000pt;}
.yb_c00451{bottom:463.186667pt;}
.ya_c00451{bottom:485.053333pt;}
.y9_c00451{bottom:506.920000pt;}
.y8_c00451{bottom:529.453333pt;}
.y7_c00451{bottom:551.586667pt;}
.y6_c00451{bottom:573.320000pt;}
.y5_c00451{bottom:595.186667pt;}
.y4_c00451{bottom:617.586667pt;}
.y3_c00451{bottom:639.586667pt;}
.y2_c00451{bottom:654.786667pt;}
.y1_c00451{bottom:662.386667pt;}
.h5_c00451{height:11.733399pt;}
.h6_c00451{height:38.937500pt;}
.h2_c00451{height:73.244792pt;}
.h3_c00451{height:81.031250pt;}
.h4_c00451{height:187.792000pt;}
.h0_c00451{height:696.466667pt;}
.h1_c00451{height:696.666667pt;}
.w2_c00451{width:93.222667pt;}
.w0_c00451{width:467.066667pt;}
.w1_c00451{width:467.333333pt;}
.x0_c00451{left:0.000000pt;}
.xd_c00451{left:82.533333pt;}
.xc_c00451{left:83.733333pt;}
.xb_c00451{left:88.266667pt;}
.xa_c00451{left:89.466667pt;}
.x8_c00451{left:91.466667pt;}
.x7_c00451{left:92.800000pt;}
.x6_c00451{left:94.800000pt;}
.x5_c00451{left:95.733333pt;}
.x4_c00451{left:97.466667pt;}
.x3_c00451{left:99.066667pt;}
.x9_c00451{left:104.133333pt;}
.xe_c00451{left:190.701538pt;}
.x1_c00451{left:202.800000pt;}
.x2_c00451{left:253.600000pt;}
}





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

.ir_c00452:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00452{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00452;src:url('chunks/assets/font_e005f3ea2b709fa2799e7a17.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00452;src:url('chunks/assets/font_8adf7fd76f76d979126047b1.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00452;src:url('chunks/assets/font_6642b23418d3597eaca27ad3.woff2')format("woff");}.ff3_c00452{font-family:ff3_c00452;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00452;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00452{font-family:ff4_c00452;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00452{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00452{vertical-align:0.000000px;}
.ls1_c00452{letter-spacing:0.000000px;}
.ls0_c00452{letter-spacing:3.000000px;}
.sc__c00452{text-shadow:none;}
.sc0_c00452{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00452{-webkit-text-stroke:0px transparent;}
.sc0_c00452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00452{word-spacing:-40.500000px;}
.ws0_c00452{word-spacing:-19.629000px;}
.ws2_c00452{word-spacing:0.000000px;}
._11_c00452{margin-left:-9.360000px;}
._c_c00452{margin-left:-7.128000px;}
._e_c00452{margin-left:-5.976000px;}
._a_c00452{margin-left:-4.176000px;}
._5_c00452{margin-left:-2.736000px;}
._4_c00452{margin-left:-1.656000px;}
._6_c00452{width:1.080000px;}
._9_c00452{width:2.232000px;}
._8_c00452{width:3.672000px;}
._7_c00452{width:5.040000px;}
._d_c00452{width:6.552000px;}
._0_c00452{width:7.776000px;}
._10_c00452{width:9.720000px;}
._f_c00452{width:11.088000px;}
._b_c00452{width:12.528000px;}
._1_c00452{width:15.264000px;}
._2_c00452{width:19.944000px;}
._3_c00452{width:342.144000px;}
.fc2_c00452{color:transparent;}
.fc1_c00452{color:rgb(128,128,128);}
.fc0_c00452{color:rgb(0,0,0);}
.fs4_c00452{font-size:48.000000px;}
.fs2_c00452{font-size:69.000000px;}
.fs0_c00452{font-size:72.000000px;}
.fs1_c00452{font-size:78.000000px;}
.fs3_c00452{font-size:81.000000px;}
.y0_c00452{bottom:0.000000px;}
.y1e_c00452{bottom:3.105000px;}
.y1d_c00452{bottom:7.228355px;}
.y1c_c00452{bottom:35.085000px;}
.y1b_c00452{bottom:92.835000px;}
.y1a_c00452{bottom:115.635000px;}
.y19_c00452{bottom:143.385000px;}
.y18_c00452{bottom:166.335000px;}
.y17_c00452{bottom:192.285000px;}
.y16_c00452{bottom:218.235000px;}
.y15_c00452{bottom:242.685000px;}
.y14_c00452{bottom:267.585000px;}
.y13_c00452{bottom:291.585000px;}
.y12_c00452{bottom:316.935000px;}
.y11_c00452{bottom:339.885000px;}
.y10_c00452{bottom:363.735000px;}
.yf_c00452{bottom:388.335000px;}
.ye_c00452{bottom:412.785000px;}
.yd_c00452{bottom:437.685000px;}
.yc_c00452{bottom:462.135000px;}
.yb_c00452{bottom:486.885000px;}
.ya_c00452{bottom:511.635000px;}
.y9_c00452{bottom:536.835000px;}
.y8_c00452{bottom:561.585000px;}
.y7_c00452{bottom:586.485000px;}
.y6_c00452{bottom:611.235000px;}
.y5_c00452{bottom:636.435000px;}
.y4_c00452{bottom:661.035000px;}
.y3_c00452{bottom:685.785000px;}
.y2_c00452{bottom:710.685000px;}
.y1_c00452{bottom:735.435000px;}
.h6_c00452{height:13.200074px;}
.h7_c00452{height:43.804688px;}
.h5_c00452{height:79.497070px;}
.h2_c00452{height:84.269531px;}
.h3_c00452{height:91.160156px;}
.h4_c00452{height:98.756836px;}
.h0_c00452{height:784.875000px;}
.h1_c00452{height:785.250000px;}
.w2_c00452{width:104.875500px;}
.w1_c00452{width:547.500000px;}
.w0_c00452{width:547.800000px;}
.x0_c00452{left:0.000000px;}
.x7_c00452{left:28.050000px;}
.x9_c00452{left:29.700000px;}
.x8_c00452{left:31.350000px;}
.x6_c00452{left:32.850000px;}
.x5_c00452{left:35.100000px;}
.x4_c00452{left:37.200000px;}
.x3_c00452{left:38.850000px;}
.x2_c00452{left:40.200000px;}
.x1_c00452{left:178.200000px;}
.xb_c00452{left:225.714249px;}
.xa_c00452{left:350.400000px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls1_c00452{letter-spacing:0.000000pt;}
.ls0_c00452{letter-spacing:2.666667pt;}
.ws1_c00452{word-spacing:-36.000000pt;}
.ws0_c00452{word-spacing:-17.448000pt;}
.ws2_c00452{word-spacing:0.000000pt;}
._11_c00452{margin-left:-8.320000pt;}
._c_c00452{margin-left:-6.336000pt;}
._e_c00452{margin-left:-5.312000pt;}
._a_c00452{margin-left:-3.712000pt;}
._5_c00452{margin-left:-2.432000pt;}
._4_c00452{margin-left:-1.472000pt;}
._6_c00452{width:0.960000pt;}
._9_c00452{width:1.984000pt;}
._8_c00452{width:3.264000pt;}
._7_c00452{width:4.480000pt;}
._d_c00452{width:5.824000pt;}
._0_c00452{width:6.912000pt;}
._10_c00452{width:8.640000pt;}
._f_c00452{width:9.856000pt;}
._b_c00452{width:11.136000pt;}
._1_c00452{width:13.568000pt;}
._2_c00452{width:17.728000pt;}
._3_c00452{width:304.128000pt;}
.fs4_c00452{font-size:42.666667pt;}
.fs2_c00452{font-size:61.333333pt;}
.fs0_c00452{font-size:64.000000pt;}
.fs1_c00452{font-size:69.333333pt;}
.fs3_c00452{font-size:72.000000pt;}
.y0_c00452{bottom:0.000000pt;}
.y1e_c00452{bottom:2.760000pt;}
.y1d_c00452{bottom:6.425204pt;}
.y1c_c00452{bottom:31.186667pt;}
.y1b_c00452{bottom:82.520000pt;}
.y1a_c00452{bottom:102.786667pt;}
.y19_c00452{bottom:127.453333pt;}
.y18_c00452{bottom:147.853333pt;}
.y17_c00452{bottom:170.920000pt;}
.y16_c00452{bottom:193.986667pt;}
.y15_c00452{bottom:215.720000pt;}
.y14_c00452{bottom:237.853333pt;}
.y13_c00452{bottom:259.186667pt;}
.y12_c00452{bottom:281.720000pt;}
.y11_c00452{bottom:302.120000pt;}
.y10_c00452{bottom:323.320000pt;}
.yf_c00452{bottom:345.186667pt;}
.ye_c00452{bottom:366.920000pt;}
.yd_c00452{bottom:389.053333pt;}
.yc_c00452{bottom:410.786667pt;}
.yb_c00452{bottom:432.786667pt;}
.ya_c00452{bottom:454.786667pt;}
.y9_c00452{bottom:477.186667pt;}
.y8_c00452{bottom:499.186667pt;}
.y7_c00452{bottom:521.320000pt;}
.y6_c00452{bottom:543.320000pt;}
.y5_c00452{bottom:565.720000pt;}
.y4_c00452{bottom:587.586667pt;}
.y3_c00452{bottom:609.586667pt;}
.y2_c00452{bottom:631.720000pt;}
.y1_c00452{bottom:653.720000pt;}
.h6_c00452{height:11.733399pt;}
.h7_c00452{height:38.937500pt;}
.h5_c00452{height:70.664062pt;}
.h2_c00452{height:74.906250pt;}
.h3_c00452{height:81.031250pt;}
.h4_c00452{height:87.783854pt;}
.h0_c00452{height:697.666667pt;}
.h1_c00452{height:698.000000pt;}
.w2_c00452{width:93.222667pt;}
.w1_c00452{width:486.666667pt;}
.w0_c00452{width:486.933333pt;}
.x0_c00452{left:0.000000pt;}
.x7_c00452{left:24.933333pt;}
.x9_c00452{left:26.400000pt;}
.x8_c00452{left:27.866667pt;}
.x6_c00452{left:29.200000pt;}
.x5_c00452{left:31.200000pt;}
.x4_c00452{left:33.066667pt;}
.x3_c00452{left:34.533333pt;}
.x2_c00452{left:35.733333pt;}
.x1_c00452{left:158.400000pt;}
.xb_c00452{left:200.634888pt;}
.xa_c00452{left:311.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f1b444d0bfbc46eec6a0a6b2.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.592000;font-style:normal;font-weight:normal;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_fb1639c49ff41d7ba5f83665.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:1.575000;font-style:normal;font-weight:normal;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_bfc257e813498629f7af30b9.woff2')format("woff");}.ff3_c00453{font-family:ff3_c00453;line-height:1.568848;font-style:normal;font-weight:normal;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_b674f433acf5c791b27888e7.woff2')format("woff");}.ff4_c00453{font-family:ff4_c00453;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00453;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00453{font-family:ff5_c00453;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00453{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00453{vertical-align:0.000000px;}
.ls1_c00453{letter-spacing:-6.000000px;}
.ls2_c00453{letter-spacing:0.000000px;}
.ls0_c00453{letter-spacing:3.000000px;}
.sc__c00453{text-shadow:none;}
.sc0_c00453{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00453{-webkit-text-stroke:0px transparent;}
.sc0_c00453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00453{word-spacing:-23.430000px;}
.ws1_c00453{word-spacing:-19.629000px;}
.ws2_c00453{word-spacing:0.000000px;}
._19_c00453{margin-left:-26.784000px;}
._14_c00453{margin-left:-11.070000px;}
._13_c00453{margin-left:-9.702000px;}
._17_c00453{margin-left:-8.100000px;}
._5_c00453{margin-left:-6.480000px;}
._3_c00453{margin-left:-4.788000px;}
._6_c00453{margin-left:-3.618000px;}
._4_c00453{margin-left:-2.394000px;}
._9_c00453{margin-left:-1.080000px;}
._8_c00453{width:1.044000px;}
._0_c00453{width:2.070000px;}
._1_c00453{width:3.960000px;}
._2_c00453{width:5.760000px;}
._a_c00453{width:6.876000px;}
._d_c00453{width:7.902000px;}
._7_c00453{width:9.666000px;}
._b_c00453{width:11.664000px;}
._11_c00453{width:13.194000px;}
._c_c00453{width:15.084000px;}
._1b_c00453{width:16.290000px;}
._10_c00453{width:17.586000px;}
._12_c00453{width:20.640000px;}
._15_c00453{width:21.762000px;}
._1c_c00453{width:25.506000px;}
._16_c00453{width:27.828000px;}
._f_c00453{width:29.682000px;}
._1a_c00453{width:30.708000px;}
._e_c00453{width:36.144000px;}
._18_c00453{width:77.004000px;}
.fc2_c00453{color:transparent;}
.fc1_c00453{color:rgb(128,128,128);}
.fc0_c00453{color:rgb(0,0,0);}
.fs4_c00453{font-size:48.000000px;}
.fs2_c00453{font-size:57.000000px;}
.fs3_c00453{font-size:69.000000px;}
.fs1_c00453{font-size:72.000000px;}
.fs0_c00453{font-size:90.000000px;}
.y0_c00453{bottom:0.000000px;}
.y1f_c00453{bottom:3.105000px;}
.y1e_c00453{bottom:7.228371px;}
.y1d_c00453{bottom:32.865000px;}
.y1c_c00453{bottom:55.365000px;}
.y1b_c00453{bottom:80.715000px;}
.y1a_c00453{bottom:106.365000px;}
.y19_c00453{bottom:132.315000px;}
.y18_c00453{bottom:156.915000px;}
.y17_c00453{bottom:183.015000px;}
.y16_c00453{bottom:207.765000px;}
.y15_c00453{bottom:232.665000px;}
.y14_c00453{bottom:257.565000px;}
.y13_c00453{bottom:283.215000px;}
.y12_c00453{bottom:308.565000px;}
.y11_c00453{bottom:332.865000px;}
.y10_c00453{bottom:358.065000px;}
.yf_c00453{bottom:383.415000px;}
.ye_c00453{bottom:407.115000px;}
.yd_c00453{bottom:432.315000px;}
.yc_c00453{bottom:456.765000px;}
.yb_c00453{bottom:481.065000px;}
.ya_c00453{bottom:506.265000px;}
.y9_c00453{bottom:530.565000px;}
.y8_c00453{bottom:556.065000px;}
.y7_c00453{bottom:580.815000px;}
.y6_c00453{bottom:605.565000px;}
.y5_c00453{bottom:630.315000px;}
.y4_c00453{bottom:655.215000px;}
.y3_c00453{bottom:680.115000px;}
.y2_c00453{bottom:705.015000px;}
.y1_c00453{bottom:730.815000px;}
.h5_c00453{height:13.200074px;}
.h6_c00453{height:43.804688px;}
.h4_c00453{height:87.361816px;}
.h3_c00453{height:91.160156px;}
.h2_c00453{height:97.560000px;}
.h0_c00453{height:779.775000px;}
.h1_c00453{height:780.000000px;}
.w2_c00453{width:104.875500px;}
.w1_c00453{width:522.750000px;}
.w0_c00453{width:522.975000px;}
.x0_c00453{left:0.000000px;}
.x3_c00453{left:94.950000px;}
.x4_c00453{left:96.150000px;}
.x2_c00453{left:97.200000px;}
.x5_c00453{left:98.550000px;}
.x7_c00453{left:213.301758px;}
.x1_c00453{left:225.150000px;}
.x6_c00453{left:439.200000px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls1_c00453{letter-spacing:-5.333333pt;}
.ls2_c00453{letter-spacing:0.000000pt;}
.ls0_c00453{letter-spacing:2.666667pt;}
.ws0_c00453{word-spacing:-20.826667pt;}
.ws1_c00453{word-spacing:-17.448000pt;}
.ws2_c00453{word-spacing:0.000000pt;}
._19_c00453{margin-left:-23.808000pt;}
._14_c00453{margin-left:-9.840000pt;}
._13_c00453{margin-left:-8.624000pt;}
._17_c00453{margin-left:-7.200000pt;}
._5_c00453{margin-left:-5.760000pt;}
._3_c00453{margin-left:-4.256000pt;}
._6_c00453{margin-left:-3.216000pt;}
._4_c00453{margin-left:-2.128000pt;}
._9_c00453{margin-left:-0.960000pt;}
._8_c00453{width:0.928000pt;}
._0_c00453{width:1.840000pt;}
._1_c00453{width:3.520000pt;}
._2_c00453{width:5.120000pt;}
._a_c00453{width:6.112000pt;}
._d_c00453{width:7.024000pt;}
._7_c00453{width:8.592000pt;}
._b_c00453{width:10.368000pt;}
._11_c00453{width:11.728000pt;}
._c_c00453{width:13.408000pt;}
._1b_c00453{width:14.480000pt;}
._10_c00453{width:15.632000pt;}
._12_c00453{width:18.346667pt;}
._15_c00453{width:19.344000pt;}
._1c_c00453{width:22.672000pt;}
._16_c00453{width:24.736000pt;}
._f_c00453{width:26.384000pt;}
._1a_c00453{width:27.296000pt;}
._e_c00453{width:32.128000pt;}
._18_c00453{width:68.448000pt;}
.fs4_c00453{font-size:42.666667pt;}
.fs2_c00453{font-size:50.666667pt;}
.fs3_c00453{font-size:61.333333pt;}
.fs1_c00453{font-size:64.000000pt;}
.fs0_c00453{font-size:80.000000pt;}
.y0_c00453{bottom:0.000000pt;}
.y1f_c00453{bottom:2.760000pt;}
.y1e_c00453{bottom:6.425219pt;}
.y1d_c00453{bottom:29.213333pt;}
.y1c_c00453{bottom:49.213333pt;}
.y1b_c00453{bottom:71.746667pt;}
.y1a_c00453{bottom:94.546667pt;}
.y19_c00453{bottom:117.613333pt;}
.y18_c00453{bottom:139.480000pt;}
.y17_c00453{bottom:162.680000pt;}
.y16_c00453{bottom:184.680000pt;}
.y15_c00453{bottom:206.813333pt;}
.y14_c00453{bottom:228.946667pt;}
.y13_c00453{bottom:251.746667pt;}
.y12_c00453{bottom:274.280000pt;}
.y11_c00453{bottom:295.880000pt;}
.y10_c00453{bottom:318.280000pt;}
.yf_c00453{bottom:340.813333pt;}
.ye_c00453{bottom:361.880000pt;}
.yd_c00453{bottom:384.280000pt;}
.yc_c00453{bottom:406.013333pt;}
.yb_c00453{bottom:427.613333pt;}
.ya_c00453{bottom:450.013333pt;}
.y9_c00453{bottom:471.613333pt;}
.y8_c00453{bottom:494.280000pt;}
.y7_c00453{bottom:516.280000pt;}
.y6_c00453{bottom:538.280000pt;}
.y5_c00453{bottom:560.280000pt;}
.y4_c00453{bottom:582.413333pt;}
.y3_c00453{bottom:604.546667pt;}
.y2_c00453{bottom:626.680000pt;}
.y1_c00453{bottom:649.613333pt;}
.h5_c00453{height:11.733399pt;}
.h6_c00453{height:38.937500pt;}
.h4_c00453{height:77.654948pt;}
.h3_c00453{height:81.031250pt;}
.h2_c00453{height:86.720000pt;}
.h0_c00453{height:693.133333pt;}
.h1_c00453{height:693.333333pt;}
.w2_c00453{width:93.222667pt;}
.w1_c00453{width:464.666667pt;}
.w0_c00453{width:464.866667pt;}
.x0_c00453{left:0.000000pt;}
.x3_c00453{left:84.400000pt;}
.x4_c00453{left:85.466667pt;}
.x2_c00453{left:86.400000pt;}
.x5_c00453{left:87.600000pt;}
.x7_c00453{left:189.601563pt;}
.x1_c00453{left:200.133333pt;}
.x6_c00453{left:390.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_37689dc907778adb14bcc6da.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.480469;font-style:normal;font-weight:normal;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_e8a2dc0df977ca6a38dfb205.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:1.568848;font-style:normal;font-weight:normal;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_d200e5d7a7148b3a12bcc5ff.woff2')format("woff");}.ff3_c00454{font-family:ff3_c00454;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00454;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00454{font-family:ff4_c00454;line-height:1.219238;font-style: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;}
.ls2_c00454{letter-spacing:3.000000px;}
.ls0_c00454{letter-spacing:8.616000px;}
.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;}
}
.ws5_c00454{word-spacing:-19.629000px;}
.ws0_c00454{word-spacing:-16.629000px;}
.ws2_c00454{word-spacing:-15.291000px;}
.ws4_c00454{word-spacing:-2.745000px;}
.ws3_c00454{word-spacing:-2.592000px;}
.ws1_c00454{word-spacing:-1.776000px;}
.ws6_c00454{word-spacing:0.000000px;}
._18_c00454{margin-left:-24.288000px;}
._9_c00454{margin-left:-16.560000px;}
._17_c00454{margin-left:-10.029000px;}
._a_c00454{margin-left:-7.488000px;}
._16_c00454{margin-left:-6.402000px;}
._14_c00454{margin-left:-5.373000px;}
._8_c00454{margin-left:-4.032000px;}
._15_c00454{margin-left:-2.706000px;}
._11_c00454{margin-left:-1.272000px;}
._5_c00454{width:1.080000px;}
._4_c00454{width:2.160000px;}
._6_c00454{width:4.104000px;}
._12_c00454{width:5.130000px;}
._d_c00454{width:6.147000px;}
._e_c00454{width:7.155000px;}
._13_c00454{width:8.199000px;}
._2_c00454{width:9.216000px;}
._10_c00454{width:10.671000px;}
._c_c00454{width:12.189000px;}
._b_c00454{width:14.115000px;}
._1_c00454{width:15.480000px;}
._f_c00454{width:17.424000px;}
._3_c00454{width:18.720000px;}
._1a_c00454{width:21.891000px;}
._0_c00454{width:24.696000px;}
._19_c00454{width:56.304000px;}
._7_c00454{width:317.736000px;}
.fc2_c00454{color:transparent;}
.fc1_c00454{color:rgb(128,128,128);}
.fc0_c00454{color:rgb(0,0,0);}
.fs4_c00454{font-size:48.000000px;}
.fs1_c00454{font-size:51.000000px;}
.fs3_c00454{font-size:66.000000px;}
.fs2_c00454{font-size:69.000000px;}
.fs0_c00454{font-size:72.000000px;}
.y0_c00454{bottom:0.000000px;}
.y1e_c00454{bottom:3.105000px;}
.y1d_c00454{bottom:7.228369px;}
.y1c_c00454{bottom:67.170000px;}
.y1b_c00454{bottom:93.420000px;}
.y1a_c00454{bottom:113.970000px;}
.y19_c00454{bottom:140.970000px;}
.y18_c00454{bottom:165.270000px;}
.y17_c00454{bottom:191.970000px;}
.y16_c00454{bottom:215.970000px;}
.y15_c00454{bottom:240.570000px;}
.y14_c00454{bottom:264.870000px;}
.y13_c00454{bottom:289.620000px;}
.y12_c00454{bottom:313.770000px;}
.y11_c00454{bottom:338.520000px;}
.y10_c00454{bottom:362.070000px;}
.yf_c00454{bottom:386.070000px;}
.ye_c00454{bottom:410.970000px;}
.yd_c00454{bottom:435.720000px;}
.yc_c00454{bottom:461.670000px;}
.yb_c00454{bottom:484.620000px;}
.ya_c00454{bottom:509.670000px;}
.y9_c00454{bottom:535.620000px;}
.y8_c00454{bottom:559.620000px;}
.y7_c00454{bottom:582.870000px;}
.y6_c00454{bottom:609.570000px;}
.y5_c00454{bottom:632.370000px;}
.y4_c00454{bottom:658.020000px;}
.y3_c00454{bottom:682.320000px;}
.y2_c00454{bottom:706.620000px;}
.y1_c00454{bottom:730.620000px;}
.h5_c00454{height:13.200073px;}
.h6_c00454{height:43.804688px;}
.h4_c00454{height:64.571777px;}
.h3_c00454{height:87.361816px;}
.h2_c00454{height:91.160156px;}
.h0_c00454{height:781.350000px;}
.h1_c00454{height:781.500000px;}
.w2_c00454{width:104.875500px;}
.w0_c00454{width:538.350000px;}
.w1_c00454{width:538.500000px;}
.x0_c00454{left:0.000000px;}
.x2_c00454{left:38.850000px;}
.x3_c00454{left:40.500000px;}
.x4_c00454{left:42.150000px;}
.x5_c00454{left:43.500000px;}
.x6_c00454{left:45.450000px;}
.x7_c00454{left:68.850000px;}
.x1_c00454{left:156.150000px;}
.x8_c00454{left:220.989258px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls1_c00454{letter-spacing:0.000000pt;}
.ls2_c00454{letter-spacing:2.666667pt;}
.ls0_c00454{letter-spacing:7.658667pt;}
.ws5_c00454{word-spacing:-17.448000pt;}
.ws0_c00454{word-spacing:-14.781333pt;}
.ws2_c00454{word-spacing:-13.592000pt;}
.ws4_c00454{word-spacing:-2.440000pt;}
.ws3_c00454{word-spacing:-2.304000pt;}
.ws1_c00454{word-spacing:-1.578667pt;}
.ws6_c00454{word-spacing:0.000000pt;}
._18_c00454{margin-left:-21.589333pt;}
._9_c00454{margin-left:-14.720000pt;}
._17_c00454{margin-left:-8.914667pt;}
._a_c00454{margin-left:-6.656000pt;}
._16_c00454{margin-left:-5.690667pt;}
._14_c00454{margin-left:-4.776000pt;}
._8_c00454{margin-left:-3.584000pt;}
._15_c00454{margin-left:-2.405333pt;}
._11_c00454{margin-left:-1.130667pt;}
._5_c00454{width:0.960000pt;}
._4_c00454{width:1.920000pt;}
._6_c00454{width:3.648000pt;}
._12_c00454{width:4.560000pt;}
._d_c00454{width:5.464000pt;}
._e_c00454{width:6.360000pt;}
._13_c00454{width:7.288000pt;}
._2_c00454{width:8.192000pt;}
._10_c00454{width:9.485333pt;}
._c_c00454{width:10.834667pt;}
._b_c00454{width:12.546667pt;}
._1_c00454{width:13.760000pt;}
._f_c00454{width:15.488000pt;}
._3_c00454{width:16.640000pt;}
._1a_c00454{width:19.458667pt;}
._0_c00454{width:21.952000pt;}
._19_c00454{width:50.048000pt;}
._7_c00454{width:282.432000pt;}
.fs4_c00454{font-size:42.666667pt;}
.fs1_c00454{font-size:45.333333pt;}
.fs3_c00454{font-size:58.666667pt;}
.fs2_c00454{font-size:61.333333pt;}
.fs0_c00454{font-size:64.000000pt;}
.y0_c00454{bottom:0.000000pt;}
.y1e_c00454{bottom:2.760000pt;}
.y1d_c00454{bottom:6.425217pt;}
.y1c_c00454{bottom:59.706667pt;}
.y1b_c00454{bottom:83.040000pt;}
.y1a_c00454{bottom:101.306667pt;}
.y19_c00454{bottom:125.306667pt;}
.y18_c00454{bottom:146.906667pt;}
.y17_c00454{bottom:170.640000pt;}
.y16_c00454{bottom:191.973333pt;}
.y15_c00454{bottom:213.840000pt;}
.y14_c00454{bottom:235.440000pt;}
.y13_c00454{bottom:257.440000pt;}
.y12_c00454{bottom:278.906667pt;}
.y11_c00454{bottom:300.906667pt;}
.y10_c00454{bottom:321.840000pt;}
.yf_c00454{bottom:343.173333pt;}
.ye_c00454{bottom:365.306667pt;}
.yd_c00454{bottom:387.306667pt;}
.yc_c00454{bottom:410.373333pt;}
.yb_c00454{bottom:430.773333pt;}
.ya_c00454{bottom:453.040000pt;}
.y9_c00454{bottom:476.106667pt;}
.y8_c00454{bottom:497.440000pt;}
.y7_c00454{bottom:518.106667pt;}
.y6_c00454{bottom:541.840000pt;}
.y5_c00454{bottom:562.106667pt;}
.y4_c00454{bottom:584.906667pt;}
.y3_c00454{bottom:606.506667pt;}
.y2_c00454{bottom:628.106667pt;}
.y1_c00454{bottom:649.440000pt;}
.h5_c00454{height:11.733399pt;}
.h6_c00454{height:38.937500pt;}
.h4_c00454{height:57.397135pt;}
.h3_c00454{height:77.654948pt;}
.h2_c00454{height:81.031250pt;}
.h0_c00454{height:694.533333pt;}
.h1_c00454{height:694.666667pt;}
.w2_c00454{width:93.222667pt;}
.w0_c00454{width:478.533333pt;}
.w1_c00454{width:478.666667pt;}
.x0_c00454{left:0.000000pt;}
.x2_c00454{left:34.533333pt;}
.x3_c00454{left:36.000000pt;}
.x4_c00454{left:37.466667pt;}
.x5_c00454{left:38.666667pt;}
.x6_c00454{left:40.400000pt;}
.x7_c00454{left:61.200000pt;}
.x1_c00454{left:138.800000pt;}
.x8_c00454{left:196.434896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f49d83e9617107e95471d98.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.592000;font-style:normal;font-weight:normal;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_cc8f9ac34855f0239b2c331c.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:1.575000;font-style:normal;font-weight:normal;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_9a542ce369d408d7a915c080.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00455;src:url('chunks/assets/font_ef941c4fab95f074b75be54e.woff2')format("woff");}.ff4_c00455{font-family:ff4_c00455;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00455;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00455{font-family:ff5_c00455;line-height:1.219238;font-style: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;}
.ls5_c00455{letter-spacing:-12.000000px;}
.ls3_c00455{letter-spacing:-6.000000px;}
.ls4_c00455{letter-spacing:0.000000px;}
.ls1_c00455{letter-spacing:2.988000px;}
.ls0_c00455{letter-spacing:3.000000px;}
.ls2_c00455{letter-spacing:4.788000px;}
.ls6_c00455{letter-spacing:6.000000px;}
.sc__c00455{text-shadow:none;}
.sc0_c00455{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00455{-webkit-text-stroke:0px transparent;}
.sc0_c00455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00455{word-spacing:-20.352000px;}
.ws0_c00455{word-spacing:-6.963000px;}
.ws2_c00455{word-spacing:0.000000px;}
._13_c00455{margin-left:-15.804000px;}
._d_c00455{margin-left:-12.888000px;}
._b_c00455{margin-left:-10.590000px;}
._12_c00455{margin-left:-9.498000px;}
._f_c00455{margin-left:-8.394000px;}
._8_c00455{margin-left:-7.320000px;}
._3_c00455{margin-left:-5.220000px;}
._a_c00455{margin-left:-3.528000px;}
._4_c00455{margin-left:-2.070000px;}
._c_c00455{margin-left:-1.068000px;}
._5_c00455{width:1.434000px;}
._1_c00455{width:2.970000px;}
._2_c00455{width:4.230000px;}
._0_c00455{width:5.760000px;}
._9_c00455{width:7.674000px;}
._10_c00455{width:8.682000px;}
._11_c00455{width:10.248000px;}
._6_c00455{width:11.286000px;}
._e_c00455{width:12.510000px;}
._7_c00455{width:13.620000px;}
._14_c00455{width:15.636000px;}
._15_c00455{width:28.818000px;}
.fc2_c00455{color:transparent;}
.fc1_c00455{color:rgb(128,128,128);}
.fc0_c00455{color:rgb(0,0,0);}
.fs5_c00455{font-size:48.000000px;}
.fs3_c00455{font-size:63.000000px;}
.fs4_c00455{font-size:69.000000px;}
.fs2_c00455{font-size:72.000000px;}
.fs1_c00455{font-size:81.000000px;}
.fs0_c00455{font-size:90.000000px;}
.y0_c00455{bottom:0.000000px;}
.y1e_c00455{bottom:3.105000px;}
.y1d_c00455{bottom:7.228371px;}
.y1c_c00455{bottom:66.465000px;}
.y1b_c00455{bottom:90.765000px;}
.y1a_c00455{bottom:113.865000px;}
.y19_c00455{bottom:139.515000px;}
.y18_c00455{bottom:164.715000px;}
.y17_c00455{bottom:190.365000px;}
.y16_c00455{bottom:215.415000px;}
.y15_c00455{bottom:239.715000px;}
.y14_c00455{bottom:265.065000px;}
.y13_c00455{bottom:290.265000px;}
.y12_c00455{bottom:314.865000px;}
.y11_c00455{bottom:340.215000px;}
.y10_c00455{bottom:363.465000px;}
.yf_c00455{bottom:387.465000px;}
.ye_c00455{bottom:412.215000px;}
.yd_c00455{bottom:436.515000px;}
.yc_c00455{bottom:461.115000px;}
.yb_c00455{bottom:486.315000px;}
.ya_c00455{bottom:510.615000px;}
.y9_c00455{bottom:535.065000px;}
.y8_c00455{bottom:559.365000px;}
.y7_c00455{bottom:584.565000px;}
.y6_c00455{bottom:609.315000px;}
.y5_c00455{bottom:633.615000px;}
.y4_c00455{bottom:658.215000px;}
.y3_c00455{bottom:683.415000px;}
.y2_c00455{bottom:707.865000px;}
.y1_c00455{bottom:733.365000px;}
.h4_c00455{height:13.200074px;}
.h5_c00455{height:43.804688px;}
.h3_c00455{height:91.160156px;}
.h2_c00455{height:97.560000px;}
.h0_c00455{height:779.775000px;}
.h1_c00455{height:780.000000px;}
.w2_c00455{width:104.875500px;}
.w1_c00455{width:525.000000px;}
.w0_c00455{width:525.150000px;}
.x0_c00455{left:0.000000px;}
.xc_c00455{left:88.800000px;}
.xb_c00455{left:90.450000px;}
.xa_c00455{left:91.500000px;}
.x9_c00455{left:93.450000px;}
.x8_c00455{left:95.850000px;}
.x7_c00455{left:96.900000px;}
.x6_c00455{left:98.550000px;}
.x5_c00455{left:99.600000px;}
.x4_c00455{left:100.800000px;}
.x3_c00455{left:101.850000px;}
.x2_c00455{left:102.900000px;}
.xd_c00455{left:214.389267px;}
.x1_c00455{left:216.600000px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls5_c00455{letter-spacing:-10.666667pt;}
.ls3_c00455{letter-spacing:-5.333333pt;}
.ls4_c00455{letter-spacing:0.000000pt;}
.ls1_c00455{letter-spacing:2.656000pt;}
.ls0_c00455{letter-spacing:2.666667pt;}
.ls2_c00455{letter-spacing:4.256000pt;}
.ls6_c00455{letter-spacing:5.333333pt;}
.ws1_c00455{word-spacing:-18.090667pt;}
.ws0_c00455{word-spacing:-6.189333pt;}
.ws2_c00455{word-spacing:0.000000pt;}
._13_c00455{margin-left:-14.048000pt;}
._d_c00455{margin-left:-11.456000pt;}
._b_c00455{margin-left:-9.413333pt;}
._12_c00455{margin-left:-8.442667pt;}
._f_c00455{margin-left:-7.461333pt;}
._8_c00455{margin-left:-6.506667pt;}
._3_c00455{margin-left:-4.640000pt;}
._a_c00455{margin-left:-3.136000pt;}
._4_c00455{margin-left:-1.840000pt;}
._c_c00455{margin-left:-0.949333pt;}
._5_c00455{width:1.274667pt;}
._1_c00455{width:2.640000pt;}
._2_c00455{width:3.760000pt;}
._0_c00455{width:5.120000pt;}
._9_c00455{width:6.821333pt;}
._10_c00455{width:7.717333pt;}
._11_c00455{width:9.109333pt;}
._6_c00455{width:10.032000pt;}
._e_c00455{width:11.120000pt;}
._7_c00455{width:12.106667pt;}
._14_c00455{width:13.898667pt;}
._15_c00455{width:25.616000pt;}
.fs5_c00455{font-size:42.666667pt;}
.fs3_c00455{font-size:56.000000pt;}
.fs4_c00455{font-size:61.333333pt;}
.fs2_c00455{font-size:64.000000pt;}
.fs1_c00455{font-size:72.000000pt;}
.fs0_c00455{font-size:80.000000pt;}
.y0_c00455{bottom:0.000000pt;}
.y1e_c00455{bottom:2.760000pt;}
.y1d_c00455{bottom:6.425219pt;}
.y1c_c00455{bottom:59.080000pt;}
.y1b_c00455{bottom:80.680000pt;}
.y1a_c00455{bottom:101.213333pt;}
.y19_c00455{bottom:124.013333pt;}
.y18_c00455{bottom:146.413333pt;}
.y17_c00455{bottom:169.213333pt;}
.y16_c00455{bottom:191.480000pt;}
.y15_c00455{bottom:213.080000pt;}
.y14_c00455{bottom:235.613333pt;}
.y13_c00455{bottom:258.013333pt;}
.y12_c00455{bottom:279.880000pt;}
.y11_c00455{bottom:302.413333pt;}
.y10_c00455{bottom:323.080000pt;}
.yf_c00455{bottom:344.413333pt;}
.ye_c00455{bottom:366.413333pt;}
.yd_c00455{bottom:388.013333pt;}
.yc_c00455{bottom:409.880000pt;}
.yb_c00455{bottom:432.280000pt;}
.ya_c00455{bottom:453.880000pt;}
.y9_c00455{bottom:475.613333pt;}
.y8_c00455{bottom:497.213333pt;}
.y7_c00455{bottom:519.613333pt;}
.y6_c00455{bottom:541.613333pt;}
.y5_c00455{bottom:563.213333pt;}
.y4_c00455{bottom:585.080000pt;}
.y3_c00455{bottom:607.480000pt;}
.y2_c00455{bottom:629.213333pt;}
.y1_c00455{bottom:651.880000pt;}
.h4_c00455{height:11.733399pt;}
.h5_c00455{height:38.937500pt;}
.h3_c00455{height:81.031250pt;}
.h2_c00455{height:86.720000pt;}
.h0_c00455{height:693.133333pt;}
.h1_c00455{height:693.333333pt;}
.w2_c00455{width:93.222667pt;}
.w1_c00455{width:466.666667pt;}
.w0_c00455{width:466.800000pt;}
.x0_c00455{left:0.000000pt;}
.xc_c00455{left:78.933333pt;}
.xb_c00455{left:80.400000pt;}
.xa_c00455{left:81.333333pt;}
.x9_c00455{left:83.066667pt;}
.x8_c00455{left:85.200000pt;}
.x7_c00455{left:86.133333pt;}
.x6_c00455{left:87.600000pt;}
.x5_c00455{left:88.533333pt;}
.x4_c00455{left:89.600000pt;}
.x3_c00455{left:90.533333pt;}
.x2_c00455{left:91.466667pt;}
.xd_c00455{left:190.568237pt;}
.x1_c00455{left:192.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_acb32be36362d7e7295ce6c3.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.480469;font-style:normal;font-weight:normal;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_9145f0982e994a9af4f916bd.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:1.568848;font-style:normal;font-weight:normal;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_1cd404d960b15a9d8568356e.woff2')format("woff");}.ff3_c00456{font-family:ff3_c00456;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00456;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00456{font-family:ff4_c00456;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00456{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00456{vertical-align:0.000000px;}
.ls1_c00456{letter-spacing:0.000000px;}
.ls0_c00456{letter-spacing:3.000000px;}
.sc__c00456{text-shadow:none;}
.sc0_c00456{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00456{-webkit-text-stroke:0px transparent;}
.sc0_c00456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00456{word-spacing:0.000000px;}
.ws0_c00456{word-spacing:2.952000px;}
._17_c00456{margin-left:-27.216000px;}
._13_c00456{margin-left:-18.720000px;}
._16_c00456{margin-left:-14.544000px;}
._14_c00456{margin-left:-12.672000px;}
._12_c00456{margin-left:-11.592000px;}
._15_c00456{margin-left:-9.504000px;}
._11_c00456{margin-left:-8.352000px;}
._d_c00456{margin-left:-6.984000px;}
._8_c00456{margin-left:-5.976000px;}
._9_c00456{margin-left:-4.032000px;}
._7_c00456{margin-left:-2.088000px;}
._b_c00456{margin-left:-1.008000px;}
._a_c00456{width:1.440000px;}
._6_c00456{width:3.384000px;}
._f_c00456{width:4.392000px;}
._c_c00456{width:5.616000px;}
._1_c00456{width:7.272000px;}
._2_c00456{width:8.784000px;}
._3_c00456{width:9.936000px;}
._e_c00456{width:11.160000px;}
._0_c00456{width:12.960000px;}
._4_c00456{width:15.624000px;}
._10_c00456{width:18.648000px;}
._5_c00456{width:366.912000px;}
._18_c00456{width:1271.592000px;}
.fc2_c00456{color:transparent;}
.fc1_c00456{color:rgb(128,128,128);}
.fc0_c00456{color:rgb(0,0,0);}
.fs3_c00456{font-size:48.000000px;}
.fs0_c00456{font-size:72.000000px;}
.fs1_c00456{font-size:75.000000px;}
.fs2_c00456{font-size:81.000000px;}
.y0_c00456{bottom:0.000000px;}
.y1f_c00456{bottom:3.105000px;}
.y1e_c00456{bottom:7.228371px;}
.y1d_c00456{bottom:34.215000px;}
.y1c_c00456{bottom:67.965000px;}
.y1b_c00456{bottom:88.515000px;}
.y1a_c00456{bottom:114.165000px;}
.y19_c00456{bottom:139.815000px;}
.y18_c00456{bottom:160.365000px;}
.y17_c00456{bottom:189.015000px;}
.y16_c00456{bottom:214.365000px;}
.y15_c00456{bottom:239.265000px;}
.y14_c00456{bottom:263.715000px;}
.y13_c00456{bottom:288.015000px;}
.y12_c00456{bottom:312.615000px;}
.y11_c00456{bottom:334.815000px;}
.y10_c00456{bottom:359.115000px;}
.yf_c00456{bottom:383.415000px;}
.ye_c00456{bottom:408.165000px;}
.yd_c00456{bottom:433.065000px;}
.yc_c00456{bottom:457.965000px;}
.yb_c00456{bottom:482.265000px;}
.ya_c00456{bottom:507.315000px;}
.y9_c00456{bottom:531.915000px;}
.y8_c00456{bottom:557.265000px;}
.y7_c00456{bottom:581.565000px;}
.y6_c00456{bottom:606.465000px;}
.y5_c00456{bottom:630.915000px;}
.y4_c00456{bottom:655.215000px;}
.y3_c00456{bottom:680.415000px;}
.y2_c00456{bottom:705.015000px;}
.y1_c00456{bottom:730.065000px;}
.h4_c00456{height:13.200074px;}
.h5_c00456{height:43.804688px;}
.h2_c00456{height:91.160156px;}
.h3_c00456{height:94.958496px;}
.h1_c00456{height:783.750000px;}
.h0_c00456{height:783.825000px;}
.w2_c00456{width:104.875500px;}
.w0_c00456{width:538.125000px;}
.w1_c00456{width:538.500000px;}
.x0_c00456{left:0.000000px;}
.x7_c00456{left:26.700000px;}
.x2_c00456{left:28.350000px;}
.x3_c00456{left:29.700000px;}
.x4_c00456{left:31.050000px;}
.x5_c00456{left:33.000000px;}
.x8_c00456{left:38.400000px;}
.x6_c00456{left:64.050000px;}
.x1_c00456{left:139.650000px;}
.x9_c00456{left:220.876740px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls1_c00456{letter-spacing:0.000000pt;}
.ls0_c00456{letter-spacing:2.666667pt;}
.ws1_c00456{word-spacing:0.000000pt;}
.ws0_c00456{word-spacing:2.624000pt;}
._17_c00456{margin-left:-24.192000pt;}
._13_c00456{margin-left:-16.640000pt;}
._16_c00456{margin-left:-12.928000pt;}
._14_c00456{margin-left:-11.264000pt;}
._12_c00456{margin-left:-10.304000pt;}
._15_c00456{margin-left:-8.448000pt;}
._11_c00456{margin-left:-7.424000pt;}
._d_c00456{margin-left:-6.208000pt;}
._8_c00456{margin-left:-5.312000pt;}
._9_c00456{margin-left:-3.584000pt;}
._7_c00456{margin-left:-1.856000pt;}
._b_c00456{margin-left:-0.896000pt;}
._a_c00456{width:1.280000pt;}
._6_c00456{width:3.008000pt;}
._f_c00456{width:3.904000pt;}
._c_c00456{width:4.992000pt;}
._1_c00456{width:6.464000pt;}
._2_c00456{width:7.808000pt;}
._3_c00456{width:8.832000pt;}
._e_c00456{width:9.920000pt;}
._0_c00456{width:11.520000pt;}
._4_c00456{width:13.888000pt;}
._10_c00456{width:16.576000pt;}
._5_c00456{width:326.144000pt;}
._18_c00456{width:1130.304000pt;}
.fs3_c00456{font-size:42.666667pt;}
.fs0_c00456{font-size:64.000000pt;}
.fs1_c00456{font-size:66.666667pt;}
.fs2_c00456{font-size:72.000000pt;}
.y0_c00456{bottom:0.000000pt;}
.y1f_c00456{bottom:2.760000pt;}
.y1e_c00456{bottom:6.425219pt;}
.y1d_c00456{bottom:30.413333pt;}
.y1c_c00456{bottom:60.413333pt;}
.y1b_c00456{bottom:78.680000pt;}
.y1a_c00456{bottom:101.480000pt;}
.y19_c00456{bottom:124.280000pt;}
.y18_c00456{bottom:142.546667pt;}
.y17_c00456{bottom:168.013333pt;}
.y16_c00456{bottom:190.546667pt;}
.y15_c00456{bottom:212.680000pt;}
.y14_c00456{bottom:234.413333pt;}
.y13_c00456{bottom:256.013333pt;}
.y12_c00456{bottom:277.880000pt;}
.y11_c00456{bottom:297.613333pt;}
.y10_c00456{bottom:319.213333pt;}
.yf_c00456{bottom:340.813333pt;}
.ye_c00456{bottom:362.813333pt;}
.yd_c00456{bottom:384.946667pt;}
.yc_c00456{bottom:407.080000pt;}
.yb_c00456{bottom:428.680000pt;}
.ya_c00456{bottom:450.946667pt;}
.y9_c00456{bottom:472.813333pt;}
.y8_c00456{bottom:495.346667pt;}
.y7_c00456{bottom:516.946667pt;}
.y6_c00456{bottom:539.080000pt;}
.y5_c00456{bottom:560.813333pt;}
.y4_c00456{bottom:582.413333pt;}
.y3_c00456{bottom:604.813333pt;}
.y2_c00456{bottom:626.680000pt;}
.y1_c00456{bottom:648.946667pt;}
.h4_c00456{height:11.733399pt;}
.h5_c00456{height:38.937500pt;}
.h2_c00456{height:81.031250pt;}
.h3_c00456{height:84.407552pt;}
.h1_c00456{height:696.666667pt;}
.h0_c00456{height:696.733333pt;}
.w2_c00456{width:93.222667pt;}
.w0_c00456{width:478.333333pt;}
.w1_c00456{width:478.666667pt;}
.x0_c00456{left:0.000000pt;}
.x7_c00456{left:23.733333pt;}
.x2_c00456{left:25.200000pt;}
.x3_c00456{left:26.400000pt;}
.x4_c00456{left:27.600000pt;}
.x5_c00456{left:29.333333pt;}
.x8_c00456{left:34.133333pt;}
.x6_c00456{left:56.933333pt;}
.x1_c00456{left:124.133333pt;}
.x9_c00456{left:196.334880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2a9632eeb45f75469567fe64.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00457;src:url('chunks/assets/font_6c9f292d73c0d9d27998564a.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00457;src:url('chunks/assets/font_5bc3f5500ab66733a8224f1d.woff2')format("woff");}.ff3_c00457{font-family:ff3_c00457;line-height:1.568848;font-style:normal;font-weight:normal;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_44a570d968420fc730cc8e23.woff2')format("woff");}.ff4_c00457{font-family:ff4_c00457;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00457;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00457{font-family:ff5_c00457;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00457{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00457{vertical-align:0.000000px;}
.ls3_c00457{letter-spacing:-12.000000px;}
.ls2_c00457{letter-spacing:0.000000px;}
.ls0_c00457{letter-spacing:3.000000px;}
.ls1_c00457{letter-spacing:16.788000px;}
.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:-20.352000px;}
.ws3_c00457{word-spacing:-19.629000px;}
.ws1_c00457{word-spacing:-18.051000px;}
.ws2_c00457{word-spacing:-15.000000px;}
.ws4_c00457{word-spacing:0.000000px;}
._17_c00457{margin-left:-16.584000px;}
._14_c00457{margin-left:-12.060000px;}
._e_c00457{margin-left:-9.816000px;}
._d_c00457{margin-left:-7.848000px;}
._6_c00457{margin-left:-5.904000px;}
._7_c00457{margin-left:-3.960000px;}
._8_c00457{margin-left:-2.400000px;}
._b_c00457{margin-left:-1.272000px;}
._5_c00457{width:1.176000px;}
._1_c00457{width:2.520000px;}
._2_c00457{width:4.200000px;}
._0_c00457{width:6.216000px;}
._a_c00457{width:7.296000px;}
._c_c00457{width:8.472000px;}
._12_c00457{width:9.624000px;}
._10_c00457{width:10.800000px;}
._9_c00457{width:12.156000px;}
._3_c00457{width:13.524000px;}
._16_c00457{width:17.820000px;}
._f_c00457{width:19.032000px;}
._4_c00457{width:25.788000px;}
._13_c00457{width:33.744000px;}
._11_c00457{width:64.140000px;}
._15_c00457{width:376.752000px;}
.fc2_c00457{color:transparent;}
.fc1_c00457{color:rgb(128,128,128);}
.fc0_c00457{color:rgb(0,0,0);}
.fs6_c00457{font-size:48.000000px;}
.fs4_c00457{font-size:60.000000px;}
.fs3_c00457{font-size:63.000000px;}
.fs5_c00457{font-size:69.000000px;}
.fs1_c00457{font-size:72.000000px;}
.fs2_c00457{font-size:81.000000px;}
.fs0_c00457{font-size:84.000000px;}
.y0_c00457{bottom:0.000000px;}
.y1f_c00457{bottom:3.105000px;}
.y1e_c00457{bottom:7.228357px;}
.y1d_c00457{bottom:29.730000px;}
.y1c_c00457{bottom:52.980000px;}
.y1b_c00457{bottom:79.380000px;}
.y1a_c00457{bottom:104.580000px;}
.y19_c00457{bottom:130.230000px;}
.y18_c00457{bottom:156.330000px;}
.y17_c00457{bottom:180.180000px;}
.y16_c00457{bottom:205.830000px;}
.y15_c00457{bottom:230.430000px;}
.y14_c00457{bottom:255.480000px;}
.y13_c00457{bottom:280.530000px;}
.y12_c00457{bottom:305.730000px;}
.y11_c00457{bottom:330.030000px;}
.y10_c00457{bottom:354.480000px;}
.yf_c00457{bottom:379.080000px;}
.ye_c00457{bottom:404.730000px;}
.yd_c00457{bottom:427.980000px;}
.yc_c00457{bottom:452.580000px;}
.yb_c00457{bottom:478.230000px;}
.ya_c00457{bottom:502.830000px;}
.y9_c00457{bottom:527.130000px;}
.y8_c00457{bottom:551.130000px;}
.y7_c00457{bottom:576.480000px;}
.y6_c00457{bottom:601.380000px;}
.y5_c00457{bottom:625.680000px;}
.y4_c00457{bottom:650.730000px;}
.y3_c00457{bottom:675.630000px;}
.y2_c00457{bottom:700.080000px;}
.y1_c00457{bottom:726.330000px;}
.h6_c00457{height:13.200074px;}
.h7_c00457{height:43.804688px;}
.h4_c00457{height:79.497070px;}
.h2_c00457{height:82.441406px;}
.h5_c00457{height:87.361816px;}
.h3_c00457{height:91.160156px;}
.h1_c00457{height:783.000000px;}
.h0_c00457{height:783.300000px;}
.w2_c00457{width:104.875500px;}
.w0_c00457{width:511.125000px;}
.w1_c00457{width:511.500000px;}
.x0_c00457{left:0.000000px;}
.x9_c00457{left:95.850000px;}
.x8_c00457{left:97.200000px;}
.x7_c00457{left:98.250000px;}
.x6_c00457{left:100.200000px;}
.xb_c00457{left:101.550000px;}
.x5_c00457{left:102.600000px;}
.x4_c00457{left:104.250000px;}
.x3_c00457{left:106.050000px;}
.x2_c00457{left:107.400000px;}
.xd_c00457{left:207.376740px;}
.x1_c00457{left:236.250000px;}
.xa_c00457{left:244.650000px;}
.xc_c00457{left:422.850000px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls3_c00457{letter-spacing:-10.666667pt;}
.ls2_c00457{letter-spacing:0.000000pt;}
.ls0_c00457{letter-spacing:2.666667pt;}
.ls1_c00457{letter-spacing:14.922667pt;}
.ws0_c00457{word-spacing:-18.090667pt;}
.ws3_c00457{word-spacing:-17.448000pt;}
.ws1_c00457{word-spacing:-16.045333pt;}
.ws2_c00457{word-spacing:-13.333333pt;}
.ws4_c00457{word-spacing:0.000000pt;}
._17_c00457{margin-left:-14.741333pt;}
._14_c00457{margin-left:-10.720000pt;}
._e_c00457{margin-left:-8.725333pt;}
._d_c00457{margin-left:-6.976000pt;}
._6_c00457{margin-left:-5.248000pt;}
._7_c00457{margin-left:-3.520000pt;}
._8_c00457{margin-left:-2.133333pt;}
._b_c00457{margin-left:-1.130667pt;}
._5_c00457{width:1.045333pt;}
._1_c00457{width:2.240000pt;}
._2_c00457{width:3.733333pt;}
._0_c00457{width:5.525333pt;}
._a_c00457{width:6.485333pt;}
._c_c00457{width:7.530667pt;}
._12_c00457{width:8.554667pt;}
._10_c00457{width:9.600000pt;}
._9_c00457{width:10.805333pt;}
._3_c00457{width:12.021333pt;}
._16_c00457{width:15.840000pt;}
._f_c00457{width:16.917333pt;}
._4_c00457{width:22.922667pt;}
._13_c00457{width:29.994667pt;}
._11_c00457{width:57.013333pt;}
._15_c00457{width:334.890667pt;}
.fs6_c00457{font-size:42.666667pt;}
.fs4_c00457{font-size:53.333333pt;}
.fs3_c00457{font-size:56.000000pt;}
.fs5_c00457{font-size:61.333333pt;}
.fs1_c00457{font-size:64.000000pt;}
.fs2_c00457{font-size:72.000000pt;}
.fs0_c00457{font-size:74.666667pt;}
.y0_c00457{bottom:0.000000pt;}
.y1f_c00457{bottom:2.760000pt;}
.y1e_c00457{bottom:6.425206pt;}
.y1d_c00457{bottom:26.426667pt;}
.y1c_c00457{bottom:47.093333pt;}
.y1b_c00457{bottom:70.560000pt;}
.y1a_c00457{bottom:92.960000pt;}
.y19_c00457{bottom:115.760000pt;}
.y18_c00457{bottom:138.960000pt;}
.y17_c00457{bottom:160.160000pt;}
.y16_c00457{bottom:182.960000pt;}
.y15_c00457{bottom:204.826667pt;}
.y14_c00457{bottom:227.093333pt;}
.y13_c00457{bottom:249.360000pt;}
.y12_c00457{bottom:271.760000pt;}
.y11_c00457{bottom:293.360000pt;}
.y10_c00457{bottom:315.093333pt;}
.yf_c00457{bottom:336.960000pt;}
.ye_c00457{bottom:359.760000pt;}
.yd_c00457{bottom:380.426667pt;}
.yc_c00457{bottom:402.293333pt;}
.yb_c00457{bottom:425.093333pt;}
.ya_c00457{bottom:446.960000pt;}
.y9_c00457{bottom:468.560000pt;}
.y8_c00457{bottom:489.893333pt;}
.y7_c00457{bottom:512.426667pt;}
.y6_c00457{bottom:534.560000pt;}
.y5_c00457{bottom:556.160000pt;}
.y4_c00457{bottom:578.426667pt;}
.y3_c00457{bottom:600.560000pt;}
.y2_c00457{bottom:622.293333pt;}
.y1_c00457{bottom:645.626667pt;}
.h6_c00457{height:11.733399pt;}
.h7_c00457{height:38.937500pt;}
.h4_c00457{height:70.664062pt;}
.h2_c00457{height:73.281250pt;}
.h5_c00457{height:77.654948pt;}
.h3_c00457{height:81.031250pt;}
.h1_c00457{height:696.000000pt;}
.h0_c00457{height:696.266667pt;}
.w2_c00457{width:93.222667pt;}
.w0_c00457{width:454.333333pt;}
.w1_c00457{width:454.666667pt;}
.x0_c00457{left:0.000000pt;}
.x9_c00457{left:85.200000pt;}
.x8_c00457{left:86.400000pt;}
.x7_c00457{left:87.333333pt;}
.x6_c00457{left:89.066667pt;}
.xb_c00457{left:90.266667pt;}
.x5_c00457{left:91.200000pt;}
.x4_c00457{left:92.666667pt;}
.x3_c00457{left:94.266667pt;}
.x2_c00457{left:95.466667pt;}
.xd_c00457{left:184.334880pt;}
.x1_c00457{left:210.000000pt;}
.xa_c00457{left:217.466667pt;}
.xc_c00457{left:375.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f05230ade2cfada3a5b89938.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.480469;font-style:normal;font-weight:normal;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_a86ee44f7f8523cc22c8d3c3.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:1.568848;font-style:normal;font-weight:normal;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_b7e87ebf885f4c68459ce8da.woff2')format("woff");}.ff3_c00458{font-family:ff3_c00458;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00458;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00458{font-family:ff4_c00458;line-height:1.219238;font-style: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;}
.ls2_c00458{letter-spacing:-3.000000px;}
.ls3_c00458{letter-spacing:0.000000px;}
.ls4_c00458{letter-spacing:3.000000px;}
.ls0_c00458{letter-spacing:3.171000px;}
.ls5_c00458{letter-spacing:6.000000px;}
.ls1_c00458{letter-spacing:14.094000px;}
.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;}
}
.ws2_c00458{word-spacing:-18.724800px;}
.ws1_c00458{word-spacing:-17.352000px;}
.ws0_c00458{word-spacing:-16.629000px;}
.ws3_c00458{word-spacing:-0.984000px;}
.ws4_c00458{word-spacing:0.000000px;}
._16_c00458{margin-left:-18.432000px;}
._15_c00458{margin-left:-16.134000px;}
._17_c00458{margin-left:-13.176000px;}
._12_c00458{margin-left:-11.434200px;}
._e_c00458{margin-left:-10.359000px;}
._18_c00458{margin-left:-8.388000px;}
._7_c00458{margin-left:-7.074000px;}
._d_c00458{margin-left:-5.859000px;}
._a_c00458{margin-left:-4.854000px;}
._6_c00458{margin-left:-3.105000px;}
._8_c00458{margin-left:-1.371000px;}
._2_c00458{width:1.044000px;}
._3_c00458{width:2.610000px;}
._9_c00458{width:3.978000px;}
._1_c00458{width:5.133000px;}
._b_c00458{width:6.567000px;}
._0_c00458{width:7.743000px;}
._11_c00458{width:9.540000px;}
._5_c00458{width:11.310000px;}
._10_c00458{width:12.771000px;}
._f_c00458{width:14.968200px;}
._14_c00458{width:16.326000px;}
._13_c00458{width:24.774000px;}
._c_c00458{width:26.127000px;}
._19_c00458{width:33.750000px;}
._1a_c00458{width:99.462000px;}
._4_c00458{width:332.166000px;}
.fc2_c00458{color:transparent;}
.fc1_c00458{color:rgb(128,128,128);}
.fc0_c00458{color:rgb(0,0,0);}
.fs5_c00458{font-size:48.000000px;}
.fs3_c00458{font-size:52.800000px;}
.fs4_c00458{font-size:66.000000px;}
.fs2_c00458{font-size:69.000000px;}
.fs1_c00458{font-size:72.000000px;}
.fs0_c00458{font-size:87.000000px;}
.y0_c00458{bottom:0.000000px;}
.y1f_c00458{bottom:3.105000px;}
.y1e_c00458{bottom:7.228369px;}
.y1d_c00458{bottom:52.020000px;}
.y1c_c00458{bottom:83.070000px;}
.y1b_c00458{bottom:102.570000px;}
.y1a_c00458{bottom:132.570000px;}
.y19_c00458{bottom:158.970000px;}
.y18_c00458{bottom:183.870000px;}
.y17_c00458{bottom:207.570000px;}
.y16_c00458{bottom:227.070000px;}
.y15_c00458{bottom:256.770000px;}
.y14_c00458{bottom:280.470000px;}
.y13_c00458{bottom:306.420000px;}
.y12_c00458{bottom:328.620000px;}
.y11_c00458{bottom:351.570000px;}
.y10_c00458{bottom:375.570000px;}
.yf_c00458{bottom:400.320000px;}
.ye_c00458{bottom:424.320000px;}
.yd_c00458{bottom:449.220000px;}
.yc_c00458{bottom:474.120000px;}
.yb_c00458{bottom:498.420000px;}
.ya_c00458{bottom:523.020000px;}
.y9_c00458{bottom:547.470000px;}
.y8_c00458{bottom:572.070000px;}
.y7_c00458{bottom:596.670000px;}
.y6_c00458{bottom:620.670000px;}
.y5_c00458{bottom:646.020000px;}
.y4_c00458{bottom:670.620000px;}
.y3_c00458{bottom:693.870000px;}
.y2_c00458{bottom:719.520000px;}
.y1_c00458{bottom:743.820000px;}
.h5_c00458{height:13.200073px;}
.h6_c00458{height:43.804688px;}
.h4_c00458{height:87.361816px;}
.h3_c00458{height:91.160156px;}
.h2_c00458{height:110.151855px;}
.h1_c00458{height:783.750000px;}
.h0_c00458{height:784.050000px;}
.w1_c00458{width:104.875500px;}
.w0_c00458{width:537.000000px;}
.x0_c00458{left:0.000000px;}
.x5_c00458{left:20.550000px;}
.x6_c00458{left:25.950000px;}
.x2_c00458{left:33.150000px;}
.x3_c00458{left:34.650000px;}
.x4_c00458{left:36.000000px;}
.x1_c00458{left:158.550000px;}
.x8_c00458{left:220.314240px;}
.x7_c00458{left:363.150000px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls2_c00458{letter-spacing:-2.666667pt;}
.ls3_c00458{letter-spacing:0.000000pt;}
.ls4_c00458{letter-spacing:2.666667pt;}
.ls0_c00458{letter-spacing:2.818667pt;}
.ls5_c00458{letter-spacing:5.333333pt;}
.ls1_c00458{letter-spacing:12.528000pt;}
.ws2_c00458{word-spacing:-16.644267pt;}
.ws1_c00458{word-spacing:-15.424000pt;}
.ws0_c00458{word-spacing:-14.781333pt;}
.ws3_c00458{word-spacing:-0.874667pt;}
.ws4_c00458{word-spacing:0.000000pt;}
._16_c00458{margin-left:-16.384000pt;}
._15_c00458{margin-left:-14.341333pt;}
._17_c00458{margin-left:-11.712000pt;}
._12_c00458{margin-left:-10.163733pt;}
._e_c00458{margin-left:-9.208000pt;}
._18_c00458{margin-left:-7.456000pt;}
._7_c00458{margin-left:-6.288000pt;}
._d_c00458{margin-left:-5.208000pt;}
._a_c00458{margin-left:-4.314667pt;}
._6_c00458{margin-left:-2.760000pt;}
._8_c00458{margin-left:-1.218667pt;}
._2_c00458{width:0.928000pt;}
._3_c00458{width:2.320000pt;}
._9_c00458{width:3.536000pt;}
._1_c00458{width:4.562667pt;}
._b_c00458{width:5.837333pt;}
._0_c00458{width:6.882667pt;}
._11_c00458{width:8.480000pt;}
._5_c00458{width:10.053333pt;}
._10_c00458{width:11.352000pt;}
._f_c00458{width:13.305067pt;}
._14_c00458{width:14.512000pt;}
._13_c00458{width:22.021333pt;}
._c_c00458{width:23.224000pt;}
._19_c00458{width:30.000000pt;}
._1a_c00458{width:88.410667pt;}
._4_c00458{width:295.258667pt;}
.fs5_c00458{font-size:42.666667pt;}
.fs3_c00458{font-size:46.933333pt;}
.fs4_c00458{font-size:58.666667pt;}
.fs2_c00458{font-size:61.333333pt;}
.fs1_c00458{font-size:64.000000pt;}
.fs0_c00458{font-size:77.333333pt;}
.y0_c00458{bottom:0.000000pt;}
.y1f_c00458{bottom:2.760000pt;}
.y1e_c00458{bottom:6.425217pt;}
.y1d_c00458{bottom:46.240000pt;}
.y1c_c00458{bottom:73.840000pt;}
.y1b_c00458{bottom:91.173333pt;}
.y1a_c00458{bottom:117.840000pt;}
.y19_c00458{bottom:141.306667pt;}
.y18_c00458{bottom:163.440000pt;}
.y17_c00458{bottom:184.506667pt;}
.y16_c00458{bottom:201.840000pt;}
.y15_c00458{bottom:228.240000pt;}
.y14_c00458{bottom:249.306667pt;}
.y13_c00458{bottom:272.373333pt;}
.y12_c00458{bottom:292.106667pt;}
.y11_c00458{bottom:312.506667pt;}
.y10_c00458{bottom:333.840000pt;}
.yf_c00458{bottom:355.840000pt;}
.ye_c00458{bottom:377.173333pt;}
.yd_c00458{bottom:399.306667pt;}
.yc_c00458{bottom:421.440000pt;}
.yb_c00458{bottom:443.040000pt;}
.ya_c00458{bottom:464.906667pt;}
.y9_c00458{bottom:486.640000pt;}
.y8_c00458{bottom:508.506667pt;}
.y7_c00458{bottom:530.373333pt;}
.y6_c00458{bottom:551.706667pt;}
.y5_c00458{bottom:574.240000pt;}
.y4_c00458{bottom:596.106667pt;}
.y3_c00458{bottom:616.773333pt;}
.y2_c00458{bottom:639.573333pt;}
.y1_c00458{bottom:661.173333pt;}
.h5_c00458{height:11.733399pt;}
.h6_c00458{height:38.937500pt;}
.h4_c00458{height:77.654948pt;}
.h3_c00458{height:81.031250pt;}
.h2_c00458{height:97.912760pt;}
.h1_c00458{height:696.666667pt;}
.h0_c00458{height:696.933333pt;}
.w1_c00458{width:93.222667pt;}
.w0_c00458{width:477.333333pt;}
.x0_c00458{left:0.000000pt;}
.x5_c00458{left:18.266667pt;}
.x6_c00458{left:23.066667pt;}
.x2_c00458{left:29.466667pt;}
.x3_c00458{left:30.800000pt;}
.x4_c00458{left:32.000000pt;}
.x1_c00458{left:140.933333pt;}
.x8_c00458{left:195.834880pt;}
.x7_c00458{left:322.800000pt;}
}





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

.ir_c00459:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00459{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00459;src:url('chunks/assets/font_dfe37d7242c4c8f8aa415cfb.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.480469;font-style:normal;font-weight:normal;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_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00459;src:url('chunks/assets/font_4878c2f75ab80879ae061580.woff2')format("woff");}.ff3_c00459{font-family:ff3_c00459;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00459;src:url('chunks/assets/font_9dd3fb2022a4062ab4d5abc4.woff2')format("woff");}.ff4_c00459{font-family:ff4_c00459;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00459;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00459{font-family:ff5_c00459;line-height:1.219238;font-style: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;}
.ls3_c00459{letter-spacing:0.000000px;}
.ls2_c00459{letter-spacing:1.368000px;}
.ls1_c00459{letter-spacing:3.000000px;}
.ls0_c00459{letter-spacing:13.200000px;}
.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:-33.192000px;}
.ws2_c00459{word-spacing:-20.352000px;}
.ws1_c00459{word-spacing:-16.629000px;}
.ws3_c00459{word-spacing:0.000000px;}
._15_c00459{margin-left:-15.522000px;}
._7_c00459{margin-left:-12.024000px;}
._f_c00459{margin-left:-10.776000px;}
._11_c00459{margin-left:-9.711000px;}
._e_c00459{margin-left:-8.085000px;}
._b_c00459{margin-left:-6.990000px;}
._9_c00459{margin-left:-5.865000px;}
._c_c00459{margin-left:-4.362000px;}
._4_c00459{margin-left:-3.048000px;}
._6_c00459{margin-left:-1.296000px;}
._5_c00459{width:1.656000px;}
._8_c00459{width:3.024000px;}
._3_c00459{width:4.032000px;}
._1_c00459{width:5.112000px;}
._2_c00459{width:6.984000px;}
._0_c00459{width:8.208000px;}
._a_c00459{width:9.783000px;}
._12_c00459{width:10.911000px;}
._14_c00459{width:12.213000px;}
._13_c00459{width:13.629000px;}
._10_c00459{width:16.272000px;}
._d_c00459{width:17.640000px;}
.fc2_c00459{color:transparent;}
.fc1_c00459{color:rgb(128,128,128);}
.fc0_c00459{color:rgb(0,0,0);}
.fs4_c00459{font-size:48.000000px;}
.fs3_c00459{font-size:57.000000px;}
.fs2_c00459{font-size:69.000000px;}
.fs0_c00459{font-size:72.000000px;}
.fs1_c00459{font-size:78.000000px;}
.y0_c00459{bottom:0.000000px;}
.y1e_c00459{bottom:3.105000px;}
.y1d_c00459{bottom:7.228369px;}
.y1c_c00459{bottom:76.170000px;}
.y1b_c00459{bottom:101.220000px;}
.y1a_c00459{bottom:126.270000px;}
.y19_c00459{bottom:151.920000px;}
.y18_c00459{bottom:176.670000px;}
.y17_c00459{bottom:201.420000px;}
.y16_c00459{bottom:226.170000px;}
.y15_c00459{bottom:251.070000px;}
.y14_c00459{bottom:277.320000px;}
.y13_c00459{bottom:301.320000px;}
.y12_c00459{bottom:325.320000px;}
.y11_c00459{bottom:349.620000px;}
.y10_c00459{bottom:374.220000px;}
.yf_c00459{bottom:398.220000px;}
.ye_c00459{bottom:422.520000px;}
.yd_c00459{bottom:447.120000px;}
.yc_c00459{bottom:471.120000px;}
.yb_c00459{bottom:496.020000px;}
.ya_c00459{bottom:519.720000px;}
.y9_c00459{bottom:544.770000px;}
.y8_c00459{bottom:569.370000px;}
.y7_c00459{bottom:594.270000px;}
.y6_c00459{bottom:618.870000px;}
.y5_c00459{bottom:643.320000px;}
.y4_c00459{bottom:668.220000px;}
.y3_c00459{bottom:692.820000px;}
.y2_c00459{bottom:718.170000px;}
.y1_c00459{bottom:743.520000px;}
.h2_c00459{height:13.200073px;}
.h3_c00459{height:43.804688px;}
.h1_c00459{height:91.160156px;}
.h0_c00459{height:773.250000px;}
.w2_c00459{width:104.875500px;}
.w1_c00459{width:520.500000px;}
.w0_c00459{width:520.575000px;}
.x0_c00459{left:0.000000px;}
.x2_c00459{left:107.700000px;}
.x3_c00459{left:109.650000px;}
.x4_c00459{left:111.000000px;}
.x5_c00459{left:112.350000px;}
.x6_c00459{left:115.650000px;}
.x7_c00459{left:212.101730px;}
.x1_c00459{left:234.600000px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls3_c00459{letter-spacing:0.000000pt;}
.ls2_c00459{letter-spacing:1.216000pt;}
.ls1_c00459{letter-spacing:2.666667pt;}
.ls0_c00459{letter-spacing:11.733333pt;}
.ws0_c00459{word-spacing:-29.504000pt;}
.ws2_c00459{word-spacing:-18.090667pt;}
.ws1_c00459{word-spacing:-14.781333pt;}
.ws3_c00459{word-spacing:0.000000pt;}
._15_c00459{margin-left:-13.797333pt;}
._7_c00459{margin-left:-10.688000pt;}
._f_c00459{margin-left:-9.578667pt;}
._11_c00459{margin-left:-8.632000pt;}
._e_c00459{margin-left:-7.186667pt;}
._b_c00459{margin-left:-6.213333pt;}
._9_c00459{margin-left:-5.213333pt;}
._c_c00459{margin-left:-3.877333pt;}
._4_c00459{margin-left:-2.709333pt;}
._6_c00459{margin-left:-1.152000pt;}
._5_c00459{width:1.472000pt;}
._8_c00459{width:2.688000pt;}
._3_c00459{width:3.584000pt;}
._1_c00459{width:4.544000pt;}
._2_c00459{width:6.208000pt;}
._0_c00459{width:7.296000pt;}
._a_c00459{width:8.696000pt;}
._12_c00459{width:9.698667pt;}
._14_c00459{width:10.856000pt;}
._13_c00459{width:12.114667pt;}
._10_c00459{width:14.464000pt;}
._d_c00459{width:15.680000pt;}
.fs4_c00459{font-size:42.666667pt;}
.fs3_c00459{font-size:50.666667pt;}
.fs2_c00459{font-size:61.333333pt;}
.fs0_c00459{font-size:64.000000pt;}
.fs1_c00459{font-size:69.333333pt;}
.y0_c00459{bottom:0.000000pt;}
.y1e_c00459{bottom:2.760000pt;}
.y1d_c00459{bottom:6.425217pt;}
.y1c_c00459{bottom:67.706667pt;}
.y1b_c00459{bottom:89.973333pt;}
.y1a_c00459{bottom:112.240000pt;}
.y19_c00459{bottom:135.040000pt;}
.y18_c00459{bottom:157.040000pt;}
.y17_c00459{bottom:179.040000pt;}
.y16_c00459{bottom:201.040000pt;}
.y15_c00459{bottom:223.173333pt;}
.y14_c00459{bottom:246.506667pt;}
.y13_c00459{bottom:267.840000pt;}
.y12_c00459{bottom:289.173333pt;}
.y11_c00459{bottom:310.773333pt;}
.y10_c00459{bottom:332.640000pt;}
.yf_c00459{bottom:353.973333pt;}
.ye_c00459{bottom:375.573333pt;}
.yd_c00459{bottom:397.440000pt;}
.yc_c00459{bottom:418.773333pt;}
.yb_c00459{bottom:440.906667pt;}
.ya_c00459{bottom:461.973333pt;}
.y9_c00459{bottom:484.240000pt;}
.y8_c00459{bottom:506.106667pt;}
.y7_c00459{bottom:528.240000pt;}
.y6_c00459{bottom:550.106667pt;}
.y5_c00459{bottom:571.840000pt;}
.y4_c00459{bottom:593.973333pt;}
.y3_c00459{bottom:615.840000pt;}
.y2_c00459{bottom:638.373333pt;}
.y1_c00459{bottom:660.906667pt;}
.h2_c00459{height:11.733399pt;}
.h3_c00459{height:38.937500pt;}
.h1_c00459{height:81.031250pt;}
.h0_c00459{height:687.333333pt;}
.w2_c00459{width:93.222667pt;}
.w1_c00459{width:462.666667pt;}
.w0_c00459{width:462.733333pt;}
.x0_c00459{left:0.000000pt;}
.x2_c00459{left:95.733333pt;}
.x3_c00459{left:97.466667pt;}
.x4_c00459{left:98.666667pt;}
.x5_c00459{left:99.866667pt;}
.x6_c00459{left:102.800000pt;}
.x7_c00459{left:188.534871pt;}
.x1_c00459{left:208.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e9e328e0f2453d33602f7ec9.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.480469;font-style:normal;font-weight:normal;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_e8c21582c37ed9c80277ac1c.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.568848;font-style:normal;font-weight:normal;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_a3081ccec5f15ed5a83c89e1.woff2')format("woff");}.ff3_c00460{font-family:ff3_c00460;line-height:1.480469;font-style:normal;font-weight:normal;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_e0139a8bf19b443506e195b6.woff2')format("woff");}.ff4_c00460{font-family:ff4_c00460;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00460;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00460{font-family:ff5_c00460;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00460;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00460{font-family:ff6_c00460;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00460{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00460{vertical-align:0.000000px;}
.v1_c00460{vertical-align:100.200000px;}
.ls2_c00460{letter-spacing:0.000000px;}
.ls3_c00460{letter-spacing:3.000000px;}
.ls1_c00460{letter-spacing:13.500000px;}
.ls0_c00460{letter-spacing:27.900000px;}
.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;}
}
.ws1_c00460{word-spacing:-46.272000px;}
.ws0_c00460{word-spacing:-33.192000px;}
.ws2_c00460{word-spacing:0.000000px;}
._12_c00460{margin-left:-34.152000px;}
._8_c00460{margin-left:-10.452000px;}
._a_c00460{margin-left:-8.118000px;}
._3_c00460{margin-left:-6.084000px;}
._5_c00460{margin-left:-4.914000px;}
._4_c00460{margin-left:-3.822000px;}
._2_c00460{margin-left:-2.808000px;}
._9_c00460{margin-left:-1.152000px;}
._1_c00460{width:1.794000px;}
._b_c00460{width:2.802000px;}
._0_c00460{width:4.212000px;}
._e_c00460{width:5.262000px;}
._d_c00460{width:7.122000px;}
._16_c00460{width:8.169000px;}
._13_c00460{width:9.285000px;}
._f_c00460{width:10.878000px;}
._14_c00460{width:12.015000px;}
._11_c00460{width:13.722000px;}
._c_c00460{width:17.682000px;}
._19_c00460{width:20.040000px;}
._17_c00460{width:21.399000px;}
._7_c00460{width:23.322000px;}
._1b_c00460{width:28.098000px;}
._15_c00460{width:30.702000px;}
._1c_c00460{width:32.814000px;}
._1a_c00460{width:40.194000px;}
._10_c00460{width:110.100000px;}
._1d_c00460{width:312.810000px;}
._6_c00460{width:317.226000px;}
._18_c00460{width:318.534000px;}
.fc2_c00460{color:transparent;}
.fc1_c00460{color:rgb(128,128,128);}
.fc0_c00460{color:rgb(0,0,0);}
.fs6_c00460{font-size:48.000000px;}
.fs4_c00460{font-size:57.000000px;}
.fs3_c00460{font-size:63.000000px;}
.fs5_c00460{font-size:69.000000px;}
.fs1_c00460{font-size:72.000000px;}
.fs0_c00460{font-size:78.000000px;}
.fs2_c00460{font-size:192.000000px;}
.y0_c00460{bottom:0.000000px;}
.y1f_c00460{bottom:3.105000px;}
.y1e_c00460{bottom:7.228357px;}
.y1d_c00460{bottom:48.630000px;}
.y1c_c00460{bottom:75.330000px;}
.y1b_c00460{bottom:100.530000px;}
.y1a_c00460{bottom:124.830000px;}
.y19_c00460{bottom:146.430000px;}
.y18_c00460{bottom:172.530000px;}
.y17_c00460{bottom:198.780000px;}
.y16_c00460{bottom:222.030000px;}
.y15_c00460{bottom:247.380000px;}
.y14_c00460{bottom:273.030000px;}
.y13_c00460{bottom:297.330000px;}
.y12_c00460{bottom:319.230000px;}
.y10_c00460{bottom:340.530000px;}
.y11_c00460{bottom:342.930000px;}
.yf_c00460{bottom:392.580000px;}
.ye_c00460{bottom:416.880000px;}
.yd_c00460{bottom:441.480000px;}
.yc_c00460{bottom:466.080000px;}
.yb_c00460{bottom:490.830000px;}
.ya_c00460{bottom:514.380000px;}
.y9_c00460{bottom:540.330000px;}
.y8_c00460{bottom:564.330000px;}
.y7_c00460{bottom:589.230000px;}
.y6_c00460{bottom:612.630000px;}
.y5_c00460{bottom:637.980000px;}
.y4_c00460{bottom:662.130000px;}
.y3_c00460{bottom:686.580000px;}
.y2_c00460{bottom:711.180000px;}
.y1_c00460{bottom:737.130000px;}
.h7_c00460{height:13.200074px;}
.h8_c00460{height:43.804688px;}
.h5_c00460{height:79.765137px;}
.h6_c00460{height:87.361816px;}
.h3_c00460{height:91.160156px;}
.h2_c00460{height:91.291992px;}
.h4_c00460{height:243.093750px;}
.h1_c00460{height:784.500000px;}
.h0_c00460{height:784.650000px;}
.w2_c00460{width:104.875500px;}
.w0_c00460{width:543.525000px;}
.w1_c00460{width:543.750000px;}
.x0_c00460{left:0.000000px;}
.xa_c00460{left:25.050000px;}
.x8_c00460{left:26.400000px;}
.x7_c00460{left:27.450000px;}
.x9_c00460{left:30.000000px;}
.x2_c00460{left:31.800000px;}
.x3_c00460{left:33.450000px;}
.x4_c00460{left:34.500000px;}
.x5_c00460{left:35.550000px;}
.x6_c00460{left:40.200000px;}
.x1_c00460{left:154.950000px;}
.xc_c00460{left:223.576767px;}
.xb_c00460{left:234.600000px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.v1_c00460{vertical-align:89.066667pt;}
.ls2_c00460{letter-spacing:0.000000pt;}
.ls3_c00460{letter-spacing:2.666667pt;}
.ls1_c00460{letter-spacing:12.000000pt;}
.ls0_c00460{letter-spacing:24.800000pt;}
.ws1_c00460{word-spacing:-41.130667pt;}
.ws0_c00460{word-spacing:-29.504000pt;}
.ws2_c00460{word-spacing:0.000000pt;}
._12_c00460{margin-left:-30.357333pt;}
._8_c00460{margin-left:-9.290667pt;}
._a_c00460{margin-left:-7.216000pt;}
._3_c00460{margin-left:-5.408000pt;}
._5_c00460{margin-left:-4.368000pt;}
._4_c00460{margin-left:-3.397333pt;}
._2_c00460{margin-left:-2.496000pt;}
._9_c00460{margin-left:-1.024000pt;}
._1_c00460{width:1.594667pt;}
._b_c00460{width:2.490667pt;}
._0_c00460{width:3.744000pt;}
._e_c00460{width:4.677333pt;}
._d_c00460{width:6.330667pt;}
._16_c00460{width:7.261333pt;}
._13_c00460{width:8.253333pt;}
._f_c00460{width:9.669333pt;}
._14_c00460{width:10.680000pt;}
._11_c00460{width:12.197333pt;}
._c_c00460{width:15.717333pt;}
._19_c00460{width:17.813333pt;}
._17_c00460{width:19.021333pt;}
._7_c00460{width:20.730667pt;}
._1b_c00460{width:24.976000pt;}
._15_c00460{width:27.290667pt;}
._1c_c00460{width:29.168000pt;}
._1a_c00460{width:35.728000pt;}
._10_c00460{width:97.866667pt;}
._1d_c00460{width:278.053333pt;}
._6_c00460{width:281.978667pt;}
._18_c00460{width:283.141333pt;}
.fs6_c00460{font-size:42.666667pt;}
.fs4_c00460{font-size:50.666667pt;}
.fs3_c00460{font-size:56.000000pt;}
.fs5_c00460{font-size:61.333333pt;}
.fs1_c00460{font-size:64.000000pt;}
.fs0_c00460{font-size:69.333333pt;}
.fs2_c00460{font-size:170.666667pt;}
.y0_c00460{bottom:0.000000pt;}
.y1f_c00460{bottom:2.760000pt;}
.y1e_c00460{bottom:6.425206pt;}
.y1d_c00460{bottom:43.226667pt;}
.y1c_c00460{bottom:66.960000pt;}
.y1b_c00460{bottom:89.360000pt;}
.y1a_c00460{bottom:110.960000pt;}
.y19_c00460{bottom:130.160000pt;}
.y18_c00460{bottom:153.360000pt;}
.y17_c00460{bottom:176.693333pt;}
.y16_c00460{bottom:197.360000pt;}
.y15_c00460{bottom:219.893333pt;}
.y14_c00460{bottom:242.693333pt;}
.y13_c00460{bottom:264.293333pt;}
.y12_c00460{bottom:283.760000pt;}
.y10_c00460{bottom:302.693333pt;}
.y11_c00460{bottom:304.826667pt;}
.yf_c00460{bottom:348.960000pt;}
.ye_c00460{bottom:370.560000pt;}
.yd_c00460{bottom:392.426667pt;}
.yc_c00460{bottom:414.293333pt;}
.yb_c00460{bottom:436.293333pt;}
.ya_c00460{bottom:457.226667pt;}
.y9_c00460{bottom:480.293333pt;}
.y8_c00460{bottom:501.626667pt;}
.y7_c00460{bottom:523.760000pt;}
.y6_c00460{bottom:544.560000pt;}
.y5_c00460{bottom:567.093333pt;}
.y4_c00460{bottom:588.560000pt;}
.y3_c00460{bottom:610.293333pt;}
.y2_c00460{bottom:632.160000pt;}
.y1_c00460{bottom:655.226667pt;}
.h7_c00460{height:11.733399pt;}
.h8_c00460{height:38.937500pt;}
.h5_c00460{height:70.902344pt;}
.h6_c00460{height:77.654948pt;}
.h3_c00460{height:81.031250pt;}
.h2_c00460{height:81.148438pt;}
.h4_c00460{height:216.083333pt;}
.h1_c00460{height:697.333333pt;}
.h0_c00460{height:697.466667pt;}
.w2_c00460{width:93.222667pt;}
.w0_c00460{width:483.133333pt;}
.w1_c00460{width:483.333333pt;}
.x0_c00460{left:0.000000pt;}
.xa_c00460{left:22.266667pt;}
.x8_c00460{left:23.466667pt;}
.x7_c00460{left:24.400000pt;}
.x9_c00460{left:26.666667pt;}
.x2_c00460{left:28.266667pt;}
.x3_c00460{left:29.733333pt;}
.x4_c00460{left:30.666667pt;}
.x5_c00460{left:31.600000pt;}
.x6_c00460{left:35.733333pt;}
.x1_c00460{left:137.733333pt;}
.xc_c00460{left:198.734904pt;}
.xb_c00460{left:208.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_124a4aea63290d4cdf098878.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.592000;font-style:normal;font-weight:normal;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_d079bb3a552ff4512581d3d0.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:1.568848;font-style:normal;font-weight:normal;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_c804b18fba2eec963583a91b.woff2')format("woff");}.ff3_c00461{font-family:ff3_c00461;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00461{font-family:ff4_c00461;line-height:1.219238;font-style: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:3.000000px;}
.ls2_c00461{letter-spacing:6.000000px;}
.sc__c00461{text-shadow:none;}
.sc0_c00461{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00461{-webkit-text-stroke:0px transparent;}
.sc0_c00461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00461{word-spacing:-23.352000px;}
.ws2_c00461{word-spacing:-20.352000px;}
.ws0_c00461{word-spacing:-17.352000px;}
.ws3_c00461{word-spacing:0.000000px;}
._21_c00461{margin-left:-20.286000px;}
._14_c00461{margin-left:-18.972000px;}
._1a_c00461{margin-left:-15.912000px;}
._19_c00461{margin-left:-13.680000px;}
._15_c00461{margin-left:-11.952000px;}
._1b_c00461{margin-left:-10.608000px;}
._16_c00461{margin-left:-8.352000px;}
._f_c00461{margin-left:-6.960000px;}
._a_c00461{margin-left:-5.472000px;}
._b_c00461{margin-left:-3.708000px;}
._4_c00461{margin-left:-2.160000px;}
._c_c00461{margin-left:-1.008000px;}
._8_c00461{width:1.512000px;}
._9_c00461{width:2.844000px;}
._7_c00461{width:3.960000px;}
._d_c00461{width:5.112000px;}
._1_c00461{width:6.360000px;}
._5_c00461{width:8.340000px;}
._6_c00461{width:9.840000px;}
._13_c00461{width:11.736000px;}
._e_c00461{width:13.608000px;}
._2_c00461{width:15.000000px;}
._3_c00461{width:16.020000px;}
._11_c00461{width:18.456000px;}
._0_c00461{width:19.920000px;}
._1d_c00461{width:23.040000px;}
._1c_c00461{width:24.504000px;}
._12_c00461{width:26.640000px;}
._17_c00461{width:30.408000px;}
._18_c00461{width:34.560000px;}
._10_c00461{width:38.424000px;}
._1f_c00461{width:48.744000px;}
._20_c00461{width:140.220000px;}
._1e_c00461{width:216.960000px;}
.fc2_c00461{color:transparent;}
.fc1_c00461{color:rgb(128,128,128);}
.fc0_c00461{color:rgb(0,0,0);}
.fs5_c00461{font-size:48.000000px;}
.fs3_c00461{font-size:54.000000px;}
.fs0_c00461{font-size:60.000000px;}
.fs2_c00461{font-size:66.000000px;}
.fs4_c00461{font-size:69.000000px;}
.fs1_c00461{font-size:72.000000px;}
.y0_c00461{bottom:0.000000px;}
.y1e_c00461{bottom:3.105000px;}
.y1d_c00461{bottom:7.228371px;}
.y1c_c00461{bottom:65.565000px;}
.y1b_c00461{bottom:86.415000px;}
.y1a_c00461{bottom:109.815000px;}
.y19_c00461{bottom:136.815000px;}
.y18_c00461{bottom:161.115000px;}
.y17_c00461{bottom:185.415000px;}
.y16_c00461{bottom:209.715000px;}
.y15_c00461{bottom:234.315000px;}
.y14_c00461{bottom:260.265000px;}
.y13_c00461{bottom:283.215000px;}
.y12_c00461{bottom:309.615000px;}
.y11_c00461{bottom:335.565000px;}
.y10_c00461{bottom:359.865000px;}
.yf_c00461{bottom:383.715000px;}
.ye_c00461{bottom:409.065000px;}
.yd_c00461{bottom:433.065000px;}
.yc_c00461{bottom:458.715000px;}
.yb_c00461{bottom:482.415000px;}
.ya_c00461{bottom:507.015000px;}
.y9_c00461{bottom:531.315000px;}
.y8_c00461{bottom:556.215000px;}
.y7_c00461{bottom:580.815000px;}
.y6_c00461{bottom:605.565000px;}
.y5_c00461{bottom:630.165000px;}
.y4_c00461{bottom:654.765000px;}
.y3_c00461{bottom:679.515000px;}
.y2_c00461{bottom:704.415000px;}
.y1_c00461{bottom:755.415000px;}
.h5_c00461{height:13.200074px;}
.h6_c00461{height:43.804688px;}
.h2_c00461{height:65.040000px;}
.h4_c00461{height:87.361816px;}
.h3_c00461{height:91.160156px;}
.h0_c00461{height:791.925000px;}
.h1_c00461{height:792.000000px;}
.w1_c00461{width:104.875500px;}
.w0_c00461{width:523.500000px;}
.x0_c00461{left:0.000000px;}
.x9_c00461{left:36.750000px;}
.x8_c00461{left:37.800000px;}
.xa_c00461{left:103.350000px;}
.x2_c00461{left:109.950000px;}
.x3_c00461{left:111.300000px;}
.x4_c00461{left:112.650000px;}
.x5_c00461{left:114.000000px;}
.x7_c00461{left:115.050000px;}
.x6_c00461{left:139.800000px;}
.xc_c00461{left:213.564240px;}
.x1_c00461{left:235.350000px;}
.xb_c00461{left:456.750000px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls1_c00461{letter-spacing:0.000000pt;}
.ls0_c00461{letter-spacing:2.666667pt;}
.ls2_c00461{letter-spacing:5.333333pt;}
.ws1_c00461{word-spacing:-20.757333pt;}
.ws2_c00461{word-spacing:-18.090667pt;}
.ws0_c00461{word-spacing:-15.424000pt;}
.ws3_c00461{word-spacing:0.000000pt;}
._21_c00461{margin-left:-18.032000pt;}
._14_c00461{margin-left:-16.864000pt;}
._1a_c00461{margin-left:-14.144000pt;}
._19_c00461{margin-left:-12.160000pt;}
._15_c00461{margin-left:-10.624000pt;}
._1b_c00461{margin-left:-9.429333pt;}
._16_c00461{margin-left:-7.424000pt;}
._f_c00461{margin-left:-6.186667pt;}
._a_c00461{margin-left:-4.864000pt;}
._b_c00461{margin-left:-3.296000pt;}
._4_c00461{margin-left:-1.920000pt;}
._c_c00461{margin-left:-0.896000pt;}
._8_c00461{width:1.344000pt;}
._9_c00461{width:2.528000pt;}
._7_c00461{width:3.520000pt;}
._d_c00461{width:4.544000pt;}
._1_c00461{width:5.653333pt;}
._5_c00461{width:7.413333pt;}
._6_c00461{width:8.746667pt;}
._13_c00461{width:10.432000pt;}
._e_c00461{width:12.096000pt;}
._2_c00461{width:13.333333pt;}
._3_c00461{width:14.240000pt;}
._11_c00461{width:16.405333pt;}
._0_c00461{width:17.706667pt;}
._1d_c00461{width:20.480000pt;}
._1c_c00461{width:21.781333pt;}
._12_c00461{width:23.680000pt;}
._17_c00461{width:27.029333pt;}
._18_c00461{width:30.720000pt;}
._10_c00461{width:34.154667pt;}
._1f_c00461{width:43.328000pt;}
._20_c00461{width:124.640000pt;}
._1e_c00461{width:192.853333pt;}
.fs5_c00461{font-size:42.666667pt;}
.fs3_c00461{font-size:48.000000pt;}
.fs0_c00461{font-size:53.333333pt;}
.fs2_c00461{font-size:58.666667pt;}
.fs4_c00461{font-size:61.333333pt;}
.fs1_c00461{font-size:64.000000pt;}
.y0_c00461{bottom:0.000000pt;}
.y1e_c00461{bottom:2.760000pt;}
.y1d_c00461{bottom:6.425219pt;}
.y1c_c00461{bottom:58.280000pt;}
.y1b_c00461{bottom:76.813333pt;}
.y1a_c00461{bottom:97.613333pt;}
.y19_c00461{bottom:121.613333pt;}
.y18_c00461{bottom:143.213333pt;}
.y17_c00461{bottom:164.813333pt;}
.y16_c00461{bottom:186.413333pt;}
.y15_c00461{bottom:208.280000pt;}
.y14_c00461{bottom:231.346667pt;}
.y13_c00461{bottom:251.746667pt;}
.y12_c00461{bottom:275.213333pt;}
.y11_c00461{bottom:298.280000pt;}
.y10_c00461{bottom:319.880000pt;}
.yf_c00461{bottom:341.080000pt;}
.ye_c00461{bottom:363.613333pt;}
.yd_c00461{bottom:384.946667pt;}
.yc_c00461{bottom:407.746667pt;}
.yb_c00461{bottom:428.813333pt;}
.ya_c00461{bottom:450.680000pt;}
.y9_c00461{bottom:472.280000pt;}
.y8_c00461{bottom:494.413333pt;}
.y7_c00461{bottom:516.280000pt;}
.y6_c00461{bottom:538.280000pt;}
.y5_c00461{bottom:560.146667pt;}
.y4_c00461{bottom:582.013333pt;}
.y3_c00461{bottom:604.013333pt;}
.y2_c00461{bottom:626.146667pt;}
.y1_c00461{bottom:671.480000pt;}
.h5_c00461{height:11.733399pt;}
.h6_c00461{height:38.937500pt;}
.h2_c00461{height:57.813333pt;}
.h4_c00461{height:77.654948pt;}
.h3_c00461{height:81.031250pt;}
.h0_c00461{height:703.933333pt;}
.h1_c00461{height:704.000000pt;}
.w1_c00461{width:93.222667pt;}
.w0_c00461{width:465.333333pt;}
.x0_c00461{left:0.000000pt;}
.x9_c00461{left:32.666667pt;}
.x8_c00461{left:33.600000pt;}
.xa_c00461{left:91.866667pt;}
.x2_c00461{left:97.733333pt;}
.x3_c00461{left:98.933333pt;}
.x4_c00461{left:100.133333pt;}
.x5_c00461{left:101.333333pt;}
.x7_c00461{left:102.266667pt;}
.x6_c00461{left:124.266667pt;}
.xc_c00461{left:189.834880pt;}
.x1_c00461{left:209.200000pt;}
.xb_c00461{left:406.000000pt;}
}





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

.ir_c00462:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00462{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00462;src:url('chunks/assets/font_c101bb8ba5a6871b19ffcc99.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.480469;font-style:normal;font-weight:normal;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_dbd978366313f79ea81a7668.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:1.568848;font-style:normal;font-weight:normal;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_bdb2d0d3a152e43ee04c9adf.woff2')format("woff");}.ff3_c00462{font-family:ff3_c00462;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00462;src:url('chunks/assets/font_53fb78c4f3fd324de840558c.woff2')format("woff");}.ff4_c00462{font-family:ff4_c00462;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00462;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00462{font-family:ff5_c00462;line-height:1.219238;font-style: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;}
.ls3_c00462{letter-spacing:0.000000px;}
.ls2_c00462{letter-spacing:1.200000px;}
.ls1_c00462{letter-spacing:3.000000px;}
.ls0_c00462{letter-spacing:3.588000px;}
.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:-17.352000px;}
.ws1_c00462{word-spacing:0.000000px;}
._19_c00462{margin-left:-27.720000px;}
._1a_c00462{margin-left:-26.208000px;}
._18_c00462{margin-left:-21.321000px;}
._a_c00462{margin-left:-17.640000px;}
._14_c00462{margin-left:-14.544000px;}
._1b_c00462{margin-left:-13.032000px;}
._13_c00462{margin-left:-11.985000px;}
._16_c00462{margin-left:-10.884000px;}
._1d_c00462{margin-left:-9.096000px;}
._12_c00462{margin-left:-7.038000px;}
._15_c00462{margin-left:-5.193000px;}
._11_c00462{margin-left:-3.930000px;}
._f_c00462{margin-left:-2.436000px;}
._e_c00462{margin-left:-1.056000px;}
._b_c00462{width:1.767000px;}
._3_c00462{width:2.940000px;}
._c_c00462{width:4.230000px;}
._4_c00462{width:5.400000px;}
._9_c00462{width:7.260000px;}
._6_c00462{width:8.280000px;}
._1c_c00462{width:9.636000px;}
._5_c00462{width:10.920000px;}
._1_c00462{width:12.540000px;}
._10_c00462{width:14.577000px;}
._0_c00462{width:16.500000px;}
._d_c00462{width:17.856000px;}
._2_c00462{width:19.560000px;}
._17_c00462{width:22.023000px;}
._7_c00462{width:24.840000px;}
._1e_c00462{width:66.588000px;}
._1f_c00462{width:315.414000px;}
._8_c00462{width:372.360000px;}
.fc2_c00462{color:transparent;}
.fc1_c00462{color:rgb(128,128,128);}
.fc0_c00462{color:rgb(0,0,0);}
.fs5_c00462{font-size:48.000000px;}
.fs0_c00462{font-size:60.000000px;}
.fs3_c00462{font-size:63.000000px;}
.fs1_c00462{font-size:69.000000px;}
.fs2_c00462{font-size:72.000000px;}
.fs4_c00462{font-size:81.000000px;}
.y0_c00462{bottom:0.000000px;}
.y1f_c00462{bottom:3.105000px;}
.y1e_c00462{bottom:7.228363px;}
.y1d_c00462{bottom:52.050000px;}
.y1c_c00462{bottom:82.650000px;}
.y1b_c00462{bottom:108.000000px;}
.y1a_c00462{bottom:128.550000px;}
.y19_c00462{bottom:158.700000px;}
.y18_c00462{bottom:182.250000px;}
.y17_c00462{bottom:207.900000px;}
.y16_c00462{bottom:230.250000px;}
.y15_c00462{bottom:256.950000px;}
.y14_c00462{bottom:281.250000px;}
.y13_c00462{bottom:305.100000px;}
.y12_c00462{bottom:329.100000px;}
.y11_c00462{bottom:351.450000px;}
.y10_c00462{bottom:375.750000px;}
.yf_c00462{bottom:400.050000px;}
.ye_c00462{bottom:425.250000px;}
.yd_c00462{bottom:449.250000px;}
.yc_c00462{bottom:473.550000px;}
.yb_c00462{bottom:498.600000px;}
.ya_c00462{bottom:523.200000px;}
.y9_c00462{bottom:548.400000px;}
.y8_c00462{bottom:573.150000px;}
.y7_c00462{bottom:598.500000px;}
.y6_c00462{bottom:621.300000px;}
.y5_c00462{bottom:647.400000px;}
.y4_c00462{bottom:673.950000px;}
.y3_c00462{bottom:697.050000px;}
.y2_c00462{bottom:720.000000px;}
.y1_c00462{bottom:744.450000px;}
.h5_c00462{height:13.200074px;}
.h6_c00462{height:43.804688px;}
.h1_c00462{height:70.224609px;}
.h4_c00462{height:79.497070px;}
.h2_c00462{height:87.361816px;}
.h3_c00462{height:91.160156px;}
.h0_c00462{height:789.750000px;}
.w2_c00462{width:104.875500px;}
.w1_c00462{width:536.250000px;}
.w0_c00462{width:536.475000px;}
.x0_c00462{left:0.000000px;}
.x6_c00462{left:28.350000px;}
.x2_c00462{left:30.000000px;}
.x3_c00462{left:31.050000px;}
.x5_c00462{left:32.100000px;}
.x4_c00462{left:56.400000px;}
.x1_c00462{left:145.200000px;}
.x8_c00462{left:220.051758px;}
.x7_c00462{left:272.250000px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls3_c00462{letter-spacing:0.000000pt;}
.ls2_c00462{letter-spacing:1.066667pt;}
.ls1_c00462{letter-spacing:2.666667pt;}
.ls0_c00462{letter-spacing:3.189333pt;}
.ws0_c00462{word-spacing:-15.424000pt;}
.ws1_c00462{word-spacing:0.000000pt;}
._19_c00462{margin-left:-24.640000pt;}
._1a_c00462{margin-left:-23.296000pt;}
._18_c00462{margin-left:-18.952000pt;}
._a_c00462{margin-left:-15.680000pt;}
._14_c00462{margin-left:-12.928000pt;}
._1b_c00462{margin-left:-11.584000pt;}
._13_c00462{margin-left:-10.653333pt;}
._16_c00462{margin-left:-9.674667pt;}
._1d_c00462{margin-left:-8.085333pt;}
._12_c00462{margin-left:-6.256000pt;}
._15_c00462{margin-left:-4.616000pt;}
._11_c00462{margin-left:-3.493333pt;}
._f_c00462{margin-left:-2.165333pt;}
._e_c00462{margin-left:-0.938667pt;}
._b_c00462{width:1.570667pt;}
._3_c00462{width:2.613333pt;}
._c_c00462{width:3.760000pt;}
._4_c00462{width:4.800000pt;}
._9_c00462{width:6.453333pt;}
._6_c00462{width:7.360000pt;}
._1c_c00462{width:8.565333pt;}
._5_c00462{width:9.706667pt;}
._1_c00462{width:11.146667pt;}
._10_c00462{width:12.957333pt;}
._0_c00462{width:14.666667pt;}
._d_c00462{width:15.872000pt;}
._2_c00462{width:17.386667pt;}
._17_c00462{width:19.576000pt;}
._7_c00462{width:22.080000pt;}
._1e_c00462{width:59.189333pt;}
._1f_c00462{width:280.368000pt;}
._8_c00462{width:330.986667pt;}
.fs5_c00462{font-size:42.666667pt;}
.fs0_c00462{font-size:53.333333pt;}
.fs3_c00462{font-size:56.000000pt;}
.fs1_c00462{font-size:61.333333pt;}
.fs2_c00462{font-size:64.000000pt;}
.fs4_c00462{font-size:72.000000pt;}
.y0_c00462{bottom:0.000000pt;}
.y1f_c00462{bottom:2.760000pt;}
.y1e_c00462{bottom:6.425212pt;}
.y1d_c00462{bottom:46.266667pt;}
.y1c_c00462{bottom:73.466667pt;}
.y1b_c00462{bottom:96.000000pt;}
.y1a_c00462{bottom:114.266667pt;}
.y19_c00462{bottom:141.066667pt;}
.y18_c00462{bottom:162.000000pt;}
.y17_c00462{bottom:184.800000pt;}
.y16_c00462{bottom:204.666667pt;}
.y15_c00462{bottom:228.400000pt;}
.y14_c00462{bottom:250.000000pt;}
.y13_c00462{bottom:271.200000pt;}
.y12_c00462{bottom:292.533333pt;}
.y11_c00462{bottom:312.400000pt;}
.y10_c00462{bottom:334.000000pt;}
.yf_c00462{bottom:355.600000pt;}
.ye_c00462{bottom:378.000000pt;}
.yd_c00462{bottom:399.333333pt;}
.yc_c00462{bottom:420.933333pt;}
.yb_c00462{bottom:443.200000pt;}
.ya_c00462{bottom:465.066667pt;}
.y9_c00462{bottom:487.466667pt;}
.y8_c00462{bottom:509.466667pt;}
.y7_c00462{bottom:532.000000pt;}
.y6_c00462{bottom:552.266667pt;}
.y5_c00462{bottom:575.466667pt;}
.y4_c00462{bottom:599.066667pt;}
.y3_c00462{bottom:619.600000pt;}
.y2_c00462{bottom:640.000000pt;}
.y1_c00462{bottom:661.733333pt;}
.h5_c00462{height:11.733399pt;}
.h6_c00462{height:38.937500pt;}
.h1_c00462{height:62.421875pt;}
.h4_c00462{height:70.664062pt;}
.h2_c00462{height:77.654948pt;}
.h3_c00462{height:81.031250pt;}
.h0_c00462{height:702.000000pt;}
.w2_c00462{width:93.222667pt;}
.w1_c00462{width:476.666667pt;}
.w0_c00462{width:476.866667pt;}
.x0_c00462{left:0.000000pt;}
.x6_c00462{left:25.200000pt;}
.x2_c00462{left:26.666667pt;}
.x3_c00462{left:27.600000pt;}
.x5_c00462{left:28.533333pt;}
.x4_c00462{left:50.133333pt;}
.x1_c00462{left:129.066667pt;}
.x8_c00462{left:195.601563pt;}
.x7_c00462{left:242.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_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_188261fc6d51bc11a1665ade.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.480469;font-style:normal;font-weight:normal;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_68bdda8ee0be2ae62f020f14.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:1.568848;font-style:normal;font-weight:normal;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_a1b5fe3ebe3a63e247049993.woff2')format("woff");}.ff3_c00463{font-family:ff3_c00463;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00463;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00463{font-family:ff4_c00463;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00463{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00463{vertical-align:0.000000px;}
.ls1_c00463{letter-spacing:-3.000000px;}
.ls2_c00463{letter-spacing:0.000000px;}
.ls0_c00463{letter-spacing:3.000000px;}
.sc__c00463{text-shadow:none;}
.sc0_c00463{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00463{-webkit-text-stroke:0px transparent;}
.sc0_c00463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00463{word-spacing:0.000000px;}
._e_c00463{margin-left:-56.772000px;}
._13_c00463{margin-left:-17.001000px;}
._11_c00463{margin-left:-11.808000px;}
._12_c00463{margin-left:-9.468000px;}
._d_c00463{margin-left:-6.696000px;}
._8_c00463{margin-left:-4.824000px;}
._b_c00463{margin-left:-3.384000px;}
._9_c00463{margin-left:-2.304000px;}
._a_c00463{margin-left:-1.080000px;}
._7_c00463{width:1.152000px;}
._6_c00463{width:2.232000px;}
._5_c00463{width:3.564000px;}
._1_c00463{width:4.779000px;}
._2_c00463{width:6.723000px;}
._3_c00463{width:8.181000px;}
._4_c00463{width:9.396000px;}
._f_c00463{width:10.926000px;}
._0_c00463{width:12.231000px;}
._10_c00463{width:13.491000px;}
._c_c00463{width:15.840000px;}
.fc2_c00463{color:transparent;}
.fc1_c00463{color:rgb(128,128,128);}
.fc0_c00463{color:rgb(0,0,0);}
.fs3_c00463{font-size:48.000000px;}
.fs2_c00463{font-size:57.000000px;}
.fs1_c00463{font-size:72.000000px;}
.fs0_c00463{font-size:81.000000px;}
.y0_c00463{bottom:0.000000px;}
.y1e_c00463{bottom:3.105000px;}
.y1d_c00463{bottom:7.228355px;}
.y1c_c00463{bottom:75.885000px;}
.y1b_c00463{bottom:101.535000px;}
.y1a_c00463{bottom:126.585000px;}
.y19_c00463{bottom:152.235000px;}
.y18_c00463{bottom:177.885000px;}
.y17_c00463{bottom:202.035000px;}
.y16_c00463{bottom:227.535000px;}
.y15_c00463{bottom:251.985000px;}
.y14_c00463{bottom:276.435000px;}
.y13_c00463{bottom:301.635000px;}
.y12_c00463{bottom:326.985000px;}
.y11_c00463{bottom:350.685000px;}
.y10_c00463{bottom:374.835000px;}
.yf_c00463{bottom:400.485000px;}
.ye_c00463{bottom:423.885000px;}
.yd_c00463{bottom:449.835000px;}
.yc_c00463{bottom:474.735000px;}
.yb_c00463{bottom:497.685000px;}
.ya_c00463{bottom:521.685000px;}
.y9_c00463{bottom:546.435000px;}
.y8_c00463{bottom:571.335000px;}
.y7_c00463{bottom:596.235000px;}
.y6_c00463{bottom:620.685000px;}
.y5_c00463{bottom:645.585000px;}
.y4_c00463{bottom:670.185000px;}
.y3_c00463{bottom:694.485000px;}
.y2_c00463{bottom:719.235000px;}
.y1_c00463{bottom:744.435000px;}
.h5_c00463{height:13.200074px;}
.h6_c00463{height:43.804688px;}
.h3_c00463{height:91.160156px;}
.h4_c00463{height:91.760156px;}
.h2_c00463{height:102.555176px;}
.h0_c00463{height:782.175000px;}
.h1_c00463{height:782.250000px;}
.w1_c00463{width:104.875500px;}
.w0_c00463{width:516.000000px;}
.x0_c00463{left:0.000000px;}
.x2_c00463{left:89.400000px;}
.x3_c00463{left:91.200000px;}
.x4_c00463{left:92.250000px;}
.x5_c00463{left:93.750000px;}
.x6_c00463{left:94.950000px;}
.x7_c00463{left:96.150000px;}
.x8_c00463{left:97.500000px;}
.x9_c00463{left:99.000000px;}
.xa_c00463{left:209.814240px;}
.x1_c00463{left:212.250000px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls1_c00463{letter-spacing:-2.666667pt;}
.ls2_c00463{letter-spacing:0.000000pt;}
.ls0_c00463{letter-spacing:2.666667pt;}
.ws0_c00463{word-spacing:0.000000pt;}
._e_c00463{margin-left:-50.464000pt;}
._13_c00463{margin-left:-15.112000pt;}
._11_c00463{margin-left:-10.496000pt;}
._12_c00463{margin-left:-8.416000pt;}
._d_c00463{margin-left:-5.952000pt;}
._8_c00463{margin-left:-4.288000pt;}
._b_c00463{margin-left:-3.008000pt;}
._9_c00463{margin-left:-2.048000pt;}
._a_c00463{margin-left:-0.960000pt;}
._7_c00463{width:1.024000pt;}
._6_c00463{width:1.984000pt;}
._5_c00463{width:3.168000pt;}
._1_c00463{width:4.248000pt;}
._2_c00463{width:5.976000pt;}
._3_c00463{width:7.272000pt;}
._4_c00463{width:8.352000pt;}
._f_c00463{width:9.712000pt;}
._0_c00463{width:10.872000pt;}
._10_c00463{width:11.992000pt;}
._c_c00463{width:14.080000pt;}
.fs3_c00463{font-size:42.666667pt;}
.fs2_c00463{font-size:50.666667pt;}
.fs1_c00463{font-size:64.000000pt;}
.fs0_c00463{font-size:72.000000pt;}
.y0_c00463{bottom:0.000000pt;}
.y1e_c00463{bottom:2.760000pt;}
.y1d_c00463{bottom:6.425204pt;}
.y1c_c00463{bottom:67.453333pt;}
.y1b_c00463{bottom:90.253333pt;}
.y1a_c00463{bottom:112.520000pt;}
.y19_c00463{bottom:135.320000pt;}
.y18_c00463{bottom:158.120000pt;}
.y17_c00463{bottom:179.586667pt;}
.y16_c00463{bottom:202.253333pt;}
.y15_c00463{bottom:223.986667pt;}
.y14_c00463{bottom:245.720000pt;}
.y13_c00463{bottom:268.120000pt;}
.y12_c00463{bottom:290.653333pt;}
.y11_c00463{bottom:311.720000pt;}
.y10_c00463{bottom:333.186667pt;}
.yf_c00463{bottom:355.986667pt;}
.ye_c00463{bottom:376.786667pt;}
.yd_c00463{bottom:399.853333pt;}
.yc_c00463{bottom:421.986667pt;}
.yb_c00463{bottom:442.386667pt;}
.ya_c00463{bottom:463.720000pt;}
.y9_c00463{bottom:485.720000pt;}
.y8_c00463{bottom:507.853333pt;}
.y7_c00463{bottom:529.986667pt;}
.y6_c00463{bottom:551.720000pt;}
.y5_c00463{bottom:573.853333pt;}
.y4_c00463{bottom:595.720000pt;}
.y3_c00463{bottom:617.320000pt;}
.y2_c00463{bottom:639.320000pt;}
.y1_c00463{bottom:661.720000pt;}
.h5_c00463{height:11.733399pt;}
.h6_c00463{height:38.937500pt;}
.h3_c00463{height:81.031250pt;}
.h4_c00463{height:81.564583pt;}
.h2_c00463{height:91.160156pt;}
.h0_c00463{height:695.266667pt;}
.h1_c00463{height:695.333333pt;}
.w1_c00463{width:93.222667pt;}
.w0_c00463{width:458.666667pt;}
.x0_c00463{left:0.000000pt;}
.x2_c00463{left:79.466667pt;}
.x3_c00463{left:81.066667pt;}
.x4_c00463{left:82.000000pt;}
.x5_c00463{left:83.333333pt;}
.x6_c00463{left:84.400000pt;}
.x7_c00463{left:85.466667pt;}
.x8_c00463{left:86.666667pt;}
.x9_c00463{left:88.000000pt;}
.xa_c00463{left:186.501546pt;}
.x1_c00463{left:188.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_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_fe1331d5dc619e1440630220.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.480469;font-style:normal;font-weight:normal;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_304babf829fe680b1282227c.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:1.568848;font-style:normal;font-weight:normal;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_3c94c4e37b37c52d309d0fef.woff2')format("woff");}.ff3_c00464{font-family:ff3_c00464;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00464;src:url('chunks/assets/font_a37a08583214ea4c075222de.woff2')format("woff");}.ff4_c00464{font-family:ff4_c00464;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00464;src:url('chunks/assets/font_34f8508635440e675808bdc5.woff2')format("woff");}.ff5_c00464{font-family:ff5_c00464;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00464;src:url('chunks/assets/font_837433a7e5f4634675eb3d99.woff2')format("woff");}.ff6_c00464{font-family:ff6_c00464;line-height:1.575000;font-style:normal;font-weight: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_c00464;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00464{font-family:ff7_c00464;line-height:1.219238;font-style: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:-3.000000px;}
.ls3_c00464{letter-spacing:0.000000px;}
.ls2_c00464{letter-spacing:3.000000px;}
.ls0_c00464{letter-spacing:11.388000px;}
.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:-17.352000px;}
.ws1_c00464{word-spacing:-15.798000px;}
.ws2_c00464{word-spacing:0.000000px;}
._12_c00464{margin-left:-14.292000px;}
._a_c00464{margin-left:-9.720000px;}
._4_c00464{margin-left:-7.569000px;}
._e_c00464{margin-left:-6.444000px;}
._b_c00464{margin-left:-5.286000px;}
._9_c00464{margin-left:-3.960000px;}
._8_c00464{margin-left:-2.664000px;}
._6_c00464{margin-left:-1.296000px;}
._2_c00464{width:1.044000px;}
._3_c00464{width:2.436000px;}
._1_c00464{width:3.654000px;}
._7_c00464{width:4.662000px;}
._0_c00464{width:6.177000px;}
._d_c00464{width:7.398000px;}
._c_c00464{width:8.616000px;}
._f_c00464{width:10.014000px;}
._10_c00464{width:11.778000px;}
._11_c00464{width:12.804000px;}
._15_c00464{width:23.520000px;}
._14_c00464{width:25.512000px;}
._16_c00464{width:27.456000px;}
._13_c00464{width:29.304000px;}
._17_c00464{width:307.530000px;}
._5_c00464{width:353.046000px;}
.fc2_c00464{color:transparent;}
.fc1_c00464{color:rgb(128,128,128);}
.fc0_c00464{color:rgb(0,0,0);}
.fs5_c00464{font-size:24.000000px;}
.fs8_c00464{font-size:48.000000px;}
.fs2_c00464{font-size:63.000000px;}
.fs7_c00464{font-size:66.000000px;}
.fs6_c00464{font-size:69.000000px;}
.fs1_c00464{font-size:72.000000px;}
.fs4_c00464{font-size:78.000000px;}
.fs0_c00464{font-size:87.000000px;}
.fs3_c00464{font-size:96.000000px;}
.y0_c00464{bottom:0.000000px;}
.y1f_c00464{bottom:3.105000px;}
.y1e_c00464{bottom:7.228369px;}
.y1d_c00464{bottom:43.770000px;}
.y1c_c00464{bottom:68.220000px;}
.y1b_c00464{bottom:100.170000px;}
.y1a_c00464{bottom:120.870000px;}
.y19_c00464{bottom:149.820000px;}
.y18_c00464{bottom:174.120000px;}
.y17_c00464{bottom:200.070000px;}
.y16_c00464{bottom:223.770000px;}
.y15_c00464{bottom:249.720000px;}
.y14_c00464{bottom:272.970000px;}
.y13_c00464{bottom:297.720000px;}
.y12_c00464{bottom:321.270000px;}
.y11_c00464{bottom:345.270000px;}
.y10_c00464{bottom:367.470000px;}
.yf_c00464{bottom:392.670000px;}
.ye_c00464{bottom:417.720000px;}
.yd_c00464{bottom:442.770000px;}
.yc_c00464{bottom:467.070000px;}
.yb_c00464{bottom:491.670000px;}
.ya_c00464{bottom:515.970000px;}
.y9_c00464{bottom:540.270000px;}
.y8_c00464{bottom:565.020000px;}
.y7_c00464{bottom:589.320000px;}
.y6_c00464{bottom:614.520000px;}
.y5_c00464{bottom:638.520000px;}
.y4_c00464{bottom:662.820000px;}
.y3_c00464{bottom:688.470000px;}
.y2_c00464{bottom:713.070000px;}
.y1_c00464{bottom:738.720000px;}
.h7_c00464{height:13.200073px;}
.h8_c00464{height:43.804688px;}
.h6_c00464{height:70.422000px;}
.h5_c00464{height:87.361816px;}
.h3_c00464{height:91.160156px;}
.h2_c00464{height:101.825684px;}
.h4_c00464{height:121.546875px;}
.h1_c00464{height:785.250000px;}
.h0_c00464{height:785.400000px;}
.w2_c00464{width:104.875500px;}
.w0_c00464{width:521.625000px;}
.w1_c00464{width:522.000000px;}
.x0_c00464{left:0.000000px;}
.x5_c00464{left:12.450000px;}
.x7_c00464{left:16.800000px;}
.x6_c00464{left:21.600000px;}
.x4_c00464{left:25.050000px;}
.x2_c00464{left:26.700000px;}
.x3_c00464{left:28.050000px;}
.x1_c00464{left:140.100000px;}
.x9_c00464{left:212.626740px;}
.x8_c00464{left:263.550000px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls1_c00464{letter-spacing:-2.666667pt;}
.ls3_c00464{letter-spacing:0.000000pt;}
.ls2_c00464{letter-spacing:2.666667pt;}
.ls0_c00464{letter-spacing:10.122667pt;}
.ws0_c00464{word-spacing:-15.424000pt;}
.ws1_c00464{word-spacing:-14.042667pt;}
.ws2_c00464{word-spacing:0.000000pt;}
._12_c00464{margin-left:-12.704000pt;}
._a_c00464{margin-left:-8.640000pt;}
._4_c00464{margin-left:-6.728000pt;}
._e_c00464{margin-left:-5.728000pt;}
._b_c00464{margin-left:-4.698667pt;}
._9_c00464{margin-left:-3.520000pt;}
._8_c00464{margin-left:-2.368000pt;}
._6_c00464{margin-left:-1.152000pt;}
._2_c00464{width:0.928000pt;}
._3_c00464{width:2.165333pt;}
._1_c00464{width:3.248000pt;}
._7_c00464{width:4.144000pt;}
._0_c00464{width:5.490667pt;}
._d_c00464{width:6.576000pt;}
._c_c00464{width:7.658667pt;}
._f_c00464{width:8.901333pt;}
._10_c00464{width:10.469333pt;}
._11_c00464{width:11.381333pt;}
._15_c00464{width:20.906667pt;}
._14_c00464{width:22.677333pt;}
._16_c00464{width:24.405333pt;}
._13_c00464{width:26.048000pt;}
._17_c00464{width:273.360000pt;}
._5_c00464{width:313.818667pt;}
.fs5_c00464{font-size:21.333333pt;}
.fs8_c00464{font-size:42.666667pt;}
.fs2_c00464{font-size:56.000000pt;}
.fs7_c00464{font-size:58.666667pt;}
.fs6_c00464{font-size:61.333333pt;}
.fs1_c00464{font-size:64.000000pt;}
.fs4_c00464{font-size:69.333333pt;}
.fs0_c00464{font-size:77.333333pt;}
.fs3_c00464{font-size:85.333333pt;}
.y0_c00464{bottom:0.000000pt;}
.y1f_c00464{bottom:2.760000pt;}
.y1e_c00464{bottom:6.425217pt;}
.y1d_c00464{bottom:38.906667pt;}
.y1c_c00464{bottom:60.640000pt;}
.y1b_c00464{bottom:89.040000pt;}
.y1a_c00464{bottom:107.440000pt;}
.y19_c00464{bottom:133.173333pt;}
.y18_c00464{bottom:154.773333pt;}
.y17_c00464{bottom:177.840000pt;}
.y16_c00464{bottom:198.906667pt;}
.y15_c00464{bottom:221.973333pt;}
.y14_c00464{bottom:242.640000pt;}
.y13_c00464{bottom:264.640000pt;}
.y12_c00464{bottom:285.573333pt;}
.y11_c00464{bottom:306.906667pt;}
.y10_c00464{bottom:326.640000pt;}
.yf_c00464{bottom:349.040000pt;}
.ye_c00464{bottom:371.306667pt;}
.yd_c00464{bottom:393.573333pt;}
.yc_c00464{bottom:415.173333pt;}
.yb_c00464{bottom:437.040000pt;}
.ya_c00464{bottom:458.640000pt;}
.y9_c00464{bottom:480.240000pt;}
.y8_c00464{bottom:502.240000pt;}
.y7_c00464{bottom:523.840000pt;}
.y6_c00464{bottom:546.240000pt;}
.y5_c00464{bottom:567.573333pt;}
.y4_c00464{bottom:589.173333pt;}
.y3_c00464{bottom:611.973333pt;}
.y2_c00464{bottom:633.840000pt;}
.y1_c00464{bottom:656.640000pt;}
.h7_c00464{height:11.733399pt;}
.h8_c00464{height:38.937500pt;}
.h6_c00464{height:62.597333pt;}
.h5_c00464{height:77.654948pt;}
.h3_c00464{height:81.031250pt;}
.h2_c00464{height:90.511719pt;}
.h4_c00464{height:108.041667pt;}
.h1_c00464{height:698.000000pt;}
.h0_c00464{height:698.133333pt;}
.w2_c00464{width:93.222667pt;}
.w0_c00464{width:463.666667pt;}
.w1_c00464{width:464.000000pt;}
.x0_c00464{left:0.000000pt;}
.x5_c00464{left:11.066667pt;}
.x7_c00464{left:14.933333pt;}
.x6_c00464{left:19.200000pt;}
.x4_c00464{left:22.266667pt;}
.x2_c00464{left:23.733333pt;}
.x3_c00464{left:24.933333pt;}
.x1_c00464{left:124.533333pt;}
.x9_c00464{left:189.001546pt;}
.x8_c00464{left:234.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c676f24b1e3d27f5726ef48a.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.480469;font-style:normal;font-weight:normal;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_6a8454a7170197a362f0da0f.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:1.568848;font-style:normal;font-weight:normal;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_36bfbf403fd78189c9deeb52.woff2')format("woff");}.ff3_c00465{font-family:ff3_c00465;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00465;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00465{font-family:ff4_c00465;line-height:1.219238;font-style: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;}
.ls0_c00465{letter-spacing:-3.000000px;}
.ls2_c00465{letter-spacing:0.000000px;}
.ls1_c00465{letter-spacing:3.000000px;}
.ls3_c00465{letter-spacing:9.000000px;}
.sc__c00465{text-shadow:none;}
.sc0_c00465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00465{-webkit-text-stroke:0px transparent;}
.sc0_c00465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00465{word-spacing:-17.352000px;}
.ws1_c00465{word-spacing:0.000000px;}
._f_c00465{margin-left:-14.490000px;}
._10_c00465{margin-left:-12.186000px;}
._a_c00465{margin-left:-9.171000px;}
._b_c00465{margin-left:-6.579000px;}
._5_c00465{margin-left:-5.211000px;}
._4_c00465{margin-left:-3.483000px;}
._3_c00465{margin-left:-1.962000px;}
._0_c00465{width:1.782000px;}
._2_c00465{width:3.321000px;}
._1_c00465{width:4.698000px;}
._6_c00465{width:5.838000px;}
._c_c00465{width:6.903000px;}
._d_c00465{width:8.466000px;}
._7_c00465{width:10.335000px;}
._11_c00465{width:11.340000px;}
._9_c00465{width:12.393000px;}
._8_c00465{width:13.509000px;}
._e_c00465{width:14.556000px;}
._12_c00465{width:33.945000px;}
._13_c00465{width:76.125000px;}
._14_c00465{width:849.834000px;}
.fc2_c00465{color:transparent;}
.fc1_c00465{color:rgb(128,128,128);}
.fc0_c00465{color:rgb(0,0,0);}
.fs4_c00465{font-size:48.000000px;}
.fs2_c00465{font-size:51.000000px;}
.fs1_c00465{font-size:72.000000px;}
.fs3_c00465{font-size:75.000000px;}
.fs0_c00465{font-size:81.000000px;}
.y0_c00465{bottom:0.000000px;}
.y1f_c00465{bottom:3.105000px;}
.y1e_c00465{bottom:7.228355px;}
.y1d_c00465{bottom:53.235000px;}
.y1c_c00465{bottom:67.785000px;}
.y1b_c00465{bottom:92.385000px;}
.y1a_c00465{bottom:117.435000px;}
.y19_c00465{bottom:142.335000px;}
.y18_c00465{bottom:167.685000px;}
.y17_c00465{bottom:192.585000px;}
.y16_c00465{bottom:218.985000px;}
.y15_c00465{bottom:242.985000px;}
.y14_c00465{bottom:268.935000px;}
.y13_c00465{bottom:293.835000px;}
.y12_c00465{bottom:318.885000px;}
.y11_c00465{bottom:342.135000px;}
.y10_c00465{bottom:366.885000px;}
.yf_c00465{bottom:393.135000px;}
.ye_c00465{bottom:415.785000px;}
.yd_c00465{bottom:440.085000px;}
.yc_c00465{bottom:465.735000px;}
.yb_c00465{bottom:490.035000px;}
.ya_c00465{bottom:514.635000px;}
.y9_c00465{bottom:539.535000px;}
.y8_c00465{bottom:564.285000px;}
.y7_c00465{bottom:589.185000px;}
.y6_c00465{bottom:613.935000px;}
.y5_c00465{bottom:639.135000px;}
.y4_c00465{bottom:663.135000px;}
.y3_c00465{bottom:688.185000px;}
.y2_c00465{bottom:712.785000px;}
.y1_c00465{bottom:738.435000px;}
.h5_c00465{height:13.200074px;}
.h6_c00465{height:43.804688px;}
.h4_c00465{height:73.608398px;}
.h3_c00465{height:91.160156px;}
.h2_c00465{height:102.555176px;}
.h1_c00465{height:792.750000px;}
.h0_c00465{height:792.975000px;}
.w2_c00465{width:104.875500px;}
.w1_c00465{width:514.500000px;}
.w0_c00465{width:514.650000px;}
.x0_c00465{left:0.000000px;}
.x2_c00465{left:96.300000px;}
.x3_c00465{left:98.250000px;}
.x4_c00465{left:99.450000px;}
.x5_c00465{left:101.850000px;}
.x6_c00465{left:102.900000px;}
.x7_c00465{left:103.950000px;}
.x9_c00465{left:105.000000px;}
.x8_c00465{left:186.000000px;}
.xb_c00465{left:209.139267px;}
.x1_c00465{left:221.850000px;}
.xa_c00465{left:251.100000px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls0_c00465{letter-spacing:-2.666667pt;}
.ls2_c00465{letter-spacing:0.000000pt;}
.ls1_c00465{letter-spacing:2.666667pt;}
.ls3_c00465{letter-spacing:8.000000pt;}
.ws0_c00465{word-spacing:-15.424000pt;}
.ws1_c00465{word-spacing:0.000000pt;}
._f_c00465{margin-left:-12.880000pt;}
._10_c00465{margin-left:-10.832000pt;}
._a_c00465{margin-left:-8.152000pt;}
._b_c00465{margin-left:-5.848000pt;}
._5_c00465{margin-left:-4.632000pt;}
._4_c00465{margin-left:-3.096000pt;}
._3_c00465{margin-left:-1.744000pt;}
._0_c00465{width:1.584000pt;}
._2_c00465{width:2.952000pt;}
._1_c00465{width:4.176000pt;}
._6_c00465{width:5.189333pt;}
._c_c00465{width:6.136000pt;}
._d_c00465{width:7.525333pt;}
._7_c00465{width:9.186667pt;}
._11_c00465{width:10.080000pt;}
._9_c00465{width:11.016000pt;}
._8_c00465{width:12.008000pt;}
._e_c00465{width:12.938667pt;}
._12_c00465{width:30.173333pt;}
._13_c00465{width:67.666667pt;}
._14_c00465{width:755.408000pt;}
.fs4_c00465{font-size:42.666667pt;}
.fs2_c00465{font-size:45.333333pt;}
.fs1_c00465{font-size:64.000000pt;}
.fs3_c00465{font-size:66.666667pt;}
.fs0_c00465{font-size:72.000000pt;}
.y0_c00465{bottom:0.000000pt;}
.y1f_c00465{bottom:2.760000pt;}
.y1e_c00465{bottom:6.425204pt;}
.y1d_c00465{bottom:47.320000pt;}
.y1c_c00465{bottom:60.253333pt;}
.y1b_c00465{bottom:82.120000pt;}
.y1a_c00465{bottom:104.386667pt;}
.y19_c00465{bottom:126.520000pt;}
.y18_c00465{bottom:149.053333pt;}
.y17_c00465{bottom:171.186667pt;}
.y16_c00465{bottom:194.653333pt;}
.y15_c00465{bottom:215.986667pt;}
.y14_c00465{bottom:239.053333pt;}
.y13_c00465{bottom:261.186667pt;}
.y12_c00465{bottom:283.453333pt;}
.y11_c00465{bottom:304.120000pt;}
.y10_c00465{bottom:326.120000pt;}
.yf_c00465{bottom:349.453333pt;}
.ye_c00465{bottom:369.586667pt;}
.yd_c00465{bottom:391.186667pt;}
.yc_c00465{bottom:413.986667pt;}
.yb_c00465{bottom:435.586667pt;}
.ya_c00465{bottom:457.453333pt;}
.y9_c00465{bottom:479.586667pt;}
.y8_c00465{bottom:501.586667pt;}
.y7_c00465{bottom:523.720000pt;}
.y6_c00465{bottom:545.720000pt;}
.y5_c00465{bottom:568.120000pt;}
.y4_c00465{bottom:589.453333pt;}
.y3_c00465{bottom:611.720000pt;}
.y2_c00465{bottom:633.586667pt;}
.y1_c00465{bottom:656.386667pt;}
.h5_c00465{height:11.733399pt;}
.h6_c00465{height:38.937500pt;}
.h4_c00465{height:65.429688pt;}
.h3_c00465{height:81.031250pt;}
.h2_c00465{height:91.160156pt;}
.h1_c00465{height:704.666667pt;}
.h0_c00465{height:704.866667pt;}
.w2_c00465{width:93.222667pt;}
.w1_c00465{width:457.333333pt;}
.w0_c00465{width:457.466667pt;}
.x0_c00465{left:0.000000pt;}
.x2_c00465{left:85.600000pt;}
.x3_c00465{left:87.333333pt;}
.x4_c00465{left:88.400000pt;}
.x5_c00465{left:90.533333pt;}
.x6_c00465{left:91.466667pt;}
.x7_c00465{left:92.400000pt;}
.x9_c00465{left:93.333333pt;}
.x8_c00465{left:165.333333pt;}
.xb_c00465{left:185.901571pt;}
.x1_c00465{left:197.200000pt;}
.xa_c00465{left:223.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0fa6a86b56748de71a26763f.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.480469;font-style:normal;font-weight:normal;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_39fc1ea990cbb8cfe44f9317.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.568848;font-style:normal;font-weight:normal;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_8fb9d1901afe65cb0c9ebe32.woff2')format("woff");}.ff3_c00466{font-family:ff3_c00466;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00466;src:url('chunks/assets/font_75f8d9b892499c24ea79fb0b.woff2')format("woff");}.ff4_c00466{font-family:ff4_c00466;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00466;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00466{font-family:ff5_c00466;line-height:1.219238;font-style: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;}
.ls4_c00466{letter-spacing:3.000000px;}
.ls1_c00466{letter-spacing:9.768000px;}
.ls3_c00466{letter-spacing:12.000000px;}
.ls0_c00466{letter-spacing:33.588000px;}
.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:-17.352000px;}
.ws1_c00466{word-spacing:0.000000px;}
._14_c00466{margin-left:-11.376000px;}
._15_c00466{margin-left:-10.116000px;}
._13_c00466{margin-left:-9.096000px;}
._12_c00466{margin-left:-7.716000px;}
._8_c00466{margin-left:-6.612000px;}
._11_c00466{margin-left:-5.364000px;}
._e_c00466{margin-left:-4.164000px;}
._9_c00466{margin-left:-2.664000px;}
._a_c00466{margin-left:-1.500000px;}
._4_c00466{width:1.200000px;}
._f_c00466{width:2.400000px;}
._d_c00466{width:3.960000px;}
._2_c00466{width:5.040000px;}
._3_c00466{width:6.900000px;}
._6_c00466{width:8.280000px;}
._c_c00466{width:9.444000px;}
._10_c00466{width:11.340000px;}
._5_c00466{width:13.320000px;}
._1_c00466{width:15.480000px;}
._b_c00466{width:18.336000px;}
._0_c00466{width:24.960000px;}
._16_c00466{width:142.596000px;}
._7_c00466{width:320.811000px;}
.fc2_c00466{color:transparent;}
.fc1_c00466{color:rgb(128,128,128);}
.fc0_c00466{color:rgb(0,0,0);}
.fs6_c00466{font-size:48.000000px;}
.fs4_c00466{font-size:51.000000px;}
.fs0_c00466{font-size:60.000000px;}
.fs3_c00466{font-size:63.000000px;}
.fs5_c00466{font-size:66.000000px;}
.fs2_c00466{font-size:72.000000px;}
.fs1_c00466{font-size:87.000000px;}
.y0_c00466{bottom:0.000000px;}
.y1f_c00466{bottom:3.105000px;}
.y1e_c00466{bottom:7.228371px;}
.y1d_c00466{bottom:39.615000px;}
.y1c_c00466{bottom:68.865000px;}
.y1b_c00466{bottom:94.815000px;}
.y1a_c00466{bottom:117.465000px;}
.y19_c00466{bottom:144.915000px;}
.y18_c00466{bottom:169.065000px;}
.y17_c00466{bottom:194.415000px;}
.y16_c00466{bottom:218.415000px;}
.y15_c00466{bottom:243.315000px;}
.y14_c00466{bottom:268.365000px;}
.y13_c00466{bottom:293.265000px;}
.y12_c00466{bottom:316.665000px;}
.y11_c00466{bottom:339.915000px;}
.y10_c00466{bottom:362.865000px;}
.yf_c00466{bottom:388.215000px;}
.ye_c00466{bottom:412.515000px;}
.yd_c00466{bottom:437.115000px;}
.yc_c00466{bottom:462.165000px;}
.yb_c00466{bottom:486.015000px;}
.ya_c00466{bottom:510.765000px;}
.y9_c00466{bottom:535.965000px;}
.y8_c00466{bottom:560.265000px;}
.y7_c00466{bottom:584.865000px;}
.y6_c00466{bottom:609.315000px;}
.y5_c00466{bottom:633.915000px;}
.y4_c00466{bottom:658.515000px;}
.y3_c00466{bottom:683.115000px;}
.y2_c00466{bottom:707.865000px;}
.y1_c00466{bottom:733.515000px;}
.h6_c00466{height:13.200074px;}
.h7_c00466{height:43.804688px;}
.h5_c00466{height:58.886719px;}
.h4_c00466{height:83.563477px;}
.h3_c00466{height:91.160156px;}
.h2_c00466{height:110.151855px;}
.h0_c00466{height:779.775000px;}
.h1_c00466{height:780.000000px;}
.w1_c00466{width:104.875500px;}
.w0_c00466{width:533.250000px;}
.x0_c00466{left:0.000000px;}
.x8_c00466{left:13.950000px;}
.x2_c00466{left:39.150000px;}
.x3_c00466{left:41.550000px;}
.x4_c00466{left:43.800000px;}
.x5_c00466{left:45.600000px;}
.x6_c00466{left:46.950000px;}
.x7_c00466{left:48.600000px;}
.x9_c00466{left:49.650000px;}
.xa_c00466{left:51.000000px;}
.x1_c00466{left:162.450000px;}
.xc_c00466{left:218.439240px;}
.xb_c00466{left:294.600000px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls2_c00466{letter-spacing:0.000000pt;}
.ls4_c00466{letter-spacing:2.666667pt;}
.ls1_c00466{letter-spacing:8.682667pt;}
.ls3_c00466{letter-spacing:10.666667pt;}
.ls0_c00466{letter-spacing:29.856000pt;}
.ws0_c00466{word-spacing:-15.424000pt;}
.ws1_c00466{word-spacing:0.000000pt;}
._14_c00466{margin-left:-10.112000pt;}
._15_c00466{margin-left:-8.992000pt;}
._13_c00466{margin-left:-8.085333pt;}
._12_c00466{margin-left:-6.858667pt;}
._8_c00466{margin-left:-5.877333pt;}
._11_c00466{margin-left:-4.768000pt;}
._e_c00466{margin-left:-3.701333pt;}
._9_c00466{margin-left:-2.368000pt;}
._a_c00466{margin-left:-1.333333pt;}
._4_c00466{width:1.066667pt;}
._f_c00466{width:2.133333pt;}
._d_c00466{width:3.520000pt;}
._2_c00466{width:4.480000pt;}
._3_c00466{width:6.133333pt;}
._6_c00466{width:7.360000pt;}
._c_c00466{width:8.394667pt;}
._10_c00466{width:10.080000pt;}
._5_c00466{width:11.840000pt;}
._1_c00466{width:13.760000pt;}
._b_c00466{width:16.298667pt;}
._0_c00466{width:22.186667pt;}
._16_c00466{width:126.752000pt;}
._7_c00466{width:285.165333pt;}
.fs6_c00466{font-size:42.666667pt;}
.fs4_c00466{font-size:45.333333pt;}
.fs0_c00466{font-size:53.333333pt;}
.fs3_c00466{font-size:56.000000pt;}
.fs5_c00466{font-size:58.666667pt;}
.fs2_c00466{font-size:64.000000pt;}
.fs1_c00466{font-size:77.333333pt;}
.y0_c00466{bottom:0.000000pt;}
.y1f_c00466{bottom:2.760000pt;}
.y1e_c00466{bottom:6.425219pt;}
.y1d_c00466{bottom:35.213333pt;}
.y1c_c00466{bottom:61.213333pt;}
.y1b_c00466{bottom:84.280000pt;}
.y1a_c00466{bottom:104.413333pt;}
.y19_c00466{bottom:128.813333pt;}
.y18_c00466{bottom:150.280000pt;}
.y17_c00466{bottom:172.813333pt;}
.y16_c00466{bottom:194.146667pt;}
.y15_c00466{bottom:216.280000pt;}
.y14_c00466{bottom:238.546667pt;}
.y13_c00466{bottom:260.680000pt;}
.y12_c00466{bottom:281.480000pt;}
.y11_c00466{bottom:302.146667pt;}
.y10_c00466{bottom:322.546667pt;}
.yf_c00466{bottom:345.080000pt;}
.ye_c00466{bottom:366.680000pt;}
.yd_c00466{bottom:388.546667pt;}
.yc_c00466{bottom:410.813333pt;}
.yb_c00466{bottom:432.013333pt;}
.ya_c00466{bottom:454.013333pt;}
.y9_c00466{bottom:476.413333pt;}
.y8_c00466{bottom:498.013333pt;}
.y7_c00466{bottom:519.880000pt;}
.y6_c00466{bottom:541.613333pt;}
.y5_c00466{bottom:563.480000pt;}
.y4_c00466{bottom:585.346667pt;}
.y3_c00466{bottom:607.213333pt;}
.y2_c00466{bottom:629.213333pt;}
.y1_c00466{bottom:652.013333pt;}
.h6_c00466{height:11.733399pt;}
.h7_c00466{height:38.937500pt;}
.h5_c00466{height:52.343750pt;}
.h4_c00466{height:74.278646pt;}
.h3_c00466{height:81.031250pt;}
.h2_c00466{height:97.912760pt;}
.h0_c00466{height:693.133333pt;}
.h1_c00466{height:693.333333pt;}
.w1_c00466{width:93.222667pt;}
.w0_c00466{width:474.000000pt;}
.x0_c00466{left:0.000000pt;}
.x8_c00466{left:12.400000pt;}
.x2_c00466{left:34.800000pt;}
.x3_c00466{left:36.933333pt;}
.x4_c00466{left:38.933333pt;}
.x5_c00466{left:40.533333pt;}
.x6_c00466{left:41.733333pt;}
.x7_c00466{left:43.200000pt;}
.x9_c00466{left:44.133333pt;}
.xa_c00466{left:45.333333pt;}
.x1_c00466{left:144.400000pt;}
.xc_c00466{left:194.168213pt;}
.xb_c00466{left:261.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4ff3de83e09a8acf21c5d2a0.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.480469;font-style:normal;font-weight:normal;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_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00467;src:url('chunks/assets/font_8aa9de8bc5a6b5cd08d293f6.woff2')format("woff");}.ff3_c00467{font-family:ff3_c00467;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00467{font-family:ff4_c00467;line-height:1.219238;font-style: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;}
.ls2_c00467{letter-spacing:-3.000000px;}
.ls3_c00467{letter-spacing:0.000000px;}
.ls1_c00467{letter-spacing:3.000000px;}
.ls0_c00467{letter-spacing:17.400000px;}
.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:-17.967000px;}
.ws1_c00467{word-spacing:0.000000px;}
._12_c00467{margin-left:-12.162000px;}
._4_c00467{margin-left:-11.136000px;}
._10_c00467{margin-left:-8.850000px;}
._5_c00467{margin-left:-7.755000px;}
._8_c00467{margin-left:-5.916000px;}
._7_c00467{margin-left:-4.332000px;}
._2_c00467{margin-left:-3.219000px;}
._3_c00467{margin-left:-2.190000px;}
._f_c00467{margin-left:-1.122000px;}
._0_c00467{width:1.740000px;}
._6_c00467{width:2.790000px;}
._9_c00467{width:4.743000px;}
._a_c00467{width:5.994000px;}
._c_c00467{width:7.626000px;}
._11_c00467{width:8.793000px;}
._b_c00467{width:10.563000px;}
._1_c00467{width:12.702000px;}
._13_c00467{width:13.839000px;}
._14_c00467{width:16.128000px;}
._e_c00467{width:18.864000px;}
._d_c00467{width:24.840000px;}
._15_c00467{width:58.245000px;}
.fc2_c00467{color:transparent;}
.fc1_c00467{color:rgb(128,128,128);}
.fc0_c00467{color:rgb(0,0,0);}
.fs5_c00467{font-size:48.000000px;}
.fs3_c00467{font-size:51.000000px;}
.fs1_c00467{font-size:60.000000px;}
.fs4_c00467{font-size:69.000000px;}
.fs2_c00467{font-size:72.000000px;}
.fs0_c00467{font-size:87.000000px;}
.y0_c00467{bottom:0.000000px;}
.y20_c00467{bottom:3.105000px;}
.y1f_c00467{bottom:7.228369px;}
.y1e_c00467{bottom:42.570000px;}
.y1d_c00467{bottom:62.670000px;}
.y1c_c00467{bottom:88.020000px;}
.y1b_c00467{bottom:113.670000px;}
.y1a_c00467{bottom:138.270000px;}
.y19_c00467{bottom:163.620000px;}
.y18_c00467{bottom:188.970000px;}
.y17_c00467{bottom:213.870000px;}
.y16_c00467{bottom:239.520000px;}
.y15_c00467{bottom:264.570000px;}
.y14_c00467{bottom:288.570000px;}
.y13_c00467{bottom:313.470000px;}
.y12_c00467{bottom:340.170000px;}
.y11_c00467{bottom:362.370000px;}
.y10_c00467{bottom:387.720000px;}
.yf_c00467{bottom:401.220000px;}
.ye_c00467{bottom:411.420000px;}
.yd_c00467{bottom:436.620000px;}
.yc_c00467{bottom:460.920000px;}
.yb_c00467{bottom:485.220000px;}
.ya_c00467{bottom:509.970000px;}
.y9_c00467{bottom:534.570000px;}
.y8_c00467{bottom:559.470000px;}
.y7_c00467{bottom:583.920000px;}
.y6_c00467{bottom:609.120000px;}
.y5_c00467{bottom:633.720000px;}
.y4_c00467{bottom:658.170000px;}
.y3_c00467{bottom:683.070000px;}
.y2_c00467{bottom:707.670000px;}
.y1_c00467{bottom:732.420000px;}
.h6_c00467{height:13.200073px;}
.h7_c00467{height:43.804688px;}
.h4_c00467{height:64.571777px;}
.h5_c00467{height:87.361816px;}
.h3_c00467{height:91.160156px;}
.h2_c00467{height:110.151855px;}
.h0_c00467{height:781.350000px;}
.h1_c00467{height:781.500000px;}
.w1_c00467{width:104.875500px;}
.w0_c00467{width:513.000000px;}
.x0_c00467{left:0.000000px;}
.x6_c00467{left:87.000000px;}
.x5_c00467{left:88.350000px;}
.x4_c00467{left:90.150000px;}
.x3_c00467{left:92.400000px;}
.x2_c00467{left:93.600000px;}
.x9_c00467{left:208.314240px;}
.x1_c00467{left:226.800000px;}
.x8_c00467{left:426.300000px;}
.x7_c00467{left:440.400000px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls2_c00467{letter-spacing:-2.666667pt;}
.ls3_c00467{letter-spacing:0.000000pt;}
.ls1_c00467{letter-spacing:2.666667pt;}
.ls0_c00467{letter-spacing:15.466667pt;}
.ws0_c00467{word-spacing:-15.970667pt;}
.ws1_c00467{word-spacing:0.000000pt;}
._12_c00467{margin-left:-10.810667pt;}
._4_c00467{margin-left:-9.898667pt;}
._10_c00467{margin-left:-7.866667pt;}
._5_c00467{margin-left:-6.893333pt;}
._8_c00467{margin-left:-5.258667pt;}
._7_c00467{margin-left:-3.850667pt;}
._2_c00467{margin-left:-2.861333pt;}
._3_c00467{margin-left:-1.946667pt;}
._f_c00467{margin-left:-0.997333pt;}
._0_c00467{width:1.546667pt;}
._6_c00467{width:2.480000pt;}
._9_c00467{width:4.216000pt;}
._a_c00467{width:5.328000pt;}
._c_c00467{width:6.778667pt;}
._11_c00467{width:7.816000pt;}
._b_c00467{width:9.389333pt;}
._1_c00467{width:11.290667pt;}
._13_c00467{width:12.301333pt;}
._14_c00467{width:14.336000pt;}
._e_c00467{width:16.768000pt;}
._d_c00467{width:22.080000pt;}
._15_c00467{width:51.773333pt;}
.fs5_c00467{font-size:42.666667pt;}
.fs3_c00467{font-size:45.333333pt;}
.fs1_c00467{font-size:53.333333pt;}
.fs4_c00467{font-size:61.333333pt;}
.fs2_c00467{font-size:64.000000pt;}
.fs0_c00467{font-size:77.333333pt;}
.y0_c00467{bottom:0.000000pt;}
.y20_c00467{bottom:2.760000pt;}
.y1f_c00467{bottom:6.425217pt;}
.y1e_c00467{bottom:37.840000pt;}
.y1d_c00467{bottom:55.706667pt;}
.y1c_c00467{bottom:78.240000pt;}
.y1b_c00467{bottom:101.040000pt;}
.y1a_c00467{bottom:122.906667pt;}
.y19_c00467{bottom:145.440000pt;}
.y18_c00467{bottom:167.973333pt;}
.y17_c00467{bottom:190.106667pt;}
.y16_c00467{bottom:212.906667pt;}
.y15_c00467{bottom:235.173333pt;}
.y14_c00467{bottom:256.506667pt;}
.y13_c00467{bottom:278.640000pt;}
.y12_c00467{bottom:302.373333pt;}
.y11_c00467{bottom:322.106667pt;}
.y10_c00467{bottom:344.640000pt;}
.yf_c00467{bottom:356.640000pt;}
.ye_c00467{bottom:365.706667pt;}
.yd_c00467{bottom:388.106667pt;}
.yc_c00467{bottom:409.706667pt;}
.yb_c00467{bottom:431.306667pt;}
.ya_c00467{bottom:453.306667pt;}
.y9_c00467{bottom:475.173333pt;}
.y8_c00467{bottom:497.306667pt;}
.y7_c00467{bottom:519.040000pt;}
.y6_c00467{bottom:541.440000pt;}
.y5_c00467{bottom:563.306667pt;}
.y4_c00467{bottom:585.040000pt;}
.y3_c00467{bottom:607.173333pt;}
.y2_c00467{bottom:629.040000pt;}
.y1_c00467{bottom:651.040000pt;}
.h6_c00467{height:11.733399pt;}
.h7_c00467{height:38.937500pt;}
.h4_c00467{height:57.397135pt;}
.h5_c00467{height:77.654948pt;}
.h3_c00467{height:81.031250pt;}
.h2_c00467{height:97.912760pt;}
.h0_c00467{height:694.533333pt;}
.h1_c00467{height:694.666667pt;}
.w1_c00467{width:93.222667pt;}
.w0_c00467{width:456.000000pt;}
.x0_c00467{left:0.000000pt;}
.x6_c00467{left:77.333333pt;}
.x5_c00467{left:78.533333pt;}
.x4_c00467{left:80.133333pt;}
.x3_c00467{left:82.133333pt;}
.x2_c00467{left:83.200000pt;}
.x9_c00467{left:185.168213pt;}
.x1_c00467{left:201.600000pt;}
.x8_c00467{left:378.933333pt;}
.x7_c00467{left:391.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aaa4acfd9eeae2ba0eb555cf.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.480469;font-style:normal;font-weight:normal;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_1a4b85d881c6bd3e8b2a57ef.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00468{font-family:ff3_c00468;line-height:1.219238;font-style: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;}
.ls1_c00468{letter-spacing:0.000000px;}
.ls0_c00468{letter-spacing:1.080000px;}
.ls2_c00468{letter-spacing:3.000000px;}
.sc__c00468{text-shadow:none;}
.sc0_c00468{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00468{-webkit-text-stroke:0px transparent;}
.sc0_c00468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00468{word-spacing:-20.352000px;}
.ws0_c00468{word-spacing:-17.352000px;}
.ws1_c00468{word-spacing:-16.629000px;}
.ws3_c00468{word-spacing:0.000000px;}
._13_c00468{margin-left:-11.040000px;}
._16_c00468{margin-left:-8.784000px;}
._6_c00468{margin-left:-6.912000px;}
._e_c00468{margin-left:-5.328000px;}
._3_c00468{margin-left:-3.528000px;}
._2_c00468{margin-left:-1.584000px;}
._1_c00468{width:1.224000px;}
._8_c00468{width:2.736000px;}
._7_c00468{width:3.816000px;}
._c_c00468{width:5.184000px;}
._d_c00468{width:6.264000px;}
._f_c00468{width:8.208000px;}
._b_c00468{width:10.008000px;}
._0_c00468{width:11.160000px;}
._10_c00468{width:12.672000px;}
._a_c00468{width:14.112000px;}
._12_c00468{width:15.960000px;}
._9_c00468{width:18.288000px;}
._5_c00468{width:19.440000px;}
._15_c00468{width:26.280000px;}
._14_c00468{width:31.176000px;}
._11_c00468{width:107.352000px;}
._4_c00468{width:394.488000px;}
.fc2_c00468{color:transparent;}
.fc1_c00468{color:rgb(128,128,128);}
.fc0_c00468{color:rgb(0,0,0);}
.fs2_c00468{font-size:48.000000px;}
.fs1_c00468{font-size:69.000000px;}
.fs0_c00468{font-size:72.000000px;}
.y0_c00468{bottom:0.000000px;}
.y20_c00468{bottom:3.105000px;}
.y1f_c00468{bottom:7.228369px;}
.y1e_c00468{bottom:38.820000px;}
.y1d_c00468{bottom:65.370000px;}
.y1c_c00468{bottom:99.270000px;}
.y19_c00468{bottom:147.420000px;}
.y1b_c00468{bottom:163.920000px;}
.y18_c00468{bottom:169.770000px;}
.y1a_c00468{bottom:189.570000px;}
.y17_c00468{bottom:197.070000px;}
.y16_c00468{bottom:221.370000px;}
.y15_c00468{bottom:244.020000px;}
.y14_c00468{bottom:269.970000px;}
.y13_c00468{bottom:288.570000px;}
.y12_c00468{bottom:316.920000px;}
.y11_c00468{bottom:342.120000px;}
.y10_c00468{bottom:363.420000px;}
.yf_c00468{bottom:387.420000px;}
.ye_c00468{bottom:411.120000px;}
.yd_c00468{bottom:437.070000px;}
.yc_c00468{bottom:462.420000px;}
.yb_c00468{bottom:487.620000px;}
.ya_c00468{bottom:511.620000px;}
.y9_c00468{bottom:536.520000px;}
.y8_c00468{bottom:561.270000px;}
.y7_c00468{bottom:585.870000px;}
.y6_c00468{bottom:609.570000px;}
.y5_c00468{bottom:634.470000px;}
.y4_c00468{bottom:659.070000px;}
.y3_c00468{bottom:683.670000px;}
.y2_c00468{bottom:708.420000px;}
.y1_c00468{bottom:733.320000px;}
.h4_c00468{height:13.200073px;}
.h5_c00468{height:43.804688px;}
.h2_c00468{height:84.269531px;}
.h3_c00468{height:91.160156px;}
.h1_c00468{height:783.750000px;}
.h0_c00468{height:784.050000px;}
.w2_c00468{width:104.875500px;}
.w0_c00468{width:496.275000px;}
.w1_c00468{width:496.500000px;}
.x0_c00468{left:0.000000px;}
.x8_c00468{left:7.800000px;}
.x2_c00468{left:23.400000px;}
.x3_c00468{left:25.050000px;}
.x4_c00468{left:27.300000px;}
.x5_c00468{left:28.650000px;}
.x6_c00468{left:30.000000px;}
.x7_c00468{left:66.600000px;}
.x1_c00468{left:133.950000px;}
.xb_c00468{left:159.300000px;}
.xd_c00468{left:199.951767px;}
.xc_c00468{left:338.400000px;}
.x9_c00468{left:359.700000px;}
.xa_c00468{left:396.600000px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls1_c00468{letter-spacing:0.000000pt;}
.ls0_c00468{letter-spacing:0.960000pt;}
.ls2_c00468{letter-spacing:2.666667pt;}
.ws2_c00468{word-spacing:-18.090667pt;}
.ws0_c00468{word-spacing:-15.424000pt;}
.ws1_c00468{word-spacing:-14.781333pt;}
.ws3_c00468{word-spacing:0.000000pt;}
._13_c00468{margin-left:-9.813333pt;}
._16_c00468{margin-left:-7.808000pt;}
._6_c00468{margin-left:-6.144000pt;}
._e_c00468{margin-left:-4.736000pt;}
._3_c00468{margin-left:-3.136000pt;}
._2_c00468{margin-left:-1.408000pt;}
._1_c00468{width:1.088000pt;}
._8_c00468{width:2.432000pt;}
._7_c00468{width:3.392000pt;}
._c_c00468{width:4.608000pt;}
._d_c00468{width:5.568000pt;}
._f_c00468{width:7.296000pt;}
._b_c00468{width:8.896000pt;}
._0_c00468{width:9.920000pt;}
._10_c00468{width:11.264000pt;}
._a_c00468{width:12.544000pt;}
._12_c00468{width:14.186667pt;}
._9_c00468{width:16.256000pt;}
._5_c00468{width:17.280000pt;}
._15_c00468{width:23.360000pt;}
._14_c00468{width:27.712000pt;}
._11_c00468{width:95.424000pt;}
._4_c00468{width:350.656000pt;}
.fs2_c00468{font-size:42.666667pt;}
.fs1_c00468{font-size:61.333333pt;}
.fs0_c00468{font-size:64.000000pt;}
.y0_c00468{bottom:0.000000pt;}
.y20_c00468{bottom:2.760000pt;}
.y1f_c00468{bottom:6.425217pt;}
.y1e_c00468{bottom:34.506667pt;}
.y1d_c00468{bottom:58.106667pt;}
.y1c_c00468{bottom:88.240000pt;}
.y19_c00468{bottom:131.040000pt;}
.y1b_c00468{bottom:145.706667pt;}
.y18_c00468{bottom:150.906667pt;}
.y1a_c00468{bottom:168.506667pt;}
.y17_c00468{bottom:175.173333pt;}
.y16_c00468{bottom:196.773333pt;}
.y15_c00468{bottom:216.906667pt;}
.y14_c00468{bottom:239.973333pt;}
.y13_c00468{bottom:256.506667pt;}
.y12_c00468{bottom:281.706667pt;}
.y11_c00468{bottom:304.106667pt;}
.y10_c00468{bottom:323.040000pt;}
.yf_c00468{bottom:344.373333pt;}
.ye_c00468{bottom:365.440000pt;}
.yd_c00468{bottom:388.506667pt;}
.yc_c00468{bottom:411.040000pt;}
.yb_c00468{bottom:433.440000pt;}
.ya_c00468{bottom:454.773333pt;}
.y9_c00468{bottom:476.906667pt;}
.y8_c00468{bottom:498.906667pt;}
.y7_c00468{bottom:520.773333pt;}
.y6_c00468{bottom:541.840000pt;}
.y5_c00468{bottom:563.973333pt;}
.y4_c00468{bottom:585.840000pt;}
.y3_c00468{bottom:607.706667pt;}
.y2_c00468{bottom:629.706667pt;}
.y1_c00468{bottom:651.840000pt;}
.h4_c00468{height:11.733399pt;}
.h5_c00468{height:38.937500pt;}
.h2_c00468{height:74.906250pt;}
.h3_c00468{height:81.031250pt;}
.h1_c00468{height:696.666667pt;}
.h0_c00468{height:696.933333pt;}
.w2_c00468{width:93.222667pt;}
.w0_c00468{width:441.133333pt;}
.w1_c00468{width:441.333333pt;}
.x0_c00468{left:0.000000pt;}
.x8_c00468{left:6.933333pt;}
.x2_c00468{left:20.800000pt;}
.x3_c00468{left:22.266667pt;}
.x4_c00468{left:24.266667pt;}
.x5_c00468{left:25.466667pt;}
.x6_c00468{left:26.666667pt;}
.x7_c00468{left:59.200000pt;}
.x1_c00468{left:119.066667pt;}
.xb_c00468{left:141.600000pt;}
.xd_c00468{left:177.734904pt;}
.xc_c00468{left:300.800000pt;}
.x9_c00468{left:319.733333pt;}
.xa_c00468{left:352.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bce34dd82a967758cef1e5f1.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.480469;font-style:normal;font-weight:normal;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_cb936da0b68ad7a9655af70f.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.568848;font-style:normal;font-weight:normal;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_09220d79995b9e6dbcdc0713.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;line-height:1.575000;font-style:normal;font-weight:normal;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_23d95824ea4f32f539d4d043.woff2')format("woff");}.ff4_c00469{font-family:ff4_c00469;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00469;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00469{font-family:ff5_c00469;line-height:1.219238;font-style: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;}
.ls5_c00469{letter-spacing:-12.000000px;}
.ls4_c00469{letter-spacing:0.000000px;}
.ls3_c00469{letter-spacing:1.371000px;}
.ls1_c00469{letter-spacing:3.000000px;}
.ls2_c00469{letter-spacing:19.725000px;}
.ls0_c00469{letter-spacing:37.371000px;}
.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;}
}
.ws2_c00469{word-spacing:-31.809000px;}
.ws3_c00469{word-spacing:-20.352000px;}
.ws1_c00469{word-spacing:-18.051000px;}
.ws0_c00469{word-spacing:-15.183000px;}
.ws4_c00469{word-spacing:0.000000px;}
._5_c00469{margin-left:-15.960000px;}
._f_c00469{margin-left:-14.904000px;}
._e_c00469{margin-left:-12.744000px;}
._4_c00469{margin-left:-9.660000px;}
._0_c00469{margin-left:-8.568000px;}
._2_c00469{margin-left:-6.552000px;}
._3_c00469{margin-left:-5.544000px;}
._1_c00469{margin-left:-3.696000px;}
._a_c00469{margin-left:-1.872000px;}
._7_c00469{width:1.944000px;}
._6_c00469{width:3.024000px;}
._8_c00469{width:4.104000px;}
._c_c00469{width:5.280000px;}
._9_c00469{width:6.984000px;}
._12_c00469{width:8.058000px;}
._b_c00469{width:9.132000px;}
._11_c00469{width:10.272000px;}
._10_c00469{width:11.544000px;}
._d_c00469{width:16.416000px;}
._13_c00469{width:34.248000px;}
.fc2_c00469{color:transparent;}
.fc1_c00469{color:rgb(128,128,128);}
.fc0_c00469{color:rgb(0,0,0);}
.fs4_c00469{font-size:48.000000px;}
.fs2_c00469{font-size:63.000000px;}
.fs3_c00469{font-size:69.000000px;}
.fs1_c00469{font-size:72.000000px;}
.fs0_c00469{font-size:84.000000px;}
.y0_c00469{bottom:0.000000px;}
.y1f_c00469{bottom:3.105000px;}
.y1e_c00469{bottom:7.228371px;}
.y1d_c00469{bottom:34.815000px;}
.y1c_c00469{bottom:54.465000px;}
.y1b_c00469{bottom:79.965000px;}
.y1a_c00469{bottom:104.415000px;}
.y19_c00469{bottom:129.615000px;}
.y18_c00469{bottom:154.665000px;}
.y17_c00469{bottom:179.565000px;}
.y16_c00469{bottom:204.615000px;}
.y15_c00469{bottom:228.915000px;}
.y14_c00469{bottom:253.815000px;}
.y13_c00469{bottom:278.415000px;}
.y12_c00469{bottom:303.465000px;}
.y11_c00469{bottom:327.765000px;}
.y10_c00469{bottom:352.065000px;}
.yf_c00469{bottom:375.765000px;}
.ye_c00469{bottom:400.665000px;}
.yd_c00469{bottom:424.965000px;}
.yc_c00469{bottom:448.965000px;}
.yb_c00469{bottom:473.265000px;}
.ya_c00469{bottom:498.465000px;}
.y9_c00469{bottom:522.915000px;}
.y8_c00469{bottom:547.065000px;}
.y7_c00469{bottom:572.115000px;}
.y6_c00469{bottom:595.665000px;}
.y5_c00469{bottom:621.015000px;}
.y4_c00469{bottom:645.015000px;}
.y3_c00469{bottom:670.065000px;}
.y2_c00469{bottom:694.365000px;}
.y1_c00469{bottom:718.965000px;}
.h4_c00469{height:13.200074px;}
.h5_c00469{height:43.804688px;}
.h3_c00469{height:91.160156px;}
.h2_c00469{height:106.353516px;}
.h1_c00469{height:768.750000px;}
.h0_c00469{height:768.975000px;}
.w1_c00469{width:104.875500px;}
.w0_c00469{width:506.250000px;}
.x0_c00469{left:0.000000px;}
.xc_c00469{left:95.850000px;}
.xb_c00469{left:97.200000px;}
.xa_c00469{left:98.250000px;}
.x9_c00469{left:99.900000px;}
.x8_c00469{left:100.950000px;}
.x7_c00469{left:102.150000px;}
.x6_c00469{left:103.650000px;}
.x5_c00469{left:105.000000px;}
.x4_c00469{left:106.350000px;}
.x3_c00469{left:108.000000px;}
.x2_c00469{left:110.250000px;}
.xe_c00469{left:204.939240px;}
.x1_c00469{left:234.600000px;}
.xd_c00469{left:412.050000px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls5_c00469{letter-spacing:-10.666667pt;}
.ls4_c00469{letter-spacing:0.000000pt;}
.ls3_c00469{letter-spacing:1.218667pt;}
.ls1_c00469{letter-spacing:2.666667pt;}
.ls2_c00469{letter-spacing:17.533333pt;}
.ls0_c00469{letter-spacing:33.218667pt;}
.ws2_c00469{word-spacing:-28.274667pt;}
.ws3_c00469{word-spacing:-18.090667pt;}
.ws1_c00469{word-spacing:-16.045333pt;}
.ws0_c00469{word-spacing:-13.496000pt;}
.ws4_c00469{word-spacing:0.000000pt;}
._5_c00469{margin-left:-14.186667pt;}
._f_c00469{margin-left:-13.248000pt;}
._e_c00469{margin-left:-11.328000pt;}
._4_c00469{margin-left:-8.586667pt;}
._0_c00469{margin-left:-7.616000pt;}
._2_c00469{margin-left:-5.824000pt;}
._3_c00469{margin-left:-4.928000pt;}
._1_c00469{margin-left:-3.285333pt;}
._a_c00469{margin-left:-1.664000pt;}
._7_c00469{width:1.728000pt;}
._6_c00469{width:2.688000pt;}
._8_c00469{width:3.648000pt;}
._c_c00469{width:4.693333pt;}
._9_c00469{width:6.208000pt;}
._12_c00469{width:7.162667pt;}
._b_c00469{width:8.117333pt;}
._11_c00469{width:9.130667pt;}
._10_c00469{width:10.261333pt;}
._d_c00469{width:14.592000pt;}
._13_c00469{width:30.442667pt;}
.fs4_c00469{font-size:42.666667pt;}
.fs2_c00469{font-size:56.000000pt;}
.fs3_c00469{font-size:61.333333pt;}
.fs1_c00469{font-size:64.000000pt;}
.fs0_c00469{font-size:74.666667pt;}
.y0_c00469{bottom:0.000000pt;}
.y1f_c00469{bottom:2.760000pt;}
.y1e_c00469{bottom:6.425219pt;}
.y1d_c00469{bottom:30.946667pt;}
.y1c_c00469{bottom:48.413333pt;}
.y1b_c00469{bottom:71.080000pt;}
.y1a_c00469{bottom:92.813333pt;}
.y19_c00469{bottom:115.213333pt;}
.y18_c00469{bottom:137.480000pt;}
.y17_c00469{bottom:159.613333pt;}
.y16_c00469{bottom:181.880000pt;}
.y15_c00469{bottom:203.480000pt;}
.y14_c00469{bottom:225.613333pt;}
.y13_c00469{bottom:247.480000pt;}
.y12_c00469{bottom:269.746667pt;}
.y11_c00469{bottom:291.346667pt;}
.y10_c00469{bottom:312.946667pt;}
.yf_c00469{bottom:334.013333pt;}
.ye_c00469{bottom:356.146667pt;}
.yd_c00469{bottom:377.746667pt;}
.yc_c00469{bottom:399.080000pt;}
.yb_c00469{bottom:420.680000pt;}
.ya_c00469{bottom:443.080000pt;}
.y9_c00469{bottom:464.813333pt;}
.y8_c00469{bottom:486.280000pt;}
.y7_c00469{bottom:508.546667pt;}
.y6_c00469{bottom:529.480000pt;}
.y5_c00469{bottom:552.013333pt;}
.y4_c00469{bottom:573.346667pt;}
.y3_c00469{bottom:595.613333pt;}
.y2_c00469{bottom:617.213333pt;}
.y1_c00469{bottom:639.080000pt;}
.h4_c00469{height:11.733399pt;}
.h5_c00469{height:38.937500pt;}
.h3_c00469{height:81.031250pt;}
.h2_c00469{height:94.536458pt;}
.h1_c00469{height:683.333333pt;}
.h0_c00469{height:683.533333pt;}
.w1_c00469{width:93.222667pt;}
.w0_c00469{width:450.000000pt;}
.x0_c00469{left:0.000000pt;}
.xc_c00469{left:85.200000pt;}
.xb_c00469{left:86.400000pt;}
.xa_c00469{left:87.333333pt;}
.x9_c00469{left:88.800000pt;}
.x8_c00469{left:89.733333pt;}
.x7_c00469{left:90.800000pt;}
.x6_c00469{left:92.133333pt;}
.x5_c00469{left:93.333333pt;}
.x4_c00469{left:94.533333pt;}
.x3_c00469{left:96.000000pt;}
.x2_c00469{left:98.000000pt;}
.xe_c00469{left:182.168213pt;}
.x1_c00469{left:208.533333pt;}
.xd_c00469{left:366.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1638ceb295ad7ca7b5cd6440.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.480469;font-style:normal;font-weight:normal;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_be105fe691e3b0ef3e263d68.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00470{font-family:ff3_c00470;line-height:1.219238;font-style: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;}
.ls3_c00470{letter-spacing:-6.000000px;}
.ls2_c00470{letter-spacing:0.000000px;}
.ls0_c00470{letter-spacing:3.000000px;}
.ls1_c00470{letter-spacing:25.971000px;}
.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:-17.352000px;}
.ws1_c00470{word-spacing:-16.413000px;}
.ws2_c00470{word-spacing:0.000000px;}
._f_c00470{margin-left:-18.432000px;}
._e_c00470{margin-left:-14.688000px;}
._1f_c00470{margin-left:-13.464000px;}
._10_c00470{margin-left:-11.016000px;}
._1b_c00470{margin-left:-9.576000px;}
._d_c00470{margin-left:-7.920000px;}
._11_c00470{margin-left:-5.832000px;}
._b_c00470{margin-left:-4.464000px;}
._9_c00470{margin-left:-3.240000px;}
._6_c00470{margin-left:-2.160000px;}
._8_c00470{margin-left:-1.008000px;}
._a_c00470{width:1.584000px;}
._3_c00470{width:3.168000px;}
._1_c00470{width:4.824000px;}
._2_c00470{width:6.048000px;}
._0_c00470{width:7.848000px;}
._18_c00470{width:9.000000px;}
._7_c00470{width:10.224000px;}
._13_c00470{width:11.520000px;}
._c_c00470{width:12.528000px;}
._5_c00470{width:14.256000px;}
._12_c00470{width:15.864000px;}
._14_c00470{width:18.720000px;}
._1a_c00470{width:22.584000px;}
._15_c00470{width:23.688000px;}
._17_c00470{width:24.768000px;}
._1d_c00470{width:26.304000px;}
._1c_c00470{width:27.768000px;}
._20_c00470{width:29.016000px;}
._16_c00470{width:30.024000px;}
._21_c00470{width:31.200000px;}
._19_c00470{width:34.728000px;}
._1e_c00470{width:161.238000px;}
._4_c00470{width:365.472000px;}
.fc2_c00470{color:transparent;}
.fc1_c00470{color:rgb(128,128,128);}
.fc0_c00470{color:rgb(0,0,0);}
.fs4_c00470{font-size:48.000000px;}
.fs1_c00470{font-size:66.000000px;}
.fs3_c00470{font-size:69.000000px;}
.fs0_c00470{font-size:72.000000px;}
.fs2_c00470{font-size:93.000000px;}
.y0_c00470{bottom:0.000000px;}
.y1f_c00470{bottom:3.105000px;}
.y1e_c00470{bottom:7.228369px;}
.y1d_c00470{bottom:50.670000px;}
.y1c_c00470{bottom:79.920000px;}
.y1b_c00470{bottom:105.570000px;}
.y1a_c00470{bottom:130.320000px;}
.y19_c00470{bottom:155.520000px;}
.y18_c00470{bottom:179.520000px;}
.y17_c00470{bottom:205.170000px;}
.y16_c00470{bottom:227.520000px;}
.y15_c00470{bottom:253.170000px;}
.y14_c00470{bottom:278.370000px;}
.y13_c00470{bottom:302.070000px;}
.y12_c00470{bottom:324.720000px;}
.y11_c00470{bottom:349.020000px;}
.y10_c00470{bottom:372.870000px;}
.yf_c00470{bottom:397.170000px;}
.ye_c00470{bottom:421.470000px;}
.yd_c00470{bottom:445.770000px;}
.yc_c00470{bottom:470.070000px;}
.yb_c00470{bottom:494.820000px;}
.ya_c00470{bottom:519.120000px;}
.y9_c00470{bottom:543.420000px;}
.y8_c00470{bottom:568.620000px;}
.y7_c00470{bottom:592.620000px;}
.y6_c00470{bottom:616.920000px;}
.y5_c00470{bottom:641.520000px;}
.y4_c00470{bottom:665.820000px;}
.y3_c00470{bottom:690.870000px;}
.y2_c00470{bottom:714.720000px;}
.y1_c00470{bottom:740.070000px;}
.h5_c00470{height:13.200073px;}
.h6_c00470{height:43.804688px;}
.h2_c00470{height:84.269531px;}
.h3_c00470{height:91.160156px;}
.h4_c00470{height:108.848145px;}
.h1_c00470{height:778.500000px;}
.h0_c00470{height:778.650000px;}
.w2_c00470{width:104.875500px;}
.w1_c00470{width:517.500000px;}
.w0_c00470{width:517.575000px;}
.x0_c00470{left:0.000000px;}
.x2_c00470{left:23.250000px;}
.x3_c00470{left:24.750000px;}
.x4_c00470{left:26.400000px;}
.x5_c00470{left:27.450000px;}
.x6_c00470{left:28.800000px;}
.x1_c00470{left:135.900000px;}
.x8_c00470{left:210.601730px;}
.x7_c00470{left:374.400000px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls3_c00470{letter-spacing:-5.333333pt;}
.ls2_c00470{letter-spacing:0.000000pt;}
.ls0_c00470{letter-spacing:2.666667pt;}
.ls1_c00470{letter-spacing:23.085333pt;}
.ws0_c00470{word-spacing:-15.424000pt;}
.ws1_c00470{word-spacing:-14.589333pt;}
.ws2_c00470{word-spacing:0.000000pt;}
._f_c00470{margin-left:-16.384000pt;}
._e_c00470{margin-left:-13.056000pt;}
._1f_c00470{margin-left:-11.968000pt;}
._10_c00470{margin-left:-9.792000pt;}
._1b_c00470{margin-left:-8.512000pt;}
._d_c00470{margin-left:-7.040000pt;}
._11_c00470{margin-left:-5.184000pt;}
._b_c00470{margin-left:-3.968000pt;}
._9_c00470{margin-left:-2.880000pt;}
._6_c00470{margin-left:-1.920000pt;}
._8_c00470{margin-left:-0.896000pt;}
._a_c00470{width:1.408000pt;}
._3_c00470{width:2.816000pt;}
._1_c00470{width:4.288000pt;}
._2_c00470{width:5.376000pt;}
._0_c00470{width:6.976000pt;}
._18_c00470{width:8.000000pt;}
._7_c00470{width:9.088000pt;}
._13_c00470{width:10.240000pt;}
._c_c00470{width:11.136000pt;}
._5_c00470{width:12.672000pt;}
._12_c00470{width:14.101333pt;}
._14_c00470{width:16.640000pt;}
._1a_c00470{width:20.074667pt;}
._15_c00470{width:21.056000pt;}
._17_c00470{width:22.016000pt;}
._1d_c00470{width:23.381333pt;}
._1c_c00470{width:24.682667pt;}
._20_c00470{width:25.792000pt;}
._16_c00470{width:26.688000pt;}
._21_c00470{width:27.733333pt;}
._19_c00470{width:30.869333pt;}
._1e_c00470{width:143.322667pt;}
._4_c00470{width:324.864000pt;}
.fs4_c00470{font-size:42.666667pt;}
.fs1_c00470{font-size:58.666667pt;}
.fs3_c00470{font-size:61.333333pt;}
.fs0_c00470{font-size:64.000000pt;}
.fs2_c00470{font-size:82.666667pt;}
.y0_c00470{bottom:0.000000pt;}
.y1f_c00470{bottom:2.760000pt;}
.y1e_c00470{bottom:6.425217pt;}
.y1d_c00470{bottom:45.040000pt;}
.y1c_c00470{bottom:71.040000pt;}
.y1b_c00470{bottom:93.840000pt;}
.y1a_c00470{bottom:115.840000pt;}
.y19_c00470{bottom:138.240000pt;}
.y18_c00470{bottom:159.573333pt;}
.y17_c00470{bottom:182.373333pt;}
.y16_c00470{bottom:202.240000pt;}
.y15_c00470{bottom:225.040000pt;}
.y14_c00470{bottom:247.440000pt;}
.y13_c00470{bottom:268.506667pt;}
.y12_c00470{bottom:288.640000pt;}
.y11_c00470{bottom:310.240000pt;}
.y10_c00470{bottom:331.440000pt;}
.yf_c00470{bottom:353.040000pt;}
.ye_c00470{bottom:374.640000pt;}
.yd_c00470{bottom:396.240000pt;}
.yc_c00470{bottom:417.840000pt;}
.yb_c00470{bottom:439.840000pt;}
.ya_c00470{bottom:461.440000pt;}
.y9_c00470{bottom:483.040000pt;}
.y8_c00470{bottom:505.440000pt;}
.y7_c00470{bottom:526.773333pt;}
.y6_c00470{bottom:548.373333pt;}
.y5_c00470{bottom:570.240000pt;}
.y4_c00470{bottom:591.840000pt;}
.y3_c00470{bottom:614.106667pt;}
.y2_c00470{bottom:635.306667pt;}
.y1_c00470{bottom:657.840000pt;}
.h5_c00470{height:11.733399pt;}
.h6_c00470{height:38.937500pt;}
.h2_c00470{height:74.906250pt;}
.h3_c00470{height:81.031250pt;}
.h4_c00470{height:96.753906pt;}
.h1_c00470{height:692.000000pt;}
.h0_c00470{height:692.133333pt;}
.w2_c00470{width:93.222667pt;}
.w1_c00470{width:460.000000pt;}
.w0_c00470{width:460.066667pt;}
.x0_c00470{left:0.000000pt;}
.x2_c00470{left:20.666667pt;}
.x3_c00470{left:22.000000pt;}
.x4_c00470{left:23.466667pt;}
.x5_c00470{left:24.400000pt;}
.x6_c00470{left:25.600000pt;}
.x1_c00470{left:120.800000pt;}
.x8_c00470{left:187.201538pt;}
.x7_c00470{left:332.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a57df691121a4495f334b9b3.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.480469;font-style:normal;font-weight:normal;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_360a7780897563965ba116f2.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:1.568848;font-style:normal;font-weight:normal;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_416b9f765284fac6c3dfb5f3.woff2')format("woff");}.ff3_c00471{font-family:ff3_c00471;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00471;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00471{font-family:ff4_c00471;line-height:1.219238;font-style: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;}
.ls2_c00471{letter-spacing:0.000000px;}
.ls1_c00471{letter-spacing:3.000000px;}
.ls0_c00471{letter-spacing:6.150000px;}
.ls3_c00471{letter-spacing:12.000000px;}
.sc__c00471{text-shadow:none;}
.sc0_c00471{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00471{-webkit-text-stroke:0px transparent;}
.sc0_c00471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00471{word-spacing:-33.192000px;}
.ws1_c00471{word-spacing:-26.250000px;}
.ws2_c00471{word-spacing:0.000000px;}
._13_c00471{margin-left:-19.698000px;}
._11_c00471{margin-left:-8.640000px;}
._12_c00471{margin-left:-7.560000px;}
._f_c00471{margin-left:-6.552000px;}
._a_c00471{margin-left:-4.248000px;}
._7_c00471{margin-left:-3.240000px;}
._5_c00471{margin-left:-2.088000px;}
._8_c00471{margin-left:-1.080000px;}
._6_c00471{width:1.296000px;}
._4_c00471{width:2.448000px;}
._0_c00471{width:4.392000px;}
._2_c00471{width:5.616000px;}
._b_c00471{width:7.416000px;}
._10_c00471{width:8.424000px;}
._1_c00471{width:9.504000px;}
._3_c00471{width:11.304000px;}
._9_c00471{width:12.744000px;}
._c_c00471{width:14.256000px;}
._d_c00471{width:15.696000px;}
._e_c00471{width:18.072000px;}
.fc2_c00471{color:transparent;}
.fc1_c00471{color:rgb(128,128,128);}
.fc0_c00471{color:rgb(0,0,0);}
.fs2_c00471{font-size:48.000000px;}
.fs1_c00471{font-size:57.000000px;}
.fs0_c00471{font-size:72.000000px;}
.y0_c00471{bottom:0.000000px;}
.y1e_c00471{bottom:3.105000px;}
.y1d_c00471{bottom:7.228355px;}
.y1c_c00471{bottom:68.535000px;}
.y1b_c00471{bottom:94.185000px;}
.y1a_c00471{bottom:119.085000px;}
.y19_c00471{bottom:143.985000px;}
.y18_c00471{bottom:168.435000px;}
.y17_c00471{bottom:194.685000px;}
.y16_c00471{bottom:219.735000px;}
.y15_c00471{bottom:245.385000px;}
.y14_c00471{bottom:270.285000px;}
.y13_c00471{bottom:292.635000px;}
.y12_c00471{bottom:317.535000px;}
.y11_c00471{bottom:342.135000px;}
.y10_c00471{bottom:366.135000px;}
.yf_c00471{bottom:390.435000px;}
.ye_c00471{bottom:415.335000px;}
.yd_c00471{bottom:439.635000px;}
.yc_c00471{bottom:463.635000px;}
.yb_c00471{bottom:487.335000px;}
.ya_c00471{bottom:513.585000px;}
.y9_c00471{bottom:536.835000px;}
.y8_c00471{bottom:561.885000px;}
.y7_c00471{bottom:585.585000px;}
.y6_c00471{bottom:609.885000px;}
.y5_c00471{bottom:634.785000px;}
.y4_c00471{bottom:658.485000px;}
.y3_c00471{bottom:683.085000px;}
.y2_c00471{bottom:707.385000px;}
.y1_c00471{bottom:733.935000px;}
.h3_c00471{height:13.200074px;}
.h4_c00471{height:43.804688px;}
.h2_c00471{height:91.160156px;}
.h0_c00471{height:775.425000px;}
.h1_c00471{height:775.500000px;}
.w2_c00471{width:104.875500px;}
.w1_c00471{width:504.000000px;}
.w0_c00471{width:504.075000px;}
.x0_c00471{left:0.000000px;}
.x2_c00471{left:99.300000px;}
.x3_c00471{left:100.650000px;}
.x4_c00471{left:102.300000px;}
.x5_c00471{left:203.851730px;}
.x1_c00471{left:224.700000px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls2_c00471{letter-spacing:0.000000pt;}
.ls1_c00471{letter-spacing:2.666667pt;}
.ls0_c00471{letter-spacing:5.466667pt;}
.ls3_c00471{letter-spacing:10.666667pt;}
.ws0_c00471{word-spacing:-29.504000pt;}
.ws1_c00471{word-spacing:-23.333333pt;}
.ws2_c00471{word-spacing:0.000000pt;}
._13_c00471{margin-left:-17.509333pt;}
._11_c00471{margin-left:-7.680000pt;}
._12_c00471{margin-left:-6.720000pt;}
._f_c00471{margin-left:-5.824000pt;}
._a_c00471{margin-left:-3.776000pt;}
._7_c00471{margin-left:-2.880000pt;}
._5_c00471{margin-left:-1.856000pt;}
._8_c00471{margin-left:-0.960000pt;}
._6_c00471{width:1.152000pt;}
._4_c00471{width:2.176000pt;}
._0_c00471{width:3.904000pt;}
._2_c00471{width:4.992000pt;}
._b_c00471{width:6.592000pt;}
._10_c00471{width:7.488000pt;}
._1_c00471{width:8.448000pt;}
._3_c00471{width:10.048000pt;}
._9_c00471{width:11.328000pt;}
._c_c00471{width:12.672000pt;}
._d_c00471{width:13.952000pt;}
._e_c00471{width:16.064000pt;}
.fs2_c00471{font-size:42.666667pt;}
.fs1_c00471{font-size:50.666667pt;}
.fs0_c00471{font-size:64.000000pt;}
.y0_c00471{bottom:0.000000pt;}
.y1e_c00471{bottom:2.760000pt;}
.y1d_c00471{bottom:6.425204pt;}
.y1c_c00471{bottom:60.920000pt;}
.y1b_c00471{bottom:83.720000pt;}
.y1a_c00471{bottom:105.853333pt;}
.y19_c00471{bottom:127.986667pt;}
.y18_c00471{bottom:149.720000pt;}
.y17_c00471{bottom:173.053333pt;}
.y16_c00471{bottom:195.320000pt;}
.y15_c00471{bottom:218.120000pt;}
.y14_c00471{bottom:240.253333pt;}
.y13_c00471{bottom:260.120000pt;}
.y12_c00471{bottom:282.253333pt;}
.y11_c00471{bottom:304.120000pt;}
.y10_c00471{bottom:325.453333pt;}
.yf_c00471{bottom:347.053333pt;}
.ye_c00471{bottom:369.186667pt;}
.yd_c00471{bottom:390.786667pt;}
.yc_c00471{bottom:412.120000pt;}
.yb_c00471{bottom:433.186667pt;}
.ya_c00471{bottom:456.520000pt;}
.y9_c00471{bottom:477.186667pt;}
.y8_c00471{bottom:499.453333pt;}
.y7_c00471{bottom:520.520000pt;}
.y6_c00471{bottom:542.120000pt;}
.y5_c00471{bottom:564.253333pt;}
.y4_c00471{bottom:585.320000pt;}
.y3_c00471{bottom:607.186667pt;}
.y2_c00471{bottom:628.786667pt;}
.y1_c00471{bottom:652.386667pt;}
.h3_c00471{height:11.733399pt;}
.h4_c00471{height:38.937500pt;}
.h2_c00471{height:81.031250pt;}
.h0_c00471{height:689.266667pt;}
.h1_c00471{height:689.333333pt;}
.w2_c00471{width:93.222667pt;}
.w1_c00471{width:448.000000pt;}
.w0_c00471{width:448.066667pt;}
.x0_c00471{left:0.000000pt;}
.x2_c00471{left:88.266667pt;}
.x3_c00471{left:89.466667pt;}
.x4_c00471{left:90.933333pt;}
.x5_c00471{left:181.201538pt;}
.x1_c00471{left:199.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_083a922663205e0c10116683.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00472;src:url('chunks/assets/font_da19146d6fb21eed4434b255.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:1.568848;font-style:normal;font-weight:normal;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_3a820df758afedf0f3f08f37.woff2')format("woff");}.ff3_c00472{font-family:ff3_c00472;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00472;src:url('chunks/assets/font_b12f93ed00c72f42c9f50862.woff2')format("woff");}.ff4_c00472{font-family:ff4_c00472;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00472;src:url('chunks/assets/font_b0972c4f6d86d664bfc8e10c.woff2')format("woff");}.ff5_c00472{font-family:ff5_c00472;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00472;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00472{font-family:ff6_c00472;line-height:1.219238;font-style: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.000000px;}
.ls3_c00472{letter-spacing:3.000000px;}
.ls0_c00472{letter-spacing:4.188000px;}
.ls4_c00472{letter-spacing:6.000000px;}
.ls1_c00472{letter-spacing:34.788000px;}
.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:-17.352000px;}
.ws1_c00472{word-spacing:-15.183000px;}
.ws2_c00472{word-spacing:0.000000px;}
._14_c00472{margin-left:-21.960000px;}
._12_c00472{margin-left:-13.584000px;}
._1a_c00472{margin-left:-12.084000px;}
._11_c00472{margin-left:-9.648000px;}
._1b_c00472{margin-left:-7.776000px;}
._f_c00472{margin-left:-6.768000px;}
._7_c00472{margin-left:-5.712000px;}
._e_c00472{margin-left:-4.368000px;}
._c_c00472{margin-left:-2.376000px;}
._8_c00472{margin-left:-1.368000px;}
._a_c00472{width:1.248000px;}
._2_c00472{width:2.436000px;}
._5_c00472{width:3.612000px;}
._1_c00472{width:5.292000px;}
._3_c00472{width:6.300000px;}
._4_c00472{width:7.476000px;}
._0_c00472{width:8.988000px;}
._19_c00472{width:10.083000px;}
._b_c00472{width:11.412000px;}
._9_c00472{width:13.392000px;}
._d_c00472{width:14.400000px;}
._15_c00472{width:15.528000px;}
._18_c00472{width:18.411000px;}
._17_c00472{width:21.936000px;}
._10_c00472{width:23.136000px;}
._16_c00472{width:25.128000px;}
._13_c00472{width:167.664000px;}
._6_c00472{width:364.812000px;}
.fc2_c00472{color:transparent;}
.fc1_c00472{color:rgb(128,128,128);}
.fc0_c00472{color:rgb(0,0,0);}
.fs5_c00472{font-size:48.000000px;}
.fs4_c00472{font-size:57.000000px;}
.fs3_c00472{font-size:63.000000px;}
.fs1_c00472{font-size:72.000000px;}
.fs2_c00472{font-size:78.000000px;}
.fs0_c00472{font-size:84.000000px;}
.y0_c00472{bottom:0.000000px;}
.y1f_c00472{bottom:3.105000px;}
.y1e_c00472{bottom:7.228363px;}
.y1d_c00472{bottom:53.700000px;}
.y1c_c00472{bottom:82.950000px;}
.y1b_c00472{bottom:109.350000px;}
.y1a_c00472{bottom:133.650000px;}
.y19_c00472{bottom:157.950000px;}
.y18_c00472{bottom:182.550000px;}
.y17_c00472{bottom:201.450000px;}
.y16_c00472{bottom:230.400000px;}
.y15_c00472{bottom:255.750000px;}
.y14_c00472{bottom:280.050000px;}
.y13_c00472{bottom:303.750000px;}
.y12_c00472{bottom:323.550000px;}
.y11_c00472{bottom:347.250000px;}
.y10_c00472{bottom:373.500000px;}
.yf_c00472{bottom:397.200000px;}
.ye_c00472{bottom:421.800000px;}
.yd_c00472{bottom:447.150000px;}
.yc_c00472{bottom:470.700000px;}
.yb_c00472{bottom:495.750000px;}
.ya_c00472{bottom:519.450000px;}
.y9_c00472{bottom:543.750000px;}
.y8_c00472{bottom:568.350000px;}
.y7_c00472{bottom:593.250000px;}
.y6_c00472{bottom:616.650000px;}
.y5_c00472{bottom:641.250000px;}
.y4_c00472{bottom:665.550000px;}
.y3_c00472{bottom:690.150000px;}
.y2_c00472{bottom:715.200000px;}
.y1_c00472{bottom:739.500000px;}
.h5_c00472{height:13.200074px;}
.h6_c00472{height:43.804688px;}
.h4_c00472{height:79.765137px;}
.h1_c00472{height:82.400391px;}
.h2_c00472{height:91.160156px;}
.h3_c00472{height:98.756836px;}
.h0_c00472{height:776.250000px;}
.w1_c00472{width:104.875500px;}
.w0_c00472{width:530.250000px;}
.x0_c00472{left:0.000000px;}
.x7_c00472{left:18.300000px;}
.x6_c00472{left:23.250000px;}
.x2_c00472{left:25.650000px;}
.x3_c00472{left:26.700000px;}
.x4_c00472{left:27.900000px;}
.x5_c00472{left:28.950000px;}
.x1_c00472{left:133.950000px;}
.x9_c00472{left:216.939240px;}
.x8_c00472{left:351.300000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls2_c00472{letter-spacing:0.000000pt;}
.ls3_c00472{letter-spacing:2.666667pt;}
.ls0_c00472{letter-spacing:3.722667pt;}
.ls4_c00472{letter-spacing:5.333333pt;}
.ls1_c00472{letter-spacing:30.922667pt;}
.ws0_c00472{word-spacing:-15.424000pt;}
.ws1_c00472{word-spacing:-13.496000pt;}
.ws2_c00472{word-spacing:0.000000pt;}
._14_c00472{margin-left:-19.520000pt;}
._12_c00472{margin-left:-12.074667pt;}
._1a_c00472{margin-left:-10.741333pt;}
._11_c00472{margin-left:-8.576000pt;}
._1b_c00472{margin-left:-6.912000pt;}
._f_c00472{margin-left:-6.016000pt;}
._7_c00472{margin-left:-5.077333pt;}
._e_c00472{margin-left:-3.882667pt;}
._c_c00472{margin-left:-2.112000pt;}
._8_c00472{margin-left:-1.216000pt;}
._a_c00472{width:1.109333pt;}
._2_c00472{width:2.165333pt;}
._5_c00472{width:3.210667pt;}
._1_c00472{width:4.704000pt;}
._3_c00472{width:5.600000pt;}
._4_c00472{width:6.645333pt;}
._0_c00472{width:7.989333pt;}
._19_c00472{width:8.962667pt;}
._b_c00472{width:10.144000pt;}
._9_c00472{width:11.904000pt;}
._d_c00472{width:12.800000pt;}
._15_c00472{width:13.802667pt;}
._18_c00472{width:16.365333pt;}
._17_c00472{width:19.498667pt;}
._10_c00472{width:20.565333pt;}
._16_c00472{width:22.336000pt;}
._13_c00472{width:149.034667pt;}
._6_c00472{width:324.277333pt;}
.fs5_c00472{font-size:42.666667pt;}
.fs4_c00472{font-size:50.666667pt;}
.fs3_c00472{font-size:56.000000pt;}
.fs1_c00472{font-size:64.000000pt;}
.fs2_c00472{font-size:69.333333pt;}
.fs0_c00472{font-size:74.666667pt;}
.y0_c00472{bottom:0.000000pt;}
.y1f_c00472{bottom:2.760000pt;}
.y1e_c00472{bottom:6.425212pt;}
.y1d_c00472{bottom:47.733333pt;}
.y1c_c00472{bottom:73.733333pt;}
.y1b_c00472{bottom:97.200000pt;}
.y1a_c00472{bottom:118.800000pt;}
.y19_c00472{bottom:140.400000pt;}
.y18_c00472{bottom:162.266667pt;}
.y17_c00472{bottom:179.066667pt;}
.y16_c00472{bottom:204.800000pt;}
.y15_c00472{bottom:227.333333pt;}
.y14_c00472{bottom:248.933333pt;}
.y13_c00472{bottom:270.000000pt;}
.y12_c00472{bottom:287.600000pt;}
.y11_c00472{bottom:308.666667pt;}
.y10_c00472{bottom:332.000000pt;}
.yf_c00472{bottom:353.066667pt;}
.ye_c00472{bottom:374.933333pt;}
.yd_c00472{bottom:397.466667pt;}
.yc_c00472{bottom:418.400000pt;}
.yb_c00472{bottom:440.666667pt;}
.ya_c00472{bottom:461.733333pt;}
.y9_c00472{bottom:483.333333pt;}
.y8_c00472{bottom:505.200000pt;}
.y7_c00472{bottom:527.333333pt;}
.y6_c00472{bottom:548.133333pt;}
.y5_c00472{bottom:570.000000pt;}
.y4_c00472{bottom:591.600000pt;}
.y3_c00472{bottom:613.466667pt;}
.y2_c00472{bottom:635.733333pt;}
.y1_c00472{bottom:657.333333pt;}
.h5_c00472{height:11.733399pt;}
.h6_c00472{height:38.937500pt;}
.h4_c00472{height:70.902344pt;}
.h1_c00472{height:73.244792pt;}
.h2_c00472{height:81.031250pt;}
.h3_c00472{height:87.783854pt;}
.h0_c00472{height:690.000000pt;}
.w1_c00472{width:93.222667pt;}
.w0_c00472{width:471.333333pt;}
.x0_c00472{left:0.000000pt;}
.x7_c00472{left:16.266667pt;}
.x6_c00472{left:20.666667pt;}
.x2_c00472{left:22.800000pt;}
.x3_c00472{left:23.733333pt;}
.x4_c00472{left:24.800000pt;}
.x5_c00472{left:25.733333pt;}
.x1_c00472{left:119.066667pt;}
.x9_c00472{left:192.834880pt;}
.x8_c00472{left:312.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_edb34b218fc3349847e907f7.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.480469;font-style:normal;font-weight:normal;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_19c45cce1073b42b23e84875.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00473{font-family:ff3_c00473;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00473{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00473{vertical-align:0.000000px;}
.ls0_c00473{letter-spacing:0.000000px;}
.ls1_c00473{letter-spacing:3.000000px;}
.ls2_c00473{letter-spacing:6.000000px;}
.sc__c00473{text-shadow:none;}
.sc0_c00473{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00473{-webkit-text-stroke:0px transparent;}
.sc0_c00473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00473{word-spacing:0.000000px;}
._17_c00473{margin-left:-12.600000px;}
._e_c00473{margin-left:-9.468000px;}
._13_c00473{margin-left:-7.776000px;}
._14_c00473{margin-left:-6.504000px;}
._c_c00473{margin-left:-5.112000px;}
._10_c00473{margin-left:-3.984000px;}
._d_c00473{margin-left:-2.916000px;}
._a_c00473{margin-left:-1.296000px;}
._b_c00473{width:1.224000px;}
._8_c00473{width:2.592000px;}
._7_c00473{width:3.852000px;}
._6_c00473{width:5.220000px;}
._9_c00473{width:6.588000px;}
._f_c00473{width:8.172000px;}
._4_c00473{width:9.240000px;}
._1_c00473{width:10.380000px;}
._18_c00473{width:11.436000px;}
._5_c00473{width:12.480000px;}
._12_c00473{width:13.680000px;}
._11_c00473{width:15.768000px;}
._15_c00473{width:17.028000px;}
._3_c00473{width:18.180000px;}
._2_c00473{width:20.820000px;}
._0_c00473{width:23.820000px;}
._16_c00473{width:25.272000px;}
._1a_c00473{width:26.808000px;}
._19_c00473{width:32.688000px;}
.fc2_c00473{color:transparent;}
.fc1_c00473{color:rgb(128,128,128);}
.fc0_c00473{color:rgb(0,0,0);}
.fs2_c00473{font-size:24.000000px;}
.fs3_c00473{font-size:48.000000px;}
.fs0_c00473{font-size:60.000000px;}
.fs1_c00473{font-size:72.000000px;}
.y0_c00473{bottom:0.000000px;}
.y1e_c00473{bottom:3.105000px;}
.y1d_c00473{bottom:7.228363px;}
.y1c_c00473{bottom:63.150000px;}
.y1b_c00473{bottom:89.100000px;}
.y1a_c00473{bottom:113.700000px;}
.y19_c00473{bottom:138.750000px;}
.y18_c00473{bottom:163.800000px;}
.y17_c00473{bottom:189.000000px;}
.y16_c00473{bottom:213.300000px;}
.y15_c00473{bottom:238.500000px;}
.y14_c00473{bottom:262.950000px;}
.y13_c00473{bottom:288.300000px;}
.y12_c00473{bottom:312.750000px;}
.y11_c00473{bottom:338.100000px;}
.y10_c00473{bottom:362.100000px;}
.yf_c00473{bottom:385.500000px;}
.ye_c00473{bottom:410.400000px;}
.yd_c00473{bottom:434.700000px;}
.yc_c00473{bottom:459.000000px;}
.yb_c00473{bottom:484.050000px;}
.ya_c00473{bottom:507.900000px;}
.y9_c00473{bottom:532.350000px;}
.y8_c00473{bottom:556.950000px;}
.y7_c00473{bottom:581.550000px;}
.y6_c00473{bottom:606.150000px;}
.y5_c00473{bottom:630.000000px;}
.y4_c00473{bottom:654.750000px;}
.y3_c00473{bottom:679.050000px;}
.y2_c00473{bottom:702.750000px;}
.y1_c00473{bottom:728.700000px;}
.h4_c00473{height:13.200074px;}
.h5_c00473{height:43.804688px;}
.h2_c00473{height:75.966797px;}
.h3_c00473{height:91.160156px;}
.h1_c00473{height:768.000000px;}
.h0_c00473{height:768.150000px;}
.w2_c00473{width:104.875500px;}
.w0_c00473{width:508.125000px;}
.w1_c00473{width:508.500000px;}
.x0_c00473{left:0.000000px;}
.x2_c00473{left:99.300000px;}
.x3_c00473{left:100.950000px;}
.x4_c00473{left:102.150000px;}
.x5_c00473{left:103.200000px;}
.x6_c00473{left:104.550000px;}
.x7_c00473{left:106.650000px;}
.x8_c00473{left:205.876740px;}
.x1_c00473{left:222.150000px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls0_c00473{letter-spacing:0.000000pt;}
.ls1_c00473{letter-spacing:2.666667pt;}
.ls2_c00473{letter-spacing:5.333333pt;}
.ws0_c00473{word-spacing:0.000000pt;}
._17_c00473{margin-left:-11.200000pt;}
._e_c00473{margin-left:-8.416000pt;}
._13_c00473{margin-left:-6.912000pt;}
._14_c00473{margin-left:-5.781333pt;}
._c_c00473{margin-left:-4.544000pt;}
._10_c00473{margin-left:-3.541333pt;}
._d_c00473{margin-left:-2.592000pt;}
._a_c00473{margin-left:-1.152000pt;}
._b_c00473{width:1.088000pt;}
._8_c00473{width:2.304000pt;}
._7_c00473{width:3.424000pt;}
._6_c00473{width:4.640000pt;}
._9_c00473{width:5.856000pt;}
._f_c00473{width:7.264000pt;}
._4_c00473{width:8.213333pt;}
._1_c00473{width:9.226667pt;}
._18_c00473{width:10.165333pt;}
._5_c00473{width:11.093333pt;}
._12_c00473{width:12.160000pt;}
._11_c00473{width:14.016000pt;}
._15_c00473{width:15.136000pt;}
._3_c00473{width:16.160000pt;}
._2_c00473{width:18.506667pt;}
._0_c00473{width:21.173333pt;}
._16_c00473{width:22.464000pt;}
._1a_c00473{width:23.829333pt;}
._19_c00473{width:29.056000pt;}
.fs2_c00473{font-size:21.333333pt;}
.fs3_c00473{font-size:42.666667pt;}
.fs0_c00473{font-size:53.333333pt;}
.fs1_c00473{font-size:64.000000pt;}
.y0_c00473{bottom:0.000000pt;}
.y1e_c00473{bottom:2.760000pt;}
.y1d_c00473{bottom:6.425212pt;}
.y1c_c00473{bottom:56.133333pt;}
.y1b_c00473{bottom:79.200000pt;}
.y1a_c00473{bottom:101.066667pt;}
.y19_c00473{bottom:123.333333pt;}
.y18_c00473{bottom:145.600000pt;}
.y17_c00473{bottom:168.000000pt;}
.y16_c00473{bottom:189.600000pt;}
.y15_c00473{bottom:212.000000pt;}
.y14_c00473{bottom:233.733333pt;}
.y13_c00473{bottom:256.266667pt;}
.y12_c00473{bottom:278.000000pt;}
.y11_c00473{bottom:300.533333pt;}
.y10_c00473{bottom:321.866667pt;}
.yf_c00473{bottom:342.666667pt;}
.ye_c00473{bottom:364.800000pt;}
.yd_c00473{bottom:386.400000pt;}
.yc_c00473{bottom:408.000000pt;}
.yb_c00473{bottom:430.266667pt;}
.ya_c00473{bottom:451.466667pt;}
.y9_c00473{bottom:473.200000pt;}
.y8_c00473{bottom:495.066667pt;}
.y7_c00473{bottom:516.933333pt;}
.y6_c00473{bottom:538.800000pt;}
.y5_c00473{bottom:560.000000pt;}
.y4_c00473{bottom:582.000000pt;}
.y3_c00473{bottom:603.600000pt;}
.y2_c00473{bottom:624.666667pt;}
.y1_c00473{bottom:647.733333pt;}
.h4_c00473{height:11.733399pt;}
.h5_c00473{height:38.937500pt;}
.h2_c00473{height:67.526042pt;}
.h3_c00473{height:81.031250pt;}
.h1_c00473{height:682.666667pt;}
.h0_c00473{height:682.800000pt;}
.w2_c00473{width:93.222667pt;}
.w0_c00473{width:451.666667pt;}
.w1_c00473{width:452.000000pt;}
.x0_c00473{left:0.000000pt;}
.x2_c00473{left:88.266667pt;}
.x3_c00473{left:89.733333pt;}
.x4_c00473{left:90.800000pt;}
.x5_c00473{left:91.733333pt;}
.x6_c00473{left:92.933333pt;}
.x7_c00473{left:94.800000pt;}
.x8_c00473{left:183.001546pt;}
.x1_c00473{left:197.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_01d950222374807cea4c60d1.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00474;src:url('chunks/assets/font_9d63b40096aa2616be4a6a12.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00474;src:url('chunks/assets/font_5c3b1062433c0b71a42f982b.woff2')format("woff");}.ff3_c00474{font-family:ff3_c00474;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00474;src:url('chunks/assets/font_51e494c66ce52666a1e55a17.woff2')format("woff");}.ff4_c00474{font-family:ff4_c00474;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00474;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00474{font-family:ff5_c00474;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00474{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.ls1_c00474{letter-spacing:0.000000px;}
.ls0_c00474{letter-spacing:3.000000px;}
.sc__c00474{text-shadow:none;}
.sc0_c00474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00474{-webkit-text-stroke:0px transparent;}
.sc0_c00474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00474{word-spacing:-37.341000px;}
.ws0_c00474{word-spacing:-33.192000px;}
.ws2_c00474{word-spacing:0.000000px;}
._1_c00474{margin-left:-10.026000px;}
._2_c00474{margin-left:-6.522000px;}
._1b_c00474{margin-left:-5.400000px;}
._8_c00474{margin-left:-4.116000px;}
._7_c00474{margin-left:-2.772000px;}
._9_c00474{margin-left:-1.728000px;}
._c_c00474{width:1.341000px;}
._0_c00474{width:2.673000px;}
._4_c00474{width:3.696000px;}
._f_c00474{width:4.980000px;}
._3_c00474{width:6.300000px;}
._5_c00474{width:7.575000px;}
._e_c00474{width:8.703000px;}
._10_c00474{width:9.747000px;}
._a_c00474{width:10.800000px;}
._b_c00474{width:12.024000px;}
._d_c00474{width:13.410000px;}
._17_c00474{width:15.036000px;}
._11_c00474{width:16.560000px;}
._15_c00474{width:18.072000px;}
._14_c00474{width:23.112000px;}
._12_c00474{width:26.703000px;}
._13_c00474{width:27.870000px;}
._18_c00474{width:29.529000px;}
._19_c00474{width:30.744000px;}
._16_c00474{width:133.899000px;}
._1c_c00474{width:288.861000px;}
._1a_c00474{width:333.024000px;}
._6_c00474{width:364.980000px;}
.fc2_c00474{color:transparent;}
.fc1_c00474{color:rgb(128,128,128);}
.fc0_c00474{color:rgb(0,0,0);}
.fs4_c00474{font-size:48.000000px;}
.fs3_c00474{font-size:63.000000px;}
.fs2_c00474{font-size:72.000000px;}
.fs0_c00474{font-size:81.000000px;}
.fs1_c00474{font-size:84.000000px;}
.y0_c00474{bottom:0.000000px;}
.y1f_c00474{bottom:3.105000px;}
.y1e_c00474{bottom:7.228357px;}
.y1d_c00474{bottom:42.930000px;}
.y1c_c00474{bottom:70.230000px;}
.y1b_c00474{bottom:98.880000px;}
.y1a_c00474{bottom:123.180000px;}
.y19_c00474{bottom:147.480000px;}
.y18_c00474{bottom:173.130000px;}
.y17_c00474{bottom:197.730000px;}
.y16_c00474{bottom:222.480000px;}
.y15_c00474{bottom:246.780000px;}
.y14_c00474{bottom:270.030000px;}
.y13_c00474{bottom:295.980000px;}
.y12_c00474{bottom:319.380000px;}
.y11_c00474{bottom:341.880000px;}
.y10_c00474{bottom:365.130000px;}
.yf_c00474{bottom:389.580000px;}
.ye_c00474{bottom:413.880000px;}
.yd_c00474{bottom:438.480000px;}
.yc_c00474{bottom:462.780000px;}
.yb_c00474{bottom:487.380000px;}
.ya_c00474{bottom:511.980000px;}
.y9_c00474{bottom:536.580000px;}
.y8_c00474{bottom:561.030000px;}
.y7_c00474{bottom:585.930000px;}
.y6_c00474{bottom:610.530000px;}
.y5_c00474{bottom:634.230000px;}
.y4_c00474{bottom:659.430000px;}
.y3_c00474{bottom:683.430000px;}
.y2_c00474{bottom:708.030000px;}
.y1_c00474{bottom:732.030000px;}
.h5_c00474{height:13.200074px;}
.h6_c00474{height:43.804688px;}
.h2_c00474{height:82.400391px;}
.h3_c00474{height:91.160156px;}
.h4_c00474{height:94.803223px;}
.h0_c00474{height:773.850000px;}
.h1_c00474{height:774.000000px;}
.w2_c00474{width:104.875500px;}
.w0_c00474{width:531.600000px;}
.w1_c00474{width:531.750000px;}
.x0_c00474{left:0.000000px;}
.x2_c00474{left:28.650000px;}
.x3_c00474{left:30.000000px;}
.x4_c00474{left:31.350000px;}
.x5_c00474{left:32.400000px;}
.x6_c00474{left:34.200000px;}
.x8_c00474{left:36.000000px;}
.x7_c00474{left:37.500000px;}
.x9_c00474{left:38.700000px;}
.xa_c00474{left:96.450000px;}
.x1_c00474{left:139.650000px;}
.xc_c00474{left:217.614258px;}
.xb_c00474{left:270.000000px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls1_c00474{letter-spacing:0.000000pt;}
.ls0_c00474{letter-spacing:2.666667pt;}
.ws1_c00474{word-spacing:-33.192000pt;}
.ws0_c00474{word-spacing:-29.504000pt;}
.ws2_c00474{word-spacing:0.000000pt;}
._1_c00474{margin-left:-8.912000pt;}
._2_c00474{margin-left:-5.797333pt;}
._1b_c00474{margin-left:-4.800000pt;}
._8_c00474{margin-left:-3.658667pt;}
._7_c00474{margin-left:-2.464000pt;}
._9_c00474{margin-left:-1.536000pt;}
._c_c00474{width:1.192000pt;}
._0_c00474{width:2.376000pt;}
._4_c00474{width:3.285333pt;}
._f_c00474{width:4.426667pt;}
._3_c00474{width:5.600000pt;}
._5_c00474{width:6.733333pt;}
._e_c00474{width:7.736000pt;}
._10_c00474{width:8.664000pt;}
._a_c00474{width:9.600000pt;}
._b_c00474{width:10.688000pt;}
._d_c00474{width:11.920000pt;}
._17_c00474{width:13.365333pt;}
._11_c00474{width:14.720000pt;}
._15_c00474{width:16.064000pt;}
._14_c00474{width:20.544000pt;}
._12_c00474{width:23.736000pt;}
._13_c00474{width:24.773333pt;}
._18_c00474{width:26.248000pt;}
._19_c00474{width:27.328000pt;}
._16_c00474{width:119.021333pt;}
._1c_c00474{width:256.765333pt;}
._1a_c00474{width:296.021333pt;}
._6_c00474{width:324.426667pt;}
.fs4_c00474{font-size:42.666667pt;}
.fs3_c00474{font-size:56.000000pt;}
.fs2_c00474{font-size:64.000000pt;}
.fs0_c00474{font-size:72.000000pt;}
.fs1_c00474{font-size:74.666667pt;}
.y0_c00474{bottom:0.000000pt;}
.y1f_c00474{bottom:2.760000pt;}
.y1e_c00474{bottom:6.425206pt;}
.y1d_c00474{bottom:38.160000pt;}
.y1c_c00474{bottom:62.426667pt;}
.y1b_c00474{bottom:87.893333pt;}
.y1a_c00474{bottom:109.493333pt;}
.y19_c00474{bottom:131.093333pt;}
.y18_c00474{bottom:153.893333pt;}
.y17_c00474{bottom:175.760000pt;}
.y16_c00474{bottom:197.760000pt;}
.y15_c00474{bottom:219.360000pt;}
.y14_c00474{bottom:240.026667pt;}
.y13_c00474{bottom:263.093333pt;}
.y12_c00474{bottom:283.893333pt;}
.y11_c00474{bottom:303.893333pt;}
.y10_c00474{bottom:324.560000pt;}
.yf_c00474{bottom:346.293333pt;}
.ye_c00474{bottom:367.893333pt;}
.yd_c00474{bottom:389.760000pt;}
.yc_c00474{bottom:411.360000pt;}
.yb_c00474{bottom:433.226667pt;}
.ya_c00474{bottom:455.093333pt;}
.y9_c00474{bottom:476.960000pt;}
.y8_c00474{bottom:498.693333pt;}
.y7_c00474{bottom:520.826667pt;}
.y6_c00474{bottom:542.693333pt;}
.y5_c00474{bottom:563.760000pt;}
.y4_c00474{bottom:586.160000pt;}
.y3_c00474{bottom:607.493333pt;}
.y2_c00474{bottom:629.360000pt;}
.y1_c00474{bottom:650.693333pt;}
.h5_c00474{height:11.733399pt;}
.h6_c00474{height:38.937500pt;}
.h2_c00474{height:73.244792pt;}
.h3_c00474{height:81.031250pt;}
.h4_c00474{height:84.269531pt;}
.h0_c00474{height:687.866667pt;}
.h1_c00474{height:688.000000pt;}
.w2_c00474{width:93.222667pt;}
.w0_c00474{width:472.533333pt;}
.w1_c00474{width:472.666667pt;}
.x0_c00474{left:0.000000pt;}
.x2_c00474{left:25.466667pt;}
.x3_c00474{left:26.666667pt;}
.x4_c00474{left:27.866667pt;}
.x5_c00474{left:28.800000pt;}
.x6_c00474{left:30.400000pt;}
.x8_c00474{left:32.000000pt;}
.x7_c00474{left:33.333333pt;}
.x9_c00474{left:34.400000pt;}
.xa_c00474{left:85.733333pt;}
.x1_c00474{left:124.133333pt;}
.xc_c00474{left:193.434896pt;}
.xb_c00474{left:240.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_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_36e2ce9689078b779e92435a.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.480469;font-style:normal;font-weight:normal;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_a427cbdd39276771df0c906c.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:1.568848;font-style:normal;font-weight:normal;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_f3522233ccff1fd48166baff.woff2')format("woff");}.ff3_c00475{font-family:ff3_c00475;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00475;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00475{font-family:ff4_c00475;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00475{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00475{vertical-align:0.000000px;}
.ls2_c00475{letter-spacing:0.000000px;}
.ls1_c00475{letter-spacing:3.000000px;}
.ls0_c00475{letter-spacing:16.248000px;}
.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:-33.192000px;}
.ws1_c00475{word-spacing:-16.248000px;}
.ws2_c00475{word-spacing:0.000000px;}
._1c_c00475{margin-left:-12.684000px;}
._12_c00475{margin-left:-10.911000px;}
._1a_c00475{margin-left:-9.063000px;}
._13_c00475{margin-left:-7.776000px;}
._1b_c00475{margin-left:-6.678000px;}
._b_c00475{margin-left:-5.202000px;}
._a_c00475{margin-left:-4.149000px;}
._7_c00475{margin-left:-2.664000px;}
._8_c00475{margin-left:-1.368000px;}
._9_c00475{width:1.887000px;}
._1_c00475{width:3.240000px;}
._5_c00475{width:4.293000px;}
._3_c00475{width:5.616000px;}
._2_c00475{width:6.768000px;}
._0_c00475{width:8.136000px;}
._4_c00475{width:9.216000px;}
._c_c00475{width:10.497000px;}
._11_c00475{width:11.922000px;}
._6_c00475{width:13.044000px;}
._18_c00475{width:14.049000px;}
._1d_c00475{width:15.204000px;}
._10_c00475{width:16.344000px;}
._f_c00475{width:18.174000px;}
._19_c00475{width:19.239000px;}
._14_c00475{width:22.731000px;}
._17_c00475{width:24.429000px;}
._e_c00475{width:25.488000px;}
._d_c00475{width:26.538000px;}
._15_c00475{width:35.199000px;}
._16_c00475{width:36.663000px;}
._1e_c00475{width:136.596000px;}
.fc2_c00475{color:transparent;}
.fc1_c00475{color:rgb(128,128,128);}
.fc0_c00475{color:rgb(0,0,0);}
.fs2_c00475{font-size:48.000000px;}
.fs0_c00475{font-size:72.000000px;}
.fs1_c00475{font-size:81.000000px;}
.y0_c00475{bottom:0.000000px;}
.y1e_c00475{bottom:3.105000px;}
.y1d_c00475{bottom:7.228369px;}
.y1c_c00475{bottom:67.470000px;}
.y1b_c00475{bottom:93.870000px;}
.y1a_c00475{bottom:118.170000px;}
.y19_c00475{bottom:143.670000px;}
.y18_c00475{bottom:168.720000px;}
.y17_c00475{bottom:192.420000px;}
.y16_c00475{bottom:218.670000px;}
.y15_c00475{bottom:242.970000px;}
.y14_c00475{bottom:267.870000px;}
.y13_c00475{bottom:292.320000px;}
.y12_c00475{bottom:317.520000px;}
.y11_c00475{bottom:341.820000px;}
.y10_c00475{bottom:365.820000px;}
.yf_c00475{bottom:389.820000px;}
.ye_c00475{bottom:414.120000px;}
.yd_c00475{bottom:437.970000px;}
.yc_c00475{bottom:461.670000px;}
.yb_c00475{bottom:486.570000px;}
.ya_c00475{bottom:510.870000px;}
.y9_c00475{bottom:535.170000px;}
.y8_c00475{bottom:559.620000px;}
.y7_c00475{bottom:583.470000px;}
.y6_c00475{bottom:608.820000px;}
.y5_c00475{bottom:634.170000px;}
.y4_c00475{bottom:655.470000px;}
.y3_c00475{bottom:681.720000px;}
.y2_c00475{bottom:705.420000px;}
.y1_c00475{bottom:732.270000px;}
.h4_c00475{height:13.200073px;}
.h5_c00475{height:43.804688px;}
.h3_c00475{height:79.497070px;}
.h2_c00475{height:91.160156px;}
.h0_c00475{height:775.950000px;}
.h1_c00475{height:776.250000px;}
.w2_c00475{width:104.875500px;}
.w0_c00475{width:512.700000px;}
.w1_c00475{width:513.000000px;}
.x0_c00475{left:0.000000px;}
.x9_c00475{left:97.650000px;}
.x8_c00475{left:98.850000px;}
.x7_c00475{left:100.200000px;}
.x5_c00475{left:102.600000px;}
.x4_c00475{left:103.950000px;}
.x3_c00475{left:106.650000px;}
.x2_c00475{left:107.700000px;}
.x6_c00475{left:151.650000px;}
.xa_c00475{left:208.164230px;}
.x1_c00475{left:232.200000px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls2_c00475{letter-spacing:0.000000pt;}
.ls1_c00475{letter-spacing:2.666667pt;}
.ls0_c00475{letter-spacing:14.442667pt;}
.ws0_c00475{word-spacing:-29.504000pt;}
.ws1_c00475{word-spacing:-14.442667pt;}
.ws2_c00475{word-spacing:0.000000pt;}
._1c_c00475{margin-left:-11.274667pt;}
._12_c00475{margin-left:-9.698667pt;}
._1a_c00475{margin-left:-8.056000pt;}
._13_c00475{margin-left:-6.912000pt;}
._1b_c00475{margin-left:-5.936000pt;}
._b_c00475{margin-left:-4.624000pt;}
._a_c00475{margin-left:-3.688000pt;}
._7_c00475{margin-left:-2.368000pt;}
._8_c00475{margin-left:-1.216000pt;}
._9_c00475{width:1.677333pt;}
._1_c00475{width:2.880000pt;}
._5_c00475{width:3.816000pt;}
._3_c00475{width:4.992000pt;}
._2_c00475{width:6.016000pt;}
._0_c00475{width:7.232000pt;}
._4_c00475{width:8.192000pt;}
._c_c00475{width:9.330667pt;}
._11_c00475{width:10.597333pt;}
._6_c00475{width:11.594667pt;}
._18_c00475{width:12.488000pt;}
._1d_c00475{width:13.514667pt;}
._10_c00475{width:14.528000pt;}
._f_c00475{width:16.154667pt;}
._19_c00475{width:17.101333pt;}
._14_c00475{width:20.205333pt;}
._17_c00475{width:21.714667pt;}
._e_c00475{width:22.656000pt;}
._d_c00475{width:23.589333pt;}
._15_c00475{width:31.288000pt;}
._16_c00475{width:32.589333pt;}
._1e_c00475{width:121.418667pt;}
.fs2_c00475{font-size:42.666667pt;}
.fs0_c00475{font-size:64.000000pt;}
.fs1_c00475{font-size:72.000000pt;}
.y0_c00475{bottom:0.000000pt;}
.y1e_c00475{bottom:2.760000pt;}
.y1d_c00475{bottom:6.425217pt;}
.y1c_c00475{bottom:59.973333pt;}
.y1b_c00475{bottom:83.440000pt;}
.y1a_c00475{bottom:105.040000pt;}
.y19_c00475{bottom:127.706667pt;}
.y18_c00475{bottom:149.973333pt;}
.y17_c00475{bottom:171.040000pt;}
.y16_c00475{bottom:194.373333pt;}
.y15_c00475{bottom:215.973333pt;}
.y14_c00475{bottom:238.106667pt;}
.y13_c00475{bottom:259.840000pt;}
.y12_c00475{bottom:282.240000pt;}
.y11_c00475{bottom:303.840000pt;}
.y10_c00475{bottom:325.173333pt;}
.yf_c00475{bottom:346.506667pt;}
.ye_c00475{bottom:368.106667pt;}
.yd_c00475{bottom:389.306667pt;}
.yc_c00475{bottom:410.373333pt;}
.yb_c00475{bottom:432.506667pt;}
.ya_c00475{bottom:454.106667pt;}
.y9_c00475{bottom:475.706667pt;}
.y8_c00475{bottom:497.440000pt;}
.y7_c00475{bottom:518.640000pt;}
.y6_c00475{bottom:541.173333pt;}
.y5_c00475{bottom:563.706667pt;}
.y4_c00475{bottom:582.640000pt;}
.y3_c00475{bottom:605.973333pt;}
.y2_c00475{bottom:627.040000pt;}
.y1_c00475{bottom:650.906667pt;}
.h4_c00475{height:11.733399pt;}
.h5_c00475{height:38.937500pt;}
.h3_c00475{height:70.664062pt;}
.h2_c00475{height:81.031250pt;}
.h0_c00475{height:689.733333pt;}
.h1_c00475{height:690.000000pt;}
.w2_c00475{width:93.222667pt;}
.w0_c00475{width:455.733333pt;}
.w1_c00475{width:456.000000pt;}
.x0_c00475{left:0.000000pt;}
.x9_c00475{left:86.800000pt;}
.x8_c00475{left:87.866667pt;}
.x7_c00475{left:89.066667pt;}
.x5_c00475{left:91.200000pt;}
.x4_c00475{left:92.400000pt;}
.x3_c00475{left:94.800000pt;}
.x2_c00475{left:95.733333pt;}
.x6_c00475{left:134.800000pt;}
.xa_c00475{left:185.034871pt;}
.x1_c00475{left:206.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e64ce2628bb5a649be40a8f2.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.480469;font-style:normal;font-weight:normal;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_2746520e142a0f04a0429be0.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:1.568848;font-style:normal;font-weight:normal;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_682cf563aed439a0ab4286c6.woff2')format("woff");}.ff3_c00476{font-family:ff3_c00476;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00476;src:url('chunks/assets/font_1893542c4d7d8549e520a109.woff2')format("woff");}.ff4_c00476{font-family:ff4_c00476;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00476;src:url('chunks/assets/font_b1411f2ef97e24585ac19400.woff2')format("woff");}.ff5_c00476{font-family:ff5_c00476;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00476;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00476{font-family:ff6_c00476;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00476{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.ls1_c00476{letter-spacing:0.000000px;}
.ls2_c00476{letter-spacing:3.000000px;}
.ls0_c00476{letter-spacing:10.188000px;}
.sc__c00476{text-shadow:none;}
.sc0_c00476{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00476{-webkit-text-stroke:0px transparent;}
.sc0_c00476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00476{word-spacing:-42.000000px;}
.ws0_c00476{word-spacing:-20.352000px;}
.ws2_c00476{word-spacing:0.000000px;}
._11_c00476{margin-left:-19.839000px;}
._19_c00476{margin-left:-12.555000px;}
._9_c00476{margin-left:-10.902000px;}
._14_c00476{margin-left:-8.487000px;}
._18_c00476{margin-left:-7.455000px;}
._d_c00476{margin-left:-5.895000px;}
._10_c00476{margin-left:-3.828000px;}
._a_c00476{margin-left:-2.484000px;}
._15_c00476{margin-left:-1.152000px;}
._3_c00476{width:1.449000px;}
._b_c00476{width:2.622000px;}
._2_c00476{width:3.795000px;}
._6_c00476{width:4.968000px;}
._e_c00476{width:5.994000px;}
._4_c00476{width:7.038000px;}
._1_c00476{width:8.832000px;}
._5_c00476{width:9.867000px;}
._7_c00476{width:10.902000px;}
._17_c00476{width:12.207000px;}
._0_c00476{width:14.007000px;}
._c_c00476{width:15.606000px;}
._16_c00476{width:17.100000px;}
._12_c00476{width:23.922000px;}
._13_c00476{width:25.680000px;}
._f_c00476{width:26.691000px;}
._1a_c00476{width:317.949000px;}
._8_c00476{width:334.767000px;}
.fc2_c00476{color:transparent;}
.fc1_c00476{color:rgb(128,128,128);}
.fc0_c00476{color:rgb(0,0,0);}
.fs6_c00476{font-size:48.000000px;}
.fs2_c00476{font-size:57.000000px;}
.fs3_c00476{font-size:63.000000px;}
.fs0_c00476{font-size:69.000000px;}
.fs1_c00476{font-size:72.000000px;}
.fs4_c00476{font-size:81.000000px;}
.fs5_c00476{font-size:84.000000px;}
.y0_c00476{bottom:0.000000px;}
.y1f_c00476{bottom:3.105000px;}
.y1e_c00476{bottom:7.228369px;}
.y1d_c00476{bottom:52.620000px;}
.y1c_c00476{bottom:79.920000px;}
.y1b_c00476{bottom:104.970000px;}
.y1a_c00476{bottom:129.870000px;}
.y19_c00476{bottom:154.620000px;}
.y18_c00476{bottom:178.920000px;}
.y17_c00476{bottom:203.520000px;}
.y16_c00476{bottom:226.770000px;}
.y15_c00476{bottom:252.120000px;}
.y14_c00476{bottom:276.420000px;}
.y13_c00476{bottom:301.020000px;}
.y12_c00476{bottom:324.720000px;}
.y11_c00476{bottom:348.570000px;}
.y10_c00476{bottom:372.570000px;}
.yf_c00476{bottom:395.820000px;}
.ye_c00476{bottom:420.570000px;}
.yd_c00476{bottom:445.770000px;}
.yc_c00476{bottom:471.120000px;}
.yb_c00476{bottom:494.820000px;}
.ya_c00476{bottom:519.120000px;}
.y9_c00476{bottom:543.270000px;}
.y8_c00476{bottom:568.320000px;}
.y7_c00476{bottom:591.870000px;}
.y6_c00476{bottom:616.920000px;}
.y5_c00476{bottom:640.470000px;}
.y4_c00476{bottom:664.170000px;}
.y3_c00476{bottom:688.770000px;}
.y2_c00476{bottom:713.370000px;}
.y1_c00476{bottom:737.070000px;}
.h6_c00476{height:13.200073px;}
.h7_c00476{height:43.804688px;}
.h4_c00476{height:79.497070px;}
.h5_c00476{height:82.400391px;}
.h2_c00476{height:87.361816px;}
.h3_c00476{height:91.160156px;}
.h0_c00476{height:774.600000px;}
.h1_c00476{height:774.750000px;}
.w1_c00476{width:104.875500px;}
.w0_c00476{width:519.750000px;}
.x0_c00476{left:0.000000px;}
.x2_c00476{left:19.950000px;}
.x3_c00476{left:21.600000px;}
.x4_c00476{left:22.950000px;}
.x5_c00476{left:24.600000px;}
.x6_c00476{left:25.650000px;}
.x1_c00476{left:142.350000px;}
.x8_c00476{left:211.689240px;}
.x7_c00476{left:244.350000px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls1_c00476{letter-spacing:0.000000pt;}
.ls2_c00476{letter-spacing:2.666667pt;}
.ls0_c00476{letter-spacing:9.056000pt;}
.ws1_c00476{word-spacing:-37.333333pt;}
.ws0_c00476{word-spacing:-18.090667pt;}
.ws2_c00476{word-spacing:0.000000pt;}
._11_c00476{margin-left:-17.634667pt;}
._19_c00476{margin-left:-11.160000pt;}
._9_c00476{margin-left:-9.690667pt;}
._14_c00476{margin-left:-7.544000pt;}
._18_c00476{margin-left:-6.626667pt;}
._d_c00476{margin-left:-5.240000pt;}
._10_c00476{margin-left:-3.402667pt;}
._a_c00476{margin-left:-2.208000pt;}
._15_c00476{margin-left:-1.024000pt;}
._3_c00476{width:1.288000pt;}
._b_c00476{width:2.330667pt;}
._2_c00476{width:3.373333pt;}
._6_c00476{width:4.416000pt;}
._e_c00476{width:5.328000pt;}
._4_c00476{width:6.256000pt;}
._1_c00476{width:7.850667pt;}
._5_c00476{width:8.770667pt;}
._7_c00476{width:9.690667pt;}
._17_c00476{width:10.850667pt;}
._0_c00476{width:12.450667pt;}
._c_c00476{width:13.872000pt;}
._16_c00476{width:15.200000pt;}
._12_c00476{width:21.264000pt;}
._13_c00476{width:22.826667pt;}
._f_c00476{width:23.725333pt;}
._1a_c00476{width:282.621333pt;}
._8_c00476{width:297.570667pt;}
.fs6_c00476{font-size:42.666667pt;}
.fs2_c00476{font-size:50.666667pt;}
.fs3_c00476{font-size:56.000000pt;}
.fs0_c00476{font-size:61.333333pt;}
.fs1_c00476{font-size:64.000000pt;}
.fs4_c00476{font-size:72.000000pt;}
.fs5_c00476{font-size:74.666667pt;}
.y0_c00476{bottom:0.000000pt;}
.y1f_c00476{bottom:2.760000pt;}
.y1e_c00476{bottom:6.425217pt;}
.y1d_c00476{bottom:46.773333pt;}
.y1c_c00476{bottom:71.040000pt;}
.y1b_c00476{bottom:93.306667pt;}
.y1a_c00476{bottom:115.440000pt;}
.y19_c00476{bottom:137.440000pt;}
.y18_c00476{bottom:159.040000pt;}
.y17_c00476{bottom:180.906667pt;}
.y16_c00476{bottom:201.573333pt;}
.y15_c00476{bottom:224.106667pt;}
.y14_c00476{bottom:245.706667pt;}
.y13_c00476{bottom:267.573333pt;}
.y12_c00476{bottom:288.640000pt;}
.y11_c00476{bottom:309.840000pt;}
.y10_c00476{bottom:331.173333pt;}
.yf_c00476{bottom:351.840000pt;}
.ye_c00476{bottom:373.840000pt;}
.yd_c00476{bottom:396.240000pt;}
.yc_c00476{bottom:418.773333pt;}
.yb_c00476{bottom:439.840000pt;}
.ya_c00476{bottom:461.440000pt;}
.y9_c00476{bottom:482.906667pt;}
.y8_c00476{bottom:505.173333pt;}
.y7_c00476{bottom:526.106667pt;}
.y6_c00476{bottom:548.373333pt;}
.y5_c00476{bottom:569.306667pt;}
.y4_c00476{bottom:590.373333pt;}
.y3_c00476{bottom:612.240000pt;}
.y2_c00476{bottom:634.106667pt;}
.y1_c00476{bottom:655.173333pt;}
.h6_c00476{height:11.733399pt;}
.h7_c00476{height:38.937500pt;}
.h4_c00476{height:70.664062pt;}
.h5_c00476{height:73.244792pt;}
.h2_c00476{height:77.654948pt;}
.h3_c00476{height:81.031250pt;}
.h0_c00476{height:688.533333pt;}
.h1_c00476{height:688.666667pt;}
.w1_c00476{width:93.222667pt;}
.w0_c00476{width:462.000000pt;}
.x0_c00476{left:0.000000pt;}
.x2_c00476{left:17.733333pt;}
.x3_c00476{left:19.200000pt;}
.x4_c00476{left:20.400000pt;}
.x5_c00476{left:21.866667pt;}
.x6_c00476{left:22.800000pt;}
.x1_c00476{left:126.533333pt;}
.x8_c00476{left:188.168213pt;}
.x7_c00476{left:217.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5379a80fffeb56b76a82042b.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.592000;font-style:normal;font-weight:normal;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_42ca6a7f4ee780e6466fa4ba.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:1.575000;font-style:normal;font-weight:normal;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_978e7eee28ebd009520f2435.woff2')format("woff");}.ff3_c00477{font-family:ff3_c00477;line-height:1.568848;font-style:normal;font-weight:normal;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_f062226c678f809ab745877b.woff2')format("woff");}.ff4_c00477{font-family:ff4_c00477;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00477;src:url('chunks/assets/font_e02de1e2cfe9f6b1e3206b04.woff2')format("woff");}.ff5_c00477{font-family:ff5_c00477;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00477;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00477{font-family:ff6_c00477;line-height:1.219238;font-style: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:-3.000000px;}
.ls2_c00477{letter-spacing:0.000000px;}
.ls0_c00477{letter-spacing:3.000000px;}
.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:-36.000000px;}
.ws1_c00477{word-spacing:-33.192000px;}
.ws2_c00477{word-spacing:-20.352000px;}
.ws3_c00477{word-spacing:0.000000px;}
._27_c00477{margin-left:-61.803000px;}
._24_c00477{margin-left:-60.606000px;}
._1c_c00477{margin-left:-27.528000px;}
._20_c00477{margin-left:-25.032000px;}
._21_c00477{margin-left:-20.412000px;}
._1b_c00477{margin-left:-12.432000px;}
._1a_c00477{margin-left:-10.248000px;}
._19_c00477{margin-left:-9.180000px;}
._d_c00477{margin-left:-7.032000px;}
._18_c00477{margin-left:-5.472000px;}
._b_c00477{margin-left:-3.528000px;}
._a_c00477{margin-left:-2.376000px;}
._e_c00477{margin-left:-1.284000px;}
._7_c00477{width:1.512000px;}
._f_c00477{width:2.880000px;}
._4_c00477{width:4.260000px;}
._6_c00477{width:5.460000px;}
._1_c00477{width:6.660000px;}
._c_c00477{width:8.352000px;}
._5_c00477{width:10.020000px;}
._8_c00477{width:11.436000px;}
._9_c00477{width:13.536000px;}
._10_c00477{width:15.108000px;}
._11_c00477{width:16.548000px;}
._12_c00477{width:17.784000px;}
._2_c00477{width:18.900000px;}
._3_c00477{width:20.520000px;}
._17_c00477{width:21.996000px;}
._16_c00477{width:23.736000px;}
._0_c00477{width:25.320000px;}
._1d_c00477{width:27.072000px;}
._13_c00477{width:28.080000px;}
._14_c00477{width:30.048000px;}
._1f_c00477{width:32.736000px;}
._1e_c00477{width:36.780000px;}
._15_c00477{width:38.508000px;}
._23_c00477{width:52.623000px;}
._25_c00477{width:99.414000px;}
._22_c00477{width:109.245000px;}
._26_c00477{width:296.811000px;}
._28_c00477{width:355.635000px;}
.fc2_c00477{color:transparent;}
.fc1_c00477{color:rgb(128,128,128);}
.fc0_c00477{color:rgb(0,0,0);}
.fs3_c00477{font-size:48.000000px;}
.fs0_c00477{font-size:60.000000px;}
.fs2_c00477{font-size:63.000000px;}
.fs1_c00477{font-size:72.000000px;}
.y0_c00477{bottom:0.000000px;}
.y1f_c00477{bottom:3.105000px;}
.y1e_c00477{bottom:7.228355px;}
.y1d_c00477{bottom:47.235000px;}
.y1c_c00477{bottom:66.735000px;}
.y1b_c00477{bottom:92.835000px;}
.y1a_c00477{bottom:118.035000px;}
.y19_c00477{bottom:142.335000px;}
.y18_c00477{bottom:167.085000px;}
.y17_c00477{bottom:191.985000px;}
.y16_c00477{bottom:216.885000px;}
.y15_c00477{bottom:241.635000px;}
.y14_c00477{bottom:265.935000px;}
.y13_c00477{bottom:291.585000px;}
.y12_c00477{bottom:316.935000px;}
.y11_c00477{bottom:340.485000px;}
.y10_c00477{bottom:365.835000px;}
.yf_c00477{bottom:389.685000px;}
.ye_c00477{bottom:414.435000px;}
.yd_c00477{bottom:438.735000px;}
.yc_c00477{bottom:463.335000px;}
.yb_c00477{bottom:487.935000px;}
.ya_c00477{bottom:512.535000px;}
.y9_c00477{bottom:537.285000px;}
.y8_c00477{bottom:561.885000px;}
.y7_c00477{bottom:585.885000px;}
.y6_c00477{bottom:610.785000px;}
.y5_c00477{bottom:635.535000px;}
.y4_c00477{bottom:660.135000px;}
.y3_c00477{bottom:684.735000px;}
.y2_c00477{bottom:709.335000px;}
.y1_c00477{bottom:734.385000px;}
.h5_c00477{height:13.200074px;}
.h6_c00477{height:43.804688px;}
.h2_c00477{height:65.040000px;}
.h4_c00477{height:79.765137px;}
.h3_c00477{height:91.160156px;}
.h1_c00477{height:772.500000px;}
.h0_c00477{height:772.725000px;}
.w1_c00477{width:104.875500px;}
.w0_c00477{width:509.250000px;}
.x0_c00477{left:0.000000px;}
.x5_c00477{left:103.950000px;}
.x4_c00477{left:105.000000px;}
.x3_c00477{left:106.650000px;}
.x2_c00477{left:108.450000px;}
.x6_c00477{left:119.250000px;}
.x7_c00477{left:206.439240px;}
.x1_c00477{left:238.950000px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls1_c00477{letter-spacing:-2.666667pt;}
.ls2_c00477{letter-spacing:0.000000pt;}
.ls0_c00477{letter-spacing:2.666667pt;}
.ws0_c00477{word-spacing:-32.000000pt;}
.ws1_c00477{word-spacing:-29.504000pt;}
.ws2_c00477{word-spacing:-18.090667pt;}
.ws3_c00477{word-spacing:0.000000pt;}
._27_c00477{margin-left:-54.936000pt;}
._24_c00477{margin-left:-53.872000pt;}
._1c_c00477{margin-left:-24.469333pt;}
._20_c00477{margin-left:-22.250667pt;}
._21_c00477{margin-left:-18.144000pt;}
._1b_c00477{margin-left:-11.050667pt;}
._1a_c00477{margin-left:-9.109333pt;}
._19_c00477{margin-left:-8.160000pt;}
._d_c00477{margin-left:-6.250667pt;}
._18_c00477{margin-left:-4.864000pt;}
._b_c00477{margin-left:-3.136000pt;}
._a_c00477{margin-left:-2.112000pt;}
._e_c00477{margin-left:-1.141333pt;}
._7_c00477{width:1.344000pt;}
._f_c00477{width:2.560000pt;}
._4_c00477{width:3.786667pt;}
._6_c00477{width:4.853333pt;}
._1_c00477{width:5.920000pt;}
._c_c00477{width:7.424000pt;}
._5_c00477{width:8.906667pt;}
._8_c00477{width:10.165333pt;}
._9_c00477{width:12.032000pt;}
._10_c00477{width:13.429333pt;}
._11_c00477{width:14.709333pt;}
._12_c00477{width:15.808000pt;}
._2_c00477{width:16.800000pt;}
._3_c00477{width:18.240000pt;}
._17_c00477{width:19.552000pt;}
._16_c00477{width:21.098667pt;}
._0_c00477{width:22.506667pt;}
._1d_c00477{width:24.064000pt;}
._13_c00477{width:24.960000pt;}
._14_c00477{width:26.709333pt;}
._1f_c00477{width:29.098667pt;}
._1e_c00477{width:32.693333pt;}
._15_c00477{width:34.229333pt;}
._23_c00477{width:46.776000pt;}
._25_c00477{width:88.368000pt;}
._22_c00477{width:97.106667pt;}
._26_c00477{width:263.832000pt;}
._28_c00477{width:316.120000pt;}
.fs3_c00477{font-size:42.666667pt;}
.fs0_c00477{font-size:53.333333pt;}
.fs2_c00477{font-size:56.000000pt;}
.fs1_c00477{font-size:64.000000pt;}
.y0_c00477{bottom:0.000000pt;}
.y1f_c00477{bottom:2.760000pt;}
.y1e_c00477{bottom:6.425204pt;}
.y1d_c00477{bottom:41.986667pt;}
.y1c_c00477{bottom:59.320000pt;}
.y1b_c00477{bottom:82.520000pt;}
.y1a_c00477{bottom:104.920000pt;}
.y19_c00477{bottom:126.520000pt;}
.y18_c00477{bottom:148.520000pt;}
.y17_c00477{bottom:170.653333pt;}
.y16_c00477{bottom:192.786667pt;}
.y15_c00477{bottom:214.786667pt;}
.y14_c00477{bottom:236.386667pt;}
.y13_c00477{bottom:259.186667pt;}
.y12_c00477{bottom:281.720000pt;}
.y11_c00477{bottom:302.653333pt;}
.y10_c00477{bottom:325.186667pt;}
.yf_c00477{bottom:346.386667pt;}
.ye_c00477{bottom:368.386667pt;}
.yd_c00477{bottom:389.986667pt;}
.yc_c00477{bottom:411.853333pt;}
.yb_c00477{bottom:433.720000pt;}
.ya_c00477{bottom:455.586667pt;}
.y9_c00477{bottom:477.586667pt;}
.y8_c00477{bottom:499.453333pt;}
.y7_c00477{bottom:520.786667pt;}
.y6_c00477{bottom:542.920000pt;}
.y5_c00477{bottom:564.920000pt;}
.y4_c00477{bottom:586.786667pt;}
.y3_c00477{bottom:608.653333pt;}
.y2_c00477{bottom:630.520000pt;}
.y1_c00477{bottom:652.786667pt;}
.h5_c00477{height:11.733399pt;}
.h6_c00477{height:38.937500pt;}
.h2_c00477{height:57.813333pt;}
.h4_c00477{height:70.902344pt;}
.h3_c00477{height:81.031250pt;}
.h1_c00477{height:686.666667pt;}
.h0_c00477{height:686.866667pt;}
.w1_c00477{width:93.222667pt;}
.w0_c00477{width:452.666667pt;}
.x0_c00477{left:0.000000pt;}
.x5_c00477{left:92.400000pt;}
.x4_c00477{left:93.333333pt;}
.x3_c00477{left:94.800000pt;}
.x2_c00477{left:96.400000pt;}
.x6_c00477{left:106.000000pt;}
.x7_c00477{left:183.501546pt;}
.x1_c00477{left:212.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bcde085101fccce79515e5e7.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.480469;font-style:normal;font-weight:normal;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_01cb2b5e82a27fc1aabf1f7f.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:1.568848;font-style:normal;font-weight:normal;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_c4d3aeedec1bf1733dcf0820.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00478;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00478{font-family:ff4_c00478;line-height:1.219238;font-style: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.000000px;}
.ls1_c00478{letter-spacing:2.985000px;}
.ls0_c00478{letter-spacing:3.000000px;}
.sc__c00478{text-shadow:none;}
.sc0_c00478{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00478{-webkit-text-stroke:0px transparent;}
.sc0_c00478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00478{word-spacing:-33.036000px;}
.ws0_c00478{word-spacing:-17.352000px;}
.ws2_c00478{word-spacing:0.000000px;}
._1c_c00478{margin-left:-21.408000px;}
._18_c00478{margin-left:-18.576000px;}
._16_c00478{margin-left:-14.112000px;}
._1d_c00478{margin-left:-12.888000px;}
._17_c00478{margin-left:-11.808000px;}
._15_c00478{margin-left:-9.432000px;}
._d_c00478{margin-left:-7.920000px;}
._10_c00478{margin-left:-6.624000px;}
._7_c00478{margin-left:-5.184000px;}
._a_c00478{margin-left:-3.456000px;}
._b_c00478{margin-left:-1.512000px;}
._9_c00478{width:1.080000px;}
._8_c00478{width:2.088000px;}
._c_c00478{width:3.096000px;}
._2_c00478{width:4.248000px;}
._5_c00478{width:5.544000px;}
._4_c00478{width:7.416000px;}
._14_c00478{width:8.568000px;}
._e_c00478{width:9.720000px;}
._3_c00478{width:11.664000px;}
._12_c00478{width:13.392000px;}
._1_c00478{width:14.400000px;}
._f_c00478{width:15.480000px;}
._11_c00478{width:17.064000px;}
._0_c00478{width:19.296000px;}
._1b_c00478{width:22.752000px;}
._19_c00478{width:23.856000px;}
._13_c00478{width:25.272000px;}
._1a_c00478{width:33.624000px;}
._1e_c00478{width:316.560000px;}
._6_c00478{width:339.336000px;}
.fc2_c00478{color:transparent;}
.fc1_c00478{color:rgb(128,128,128);}
.fc0_c00478{color:rgb(0,0,0);}
.fs2_c00478{font-size:48.000000px;}
.fs1_c00478{font-size:63.000000px;}
.fs0_c00478{font-size:72.000000px;}
.y0_c00478{bottom:0.000000px;}
.y1f_c00478{bottom:3.105000px;}
.y1e_c00478{bottom:7.228363px;}
.y1d_c00478{bottom:56.250000px;}
.y1c_c00478{bottom:83.400000px;}
.y1b_c00478{bottom:109.350000px;}
.y1a_c00478{bottom:134.250000px;}
.y19_c00478{bottom:159.000000px;}
.y18_c00478{bottom:183.600000px;}
.y17_c00478{bottom:208.350000px;}
.y16_c00478{bottom:232.800000px;}
.y15_c00478{bottom:256.800000px;}
.y14_c00478{bottom:281.400000px;}
.y13_c00478{bottom:305.550000px;}
.y12_c00478{bottom:328.350000px;}
.y11_c00478{bottom:351.000000px;}
.y10_c00478{bottom:375.000000px;}
.yf_c00478{bottom:399.600000px;}
.ye_c00478{bottom:423.900000px;}
.yd_c00478{bottom:448.500000px;}
.yc_c00478{bottom:472.800000px;}
.yb_c00478{bottom:497.550000px;}
.ya_c00478{bottom:522.000000px;}
.y9_c00478{bottom:546.750000px;}
.y8_c00478{bottom:571.050000px;}
.y7_c00478{bottom:595.800000px;}
.y6_c00478{bottom:620.400000px;}
.y5_c00478{bottom:644.850000px;}
.y4_c00478{bottom:670.500000px;}
.y3_c00478{bottom:694.650000px;}
.y2_c00478{bottom:719.250000px;}
.y1_c00478{bottom:744.450000px;}
.h4_c00478{height:13.200074px;}
.h5_c00478{height:43.804688px;}
.h2_c00478{height:84.269531px;}
.h3_c00478{height:91.160156px;}
.h1_c00478{height:780.000000px;}
.h0_c00478{height:780.300000px;}
.w2_c00478{width:104.875500px;}
.w1_c00478{width:515.250000px;}
.w0_c00478{width:515.400000px;}
.x0_c00478{left:0.000000px;}
.x7_c00478{left:13.800000px;}
.x2_c00478{left:17.250000px;}
.x3_c00478{left:18.600000px;}
.x4_c00478{left:19.800000px;}
.x5_c00478{left:22.200000px;}
.x8_c00478{left:23.550000px;}
.x6_c00478{left:26.400000px;}
.x1_c00478{left:137.100000px;}
.xa_c00478{left:209.514267px;}
.x9_c00478{left:259.200000px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls2_c00478{letter-spacing:0.000000pt;}
.ls1_c00478{letter-spacing:2.653333pt;}
.ls0_c00478{letter-spacing:2.666667pt;}
.ws1_c00478{word-spacing:-29.365333pt;}
.ws0_c00478{word-spacing:-15.424000pt;}
.ws2_c00478{word-spacing:0.000000pt;}
._1c_c00478{margin-left:-19.029333pt;}
._18_c00478{margin-left:-16.512000pt;}
._16_c00478{margin-left:-12.544000pt;}
._1d_c00478{margin-left:-11.456000pt;}
._17_c00478{margin-left:-10.496000pt;}
._15_c00478{margin-left:-8.384000pt;}
._d_c00478{margin-left:-7.040000pt;}
._10_c00478{margin-left:-5.888000pt;}
._7_c00478{margin-left:-4.608000pt;}
._a_c00478{margin-left:-3.072000pt;}
._b_c00478{margin-left:-1.344000pt;}
._9_c00478{width:0.960000pt;}
._8_c00478{width:1.856000pt;}
._c_c00478{width:2.752000pt;}
._2_c00478{width:3.776000pt;}
._5_c00478{width:4.928000pt;}
._4_c00478{width:6.592000pt;}
._14_c00478{width:7.616000pt;}
._e_c00478{width:8.640000pt;}
._3_c00478{width:10.368000pt;}
._12_c00478{width:11.904000pt;}
._1_c00478{width:12.800000pt;}
._f_c00478{width:13.760000pt;}
._11_c00478{width:15.168000pt;}
._0_c00478{width:17.152000pt;}
._1b_c00478{width:20.224000pt;}
._19_c00478{width:21.205333pt;}
._13_c00478{width:22.464000pt;}
._1a_c00478{width:29.888000pt;}
._1e_c00478{width:281.386667pt;}
._6_c00478{width:301.632000pt;}
.fs2_c00478{font-size:42.666667pt;}
.fs1_c00478{font-size:56.000000pt;}
.fs0_c00478{font-size:64.000000pt;}
.y0_c00478{bottom:0.000000pt;}
.y1f_c00478{bottom:2.760000pt;}
.y1e_c00478{bottom:6.425212pt;}
.y1d_c00478{bottom:50.000000pt;}
.y1c_c00478{bottom:74.133333pt;}
.y1b_c00478{bottom:97.200000pt;}
.y1a_c00478{bottom:119.333333pt;}
.y19_c00478{bottom:141.333333pt;}
.y18_c00478{bottom:163.200000pt;}
.y17_c00478{bottom:185.200000pt;}
.y16_c00478{bottom:206.933333pt;}
.y15_c00478{bottom:228.266667pt;}
.y14_c00478{bottom:250.133333pt;}
.y13_c00478{bottom:271.600000pt;}
.y12_c00478{bottom:291.866667pt;}
.y11_c00478{bottom:312.000000pt;}
.y10_c00478{bottom:333.333333pt;}
.yf_c00478{bottom:355.200000pt;}
.ye_c00478{bottom:376.800000pt;}
.yd_c00478{bottom:398.666667pt;}
.yc_c00478{bottom:420.266667pt;}
.yb_c00478{bottom:442.266667pt;}
.ya_c00478{bottom:464.000000pt;}
.y9_c00478{bottom:486.000000pt;}
.y8_c00478{bottom:507.600000pt;}
.y7_c00478{bottom:529.600000pt;}
.y6_c00478{bottom:551.466667pt;}
.y5_c00478{bottom:573.200000pt;}
.y4_c00478{bottom:596.000000pt;}
.y3_c00478{bottom:617.466667pt;}
.y2_c00478{bottom:639.333333pt;}
.y1_c00478{bottom:661.733333pt;}
.h4_c00478{height:11.733399pt;}
.h5_c00478{height:38.937500pt;}
.h2_c00478{height:74.906250pt;}
.h3_c00478{height:81.031250pt;}
.h1_c00478{height:693.333333pt;}
.h0_c00478{height:693.600000pt;}
.w2_c00478{width:93.222667pt;}
.w1_c00478{width:458.000000pt;}
.w0_c00478{width:458.133333pt;}
.x0_c00478{left:0.000000pt;}
.x7_c00478{left:12.266667pt;}
.x2_c00478{left:15.333333pt;}
.x3_c00478{left:16.533333pt;}
.x4_c00478{left:17.600000pt;}
.x5_c00478{left:19.733333pt;}
.x8_c00478{left:20.933333pt;}
.x6_c00478{left:23.466667pt;}
.x1_c00478{left:121.866667pt;}
.xa_c00478{left:186.234904pt;}
.x9_c00478{left:230.400000pt;}
}





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

.ir_c00479:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00479{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00479;src:url('chunks/assets/font_d32d5d5f092f958627019f9a.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00479;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00479;src:url('chunks/assets/font_0b3dd49d1db5e3be2dd5a964.woff2')format("woff");}.ff3_c00479{font-family:ff3_c00479;line-height:1.568848;font-style:normal;font-weight:normal;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_d1616548cf52a1d04fe6324a.woff2')format("woff");}.ff4_c00479{font-family:ff4_c00479;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00479{font-family:ff5_c00479;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00479{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00479{vertical-align:0.000000px;}
.ls1_c00479{letter-spacing:0.000000px;}
.ls0_c00479{letter-spacing:3.000000px;}
.sc__c00479{text-shadow:none;}
.sc0_c00479{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00479{-webkit-text-stroke:0px transparent;}
.sc0_c00479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00479{word-spacing:-33.192000px;}
.ws1_c00479{word-spacing:0.000000px;}
._12_c00479{margin-left:-23.580000px;}
._18_c00479{margin-left:-17.004000px;}
._1f_c00479{margin-left:-11.592000px;}
._1e_c00479{margin-left:-9.852000px;}
._f_c00479{margin-left:-8.616000px;}
._10_c00479{margin-left:-7.548000px;}
._7_c00479{margin-left:-6.336000px;}
._14_c00479{margin-left:-5.256000px;}
._e_c00479{margin-left:-4.248000px;}
._6_c00479{margin-left:-2.988000px;}
._8_c00479{margin-left:-1.728000px;}
._1_c00479{width:1.848000px;}
._2_c00479{width:3.276000px;}
._0_c00479{width:4.452000px;}
._19_c00479{width:5.508000px;}
._4_c00479{width:6.804000px;}
._3_c00479{width:8.316000px;}
._15_c00479{width:9.468000px;}
._5_c00479{width:10.656000px;}
._9_c00479{width:11.880000px;}
._a_c00479{width:13.176000px;}
._c_c00479{width:14.664000px;}
._1c_c00479{width:16.224000px;}
._b_c00479{width:18.084000px;}
._17_c00479{width:21.540000px;}
._11_c00479{width:24.600000px;}
._1a_c00479{width:27.972000px;}
._d_c00479{width:29.172000px;}
._13_c00479{width:32.448000px;}
._16_c00479{width:57.732000px;}
._1d_c00479{width:72.888000px;}
._1b_c00479{width:186.396000px;}
.fc2_c00479{color:transparent;}
.fc1_c00479{color:rgb(128,128,128);}
.fc0_c00479{color:rgb(0,0,0);}
.fs3_c00479{font-size:48.000000px;}
.fs2_c00479{font-size:57.000000px;}
.fs1_c00479{font-size:72.000000px;}
.fs0_c00479{font-size:84.000000px;}
.y0_c00479{bottom:0.000000px;}
.y1f_c00479{bottom:3.105000px;}
.y1e_c00479{bottom:7.228371px;}
.y1d_c00479{bottom:54.015000px;}
.y1c_c00479{bottom:75.615000px;}
.y1b_c00479{bottom:100.215000px;}
.y1a_c00479{bottom:124.965000px;}
.y19_c00479{bottom:150.915000px;}
.y18_c00479{bottom:174.465000px;}
.y17_c00479{bottom:199.815000px;}
.y16_c00479{bottom:224.115000px;}
.y15_c00479{bottom:249.765000px;}
.y14_c00479{bottom:274.365000px;}
.y13_c00479{bottom:299.115000px;}
.y12_c00479{bottom:324.015000px;}
.y11_c00479{bottom:347.715000px;}
.y10_c00479{bottom:371.565000px;}
.yf_c00479{bottom:396.015000px;}
.ye_c00479{bottom:420.615000px;}
.yd_c00479{bottom:445.215000px;}
.yc_c00479{bottom:469.515000px;}
.yb_c00479{bottom:494.415000px;}
.ya_c00479{bottom:518.415000px;}
.y9_c00479{bottom:543.015000px;}
.y8_c00479{bottom:567.015000px;}
.y7_c00479{bottom:591.615000px;}
.y6_c00479{bottom:616.665000px;}
.y5_c00479{bottom:640.965000px;}
.y4_c00479{bottom:666.015000px;}
.y3_c00479{bottom:689.865000px;}
.y2_c00479{bottom:714.615000px;}
.y1_c00479{bottom:740.265000px;}
.h5_c00479{height:13.200074px;}
.h6_c00479{height:43.804688px;}
.h4_c00479{height:72.168457px;}
.h2_c00479{height:82.441406px;}
.h3_c00479{height:91.160156px;}
.h0_c00479{height:771.675000px;}
.h1_c00479{height:771.750000px;}
.w2_c00479{width:104.875500px;}
.w1_c00479{width:505.500000px;}
.w0_c00479{width:505.725000px;}
.x0_c00479{left:0.000000px;}
.x5_c00479{left:94.200000px;}
.x4_c00479{left:95.400000px;}
.x2_c00479{left:96.600000px;}
.x3_c00479{left:98.100000px;}
.x7_c00479{left:204.676758px;}
.x1_c00479{left:227.850000px;}
.x6_c00479{left:429.300000px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls1_c00479{letter-spacing:0.000000pt;}
.ls0_c00479{letter-spacing:2.666667pt;}
.ws0_c00479{word-spacing:-29.504000pt;}
.ws1_c00479{word-spacing:0.000000pt;}
._12_c00479{margin-left:-20.960000pt;}
._18_c00479{margin-left:-15.114667pt;}
._1f_c00479{margin-left:-10.304000pt;}
._1e_c00479{margin-left:-8.757333pt;}
._f_c00479{margin-left:-7.658667pt;}
._10_c00479{margin-left:-6.709333pt;}
._7_c00479{margin-left:-5.632000pt;}
._14_c00479{margin-left:-4.672000pt;}
._e_c00479{margin-left:-3.776000pt;}
._6_c00479{margin-left:-2.656000pt;}
._8_c00479{margin-left:-1.536000pt;}
._1_c00479{width:1.642667pt;}
._2_c00479{width:2.912000pt;}
._0_c00479{width:3.957333pt;}
._19_c00479{width:4.896000pt;}
._4_c00479{width:6.048000pt;}
._3_c00479{width:7.392000pt;}
._15_c00479{width:8.416000pt;}
._5_c00479{width:9.472000pt;}
._9_c00479{width:10.560000pt;}
._a_c00479{width:11.712000pt;}
._c_c00479{width:13.034667pt;}
._1c_c00479{width:14.421333pt;}
._b_c00479{width:16.074667pt;}
._17_c00479{width:19.146667pt;}
._11_c00479{width:21.866667pt;}
._1a_c00479{width:24.864000pt;}
._d_c00479{width:25.930667pt;}
._13_c00479{width:28.842667pt;}
._16_c00479{width:51.317333pt;}
._1d_c00479{width:64.789333pt;}
._1b_c00479{width:165.685333pt;}
.fs3_c00479{font-size:42.666667pt;}
.fs2_c00479{font-size:50.666667pt;}
.fs1_c00479{font-size:64.000000pt;}
.fs0_c00479{font-size:74.666667pt;}
.y0_c00479{bottom:0.000000pt;}
.y1f_c00479{bottom:2.760000pt;}
.y1e_c00479{bottom:6.425219pt;}
.y1d_c00479{bottom:48.013333pt;}
.y1c_c00479{bottom:67.213333pt;}
.y1b_c00479{bottom:89.080000pt;}
.y1a_c00479{bottom:111.080000pt;}
.y19_c00479{bottom:134.146667pt;}
.y18_c00479{bottom:155.080000pt;}
.y17_c00479{bottom:177.613333pt;}
.y16_c00479{bottom:199.213333pt;}
.y15_c00479{bottom:222.013333pt;}
.y14_c00479{bottom:243.880000pt;}
.y13_c00479{bottom:265.880000pt;}
.y12_c00479{bottom:288.013333pt;}
.y11_c00479{bottom:309.080000pt;}
.y10_c00479{bottom:330.280000pt;}
.yf_c00479{bottom:352.013333pt;}
.ye_c00479{bottom:373.880000pt;}
.yd_c00479{bottom:395.746667pt;}
.yc_c00479{bottom:417.346667pt;}
.yb_c00479{bottom:439.480000pt;}
.ya_c00479{bottom:460.813333pt;}
.y9_c00479{bottom:482.680000pt;}
.y8_c00479{bottom:504.013333pt;}
.y7_c00479{bottom:525.880000pt;}
.y6_c00479{bottom:548.146667pt;}
.y5_c00479{bottom:569.746667pt;}
.y4_c00479{bottom:592.013333pt;}
.y3_c00479{bottom:613.213333pt;}
.y2_c00479{bottom:635.213333pt;}
.y1_c00479{bottom:658.013333pt;}
.h5_c00479{height:11.733399pt;}
.h6_c00479{height:38.937500pt;}
.h4_c00479{height:64.149740pt;}
.h2_c00479{height:73.281250pt;}
.h3_c00479{height:81.031250pt;}
.h0_c00479{height:685.933333pt;}
.h1_c00479{height:686.000000pt;}
.w2_c00479{width:93.222667pt;}
.w1_c00479{width:449.333333pt;}
.w0_c00479{width:449.533333pt;}
.x0_c00479{left:0.000000pt;}
.x5_c00479{left:83.733333pt;}
.x4_c00479{left:84.800000pt;}
.x2_c00479{left:85.866667pt;}
.x3_c00479{left:87.200000pt;}
.x7_c00479{left:181.934896pt;}
.x1_c00479{left:202.533333pt;}
.x6_c00479{left:381.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_65a4969296fa20bd1ccb170a.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.568848;font-style:normal;font-weight:normal;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_d1f73f398754e3a78ab068f9.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:1.480469;font-style:normal;font-weight:normal;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_8366dc5a483edcec6ffdaa8b.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00480;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00480{font-family:ff4_c00480;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00480{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00480{vertical-align:0.000000px;}
.ls1_c00480{letter-spacing:-3.000000px;}
.ls2_c00480{letter-spacing:0.000000px;}
.ls0_c00480{letter-spacing:3.000000px;}
.ls3_c00480{letter-spacing:9.000000px;}
.sc__c00480{text-shadow:none;}
.sc0_c00480{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00480{-webkit-text-stroke:0px transparent;}
.sc0_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00480{word-spacing:-38.970000px;}
.ws1_c00480{word-spacing:-17.352000px;}
.ws2_c00480{word-spacing:0.000000px;}
._9_c00480{margin-left:-18.129000px;}
._13_c00480{margin-left:-9.663000px;}
._2_c00480{margin-left:-6.699000px;}
._a_c00480{margin-left:-5.400000px;}
._12_c00480{margin-left:-4.299000px;}
._3_c00480{margin-left:-2.925000px;}
._d_c00480{margin-left:-1.392000px;}
._6_c00480{width:1.740000px;}
._f_c00480{width:2.880000px;}
._0_c00480{width:4.524000px;}
._11_c00480{width:5.580000px;}
._4_c00480{width:6.600000px;}
._b_c00480{width:7.776000px;}
._c_c00480{width:9.072000px;}
._7_c00480{width:10.620000px;}
._1_c00480{width:11.658000px;}
._5_c00480{width:13.320000px;}
._e_c00480{width:14.481000px;}
._16_c00480{width:15.852000px;}
._14_c00480{width:24.048000px;}
._15_c00480{width:29.106000px;}
._10_c00480{width:50.808000px;}
._17_c00480{width:302.352000px;}
._8_c00480{width:343.908000px;}
.fc2_c00480{color:transparent;}
.fc1_c00480{color:rgb(128,128,128);}
.fc0_c00480{color:rgb(0,0,0);}
.fs5_c00480{font-size:48.000000px;}
.fs1_c00480{font-size:60.000000px;}
.fs4_c00480{font-size:69.000000px;}
.fs3_c00480{font-size:72.000000px;}
.fs0_c00480{font-size:87.000000px;}
.fs2_c00480{font-size:90.000000px;}
.y0_c00480{bottom:0.000000px;}
.y1f_c00480{bottom:3.105000px;}
.y1e_c00480{bottom:7.228363px;}
.y1d_c00480{bottom:44.850000px;}
.y1c_c00480{bottom:69.150000px;}
.y1b_c00480{bottom:94.200000px;}
.y1a_c00480{bottom:119.850000px;}
.y19_c00480{bottom:144.750000px;}
.y18_c00480{bottom:169.050000px;}
.y17_c00480{bottom:194.100000px;}
.y16_c00480{bottom:218.400000px;}
.y15_c00480{bottom:242.700000px;}
.y14_c00480{bottom:267.300000px;}
.y13_c00480{bottom:291.300000px;}
.y12_c00480{bottom:314.100000px;}
.y11_c00480{bottom:337.200000px;}
.y10_c00480{bottom:361.500000px;}
.yf_c00480{bottom:384.750000px;}
.ye_c00480{bottom:409.050000px;}
.yd_c00480{bottom:433.800000px;}
.yc_c00480{bottom:458.400000px;}
.yb_c00480{bottom:482.700000px;}
.ya_c00480{bottom:507.600000px;}
.y9_c00480{bottom:531.600000px;}
.y8_c00480{bottom:555.900000px;}
.y7_c00480{bottom:580.500000px;}
.y6_c00480{bottom:605.100000px;}
.y5_c00480{bottom:629.550000px;}
.y4_c00480{bottom:654.000000px;}
.y3_c00480{bottom:678.000000px;}
.y2_c00480{bottom:703.350000px;}
.y1_c00480{bottom:729.000000px;}
.h3_c00480{height:13.200074px;}
.h4_c00480{height:43.804688px;}
.h2_c00480{height:91.160156px;}
.h1_c00480{height:110.151855px;}
.h0_c00480{height:769.500000px;}
.w1_c00480{width:104.875500px;}
.w0_c00480{width:519.750000px;}
.x0_c00480{left:0.000000px;}
.x7_c00480{left:32.400000px;}
.x3_c00480{left:33.450000px;}
.x4_c00480{left:34.500000px;}
.x5_c00480{left:35.700000px;}
.x6_c00480{left:37.050000px;}
.x2_c00480{left:57.450000px;}
.x1_c00480{left:146.850000px;}
.x9_c00480{left:211.689240px;}
.x8_c00480{left:247.050000px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls1_c00480{letter-spacing:-2.666667pt;}
.ls2_c00480{letter-spacing:0.000000pt;}
.ls0_c00480{letter-spacing:2.666667pt;}
.ls3_c00480{letter-spacing:8.000000pt;}
.ws0_c00480{word-spacing:-34.640000pt;}
.ws1_c00480{word-spacing:-15.424000pt;}
.ws2_c00480{word-spacing:0.000000pt;}
._9_c00480{margin-left:-16.114667pt;}
._13_c00480{margin-left:-8.589333pt;}
._2_c00480{margin-left:-5.954667pt;}
._a_c00480{margin-left:-4.800000pt;}
._12_c00480{margin-left:-3.821333pt;}
._3_c00480{margin-left:-2.600000pt;}
._d_c00480{margin-left:-1.237333pt;}
._6_c00480{width:1.546667pt;}
._f_c00480{width:2.560000pt;}
._0_c00480{width:4.021333pt;}
._11_c00480{width:4.960000pt;}
._4_c00480{width:5.866667pt;}
._b_c00480{width:6.912000pt;}
._c_c00480{width:8.064000pt;}
._7_c00480{width:9.440000pt;}
._1_c00480{width:10.362667pt;}
._5_c00480{width:11.840000pt;}
._e_c00480{width:12.872000pt;}
._16_c00480{width:14.090667pt;}
._14_c00480{width:21.376000pt;}
._15_c00480{width:25.872000pt;}
._10_c00480{width:45.162667pt;}
._17_c00480{width:268.757333pt;}
._8_c00480{width:305.696000pt;}
.fs5_c00480{font-size:42.666667pt;}
.fs1_c00480{font-size:53.333333pt;}
.fs4_c00480{font-size:61.333333pt;}
.fs3_c00480{font-size:64.000000pt;}
.fs0_c00480{font-size:77.333333pt;}
.fs2_c00480{font-size:80.000000pt;}
.y0_c00480{bottom:0.000000pt;}
.y1f_c00480{bottom:2.760000pt;}
.y1e_c00480{bottom:6.425212pt;}
.y1d_c00480{bottom:39.866667pt;}
.y1c_c00480{bottom:61.466667pt;}
.y1b_c00480{bottom:83.733333pt;}
.y1a_c00480{bottom:106.533333pt;}
.y19_c00480{bottom:128.666667pt;}
.y18_c00480{bottom:150.266667pt;}
.y17_c00480{bottom:172.533333pt;}
.y16_c00480{bottom:194.133333pt;}
.y15_c00480{bottom:215.733333pt;}
.y14_c00480{bottom:237.600000pt;}
.y13_c00480{bottom:258.933333pt;}
.y12_c00480{bottom:279.200000pt;}
.y11_c00480{bottom:299.733333pt;}
.y10_c00480{bottom:321.333333pt;}
.yf_c00480{bottom:342.000000pt;}
.ye_c00480{bottom:363.600000pt;}
.yd_c00480{bottom:385.600000pt;}
.yc_c00480{bottom:407.466667pt;}
.yb_c00480{bottom:429.066667pt;}
.ya_c00480{bottom:451.200000pt;}
.y9_c00480{bottom:472.533333pt;}
.y8_c00480{bottom:494.133333pt;}
.y7_c00480{bottom:516.000000pt;}
.y6_c00480{bottom:537.866667pt;}
.y5_c00480{bottom:559.600000pt;}
.y4_c00480{bottom:581.333333pt;}
.y3_c00480{bottom:602.666667pt;}
.y2_c00480{bottom:625.200000pt;}
.y1_c00480{bottom:648.000000pt;}
.h3_c00480{height:11.733399pt;}
.h4_c00480{height:38.937500pt;}
.h2_c00480{height:81.031250pt;}
.h1_c00480{height:97.912760pt;}
.h0_c00480{height:684.000000pt;}
.w1_c00480{width:93.222667pt;}
.w0_c00480{width:462.000000pt;}
.x0_c00480{left:0.000000pt;}
.x7_c00480{left:28.800000pt;}
.x3_c00480{left:29.733333pt;}
.x4_c00480{left:30.666667pt;}
.x5_c00480{left:31.733333pt;}
.x6_c00480{left:32.933333pt;}
.x2_c00480{left:51.066667pt;}
.x1_c00480{left:130.533333pt;}
.x9_c00480{left:188.168213pt;}
.x8_c00480{left:219.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b3d897c7625870859e90b35a.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.480469;font-style:normal;font-weight:normal;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_421ce763ece4cc48adb09180.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.568848;font-style:normal;font-weight:normal;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_e286f368d789aa7ba790f069.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00481;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00481{font-family:ff4_c00481;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00481{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00481{vertical-align:0.000000px;}
.ls1_c00481{letter-spacing:-3.000000px;}
.ls3_c00481{letter-spacing:0.000000px;}
.ls2_c00481{letter-spacing:3.000000px;}
.ls0_c00481{letter-spacing:6.000000px;}
.sc__c00481{text-shadow:none;}
.sc0_c00481{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00481{-webkit-text-stroke:0px transparent;}
.sc0_c00481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00481{word-spacing:-17.352000px;}
.ws1_c00481{word-spacing:0.000000px;}
._22_c00481{margin-left:-19.893000px;}
._19_c00481{margin-left:-15.576000px;}
._1a_c00481{margin-left:-12.720000px;}
._b_c00481{margin-left:-11.016000px;}
._1f_c00481{margin-left:-9.576000px;}
._f_c00481{margin-left:-7.488000px;}
._c_c00481{margin-left:-6.120000px;}
._a_c00481{margin-left:-4.728000px;}
._d_c00481{margin-left:-3.600000px;}
._8_c00481{margin-left:-2.064000px;}
._10_c00481{margin-left:-1.032000px;}
._17_c00481{width:1.008000px;}
._9_c00481{width:2.016000px;}
._7_c00481{width:3.528000px;}
._e_c00481{width:4.560000px;}
._5_c00481{width:6.360000px;}
._1_c00481{width:7.440000px;}
._2_c00481{width:8.700000px;}
._12_c00481{width:10.272000px;}
._15_c00481{width:11.748000px;}
._3_c00481{width:12.960000px;}
._0_c00481{width:14.760000px;}
._14_c00481{width:16.056000px;}
._4_c00481{width:17.400000px;}
._11_c00481{width:19.080000px;}
._6_c00481{width:22.020000px;}
._1c_c00481{width:27.264000px;}
._1b_c00481{width:29.832000px;}
._1d_c00481{width:31.572000px;}
._16_c00481{width:33.432000px;}
._18_c00481{width:35.040000px;}
._21_c00481{width:36.306000px;}
._13_c00481{width:38.016000px;}
._1e_c00481{width:79.338000px;}
._20_c00481{width:311.277000px;}
._23_c00481{width:757.230000px;}
.fc2_c00481{color:transparent;}
.fc1_c00481{color:rgb(128,128,128);}
.fc0_c00481{color:rgb(0,0,0);}
.fs3_c00481{font-size:48.000000px;}
.fs2_c00481{font-size:57.000000px;}
.fs0_c00481{font-size:60.000000px;}
.fs1_c00481{font-size:72.000000px;}
.y0_c00481{bottom:0.000000px;}
.y1f_c00481{bottom:3.105000px;}
.y1e_c00481{bottom:7.228357px;}
.y1d_c00481{bottom:45.180000px;}
.y1c_c00481{bottom:65.880000px;}
.y1b_c00481{bottom:92.580000px;}
.y1a_c00481{bottom:118.080000px;}
.y19_c00481{bottom:143.130000px;}
.y18_c00481{bottom:167.730000px;}
.y17_c00481{bottom:193.380000px;}
.y16_c00481{bottom:217.080000px;}
.y15_c00481{bottom:243.030000px;}
.y14_c00481{bottom:267.630000px;}
.y13_c00481{bottom:292.680000px;}
.y12_c00481{bottom:316.680000px;}
.y11_c00481{bottom:340.980000px;}
.y10_c00481{bottom:365.130000px;}
.yf_c00481{bottom:389.580000px;}
.ye_c00481{bottom:413.730000px;}
.yd_c00481{bottom:438.180000px;}
.yc_c00481{bottom:462.480000px;}
.yb_c00481{bottom:486.780000px;}
.ya_c00481{bottom:510.630000px;}
.y9_c00481{bottom:535.680000px;}
.y8_c00481{bottom:560.880000px;}
.y7_c00481{bottom:585.180000px;}
.y6_c00481{bottom:610.830000px;}
.y5_c00481{bottom:634.830000px;}
.y4_c00481{bottom:658.530000px;}
.y3_c00481{bottom:684.180000px;}
.y2_c00481{bottom:708.480000px;}
.y1_c00481{bottom:735.480000px;}
.h5_c00481{height:13.200074px;}
.h6_c00481{height:43.804688px;}
.h4_c00481{height:57.445312px;}
.h2_c00481{height:75.966797px;}
.h3_c00481{height:91.160156px;}
.h1_c00481{height:771.000000px;}
.h0_c00481{height:771.150000px;}
.w2_c00481{width:104.875500px;}
.w1_c00481{width:501.000000px;}
.w0_c00481{width:501.150000px;}
.x0_c00481{left:0.000000px;}
.x3_c00481{left:92.100000px;}
.x4_c00481{left:93.600000px;}
.x5_c00481{left:95.100000px;}
.x6_c00481{left:97.200000px;}
.x7_c00481{left:98.850000px;}
.x8_c00481{left:100.200000px;}
.x9_c00481{left:101.550000px;}
.xa_c00481{left:103.650000px;}
.x2_c00481{left:147.750000px;}
.xb_c00481{left:202.389267px;}
.x1_c00481{left:207.600000px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls1_c00481{letter-spacing:-2.666667pt;}
.ls3_c00481{letter-spacing:0.000000pt;}
.ls2_c00481{letter-spacing:2.666667pt;}
.ls0_c00481{letter-spacing:5.333333pt;}
.ws0_c00481{word-spacing:-15.424000pt;}
.ws1_c00481{word-spacing:0.000000pt;}
._22_c00481{margin-left:-17.682667pt;}
._19_c00481{margin-left:-13.845333pt;}
._1a_c00481{margin-left:-11.306667pt;}
._b_c00481{margin-left:-9.792000pt;}
._1f_c00481{margin-left:-8.512000pt;}
._f_c00481{margin-left:-6.656000pt;}
._c_c00481{margin-left:-5.440000pt;}
._a_c00481{margin-left:-4.202667pt;}
._d_c00481{margin-left:-3.200000pt;}
._8_c00481{margin-left:-1.834667pt;}
._10_c00481{margin-left:-0.917333pt;}
._17_c00481{width:0.896000pt;}
._9_c00481{width:1.792000pt;}
._7_c00481{width:3.136000pt;}
._e_c00481{width:4.053333pt;}
._5_c00481{width:5.653333pt;}
._1_c00481{width:6.613333pt;}
._2_c00481{width:7.733333pt;}
._12_c00481{width:9.130667pt;}
._15_c00481{width:10.442667pt;}
._3_c00481{width:11.520000pt;}
._0_c00481{width:13.120000pt;}
._14_c00481{width:14.272000pt;}
._4_c00481{width:15.466667pt;}
._11_c00481{width:16.960000pt;}
._6_c00481{width:19.573333pt;}
._1c_c00481{width:24.234667pt;}
._1b_c00481{width:26.517333pt;}
._1d_c00481{width:28.064000pt;}
._16_c00481{width:29.717333pt;}
._18_c00481{width:31.146667pt;}
._21_c00481{width:32.272000pt;}
._13_c00481{width:33.792000pt;}
._1e_c00481{width:70.522667pt;}
._20_c00481{width:276.690667pt;}
._23_c00481{width:673.093333pt;}
.fs3_c00481{font-size:42.666667pt;}
.fs2_c00481{font-size:50.666667pt;}
.fs0_c00481{font-size:53.333333pt;}
.fs1_c00481{font-size:64.000000pt;}
.y0_c00481{bottom:0.000000pt;}
.y1f_c00481{bottom:2.760000pt;}
.y1e_c00481{bottom:6.425206pt;}
.y1d_c00481{bottom:40.160000pt;}
.y1c_c00481{bottom:58.560000pt;}
.y1b_c00481{bottom:82.293333pt;}
.y1a_c00481{bottom:104.960000pt;}
.y19_c00481{bottom:127.226667pt;}
.y18_c00481{bottom:149.093333pt;}
.y17_c00481{bottom:171.893333pt;}
.y16_c00481{bottom:192.960000pt;}
.y15_c00481{bottom:216.026667pt;}
.y14_c00481{bottom:237.893333pt;}
.y13_c00481{bottom:260.160000pt;}
.y12_c00481{bottom:281.493333pt;}
.y11_c00481{bottom:303.093333pt;}
.y10_c00481{bottom:324.560000pt;}
.yf_c00481{bottom:346.293333pt;}
.ye_c00481{bottom:367.760000pt;}
.yd_c00481{bottom:389.493333pt;}
.yc_c00481{bottom:411.093333pt;}
.yb_c00481{bottom:432.693333pt;}
.ya_c00481{bottom:453.893333pt;}
.y9_c00481{bottom:476.160000pt;}
.y8_c00481{bottom:498.560000pt;}
.y7_c00481{bottom:520.160000pt;}
.y6_c00481{bottom:542.960000pt;}
.y5_c00481{bottom:564.293333pt;}
.y4_c00481{bottom:585.360000pt;}
.y3_c00481{bottom:608.160000pt;}
.y2_c00481{bottom:629.760000pt;}
.y1_c00481{bottom:653.760000pt;}
.h5_c00481{height:11.733399pt;}
.h6_c00481{height:38.937500pt;}
.h4_c00481{height:51.062500pt;}
.h2_c00481{height:67.526042pt;}
.h3_c00481{height:81.031250pt;}
.h1_c00481{height:685.333333pt;}
.h0_c00481{height:685.466667pt;}
.w2_c00481{width:93.222667pt;}
.w1_c00481{width:445.333333pt;}
.w0_c00481{width:445.466667pt;}
.x0_c00481{left:0.000000pt;}
.x3_c00481{left:81.866667pt;}
.x4_c00481{left:83.200000pt;}
.x5_c00481{left:84.533333pt;}
.x6_c00481{left:86.400000pt;}
.x7_c00481{left:87.866667pt;}
.x8_c00481{left:89.066667pt;}
.x9_c00481{left:90.266667pt;}
.xa_c00481{left:92.133333pt;}
.x2_c00481{left:131.333333pt;}
.xb_c00481{left:179.901571pt;}
.x1_c00481{left:184.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9d415bdf50df21082580cf57.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.480469;font-style:normal;font-weight:normal;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_d0f5b3017b287b3bc45c610c.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00482;src:url('chunks/assets/font_ecfbe4aa53f6604118f105b3.woff2')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00482;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00482{font-family:ff4_c00482;line-height:1.219238;font-style: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;}
.ls2_c00482{letter-spacing:3.000000px;}
.ls0_c00482{letter-spacing:18.672000px;}
.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:-33.192000px;}
.ws1_c00482{word-spacing:0.000000px;}
._2_c00482{margin-left:-14.196000px;}
._5_c00482{margin-left:-13.020000px;}
._4_c00482{margin-left:-11.928000px;}
._7_c00482{margin-left:-10.920000px;}
._1_c00482{margin-left:-9.156000px;}
._c_c00482{margin-left:-7.932000px;}
._6_c00482{margin-left:-6.132000px;}
._11_c00482{margin-left:-5.052000px;}
._3_c00482{margin-left:-3.948000px;}
._9_c00482{margin-left:-2.352000px;}
._f_c00482{margin-left:-1.320000px;}
._0_c00482{width:1.932000px;}
._a_c00482{width:3.612000px;}
._12_c00482{width:5.100000px;}
._e_c00482{width:6.576000px;}
._1b_c00482{width:8.016000px;}
._16_c00482{width:9.036000px;}
._b_c00482{width:10.212000px;}
._14_c00482{width:11.436000px;}
._17_c00482{width:12.492000px;}
._13_c00482{width:13.980000px;}
._10_c00482{width:15.552000px;}
._d_c00482{width:17.292000px;}
._1e_c00482{width:18.948000px;}
._19_c00482{width:21.456000px;}
._15_c00482{width:22.728000px;}
._1a_c00482{width:24.288000px;}
._1d_c00482{width:26.172000px;}
._1f_c00482{width:27.348000px;}
._18_c00482{width:29.196000px;}
._1c_c00482{width:31.836000px;}
._20_c00482{width:33.372000px;}
._22_c00482{width:301.200000px;}
._21_c00482{width:314.136000px;}
._8_c00482{width:364.980000px;}
.fc2_c00482{color:transparent;}
.fc1_c00482{color:rgb(128,128,128);}
.fc0_c00482{color:rgb(0,0,0);}
.fs2_c00482{font-size:48.000000px;}
.fs1_c00482{font-size:72.000000px;}
.fs0_c00482{font-size:84.000000px;}
.y0_c00482{bottom:0.000000px;}
.y1f_c00482{bottom:3.105000px;}
.y1e_c00482{bottom:7.228369px;}
.y1d_c00482{bottom:47.820000px;}
.y1c_c00482{bottom:75.870000px;}
.y1b_c00482{bottom:103.320000px;}
.y1a_c00482{bottom:128.820000px;}
.y19_c00482{bottom:153.270000px;}
.y18_c00482{bottom:178.170000px;}
.y17_c00482{bottom:203.070000px;}
.y16_c00482{bottom:227.370000px;}
.y15_c00482{bottom:249.720000px;}
.y14_c00482{bottom:275.670000px;}
.y13_c00482{bottom:300.270000px;}
.y12_c00482{bottom:323.670000px;}
.y11_c00482{bottom:346.320000px;}
.y10_c00482{bottom:370.470000px;}
.yf_c00482{bottom:394.170000px;}
.ye_c00482{bottom:418.170000px;}
.yd_c00482{bottom:443.370000px;}
.yc_c00482{bottom:467.670000px;}
.yb_c00482{bottom:491.970000px;}
.ya_c00482{bottom:516.720000px;}
.y9_c00482{bottom:540.570000px;}
.y8_c00482{bottom:565.020000px;}
.y7_c00482{bottom:589.620000px;}
.y6_c00482{bottom:613.920000px;}
.y5_c00482{bottom:639.120000px;}
.y4_c00482{bottom:664.470000px;}
.y3_c00482{bottom:688.770000px;}
.y2_c00482{bottom:713.820000px;}
.y1_c00482{bottom:738.720000px;}
.h4_c00482{height:13.200073px;}
.h5_c00482{height:43.804688px;}
.h3_c00482{height:91.160156px;}
.h2_c00482{height:98.314453px;}
.h1_c00482{height:783.750000px;}
.h0_c00482{height:784.050000px;}
.w2_c00482{width:104.875500px;}
.w0_c00482{width:521.625000px;}
.w1_c00482{width:522.000000px;}
.x0_c00482{left:0.000000px;}
.x2_c00482{left:26.250000px;}
.x3_c00482{left:28.350000px;}
.x4_c00482{left:31.500000px;}
.x6_c00482{left:32.700000px;}
.x5_c00482{left:33.750000px;}
.x7_c00482{left:35.100000px;}
.x8_c00482{left:36.750000px;}
.x9_c00482{left:37.800000px;}
.x1_c00482{left:137.400000px;}
.xb_c00482{left:212.626740px;}
.xa_c00482{left:274.050000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls1_c00482{letter-spacing:0.000000pt;}
.ls2_c00482{letter-spacing:2.666667pt;}
.ls0_c00482{letter-spacing:16.597333pt;}
.ws0_c00482{word-spacing:-29.504000pt;}
.ws1_c00482{word-spacing:0.000000pt;}
._2_c00482{margin-left:-12.618667pt;}
._5_c00482{margin-left:-11.573333pt;}
._4_c00482{margin-left:-10.602667pt;}
._7_c00482{margin-left:-9.706667pt;}
._1_c00482{margin-left:-8.138667pt;}
._c_c00482{margin-left:-7.050667pt;}
._6_c00482{margin-left:-5.450667pt;}
._11_c00482{margin-left:-4.490667pt;}
._3_c00482{margin-left:-3.509333pt;}
._9_c00482{margin-left:-2.090667pt;}
._f_c00482{margin-left:-1.173333pt;}
._0_c00482{width:1.717333pt;}
._a_c00482{width:3.210667pt;}
._12_c00482{width:4.533333pt;}
._e_c00482{width:5.845333pt;}
._1b_c00482{width:7.125333pt;}
._16_c00482{width:8.032000pt;}
._b_c00482{width:9.077333pt;}
._14_c00482{width:10.165333pt;}
._17_c00482{width:11.104000pt;}
._13_c00482{width:12.426667pt;}
._10_c00482{width:13.824000pt;}
._d_c00482{width:15.370667pt;}
._1e_c00482{width:16.842667pt;}
._19_c00482{width:19.072000pt;}
._15_c00482{width:20.202667pt;}
._1a_c00482{width:21.589333pt;}
._1d_c00482{width:23.264000pt;}
._1f_c00482{width:24.309333pt;}
._18_c00482{width:25.952000pt;}
._1c_c00482{width:28.298667pt;}
._20_c00482{width:29.664000pt;}
._22_c00482{width:267.733333pt;}
._21_c00482{width:279.232000pt;}
._8_c00482{width:324.426667pt;}
.fs2_c00482{font-size:42.666667pt;}
.fs1_c00482{font-size:64.000000pt;}
.fs0_c00482{font-size:74.666667pt;}
.y0_c00482{bottom:0.000000pt;}
.y1f_c00482{bottom:2.760000pt;}
.y1e_c00482{bottom:6.425217pt;}
.y1d_c00482{bottom:42.506667pt;}
.y1c_c00482{bottom:67.440000pt;}
.y1b_c00482{bottom:91.840000pt;}
.y1a_c00482{bottom:114.506667pt;}
.y19_c00482{bottom:136.240000pt;}
.y18_c00482{bottom:158.373333pt;}
.y17_c00482{bottom:180.506667pt;}
.y16_c00482{bottom:202.106667pt;}
.y15_c00482{bottom:221.973333pt;}
.y14_c00482{bottom:245.040000pt;}
.y13_c00482{bottom:266.906667pt;}
.y12_c00482{bottom:287.706667pt;}
.y11_c00482{bottom:307.840000pt;}
.y10_c00482{bottom:329.306667pt;}
.yf_c00482{bottom:350.373333pt;}
.ye_c00482{bottom:371.706667pt;}
.yd_c00482{bottom:394.106667pt;}
.yc_c00482{bottom:415.706667pt;}
.yb_c00482{bottom:437.306667pt;}
.ya_c00482{bottom:459.306667pt;}
.y9_c00482{bottom:480.506667pt;}
.y8_c00482{bottom:502.240000pt;}
.y7_c00482{bottom:524.106667pt;}
.y6_c00482{bottom:545.706667pt;}
.y5_c00482{bottom:568.106667pt;}
.y4_c00482{bottom:590.640000pt;}
.y3_c00482{bottom:612.240000pt;}
.y2_c00482{bottom:634.506667pt;}
.y1_c00482{bottom:656.640000pt;}
.h4_c00482{height:11.733399pt;}
.h5_c00482{height:38.937500pt;}
.h3_c00482{height:81.031250pt;}
.h2_c00482{height:87.390625pt;}
.h1_c00482{height:696.666667pt;}
.h0_c00482{height:696.933333pt;}
.w2_c00482{width:93.222667pt;}
.w0_c00482{width:463.666667pt;}
.w1_c00482{width:464.000000pt;}
.x0_c00482{left:0.000000pt;}
.x2_c00482{left:23.333333pt;}
.x3_c00482{left:25.200000pt;}
.x4_c00482{left:28.000000pt;}
.x6_c00482{left:29.066667pt;}
.x5_c00482{left:30.000000pt;}
.x7_c00482{left:31.200000pt;}
.x8_c00482{left:32.666667pt;}
.x9_c00482{left:33.600000pt;}
.x1_c00482{left:122.133333pt;}
.xb_c00482{left:189.001546pt;}
.xa_c00482{left:243.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0860bcdf358e5c63a930bd9c.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00483;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00483;src:url('chunks/assets/font_97cc3c5eb4c8581c77a1352e.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;line-height:1.568848;font-style:normal;font-weight:normal;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_c70eb50d8cb1d76379c89b66.woff2')format("woff");}.ff4_c00483{font-family:ff4_c00483;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00483{font-family:ff5_c00483;line-height:1.219238;font-style: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);}
.v1_c00483{vertical-align:-86.400000px;}
.v0_c00483{vertical-align:0.000000px;}
.ls1_c00483{letter-spacing:0.000000px;}
.ls2_c00483{letter-spacing:3.000000px;}
.ls0_c00483{letter-spacing:4.788000px;}
.ls3_c00483{letter-spacing:6.000000px;}
.sc__c00483{text-shadow:none;}
.sc0_c00483{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00483{-webkit-text-stroke:0px transparent;}
.sc0_c00483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00483{word-spacing:-42.000000px;}
.ws1_c00483{word-spacing:-24.798000px;}
.ws2_c00483{word-spacing:0.000000px;}
._7_c00483{margin-left:-7.836000px;}
._e_c00483{margin-left:-5.328000px;}
._6_c00483{margin-left:-4.248000px;}
._5_c00483{margin-left:-2.232000px;}
._4_c00483{margin-left:-1.224000px;}
._3_c00483{width:1.224000px;}
._1_c00483{width:2.520000px;}
._2_c00483{width:4.452000px;}
._0_c00483{width:6.216000px;}
._8_c00483{width:8.136000px;}
._12_c00483{width:9.504000px;}
._b_c00483{width:10.716000px;}
._c_c00483{width:12.012000px;}
._9_c00483{width:13.680000px;}
._13_c00483{width:15.480000px;}
._a_c00483{width:18.336000px;}
._f_c00483{width:21.792000px;}
._11_c00483{width:22.896000px;}
._10_c00483{width:30.660000px;}
._d_c00483{width:32.208000px;}
._14_c00483{width:55.992000px;}
.fc2_c00483{color:transparent;}
.fc1_c00483{color:rgb(128,128,128);}
.fc0_c00483{color:rgb(0,0,0);}
.fs2_c00483{font-size:24.000000px;}
.fs5_c00483{font-size:48.000000px;}
.fs3_c00483{font-size:63.000000px;}
.fs1_c00483{font-size:72.000000px;}
.fs4_c00483{font-size:78.000000px;}
.fs0_c00483{font-size:84.000000px;}
.y0_c00483{bottom:0.000000px;}
.y1e_c00483{bottom:3.105000px;}
.y1d_c00483{bottom:7.228357px;}
.y1c_c00483{bottom:70.230000px;}
.y1b_c00483{bottom:96.180000px;}
.y1a_c00483{bottom:120.930000px;}
.y19_c00483{bottom:145.830000px;}
.y18_c00483{bottom:170.730000px;}
.y17_c00483{bottom:195.480000px;}
.y16_c00483{bottom:220.680000px;}
.y15_c00483{bottom:244.680000px;}
.y14_c00483{bottom:270.030000px;}
.y13_c00483{bottom:294.930000px;}
.y12_c00483{bottom:319.380000px;}
.y11_c00483{bottom:343.680000px;}
.y10_c00483{bottom:368.280000px;}
.yf_c00483{bottom:392.280000px;}
.ye_c00483{bottom:417.180000px;}
.yd_c00483{bottom:442.080000px;}
.yc_c00483{bottom:467.130000px;}
.yb_c00483{bottom:490.380000px;}
.ya_c00483{bottom:514.080000px;}
.y9_c00483{bottom:538.980000px;}
.y8_c00483{bottom:563.280000px;}
.y7_c00483{bottom:587.280000px;}
.y6_c00483{bottom:612.180000px;}
.y5_c00483{bottom:636.630000px;}
.y4_c00483{bottom:661.230000px;}
.y3_c00483{bottom:685.830000px;}
.y2_c00483{bottom:709.830000px;}
.y1_c00483{bottom:736.380000px;}
.h4_c00483{height:13.200074px;}
.h5_c00483{height:43.804688px;}
.h2_c00483{height:82.441406px;}
.h3_c00483{height:91.160156px;}
.h1_c00483{height:784.500000px;}
.h0_c00483{height:784.650000px;}
.w2_c00483{width:104.875500px;}
.w0_c00483{width:501.675000px;}
.w1_c00483{width:501.750000px;}
.x0_c00483{left:0.000000px;}
.x4_c00483{left:92.700000px;}
.x5_c00483{left:94.500000px;}
.x3_c00483{left:95.550000px;}
.x2_c00483{left:97.500000px;}
.x6_c00483{left:202.651749px;}
.x1_c00483{left:223.350000px;}
@media print{
.v1_c00483{vertical-align:-76.800000pt;}
.v0_c00483{vertical-align:0.000000pt;}
.ls1_c00483{letter-spacing:0.000000pt;}
.ls2_c00483{letter-spacing:2.666667pt;}
.ls0_c00483{letter-spacing:4.256000pt;}
.ls3_c00483{letter-spacing:5.333333pt;}
.ws0_c00483{word-spacing:-37.333333pt;}
.ws1_c00483{word-spacing:-22.042667pt;}
.ws2_c00483{word-spacing:0.000000pt;}
._7_c00483{margin-left:-6.965333pt;}
._e_c00483{margin-left:-4.736000pt;}
._6_c00483{margin-left:-3.776000pt;}
._5_c00483{margin-left:-1.984000pt;}
._4_c00483{margin-left:-1.088000pt;}
._3_c00483{width:1.088000pt;}
._1_c00483{width:2.240000pt;}
._2_c00483{width:3.957333pt;}
._0_c00483{width:5.525333pt;}
._8_c00483{width:7.232000pt;}
._12_c00483{width:8.448000pt;}
._b_c00483{width:9.525333pt;}
._c_c00483{width:10.677333pt;}
._9_c00483{width:12.160000pt;}
._13_c00483{width:13.760000pt;}
._a_c00483{width:16.298667pt;}
._f_c00483{width:19.370667pt;}
._11_c00483{width:20.352000pt;}
._10_c00483{width:27.253333pt;}
._d_c00483{width:28.629333pt;}
._14_c00483{width:49.770667pt;}
.fs2_c00483{font-size:21.333333pt;}
.fs5_c00483{font-size:42.666667pt;}
.fs3_c00483{font-size:56.000000pt;}
.fs1_c00483{font-size:64.000000pt;}
.fs4_c00483{font-size:69.333333pt;}
.fs0_c00483{font-size:74.666667pt;}
.y0_c00483{bottom:0.000000pt;}
.y1e_c00483{bottom:2.760000pt;}
.y1d_c00483{bottom:6.425206pt;}
.y1c_c00483{bottom:62.426667pt;}
.y1b_c00483{bottom:85.493333pt;}
.y1a_c00483{bottom:107.493333pt;}
.y19_c00483{bottom:129.626667pt;}
.y18_c00483{bottom:151.760000pt;}
.y17_c00483{bottom:173.760000pt;}
.y16_c00483{bottom:196.160000pt;}
.y15_c00483{bottom:217.493333pt;}
.y14_c00483{bottom:240.026667pt;}
.y13_c00483{bottom:262.160000pt;}
.y12_c00483{bottom:283.893333pt;}
.y11_c00483{bottom:305.493333pt;}
.y10_c00483{bottom:327.360000pt;}
.yf_c00483{bottom:348.693333pt;}
.ye_c00483{bottom:370.826667pt;}
.yd_c00483{bottom:392.960000pt;}
.yc_c00483{bottom:415.226667pt;}
.yb_c00483{bottom:435.893333pt;}
.ya_c00483{bottom:456.960000pt;}
.y9_c00483{bottom:479.093333pt;}
.y8_c00483{bottom:500.693333pt;}
.y7_c00483{bottom:522.026667pt;}
.y6_c00483{bottom:544.160000pt;}
.y5_c00483{bottom:565.893333pt;}
.y4_c00483{bottom:587.760000pt;}
.y3_c00483{bottom:609.626667pt;}
.y2_c00483{bottom:630.960000pt;}
.y1_c00483{bottom:654.560000pt;}
.h4_c00483{height:11.733399pt;}
.h5_c00483{height:38.937500pt;}
.h2_c00483{height:73.281250pt;}
.h3_c00483{height:81.031250pt;}
.h1_c00483{height:697.333333pt;}
.h0_c00483{height:697.466667pt;}
.w2_c00483{width:93.222667pt;}
.w0_c00483{width:445.933333pt;}
.w1_c00483{width:446.000000pt;}
.x0_c00483{left:0.000000pt;}
.x4_c00483{left:82.400000pt;}
.x5_c00483{left:84.000000pt;}
.x3_c00483{left:84.933333pt;}
.x2_c00483{left:86.666667pt;}
.x6_c00483{left:180.134888pt;}
.x1_c00483{left:198.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bacd4c18863278183c270c75.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00484;src:url('chunks/assets/font_294c6046551cc82b415594ad.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.568848;font-style:normal;font-weight:normal;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_686b3e35872e9001f172e789.woff2')format("woff");}.ff3_c00484{font-family:ff3_c00484;line-height:1.480469;font-style:normal;font-weight:normal;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_4e25e3541d49ae53e07403bc.woff2')format("woff");}.ff4_c00484{font-family:ff4_c00484;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00484{font-family:ff5_c00484;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00484{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.ls0_c00484{letter-spacing:0.000000px;}
.ls1_c00484{letter-spacing:3.000000px;}
.sc__c00484{text-shadow:none;}
.sc0_c00484{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00484{-webkit-text-stroke:0px transparent;}
.sc0_c00484{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00484{word-spacing:-33.192000px;}
.ws0_c00484{word-spacing:-22.464000px;}
.ws2_c00484{word-spacing:0.000000px;}
._11_c00484{margin-left:-16.896000px;}
._13_c00484{margin-left:-9.232800px;}
._e_c00484{margin-left:-7.848000px;}
._6_c00484{margin-left:-6.132000px;}
._15_c00484{margin-left:-4.824000px;}
._c_c00484{margin-left:-3.660000px;}
._2_c00484{margin-left:-1.848000px;}
._8_c00484{width:1.080000px;}
._a_c00484{width:2.400000px;}
._4_c00484{width:3.696000px;}
._b_c00484{width:4.920000px;}
._3_c00484{width:6.300000px;}
._f_c00484{width:7.416000px;}
._d_c00484{width:9.624000px;}
._1_c00484{width:10.752000px;}
._9_c00484{width:12.960000px;}
._7_c00484{width:14.112000px;}
._14_c00484{width:16.164000px;}
._0_c00484{width:17.640000px;}
._12_c00484{width:21.396000px;}
._16_c00484{width:25.032000px;}
._17_c00484{width:35.400000px;}
._10_c00484{width:207.648000px;}
._5_c00484{width:303.072000px;}
._18_c00484{width:1118.952000px;}
.fc2_c00484{color:transparent;}
.fc1_c00484{color:rgb(128,128,128);}
.fc0_c00484{color:rgb(0,0,0);}
.fs3_c00484{font-size:48.000000px;}
.fs2_c00484{font-size:57.600000px;}
.fs1_c00484{font-size:72.000000px;}
.fs0_c00484{font-size:84.000000px;}
.y0_c00484{bottom:0.000000px;}
.y1f_c00484{bottom:3.105000px;}
.y1e_c00484{bottom:7.228363px;}
.y1d_c00484{bottom:62.400000px;}
.y1c_c00484{bottom:88.800000px;}
.y1b_c00484{bottom:112.500000px;}
.y1a_c00484{bottom:139.050000px;}
.y19_c00484{bottom:164.400000px;}
.y18_c00484{bottom:188.400000px;}
.y17_c00484{bottom:212.700000px;}
.y16_c00484{bottom:236.700000px;}
.y15_c00484{bottom:262.200000px;}
.y14_c00484{bottom:285.300000px;}
.y13_c00484{bottom:310.500000px;}
.y12_c00484{bottom:331.500000px;}
.y11_c00484{bottom:355.800000px;}
.y10_c00484{bottom:379.050000px;}
.yf_c00484{bottom:404.700000px;}
.ye_c00484{bottom:429.000000px;}
.yd_c00484{bottom:453.600000px;}
.yc_c00484{bottom:477.300000px;}
.yb_c00484{bottom:501.750000px;}
.ya_c00484{bottom:525.750000px;}
.y9_c00484{bottom:552.150000px;}
.y8_c00484{bottom:574.350000px;}
.y7_c00484{bottom:598.500000px;}
.y6_c00484{bottom:623.250000px;}
.y5_c00484{bottom:647.700000px;}
.y4_c00484{bottom:671.850000px;}
.y3_c00484{bottom:696.600000px;}
.y2_c00484{bottom:720.900000px;}
.y1_c00484{bottom:746.250000px;}
.h3_c00484{height:13.200074px;}
.h4_c00484{height:43.804688px;}
.h1_c00484{height:82.400391px;}
.h2_c00484{height:91.160156px;}
.h0_c00484{height:783.000000px;}
.w2_c00484{width:104.875500px;}
.w0_c00484{width:528.375000px;}
.w1_c00484{width:528.750000px;}
.x0_c00484{left:0.000000px;}
.x2_c00484{left:23.700000px;}
.x3_c00484{left:24.750000px;}
.x4_c00484{left:26.700000px;}
.x5_c00484{left:28.050000px;}
.x6_c00484{left:87.300000px;}
.x1_c00484{left:147.600000px;}
.x7_c00484{left:216.001740px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls0_c00484{letter-spacing:0.000000pt;}
.ls1_c00484{letter-spacing:2.666667pt;}
.ws1_c00484{word-spacing:-29.504000pt;}
.ws0_c00484{word-spacing:-19.968000pt;}
.ws2_c00484{word-spacing:0.000000pt;}
._11_c00484{margin-left:-15.018667pt;}
._13_c00484{margin-left:-8.206933pt;}
._e_c00484{margin-left:-6.976000pt;}
._6_c00484{margin-left:-5.450667pt;}
._15_c00484{margin-left:-4.288000pt;}
._c_c00484{margin-left:-3.253333pt;}
._2_c00484{margin-left:-1.642667pt;}
._8_c00484{width:0.960000pt;}
._a_c00484{width:2.133333pt;}
._4_c00484{width:3.285333pt;}
._b_c00484{width:4.373333pt;}
._3_c00484{width:5.600000pt;}
._f_c00484{width:6.592000pt;}
._d_c00484{width:8.554667pt;}
._1_c00484{width:9.557333pt;}
._9_c00484{width:11.520000pt;}
._7_c00484{width:12.544000pt;}
._14_c00484{width:14.368000pt;}
._0_c00484{width:15.680000pt;}
._12_c00484{width:19.018667pt;}
._16_c00484{width:22.250667pt;}
._17_c00484{width:31.466667pt;}
._10_c00484{width:184.576000pt;}
._5_c00484{width:269.397333pt;}
._18_c00484{width:994.624000pt;}
.fs3_c00484{font-size:42.666667pt;}
.fs2_c00484{font-size:51.200000pt;}
.fs1_c00484{font-size:64.000000pt;}
.fs0_c00484{font-size:74.666667pt;}
.y0_c00484{bottom:0.000000pt;}
.y1f_c00484{bottom:2.760000pt;}
.y1e_c00484{bottom:6.425212pt;}
.y1d_c00484{bottom:55.466667pt;}
.y1c_c00484{bottom:78.933333pt;}
.y1b_c00484{bottom:100.000000pt;}
.y1a_c00484{bottom:123.600000pt;}
.y19_c00484{bottom:146.133333pt;}
.y18_c00484{bottom:167.466667pt;}
.y17_c00484{bottom:189.066667pt;}
.y16_c00484{bottom:210.400000pt;}
.y15_c00484{bottom:233.066667pt;}
.y14_c00484{bottom:253.600000pt;}
.y13_c00484{bottom:276.000000pt;}
.y12_c00484{bottom:294.666667pt;}
.y11_c00484{bottom:316.266667pt;}
.y10_c00484{bottom:336.933333pt;}
.yf_c00484{bottom:359.733333pt;}
.ye_c00484{bottom:381.333333pt;}
.yd_c00484{bottom:403.200000pt;}
.yc_c00484{bottom:424.266667pt;}
.yb_c00484{bottom:446.000000pt;}
.ya_c00484{bottom:467.333333pt;}
.y9_c00484{bottom:490.800000pt;}
.y8_c00484{bottom:510.533333pt;}
.y7_c00484{bottom:532.000000pt;}
.y6_c00484{bottom:554.000000pt;}
.y5_c00484{bottom:575.733333pt;}
.y4_c00484{bottom:597.200000pt;}
.y3_c00484{bottom:619.200000pt;}
.y2_c00484{bottom:640.800000pt;}
.y1_c00484{bottom:663.333333pt;}
.h3_c00484{height:11.733399pt;}
.h4_c00484{height:38.937500pt;}
.h1_c00484{height:73.244792pt;}
.h2_c00484{height:81.031250pt;}
.h0_c00484{height:696.000000pt;}
.w2_c00484{width:93.222667pt;}
.w0_c00484{width:469.666667pt;}
.w1_c00484{width:470.000000pt;}
.x0_c00484{left:0.000000pt;}
.x2_c00484{left:21.066667pt;}
.x3_c00484{left:22.000000pt;}
.x4_c00484{left:23.733333pt;}
.x5_c00484{left:24.933333pt;}
.x6_c00484{left:77.600000pt;}
.x1_c00484{left:131.200000pt;}
.x7_c00484{left:192.001546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d77adfe2a7e644a322603574.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.480469;font-style:normal;font-weight:normal;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_3bf0523dc4b949bc2bfe43b8.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:1.480469;font-style:normal;font-weight:normal;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_d43238fe0e8d929483c8f71f.woff2')format("woff");}.ff3_c00485{font-family:ff3_c00485;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00485{font-family:ff4_c00485;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00485{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00485{vertical-align:0.000000px;}
.ls1_c00485{letter-spacing:0.000000px;}
.ls2_c00485{letter-spacing:3.000000px;}
.ls0_c00485{letter-spacing:24.912000px;}
.sc__c00485{text-shadow:none;}
.sc0_c00485{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00485{-webkit-text-stroke:0px transparent;}
.sc0_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00485{word-spacing:-28.080000px;}
.ws0_c00485{word-spacing:-22.464000px;}
.ws2_c00485{word-spacing:-17.352000px;}
.ws3_c00485{word-spacing:0.000000px;}
._15_c00485{margin-left:-29.232000px;}
._10_c00485{margin-left:-24.168000px;}
._12_c00485{margin-left:-15.936000px;}
._16_c00485{margin-left:-8.688000px;}
._4_c00485{margin-left:-7.248000px;}
._11_c00485{margin-left:-5.544000px;}
._d_c00485{margin-left:-4.008000px;}
._6_c00485{margin-left:-3.000000px;}
._3_c00485{margin-left:-1.176000px;}
._7_c00485{width:1.080000px;}
._8_c00485{width:2.088000px;}
._c_c00485{width:3.384000px;}
._a_c00485{width:4.608000px;}
._1_c00485{width:5.616000px;}
._9_c00485{width:7.200000px;}
._e_c00485{width:8.352000px;}
._2_c00485{width:9.648000px;}
._0_c00485{width:10.800000px;}
._5_c00485{width:12.600000px;}
._f_c00485{width:14.400000px;}
._13_c00485{width:16.056000px;}
._18_c00485{width:17.424000px;}
._17_c00485{width:18.960000px;}
._14_c00485{width:22.080000px;}
._b_c00485{width:23.616000px;}
._19_c00485{width:31.608000px;}
.fc2_c00485{color:transparent;}
.fc1_c00485{color:rgb(128,128,128);}
.fc0_c00485{color:rgb(0,0,0);}
.fs2_c00485{font-size:48.000000px;}
.fs1_c00485{font-size:57.600000px;}
.fs0_c00485{font-size:72.000000px;}
.y0_c00485{bottom:0.000000px;}
.y1f_c00485{bottom:3.105000px;}
.y1e_c00485{bottom:7.228369px;}
.y1d_c00485{bottom:53.970000px;}
.y1c_c00485{bottom:73.920000px;}
.y1b_c00485{bottom:99.570000px;}
.y1a_c00485{bottom:124.470000px;}
.y19_c00485{bottom:149.070000px;}
.y18_c00485{bottom:173.370000px;}
.y17_c00485{bottom:198.120000px;}
.y16_c00485{bottom:223.020000px;}
.y15_c00485{bottom:247.620000px;}
.y14_c00485{bottom:272.670000px;}
.y13_c00485{bottom:297.270000px;}
.y12_c00485{bottom:321.870000px;}
.y11_c00485{bottom:347.670000px;}
.y10_c00485{bottom:370.620000px;}
.yf_c00485{bottom:394.770000px;}
.ye_c00485{bottom:419.520000px;}
.yd_c00485{bottom:444.420000px;}
.yc_c00485{bottom:468.720000px;}
.yb_c00485{bottom:493.320000px;}
.ya_c00485{bottom:517.770000px;}
.y9_c00485{bottom:542.070000px;}
.y8_c00485{bottom:566.670000px;}
.y7_c00485{bottom:590.970000px;}
.y6_c00485{bottom:615.870000px;}
.y5_c00485{bottom:640.470000px;}
.y4_c00485{bottom:664.770000px;}
.y3_c00485{bottom:689.520000px;}
.y2_c00485{bottom:713.370000px;}
.y1_c00485{bottom:738.720000px;}
.h2_c00485{height:13.200073px;}
.h3_c00485{height:43.804688px;}
.h1_c00485{height:91.160156px;}
.h0_c00485{height:773.250000px;}
.w2_c00485{width:104.875500px;}
.w1_c00485{width:492.000000px;}
.w0_c00485{width:492.225000px;}
.x0_c00485{left:0.000000px;}
.x6_c00485{left:75.900000px;}
.x7_c00485{left:76.950000px;}
.x5_c00485{left:78.300000px;}
.x4_c00485{left:79.650000px;}
.x3_c00485{left:81.000000px;}
.x2_c00485{left:82.050000px;}
.x9_c00485{left:197.926758px;}
.x1_c00485{left:212.400000px;}
.x8_c00485{left:405.750000px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls1_c00485{letter-spacing:0.000000pt;}
.ls2_c00485{letter-spacing:2.666667pt;}
.ls0_c00485{letter-spacing:22.144000pt;}
.ws1_c00485{word-spacing:-24.960000pt;}
.ws0_c00485{word-spacing:-19.968000pt;}
.ws2_c00485{word-spacing:-15.424000pt;}
.ws3_c00485{word-spacing:0.000000pt;}
._15_c00485{margin-left:-25.984000pt;}
._10_c00485{margin-left:-21.482667pt;}
._12_c00485{margin-left:-14.165333pt;}
._16_c00485{margin-left:-7.722667pt;}
._4_c00485{margin-left:-6.442667pt;}
._11_c00485{margin-left:-4.928000pt;}
._d_c00485{margin-left:-3.562667pt;}
._6_c00485{margin-left:-2.666667pt;}
._3_c00485{margin-left:-1.045333pt;}
._7_c00485{width:0.960000pt;}
._8_c00485{width:1.856000pt;}
._c_c00485{width:3.008000pt;}
._a_c00485{width:4.096000pt;}
._1_c00485{width:4.992000pt;}
._9_c00485{width:6.400000pt;}
._e_c00485{width:7.424000pt;}
._2_c00485{width:8.576000pt;}
._0_c00485{width:9.600000pt;}
._5_c00485{width:11.200000pt;}
._f_c00485{width:12.800000pt;}
._13_c00485{width:14.272000pt;}
._18_c00485{width:15.488000pt;}
._17_c00485{width:16.853333pt;}
._14_c00485{width:19.626667pt;}
._b_c00485{width:20.992000pt;}
._19_c00485{width:28.096000pt;}
.fs2_c00485{font-size:42.666667pt;}
.fs1_c00485{font-size:51.200000pt;}
.fs0_c00485{font-size:64.000000pt;}
.y0_c00485{bottom:0.000000pt;}
.y1f_c00485{bottom:2.760000pt;}
.y1e_c00485{bottom:6.425217pt;}
.y1d_c00485{bottom:47.973333pt;}
.y1c_c00485{bottom:65.706667pt;}
.y1b_c00485{bottom:88.506667pt;}
.y1a_c00485{bottom:110.640000pt;}
.y19_c00485{bottom:132.506667pt;}
.y18_c00485{bottom:154.106667pt;}
.y17_c00485{bottom:176.106667pt;}
.y16_c00485{bottom:198.240000pt;}
.y15_c00485{bottom:220.106667pt;}
.y14_c00485{bottom:242.373333pt;}
.y13_c00485{bottom:264.240000pt;}
.y12_c00485{bottom:286.106667pt;}
.y11_c00485{bottom:309.040000pt;}
.y10_c00485{bottom:329.440000pt;}
.yf_c00485{bottom:350.906667pt;}
.ye_c00485{bottom:372.906667pt;}
.yd_c00485{bottom:395.040000pt;}
.yc_c00485{bottom:416.640000pt;}
.yb_c00485{bottom:438.506667pt;}
.ya_c00485{bottom:460.240000pt;}
.y9_c00485{bottom:481.840000pt;}
.y8_c00485{bottom:503.706667pt;}
.y7_c00485{bottom:525.306667pt;}
.y6_c00485{bottom:547.440000pt;}
.y5_c00485{bottom:569.306667pt;}
.y4_c00485{bottom:590.906667pt;}
.y3_c00485{bottom:612.906667pt;}
.y2_c00485{bottom:634.106667pt;}
.y1_c00485{bottom:656.640000pt;}
.h2_c00485{height:11.733399pt;}
.h3_c00485{height:38.937500pt;}
.h1_c00485{height:81.031250pt;}
.h0_c00485{height:687.333333pt;}
.w2_c00485{width:93.222667pt;}
.w1_c00485{width:437.333333pt;}
.w0_c00485{width:437.533333pt;}
.x0_c00485{left:0.000000pt;}
.x6_c00485{left:67.466667pt;}
.x7_c00485{left:68.400000pt;}
.x5_c00485{left:69.600000pt;}
.x4_c00485{left:70.800000pt;}
.x3_c00485{left:72.000000pt;}
.x2_c00485{left:72.933333pt;}
.x9_c00485{left:175.934896pt;}
.x1_c00485{left:188.800000pt;}
.x8_c00485{left:360.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_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_a3a40ccb1ab513beb28daa6b.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00486;src:url('chunks/assets/font_017cd31a2635ac315068b5dd.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:1.568848;font-style:normal;font-weight:normal;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_5ff087e1d21901a046919748.woff2')format("woff");}.ff3_c00486{font-family:ff3_c00486;line-height:1.575000;font-style:normal;font-weight:normal;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_7152bde6ec7cf8d53bbd009e.woff2')format("woff");}.ff4_c00486{font-family:ff4_c00486;line-height:1.592000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00486{font-family:ff5_c00486;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00486{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.ls2_c00486{letter-spacing:-3.000000px;}
.ls1_c00486{letter-spacing:0.000000px;}
.ls0_c00486{letter-spacing:3.000000px;}
.ls3_c00486{letter-spacing:6.000000px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00486{word-spacing:-27.051000px;}
.ws1_c00486{word-spacing:-22.629000px;}
.ws2_c00486{word-spacing:0.000000px;}
._13_c00486{margin-left:-28.884000px;}
._6_c00486{margin-left:-16.296000px;}
._15_c00486{margin-left:-12.612000px;}
._17_c00486{margin-left:-10.056000px;}
._16_c00486{margin-left:-8.856000px;}
._12_c00486{margin-left:-7.092000px;}
._14_c00486{margin-left:-5.856000px;}
._2_c00486{margin-left:-4.788000px;}
._e_c00486{margin-left:-3.024000px;}
._f_c00486{margin-left:-1.896000px;}
._a_c00486{width:1.920000px;}
._3_c00486{width:3.360000px;}
._5_c00486{width:4.452000px;}
._4_c00486{width:6.048000px;}
._1_c00486{width:7.392000px;}
._d_c00486{width:9.084000px;}
._c_c00486{width:10.200000px;}
._0_c00486{width:11.928000px;}
._11_c00486{width:13.464000px;}
._b_c00486{width:15.180000px;}
._10_c00486{width:17.220000px;}
._18_c00486{width:18.573000px;}
._7_c00486{width:24.024000px;}
._9_c00486{width:31.164000px;}
._8_c00486{width:300.888000px;}
.fc2_c00486{color:transparent;}
.fc1_c00486{color:rgb(128,128,128);}
.fc0_c00486{color:rgb(0,0,0);}
.fs5_c00486{font-size:48.000000px;}
.fs4_c00486{font-size:60.000000px;}
.fs2_c00486{font-size:63.000000px;}
.fs3_c00486{font-size:69.000000px;}
.fs1_c00486{font-size:72.000000px;}
.fs0_c00486{font-size:84.000000px;}
.y0_c00486{bottom:0.000000px;}
.y1f_c00486{bottom:3.105000px;}
.y1e_c00486{bottom:7.228355px;}
.y1d_c00486{bottom:36.135000px;}
.y1c_c00486{bottom:64.035000px;}
.y1b_c00486{bottom:92.385000px;}
.y1a_c00486{bottom:116.385000px;}
.y19_c00486{bottom:141.435000px;}
.y18_c00486{bottom:166.035000px;}
.y17_c00486{bottom:191.235000px;}
.y16_c00486{bottom:213.585000px;}
.y15_c00486{bottom:239.235000px;}
.y14_c00486{bottom:263.535000px;}
.y13_c00486{bottom:289.185000px;}
.y12_c00486{bottom:311.385000px;}
.y11_c00486{bottom:336.135000px;}
.y10_c00486{bottom:359.385000px;}
.yf_c00486{bottom:383.685000px;}
.ye_c00486{bottom:409.935000px;}
.yd_c00486{bottom:433.635000px;}
.yc_c00486{bottom:457.635000px;}
.yb_c00486{bottom:482.235000px;}
.ya_c00486{bottom:507.285000px;}
.y9_c00486{bottom:531.435000px;}
.y8_c00486{bottom:556.185000px;}
.y7_c00486{bottom:579.735000px;}
.y6_c00486{bottom:604.785000px;}
.y5_c00486{bottom:629.085000px;}
.y4_c00486{bottom:654.285000px;}
.y3_c00486{bottom:678.285000px;}
.y2_c00486{bottom:703.035000px;}
.y1_c00486{bottom:726.885000px;}
.h5_c00486{height:13.200074px;}
.h6_c00486{height:43.804688px;}
.h2_c00486{height:82.400391px;}
.h4_c00486{height:87.361816px;}
.h3_c00486{height:91.160156px;}
.h0_c00486{height:763.275000px;}
.h1_c00486{height:763.500000px;}
.w2_c00486{width:104.875500px;}
.w0_c00486{width:507.600000px;}
.w1_c00486{width:507.750000px;}
.x0_c00486{left:0.000000px;}
.x5_c00486{left:29.400000px;}
.x2_c00486{left:30.450000px;}
.x3_c00486{left:32.100000px;}
.x4_c00486{left:33.150000px;}
.x1_c00486{left:153.450000px;}
.x7_c00486{left:205.614258px;}
.x6_c00486{left:358.800000px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls2_c00486{letter-spacing:-2.666667pt;}
.ls1_c00486{letter-spacing:0.000000pt;}
.ls0_c00486{letter-spacing:2.666667pt;}
.ls3_c00486{letter-spacing:5.333333pt;}
.ws0_c00486{word-spacing:-24.045333pt;}
.ws1_c00486{word-spacing:-20.114667pt;}
.ws2_c00486{word-spacing:0.000000pt;}
._13_c00486{margin-left:-25.674667pt;}
._6_c00486{margin-left:-14.485333pt;}
._15_c00486{margin-left:-11.210667pt;}
._17_c00486{margin-left:-8.938667pt;}
._16_c00486{margin-left:-7.872000pt;}
._12_c00486{margin-left:-6.304000pt;}
._14_c00486{margin-left:-5.205333pt;}
._2_c00486{margin-left:-4.256000pt;}
._e_c00486{margin-left:-2.688000pt;}
._f_c00486{margin-left:-1.685333pt;}
._a_c00486{width:1.706667pt;}
._3_c00486{width:2.986667pt;}
._5_c00486{width:3.957333pt;}
._4_c00486{width:5.376000pt;}
._1_c00486{width:6.570667pt;}
._d_c00486{width:8.074667pt;}
._c_c00486{width:9.066667pt;}
._0_c00486{width:10.602667pt;}
._11_c00486{width:11.968000pt;}
._b_c00486{width:13.493333pt;}
._10_c00486{width:15.306667pt;}
._18_c00486{width:16.509333pt;}
._7_c00486{width:21.354667pt;}
._9_c00486{width:27.701333pt;}
._8_c00486{width:267.456000pt;}
.fs5_c00486{font-size:42.666667pt;}
.fs4_c00486{font-size:53.333333pt;}
.fs2_c00486{font-size:56.000000pt;}
.fs3_c00486{font-size:61.333333pt;}
.fs1_c00486{font-size:64.000000pt;}
.fs0_c00486{font-size:74.666667pt;}
.y0_c00486{bottom:0.000000pt;}
.y1f_c00486{bottom:2.760000pt;}
.y1e_c00486{bottom:6.425204pt;}
.y1d_c00486{bottom:32.120000pt;}
.y1c_c00486{bottom:56.920000pt;}
.y1b_c00486{bottom:82.120000pt;}
.y1a_c00486{bottom:103.453333pt;}
.y19_c00486{bottom:125.720000pt;}
.y18_c00486{bottom:147.586667pt;}
.y17_c00486{bottom:169.986667pt;}
.y16_c00486{bottom:189.853333pt;}
.y15_c00486{bottom:212.653333pt;}
.y14_c00486{bottom:234.253333pt;}
.y13_c00486{bottom:257.053333pt;}
.y12_c00486{bottom:276.786667pt;}
.y11_c00486{bottom:298.786667pt;}
.y10_c00486{bottom:319.453333pt;}
.yf_c00486{bottom:341.053333pt;}
.ye_c00486{bottom:364.386667pt;}
.yd_c00486{bottom:385.453333pt;}
.yc_c00486{bottom:406.786667pt;}
.yb_c00486{bottom:428.653333pt;}
.ya_c00486{bottom:450.920000pt;}
.y9_c00486{bottom:472.386667pt;}
.y8_c00486{bottom:494.386667pt;}
.y7_c00486{bottom:515.320000pt;}
.y6_c00486{bottom:537.586667pt;}
.y5_c00486{bottom:559.186667pt;}
.y4_c00486{bottom:581.586667pt;}
.y3_c00486{bottom:602.920000pt;}
.y2_c00486{bottom:624.920000pt;}
.y1_c00486{bottom:646.120000pt;}
.h5_c00486{height:11.733399pt;}
.h6_c00486{height:38.937500pt;}
.h2_c00486{height:73.244792pt;}
.h4_c00486{height:77.654948pt;}
.h3_c00486{height:81.031250pt;}
.h0_c00486{height:678.466667pt;}
.h1_c00486{height:678.666667pt;}
.w2_c00486{width:93.222667pt;}
.w0_c00486{width:451.200000pt;}
.w1_c00486{width:451.333333pt;}
.x0_c00486{left:0.000000pt;}
.x5_c00486{left:26.133333pt;}
.x2_c00486{left:27.066667pt;}
.x3_c00486{left:28.533333pt;}
.x4_c00486{left:29.466667pt;}
.x1_c00486{left:136.400000pt;}
.x7_c00486{left:182.768229pt;}
.x6_c00486{left:318.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1529f350d8e920b085ce3737.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.480469;font-style:normal;font-weight:normal;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_f98853016789a338693299bd.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.568848;font-style:normal;font-weight:normal;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_819c04009105c3c86b84fe32.woff2')format("woff");}.ff3_c00487{font-family:ff3_c00487;line-height:1.575000;font-style:normal;font-weight:normal;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_4791955b330dc542cd334436.woff2')format("woff");}.ff4_c00487{font-family:ff4_c00487;line-height:1.575000;font-style:normal;font-weight:normal;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_32b633f8ecf229f9def226f3.woff2')format("woff");}.ff5_c00487{font-family:ff5_c00487;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00487;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00487{font-family:ff6_c00487;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00487{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00487{vertical-align:0.000000px;}
.ls1_c00487{letter-spacing:-3.000000px;}
.ls3_c00487{letter-spacing:0.000000px;}
.ls0_c00487{letter-spacing:0.705000px;}
.ls2_c00487{letter-spacing:3.000000px;}
.sc__c00487{text-shadow:none;}
.sc0_c00487{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00487{-webkit-text-stroke:0px transparent;}
.sc0_c00487{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00487{word-spacing:-40.500000px;}
.ws2_c00487{word-spacing:-28.809000px;}
.ws1_c00487{word-spacing:-27.051000px;}
.ws0_c00487{word-spacing:-11.040000px;}
.ws4_c00487{word-spacing:0.000000px;}
._17_c00487{margin-left:-11.316000px;}
._19_c00487{margin-left:-9.696000px;}
._18_c00487{margin-left:-8.139000px;}
._10_c00487{margin-left:-6.840000px;}
._8_c00487{margin-left:-5.664000px;}
._a_c00487{margin-left:-4.392000px;}
._9_c00487{margin-left:-3.312000px;}
._b_c00487{margin-left:-2.256000px;}
._5_c00487{margin-left:-1.056000px;}
._4_c00487{width:1.296000px;}
._7_c00487{width:2.304000px;}
._6_c00487{width:3.384000px;}
._c_c00487{width:4.440000px;}
._e_c00487{width:5.475000px;}
._d_c00487{width:6.624000px;}
._0_c00487{width:7.680000px;}
._11_c00487{width:9.648000px;}
._1_c00487{width:10.680000px;}
._3_c00487{width:12.480000px;}
._f_c00487{width:13.800000px;}
._16_c00487{width:14.901000px;}
._2_c00487{width:16.440000px;}
._12_c00487{width:22.368000px;}
._14_c00487{width:23.472000px;}
._15_c00487{width:26.016000px;}
._13_c00487{width:28.365000px;}
._1a_c00487{width:32.916000px;}
.fc2_c00487{color:transparent;}
.fc1_c00487{color:rgb(128,128,128);}
.fc0_c00487{color:rgb(0,0,0);}
.fs6_c00487{font-size:48.000000px;}
.fs0_c00487{font-size:60.000000px;}
.fs2_c00487{font-size:63.000000px;}
.fs4_c00487{font-size:69.000000px;}
.fs1_c00487{font-size:72.000000px;}
.fs5_c00487{font-size:81.000000px;}
.fs3_c00487{font-size:87.000000px;}
.y0_c00487{bottom:0.000000px;}
.y1f_c00487{bottom:3.105000px;}
.y1e_c00487{bottom:7.228357px;}
.y1d_c00487{bottom:63.780000px;}
.y1c_c00487{bottom:86.730000px;}
.y1b_c00487{bottom:110.430000px;}
.y1a_c00487{bottom:135.030000px;}
.y19_c00487{bottom:160.680000px;}
.y18_c00487{bottom:185.580000px;}
.y17_c00487{bottom:210.330000px;}
.y16_c00487{bottom:235.530000px;}
.y15_c00487{bottom:260.280000px;}
.y14_c00487{bottom:284.280000px;}
.y13_c00487{bottom:309.930000px;}
.y12_c00487{bottom:334.230000px;}
.y11_c00487{bottom:358.080000px;}
.y10_c00487{bottom:382.680000px;}
.yf_c00487{bottom:406.680000px;}
.ye_c00487{bottom:432.030000px;}
.yd_c00487{bottom:456.030000px;}
.yc_c00487{bottom:480.330000px;}
.yb_c00487{bottom:504.930000px;}
.ya_c00487{bottom:529.230000px;}
.y9_c00487{bottom:553.230000px;}
.y8_c00487{bottom:578.130000px;}
.y7_c00487{bottom:602.730000px;}
.y6_c00487{bottom:626.430000px;}
.y5_c00487{bottom:651.330000px;}
.y4_c00487{bottom:675.330000px;}
.y3_c00487{bottom:700.080000px;}
.y2_c00487{bottom:724.380000px;}
.y1_c00487{bottom:749.580000px;}
.h6_c00487{height:13.200074px;}
.h7_c00487{height:43.804688px;}
.h2_c00487{height:75.966797px;}
.h5_c00487{height:79.497070px;}
.h3_c00487{height:91.160156px;}
.h4_c00487{height:92.829000px;}
.h1_c00487{height:784.500000px;}
.h0_c00487{height:784.650000px;}
.w1_c00487{width:104.875500px;}
.w0_c00487{width:516.000000px;}
.x0_c00487{left:0.000000px;}
.x5_c00487{left:99.300000px;}
.x4_c00487{left:100.650000px;}
.x3_c00487{left:102.000000px;}
.x2_c00487{left:103.650000px;}
.x7_c00487{left:209.814240px;}
.x1_c00487{left:233.250000px;}
.x6_c00487{left:440.100000px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls1_c00487{letter-spacing:-2.666667pt;}
.ls3_c00487{letter-spacing:0.000000pt;}
.ls0_c00487{letter-spacing:0.626667pt;}
.ls2_c00487{letter-spacing:2.666667pt;}
.ws3_c00487{word-spacing:-36.000000pt;}
.ws2_c00487{word-spacing:-25.608000pt;}
.ws1_c00487{word-spacing:-24.045333pt;}
.ws0_c00487{word-spacing:-9.813333pt;}
.ws4_c00487{word-spacing:0.000000pt;}
._17_c00487{margin-left:-10.058667pt;}
._19_c00487{margin-left:-8.618667pt;}
._18_c00487{margin-left:-7.234667pt;}
._10_c00487{margin-left:-6.080000pt;}
._8_c00487{margin-left:-5.034667pt;}
._a_c00487{margin-left:-3.904000pt;}
._9_c00487{margin-left:-2.944000pt;}
._b_c00487{margin-left:-2.005333pt;}
._5_c00487{margin-left:-0.938667pt;}
._4_c00487{width:1.152000pt;}
._7_c00487{width:2.048000pt;}
._6_c00487{width:3.008000pt;}
._c_c00487{width:3.946667pt;}
._e_c00487{width:4.866667pt;}
._d_c00487{width:5.888000pt;}
._0_c00487{width:6.826667pt;}
._11_c00487{width:8.576000pt;}
._1_c00487{width:9.493333pt;}
._3_c00487{width:11.093333pt;}
._f_c00487{width:12.266667pt;}
._16_c00487{width:13.245333pt;}
._2_c00487{width:14.613333pt;}
._12_c00487{width:19.882667pt;}
._14_c00487{width:20.864000pt;}
._15_c00487{width:23.125333pt;}
._13_c00487{width:25.213333pt;}
._1a_c00487{width:29.258667pt;}
.fs6_c00487{font-size:42.666667pt;}
.fs0_c00487{font-size:53.333333pt;}
.fs2_c00487{font-size:56.000000pt;}
.fs4_c00487{font-size:61.333333pt;}
.fs1_c00487{font-size:64.000000pt;}
.fs5_c00487{font-size:72.000000pt;}
.fs3_c00487{font-size:77.333333pt;}
.y0_c00487{bottom:0.000000pt;}
.y1f_c00487{bottom:2.760000pt;}
.y1e_c00487{bottom:6.425206pt;}
.y1d_c00487{bottom:56.693333pt;}
.y1c_c00487{bottom:77.093333pt;}
.y1b_c00487{bottom:98.160000pt;}
.y1a_c00487{bottom:120.026667pt;}
.y19_c00487{bottom:142.826667pt;}
.y18_c00487{bottom:164.960000pt;}
.y17_c00487{bottom:186.960000pt;}
.y16_c00487{bottom:209.360000pt;}
.y15_c00487{bottom:231.360000pt;}
.y14_c00487{bottom:252.693333pt;}
.y13_c00487{bottom:275.493333pt;}
.y12_c00487{bottom:297.093333pt;}
.y11_c00487{bottom:318.293333pt;}
.y10_c00487{bottom:340.160000pt;}
.yf_c00487{bottom:361.493333pt;}
.ye_c00487{bottom:384.026667pt;}
.yd_c00487{bottom:405.360000pt;}
.yc_c00487{bottom:426.960000pt;}
.yb_c00487{bottom:448.826667pt;}
.ya_c00487{bottom:470.426667pt;}
.y9_c00487{bottom:491.760000pt;}
.y8_c00487{bottom:513.893333pt;}
.y7_c00487{bottom:535.760000pt;}
.y6_c00487{bottom:556.826667pt;}
.y5_c00487{bottom:578.960000pt;}
.y4_c00487{bottom:600.293333pt;}
.y3_c00487{bottom:622.293333pt;}
.y2_c00487{bottom:643.893333pt;}
.y1_c00487{bottom:666.293333pt;}
.h6_c00487{height:11.733399pt;}
.h7_c00487{height:38.937500pt;}
.h2_c00487{height:67.526042pt;}
.h5_c00487{height:70.664062pt;}
.h3_c00487{height:81.031250pt;}
.h4_c00487{height:82.514667pt;}
.h1_c00487{height:697.333333pt;}
.h0_c00487{height:697.466667pt;}
.w1_c00487{width:93.222667pt;}
.w0_c00487{width:458.666667pt;}
.x0_c00487{left:0.000000pt;}
.x5_c00487{left:88.266667pt;}
.x4_c00487{left:89.466667pt;}
.x3_c00487{left:90.666667pt;}
.x2_c00487{left:92.133333pt;}
.x7_c00487{left:186.501546pt;}
.x1_c00487{left:207.333333pt;}
.x6_c00487{left:391.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b1cc0a5d25c4295de000b74a.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00488;src:url('chunks/assets/font_7520c00a59cdcee201165b99.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00488;src:url('chunks/assets/font_53472fb09bc387948abdbd00.woff2')format("woff");}.ff3_c00488{font-family:ff3_c00488;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00488;src:url('chunks/assets/font_dce0411b250a65a121acf685.woff2')format("woff");}.ff4_c00488{font-family:ff4_c00488;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00488;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00488{font-family:ff5_c00488;line-height:1.219238;font-style: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;}
.ls2_c00488{letter-spacing:0.000000px;}
.ls0_c00488{letter-spacing:3.000000px;}
.ls1_c00488{letter-spacing:7.788000px;}
.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:-20.352000px;}
.ws1_c00488{word-spacing:0.000000px;}
._12_c00488{margin-left:-21.696000px;}
._11_c00488{margin-left:-17.658000px;}
._1_c00488{margin-left:-14.823000px;}
._14_c00488{margin-left:-13.134000px;}
._9_c00488{margin-left:-11.760000px;}
._10_c00488{margin-left:-10.002000px;}
._13_c00488{margin-left:-7.398000px;}
._2_c00488{margin-left:-5.589000px;}
._c_c00488{margin-left:-3.594000px;}
._3_c00488{margin-left:-2.556000px;}
._d_c00488{margin-left:-1.344000px;}
._f_c00488{width:1.017000px;}
._4_c00488{width:2.184000px;}
._6_c00488{width:3.948000px;}
._5_c00488{width:5.880000px;}
._7_c00488{width:7.812000px;}
._b_c00488{width:9.975000px;}
._a_c00488{width:11.001000px;}
._e_c00488{width:12.435000px;}
._0_c00488{width:32.319000px;}
._8_c00488{width:331.968000px;}
.fc2_c00488{color:transparent;}
.fc1_c00488{color:rgb(128,128,128);}
.fc0_c00488{color:rgb(0,0,0);}
.fs5_c00488{font-size:48.000000px;}
.fs2_c00488{font-size:57.000000px;}
.fs4_c00488{font-size:63.000000px;}
.fs3_c00488{font-size:72.000000px;}
.fs0_c00488{font-size:81.000000px;}
.fs1_c00488{font-size:84.000000px;}
.y0_c00488{bottom:0.000000px;}
.y1f_c00488{bottom:3.105000px;}
.y1e_c00488{bottom:7.228355px;}
.y1d_c00488{bottom:43.185000px;}
.y1c_c00488{bottom:73.485000px;}
.y1b_c00488{bottom:98.085000px;}
.y1a_c00488{bottom:123.435000px;}
.y19_c00488{bottom:146.385000px;}
.y18_c00488{bottom:172.035000px;}
.y17_c00488{bottom:195.285000px;}
.y16_c00488{bottom:216.585000px;}
.y15_c00488{bottom:244.635000px;}
.y14_c00488{bottom:269.985000px;}
.y13_c00488{bottom:294.585000px;}
.y12_c00488{bottom:315.585000px;}
.y11_c00488{bottom:340.185000px;}
.y10_c00488{bottom:364.185000px;}
.yf_c00488{bottom:387.135000px;}
.ye_c00488{bottom:412.335000px;}
.yd_c00488{bottom:436.635000px;}
.yc_c00488{bottom:461.385000px;}
.yb_c00488{bottom:485.235000px;}
.ya_c00488{bottom:509.985000px;}
.y9_c00488{bottom:534.135000px;}
.y8_c00488{bottom:558.585000px;}
.y7_c00488{bottom:583.485000px;}
.y6_c00488{bottom:607.185000px;}
.y5_c00488{bottom:631.485000px;}
.y4_c00488{bottom:656.085000px;}
.y3_c00488{bottom:680.685000px;}
.y2_c00488{bottom:705.285000px;}
.y1_c00488{bottom:729.885000px;}
.h4_c00488{height:13.200074px;}
.h5_c00488{height:43.804688px;}
.h2_c00488{height:82.400391px;}
.h3_c00488{height:91.160156px;}
.h0_c00488{height:770.025000px;}
.h1_c00488{height:770.250000px;}
.w2_c00488{width:104.875500px;}
.w1_c00488{width:513.750000px;}
.w0_c00488{width:513.825000px;}
.x0_c00488{left:0.000000px;}
.xa_c00488{left:25.650000px;}
.x9_c00488{left:27.300000px;}
.x8_c00488{left:29.250000px;}
.x7_c00488{left:30.750000px;}
.x6_c00488{left:31.800000px;}
.x4_c00488{left:33.150000px;}
.x3_c00488{left:34.200000px;}
.x2_c00488{left:35.400000px;}
.x5_c00488{left:56.250000px;}
.x1_c00488{left:149.550000px;}
.xc_c00488{left:208.726730px;}
.xb_c00488{left:341.100000px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls2_c00488{letter-spacing:0.000000pt;}
.ls0_c00488{letter-spacing:2.666667pt;}
.ls1_c00488{letter-spacing:6.922667pt;}
.ws0_c00488{word-spacing:-18.090667pt;}
.ws1_c00488{word-spacing:0.000000pt;}
._12_c00488{margin-left:-19.285333pt;}
._11_c00488{margin-left:-15.696000pt;}
._1_c00488{margin-left:-13.176000pt;}
._14_c00488{margin-left:-11.674667pt;}
._9_c00488{margin-left:-10.453333pt;}
._10_c00488{margin-left:-8.890667pt;}
._13_c00488{margin-left:-6.576000pt;}
._2_c00488{margin-left:-4.968000pt;}
._c_c00488{margin-left:-3.194667pt;}
._3_c00488{margin-left:-2.272000pt;}
._d_c00488{margin-left:-1.194667pt;}
._f_c00488{width:0.904000pt;}
._4_c00488{width:1.941333pt;}
._6_c00488{width:3.509333pt;}
._5_c00488{width:5.226667pt;}
._7_c00488{width:6.944000pt;}
._b_c00488{width:8.866667pt;}
._a_c00488{width:9.778667pt;}
._e_c00488{width:11.053333pt;}
._0_c00488{width:28.728000pt;}
._8_c00488{width:295.082667pt;}
.fs5_c00488{font-size:42.666667pt;}
.fs2_c00488{font-size:50.666667pt;}
.fs4_c00488{font-size:56.000000pt;}
.fs3_c00488{font-size:64.000000pt;}
.fs0_c00488{font-size:72.000000pt;}
.fs1_c00488{font-size:74.666667pt;}
.y0_c00488{bottom:0.000000pt;}
.y1f_c00488{bottom:2.760000pt;}
.y1e_c00488{bottom:6.425204pt;}
.y1d_c00488{bottom:38.386667pt;}
.y1c_c00488{bottom:65.320000pt;}
.y1b_c00488{bottom:87.186667pt;}
.y1a_c00488{bottom:109.720000pt;}
.y19_c00488{bottom:130.120000pt;}
.y18_c00488{bottom:152.920000pt;}
.y17_c00488{bottom:173.586667pt;}
.y16_c00488{bottom:192.520000pt;}
.y15_c00488{bottom:217.453333pt;}
.y14_c00488{bottom:239.986667pt;}
.y13_c00488{bottom:261.853333pt;}
.y12_c00488{bottom:280.520000pt;}
.y11_c00488{bottom:302.386667pt;}
.y10_c00488{bottom:323.720000pt;}
.yf_c00488{bottom:344.120000pt;}
.ye_c00488{bottom:366.520000pt;}
.yd_c00488{bottom:388.120000pt;}
.yc_c00488{bottom:410.120000pt;}
.yb_c00488{bottom:431.320000pt;}
.ya_c00488{bottom:453.320000pt;}
.y9_c00488{bottom:474.786667pt;}
.y8_c00488{bottom:496.520000pt;}
.y7_c00488{bottom:518.653333pt;}
.y6_c00488{bottom:539.720000pt;}
.y5_c00488{bottom:561.320000pt;}
.y4_c00488{bottom:583.186667pt;}
.y3_c00488{bottom:605.053333pt;}
.y2_c00488{bottom:626.920000pt;}
.y1_c00488{bottom:648.786667pt;}
.h4_c00488{height:11.733399pt;}
.h5_c00488{height:38.937500pt;}
.h2_c00488{height:73.244792pt;}
.h3_c00488{height:81.031250pt;}
.h0_c00488{height:684.466667pt;}
.h1_c00488{height:684.666667pt;}
.w2_c00488{width:93.222667pt;}
.w1_c00488{width:456.666667pt;}
.w0_c00488{width:456.733333pt;}
.x0_c00488{left:0.000000pt;}
.xa_c00488{left:22.800000pt;}
.x9_c00488{left:24.266667pt;}
.x8_c00488{left:26.000000pt;}
.x7_c00488{left:27.333333pt;}
.x6_c00488{left:28.266667pt;}
.x4_c00488{left:29.466667pt;}
.x3_c00488{left:30.400000pt;}
.x2_c00488{left:31.466667pt;}
.x5_c00488{left:50.000000pt;}
.x1_c00488{left:132.933333pt;}
.xc_c00488{left:185.534871pt;}
.xb_c00488{left:303.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5c524d6c1ff1d36cd9a8b0f5.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.568848;font-style:normal;font-weight:normal;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_1de342fe9bf6aa614debcaec.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.480469;font-style:normal;font-weight:normal;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_e0c17a5b0d62c3cbebb5bb0c.woff2')format("woff");}.ff3_c00489{font-family:ff3_c00489;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00489{font-family:ff4_c00489;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00489{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.ls1_c00489{letter-spacing:-3.000000px;}
.ls2_c00489{letter-spacing:0.000000px;}
.ls3_c00489{letter-spacing:3.000000px;}
.ls0_c00489{letter-spacing:33.588000px;}
.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:-17.352000px;}
.ws1_c00489{word-spacing:0.000000px;}
._17_c00489{margin-left:-14.808000px;}
._11_c00489{margin-left:-10.275000px;}
._0_c00489{margin-left:-9.129000px;}
._9_c00489{margin-left:-7.056000px;}
._c_c00489{margin-left:-5.544000px;}
._12_c00489{margin-left:-4.455000px;}
._1_c00489{margin-left:-3.264000px;}
._a_c00489{margin-left:-2.136000px;}
._b_c00489{margin-left:-1.128000px;}
._8_c00489{width:1.368000px;}
._5_c00489{width:2.448000px;}
._7_c00489{width:4.392000px;}
._4_c00489{width:5.616000px;}
._d_c00489{width:6.624000px;}
._6_c00489{width:8.424000px;}
._13_c00489{width:9.792000px;}
._3_c00489{width:10.800000px;}
._10_c00489{width:12.105000px;}
._f_c00489{width:13.512000px;}
._e_c00489{width:15.672000px;}
._14_c00489{width:19.182000px;}
._15_c00489{width:23.202000px;}
._16_c00489{width:26.856000px;}
._2_c00489{width:285.315000px;}
.fc2_c00489{color:transparent;}
.fc1_c00489{color:rgb(128,128,128);}
.fc0_c00489{color:rgb(0,0,0);}
.fs3_c00489{font-size:48.000000px;}
.fs0_c00489{font-size:51.000000px;}
.fs2_c00489{font-size:63.000000px;}
.fs1_c00489{font-size:72.000000px;}
.y0_c00489{bottom:0.000000px;}
.y1e_c00489{bottom:3.105000px;}
.y1d_c00489{bottom:7.228363px;}
.y1c_c00489{bottom:66.600000px;}
.y1b_c00489{bottom:92.850000px;}
.y1a_c00489{bottom:117.900000px;}
.y19_c00489{bottom:142.800000px;}
.y18_c00489{bottom:167.850000px;}
.y17_c00489{bottom:193.350000px;}
.y16_c00489{bottom:217.950000px;}
.y15_c00489{bottom:242.100000px;}
.y14_c00489{bottom:267.300000px;}
.y13_c00489{bottom:292.350000px;}
.y12_c00489{bottom:316.950000px;}
.y11_c00489{bottom:342.450000px;}
.y10_c00489{bottom:365.850000px;}
.yf_c00489{bottom:390.150000px;}
.ye_c00489{bottom:414.900000px;}
.yd_c00489{bottom:439.500000px;}
.yc_c00489{bottom:464.100000px;}
.yb_c00489{bottom:489.300000px;}
.ya_c00489{bottom:513.300000px;}
.y9_c00489{bottom:536.850000px;}
.y8_c00489{bottom:561.600000px;}
.y7_c00489{bottom:585.900000px;}
.y6_c00489{bottom:610.650000px;}
.y5_c00489{bottom:635.850000px;}
.y4_c00489{bottom:660.750000px;}
.y3_c00489{bottom:684.450000px;}
.y2_c00489{bottom:707.400000px;}
.y1_c00489{bottom:734.700000px;}
.h4_c00489{height:13.200074px;}
.h5_c00489{height:43.804688px;}
.h2_c00489{height:84.269531px;}
.h3_c00489{height:91.160156px;}
.h0_c00489{height:772.200000px;}
.h1_c00489{height:772.500000px;}
.w2_c00489{width:104.875500px;}
.w1_c00489{width:514.500000px;}
.w0_c00489{width:514.650000px;}
.x0_c00489{left:0.000000px;}
.x6_c00489{left:35.400000px;}
.x3_c00489{left:105.000000px;}
.x2_c00489{left:109.350000px;}
.x4_c00489{left:111.000000px;}
.x5_c00489{left:112.650000px;}
.x7_c00489{left:113.700000px;}
.x8_c00489{left:114.750000px;}
.x9_c00489{left:116.400000px;}
.xa_c00489{left:118.200000px;}
.xb_c00489{left:119.850000px;}
.x1_c00489{left:146.850000px;}
.xc_c00489{left:209.139267px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls1_c00489{letter-spacing:-2.666667pt;}
.ls2_c00489{letter-spacing:0.000000pt;}
.ls3_c00489{letter-spacing:2.666667pt;}
.ls0_c00489{letter-spacing:29.856000pt;}
.ws0_c00489{word-spacing:-15.424000pt;}
.ws1_c00489{word-spacing:0.000000pt;}
._17_c00489{margin-left:-13.162667pt;}
._11_c00489{margin-left:-9.133333pt;}
._0_c00489{margin-left:-8.114667pt;}
._9_c00489{margin-left:-6.272000pt;}
._c_c00489{margin-left:-4.928000pt;}
._12_c00489{margin-left:-3.960000pt;}
._1_c00489{margin-left:-2.901333pt;}
._a_c00489{margin-left:-1.898667pt;}
._b_c00489{margin-left:-1.002667pt;}
._8_c00489{width:1.216000pt;}
._5_c00489{width:2.176000pt;}
._7_c00489{width:3.904000pt;}
._4_c00489{width:4.992000pt;}
._d_c00489{width:5.888000pt;}
._6_c00489{width:7.488000pt;}
._13_c00489{width:8.704000pt;}
._3_c00489{width:9.600000pt;}
._10_c00489{width:10.760000pt;}
._f_c00489{width:12.010667pt;}
._e_c00489{width:13.930667pt;}
._14_c00489{width:17.050667pt;}
._15_c00489{width:20.624000pt;}
._16_c00489{width:23.872000pt;}
._2_c00489{width:253.613333pt;}
.fs3_c00489{font-size:42.666667pt;}
.fs0_c00489{font-size:45.333333pt;}
.fs2_c00489{font-size:56.000000pt;}
.fs1_c00489{font-size:64.000000pt;}
.y0_c00489{bottom:0.000000pt;}
.y1e_c00489{bottom:2.760000pt;}
.y1d_c00489{bottom:6.425212pt;}
.y1c_c00489{bottom:59.200000pt;}
.y1b_c00489{bottom:82.533333pt;}
.y1a_c00489{bottom:104.800000pt;}
.y19_c00489{bottom:126.933333pt;}
.y18_c00489{bottom:149.200000pt;}
.y17_c00489{bottom:171.866667pt;}
.y16_c00489{bottom:193.733333pt;}
.y15_c00489{bottom:215.200000pt;}
.y14_c00489{bottom:237.600000pt;}
.y13_c00489{bottom:259.866667pt;}
.y12_c00489{bottom:281.733333pt;}
.y11_c00489{bottom:304.400000pt;}
.y10_c00489{bottom:325.200000pt;}
.yf_c00489{bottom:346.800000pt;}
.ye_c00489{bottom:368.800000pt;}
.yd_c00489{bottom:390.666667pt;}
.yc_c00489{bottom:412.533333pt;}
.yb_c00489{bottom:434.933333pt;}
.ya_c00489{bottom:456.266667pt;}
.y9_c00489{bottom:477.200000pt;}
.y8_c00489{bottom:499.200000pt;}
.y7_c00489{bottom:520.800000pt;}
.y6_c00489{bottom:542.800000pt;}
.y5_c00489{bottom:565.200000pt;}
.y4_c00489{bottom:587.333333pt;}
.y3_c00489{bottom:608.400000pt;}
.y2_c00489{bottom:628.800000pt;}
.y1_c00489{bottom:653.066667pt;}
.h4_c00489{height:11.733399pt;}
.h5_c00489{height:38.937500pt;}
.h2_c00489{height:74.906250pt;}
.h3_c00489{height:81.031250pt;}
.h0_c00489{height:686.400000pt;}
.h1_c00489{height:686.666667pt;}
.w2_c00489{width:93.222667pt;}
.w1_c00489{width:457.333333pt;}
.w0_c00489{width:457.466667pt;}
.x0_c00489{left:0.000000pt;}
.x6_c00489{left:31.466667pt;}
.x3_c00489{left:93.333333pt;}
.x2_c00489{left:97.200000pt;}
.x4_c00489{left:98.666667pt;}
.x5_c00489{left:100.133333pt;}
.x7_c00489{left:101.066667pt;}
.x8_c00489{left:102.000000pt;}
.x9_c00489{left:103.466667pt;}
.xa_c00489{left:105.066667pt;}
.xb_c00489{left:106.533333pt;}
.x1_c00489{left:130.533333pt;}
.xc_c00489{left:185.901571pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f7a2c4be7e67a37f34becb79.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.480469;font-style:normal;font-weight:normal;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_f2a527b4e3c872a4d0b2eb72.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:1.568848;font-style:normal;font-weight:normal;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_77b3b49b3abf3f0853219450.woff2')format("woff");}.ff3_c00490{font-family:ff3_c00490;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00490;src:url('chunks/assets/font_4bb71be9cdc78ab036bb3949.woff2')format("woff");}.ff4_c00490{font-family:ff4_c00490;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00490;src:url('chunks/assets/font_e0139a8bf19b443506e195b6.woff2')format("woff");}.ff5_c00490{font-family:ff5_c00490;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00490;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00490{font-family:ff6_c00490;line-height:1.219238;font-style: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;}
.v1_c00490{vertical-align:79.800000px;}
.ls5_c00490{letter-spacing:-12.000000px;}
.ls4_c00490{letter-spacing:-3.000000px;}
.ls2_c00490{letter-spacing:0.000000px;}
.ls0_c00490{letter-spacing:3.000000px;}
.ls3_c00490{letter-spacing:6.000000px;}
.ls1_c00490{letter-spacing:47.700000px;}
.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;}
}
.ws2_c00490{word-spacing:-30.000000px;}
.ws5_c00490{word-spacing:-22.977000px;}
.ws1_c00490{word-spacing:-20.352000px;}
.ws0_c00490{word-spacing:-17.352000px;}
.ws4_c00490{word-spacing:-16.629000px;}
.ws3_c00490{word-spacing:-14.460000px;}
.ws6_c00490{word-spacing:-4.629000px;}
.ws7_c00490{word-spacing:0.000000px;}
._1c_c00490{margin-left:-38.019000px;}
._21_c00490{margin-left:-36.243000px;}
._1f_c00490{margin-left:-33.867000px;}
._1d_c00490{margin-left:-32.799000px;}
._20_c00490{margin-left:-29.841000px;}
._1a_c00490{margin-left:-26.958000px;}
._19_c00490{margin-left:-24.012000px;}
._1e_c00490{margin-left:-22.185000px;}
._8_c00490{margin-left:-18.000000px;}
._16_c00490{margin-left:-15.867000px;}
._17_c00490{margin-left:-12.558000px;}
._22_c00490{margin-left:-11.400000px;}
._14_c00490{margin-left:-10.119000px;}
._11_c00490{margin-left:-8.424000px;}
._12_c00490{margin-left:-7.128000px;}
._13_c00490{margin-left:-5.976000px;}
._a_c00490{margin-left:-4.416000px;}
._b_c00490{margin-left:-2.415000px;}
._d_c00490{margin-left:-1.290000px;}
._e_c00490{width:1.014000px;}
._c_c00490{width:2.160000px;}
._0_c00490{width:3.300000px;}
._2_c00490{width:4.380000px;}
._5_c00490{width:5.640000px;}
._1_c00490{width:6.900000px;}
._15_c00490{width:8.559000px;}
._10_c00490{width:10.080000px;}
._6_c00490{width:12.000000px;}
._3_c00490{width:13.140000px;}
._f_c00490{width:14.235000px;}
._4_c00490{width:15.960000px;}
._25_c00490{width:19.248000px;}
._26_c00490{width:35.259000px;}
._18_c00490{width:37.608000px;}
._7_c00490{width:53.220000px;}
._23_c00490{width:63.720000px;}
._24_c00490{width:66.162000px;}
._1b_c00490{width:75.864000px;}
._28_c00490{width:238.350000px;}
._27_c00490{width:256.368000px;}
._9_c00490{width:269.583000px;}
.fc2_c00490{color:transparent;}
.fc1_c00490{color:rgb(128,128,128);}
.fc0_c00490{color:rgb(0,0,0);}
.fs4_c00490{font-size:48.000000px;}
.fs0_c00490{font-size:60.000000px;}
.fs1_c00490{font-size:69.000000px;}
.fs2_c00490{font-size:72.000000px;}
.fs3_c00490{font-size:87.000000px;}
.y0_c00490{bottom:0.000000px;}
.y21_c00490{bottom:3.105000px;}
.y20_c00490{bottom:7.228369px;}
.y1f_c00490{bottom:44.820000px;}
.y1e_c00490{bottom:75.570000px;}
.y1d_c00490{bottom:98.820000px;}
.y1c_c00490{bottom:124.920000px;}
.y1b_c00490{bottom:145.770000px;}
.y1a_c00490{bottom:171.120000px;}
.y19_c00490{bottom:198.720000px;}
.y17_c00490{bottom:220.620000px;}
.y18_c00490{bottom:222.120000px;}
.y16_c00490{bottom:225.420000px;}
.y15_c00490{bottom:248.970000px;}
.y14_c00490{bottom:273.420000px;}
.y13_c00490{bottom:298.320000px;}
.y12_c00490{bottom:322.620000px;}
.y11_c00490{bottom:345.270000px;}
.y10_c00490{bottom:369.570000px;}
.yf_c00490{bottom:394.170000px;}
.ye_c00490{bottom:417.870000px;}
.yd_c00490{bottom:442.470000px;}
.yc_c00490{bottom:466.470000px;}
.yb_c00490{bottom:492.420000px;}
.ya_c00490{bottom:516.420000px;}
.y9_c00490{bottom:540.720000px;}
.y8_c00490{bottom:566.970000px;}
.y7_c00490{bottom:589.920000px;}
.y6_c00490{bottom:613.920000px;}
.y5_c00490{bottom:638.820000px;}
.y4_c00490{bottom:662.220000px;}
.y3_c00490{bottom:687.120000px;}
.y2_c00490{bottom:712.170000px;}
.y1_c00490{bottom:737.370000px;}
.h5_c00490{height:13.200073px;}
.h6_c00490{height:43.804688px;}
.h1_c00490{height:87.361816px;}
.h2_c00490{height:91.160156px;}
.h4_c00490{height:92.829000px;}
.h3_c00490{height:170.960156px;}
.h0_c00490{height:786.750000px;}
.w2_c00490{width:104.875500px;}
.w1_c00490{width:520.500000px;}
.w0_c00490{width:520.800000px;}
.x0_c00490{left:0.000000px;}
.x2_c00490{left:20.850000px;}
.x8_c00490{left:24.300000px;}
.x3_c00490{left:26.550000px;}
.x4_c00490{left:27.900000px;}
.x5_c00490{left:29.250000px;}
.x6_c00490{left:30.300000px;}
.x7_c00490{left:118.500000px;}
.x1_c00490{left:145.050000px;}
.xc_c00490{left:212.214249px;}
.xa_c00490{left:223.350000px;}
.x9_c00490{left:382.950000px;}
.xb_c00490{left:385.800000px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.v1_c00490{vertical-align:70.933333pt;}
.ls5_c00490{letter-spacing:-10.666667pt;}
.ls4_c00490{letter-spacing:-2.666667pt;}
.ls2_c00490{letter-spacing:0.000000pt;}
.ls0_c00490{letter-spacing:2.666667pt;}
.ls3_c00490{letter-spacing:5.333333pt;}
.ls1_c00490{letter-spacing:42.400000pt;}
.ws2_c00490{word-spacing:-26.666667pt;}
.ws5_c00490{word-spacing:-20.424000pt;}
.ws1_c00490{word-spacing:-18.090667pt;}
.ws0_c00490{word-spacing:-15.424000pt;}
.ws4_c00490{word-spacing:-14.781333pt;}
.ws3_c00490{word-spacing:-12.853333pt;}
.ws6_c00490{word-spacing:-4.114667pt;}
.ws7_c00490{word-spacing:0.000000pt;}
._1c_c00490{margin-left:-33.794667pt;}
._21_c00490{margin-left:-32.216000pt;}
._1f_c00490{margin-left:-30.104000pt;}
._1d_c00490{margin-left:-29.154667pt;}
._20_c00490{margin-left:-26.525333pt;}
._1a_c00490{margin-left:-23.962667pt;}
._19_c00490{margin-left:-21.344000pt;}
._1e_c00490{margin-left:-19.720000pt;}
._8_c00490{margin-left:-16.000000pt;}
._16_c00490{margin-left:-14.104000pt;}
._17_c00490{margin-left:-11.162667pt;}
._22_c00490{margin-left:-10.133333pt;}
._14_c00490{margin-left:-8.994667pt;}
._11_c00490{margin-left:-7.488000pt;}
._12_c00490{margin-left:-6.336000pt;}
._13_c00490{margin-left:-5.312000pt;}
._a_c00490{margin-left:-3.925333pt;}
._b_c00490{margin-left:-2.146667pt;}
._d_c00490{margin-left:-1.146667pt;}
._e_c00490{width:0.901333pt;}
._c_c00490{width:1.920000pt;}
._0_c00490{width:2.933333pt;}
._2_c00490{width:3.893333pt;}
._5_c00490{width:5.013333pt;}
._1_c00490{width:6.133333pt;}
._15_c00490{width:7.608000pt;}
._10_c00490{width:8.960000pt;}
._6_c00490{width:10.666667pt;}
._3_c00490{width:11.680000pt;}
._f_c00490{width:12.653333pt;}
._4_c00490{width:14.186667pt;}
._25_c00490{width:17.109333pt;}
._26_c00490{width:31.341333pt;}
._18_c00490{width:33.429333pt;}
._7_c00490{width:47.306667pt;}
._23_c00490{width:56.640000pt;}
._24_c00490{width:58.810667pt;}
._1b_c00490{width:67.434667pt;}
._28_c00490{width:211.866667pt;}
._27_c00490{width:227.882667pt;}
._9_c00490{width:239.629333pt;}
.fs4_c00490{font-size:42.666667pt;}
.fs0_c00490{font-size:53.333333pt;}
.fs1_c00490{font-size:61.333333pt;}
.fs2_c00490{font-size:64.000000pt;}
.fs3_c00490{font-size:77.333333pt;}
.y0_c00490{bottom:0.000000pt;}
.y21_c00490{bottom:2.760000pt;}
.y20_c00490{bottom:6.425217pt;}
.y1f_c00490{bottom:39.840000pt;}
.y1e_c00490{bottom:67.173333pt;}
.y1d_c00490{bottom:87.840000pt;}
.y1c_c00490{bottom:111.040000pt;}
.y1b_c00490{bottom:129.573333pt;}
.y1a_c00490{bottom:152.106667pt;}
.y19_c00490{bottom:176.640000pt;}
.y17_c00490{bottom:196.106667pt;}
.y18_c00490{bottom:197.440000pt;}
.y16_c00490{bottom:200.373333pt;}
.y15_c00490{bottom:221.306667pt;}
.y14_c00490{bottom:243.040000pt;}
.y13_c00490{bottom:265.173333pt;}
.y12_c00490{bottom:286.773333pt;}
.y11_c00490{bottom:306.906667pt;}
.y10_c00490{bottom:328.506667pt;}
.yf_c00490{bottom:350.373333pt;}
.ye_c00490{bottom:371.440000pt;}
.yd_c00490{bottom:393.306667pt;}
.yc_c00490{bottom:414.640000pt;}
.yb_c00490{bottom:437.706667pt;}
.ya_c00490{bottom:459.040000pt;}
.y9_c00490{bottom:480.640000pt;}
.y8_c00490{bottom:503.973333pt;}
.y7_c00490{bottom:524.373333pt;}
.y6_c00490{bottom:545.706667pt;}
.y5_c00490{bottom:567.840000pt;}
.y4_c00490{bottom:588.640000pt;}
.y3_c00490{bottom:610.773333pt;}
.y2_c00490{bottom:633.040000pt;}
.y1_c00490{bottom:655.440000pt;}
.h5_c00490{height:11.733399pt;}
.h6_c00490{height:38.937500pt;}
.h1_c00490{height:77.654948pt;}
.h2_c00490{height:81.031250pt;}
.h4_c00490{height:82.514667pt;}
.h3_c00490{height:151.964583pt;}
.h0_c00490{height:699.333333pt;}
.w2_c00490{width:93.222667pt;}
.w1_c00490{width:462.666667pt;}
.w0_c00490{width:462.933333pt;}
.x0_c00490{left:0.000000pt;}
.x2_c00490{left:18.533333pt;}
.x8_c00490{left:21.600000pt;}
.x3_c00490{left:23.600000pt;}
.x4_c00490{left:24.800000pt;}
.x5_c00490{left:26.000000pt;}
.x6_c00490{left:26.933333pt;}
.x7_c00490{left:105.333333pt;}
.x1_c00490{left:128.933333pt;}
.xc_c00490{left:188.634888pt;}
.xa_c00490{left:198.533333pt;}
.x9_c00490{left:340.400000pt;}
.xb_c00490{left:342.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_31d0615d9690a2212ea94080.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.480469;font-style:normal;font-weight:normal;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_9069cce51463298e6e7da278.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c00491{font-family:ff3_c00491;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00491{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.ls0_c00491{letter-spacing:0.000000px;}
.ls1_c00491{letter-spacing:3.000000px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00491{word-spacing:-17.352000px;}
.ws1_c00491{word-spacing:0.000000px;}
._e_c00491{margin-left:-13.176000px;}
._19_c00491{margin-left:-11.376000px;}
._f_c00491{margin-left:-10.080000px;}
._d_c00491{margin-left:-7.560000px;}
._c_c00491{margin-left:-6.264000px;}
._16_c00491{margin-left:-5.040000px;}
._8_c00491{margin-left:-3.888000px;}
._b_c00491{margin-left:-2.664000px;}
._7_c00491{margin-left:-1.296000px;}
._0_c00491{width:1.800000px;}
._6_c00491{width:3.024000px;}
._a_c00491{width:4.176000px;}
._1_c00491{width:5.544000px;}
._9_c00491{width:6.984000px;}
._3_c00491{width:8.424000px;}
._4_c00491{width:10.368000px;}
._13_c00491{width:12.096000px;}
._2_c00491{width:13.176000px;}
._10_c00491{width:14.400000px;}
._5_c00491{width:16.248000px;}
._1c_c00491{width:17.352000px;}
._11_c00491{width:22.248000px;}
._14_c00491{width:24.048000px;}
._15_c00491{width:25.848000px;}
._1a_c00491{width:28.176000px;}
._17_c00491{width:30.960000px;}
._1b_c00491{width:33.552000px;}
._12_c00491{width:42.984000px;}
._18_c00491{width:277.344000px;}
.fc2_c00491{color:transparent;}
.fc1_c00491{color:rgb(128,128,128);}
.fc0_c00491{color:rgb(0,0,0);}
.fs1_c00491{font-size:48.000000px;}
.fs0_c00491{font-size:72.000000px;}
.y0_c00491{bottom:0.000000px;}
.y1e_c00491{bottom:3.105000px;}
.y1d_c00491{bottom:7.228357px;}
.y1c_c00491{bottom:60.780000px;}
.y1b_c00491{bottom:86.730000px;}
.y1a_c00491{bottom:111.030000px;}
.y19_c00491{bottom:136.980000px;}
.y18_c00491{bottom:161.430000px;}
.y17_c00491{bottom:186.030000px;}
.y16_c00491{bottom:211.230000px;}
.y15_c00491{bottom:235.530000px;}
.y14_c00491{bottom:261.180000px;}
.y13_c00491{bottom:285.330000px;}
.y12_c00491{bottom:309.930000px;}
.y11_c00491{bottom:334.530000px;}
.y10_c00491{bottom:358.830000px;}
.yf_c00491{bottom:384.030000px;}
.ye_c00491{bottom:407.130000px;}
.yd_c00491{bottom:431.730000px;}
.yc_c00491{bottom:456.630000px;}
.yb_c00491{bottom:481.230000px;}
.ya_c00491{bottom:505.230000px;}
.y9_c00491{bottom:529.830000px;}
.y8_c00491{bottom:554.280000px;}
.y7_c00491{bottom:578.580000px;}
.y6_c00491{bottom:603.780000px;}
.y5_c00491{bottom:628.380000px;}
.y4_c00491{bottom:652.830000px;}
.y3_c00491{bottom:676.980000px;}
.y2_c00491{bottom:701.730000px;}
.y1_c00491{bottom:726.930000px;}
.h3_c00491{height:13.200074px;}
.h4_c00491{height:43.804688px;}
.h2_c00491{height:91.160156px;}
.h1_c00491{height:776.250000px;}
.h0_c00491{height:776.550000px;}
.w2_c00491{width:104.875500px;}
.w0_c00491{width:511.350000px;}
.w1_c00491{width:511.500000px;}
.x0_c00491{left:0.000000px;}
.x2_c00491{left:95.550000px;}
.x3_c00491{left:96.900000px;}
.x5_c00491{left:99.150000px;}
.x6_c00491{left:100.500000px;}
.x4_c00491{left:102.600000px;}
.x7_c00491{left:105.300000px;}
.x8_c00491{left:106.950000px;}
.x9_c00491{left:108.300000px;}
.xa_c00491{left:207.489258px;}
.x1_c00491{left:209.850000px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls0_c00491{letter-spacing:0.000000pt;}
.ls1_c00491{letter-spacing:2.666667pt;}
.ws0_c00491{word-spacing:-15.424000pt;}
.ws1_c00491{word-spacing:0.000000pt;}
._e_c00491{margin-left:-11.712000pt;}
._19_c00491{margin-left:-10.112000pt;}
._f_c00491{margin-left:-8.960000pt;}
._d_c00491{margin-left:-6.720000pt;}
._c_c00491{margin-left:-5.568000pt;}
._16_c00491{margin-left:-4.480000pt;}
._8_c00491{margin-left:-3.456000pt;}
._b_c00491{margin-left:-2.368000pt;}
._7_c00491{margin-left:-1.152000pt;}
._0_c00491{width:1.600000pt;}
._6_c00491{width:2.688000pt;}
._a_c00491{width:3.712000pt;}
._1_c00491{width:4.928000pt;}
._9_c00491{width:6.208000pt;}
._3_c00491{width:7.488000pt;}
._4_c00491{width:9.216000pt;}
._13_c00491{width:10.752000pt;}
._2_c00491{width:11.712000pt;}
._10_c00491{width:12.800000pt;}
._5_c00491{width:14.442667pt;}
._1c_c00491{width:15.424000pt;}
._11_c00491{width:19.776000pt;}
._14_c00491{width:21.376000pt;}
._15_c00491{width:22.976000pt;}
._1a_c00491{width:25.045333pt;}
._17_c00491{width:27.520000pt;}
._1b_c00491{width:29.824000pt;}
._12_c00491{width:38.208000pt;}
._18_c00491{width:246.528000pt;}
.fs1_c00491{font-size:42.666667pt;}
.fs0_c00491{font-size:64.000000pt;}
.y0_c00491{bottom:0.000000pt;}
.y1e_c00491{bottom:2.760000pt;}
.y1d_c00491{bottom:6.425206pt;}
.y1c_c00491{bottom:54.026667pt;}
.y1b_c00491{bottom:77.093333pt;}
.y1a_c00491{bottom:98.693333pt;}
.y19_c00491{bottom:121.760000pt;}
.y18_c00491{bottom:143.493333pt;}
.y17_c00491{bottom:165.360000pt;}
.y16_c00491{bottom:187.760000pt;}
.y15_c00491{bottom:209.360000pt;}
.y14_c00491{bottom:232.160000pt;}
.y13_c00491{bottom:253.626667pt;}
.y12_c00491{bottom:275.493333pt;}
.y11_c00491{bottom:297.360000pt;}
.y10_c00491{bottom:318.960000pt;}
.yf_c00491{bottom:341.360000pt;}
.ye_c00491{bottom:361.893333pt;}
.yd_c00491{bottom:383.760000pt;}
.yc_c00491{bottom:405.893333pt;}
.yb_c00491{bottom:427.760000pt;}
.ya_c00491{bottom:449.093333pt;}
.y9_c00491{bottom:470.960000pt;}
.y8_c00491{bottom:492.693333pt;}
.y7_c00491{bottom:514.293333pt;}
.y6_c00491{bottom:536.693333pt;}
.y5_c00491{bottom:558.560000pt;}
.y4_c00491{bottom:580.293333pt;}
.y3_c00491{bottom:601.760000pt;}
.y2_c00491{bottom:623.760000pt;}
.y1_c00491{bottom:646.160000pt;}
.h3_c00491{height:11.733399pt;}
.h4_c00491{height:38.937500pt;}
.h2_c00491{height:81.031250pt;}
.h1_c00491{height:690.000000pt;}
.h0_c00491{height:690.266667pt;}
.w2_c00491{width:93.222667pt;}
.w0_c00491{width:454.533333pt;}
.w1_c00491{width:454.666667pt;}
.x0_c00491{left:0.000000pt;}
.x2_c00491{left:84.933333pt;}
.x3_c00491{left:86.133333pt;}
.x5_c00491{left:88.133333pt;}
.x6_c00491{left:89.333333pt;}
.x4_c00491{left:91.200000pt;}
.x7_c00491{left:93.600000pt;}
.x8_c00491{left:95.066667pt;}
.x9_c00491{left:96.266667pt;}
.xa_c00491{left:184.434896pt;}
.x1_c00491{left:186.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b742e1e9679031d0282b4a67.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.480469;font-style:normal;font-weight:normal;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_f69a9c7b598359ea3258002f.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00492;src:url('chunks/assets/font_ce541040829bceaf81457541.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:1.575000;font-style:normal;font-weight:normal;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_32863515c052ddafabc9380b.woff2')format("woff");}.ff4_c00492{font-family:ff4_c00492;line-height:1.575000;font-style:normal;font-weight:normal;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_adc47a8fef10aaf9bd7a7e3b.woff2')format("woff");}.ff5_c00492{font-family:ff5_c00492;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00492;src:url('chunks/assets/font_ce72776e18b2d03b1288b1a8.woff2')format("woff");}.ff6_c00492{font-family:ff6_c00492;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00492;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c00492{font-family:ff7_c00492;line-height:1.219238;font-style: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:-9.000000px;}
.ls1_c00492{letter-spacing:-3.000000px;}
.ls0_c00492{letter-spacing:0.000000px;}
.ls3_c00492{letter-spacing:3.000000px;}
.sc__c00492{text-shadow:none;}
.sc0_c00492{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00492{-webkit-text-stroke:0px transparent;}
.sc0_c00492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00492{word-spacing:-15.906000px;}
.ws1_c00492{word-spacing:0.000000px;}
._18_c00492{margin-left:-13.590000px;}
._17_c00492{margin-left:-8.403000px;}
._15_c00492{margin-left:-6.336000px;}
._b_c00492{margin-left:-4.458000px;}
._14_c00492{margin-left:-3.246000px;}
._3_c00492{margin-left:-2.112000px;}
._9_c00492{width:1.083000px;}
._8_c00492{width:2.442000px;}
._4_c00492{width:4.026000px;}
._a_c00492{width:5.088000px;}
._5_c00492{width:6.204000px;}
._1_c00492{width:7.986000px;}
._2_c00492{width:9.900000px;}
._6_c00492{width:11.484000px;}
._0_c00492{width:12.540000px;}
._c_c00492{width:13.716000px;}
._e_c00492{width:15.480000px;}
._d_c00492{width:16.548000px;}
._f_c00492{width:18.360000px;}
._12_c00492{width:20.856000px;}
._16_c00492{width:23.115000px;}
._13_c00492{width:26.400000px;}
._10_c00492{width:32.694000px;}
._11_c00492{width:34.497000px;}
._1a_c00492{width:39.318000px;}
._1b_c00492{width:229.596000px;}
._7_c00492{width:352.506000px;}
._19_c00492{width:711.537000px;}
.fc2_c00492{color:transparent;}
.fc1_c00492{color:rgb(128,128,128);}
.fc0_c00492{color:rgb(0,0,0);}
.fs2_c00492{font-size:36.000000px;}
.fs6_c00492{font-size:48.000000px;}
.fs5_c00492{font-size:60.000000px;}
.fs0_c00492{font-size:66.000000px;}
.fs1_c00492{font-size:75.000000px;}
.fs3_c00492{font-size:87.000000px;}
.fs4_c00492{font-size:102.000000px;}
.y0_c00492{bottom:0.000000px;}
.y1f_c00492{bottom:3.105000px;}
.y1e_c00492{bottom:7.228363px;}
.y1d_c00492{bottom:48.900000px;}
.y1c_c00492{bottom:78.600000px;}
.y1b_c00492{bottom:103.200000px;}
.y1a_c00492{bottom:123.150000px;}
.y19_c00492{bottom:148.800000px;}
.y18_c00492{bottom:174.750000px;}
.y17_c00492{bottom:199.800000px;}
.y16_c00492{bottom:224.100000px;}
.y15_c00492{bottom:247.950000px;}
.y14_c00492{bottom:273.300000px;}
.y13_c00492{bottom:298.050000px;}
.y12_c00492{bottom:321.750000px;}
.y11_c00492{bottom:343.950000px;}
.y10_c00492{bottom:368.100000px;}
.yf_c00492{bottom:392.250000px;}
.ye_c00492{bottom:416.250000px;}
.yd_c00492{bottom:440.550000px;}
.yc_c00492{bottom:465.450000px;}
.yb_c00492{bottom:489.750000px;}
.ya_c00492{bottom:514.650000px;}
.y9_c00492{bottom:538.350000px;}
.y8_c00492{bottom:564.300000px;}
.y7_c00492{bottom:587.700000px;}
.y6_c00492{bottom:612.300000px;}
.y5_c00492{bottom:637.200000px;}
.y4_c00492{bottom:661.800000px;}
.y3_c00492{bottom:686.100000px;}
.y2_c00492{bottom:709.800000px;}
.y1_c00492{bottom:735.000000px;}
.h6_c00492{height:13.200074px;}
.h7_c00492{height:43.804688px;}
.h2_c00492{height:73.608398px;}
.h5_c00492{height:75.966797px;}
.h1_c00492{height:77.247070px;}
.h3_c00492{height:92.829000px;}
.h4_c00492{height:102.796875px;}
.h0_c00492{height:776.250000px;}
.w2_c00492{width:104.875500px;}
.w0_c00492{width:528.675000px;}
.w1_c00492{width:528.750000px;}
.x0_c00492{left:0.000000px;}
.x2_c00492{left:25.650000px;}
.x3_c00492{left:26.700000px;}
.x5_c00492{left:28.350000px;}
.x4_c00492{left:29.700000px;}
.x6_c00492{left:31.350000px;}
.x7_c00492{left:33.000000px;}
.x9_c00492{left:34.800000px;}
.x8_c00492{left:69.150000px;}
.x1_c00492{left:137.550000px;}
.xb_c00492{left:216.151749px;}
.xa_c00492{left:252.150000px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls2_c00492{letter-spacing:-8.000000pt;}
.ls1_c00492{letter-spacing:-2.666667pt;}
.ls0_c00492{letter-spacing:0.000000pt;}
.ls3_c00492{letter-spacing:2.666667pt;}
.ws0_c00492{word-spacing:-14.138667pt;}
.ws1_c00492{word-spacing:0.000000pt;}
._18_c00492{margin-left:-12.080000pt;}
._17_c00492{margin-left:-7.469333pt;}
._15_c00492{margin-left:-5.632000pt;}
._b_c00492{margin-left:-3.962667pt;}
._14_c00492{margin-left:-2.885333pt;}
._3_c00492{margin-left:-1.877333pt;}
._9_c00492{width:0.962667pt;}
._8_c00492{width:2.170667pt;}
._4_c00492{width:3.578667pt;}
._a_c00492{width:4.522667pt;}
._5_c00492{width:5.514667pt;}
._1_c00492{width:7.098667pt;}
._2_c00492{width:8.800000pt;}
._6_c00492{width:10.208000pt;}
._0_c00492{width:11.146667pt;}
._c_c00492{width:12.192000pt;}
._e_c00492{width:13.760000pt;}
._d_c00492{width:14.709333pt;}
._f_c00492{width:16.320000pt;}
._12_c00492{width:18.538667pt;}
._16_c00492{width:20.546667pt;}
._13_c00492{width:23.466667pt;}
._10_c00492{width:29.061333pt;}
._11_c00492{width:30.664000pt;}
._1a_c00492{width:34.949333pt;}
._1b_c00492{width:204.085333pt;}
._7_c00492{width:313.338667pt;}
._19_c00492{width:632.477333pt;}
.fs2_c00492{font-size:32.000000pt;}
.fs6_c00492{font-size:42.666667pt;}
.fs5_c00492{font-size:53.333333pt;}
.fs0_c00492{font-size:58.666667pt;}
.fs1_c00492{font-size:66.666667pt;}
.fs3_c00492{font-size:77.333333pt;}
.fs4_c00492{font-size:90.666667pt;}
.y0_c00492{bottom:0.000000pt;}
.y1f_c00492{bottom:2.760000pt;}
.y1e_c00492{bottom:6.425212pt;}
.y1d_c00492{bottom:43.466667pt;}
.y1c_c00492{bottom:69.866667pt;}
.y1b_c00492{bottom:91.733333pt;}
.y1a_c00492{bottom:109.466667pt;}
.y19_c00492{bottom:132.266667pt;}
.y18_c00492{bottom:155.333333pt;}
.y17_c00492{bottom:177.600000pt;}
.y16_c00492{bottom:199.200000pt;}
.y15_c00492{bottom:220.400000pt;}
.y14_c00492{bottom:242.933333pt;}
.y13_c00492{bottom:264.933333pt;}
.y12_c00492{bottom:286.000000pt;}
.y11_c00492{bottom:305.733333pt;}
.y10_c00492{bottom:327.200000pt;}
.yf_c00492{bottom:348.666667pt;}
.ye_c00492{bottom:370.000000pt;}
.yd_c00492{bottom:391.600000pt;}
.yc_c00492{bottom:413.733333pt;}
.yb_c00492{bottom:435.333333pt;}
.ya_c00492{bottom:457.466667pt;}
.y9_c00492{bottom:478.533333pt;}
.y8_c00492{bottom:501.600000pt;}
.y7_c00492{bottom:522.400000pt;}
.y6_c00492{bottom:544.266667pt;}
.y5_c00492{bottom:566.400000pt;}
.y4_c00492{bottom:588.266667pt;}
.y3_c00492{bottom:609.866667pt;}
.y2_c00492{bottom:630.933333pt;}
.y1_c00492{bottom:653.333333pt;}
.h6_c00492{height:11.733399pt;}
.h7_c00492{height:38.937500pt;}
.h2_c00492{height:65.429688pt;}
.h5_c00492{height:67.526042pt;}
.h1_c00492{height:68.664062pt;}
.h3_c00492{height:82.514667pt;}
.h4_c00492{height:91.375000pt;}
.h0_c00492{height:690.000000pt;}
.w2_c00492{width:93.222667pt;}
.w0_c00492{width:469.933333pt;}
.w1_c00492{width:470.000000pt;}
.x0_c00492{left:0.000000pt;}
.x2_c00492{left:22.800000pt;}
.x3_c00492{left:23.733333pt;}
.x5_c00492{left:25.200000pt;}
.x4_c00492{left:26.400000pt;}
.x6_c00492{left:27.866667pt;}
.x7_c00492{left:29.333333pt;}
.x9_c00492{left:30.933333pt;}
.x8_c00492{left:61.466667pt;}
.x1_c00492{left:122.266667pt;}
.xb_c00492{left:192.134888pt;}
.xa_c00492{left:224.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_56a2a8a0dbe49a6d21dae0ba.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.568848;font-style:normal;font-weight:normal;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_7097c1b198a754d1baeeb8d8.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00493;src:url('chunks/assets/font_49679e35ac25af65ad9fd1b6.woff2')format("woff");}.ff3_c00493{font-family:ff3_c00493;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c00493{font-family:ff4_c00493;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00493{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00493{vertical-align:0.000000px;}
.ls0_c00493{letter-spacing:0.000000px;}
.ls1_c00493{letter-spacing:21.000000px;}
.sc__c00493{text-shadow:none;}
.sc0_c00493{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00493{-webkit-text-stroke:0px transparent;}
.sc0_c00493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00493{word-spacing:-23.136000px;}
.ws0_c00493{word-spacing:-18.144000px;}
.ws2_c00493{word-spacing:0.000000px;}
._1a_c00493{margin-left:-17.856000px;}
._0_c00493{margin-left:-16.416000px;}
._18_c00493{margin-left:-14.424000px;}
._11_c00493{margin-left:-11.424000px;}
._12_c00493{margin-left:-10.320000px;}
._13_c00493{margin-left:-8.832000px;}
._17_c00493{margin-left:-7.560000px;}
._d_c00493{margin-left:-6.480000px;}
._14_c00493{margin-left:-5.280000px;}
._15_c00493{margin-left:-4.104000px;}
._b_c00493{margin-left:-3.024000px;}
._8_c00493{margin-left:-1.152000px;}
._e_c00493{width:1.008000px;}
._6_c00493{width:2.016000px;}
._5_c00493{width:3.600000px;}
._7_c00493{width:4.752000px;}
._9_c00493{width:5.760000px;}
._3_c00493{width:6.984000px;}
._c_c00493{width:8.496000px;}
._a_c00493{width:10.296000px;}
._4_c00493{width:11.808000px;}
._2_c00493{width:13.032000px;}
._10_c00493{width:16.200000px;}
._16_c00493{width:19.512000px;}
._f_c00493{width:21.168000px;}
._19_c00493{width:283.896000px;}
._1_c00493{width:421.536000px;}
.fc2_c00493{color:transparent;}
.fc1_c00493{color:rgb(128,128,128);}
.fc0_c00493{color:rgb(0,0,0);}
.fs2_c00493{font-size:48.000000px;}
.fs0_c00493{font-size:72.000000px;}
.fs1_c00493{font-size:96.000000px;}
.y0_c00493{bottom:0.000000px;}
.y1e_c00493{bottom:3.105000px;}
.y1d_c00493{bottom:7.228357px;}
.y1c_c00493{bottom:65.880000px;}
.y1b_c00493{bottom:92.430000px;}
.y1a_c00493{bottom:118.530000px;}
.y19_c00493{bottom:143.430000px;}
.y18_c00493{bottom:171.480000px;}
.y17_c00493{bottom:194.130000px;}
.y16_c00493{bottom:218.130000px;}
.y15_c00493{bottom:243.330000px;}
.y14_c00493{bottom:267.330000px;}
.y13_c00493{bottom:293.580000px;}
.y12_c00493{bottom:317.580000px;}
.y11_c00493{bottom:343.680000px;}
.y10_c00493{bottom:366.930000px;}
.yf_c00493{bottom:389.880000px;}
.ye_c00493{bottom:415.830000px;}
.yd_c00493{bottom:440.880000px;}
.yc_c00493{bottom:464.730000px;}
.yb_c00493{bottom:488.130000px;}
.ya_c00493{bottom:513.630000px;}
.y9_c00493{bottom:538.980000px;}
.y8_c00493{bottom:562.230000px;}
.y7_c00493{bottom:587.580000px;}
.y6_c00493{bottom:611.280000px;}
.y5_c00493{bottom:635.880000px;}
.y4_c00493{bottom:660.180000px;}
.y3_c00493{bottom:685.830000px;}
.y2_c00493{bottom:709.380000px;}
.y1_c00493{bottom:735.180000px;}
.h3_c00493{height:13.200074px;}
.h4_c00493{height:43.804688px;}
.h1_c00493{height:91.160156px;}
.h2_c00493{height:112.359375px;}
.h0_c00493{height:779.250000px;}
.w1_c00493{width:104.875500px;}
.w0_c00493{width:489.750000px;}
.x0_c00493{left:0.000000px;}
.x2_c00493{left:69.900000px;}
.x3_c00493{left:70.950000px;}
.x4_c00493{left:72.300000px;}
.x5_c00493{left:73.350000px;}
.x6_c00493{left:74.550000px;}
.x7_c00493{left:75.600000px;}
.x8_c00493{left:77.400000px;}
.x9_c00493{left:78.600000px;}
.x1_c00493{left:80.550000px;}
.xa_c00493{left:196.689240px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls0_c00493{letter-spacing:0.000000pt;}
.ls1_c00493{letter-spacing:18.666667pt;}
.ws1_c00493{word-spacing:-20.565333pt;}
.ws0_c00493{word-spacing:-16.128000pt;}
.ws2_c00493{word-spacing:0.000000pt;}
._1a_c00493{margin-left:-15.872000pt;}
._0_c00493{margin-left:-14.592000pt;}
._18_c00493{margin-left:-12.821333pt;}
._11_c00493{margin-left:-10.154667pt;}
._12_c00493{margin-left:-9.173333pt;}
._13_c00493{margin-left:-7.850667pt;}
._17_c00493{margin-left:-6.720000pt;}
._d_c00493{margin-left:-5.760000pt;}
._14_c00493{margin-left:-4.693333pt;}
._15_c00493{margin-left:-3.648000pt;}
._b_c00493{margin-left:-2.688000pt;}
._8_c00493{margin-left:-1.024000pt;}
._e_c00493{width:0.896000pt;}
._6_c00493{width:1.792000pt;}
._5_c00493{width:3.200000pt;}
._7_c00493{width:4.224000pt;}
._9_c00493{width:5.120000pt;}
._3_c00493{width:6.208000pt;}
._c_c00493{width:7.552000pt;}
._a_c00493{width:9.152000pt;}
._4_c00493{width:10.496000pt;}
._2_c00493{width:11.584000pt;}
._10_c00493{width:14.400000pt;}
._16_c00493{width:17.344000pt;}
._f_c00493{width:18.816000pt;}
._19_c00493{width:252.352000pt;}
._1_c00493{width:374.698667pt;}
.fs2_c00493{font-size:42.666667pt;}
.fs0_c00493{font-size:64.000000pt;}
.fs1_c00493{font-size:85.333333pt;}
.y0_c00493{bottom:0.000000pt;}
.y1e_c00493{bottom:2.760000pt;}
.y1d_c00493{bottom:6.425206pt;}
.y1c_c00493{bottom:58.560000pt;}
.y1b_c00493{bottom:82.160000pt;}
.y1a_c00493{bottom:105.360000pt;}
.y19_c00493{bottom:127.493333pt;}
.y18_c00493{bottom:152.426667pt;}
.y17_c00493{bottom:172.560000pt;}
.y16_c00493{bottom:193.893333pt;}
.y15_c00493{bottom:216.293333pt;}
.y14_c00493{bottom:237.626667pt;}
.y13_c00493{bottom:260.960000pt;}
.y12_c00493{bottom:282.293333pt;}
.y11_c00493{bottom:305.493333pt;}
.y10_c00493{bottom:326.160000pt;}
.yf_c00493{bottom:346.560000pt;}
.ye_c00493{bottom:369.626667pt;}
.yd_c00493{bottom:391.893333pt;}
.yc_c00493{bottom:413.093333pt;}
.yb_c00493{bottom:433.893333pt;}
.ya_c00493{bottom:456.560000pt;}
.y9_c00493{bottom:479.093333pt;}
.y8_c00493{bottom:499.760000pt;}
.y7_c00493{bottom:522.293333pt;}
.y6_c00493{bottom:543.360000pt;}
.y5_c00493{bottom:565.226667pt;}
.y4_c00493{bottom:586.826667pt;}
.y3_c00493{bottom:609.626667pt;}
.y2_c00493{bottom:630.560000pt;}
.y1_c00493{bottom:653.493333pt;}
.h3_c00493{height:11.733399pt;}
.h4_c00493{height:38.937500pt;}
.h1_c00493{height:81.031250pt;}
.h2_c00493{height:99.875000pt;}
.h0_c00493{height:692.666667pt;}
.w1_c00493{width:93.222667pt;}
.w0_c00493{width:435.333333pt;}
.x0_c00493{left:0.000000pt;}
.x2_c00493{left:62.133333pt;}
.x3_c00493{left:63.066667pt;}
.x4_c00493{left:64.266667pt;}
.x5_c00493{left:65.200000pt;}
.x6_c00493{left:66.266667pt;}
.x7_c00493{left:67.200000pt;}
.x8_c00493{left:68.800000pt;}
.x9_c00493{left:69.866667pt;}
.x1_c00493{left:71.600000pt;}
.xa_c00493{left:174.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_efde17aa1bf4f9f522ec51d0.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.480469;font-style:normal;font-weight:normal;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_774e9ae79179be1f5fd5b2dd.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:1.568848;font-style:normal;font-weight:normal;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_eec96927a82d314f15c23df6.woff2')format("woff");}.ff3_c00494{font-family:ff3_c00494;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00494;src:url('chunks/assets/font_cc5716db7fc37261773747fe.woff2')format("woff");}.ff4_c00494{font-family:ff4_c00494;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00494;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00494{font-family:ff5_c00494;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00494{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.ls0_c00494{letter-spacing:0.000000px;}
.ls1_c00494{letter-spacing:3.000000px;}
.ls2_c00494{letter-spacing:6.000000px;}
.sc__c00494{text-shadow:none;}
.sc0_c00494{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00494{-webkit-text-stroke:0px transparent;}
.sc0_c00494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00494{word-spacing:-26.973000px;}
.ws1_c00494{word-spacing:-19.521000px;}
.ws0_c00494{word-spacing:-14.460000px;}
.ws3_c00494{word-spacing:0.000000px;}
._1d_c00494{margin-left:-25.614000px;}
._19_c00494{margin-left:-18.456000px;}
._20_c00494{margin-left:-11.937000px;}
._9_c00494{margin-left:-10.584000px;}
._24_c00494{margin-left:-9.018000px;}
._7_c00494{margin-left:-7.776000px;}
._1e_c00494{margin-left:-6.030000px;}
._8_c00494{margin-left:-4.752000px;}
._17_c00494{margin-left:-3.720000px;}
._4_c00494{margin-left:-2.088000px;}
._1c_c00494{margin-left:-1.056000px;}
._0_c00494{width:1.296000px;}
._6_c00494{width:3.096000px;}
._5_c00494{width:4.608000px;}
._d_c00494{width:5.940000px;}
._15_c00494{width:6.960000px;}
._a_c00494{width:7.980000px;}
._12_c00494{width:9.276000px;}
._c_c00494{width:10.980000px;}
._13_c00494{width:12.120000px;}
._b_c00494{width:13.260000px;}
._1a_c00494{width:15.924000px;}
._e_c00494{width:17.040000px;}
._11_c00494{width:18.540000px;}
._3_c00494{width:19.728000px;}
._1b_c00494{width:21.156000px;}
._f_c00494{width:22.224000px;}
._2_c00494{width:23.544000px;}
._10_c00494{width:24.960000px;}
._21_c00494{width:26.235000px;}
._16_c00494{width:27.996000px;}
._18_c00494{width:30.984000px;}
._1f_c00494{width:32.004000px;}
._14_c00494{width:36.048000px;}
._27_c00494{width:44.343000px;}
._25_c00494{width:49.752000px;}
._23_c00494{width:79.608000px;}
._28_c00494{width:99.603000px;}
._26_c00494{width:130.173000px;}
._1_c00494{width:312.768000px;}
._22_c00494{width:585.537000px;}
.fc2_c00494{color:transparent;}
.fc1_c00494{color:rgb(128,128,128);}
.fc0_c00494{color:rgb(0,0,0);}
.fs6_c00494{font-size:48.000000px;}
.fs4_c00494{font-size:51.000000px;}
.fs5_c00494{font-size:54.000000px;}
.fs1_c00494{font-size:60.000000px;}
.fs2_c00494{font-size:63.000000px;}
.fs0_c00494{font-size:72.000000px;}
.fs3_c00494{font-size:81.000000px;}
.y0_c00494{bottom:0.000000px;}
.y1d_c00494{bottom:3.105000px;}
.y1c_c00494{bottom:7.228357px;}
.y1b_c00494{bottom:44.580000px;}
.y1a_c00494{bottom:135.780000px;}
.y19_c00494{bottom:149.130000px;}
.y18_c00494{bottom:171.480000px;}
.y17_c00494{bottom:196.830000px;}
.y16_c00494{bottom:221.430000px;}
.y15_c00494{bottom:248.430000px;}
.y14_c00494{bottom:271.080000px;}
.y13_c00494{bottom:296.730000px;}
.y12_c00494{bottom:319.380000px;}
.y11_c00494{bottom:343.680000px;}
.y10_c00494{bottom:367.230000px;}
.yf_c00494{bottom:393.630000px;}
.ye_c00494{bottom:416.130000px;}
.yd_c00494{bottom:441.480000px;}
.yc_c00494{bottom:466.380000px;}
.yb_c00494{bottom:490.380000px;}
.ya_c00494{bottom:514.980000px;}
.y9_c00494{bottom:539.430000px;}
.y8_c00494{bottom:565.380000px;}
.y7_c00494{bottom:589.230000px;}
.y6_c00494{bottom:612.930000px;}
.y5_c00494{bottom:638.580000px;}
.y4_c00494{bottom:661.530000px;}
.y3_c00494{bottom:687.480000px;}
.y2_c00494{bottom:712.230000px;}
.y1_c00494{bottom:736.380000px;}
.h9_c00494{height:13.200074px;}
.ha_c00494{height:43.804688px;}
.h7_c00494{height:64.571777px;}
.h4_c00494{height:75.966797px;}
.h5_c00494{height:79.765137px;}
.h8_c00494{height:81.632812px;}
.h2_c00494{height:84.269531px;}
.h3_c00494{height:91.160156px;}
.h6_c00494{height:94.803223px;}
.h0_c00494{height:775.200000px;}
.h1_c00494{height:775.500000px;}
.w2_c00494{width:104.875500px;}
.w0_c00494{width:520.275000px;}
.w1_c00494{width:520.500000px;}
.x0_c00494{left:0.000000px;}
.x2_c00494{left:26.100000px;}
.x3_c00494{left:27.300000px;}
.x4_c00494{left:29.400000px;}
.x5_c00494{left:30.600000px;}
.x6_c00494{left:31.650000px;}
.x7_c00494{left:32.700000px;}
.x9_c00494{left:34.350000px;}
.x1_c00494{left:154.200000px;}
.xb_c00494{left:211.951767px;}
.x8_c00494{left:309.150000px;}
.xa_c00494{left:371.550000px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls0_c00494{letter-spacing:0.000000pt;}
.ls1_c00494{letter-spacing:2.666667pt;}
.ls2_c00494{letter-spacing:5.333333pt;}
.ws2_c00494{word-spacing:-23.976000pt;}
.ws1_c00494{word-spacing:-17.352000pt;}
.ws0_c00494{word-spacing:-12.853333pt;}
.ws3_c00494{word-spacing:0.000000pt;}
._1d_c00494{margin-left:-22.768000pt;}
._19_c00494{margin-left:-16.405333pt;}
._20_c00494{margin-left:-10.610667pt;}
._9_c00494{margin-left:-9.408000pt;}
._24_c00494{margin-left:-8.016000pt;}
._7_c00494{margin-left:-6.912000pt;}
._1e_c00494{margin-left:-5.360000pt;}
._8_c00494{margin-left:-4.224000pt;}
._17_c00494{margin-left:-3.306667pt;}
._4_c00494{margin-left:-1.856000pt;}
._1c_c00494{margin-left:-0.938667pt;}
._0_c00494{width:1.152000pt;}
._6_c00494{width:2.752000pt;}
._5_c00494{width:4.096000pt;}
._d_c00494{width:5.280000pt;}
._15_c00494{width:6.186667pt;}
._a_c00494{width:7.093333pt;}
._12_c00494{width:8.245333pt;}
._c_c00494{width:9.760000pt;}
._13_c00494{width:10.773333pt;}
._b_c00494{width:11.786667pt;}
._1a_c00494{width:14.154667pt;}
._e_c00494{width:15.146667pt;}
._11_c00494{width:16.480000pt;}
._3_c00494{width:17.536000pt;}
._1b_c00494{width:18.805333pt;}
._f_c00494{width:19.754667pt;}
._2_c00494{width:20.928000pt;}
._10_c00494{width:22.186667pt;}
._21_c00494{width:23.320000pt;}
._16_c00494{width:24.885333pt;}
._18_c00494{width:27.541333pt;}
._1f_c00494{width:28.448000pt;}
._14_c00494{width:32.042667pt;}
._27_c00494{width:39.416000pt;}
._25_c00494{width:44.224000pt;}
._23_c00494{width:70.762667pt;}
._28_c00494{width:88.536000pt;}
._26_c00494{width:115.709333pt;}
._1_c00494{width:278.016000pt;}
._22_c00494{width:520.477333pt;}
.fs6_c00494{font-size:42.666667pt;}
.fs4_c00494{font-size:45.333333pt;}
.fs5_c00494{font-size:48.000000pt;}
.fs1_c00494{font-size:53.333333pt;}
.fs2_c00494{font-size:56.000000pt;}
.fs0_c00494{font-size:64.000000pt;}
.fs3_c00494{font-size:72.000000pt;}
.y0_c00494{bottom:0.000000pt;}
.y1d_c00494{bottom:2.760000pt;}
.y1c_c00494{bottom:6.425206pt;}
.y1b_c00494{bottom:39.626667pt;}
.y1a_c00494{bottom:120.693333pt;}
.y19_c00494{bottom:132.560000pt;}
.y18_c00494{bottom:152.426667pt;}
.y17_c00494{bottom:174.960000pt;}
.y16_c00494{bottom:196.826667pt;}
.y15_c00494{bottom:220.826667pt;}
.y14_c00494{bottom:240.960000pt;}
.y13_c00494{bottom:263.760000pt;}
.y12_c00494{bottom:283.893333pt;}
.y11_c00494{bottom:305.493333pt;}
.y10_c00494{bottom:326.426667pt;}
.yf_c00494{bottom:349.893333pt;}
.ye_c00494{bottom:369.893333pt;}
.yd_c00494{bottom:392.426667pt;}
.yc_c00494{bottom:414.560000pt;}
.yb_c00494{bottom:435.893333pt;}
.ya_c00494{bottom:457.760000pt;}
.y9_c00494{bottom:479.493333pt;}
.y8_c00494{bottom:502.560000pt;}
.y7_c00494{bottom:523.760000pt;}
.y6_c00494{bottom:544.826667pt;}
.y5_c00494{bottom:567.626667pt;}
.y4_c00494{bottom:588.026667pt;}
.y3_c00494{bottom:611.093333pt;}
.y2_c00494{bottom:633.093333pt;}
.y1_c00494{bottom:654.560000pt;}
.h9_c00494{height:11.733399pt;}
.ha_c00494{height:38.937500pt;}
.h7_c00494{height:57.397135pt;}
.h4_c00494{height:67.526042pt;}
.h5_c00494{height:70.902344pt;}
.h8_c00494{height:72.562500pt;}
.h2_c00494{height:74.906250pt;}
.h3_c00494{height:81.031250pt;}
.h6_c00494{height:84.269531pt;}
.h0_c00494{height:689.066667pt;}
.h1_c00494{height:689.333333pt;}
.w2_c00494{width:93.222667pt;}
.w0_c00494{width:462.466667pt;}
.w1_c00494{width:462.666667pt;}
.x0_c00494{left:0.000000pt;}
.x2_c00494{left:23.200000pt;}
.x3_c00494{left:24.266667pt;}
.x4_c00494{left:26.133333pt;}
.x5_c00494{left:27.200000pt;}
.x6_c00494{left:28.133333pt;}
.x7_c00494{left:29.066667pt;}
.x9_c00494{left:30.533333pt;}
.x1_c00494{left:137.066667pt;}
.xb_c00494{left:188.401571pt;}
.x8_c00494{left:274.800000pt;}
.xa_c00494{left:330.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b80e98cd9fe07186ea4b44d5.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.480469;font-style:normal;font-weight:normal;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_4c695d303df58cdf2d0ecffc.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.568848;font-style:normal;font-weight:normal;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_ae4a737bde830e8896a15276.woff2')format("woff");}.ff3_c00495{font-family:ff3_c00495;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00495;src:url('chunks/assets/font_7b416f2c347cb34a1649ea4f.woff2')format("woff");}.ff4_c00495{font-family:ff4_c00495;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00495{font-family:ff5_c00495;line-height:1.219238;font-style: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;}
.ls1_c00495{letter-spacing:0.000000px;}
.ls0_c00495{letter-spacing:1.848000px;}
.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;}
}
.ws2_c00495{word-spacing:-53.430000px;}
.ws1_c00495{word-spacing:-33.192000px;}
.ws0_c00495{word-spacing:-15.552000px;}
.ws3_c00495{word-spacing:0.000000px;}
._18_c00495{margin-left:-32.640000px;}
._19_c00495{margin-left:-24.612000px;}
._1a_c00495{margin-left:-19.824000px;}
._17_c00495{margin-left:-18.816000px;}
._1b_c00495{margin-left:-16.548000px;}
._16_c00495{margin-left:-14.700000px;}
._13_c00495{margin-left:-12.684000px;}
._15_c00495{margin-left:-10.980000px;}
._14_c00495{margin-left:-9.492000px;}
._11_c00495{margin-left:-8.316000px;}
._12_c00495{margin-left:-6.468000px;}
._c_c00495{margin-left:-4.872000px;}
._d_c00495{margin-left:-2.940000px;}
._b_c00495{margin-left:-1.788000px;}
._3_c00495{width:1.428000px;}
._5_c00495{width:2.940000px;}
._e_c00495{width:4.368000px;}
._7_c00495{width:5.460000px;}
._8_c00495{width:6.636000px;}
._10_c00495{width:8.148000px;}
._a_c00495{width:9.996000px;}
._6_c00495{width:11.424000px;}
._1c_c00495{width:12.456000px;}
._1_c00495{width:13.464000px;}
._0_c00495{width:14.544000px;}
._2_c00495{width:15.552000px;}
._9_c00495{width:17.556000px;}
._4_c00495{width:23.184000px;}
._f_c00495{width:25.452000px;}
.fc2_c00495{color:transparent;}
.fc1_c00495{color:rgb(128,128,128);}
.fc0_c00495{color:rgb(0,0,0);}
.fs5_c00495{font-size:48.000000px;}
.fs4_c00495{font-size:60.000000px;}
.fs0_c00495{font-size:72.000000px;}
.fs2_c00495{font-size:78.000000px;}
.fs3_c00495{font-size:81.000000px;}
.fs1_c00495{font-size:84.000000px;}
.y0_c00495{bottom:0.000000px;}
.y1e_c00495{bottom:3.105000px;}
.y1d_c00495{bottom:7.228355px;}
.y1c_c00495{bottom:68.835000px;}
.y1b_c00495{bottom:95.085000px;}
.y1a_c00495{bottom:120.735000px;}
.y19_c00495{bottom:147.735000px;}
.y18_c00495{bottom:170.085000px;}
.y17_c00495{bottom:193.035000px;}
.y16_c00495{bottom:217.935000px;}
.y15_c00495{bottom:242.985000px;}
.y14_c00495{bottom:267.885000px;}
.y13_c00495{bottom:293.535000px;}
.y12_c00495{bottom:317.535000px;}
.y11_c00495{bottom:342.435000px;}
.y10_c00495{bottom:366.435000px;}
.yf_c00495{bottom:390.735000px;}
.ye_c00495{bottom:414.735000px;}
.yd_c00495{bottom:439.035000px;}
.yc_c00495{bottom:464.085000px;}
.yb_c00495{bottom:490.035000px;}
.ya_c00495{bottom:512.685000px;}
.y9_c00495{bottom:537.885000px;}
.y8_c00495{bottom:562.485000px;}
.y7_c00495{bottom:586.785000px;}
.y6_c00495{bottom:611.835000px;}
.y5_c00495{bottom:636.435000px;}
.y4_c00495{bottom:660.735000px;}
.y3_c00495{bottom:685.485000px;}
.y2_c00495{bottom:710.085000px;}
.y1_c00495{bottom:735.735000px;}
.h7_c00495{height:13.200074px;}
.h8_c00495{height:43.804688px;}
.h6_c00495{height:75.966797px;}
.h5_c00495{height:79.497070px;}
.h3_c00495{height:82.441406px;}
.h2_c00495{height:91.160156px;}
.h4_c00495{height:98.756836px;}
.h1_c00495{height:772.500000px;}
.h0_c00495{height:772.725000px;}
.w1_c00495{width:104.875500px;}
.w0_c00495{width:519.750000px;}
.x0_c00495{left:0.000000px;}
.x2_c00495{left:93.450000px;}
.x3_c00495{left:94.800000px;}
.x4_c00495{left:96.150000px;}
.x5_c00495{left:97.500000px;}
.x6_c00495{left:98.550000px;}
.x7_c00495{left:99.600000px;}
.x8_c00495{left:101.550000px;}
.x9_c00495{left:102.900000px;}
.xa_c00495{left:211.689240px;}
.x1_c00495{left:220.050000px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls1_c00495{letter-spacing:0.000000pt;}
.ls0_c00495{letter-spacing:1.642667pt;}
.ws2_c00495{word-spacing:-47.493333pt;}
.ws1_c00495{word-spacing:-29.504000pt;}
.ws0_c00495{word-spacing:-13.824000pt;}
.ws3_c00495{word-spacing:0.000000pt;}
._18_c00495{margin-left:-29.013333pt;}
._19_c00495{margin-left:-21.877333pt;}
._1a_c00495{margin-left:-17.621333pt;}
._17_c00495{margin-left:-16.725333pt;}
._1b_c00495{margin-left:-14.709333pt;}
._16_c00495{margin-left:-13.066667pt;}
._13_c00495{margin-left:-11.274667pt;}
._15_c00495{margin-left:-9.760000pt;}
._14_c00495{margin-left:-8.437333pt;}
._11_c00495{margin-left:-7.392000pt;}
._12_c00495{margin-left:-5.749333pt;}
._c_c00495{margin-left:-4.330667pt;}
._d_c00495{margin-left:-2.613333pt;}
._b_c00495{margin-left:-1.589333pt;}
._3_c00495{width:1.269333pt;}
._5_c00495{width:2.613333pt;}
._e_c00495{width:3.882667pt;}
._7_c00495{width:4.853333pt;}
._8_c00495{width:5.898667pt;}
._10_c00495{width:7.242667pt;}
._a_c00495{width:8.885333pt;}
._6_c00495{width:10.154667pt;}
._1c_c00495{width:11.072000pt;}
._1_c00495{width:11.968000pt;}
._0_c00495{width:12.928000pt;}
._2_c00495{width:13.824000pt;}
._9_c00495{width:15.605333pt;}
._4_c00495{width:20.608000pt;}
._f_c00495{width:22.624000pt;}
.fs5_c00495{font-size:42.666667pt;}
.fs4_c00495{font-size:53.333333pt;}
.fs0_c00495{font-size:64.000000pt;}
.fs2_c00495{font-size:69.333333pt;}
.fs3_c00495{font-size:72.000000pt;}
.fs1_c00495{font-size:74.666667pt;}
.y0_c00495{bottom:0.000000pt;}
.y1e_c00495{bottom:2.760000pt;}
.y1d_c00495{bottom:6.425204pt;}
.y1c_c00495{bottom:61.186667pt;}
.y1b_c00495{bottom:84.520000pt;}
.y1a_c00495{bottom:107.320000pt;}
.y19_c00495{bottom:131.320000pt;}
.y18_c00495{bottom:151.186667pt;}
.y17_c00495{bottom:171.586667pt;}
.y16_c00495{bottom:193.720000pt;}
.y15_c00495{bottom:215.986667pt;}
.y14_c00495{bottom:238.120000pt;}
.y13_c00495{bottom:260.920000pt;}
.y12_c00495{bottom:282.253333pt;}
.y11_c00495{bottom:304.386667pt;}
.y10_c00495{bottom:325.720000pt;}
.yf_c00495{bottom:347.320000pt;}
.ye_c00495{bottom:368.653333pt;}
.yd_c00495{bottom:390.253333pt;}
.yc_c00495{bottom:412.520000pt;}
.yb_c00495{bottom:435.586667pt;}
.ya_c00495{bottom:455.720000pt;}
.y9_c00495{bottom:478.120000pt;}
.y8_c00495{bottom:499.986667pt;}
.y7_c00495{bottom:521.586667pt;}
.y6_c00495{bottom:543.853333pt;}
.y5_c00495{bottom:565.720000pt;}
.y4_c00495{bottom:587.320000pt;}
.y3_c00495{bottom:609.320000pt;}
.y2_c00495{bottom:631.186667pt;}
.y1_c00495{bottom:653.986667pt;}
.h7_c00495{height:11.733399pt;}
.h8_c00495{height:38.937500pt;}
.h6_c00495{height:67.526042pt;}
.h5_c00495{height:70.664062pt;}
.h3_c00495{height:73.281250pt;}
.h2_c00495{height:81.031250pt;}
.h4_c00495{height:87.783854pt;}
.h1_c00495{height:686.666667pt;}
.h0_c00495{height:686.866667pt;}
.w1_c00495{width:93.222667pt;}
.w0_c00495{width:462.000000pt;}
.x0_c00495{left:0.000000pt;}
.x2_c00495{left:83.066667pt;}
.x3_c00495{left:84.266667pt;}
.x4_c00495{left:85.466667pt;}
.x5_c00495{left:86.666667pt;}
.x6_c00495{left:87.600000pt;}
.x7_c00495{left:88.533333pt;}
.x8_c00495{left:90.266667pt;}
.x9_c00495{left:91.466667pt;}
.xa_c00495{left:188.168213pt;}
.x1_c00495{left:195.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2dd6a06f599e7a3ff92c18c1.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.480469;font-style:normal;font-weight:normal;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_490e8cd9c7fe6205bdd45d87.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:1.568848;font-style:normal;font-weight:normal;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_39a57475457061e40df5df99.woff2')format("woff");}.ff3_c00496{font-family:ff3_c00496;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00496;src:url('chunks/assets/font_b94596b7d327f9cd647e55d1.woff2')format("woff");}.ff4_c00496{font-family:ff4_c00496;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00496;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00496{font-family:ff5_c00496;line-height:1.219238;font-style: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;}
.ls1_c00496{letter-spacing:0.900000px;}
.ls3_c00496{letter-spacing:3.000000px;}
.ls4_c00496{letter-spacing:6.000000px;}
.ls0_c00496{letter-spacing:11.388000px;}
.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:-20.352000px;}
.ws1_c00496{word-spacing:0.000000px;}
._12_c00496{margin-left:-15.120000px;}
._13_c00496{margin-left:-12.528000px;}
._11_c00496{margin-left:-10.368000px;}
._10_c00496{margin-left:-8.712000px;}
._e_c00496{margin-left:-7.128000px;}
._9_c00496{margin-left:-5.328000px;}
._a_c00496{margin-left:-4.032000px;}
._c_c00496{margin-left:-2.664000px;}
._b_c00496{margin-left:-1.008000px;}
._d_c00496{width:1.152000px;}
._3_c00496{width:2.376000px;}
._1_c00496{width:3.600000px;}
._2_c00496{width:4.824000px;}
._0_c00496{width:5.832000px;}
._f_c00496{width:7.056000px;}
._4_c00496{width:8.136000px;}
._8_c00496{width:9.576000px;}
._6_c00496{width:23.832000px;}
._7_c00496{width:31.392000px;}
._5_c00496{width:286.272000px;}
._14_c00496{width:300.672000px;}
.fc2_c00496{color:transparent;}
.fc1_c00496{color:rgb(128,128,128);}
.fc0_c00496{color:rgb(0,0,0);}
.fs5_c00496{font-size:48.000000px;}
.fs1_c00496{font-size:51.000000px;}
.fs2_c00496{font-size:63.000000px;}
.fs0_c00496{font-size:72.000000px;}
.fs3_c00496{font-size:81.000000px;}
.fs4_c00496{font-size:87.000000px;}
.y0_c00496{bottom:0.000000px;}
.y1f_c00496{bottom:3.105000px;}
.y1e_c00496{bottom:7.228363px;}
.y1d_c00496{bottom:36.450000px;}
.y1c_c00496{bottom:64.800000px;}
.y1b_c00496{bottom:92.850000px;}
.y1a_c00496{bottom:118.200000px;}
.y19_c00496{bottom:142.800000px;}
.y18_c00496{bottom:167.400000px;}
.y17_c00496{bottom:192.750000px;}
.y16_c00496{bottom:216.900000px;}
.y15_c00496{bottom:236.250000px;}
.y14_c00496{bottom:265.950000px;}
.y13_c00496{bottom:290.550000px;}
.y12_c00496{bottom:314.850000px;}
.y11_c00496{bottom:336.450000px;}
.y10_c00496{bottom:361.500000px;}
.yf_c00496{bottom:385.350000px;}
.ye_c00496{bottom:409.650000px;}
.yd_c00496{bottom:434.400000px;}
.yc_c00496{bottom:458.700000px;}
.yb_c00496{bottom:483.000000px;}
.ya_c00496{bottom:507.900000px;}
.y9_c00496{bottom:532.200000px;}
.y8_c00496{bottom:556.800000px;}
.y7_c00496{bottom:581.550000px;}
.y6_c00496{bottom:605.850000px;}
.y5_c00496{bottom:631.350000px;}
.y4_c00496{bottom:655.500000px;}
.y3_c00496{bottom:679.350000px;}
.y2_c00496{bottom:703.650000px;}
.y1_c00496{bottom:728.400000px;}
.h5_c00496{height:13.200074px;}
.h6_c00496{height:43.804688px;}
.h2_c00496{height:84.269531px;}
.h3_c00496{height:91.160156px;}
.h4_c00496{height:110.151855px;}
.h1_c00496{height:780.000000px;}
.h0_c00496{height:780.300000px;}
.w2_c00496{width:104.875500px;}
.w0_c00496{width:514.350000px;}
.w1_c00496{width:514.500000px;}
.x0_c00496{left:0.000000px;}
.x6_c00496{left:37.350000px;}
.x7_c00496{left:41.850000px;}
.x5_c00496{left:43.800000px;}
.x4_c00496{left:45.600000px;}
.x3_c00496{left:47.850000px;}
.x2_c00496{left:49.650000px;}
.x1_c00496{left:168.750000px;}
.x9_c00496{left:208.989258px;}
.x8_c00496{left:299.700000px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls2_c00496{letter-spacing:0.000000pt;}
.ls1_c00496{letter-spacing:0.800000pt;}
.ls3_c00496{letter-spacing:2.666667pt;}
.ls4_c00496{letter-spacing:5.333333pt;}
.ls0_c00496{letter-spacing:10.122667pt;}
.ws0_c00496{word-spacing:-18.090667pt;}
.ws1_c00496{word-spacing:0.000000pt;}
._12_c00496{margin-left:-13.440000pt;}
._13_c00496{margin-left:-11.136000pt;}
._11_c00496{margin-left:-9.216000pt;}
._10_c00496{margin-left:-7.744000pt;}
._e_c00496{margin-left:-6.336000pt;}
._9_c00496{margin-left:-4.736000pt;}
._a_c00496{margin-left:-3.584000pt;}
._c_c00496{margin-left:-2.368000pt;}
._b_c00496{margin-left:-0.896000pt;}
._d_c00496{width:1.024000pt;}
._3_c00496{width:2.112000pt;}
._1_c00496{width:3.200000pt;}
._2_c00496{width:4.288000pt;}
._0_c00496{width:5.184000pt;}
._f_c00496{width:6.272000pt;}
._4_c00496{width:7.232000pt;}
._8_c00496{width:8.512000pt;}
._6_c00496{width:21.184000pt;}
._7_c00496{width:27.904000pt;}
._5_c00496{width:254.464000pt;}
._14_c00496{width:267.264000pt;}
.fs5_c00496{font-size:42.666667pt;}
.fs1_c00496{font-size:45.333333pt;}
.fs2_c00496{font-size:56.000000pt;}
.fs0_c00496{font-size:64.000000pt;}
.fs3_c00496{font-size:72.000000pt;}
.fs4_c00496{font-size:77.333333pt;}
.y0_c00496{bottom:0.000000pt;}
.y1f_c00496{bottom:2.760000pt;}
.y1e_c00496{bottom:6.425212pt;}
.y1d_c00496{bottom:32.400000pt;}
.y1c_c00496{bottom:57.600000pt;}
.y1b_c00496{bottom:82.533333pt;}
.y1a_c00496{bottom:105.066667pt;}
.y19_c00496{bottom:126.933333pt;}
.y18_c00496{bottom:148.800000pt;}
.y17_c00496{bottom:171.333333pt;}
.y16_c00496{bottom:192.800000pt;}
.y15_c00496{bottom:210.000000pt;}
.y14_c00496{bottom:236.400000pt;}
.y13_c00496{bottom:258.266667pt;}
.y12_c00496{bottom:279.866667pt;}
.y11_c00496{bottom:299.066667pt;}
.y10_c00496{bottom:321.333333pt;}
.yf_c00496{bottom:342.533333pt;}
.ye_c00496{bottom:364.133333pt;}
.yd_c00496{bottom:386.133333pt;}
.yc_c00496{bottom:407.733333pt;}
.yb_c00496{bottom:429.333333pt;}
.ya_c00496{bottom:451.466667pt;}
.y9_c00496{bottom:473.066667pt;}
.y8_c00496{bottom:494.933333pt;}
.y7_c00496{bottom:516.933333pt;}
.y6_c00496{bottom:538.533333pt;}
.y5_c00496{bottom:561.200000pt;}
.y4_c00496{bottom:582.666667pt;}
.y3_c00496{bottom:603.866667pt;}
.y2_c00496{bottom:625.466667pt;}
.y1_c00496{bottom:647.466667pt;}
.h5_c00496{height:11.733399pt;}
.h6_c00496{height:38.937500pt;}
.h2_c00496{height:74.906250pt;}
.h3_c00496{height:81.031250pt;}
.h4_c00496{height:97.912760pt;}
.h1_c00496{height:693.333333pt;}
.h0_c00496{height:693.600000pt;}
.w2_c00496{width:93.222667pt;}
.w0_c00496{width:457.200000pt;}
.w1_c00496{width:457.333333pt;}
.x0_c00496{left:0.000000pt;}
.x6_c00496{left:33.200000pt;}
.x7_c00496{left:37.200000pt;}
.x5_c00496{left:38.933333pt;}
.x4_c00496{left:40.533333pt;}
.x3_c00496{left:42.533333pt;}
.x2_c00496{left:44.133333pt;}
.x1_c00496{left:150.000000pt;}
.x9_c00496{left:185.768229pt;}
.x8_c00496{left:266.400000pt;}
}





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

.ir_c00497:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00497{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00497;src:url('chunks/assets/font_b64b45cb4e3716f06adbacad.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.480469;font-style:normal;font-weight:normal;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_bdcebca169f1c74e5976153a.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:1.568848;font-style:normal;font-weight:normal;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_b863b6c8e38f6b54770148fc.woff2')format("woff");}.ff3_c00497{font-family:ff3_c00497;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00497;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00497{font-family:ff4_c00497;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00497;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00497{font-family:ff5_c00497;line-height:1.219238;font-style: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;}
.ls0_c00497{letter-spacing:0.000000px;}
.ls1_c00497{letter-spacing:3.000000px;}
.sc__c00497{text-shadow:none;}
.sc0_c00497{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00497{-webkit-text-stroke:0px transparent;}
.sc0_c00497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00497{word-spacing:-20.250000px;}
.ws1_c00497{word-spacing:-15.183000px;}
.ws2_c00497{word-spacing:0.000000px;}
._16_c00497{margin-left:-24.786000px;}
._17_c00497{margin-left:-16.038000px;}
._15_c00497{margin-left:-14.409000px;}
._18_c00497{margin-left:-11.745000px;}
._f_c00497{margin-left:-10.692000px;}
._e_c00497{margin-left:-8.748000px;}
._d_c00497{margin-left:-7.290000px;}
._4_c00497{margin-left:-5.994000px;}
._6_c00497{margin-left:-4.941000px;}
._8_c00497{margin-left:-3.807000px;}
._9_c00497{margin-left:-2.673000px;}
._5_c00497{margin-left:-1.620000px;}
._a_c00497{width:1.170000px;}
._7_c00497{width:2.349000px;}
._b_c00497{width:3.483000px;}
._1_c00497{width:4.752000px;}
._3_c00497{width:6.336000px;}
._2_c00497{width:8.064000px;}
._0_c00497{width:9.288000px;}
._10_c00497{width:10.809000px;}
._14_c00497{width:12.600000px;}
._12_c00497{width:13.608000px;}
._13_c00497{width:15.372000px;}
._11_c00497{width:17.487000px;}
._c_c00497{width:23.184000px;}
.fc2_c00497{color:transparent;}
.fc1_c00497{color:rgb(128,128,128);}
.fc0_c00497{color:rgb(0,0,0);}
.fs3_c00497{font-size:48.000000px;}
.fs2_c00497{font-size:63.000000px;}
.fs0_c00497{font-size:72.000000px;}
.fs1_c00497{font-size:81.000000px;}
.y0_c00497{bottom:0.000000px;}
.y1f_c00497{bottom:3.105000px;}
.y1e_c00497{bottom:7.228355px;}
.y1d_c00497{bottom:43.785000px;}
.y1c_c00497{bottom:59.685000px;}
.y1b_c00497{bottom:86.085000px;}
.y1a_c00497{bottom:111.285000px;}
.y19_c00497{bottom:135.885000px;}
.y18_c00497{bottom:160.635000px;}
.y17_c00497{bottom:188.235000px;}
.y16_c00497{bottom:210.135000px;}
.y15_c00497{bottom:234.885000px;}
.y14_c00497{bottom:263.235000px;}
.y13_c00497{bottom:284.535000px;}
.y12_c00497{bottom:310.035000px;}
.y11_c00497{bottom:334.485000px;}
.y10_c00497{bottom:358.335000px;}
.yf_c00497{bottom:385.635000px;}
.ye_c00497{bottom:409.035000px;}
.yd_c00497{bottom:431.985000px;}
.yc_c00497{bottom:455.985000px;}
.yb_c00497{bottom:481.185000px;}
.ya_c00497{bottom:504.585000px;}
.y9_c00497{bottom:529.485000px;}
.y8_c00497{bottom:553.785000px;}
.y7_c00497{bottom:579.435000px;}
.y6_c00497{bottom:602.985000px;}
.y5_c00497{bottom:627.285000px;}
.y4_c00497{bottom:651.585000px;}
.y3_c00497{bottom:676.335000px;}
.y2_c00497{bottom:700.935000px;}
.y1_c00497{bottom:725.835000px;}
.h5_c00497{height:13.200074px;}
.h6_c00497{height:43.804688px;}
.h4_c00497{height:79.765137px;}
.h3_c00497{height:81.632812px;}
.h2_c00497{height:91.160156px;}
.h1_c00497{height:779.250000px;}
.h0_c00497{height:779.475000px;}
.w2_c00497{width:104.875500px;}
.w0_c00497{width:509.775000px;}
.w1_c00497{width:510.000000px;}
.x0_c00497{left:0.000000px;}
.x3_c00497{left:94.500000px;}
.x2_c00497{left:95.850000px;}
.x5_c00497{left:96.900000px;}
.x7_c00497{left:98.250000px;}
.x9_c00497{left:100.650000px;}
.x6_c00497{left:102.900000px;}
.x8_c00497{left:105.750000px;}
.x4_c00497{left:121.500000px;}
.xa_c00497{left:142.800000px;}
.xc_c00497{left:206.701767px;}
.x1_c00497{left:220.350000px;}
.xb_c00497{left:435.150000px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls0_c00497{letter-spacing:0.000000pt;}
.ls1_c00497{letter-spacing:2.666667pt;}
.ws0_c00497{word-spacing:-18.000000pt;}
.ws1_c00497{word-spacing:-13.496000pt;}
.ws2_c00497{word-spacing:0.000000pt;}
._16_c00497{margin-left:-22.032000pt;}
._17_c00497{margin-left:-14.256000pt;}
._15_c00497{margin-left:-12.808000pt;}
._18_c00497{margin-left:-10.440000pt;}
._f_c00497{margin-left:-9.504000pt;}
._e_c00497{margin-left:-7.776000pt;}
._d_c00497{margin-left:-6.480000pt;}
._4_c00497{margin-left:-5.328000pt;}
._6_c00497{margin-left:-4.392000pt;}
._8_c00497{margin-left:-3.384000pt;}
._9_c00497{margin-left:-2.376000pt;}
._5_c00497{margin-left:-1.440000pt;}
._a_c00497{width:1.040000pt;}
._7_c00497{width:2.088000pt;}
._b_c00497{width:3.096000pt;}
._1_c00497{width:4.224000pt;}
._3_c00497{width:5.632000pt;}
._2_c00497{width:7.168000pt;}
._0_c00497{width:8.256000pt;}
._10_c00497{width:9.608000pt;}
._14_c00497{width:11.200000pt;}
._12_c00497{width:12.096000pt;}
._13_c00497{width:13.664000pt;}
._11_c00497{width:15.544000pt;}
._c_c00497{width:20.608000pt;}
.fs3_c00497{font-size:42.666667pt;}
.fs2_c00497{font-size:56.000000pt;}
.fs0_c00497{font-size:64.000000pt;}
.fs1_c00497{font-size:72.000000pt;}
.y0_c00497{bottom:0.000000pt;}
.y1f_c00497{bottom:2.760000pt;}
.y1e_c00497{bottom:6.425204pt;}
.y1d_c00497{bottom:38.920000pt;}
.y1c_c00497{bottom:53.053333pt;}
.y1b_c00497{bottom:76.520000pt;}
.y1a_c00497{bottom:98.920000pt;}
.y19_c00497{bottom:120.786667pt;}
.y18_c00497{bottom:142.786667pt;}
.y17_c00497{bottom:167.320000pt;}
.y16_c00497{bottom:186.786667pt;}
.y15_c00497{bottom:208.786667pt;}
.y14_c00497{bottom:233.986667pt;}
.y13_c00497{bottom:252.920000pt;}
.y12_c00497{bottom:275.586667pt;}
.y11_c00497{bottom:297.320000pt;}
.y10_c00497{bottom:318.520000pt;}
.yf_c00497{bottom:342.786667pt;}
.ye_c00497{bottom:363.586667pt;}
.yd_c00497{bottom:383.986667pt;}
.yc_c00497{bottom:405.320000pt;}
.yb_c00497{bottom:427.720000pt;}
.ya_c00497{bottom:448.520000pt;}
.y9_c00497{bottom:470.653333pt;}
.y8_c00497{bottom:492.253333pt;}
.y7_c00497{bottom:515.053333pt;}
.y6_c00497{bottom:535.986667pt;}
.y5_c00497{bottom:557.586667pt;}
.y4_c00497{bottom:579.186667pt;}
.y3_c00497{bottom:601.186667pt;}
.y2_c00497{bottom:623.053333pt;}
.y1_c00497{bottom:645.186667pt;}
.h5_c00497{height:11.733399pt;}
.h6_c00497{height:38.937500pt;}
.h4_c00497{height:70.902344pt;}
.h3_c00497{height:72.562500pt;}
.h2_c00497{height:81.031250pt;}
.h1_c00497{height:692.666667pt;}
.h0_c00497{height:692.866667pt;}
.w2_c00497{width:93.222667pt;}
.w0_c00497{width:453.133333pt;}
.w1_c00497{width:453.333333pt;}
.x0_c00497{left:0.000000pt;}
.x3_c00497{left:84.000000pt;}
.x2_c00497{left:85.200000pt;}
.x5_c00497{left:86.133333pt;}
.x7_c00497{left:87.333333pt;}
.x9_c00497{left:89.466667pt;}
.x6_c00497{left:91.466667pt;}
.x8_c00497{left:94.000000pt;}
.x4_c00497{left:108.000000pt;}
.xa_c00497{left:126.933333pt;}
.xc_c00497{left:183.734904pt;}
.x1_c00497{left:195.866667pt;}
.xb_c00497{left:386.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_557bcf5ec8722dadd0aeef22.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00498;src:url('chunks/assets/font_f52ccc0f2378f3134432b289.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00498;src:url('chunks/assets/font_7e8fa71ac9d5ea7faa76a85f.woff2')format("woff");}.ff3_c00498{font-family:ff3_c00498;line-height:1.568848;font-style:normal;font-weight:normal;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_e8eb87360a391b234b054b7c.woff2')format("woff");}.ff4_c00498{font-family:ff4_c00498;line-height:1.480469;font-style:normal;font-weight:normal;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_d9544e3627f7681e81956d4d.woff2')format("woff");}.ff5_c00498{font-family:ff5_c00498;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00498;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c00498{font-family:ff6_c00498;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00498{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00498{vertical-align:0.000000px;}
.ls3_c00498{letter-spacing:-6.000000px;}
.ls1_c00498{letter-spacing:0.000000px;}
.ls4_c00498{letter-spacing:3.000000px;}
.ls2_c00498{letter-spacing:12.000000px;}
.ls0_c00498{letter-spacing:25.848000px;}
.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:-42.000000px;}
.ws4_c00498{word-spacing:-26.487000px;}
.ws3_c00498{word-spacing:-21.660000px;}
.ws5_c00498{word-spacing:-14.460000px;}
.ws6_c00498{word-spacing:0.000000px;}
.ws1_c00498{word-spacing:2.160000px;}
.ws2_c00498{word-spacing:3.960000px;}
._14_c00498{margin-left:-10.479000px;}
._2_c00498{margin-left:-7.617000px;}
._13_c00498{margin-left:-6.153000px;}
._d_c00498{margin-left:-5.133000px;}
._19_c00498{margin-left:-3.870000px;}
._9_c00498{margin-left:-2.559000px;}
._b_c00498{margin-left:-1.209000px;}
._a_c00498{width:1.842000px;}
._5_c00498{width:3.282000px;}
._4_c00498{width:4.740000px;}
._3_c00498{width:5.964000px;}
._1_c00498{width:6.966000px;}
._8_c00498{width:8.685000px;}
._0_c00498{width:9.882000px;}
._16_c00498{width:10.890000px;}
._e_c00498{width:11.943000px;}
._c_c00498{width:13.641000px;}
._10_c00498{width:14.796000px;}
._11_c00498{width:16.605000px;}
._f_c00498{width:18.345000px;}
._18_c00498{width:19.482000px;}
._15_c00498{width:20.499000px;}
._17_c00498{width:22.497000px;}
._7_c00498{width:23.976000px;}
._12_c00498{width:25.992000px;}
._1a_c00498{width:27.783000px;}
._1d_c00498{width:29.676000px;}
._1b_c00498{width:31.938000px;}
._1c_c00498{width:36.255000px;}
._1e_c00498{width:325.161000px;}
._6_c00498{width:348.462000px;}
.fc2_c00498{color:transparent;}
.fc1_c00498{color:rgb(128,128,128);}
.fc0_c00498{color:rgb(0,0,0);}
.fs7_c00498{font-size:48.000000px;}
.fs5_c00498{font-size:51.000000px;}
.fs3_c00498{font-size:54.000000px;}
.fs4_c00498{font-size:57.000000px;}
.fs6_c00498{font-size:60.000000px;}
.fs2_c00498{font-size:72.000000px;}
.fs0_c00498{font-size:81.000000px;}
.fs1_c00498{font-size:84.000000px;}
.y0_c00498{bottom:0.000000px;}
.y1f_c00498{bottom:3.105000px;}
.y1e_c00498{bottom:7.228369px;}
.y1d_c00498{bottom:45.570000px;}
.y1c_c00498{bottom:74.220000px;}
.y1b_c00498{bottom:99.870000px;}
.y1a_c00498{bottom:124.170000px;}
.y19_c00498{bottom:149.520000px;}
.y18_c00498{bottom:171.420000px;}
.y17_c00498{bottom:198.720000px;}
.y16_c00498{bottom:223.770000px;}
.y15_c00498{bottom:246.420000px;}
.y14_c00498{bottom:270.570000px;}
.y13_c00498{bottom:298.020000px;}
.y12_c00498{bottom:319.320000px;}
.y11_c00498{bottom:343.920000px;}
.y10_c00498{bottom:367.920000px;}
.yf_c00498{bottom:391.170000px;}
.ye_c00498{bottom:416.820000px;}
.yd_c00498{bottom:440.370000px;}
.yc_c00498{bottom:465.120000px;}
.yb_c00498{bottom:490.320000px;}
.ya_c00498{bottom:516.270000px;}
.y9_c00498{bottom:539.220000px;}
.y8_c00498{bottom:563.670000px;}
.y7_c00498{bottom:589.620000px;}
.y6_c00498{bottom:612.570000px;}
.y5_c00498{bottom:639.120000px;}
.y4_c00498{bottom:661.770000px;}
.y3_c00498{bottom:688.170000px;}
.y2_c00498{bottom:712.770000px;}
.y1_c00498{bottom:735.420000px;}
.h9_c00498{height:13.200073px;}
.ha_c00498{height:43.804688px;}
.h6_c00498{height:64.571777px;}
.h4_c00498{height:68.370117px;}
.h5_c00498{height:72.168457px;}
.h7_c00498{height:75.966797px;}
.h2_c00498{height:82.400391px;}
.h8_c00498{height:87.804000px;}
.h3_c00498{height:91.160156px;}
.h1_c00498{height:778.500000px;}
.h0_c00498{height:778.650000px;}
.w2_c00498{width:104.875500px;}
.w0_c00498{width:518.100000px;}
.w1_c00498{width:518.250000px;}
.x0_c00498{left:0.000000px;}
.x5_c00498{left:35.850000px;}
.xa_c00498{left:38.100000px;}
.x2_c00498{left:39.150000px;}
.x3_c00498{left:40.200000px;}
.x4_c00498{left:41.550000px;}
.x6_c00498{left:43.500000px;}
.x7_c00498{left:44.850000px;}
.x9_c00498{left:46.650000px;}
.x8_c00498{left:115.500000px;}
.x1_c00498{left:150.450000px;}
.xc_c00498{left:210.864258px;}
.xb_c00498{left:259.350000px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls3_c00498{letter-spacing:-5.333333pt;}
.ls1_c00498{letter-spacing:0.000000pt;}
.ls4_c00498{letter-spacing:2.666667pt;}
.ls2_c00498{letter-spacing:10.666667pt;}
.ls0_c00498{letter-spacing:22.976000pt;}
.ws0_c00498{word-spacing:-37.333333pt;}
.ws4_c00498{word-spacing:-23.544000pt;}
.ws3_c00498{word-spacing:-19.253333pt;}
.ws5_c00498{word-spacing:-12.853333pt;}
.ws6_c00498{word-spacing:0.000000pt;}
.ws1_c00498{word-spacing:1.920000pt;}
.ws2_c00498{word-spacing:3.520000pt;}
._14_c00498{margin-left:-9.314667pt;}
._2_c00498{margin-left:-6.770667pt;}
._13_c00498{margin-left:-5.469333pt;}
._d_c00498{margin-left:-4.562667pt;}
._19_c00498{margin-left:-3.440000pt;}
._9_c00498{margin-left:-2.274667pt;}
._b_c00498{margin-left:-1.074667pt;}
._a_c00498{width:1.637333pt;}
._5_c00498{width:2.917333pt;}
._4_c00498{width:4.213333pt;}
._3_c00498{width:5.301333pt;}
._1_c00498{width:6.192000pt;}
._8_c00498{width:7.720000pt;}
._0_c00498{width:8.784000pt;}
._16_c00498{width:9.680000pt;}
._e_c00498{width:10.616000pt;}
._c_c00498{width:12.125333pt;}
._10_c00498{width:13.152000pt;}
._11_c00498{width:14.760000pt;}
._f_c00498{width:16.306667pt;}
._18_c00498{width:17.317333pt;}
._15_c00498{width:18.221333pt;}
._17_c00498{width:19.997333pt;}
._7_c00498{width:21.312000pt;}
._12_c00498{width:23.104000pt;}
._1a_c00498{width:24.696000pt;}
._1d_c00498{width:26.378667pt;}
._1b_c00498{width:28.389333pt;}
._1c_c00498{width:32.226667pt;}
._1e_c00498{width:289.032000pt;}
._6_c00498{width:309.744000pt;}
.fs7_c00498{font-size:42.666667pt;}
.fs5_c00498{font-size:45.333333pt;}
.fs3_c00498{font-size:48.000000pt;}
.fs4_c00498{font-size:50.666667pt;}
.fs6_c00498{font-size:53.333333pt;}
.fs2_c00498{font-size:64.000000pt;}
.fs0_c00498{font-size:72.000000pt;}
.fs1_c00498{font-size:74.666667pt;}
.y0_c00498{bottom:0.000000pt;}
.y1f_c00498{bottom:2.760000pt;}
.y1e_c00498{bottom:6.425217pt;}
.y1d_c00498{bottom:40.506667pt;}
.y1c_c00498{bottom:65.973333pt;}
.y1b_c00498{bottom:88.773333pt;}
.y1a_c00498{bottom:110.373333pt;}
.y19_c00498{bottom:132.906667pt;}
.y18_c00498{bottom:152.373333pt;}
.y17_c00498{bottom:176.640000pt;}
.y16_c00498{bottom:198.906667pt;}
.y15_c00498{bottom:219.040000pt;}
.y14_c00498{bottom:240.506667pt;}
.y13_c00498{bottom:264.906667pt;}
.y12_c00498{bottom:283.840000pt;}
.y11_c00498{bottom:305.706667pt;}
.y10_c00498{bottom:327.040000pt;}
.yf_c00498{bottom:347.706667pt;}
.ye_c00498{bottom:370.506667pt;}
.yd_c00498{bottom:391.440000pt;}
.yc_c00498{bottom:413.440000pt;}
.yb_c00498{bottom:435.840000pt;}
.ya_c00498{bottom:458.906667pt;}
.y9_c00498{bottom:479.306667pt;}
.y8_c00498{bottom:501.040000pt;}
.y7_c00498{bottom:524.106667pt;}
.y6_c00498{bottom:544.506667pt;}
.y5_c00498{bottom:568.106667pt;}
.y4_c00498{bottom:588.240000pt;}
.y3_c00498{bottom:611.706667pt;}
.y2_c00498{bottom:633.573333pt;}
.y1_c00498{bottom:653.706667pt;}
.h9_c00498{height:11.733399pt;}
.ha_c00498{height:38.937500pt;}
.h6_c00498{height:57.397135pt;}
.h4_c00498{height:60.773438pt;}
.h5_c00498{height:64.149740pt;}
.h7_c00498{height:67.526042pt;}
.h2_c00498{height:73.244792pt;}
.h8_c00498{height:78.048000pt;}
.h3_c00498{height:81.031250pt;}
.h1_c00498{height:692.000000pt;}
.h0_c00498{height:692.133333pt;}
.w2_c00498{width:93.222667pt;}
.w0_c00498{width:460.533333pt;}
.w1_c00498{width:460.666667pt;}
.x0_c00498{left:0.000000pt;}
.x5_c00498{left:31.866667pt;}
.xa_c00498{left:33.866667pt;}
.x2_c00498{left:34.800000pt;}
.x3_c00498{left:35.733333pt;}
.x4_c00498{left:36.933333pt;}
.x6_c00498{left:38.666667pt;}
.x7_c00498{left:39.866667pt;}
.x9_c00498{left:41.466667pt;}
.x8_c00498{left:102.666667pt;}
.x1_c00498{left:133.733333pt;}
.xc_c00498{left:187.434896pt;}
.xb_c00498{left:230.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c6f4d8155bcde86b75875633.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.568848;font-style:normal;font-weight:normal;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_4b21fb6150655276699cbcb0.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:1.480469;font-style:normal;font-weight:normal;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_83782561a34c55bfce05b40c.woff2')format("woff");}.ff3_c00499{font-family:ff3_c00499;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00499;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00499{font-family:ff4_c00499;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00499;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c00499{font-family:ff5_c00499;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00499{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.ls4_c00499{letter-spacing:0.000000px;}
.ls2_c00499{letter-spacing:0.633000px;}
.ls3_c00499{letter-spacing:1.920000px;}
.ls1_c00499{letter-spacing:3.000000px;}
.ls0_c00499{letter-spacing:6.000000px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00499{word-spacing:-28.500000px;}
.ws4_c00499{word-spacing:-22.500000px;}
.ws2_c00499{word-spacing:-22.413000px;}
.ws1_c00499{word-spacing:-20.967000px;}
.ws3_c00499{word-spacing:-19.629000px;}
.ws5_c00499{word-spacing:0.000000px;}
._0_c00499{margin-left:-24.621000px;}
._a_c00499{margin-left:-14.772000px;}
._2_c00499{margin-left:-12.528000px;}
._d_c00499{margin-left:-8.892000px;}
._11_c00499{margin-left:-7.776000px;}
._9_c00499{margin-left:-6.501000px;}
._12_c00499{margin-left:-5.178000px;}
._4_c00499{margin-left:-3.654000px;}
._5_c00499{margin-left:-1.566000px;}
._b_c00499{width:1.050000px;}
._6_c00499{width:2.088000px;}
._8_c00499{width:3.171000px;}
._7_c00499{width:4.977000px;}
._c_c00499{width:6.141000px;}
._10_c00499{width:7.521000px;}
._18_c00499{width:9.276000px;}
._f_c00499{width:10.665000px;}
._e_c00499{width:12.150000px;}
._16_c00499{width:14.076000px;}
._17_c00499{width:15.774000px;}
._14_c00499{width:16.992000px;}
._15_c00499{width:18.195000px;}
._13_c00499{width:30.714000px;}
._1_c00499{width:84.042000px;}
._3_c00499{width:326.988000px;}
.fc2_c00499{color:transparent;}
.fc1_c00499{color:rgb(128,128,128);}
.fc0_c00499{color:rgb(0,0,0);}
.fs5_c00499{font-size:48.000000px;}
.fs4_c00499{font-size:57.000000px;}
.fs1_c00499{font-size:69.000000px;}
.fs0_c00499{font-size:87.000000px;}
.fs2_c00499{font-size:90.000000px;}
.fs3_c00499{font-size:93.000000px;}
.y0_c00499{bottom:0.000000px;}
.y1e_c00499{bottom:3.105000px;}
.y1d_c00499{bottom:7.228355px;}
.y1c_c00499{bottom:63.735000px;}
.y1b_c00499{bottom:91.785000px;}
.y1a_c00499{bottom:117.135000px;}
.y19_c00499{bottom:141.435000px;}
.y18_c00499{bottom:166.335000px;}
.y17_c00499{bottom:191.235000px;}
.y16_c00499{bottom:216.285000px;}
.y15_c00499{bottom:241.185000px;}
.y14_c00499{bottom:267.885000px;}
.y13_c00499{bottom:290.535000px;}
.y12_c00499{bottom:316.485000px;}
.y11_c00499{bottom:339.885000px;}
.y10_c00499{bottom:364.785000px;}
.yf_c00499{bottom:389.085000px;}
.ye_c00499{bottom:413.685000px;}
.yd_c00499{bottom:437.685000px;}
.yc_c00499{bottom:462.585000px;}
.yb_c00499{bottom:486.885000px;}
.ya_c00499{bottom:511.335000px;}
.y9_c00499{bottom:535.935000px;}
.y8_c00499{bottom:560.535000px;}
.y7_c00499{bottom:584.835000px;}
.y6_c00499{bottom:608.535000px;}
.y5_c00499{bottom:634.035000px;}
.y4_c00499{bottom:657.735000px;}
.y3_c00499{bottom:682.635000px;}
.y2_c00499{bottom:707.685000px;}
.y1_c00499{bottom:732.585000px;}
.h6_c00499{height:13.200074px;}
.h7_c00499{height:43.804688px;}
.h4_c00499{height:87.361816px;}
.h3_c00499{height:90.703125px;}
.h5_c00499{height:108.848145px;}
.h2_c00499{height:110.151855px;}
.h0_c00499{height:778.125000px;}
.h1_c00499{height:778.500000px;}
.w2_c00499{width:104.875500px;}
.w1_c00499{width:507.000000px;}
.w0_c00499{width:507.075000px;}
.x0_c00499{left:0.000000px;}
.x7_c00499{left:91.350000px;}
.x6_c00499{left:92.400000px;}
.x3_c00499{left:94.500000px;}
.x5_c00499{left:97.200000px;}
.x4_c00499{left:98.250000px;}
.x1_c00499{left:99.900000px;}
.x2_c00499{left:100.950000px;}
.x8_c00499{left:205.351730px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls4_c00499{letter-spacing:0.000000pt;}
.ls2_c00499{letter-spacing:0.562667pt;}
.ls3_c00499{letter-spacing:1.706667pt;}
.ls1_c00499{letter-spacing:2.666667pt;}
.ls0_c00499{letter-spacing:5.333333pt;}
.ws0_c00499{word-spacing:-25.333333pt;}
.ws4_c00499{word-spacing:-20.000000pt;}
.ws2_c00499{word-spacing:-19.922667pt;}
.ws1_c00499{word-spacing:-18.637333pt;}
.ws3_c00499{word-spacing:-17.448000pt;}
.ws5_c00499{word-spacing:0.000000pt;}
._0_c00499{margin-left:-21.885333pt;}
._a_c00499{margin-left:-13.130667pt;}
._2_c00499{margin-left:-11.136000pt;}
._d_c00499{margin-left:-7.904000pt;}
._11_c00499{margin-left:-6.912000pt;}
._9_c00499{margin-left:-5.778667pt;}
._12_c00499{margin-left:-4.602667pt;}
._4_c00499{margin-left:-3.248000pt;}
._5_c00499{margin-left:-1.392000pt;}
._b_c00499{width:0.933333pt;}
._6_c00499{width:1.856000pt;}
._8_c00499{width:2.818667pt;}
._7_c00499{width:4.424000pt;}
._c_c00499{width:5.458667pt;}
._10_c00499{width:6.685333pt;}
._18_c00499{width:8.245333pt;}
._f_c00499{width:9.480000pt;}
._e_c00499{width:10.800000pt;}
._16_c00499{width:12.512000pt;}
._17_c00499{width:14.021333pt;}
._14_c00499{width:15.104000pt;}
._15_c00499{width:16.173333pt;}
._13_c00499{width:27.301333pt;}
._1_c00499{width:74.704000pt;}
._3_c00499{width:290.656000pt;}
.fs5_c00499{font-size:42.666667pt;}
.fs4_c00499{font-size:50.666667pt;}
.fs1_c00499{font-size:61.333333pt;}
.fs0_c00499{font-size:77.333333pt;}
.fs2_c00499{font-size:80.000000pt;}
.fs3_c00499{font-size:82.666667pt;}
.y0_c00499{bottom:0.000000pt;}
.y1e_c00499{bottom:2.760000pt;}
.y1d_c00499{bottom:6.425204pt;}
.y1c_c00499{bottom:56.653333pt;}
.y1b_c00499{bottom:81.586667pt;}
.y1a_c00499{bottom:104.120000pt;}
.y19_c00499{bottom:125.720000pt;}
.y18_c00499{bottom:147.853333pt;}
.y17_c00499{bottom:169.986667pt;}
.y16_c00499{bottom:192.253333pt;}
.y15_c00499{bottom:214.386667pt;}
.y14_c00499{bottom:238.120000pt;}
.y13_c00499{bottom:258.253333pt;}
.y12_c00499{bottom:281.320000pt;}
.y11_c00499{bottom:302.120000pt;}
.y10_c00499{bottom:324.253333pt;}
.yf_c00499{bottom:345.853333pt;}
.ye_c00499{bottom:367.720000pt;}
.yd_c00499{bottom:389.053333pt;}
.yc_c00499{bottom:411.186667pt;}
.yb_c00499{bottom:432.786667pt;}
.ya_c00499{bottom:454.520000pt;}
.y9_c00499{bottom:476.386667pt;}
.y8_c00499{bottom:498.253333pt;}
.y7_c00499{bottom:519.853333pt;}
.y6_c00499{bottom:540.920000pt;}
.y5_c00499{bottom:563.586667pt;}
.y4_c00499{bottom:584.653333pt;}
.y3_c00499{bottom:606.786667pt;}
.y2_c00499{bottom:629.053333pt;}
.y1_c00499{bottom:651.186667pt;}
.h6_c00499{height:11.733399pt;}
.h7_c00499{height:38.937500pt;}
.h4_c00499{height:77.654948pt;}
.h3_c00499{height:80.625000pt;}
.h5_c00499{height:96.753906pt;}
.h2_c00499{height:97.912760pt;}
.h0_c00499{height:691.666667pt;}
.h1_c00499{height:692.000000pt;}
.w2_c00499{width:93.222667pt;}
.w1_c00499{width:450.666667pt;}
.w0_c00499{width:450.733333pt;}
.x0_c00499{left:0.000000pt;}
.x7_c00499{left:81.200000pt;}
.x6_c00499{left:82.133333pt;}
.x3_c00499{left:84.000000pt;}
.x5_c00499{left:86.400000pt;}
.x4_c00499{left:87.333333pt;}
.x1_c00499{left:88.800000pt;}
.x2_c00499{left:89.733333pt;}
.x8_c00499{left:182.534871pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f0138c3aed25f723ea8c12f4.woff2')format("woff");}.ff1_c01000{font-family:ff1_c01000;line-height:1.480469;font-style:normal;font-weight:normal;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_4b80fff9a069d87c56c51675.woff2')format("woff");}.ff2_c01000{font-family:ff2_c01000;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01000;src:url('chunks/assets/font_42ca6a7f4ee780e6466fa4ba.woff2')format("woff");}.ff3_c01000{font-family:ff3_c01000;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01000;src:url('chunks/assets/font_4892f4f1bce1d6a5762ec5b2.woff2')format("woff");}.ff4_c01000{font-family:ff4_c01000;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01000;src:url('chunks/assets/font_8fd75cbbcb2cae5d1780bb7c.woff2')format("woff");}.ff5_c01000{font-family:ff5_c01000;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01000;src:url('chunks/assets/font_ca1ac9324523223cd77aa14b.woff2')format("woff");}.ff6_c01000{font-family:ff6_c01000;line-height:1.284180;font-style:normal;font-weight: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_c01000;src:url('chunks/assets/font_a0a2c77ecdf086bfc26e034c.woff2')format("woff");}.ff7_c01000{font-family:ff7_c01000;line-height:1.568848;font-style:normal;font-weight: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_c01000;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff8_c01000{font-family:ff8_c01000;line-height:1.219238;font-style: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:3.852000px;}
.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;}
}
.ws1_c01000{word-spacing:-42.000000px;}
.ws0_c01000{word-spacing:-33.192000px;}
.ws2_c01000{word-spacing:-20.250000px;}
.ws3_c01000{word-spacing:-15.183000px;}
.ws4_c01000{word-spacing:0.000000px;}
._e_c01000{margin-left:-31.470000px;}
._12_c01000{margin-left:-16.764000px;}
._14_c01000{margin-left:-12.738000px;}
._11_c01000{margin-left:-10.824000px;}
._13_c01000{margin-left:-9.048000px;}
._10_c01000{margin-left:-7.806000px;}
._b_c01000{margin-left:-6.444000px;}
._8_c01000{margin-left:-4.512000px;}
._a_c01000{margin-left:-2.880000px;}
._7_c01000{margin-left:-1.554000px;}
._9_c01000{width:1.134000px;}
._4_c01000{width:2.214000px;}
._2_c01000{width:3.528000px;}
._5_c01000{width:5.112000px;}
._6_c01000{width:6.324000px;}
._1_c01000{width:8.064000px;}
._d_c01000{width:9.078000px;}
._3_c01000{width:10.224000px;}
._15_c01000{width:11.415000px;}
._0_c01000{width:12.960000px;}
._c_c01000{width:14.298000px;}
._f_c01000{width:16.422000px;}
._17_c01000{width:18.768000px;}
._16_c01000{width:20.340000px;}
._18_c01000{width:26.601000px;}
._19_c01000{width:28.371000px;}
.fc2_c01000{color:transparent;}
.fc1_c01000{color:rgb(128,128,128);}
.fc0_c01000{color:rgb(0,0,0);}
.fs7_c01000{font-size:48.000000px;}
.fs6_c01000{font-size:55.200000px;}
.fs2_c01000{font-size:63.000000px;}
.fs1_c01000{font-size:66.000000px;}
.fs5_c01000{font-size:69.000000px;}
.fs0_c01000{font-size:72.000000px;}
.fs3_c01000{font-size:81.000000px;}
.fs4_c01000{font-size:84.000000px;}
.y0_c01000{bottom:0.000000px;}
.y1f_c01000{bottom:3.105000px;}
.y1e_c01000{bottom:7.228371px;}
.y1d_c01000{bottom:39.615000px;}
.y1c_c01000{bottom:68.565000px;}
.y1b_c01000{bottom:90.465000px;}
.y1a_c01000{bottom:117.465000px;}
.y19_c01000{bottom:142.515000px;}
.y18_c01000{bottom:167.415000px;}
.y17_c01000{bottom:188.715000px;}
.y16_c01000{bottom:214.965000px;}
.y15_c01000{bottom:241.365000px;}
.y14_c01000{bottom:266.265000px;}
.y13_c01000{bottom:288.015000px;}
.y12_c01000{bottom:312.915000px;}
.y11_c01000{bottom:337.215000px;}
.y10_c01000{bottom:360.915000px;}
.yf_c01000{bottom:385.515000px;}
.ye_c01000{bottom:409.815000px;}
.yd_c01000{bottom:434.715000px;}
.yc_c01000{bottom:458.715000px;}
.yb_c01000{bottom:483.615000px;}
.ya_c01000{bottom:508.065000px;}
.y9_c01000{bottom:532.215000px;}
.y8_c01000{bottom:557.865000px;}
.y7_c01000{bottom:582.165000px;}
.y6_c01000{bottom:606.615000px;}
.y5_c01000{bottom:631.815000px;}
.y4_c01000{bottom:655.815000px;}
.y3_c01000{bottom:680.415000px;}
.y2_c01000{bottom:706.065000px;}
.y1_c01000{bottom:730.815000px;}
.h8_c01000{height:13.200074px;}
.h9_c01000{height:43.804688px;}
.h3_c01000{height:70.422000px;}
.h5_c01000{height:79.497070px;}
.h4_c01000{height:79.765137px;}
.h6_c01000{height:82.400391px;}
.h2_c01000{height:84.269531px;}
.h7_c01000{height:87.361816px;}
.h0_c01000{height:773.025000px;}
.h1_c01000{height:773.250000px;}
.w2_c01000{width:104.875500px;}
.w0_c01000{width:524.625000px;}
.w1_c01000{width:525.000000px;}
.x0_c01000{left:0.000000px;}
.x2_c01000{left:28.050000px;}
.x3_c01000{left:30.000000px;}
.x5_c01000{left:31.800000px;}
.x4_c01000{left:32.850000px;}
.x7_c01000{left:34.800000px;}
.x6_c01000{left:36.750000px;}
.x8_c01000{left:63.900000px;}
.x1_c01000{left:148.800000px;}
.xa_c01000{left:214.126740px;}
.x9_c01000{left:374.250000px;}
@media print{
.v0_c01000{vertical-align:0.000000pt;}
.ls1_c01000{letter-spacing:0.000000pt;}
.ls0_c01000{letter-spacing:3.424000pt;}
.ws1_c01000{word-spacing:-37.333333pt;}
.ws0_c01000{word-spacing:-29.504000pt;}
.ws2_c01000{word-spacing:-18.000000pt;}
.ws3_c01000{word-spacing:-13.496000pt;}
.ws4_c01000{word-spacing:0.000000pt;}
._e_c01000{margin-left:-27.973333pt;}
._12_c01000{margin-left:-14.901333pt;}
._14_c01000{margin-left:-11.322667pt;}
._11_c01000{margin-left:-9.621333pt;}
._13_c01000{margin-left:-8.042667pt;}
._10_c01000{margin-left:-6.938667pt;}
._b_c01000{margin-left:-5.728000pt;}
._8_c01000{margin-left:-4.010667pt;}
._a_c01000{margin-left:-2.560000pt;}
._7_c01000{margin-left:-1.381333pt;}
._9_c01000{width:1.008000pt;}
._4_c01000{width:1.968000pt;}
._2_c01000{width:3.136000pt;}
._5_c01000{width:4.544000pt;}
._6_c01000{width:5.621333pt;}
._1_c01000{width:7.168000pt;}
._d_c01000{width:8.069333pt;}
._3_c01000{width:9.088000pt;}
._15_c01000{width:10.146667pt;}
._0_c01000{width:11.520000pt;}
._c_c01000{width:12.709333pt;}
._f_c01000{width:14.597333pt;}
._17_c01000{width:16.682667pt;}
._16_c01000{width:18.080000pt;}
._18_c01000{width:23.645333pt;}
._19_c01000{width:25.218667pt;}
.fs7_c01000{font-size:42.666667pt;}
.fs6_c01000{font-size:49.066667pt;}
.fs2_c01000{font-size:56.000000pt;}
.fs1_c01000{font-size:58.666667pt;}
.fs5_c01000{font-size:61.333333pt;}
.fs0_c01000{font-size:64.000000pt;}
.fs3_c01000{font-size:72.000000pt;}
.fs4_c01000{font-size:74.666667pt;}
.y0_c01000{bottom:0.000000pt;}
.y1f_c01000{bottom:2.760000pt;}
.y1e_c01000{bottom:6.425219pt;}
.y1d_c01000{bottom:35.213333pt;}
.y1c_c01000{bottom:60.946667pt;}
.y1b_c01000{bottom:80.413333pt;}
.y1a_c01000{bottom:104.413333pt;}
.y19_c01000{bottom:126.680000pt;}
.y18_c01000{bottom:148.813333pt;}
.y17_c01000{bottom:167.746667pt;}
.y16_c01000{bottom:191.080000pt;}
.y15_c01000{bottom:214.546667pt;}
.y14_c01000{bottom:236.680000pt;}
.y13_c01000{bottom:256.013333pt;}
.y12_c01000{bottom:278.146667pt;}
.y11_c01000{bottom:299.746667pt;}
.y10_c01000{bottom:320.813333pt;}
.yf_c01000{bottom:342.680000pt;}
.ye_c01000{bottom:364.280000pt;}
.yd_c01000{bottom:386.413333pt;}
.yc_c01000{bottom:407.746667pt;}
.yb_c01000{bottom:429.880000pt;}
.ya_c01000{bottom:451.613333pt;}
.y9_c01000{bottom:473.080000pt;}
.y8_c01000{bottom:495.880000pt;}
.y7_c01000{bottom:517.480000pt;}
.y6_c01000{bottom:539.213333pt;}
.y5_c01000{bottom:561.613333pt;}
.y4_c01000{bottom:582.946667pt;}
.y3_c01000{bottom:604.813333pt;}
.y2_c01000{bottom:627.613333pt;}
.y1_c01000{bottom:649.613333pt;}
.h8_c01000{height:11.733399pt;}
.h9_c01000{height:38.937500pt;}
.h3_c01000{height:62.597333pt;}
.h5_c01000{height:70.664062pt;}
.h4_c01000{height:70.902344pt;}
.h6_c01000{height:73.244792pt;}
.h2_c01000{height:74.906250pt;}
.h7_c01000{height:77.654948pt;}
.h0_c01000{height:687.133333pt;}
.h1_c01000{height:687.333333pt;}
.w2_c01000{width:93.222667pt;}
.w0_c01000{width:466.333333pt;}
.w1_c01000{width:466.666667pt;}
.x0_c01000{left:0.000000pt;}
.x2_c01000{left:24.933333pt;}
.x3_c01000{left:26.666667pt;}
.x5_c01000{left:28.266667pt;}
.x4_c01000{left:29.200000pt;}
.x7_c01000{left:30.933333pt;}
.x6_c01000{left:32.666667pt;}
.x8_c01000{left:56.800000pt;}
.x1_c01000{left:132.266667pt;}
.xa_c01000{left:190.334880pt;}
.x9_c01000{left:332.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_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_9ce93343cc3a30c360bc44a1.woff2')format("woff");}.ff1_c01001{font-family:ff1_c01001;line-height:1.480469;font-style:normal;font-weight:normal;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_45d2669e2987543e3f53037b.woff2')format("woff");}.ff2_c01001{font-family:ff2_c01001;line-height:1.568848;font-style:normal;font-weight:normal;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_d328cf3c28ab5e89d932654f.woff2')format("woff");}.ff3_c01001{font-family:ff3_c01001;line-height:1.568848;font-style:normal;font-weight:normal;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_c4470e05992341c0d8cffee1.woff2')format("woff");}.ff4_c01001{font-family:ff4_c01001;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01001{font-family:ff5_c01001;line-height:1.219238;font-style: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);}
.v0_c01001{vertical-align:0.000000px;}
.v1_c01001{vertical-align:46.200000px;}
.ls6_c01001{letter-spacing:-3.000000px;}
.ls5_c01001{letter-spacing:0.000000px;}
.ls4_c01001{letter-spacing:1.950000px;}
.ls3_c01001{letter-spacing:3.150000px;}
.ls0_c01001{letter-spacing:3.249000px;}
.ls1_c01001{letter-spacing:15.750000px;}
.ls2_c01001{letter-spacing:23.151000px;}
.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;}
}
.ws0_c01001{word-spacing:-19.521000px;}
.ws3_c01001{word-spacing:-19.098000px;}
.ws2_c01001{word-spacing:-18.075000px;}
.ws1_c01001{word-spacing:-15.183000px;}
.ws4_c01001{word-spacing:0.000000px;}
._1c_c01001{margin-left:-19.053000px;}
._14_c01001{margin-left:-16.470000px;}
._18_c01001{margin-left:-13.920000px;}
._16_c01001{margin-left:-12.291000px;}
._17_c01001{margin-left:-11.022000px;}
._2_c01001{margin-left:-9.483000px;}
._19_c01001{margin-left:-7.920000px;}
._10_c01001{margin-left:-6.777000px;}
._8_c01001{margin-left:-5.109000px;}
._3_c01001{margin-left:-4.089000px;}
._4_c01001{margin-left:-1.959000px;}
._1_c01001{width:1.479000px;}
._0_c01001{width:2.784000px;}
._f_c01001{width:3.969000px;}
._5_c01001{width:5.040000px;}
._6_c01001{width:6.804000px;}
._7_c01001{width:8.064000px;}
._9_c01001{width:9.066000px;}
._a_c01001{width:10.962000px;}
._d_c01001{width:12.135000px;}
._b_c01001{width:13.482000px;}
._11_c01001{width:16.317000px;}
._c_c01001{width:18.150000px;}
._15_c01001{width:20.631000px;}
._e_c01001{width:22.806000px;}
._1b_c01001{width:27.153000px;}
._1d_c01001{width:41.325000px;}
._12_c01001{width:42.723000px;}
._13_c01001{width:46.401000px;}
._1a_c01001{width:331.449000px;}
._1e_c01001{width:1269.750000px;}
.fc2_c01001{color:transparent;}
.fc1_c01001{color:rgb(128,128,128);}
.fc0_c01001{color:rgb(0,0,0);}
.fs4_c01001{font-size:48.000000px;}
.fs1_c01001{font-size:63.000000px;}
.fs3_c01001{font-size:75.000000px;}
.fs2_c01001{font-size:81.000000px;}
.fs0_c01001{font-size:87.000000px;}
.y0_c01001{bottom:0.000000px;}
.y1e_c01001{bottom:3.105000px;}
.y1d_c01001{bottom:7.228371px;}
.y1c_c01001{bottom:38.115000px;}
.y1b_c01001{bottom:91.815000px;}
.y1a_c01001{bottom:116.865000px;}
.y19_c01001{bottom:142.815000px;}
.y18_c01001{bottom:167.865000px;}
.y17_c01001{bottom:193.065000px;}
.y16_c01001{bottom:217.815000px;}
.y15_c01001{bottom:243.765000px;}
.y14_c01001{bottom:266.415000px;}
.y13_c01001{bottom:293.715000px;}
.y12_c01001{bottom:318.015000px;}
.y11_c01001{bottom:342.615000px;}
.y10_c01001{bottom:366.915000px;}
.yf_c01001{bottom:391.215000px;}
.ye_c01001{bottom:414.915000px;}
.yd_c01001{bottom:441.165000px;}
.yc_c01001{bottom:463.815000px;}
.yb_c01001{bottom:489.465000px;}
.ya_c01001{bottom:514.065000px;}
.y9_c01001{bottom:538.065000px;}
.y8_c01001{bottom:562.365000px;}
.y7_c01001{bottom:586.215000px;}
.y6_c01001{bottom:611.565000px;}
.y5_c01001{bottom:634.965000px;}
.y4_c01001{bottom:660.465000px;}
.y3_c01001{bottom:684.915000px;}
.y2_c01001{bottom:710.415000px;}
.y1_c01001{bottom:736.065000px;}
.h8_c01001{height:13.200074px;}
.h9_c01001{height:43.804688px;}
.h4_c01001{height:79.765137px;}
.h5_c01001{height:94.803223px;}
.h6_c01001{height:94.958496px;}
.h3_c01001{height:102.555176px;}
.h2_c01001{height:110.151855px;}
.h7_c01001{height:125.965137px;}
.h0_c01001{height:779.775000px;}
.h1_c01001{height:780.000000px;}
.w2_c01001{width:104.875500px;}
.w0_c01001{width:504.375000px;}
.w1_c01001{width:504.750000px;}
.x0_c01001{left:0.000000px;}
.x4_c01001{left:85.050000px;}
.x3_c01001{left:86.100000px;}
.x2_c01001{left:87.750000px;}
.x5_c01001{left:89.400000px;}
.x6_c01001{left:91.800000px;}
.x7_c01001{left:94.050000px;}
.x1_c01001{left:200.400000px;}
.x8_c01001{left:204.001740px;}
@media print{
.v0_c01001{vertical-align:0.000000pt;}
.v1_c01001{vertical-align:41.066667pt;}
.ls6_c01001{letter-spacing:-2.666667pt;}
.ls5_c01001{letter-spacing:0.000000pt;}
.ls4_c01001{letter-spacing:1.733333pt;}
.ls3_c01001{letter-spacing:2.800000pt;}
.ls0_c01001{letter-spacing:2.888000pt;}
.ls1_c01001{letter-spacing:14.000000pt;}
.ls2_c01001{letter-spacing:20.578667pt;}
.ws0_c01001{word-spacing:-17.352000pt;}
.ws3_c01001{word-spacing:-16.976000pt;}
.ws2_c01001{word-spacing:-16.066667pt;}
.ws1_c01001{word-spacing:-13.496000pt;}
.ws4_c01001{word-spacing:0.000000pt;}
._1c_c01001{margin-left:-16.936000pt;}
._14_c01001{margin-left:-14.640000pt;}
._18_c01001{margin-left:-12.373333pt;}
._16_c01001{margin-left:-10.925333pt;}
._17_c01001{margin-left:-9.797333pt;}
._2_c01001{margin-left:-8.429333pt;}
._19_c01001{margin-left:-7.040000pt;}
._10_c01001{margin-left:-6.024000pt;}
._8_c01001{margin-left:-4.541333pt;}
._3_c01001{margin-left:-3.634667pt;}
._4_c01001{margin-left:-1.741333pt;}
._1_c01001{width:1.314667pt;}
._0_c01001{width:2.474667pt;}
._f_c01001{width:3.528000pt;}
._5_c01001{width:4.480000pt;}
._6_c01001{width:6.048000pt;}
._7_c01001{width:7.168000pt;}
._9_c01001{width:8.058667pt;}
._a_c01001{width:9.744000pt;}
._d_c01001{width:10.786667pt;}
._b_c01001{width:11.984000pt;}
._11_c01001{width:14.504000pt;}
._c_c01001{width:16.133333pt;}
._15_c01001{width:18.338667pt;}
._e_c01001{width:20.272000pt;}
._1b_c01001{width:24.136000pt;}
._1d_c01001{width:36.733333pt;}
._12_c01001{width:37.976000pt;}
._13_c01001{width:41.245333pt;}
._1a_c01001{width:294.621333pt;}
._1e_c01001{width:1128.666667pt;}
.fs4_c01001{font-size:42.666667pt;}
.fs1_c01001{font-size:56.000000pt;}
.fs3_c01001{font-size:66.666667pt;}
.fs2_c01001{font-size:72.000000pt;}
.fs0_c01001{font-size:77.333333pt;}
.y0_c01001{bottom:0.000000pt;}
.y1e_c01001{bottom:2.760000pt;}
.y1d_c01001{bottom:6.425219pt;}
.y1c_c01001{bottom:33.880000pt;}
.y1b_c01001{bottom:81.613333pt;}
.y1a_c01001{bottom:103.880000pt;}
.y19_c01001{bottom:126.946667pt;}
.y18_c01001{bottom:149.213333pt;}
.y17_c01001{bottom:171.613333pt;}
.y16_c01001{bottom:193.613333pt;}
.y15_c01001{bottom:216.680000pt;}
.y14_c01001{bottom:236.813333pt;}
.y13_c01001{bottom:261.080000pt;}
.y12_c01001{bottom:282.680000pt;}
.y11_c01001{bottom:304.546667pt;}
.y10_c01001{bottom:326.146667pt;}
.yf_c01001{bottom:347.746667pt;}
.ye_c01001{bottom:368.813333pt;}
.yd_c01001{bottom:392.146667pt;}
.yc_c01001{bottom:412.280000pt;}
.yb_c01001{bottom:435.080000pt;}
.ya_c01001{bottom:456.946667pt;}
.y9_c01001{bottom:478.280000pt;}
.y8_c01001{bottom:499.880000pt;}
.y7_c01001{bottom:521.080000pt;}
.y6_c01001{bottom:543.613333pt;}
.y5_c01001{bottom:564.413333pt;}
.y4_c01001{bottom:587.080000pt;}
.y3_c01001{bottom:608.813333pt;}
.y2_c01001{bottom:631.480000pt;}
.y1_c01001{bottom:654.280000pt;}
.h8_c01001{height:11.733399pt;}
.h9_c01001{height:38.937500pt;}
.h4_c01001{height:70.902344pt;}
.h5_c01001{height:84.269531pt;}
.h6_c01001{height:84.407552pt;}
.h3_c01001{height:91.160156pt;}
.h2_c01001{height:97.912760pt;}
.h7_c01001{height:111.969010pt;}
.h0_c01001{height:693.133333pt;}
.h1_c01001{height:693.333333pt;}
.w2_c01001{width:93.222667pt;}
.w0_c01001{width:448.333333pt;}
.w1_c01001{width:448.666667pt;}
.x0_c01001{left:0.000000pt;}
.x4_c01001{left:75.600000pt;}
.x3_c01001{left:76.533333pt;}
.x2_c01001{left:78.000000pt;}
.x5_c01001{left:79.466667pt;}
.x6_c01001{left:81.600000pt;}
.x7_c01001{left:83.600000pt;}
.x1_c01001{left:178.133333pt;}
.x8_c01001{left:181.334880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2621738dcd908ba5c4cf8e33.woff2')format("woff");}.ff1_c01002{font-family:ff1_c01002;line-height:1.480469;font-style:normal;font-weight:normal;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_7f3348ade964bd971b197f0e.woff2')format("woff");}.ff2_c01002{font-family:ff2_c01002;line-height:1.568848;font-style:normal;font-weight:normal;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_17a101ce2ebe710c7ee52fe1.woff2')format("woff");}.ff3_c01002{font-family:ff3_c01002;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01002;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01002{font-family:ff4_c01002;line-height:1.219238;font-style: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:3.000000px;}
.ls2_c01002{letter-spacing:6.000000px;}
.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:-17.352000px;}
.ws1_c01002{word-spacing:0.000000px;}
._16_c01002{margin-left:-26.910000px;}
._19_c01002{margin-left:-19.485000px;}
._18_c01002{margin-left:-17.394000px;}
._14_c01002{margin-left:-11.523000px;}
._b_c01002{margin-left:-8.577000px;}
._9_c01002{margin-left:-6.717000px;}
._8_c01002{margin-left:-5.256000px;}
._c_c01002{margin-left:-3.759000px;}
._5_c01002{margin-left:-2.724000px;}
._2_c01002{margin-left:-1.209000px;}
._e_c01002{width:1.251000px;}
._1_c01002{width:2.325000px;}
._a_c01002{width:3.342000px;}
._0_c01002{width:4.464000px;}
._4_c01002{width:5.520000px;}
._1b_c01002{width:6.561000px;}
._6_c01002{width:7.581000px;}
._3_c01002{width:8.853000px;}
._d_c01002{width:10.347000px;}
._13_c01002{width:12.183000px;}
._1a_c01002{width:13.266000px;}
._11_c01002{width:15.759000px;}
._7_c01002{width:16.929000px;}
._15_c01002{width:18.600000px;}
._1f_c01002{width:20.367000px;}
._1e_c01002{width:22.143000px;}
._10_c01002{width:23.592000px;}
._f_c01002{width:25.560000px;}
._20_c01002{width:26.763000px;}
._12_c01002{width:27.867000px;}
._1c_c01002{width:29.190000px;}
._1d_c01002{width:37.320000px;}
._17_c01002{width:511.800000px;}
.fc2_c01002{color:transparent;}
.fc1_c01002{color:rgb(128,128,128);}
.fc0_c01002{color:rgb(0,0,0);}
.fs3_c01002{font-size:24.000000px;}
.fs6_c01002{font-size:48.000000px;}
.fs2_c01002{font-size:57.000000px;}
.fs4_c01002{font-size:60.000000px;}
.fs5_c01002{font-size:69.000000px;}
.fs1_c01002{font-size:72.000000px;}
.fs0_c01002{font-size:93.000000px;}
.y0_c01002{bottom:0.000000px;}
.y1f_c01002{bottom:3.105000px;}
.y1e_c01002{bottom:7.228369px;}
.y1d_c01002{bottom:77.520000px;}
.y1c_c01002{bottom:100.620000px;}
.y1b_c01002{bottom:128.220000px;}
.y1a_c01002{bottom:152.820000px;}
.y19_c01002{bottom:173.370000px;}
.y18_c01002{bottom:200.370000px;}
.y17_c01002{bottom:203.070000px;}
.y16_c01002{bottom:226.770000px;}
.y15_c01002{bottom:250.470000px;}
.y14_c01002{bottom:275.970000px;}
.y13_c01002{bottom:300.720000px;}
.y12_c01002{bottom:323.670000px;}
.y11_c01002{bottom:347.220000px;}
.y10_c01002{bottom:371.220000px;}
.yf_c01002{bottom:394.920000px;}
.ye_c01002{bottom:419.820000px;}
.yd_c01002{bottom:443.520000px;}
.yc_c01002{bottom:468.420000px;}
.yb_c01002{bottom:493.020000px;}
.ya_c01002{bottom:518.070000px;}
.y9_c01002{bottom:541.020000px;}
.y8_c01002{bottom:566.670000px;}
.y7_c01002{bottom:591.570000px;}
.y6_c01002{bottom:616.170000px;}
.y5_c01002{bottom:639.270000px;}
.y4_c01002{bottom:664.170000px;}
.y3_c01002{bottom:691.920000px;}
.y2_c01002{bottom:714.720000px;}
.y1_c01002{bottom:739.170000px;}
.h6_c01002{height:13.200073px;}
.h7_c01002{height:43.804688px;}
.h4_c01002{height:75.966797px;}
.h5_c01002{height:87.361816px;}
.h3_c01002{height:91.160156px;}
.h2_c01002{height:108.848145px;}
.h1_c01002{height:783.750000px;}
.h0_c01002{height:784.050000px;}
.w2_c01002{width:104.875500px;}
.w0_c01002{width:532.200000px;}
.w1_c01002{width:532.500000px;}
.x0_c01002{left:0.000000px;}
.x2_c01002{left:32.400000px;}
.x4_c01002{left:34.050000px;}
.x3_c01002{left:35.400000px;}
.x5_c01002{left:37.200000px;}
.x6_c01002{left:38.850000px;}
.x7_c01002{left:39.900000px;}
.x9_c01002{left:40.950000px;}
.x8_c01002{left:42.150000px;}
.x1_c01002{left:142.200000px;}
.xa_c01002{left:177.150000px;}
.xb_c01002{left:217.914230px;}
@media print{
.v0_c01002{vertical-align:0.000000pt;}
.ls1_c01002{letter-spacing:0.000000pt;}
.ls0_c01002{letter-spacing:2.666667pt;}
.ls2_c01002{letter-spacing:5.333333pt;}
.ws0_c01002{word-spacing:-15.424000pt;}
.ws1_c01002{word-spacing:0.000000pt;}
._16_c01002{margin-left:-23.920000pt;}
._19_c01002{margin-left:-17.320000pt;}
._18_c01002{margin-left:-15.461333pt;}
._14_c01002{margin-left:-10.242667pt;}
._b_c01002{margin-left:-7.624000pt;}
._9_c01002{margin-left:-5.970667pt;}
._8_c01002{margin-left:-4.672000pt;}
._c_c01002{margin-left:-3.341333pt;}
._5_c01002{margin-left:-2.421333pt;}
._2_c01002{margin-left:-1.074667pt;}
._e_c01002{width:1.112000pt;}
._1_c01002{width:2.066667pt;}
._a_c01002{width:2.970667pt;}
._0_c01002{width:3.968000pt;}
._4_c01002{width:4.906667pt;}
._1b_c01002{width:5.832000pt;}
._6_c01002{width:6.738667pt;}
._3_c01002{width:7.869333pt;}
._d_c01002{width:9.197333pt;}
._13_c01002{width:10.829333pt;}
._1a_c01002{width:11.792000pt;}
._11_c01002{width:14.008000pt;}
._7_c01002{width:15.048000pt;}
._15_c01002{width:16.533333pt;}
._1f_c01002{width:18.104000pt;}
._1e_c01002{width:19.682667pt;}
._10_c01002{width:20.970667pt;}
._f_c01002{width:22.720000pt;}
._20_c01002{width:23.789333pt;}
._12_c01002{width:24.770667pt;}
._1c_c01002{width:25.946667pt;}
._1d_c01002{width:33.173333pt;}
._17_c01002{width:454.933333pt;}
.fs3_c01002{font-size:21.333333pt;}
.fs6_c01002{font-size:42.666667pt;}
.fs2_c01002{font-size:50.666667pt;}
.fs4_c01002{font-size:53.333333pt;}
.fs5_c01002{font-size:61.333333pt;}
.fs1_c01002{font-size:64.000000pt;}
.fs0_c01002{font-size:82.666667pt;}
.y0_c01002{bottom:0.000000pt;}
.y1f_c01002{bottom:2.760000pt;}
.y1e_c01002{bottom:6.425217pt;}
.y1d_c01002{bottom:68.906667pt;}
.y1c_c01002{bottom:89.440000pt;}
.y1b_c01002{bottom:113.973333pt;}
.y1a_c01002{bottom:135.840000pt;}
.y19_c01002{bottom:154.106667pt;}
.y18_c01002{bottom:178.106667pt;}
.y17_c01002{bottom:180.506667pt;}
.y16_c01002{bottom:201.573333pt;}
.y15_c01002{bottom:222.640000pt;}
.y14_c01002{bottom:245.306667pt;}
.y13_c01002{bottom:267.306667pt;}
.y12_c01002{bottom:287.706667pt;}
.y11_c01002{bottom:308.640000pt;}
.y10_c01002{bottom:329.973333pt;}
.yf_c01002{bottom:351.040000pt;}
.ye_c01002{bottom:373.173333pt;}
.yd_c01002{bottom:394.240000pt;}
.yc_c01002{bottom:416.373333pt;}
.yb_c01002{bottom:438.240000pt;}
.ya_c01002{bottom:460.506667pt;}
.y9_c01002{bottom:480.906667pt;}
.y8_c01002{bottom:503.706667pt;}
.y7_c01002{bottom:525.840000pt;}
.y6_c01002{bottom:547.706667pt;}
.y5_c01002{bottom:568.240000pt;}
.y4_c01002{bottom:590.373333pt;}
.y3_c01002{bottom:615.040000pt;}
.y2_c01002{bottom:635.306667pt;}
.y1_c01002{bottom:657.040000pt;}
.h6_c01002{height:11.733399pt;}
.h7_c01002{height:38.937500pt;}
.h4_c01002{height:67.526042pt;}
.h5_c01002{height:77.654948pt;}
.h3_c01002{height:81.031250pt;}
.h2_c01002{height:96.753906pt;}
.h1_c01002{height:696.666667pt;}
.h0_c01002{height:696.933333pt;}
.w2_c01002{width:93.222667pt;}
.w0_c01002{width:473.066667pt;}
.w1_c01002{width:473.333333pt;}
.x0_c01002{left:0.000000pt;}
.x2_c01002{left:28.800000pt;}
.x4_c01002{left:30.266667pt;}
.x3_c01002{left:31.466667pt;}
.x5_c01002{left:33.066667pt;}
.x6_c01002{left:34.533333pt;}
.x7_c01002{left:35.466667pt;}
.x9_c01002{left:36.400000pt;}
.x8_c01002{left:37.466667pt;}
.x1_c01002{left:126.400000pt;}
.xa_c01002{left:157.466667pt;}
.xb_c01002{left:193.701538pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_92475b18fd0f769f669825f7.woff2')format("woff");}.ff1_c01003{font-family:ff1_c01003;line-height:1.480469;font-style:normal;font-weight:normal;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_c5c2269dcf67f75026402fca.woff2')format("woff");}.ff2_c01003{font-family:ff2_c01003;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01003{font-family:ff3_c01003;line-height:1.219238;font-style: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;}
.ls0_c01003{letter-spacing:19.725000px;}
.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;}
._14_c01003{margin-left:-7.620000px;}
._12_c01003{margin-left:-6.030000px;}
._15_c01003{margin-left:-4.590000px;}
._13_c01003{margin-left:-3.441000px;}
._0_c01003{margin-left:-2.436000px;}
._1_c01003{margin-left:-1.305000px;}
._4_c01003{width:1.044000px;}
._3_c01003{width:3.045000px;}
._7_c01003{width:4.056000px;}
._5_c01003{width:5.244000px;}
._6_c01003{width:7.107000px;}
._b_c01003{width:8.751000px;}
._2_c01003{width:10.092000px;}
._a_c01003{width:11.325000px;}
._11_c01003{width:12.387000px;}
._9_c01003{width:13.737000px;}
._8_c01003{width:15.348000px;}
._d_c01003{width:18.729000px;}
._c_c01003{width:20.091000px;}
._f_c01003{width:29.925000px;}
._16_c01003{width:34.758000px;}
._10_c01003{width:35.868000px;}
._e_c01003{width:37.626000px;}
.fc2_c01003{color:transparent;}
.fc1_c01003{color:rgb(128,128,128);}
.fc0_c01003{color:rgb(0,0,0);}
.fs2_c01003{font-size:48.000000px;}
.fs1_c01003{font-size:69.000000px;}
.fs0_c01003{font-size:87.000000px;}
.y0_c01003{bottom:0.000000px;}
.y1e_c01003{bottom:3.105000px;}
.y1d_c01003{bottom:7.228355px;}
.y1c_c01003{bottom:55.935000px;}
.y1b_c01003{bottom:83.385000px;}
.y1a_c01003{bottom:106.935000px;}
.y19_c01003{bottom:131.835000px;}
.y18_c01003{bottom:156.735000px;}
.y17_c01003{bottom:181.485000px;}
.y16_c01003{bottom:206.235000px;}
.y15_c01003{bottom:231.435000px;}
.y14_c01003{bottom:256.185000px;}
.y13_c01003{bottom:280.485000px;}
.y12_c01003{bottom:305.985000px;}
.y11_c01003{bottom:329.685000px;}
.y10_c01003{bottom:354.285000px;}
.yf_c01003{bottom:378.585000px;}
.ye_c01003{bottom:403.185000px;}
.yd_c01003{bottom:427.485000px;}
.yc_c01003{bottom:451.935000px;}
.yb_c01003{bottom:476.535000px;}
.ya_c01003{bottom:500.835000px;}
.y9_c01003{bottom:525.435000px;}
.y8_c01003{bottom:550.335000px;}
.y7_c01003{bottom:574.785000px;}
.y6_c01003{bottom:599.685000px;}
.y5_c01003{bottom:623.985000px;}
.y4_c01003{bottom:648.885000px;}
.y3_c01003{bottom:672.585000px;}
.y2_c01003{bottom:697.935000px;}
.y1_c01003{bottom:723.585000px;}
.h4_c01003{height:13.200074px;}
.h5_c01003{height:43.804688px;}
.h3_c01003{height:87.361816px;}
.h2_c01003{height:110.151855px;}
.h1_c01003{height:760.500000px;}
.h0_c01003{height:760.575000px;}
.w2_c01003{width:104.875500px;}
.w0_c01003{width:505.425000px;}
.w1_c01003{width:505.500000px;}
.x0_c01003{left:0.000000px;}
.x7_c01003{left:102.150000px;}
.x6_c01003{left:103.200000px;}
.x8_c01003{left:105.000000px;}
.x4_c01003{left:106.350000px;}
.x3_c01003{left:107.550000px;}
.x5_c01003{left:108.600000px;}
.x2_c01003{left:109.650000px;}
.x9_c01003{left:204.526749px;}
.x1_c01003{left:238.350000px;}
@media print{
.v0_c01003{vertical-align:0.000000pt;}
.ls1_c01003{letter-spacing:0.000000pt;}
.ls0_c01003{letter-spacing:17.533333pt;}
.ws0_c01003{word-spacing:0.000000pt;}
._14_c01003{margin-left:-6.773333pt;}
._12_c01003{margin-left:-5.360000pt;}
._15_c01003{margin-left:-4.080000pt;}
._13_c01003{margin-left:-3.058667pt;}
._0_c01003{margin-left:-2.165333pt;}
._1_c01003{margin-left:-1.160000pt;}
._4_c01003{width:0.928000pt;}
._3_c01003{width:2.706667pt;}
._7_c01003{width:3.605333pt;}
._5_c01003{width:4.661333pt;}
._6_c01003{width:6.317333pt;}
._b_c01003{width:7.778667pt;}
._2_c01003{width:8.970667pt;}
._a_c01003{width:10.066667pt;}
._11_c01003{width:11.010667pt;}
._9_c01003{width:12.210667pt;}
._8_c01003{width:13.642667pt;}
._d_c01003{width:16.648000pt;}
._c_c01003{width:17.858667pt;}
._f_c01003{width:26.600000pt;}
._16_c01003{width:30.896000pt;}
._10_c01003{width:31.882667pt;}
._e_c01003{width:33.445333pt;}
.fs2_c01003{font-size:42.666667pt;}
.fs1_c01003{font-size:61.333333pt;}
.fs0_c01003{font-size:77.333333pt;}
.y0_c01003{bottom:0.000000pt;}
.y1e_c01003{bottom:2.760000pt;}
.y1d_c01003{bottom:6.425204pt;}
.y1c_c01003{bottom:49.720000pt;}
.y1b_c01003{bottom:74.120000pt;}
.y1a_c01003{bottom:95.053333pt;}
.y19_c01003{bottom:117.186667pt;}
.y18_c01003{bottom:139.320000pt;}
.y17_c01003{bottom:161.320000pt;}
.y16_c01003{bottom:183.320000pt;}
.y15_c01003{bottom:205.720000pt;}
.y14_c01003{bottom:227.720000pt;}
.y13_c01003{bottom:249.320000pt;}
.y12_c01003{bottom:271.986667pt;}
.y11_c01003{bottom:293.053333pt;}
.y10_c01003{bottom:314.920000pt;}
.yf_c01003{bottom:336.520000pt;}
.ye_c01003{bottom:358.386667pt;}
.yd_c01003{bottom:379.986667pt;}
.yc_c01003{bottom:401.720000pt;}
.yb_c01003{bottom:423.586667pt;}
.ya_c01003{bottom:445.186667pt;}
.y9_c01003{bottom:467.053333pt;}
.y8_c01003{bottom:489.186667pt;}
.y7_c01003{bottom:510.920000pt;}
.y6_c01003{bottom:533.053333pt;}
.y5_c01003{bottom:554.653333pt;}
.y4_c01003{bottom:576.786667pt;}
.y3_c01003{bottom:597.853333pt;}
.y2_c01003{bottom:620.386667pt;}
.y1_c01003{bottom:643.186667pt;}
.h4_c01003{height:11.733399pt;}
.h5_c01003{height:38.937500pt;}
.h3_c01003{height:77.654948pt;}
.h2_c01003{height:97.912760pt;}
.h1_c01003{height:676.000000pt;}
.h0_c01003{height:676.066667pt;}
.w2_c01003{width:93.222667pt;}
.w0_c01003{width:449.266667pt;}
.w1_c01003{width:449.333333pt;}
.x0_c01003{left:0.000000pt;}
.x7_c01003{left:90.800000pt;}
.x6_c01003{left:91.733333pt;}
.x8_c01003{left:93.333333pt;}
.x4_c01003{left:94.533333pt;}
.x3_c01003{left:95.600000pt;}
.x5_c01003{left:96.533333pt;}
.x2_c01003{left:97.466667pt;}
.x9_c01003{left:181.801554pt;}
.x1_c01003{left:211.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d16f92893d7ad6c600f12f51.woff2')format("woff");}.ff1_c01004{font-family:ff1_c01004;line-height:1.480469;font-style:normal;font-weight:normal;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_275984e61e80488fa3293d68.woff2')format("woff");}.ff2_c01004{font-family:ff2_c01004;line-height:1.568848;font-style:normal;font-weight:normal;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_8610dea1b67f5414bc0d2407.woff2')format("woff");}.ff3_c01004{font-family:ff3_c01004;line-height:1.575000;font-style:normal;font-weight:normal;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_8ad37604f73f2d7e5421f27f.woff2')format("woff");}.ff4_c01004{font-family:ff4_c01004;line-height:1.480469;font-style:normal;font-weight:normal;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_554e76dfcf3bd609021dbcad.woff2')format("woff");}.ff5_c01004{font-family:ff5_c01004;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01004;src:url('chunks/assets/font_ea860bf6389c93118dd9b371.woff2')format("woff");}.ff6_c01004{font-family:ff6_c01004;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01004;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c01004{font-family:ff7_c01004;line-height:1.219238;font-style: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;}
.ls5_c01004{letter-spacing:-3.000000px;}
.ls3_c01004{letter-spacing:0.000000px;}
.ls1_c01004{letter-spacing:2.388000px;}
.ls4_c01004{letter-spacing:3.000000px;}
.ls0_c01004{letter-spacing:22.740000px;}
.ls2_c01004{letter-spacing:39.540000px;}
.sc__c01004{text-shadow:none;}
.sc0_c01004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01004{-webkit-text-stroke:0px transparent;}
.sc0_c01004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01004{word-spacing:-33.192000px;}
.ws4_c01004{word-spacing:-30.969000px;}
.ws1_c01004{word-spacing:-20.352000px;}
.ws0_c01004{word-spacing:-15.240000px;}
.ws3_c01004{word-spacing:-12.240000px;}
.ws5_c01004{word-spacing:0.000000px;}
._10_c01004{margin-left:-17.064000px;}
._13_c01004{margin-left:-8.703000px;}
._e_c01004{margin-left:-7.548000px;}
._c_c01004{margin-left:-5.400000px;}
._9_c01004{margin-left:-4.200000px;}
._a_c01004{margin-left:-2.640000px;}
._b_c01004{margin-left:-1.320000px;}
._d_c01004{width:1.056000px;}
._2_c01004{width:2.100000px;}
._0_c01004{width:3.240000px;}
._8_c01004{width:4.296000px;}
._1_c01004{width:5.400000px;}
._6_c01004{width:6.444000px;}
._7_c01004{width:7.500000px;}
._4_c01004{width:9.000000px;}
._f_c01004{width:10.464000px;}
._5_c01004{width:12.360000px;}
._19_c01004{width:13.452000px;}
._16_c01004{width:16.260000px;}
._15_c01004{width:17.808000px;}
._17_c01004{width:19.176000px;}
._11_c01004{width:21.660000px;}
._18_c01004{width:23.040000px;}
._1a_c01004{width:32.184000px;}
._14_c01004{width:35.064000px;}
._12_c01004{width:340.272000px;}
._3_c01004{width:358.680000px;}
.fc2_c01004{color:transparent;}
.fc1_c01004{color:rgb(128,128,128);}
.fc0_c01004{color:rgb(0,0,0);}
.fs5_c01004{font-size:48.000000px;}
.fs0_c01004{font-size:60.000000px;}
.fs2_c01004{font-size:63.000000px;}
.fs1_c01004{font-size:72.000000px;}
.fs3_c01004{font-size:81.000000px;}
.fs4_c01004{font-size:93.000000px;}
.y0_c01004{bottom:0.000000px;}
.y1f_c01004{bottom:3.105000px;}
.y1e_c01004{bottom:7.228363px;}
.y1d_c01004{bottom:40.050000px;}
.y1c_c01004{bottom:70.500000px;}
.y1b_c01004{bottom:93.750000px;}
.y1a_c01004{bottom:121.800000px;}
.y19_c01004{bottom:146.100000px;}
.y18_c01004{bottom:171.000000px;}
.y17_c01004{bottom:195.000000px;}
.y16_c01004{bottom:219.000000px;}
.y15_c01004{bottom:244.950000px;}
.y14_c01004{bottom:265.950000px;}
.y13_c01004{bottom:293.850000px;}
.y12_c01004{bottom:317.850000px;}
.y11_c01004{bottom:338.400000px;}
.y10_c01004{bottom:362.700000px;}
.yf_c01004{bottom:387.450000px;}
.ye_c01004{bottom:412.350000px;}
.yd_c01004{bottom:436.350000px;}
.yc_c01004{bottom:461.250000px;}
.yb_c01004{bottom:486.000000px;}
.ya_c01004{bottom:510.300000px;}
.y9_c01004{bottom:534.600000px;}
.y8_c01004{bottom:559.500000px;}
.y7_c01004{bottom:584.850000px;}
.y6_c01004{bottom:608.100000px;}
.y5_c01004{bottom:632.700000px;}
.y4_c01004{bottom:657.150000px;}
.y3_c01004{bottom:682.050000px;}
.y2_c01004{bottom:707.100000px;}
.y1_c01004{bottom:731.700000px;}
.h6_c01004{height:13.200074px;}
.h7_c01004{height:43.804688px;}
.h1_c01004{height:70.224609px;}
.h4_c01004{height:75.966797px;}
.h3_c01004{height:79.497070px;}
.h2_c01004{height:91.160156px;}
.h5_c01004{height:93.726562px;}
.h0_c01004{height:783.000000px;}
.w2_c01004{width:104.875500px;}
.w0_c01004{width:528.675000px;}
.w1_c01004{width:528.750000px;}
.x0_c01004{left:0.000000px;}
.x2_c01004{left:23.700000px;}
.x3_c01004{left:25.650000px;}
.x4_c01004{left:27.000000px;}
.x5_c01004{left:28.650000px;}
.x6_c01004{left:30.000000px;}
.x7_c01004{left:31.050000px;}
.xa_c01004{left:32.100000px;}
.x9_c01004{left:33.450000px;}
.x8_c01004{left:36.750000px;}
.xb_c01004{left:160.650000px;}
.x1_c01004{left:198.900000px;}
.xd_c01004{left:216.151749px;}
.xc_c01004{left:361.500000px;}
@media print{
.v0_c01004{vertical-align:0.000000pt;}
.ls5_c01004{letter-spacing:-2.666667pt;}
.ls3_c01004{letter-spacing:0.000000pt;}
.ls1_c01004{letter-spacing:2.122667pt;}
.ls4_c01004{letter-spacing:2.666667pt;}
.ls0_c01004{letter-spacing:20.213333pt;}
.ls2_c01004{letter-spacing:35.146667pt;}
.ws2_c01004{word-spacing:-29.504000pt;}
.ws4_c01004{word-spacing:-27.528000pt;}
.ws1_c01004{word-spacing:-18.090667pt;}
.ws0_c01004{word-spacing:-13.546667pt;}
.ws3_c01004{word-spacing:-10.880000pt;}
.ws5_c01004{word-spacing:0.000000pt;}
._10_c01004{margin-left:-15.168000pt;}
._13_c01004{margin-left:-7.736000pt;}
._e_c01004{margin-left:-6.709333pt;}
._c_c01004{margin-left:-4.800000pt;}
._9_c01004{margin-left:-3.733333pt;}
._a_c01004{margin-left:-2.346667pt;}
._b_c01004{margin-left:-1.173333pt;}
._d_c01004{width:0.938667pt;}
._2_c01004{width:1.866667pt;}
._0_c01004{width:2.880000pt;}
._8_c01004{width:3.818667pt;}
._1_c01004{width:4.800000pt;}
._6_c01004{width:5.728000pt;}
._7_c01004{width:6.666667pt;}
._4_c01004{width:8.000000pt;}
._f_c01004{width:9.301333pt;}
._5_c01004{width:10.986667pt;}
._19_c01004{width:11.957333pt;}
._16_c01004{width:14.453333pt;}
._15_c01004{width:15.829333pt;}
._17_c01004{width:17.045333pt;}
._11_c01004{width:19.253333pt;}
._18_c01004{width:20.480000pt;}
._1a_c01004{width:28.608000pt;}
._14_c01004{width:31.168000pt;}
._12_c01004{width:302.464000pt;}
._3_c01004{width:318.826667pt;}
.fs5_c01004{font-size:42.666667pt;}
.fs0_c01004{font-size:53.333333pt;}
.fs2_c01004{font-size:56.000000pt;}
.fs1_c01004{font-size:64.000000pt;}
.fs3_c01004{font-size:72.000000pt;}
.fs4_c01004{font-size:82.666667pt;}
.y0_c01004{bottom:0.000000pt;}
.y1f_c01004{bottom:2.760000pt;}
.y1e_c01004{bottom:6.425212pt;}
.y1d_c01004{bottom:35.600000pt;}
.y1c_c01004{bottom:62.666667pt;}
.y1b_c01004{bottom:83.333333pt;}
.y1a_c01004{bottom:108.266667pt;}
.y19_c01004{bottom:129.866667pt;}
.y18_c01004{bottom:152.000000pt;}
.y17_c01004{bottom:173.333333pt;}
.y16_c01004{bottom:194.666667pt;}
.y15_c01004{bottom:217.733333pt;}
.y14_c01004{bottom:236.400000pt;}
.y13_c01004{bottom:261.200000pt;}
.y12_c01004{bottom:282.533333pt;}
.y11_c01004{bottom:300.800000pt;}
.y10_c01004{bottom:322.400000pt;}
.yf_c01004{bottom:344.400000pt;}
.ye_c01004{bottom:366.533333pt;}
.yd_c01004{bottom:387.866667pt;}
.yc_c01004{bottom:410.000000pt;}
.yb_c01004{bottom:432.000000pt;}
.ya_c01004{bottom:453.600000pt;}
.y9_c01004{bottom:475.200000pt;}
.y8_c01004{bottom:497.333333pt;}
.y7_c01004{bottom:519.866667pt;}
.y6_c01004{bottom:540.533333pt;}
.y5_c01004{bottom:562.400000pt;}
.y4_c01004{bottom:584.133333pt;}
.y3_c01004{bottom:606.266667pt;}
.y2_c01004{bottom:628.533333pt;}
.y1_c01004{bottom:650.400000pt;}
.h6_c01004{height:11.733399pt;}
.h7_c01004{height:38.937500pt;}
.h1_c01004{height:62.421875pt;}
.h4_c01004{height:67.526042pt;}
.h3_c01004{height:70.664062pt;}
.h2_c01004{height:81.031250pt;}
.h5_c01004{height:83.312500pt;}
.h0_c01004{height:696.000000pt;}
.w2_c01004{width:93.222667pt;}
.w0_c01004{width:469.933333pt;}
.w1_c01004{width:470.000000pt;}
.x0_c01004{left:0.000000pt;}
.x2_c01004{left:21.066667pt;}
.x3_c01004{left:22.800000pt;}
.x4_c01004{left:24.000000pt;}
.x5_c01004{left:25.466667pt;}
.x6_c01004{left:26.666667pt;}
.x7_c01004{left:27.600000pt;}
.xa_c01004{left:28.533333pt;}
.x9_c01004{left:29.733333pt;}
.x8_c01004{left:32.666667pt;}
.xb_c01004{left:142.800000pt;}
.x1_c01004{left:176.800000pt;}
.xd_c01004{left:192.134888pt;}
.xc_c01004{left:321.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_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_6be8f2ef8e95e59b5ec96b2a.woff2')format("woff");}.ff1_c01005{font-family:ff1_c01005;line-height:1.480469;font-style:normal;font-weight:normal;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_99d168e2dcd8bbb92eba6ef2.woff2')format("woff");}.ff2_c01005{font-family:ff2_c01005;line-height:1.568848;font-style:normal;font-weight:normal;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_ef6fdcb583a3b5397a18275b.woff2')format("woff");}.ff3_c01005{font-family:ff3_c01005;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01005;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01005{font-family:ff4_c01005;line-height:1.219238;font-style: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;}
.ls2_c01005{letter-spacing:-3.000000px;}
.ls0_c01005{letter-spacing:0.000000px;}
.ls1_c01005{letter-spacing:3.000000px;}
.sc__c01005{text-shadow:none;}
.sc0_c01005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01005{-webkit-text-stroke:0px transparent;}
.sc0_c01005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01005{word-spacing:-20.352000px;}
.ws0_c01005{word-spacing:-17.352000px;}
.ws2_c01005{word-spacing:0.000000px;}
._f_c01005{margin-left:-63.000000px;}
._13_c01005{margin-left:-28.584000px;}
._c_c01005{margin-left:-11.880000px;}
._e_c01005{margin-left:-9.360000px;}
._b_c01005{margin-left:-8.064000px;}
._a_c01005{margin-left:-6.984000px;}
._9_c01005{margin-left:-5.832000px;}
._d_c01005{margin-left:-4.608000px;}
._6_c01005{margin-left:-3.168000px;}
._8_c01005{margin-left:-1.584000px;}
._7_c01005{width:1.224000px;}
._5_c01005{width:3.096000px;}
._3_c01005{width:4.320000px;}
._1_c01005{width:6.264000px;}
._12_c01005{width:7.272000px;}
._4_c01005{width:8.712000px;}
._10_c01005{width:9.864000px;}
._0_c01005{width:11.376000px;}
._2_c01005{width:12.528000px;}
._11_c01005{width:21.528000px;}
._15_c01005{width:24.192000px;}
._14_c01005{width:59.472000px;}
._16_c01005{width:897.624000px;}
.fc2_c01005{color:transparent;}
.fc1_c01005{color:rgb(128,128,128);}
.fc0_c01005{color:rgb(0,0,0);}
.fs2_c01005{font-size:48.000000px;}
.fs0_c01005{font-size:72.000000px;}
.fs1_c01005{font-size:87.000000px;}
.y0_c01005{bottom:0.000000px;}
.y1f_c01005{bottom:3.105000px;}
.y1e_c01005{bottom:7.228357px;}
.y1d_c01005{bottom:48.930000px;}
.y1c_c01005{bottom:64.830000px;}
.y1b_c01005{bottom:92.430000px;}
.y1a_c01005{bottom:115.830000px;}
.y19_c01005{bottom:141.780000px;}
.y18_c01005{bottom:167.130000px;}
.y17_c01005{bottom:192.030000px;}
.y16_c01005{bottom:216.780000px;}
.y15_c01005{bottom:241.980000px;}
.y14_c01005{bottom:266.580000px;}
.y13_c01005{bottom:291.630000px;}
.y12_c01005{bottom:315.630000px;}
.y11_c01005{bottom:340.830000px;}
.y10_c01005{bottom:364.830000px;}
.yf_c01005{bottom:388.830000px;}
.ye_c01005{bottom:413.430000px;}
.yd_c01005{bottom:438.180000px;}
.yc_c01005{bottom:463.380000px;}
.yb_c01005{bottom:486.780000px;}
.ya_c01005{bottom:511.080000px;}
.y9_c01005{bottom:535.680000px;}
.y8_c01005{bottom:560.280000px;}
.y7_c01005{bottom:585.180000px;}
.y6_c01005{bottom:609.630000px;}
.y5_c01005{bottom:633.930000px;}
.y4_c01005{bottom:658.230000px;}
.y3_c01005{bottom:683.130000px;}
.y2_c01005{bottom:707.730000px;}
.y1_c01005{bottom:732.480000px;}
.h4_c01005{height:13.200074px;}
.h5_c01005{height:43.804688px;}
.h2_c01005{height:91.160156px;}
.h3_c01005{height:92.829000px;}
.h0_c01005{height:773.850000px;}
.h1_c01005{height:774.000000px;}
.w2_c01005{width:104.875500px;}
.w1_c01005{width:499.500000px;}
.w0_c01005{width:499.800000px;}
.x0_c01005{left:0.000000px;}
.x5_c01005{left:83.400000px;}
.x8_c01005{left:87.750000px;}
.x7_c01005{left:88.800000px;}
.x4_c01005{left:90.000000px;}
.x6_c01005{left:91.050000px;}
.x3_c01005{left:92.100000px;}
.x2_c01005{left:93.450000px;}
.x9_c01005{left:171.450000px;}
.xa_c01005{left:201.714249px;}
.x1_c01005{left:207.450000px;}
@media print{
.v0_c01005{vertical-align:0.000000pt;}
.ls2_c01005{letter-spacing:-2.666667pt;}
.ls0_c01005{letter-spacing:0.000000pt;}
.ls1_c01005{letter-spacing:2.666667pt;}
.ws1_c01005{word-spacing:-18.090667pt;}
.ws0_c01005{word-spacing:-15.424000pt;}
.ws2_c01005{word-spacing:0.000000pt;}
._f_c01005{margin-left:-56.000000pt;}
._13_c01005{margin-left:-25.408000pt;}
._c_c01005{margin-left:-10.560000pt;}
._e_c01005{margin-left:-8.320000pt;}
._b_c01005{margin-left:-7.168000pt;}
._a_c01005{margin-left:-6.208000pt;}
._9_c01005{margin-left:-5.184000pt;}
._d_c01005{margin-left:-4.096000pt;}
._6_c01005{margin-left:-2.816000pt;}
._8_c01005{margin-left:-1.408000pt;}
._7_c01005{width:1.088000pt;}
._5_c01005{width:2.752000pt;}
._3_c01005{width:3.840000pt;}
._1_c01005{width:5.568000pt;}
._12_c01005{width:6.464000pt;}
._4_c01005{width:7.744000pt;}
._10_c01005{width:8.768000pt;}
._0_c01005{width:10.112000pt;}
._2_c01005{width:11.136000pt;}
._11_c01005{width:19.136000pt;}
._15_c01005{width:21.504000pt;}
._14_c01005{width:52.864000pt;}
._16_c01005{width:797.888000pt;}
.fs2_c01005{font-size:42.666667pt;}
.fs0_c01005{font-size:64.000000pt;}
.fs1_c01005{font-size:77.333333pt;}
.y0_c01005{bottom:0.000000pt;}
.y1f_c01005{bottom:2.760000pt;}
.y1e_c01005{bottom:6.425206pt;}
.y1d_c01005{bottom:43.493333pt;}
.y1c_c01005{bottom:57.626667pt;}
.y1b_c01005{bottom:82.160000pt;}
.y1a_c01005{bottom:102.960000pt;}
.y19_c01005{bottom:126.026667pt;}
.y18_c01005{bottom:148.560000pt;}
.y17_c01005{bottom:170.693333pt;}
.y16_c01005{bottom:192.693333pt;}
.y15_c01005{bottom:215.093333pt;}
.y14_c01005{bottom:236.960000pt;}
.y13_c01005{bottom:259.226667pt;}
.y12_c01005{bottom:280.560000pt;}
.y11_c01005{bottom:302.960000pt;}
.y10_c01005{bottom:324.293333pt;}
.yf_c01005{bottom:345.626667pt;}
.ye_c01005{bottom:367.493333pt;}
.yd_c01005{bottom:389.493333pt;}
.yc_c01005{bottom:411.893333pt;}
.yb_c01005{bottom:432.693333pt;}
.ya_c01005{bottom:454.293333pt;}
.y9_c01005{bottom:476.160000pt;}
.y8_c01005{bottom:498.026667pt;}
.y7_c01005{bottom:520.160000pt;}
.y6_c01005{bottom:541.893333pt;}
.y5_c01005{bottom:563.493333pt;}
.y4_c01005{bottom:585.093333pt;}
.y3_c01005{bottom:607.226667pt;}
.y2_c01005{bottom:629.093333pt;}
.y1_c01005{bottom:651.093333pt;}
.h4_c01005{height:11.733399pt;}
.h5_c01005{height:38.937500pt;}
.h2_c01005{height:81.031250pt;}
.h3_c01005{height:82.514667pt;}
.h0_c01005{height:687.866667pt;}
.h1_c01005{height:688.000000pt;}
.w2_c01005{width:93.222667pt;}
.w1_c01005{width:444.000000pt;}
.w0_c01005{width:444.266667pt;}
.x0_c01005{left:0.000000pt;}
.x5_c01005{left:74.133333pt;}
.x8_c01005{left:78.000000pt;}
.x7_c01005{left:78.933333pt;}
.x4_c01005{left:80.000000pt;}
.x6_c01005{left:80.933333pt;}
.x3_c01005{left:81.866667pt;}
.x2_c01005{left:83.066667pt;}
.x9_c01005{left:152.400000pt;}
.xa_c01005{left:179.301554pt;}
.x1_c01005{left:184.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_37bb50728b15027d734c9b39.woff2')format("woff");}.ff1_c01006{font-family:ff1_c01006;line-height:1.480469;font-style:normal;font-weight:normal;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_74d5204281c2db48b7089933.woff2')format("woff");}.ff2_c01006{font-family:ff2_c01006;line-height:1.284180;font-style:normal;font-weight:normal;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_cb6d29cd43b9d216018bf336.woff2')format("woff");}.ff3_c01006{font-family:ff3_c01006;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01006{font-family:ff4_c01006;line-height:1.219238;font-style: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);}
.v0_c01006{vertical-align:0.000000px;}
.ls2_c01006{letter-spacing:0.000000px;}
.ls1_c01006{letter-spacing:0.336000px;}
.ls3_c01006{letter-spacing:3.000000px;}
.ls0_c01006{letter-spacing:74.400000px;}
.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:-40.107000px;}
.ws1_c01006{word-spacing:0.000000px;}
._13_c01006{margin-left:-17.064000px;}
._16_c01006{margin-left:-13.545000px;}
._12_c01006{margin-left:-12.528000px;}
._11_c01006{margin-left:-10.728000px;}
._10_c01006{margin-left:-9.387000px;}
._b_c01006{margin-left:-7.416000px;}
._c_c01006{margin-left:-6.264000px;}
._9_c01006{margin-left:-5.256000px;}
._8_c01006{margin-left:-3.312000px;}
._4_c01006{margin-left:-2.160000px;}
._a_c01006{margin-left:-1.008000px;}
._6_c01006{width:1.548000px;}
._5_c01006{width:2.676000px;}
._7_c01006{width:4.104000px;}
._d_c01006{width:5.448000px;}
._2_c01006{width:6.612000px;}
._f_c01006{width:8.208000px;}
._1_c01006{width:10.527000px;}
._14_c01006{width:11.622000px;}
._3_c01006{width:12.876000px;}
._e_c01006{width:15.324000px;}
._0_c01006{width:16.704000px;}
._15_c01006{width:81.876000px;}
._17_c01006{width:200.844000px;}
.fc2_c01006{color:transparent;}
.fc1_c01006{color:rgb(128,128,128);}
.fc0_c01006{color:rgb(0,0,0);}
.fs4_c01006{font-size:48.000000px;}
.fs1_c01006{font-size:60.000000px;}
.fs3_c01006{font-size:63.000000px;}
.fs2_c01006{font-size:72.000000px;}
.fs0_c01006{font-size:87.000000px;}
.y0_c01006{bottom:0.000000px;}
.y1f_c01006{bottom:3.105000px;}
.y1e_c01006{bottom:7.228369px;}
.y1d_c01006{bottom:49.320000px;}
.y1c_c01006{bottom:76.620000px;}
.y1b_c01006{bottom:101.970000px;}
.y1a_c01006{bottom:126.870000px;}
.y19_c01006{bottom:151.170000px;}
.y18_c01006{bottom:176.220000px;}
.y17_c01006{bottom:200.520000px;}
.y16_c01006{bottom:224.370000px;}
.y15_c01006{bottom:248.670000px;}
.y14_c01006{bottom:273.420000px;}
.y13_c01006{bottom:297.570000px;}
.y12_c01006{bottom:319.320000px;}
.y11_c01006{bottom:344.220000px;}
.y10_c01006{bottom:367.470000px;}
.yf_c01006{bottom:392.220000px;}
.ye_c01006{bottom:416.070000px;}
.yd_c01006{bottom:440.370000px;}
.yc_c01006{bottom:464.970000px;}
.yb_c01006{bottom:489.270000px;}
.ya_c01006{bottom:513.720000px;}
.y9_c01006{bottom:537.870000px;}
.y8_c01006{bottom:562.920000px;}
.y7_c01006{bottom:586.920000px;}
.y6_c01006{bottom:611.220000px;}
.y5_c01006{bottom:635.520000px;}
.y4_c01006{bottom:659.370000px;}
.y3_c01006{bottom:684.720000px;}
.y2_c01006{bottom:708.720000px;}
.y1_c01006{bottom:733.320000px;}
.h5_c01006{height:13.200073px;}
.h6_c01006{height:43.804688px;}
.h4_c01006{height:79.765137px;}
.h3_c01006{height:91.160156px;}
.h2_c01006{height:101.825684px;}
.h0_c01006{height:781.350000px;}
.h1_c01006{height:781.500000px;}
.w2_c01006{width:104.875500px;}
.w1_c01006{width:501.000000px;}
.w0_c01006{width:501.150000px;}
.x0_c01006{left:0.000000px;}
.x8_c01006{left:22.200000px;}
.x7_c01006{left:23.850000px;}
.x6_c01006{left:26.250000px;}
.x5_c01006{left:27.600000px;}
.x3_c01006{left:28.950000px;}
.x2_c01006{left:30.000000px;}
.x4_c01006{left:31.050000px;}
.x1_c01006{left:143.100000px;}
.xa_c01006{left:202.389267px;}
.x9_c01006{left:256.500000px;}
@media print{
.v0_c01006{vertical-align:0.000000pt;}
.ls2_c01006{letter-spacing:0.000000pt;}
.ls1_c01006{letter-spacing:0.298667pt;}
.ls3_c01006{letter-spacing:2.666667pt;}
.ls0_c01006{letter-spacing:66.133333pt;}
.ws0_c01006{word-spacing:-35.650667pt;}
.ws1_c01006{word-spacing:0.000000pt;}
._13_c01006{margin-left:-15.168000pt;}
._16_c01006{margin-left:-12.040000pt;}
._12_c01006{margin-left:-11.136000pt;}
._11_c01006{margin-left:-9.536000pt;}
._10_c01006{margin-left:-8.344000pt;}
._b_c01006{margin-left:-6.592000pt;}
._c_c01006{margin-left:-5.568000pt;}
._9_c01006{margin-left:-4.672000pt;}
._8_c01006{margin-left:-2.944000pt;}
._4_c01006{margin-left:-1.920000pt;}
._a_c01006{margin-left:-0.896000pt;}
._6_c01006{width:1.376000pt;}
._5_c01006{width:2.378667pt;}
._7_c01006{width:3.648000pt;}
._d_c01006{width:4.842667pt;}
._2_c01006{width:5.877333pt;}
._f_c01006{width:7.296000pt;}
._1_c01006{width:9.357333pt;}
._14_c01006{width:10.330667pt;}
._3_c01006{width:11.445333pt;}
._e_c01006{width:13.621333pt;}
._0_c01006{width:14.848000pt;}
._15_c01006{width:72.778667pt;}
._17_c01006{width:178.528000pt;}
.fs4_c01006{font-size:42.666667pt;}
.fs1_c01006{font-size:53.333333pt;}
.fs3_c01006{font-size:56.000000pt;}
.fs2_c01006{font-size:64.000000pt;}
.fs0_c01006{font-size:77.333333pt;}
.y0_c01006{bottom:0.000000pt;}
.y1f_c01006{bottom:2.760000pt;}
.y1e_c01006{bottom:6.425217pt;}
.y1d_c01006{bottom:43.840000pt;}
.y1c_c01006{bottom:68.106667pt;}
.y1b_c01006{bottom:90.640000pt;}
.y1a_c01006{bottom:112.773333pt;}
.y19_c01006{bottom:134.373333pt;}
.y18_c01006{bottom:156.640000pt;}
.y17_c01006{bottom:178.240000pt;}
.y16_c01006{bottom:199.440000pt;}
.y15_c01006{bottom:221.040000pt;}
.y14_c01006{bottom:243.040000pt;}
.y13_c01006{bottom:264.506667pt;}
.y12_c01006{bottom:283.840000pt;}
.y11_c01006{bottom:305.973333pt;}
.y10_c01006{bottom:326.640000pt;}
.yf_c01006{bottom:348.640000pt;}
.ye_c01006{bottom:369.840000pt;}
.yd_c01006{bottom:391.440000pt;}
.yc_c01006{bottom:413.306667pt;}
.yb_c01006{bottom:434.906667pt;}
.ya_c01006{bottom:456.640000pt;}
.y9_c01006{bottom:478.106667pt;}
.y8_c01006{bottom:500.373333pt;}
.y7_c01006{bottom:521.706667pt;}
.y6_c01006{bottom:543.306667pt;}
.y5_c01006{bottom:564.906667pt;}
.y4_c01006{bottom:586.106667pt;}
.y3_c01006{bottom:608.640000pt;}
.y2_c01006{bottom:629.973333pt;}
.y1_c01006{bottom:651.840000pt;}
.h5_c01006{height:11.733399pt;}
.h6_c01006{height:38.937500pt;}
.h4_c01006{height:70.902344pt;}
.h3_c01006{height:81.031250pt;}
.h2_c01006{height:90.511719pt;}
.h0_c01006{height:694.533333pt;}
.h1_c01006{height:694.666667pt;}
.w2_c01006{width:93.222667pt;}
.w1_c01006{width:445.333333pt;}
.w0_c01006{width:445.466667pt;}
.x0_c01006{left:0.000000pt;}
.x8_c01006{left:19.733333pt;}
.x7_c01006{left:21.200000pt;}
.x6_c01006{left:23.333333pt;}
.x5_c01006{left:24.533333pt;}
.x3_c01006{left:25.733333pt;}
.x2_c01006{left:26.666667pt;}
.x4_c01006{left:27.600000pt;}
.x1_c01006{left:127.200000pt;}
.xa_c01006{left:179.901571pt;}
.x9_c01006{left:228.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_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_273b603356b38ca3e30d7df8.woff2')format("woff");}.ff1_c01007{font-family:ff1_c01007;line-height:1.480469;font-style:normal;font-weight:normal;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_90b30433ff6b05a87b43b919.woff2')format("woff");}.ff2_c01007{font-family:ff2_c01007;line-height:1.568848;font-style:normal;font-weight:normal;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_f20e5b0015becee0ed3048a5.woff2')format("woff");}.ff3_c01007{font-family:ff3_c01007;line-height:1.568848;font-style:normal;font-weight:normal;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_eca5a64db8d4edf9af90ce96.woff2')format("woff");}.ff4_c01007{font-family:ff4_c01007;line-height:1.575000;font-style:normal;font-weight:normal;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_7a1d43b5864877c84d43ec42.woff2')format("woff");}.ff5_c01007{font-family:ff5_c01007;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01007;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01007{font-family:ff6_c01007;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01007{vertical-align:0.000000px;}
.ls3_c01007{letter-spacing:-3.000000px;}
.ls2_c01007{letter-spacing:0.000000px;}
.ls1_c01007{letter-spacing:1.602000px;}
.ls0_c01007{letter-spacing:3.000000px;}
.ls4_c01007{letter-spacing:6.000000px;}
.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;}
}
.ws2_c01007{word-spacing:-50.430000px;}
.ws0_c01007{word-spacing:-27.051000px;}
.ws1_c01007{word-spacing:-17.352000px;}
.ws3_c01007{word-spacing:0.000000px;}
._14_c01007{margin-left:-42.666000px;}
._e_c01007{margin-left:-18.228000px;}
._15_c01007{margin-left:-16.992000px;}
._a_c01007{margin-left:-15.768000px;}
._8_c01007{margin-left:-14.604000px;}
._c_c01007{margin-left:-13.176000px;}
._b_c01007{margin-left:-11.421000px;}
._d_c01007{margin-left:-9.765000px;}
._9_c01007{margin-left:-8.214000px;}
._6_c01007{margin-left:-6.891000px;}
._11_c01007{margin-left:-5.883000px;}
._1_c01007{margin-left:-4.791000px;}
._3_c01007{margin-left:-3.588000px;}
._2_c01007{margin-left:-1.656000px;}
._0_c01007{width:2.001000px;}
._4_c01007{width:3.351000px;}
._5_c01007{width:5.007000px;}
._7_c01007{width:6.600000px;}
._f_c01007{width:8.535000px;}
._12_c01007{width:9.876000px;}
._13_c01007{width:11.559000px;}
._19_c01007{width:12.630000px;}
._10_c01007{width:13.674000px;}
._16_c01007{width:16.062000px;}
._18_c01007{width:17.820000px;}
._17_c01007{width:18.936000px;}
.fc2_c01007{color:transparent;}
.fc1_c01007{color:rgb(128,128,128);}
.fc0_c01007{color:rgb(0,0,0);}
.fs5_c01007{font-size:36.000000px;}
.fs6_c01007{font-size:48.000000px;}
.fs3_c01007{font-size:51.000000px;}
.fs2_c01007{font-size:63.000000px;}
.fs1_c01007{font-size:72.000000px;}
.fs4_c01007{font-size:78.000000px;}
.fs0_c01007{font-size:87.000000px;}
.y0_c01007{bottom:0.000000px;}
.y1e_c01007{bottom:3.105000px;}
.y1d_c01007{bottom:7.228363px;}
.y1c_c01007{bottom:58.800000px;}
.y1b_c01007{bottom:86.100000px;}
.y1a_c01007{bottom:111.450000px;}
.y19_c01007{bottom:135.300000px;}
.y18_c01007{bottom:161.100000px;}
.y17_c01007{bottom:184.950000px;}
.y16_c01007{bottom:210.000000px;}
.y15_c01007{bottom:235.650000px;}
.y14_c01007{bottom:259.500000px;}
.y13_c01007{bottom:284.850000px;}
.y12_c01007{bottom:310.200000px;}
.y11_c01007{bottom:332.400000px;}
.y10_c01007{bottom:359.100000px;}
.yf_c01007{bottom:381.750000px;}
.ye_c01007{bottom:407.100000px;}
.yd_c01007{bottom:431.400000px;}
.yc_c01007{bottom:455.400000px;}
.yb_c01007{bottom:480.600000px;}
.ya_c01007{bottom:504.600000px;}
.y9_c01007{bottom:528.300000px;}
.y8_c01007{bottom:552.600000px;}
.y7_c01007{bottom:577.800000px;}
.y6_c01007{bottom:601.050000px;}
.y5_c01007{bottom:626.700000px;}
.y4_c01007{bottom:651.150000px;}
.y3_c01007{bottom:675.450000px;}
.y2_c01007{bottom:700.650000px;}
.y1_c01007{bottom:725.850000px;}
.h5_c01007{height:13.200074px;}
.h6_c01007{height:43.804688px;}
.h3_c01007{height:91.160156px;}
.h4_c01007{height:98.756836px;}
.h2_c01007{height:101.825684px;}
.h0_c01007{height:770.850000px;}
.h1_c01007{height:771.000000px;}
.w2_c01007{width:104.875500px;}
.w0_c01007{width:501.675000px;}
.w1_c01007{width:501.750000px;}
.x0_c01007{left:0.000000px;}
.x7_c01007{left:91.800000px;}
.x6_c01007{left:96.300000px;}
.x5_c01007{left:97.500000px;}
.x4_c01007{left:99.150000px;}
.x3_c01007{left:100.200000px;}
.x2_c01007{left:101.550000px;}
.x8_c01007{left:202.651749px;}
.x1_c01007{left:223.350000px;}
@media print{
.v0_c01007{vertical-align:0.000000pt;}
.ls3_c01007{letter-spacing:-2.666667pt;}
.ls2_c01007{letter-spacing:0.000000pt;}
.ls1_c01007{letter-spacing:1.424000pt;}
.ls0_c01007{letter-spacing:2.666667pt;}
.ls4_c01007{letter-spacing:5.333333pt;}
.ws2_c01007{word-spacing:-44.826667pt;}
.ws0_c01007{word-spacing:-24.045333pt;}
.ws1_c01007{word-spacing:-15.424000pt;}
.ws3_c01007{word-spacing:0.000000pt;}
._14_c01007{margin-left:-37.925333pt;}
._e_c01007{margin-left:-16.202667pt;}
._15_c01007{margin-left:-15.104000pt;}
._a_c01007{margin-left:-14.016000pt;}
._8_c01007{margin-left:-12.981333pt;}
._c_c01007{margin-left:-11.712000pt;}
._b_c01007{margin-left:-10.152000pt;}
._d_c01007{margin-left:-8.680000pt;}
._9_c01007{margin-left:-7.301333pt;}
._6_c01007{margin-left:-6.125333pt;}
._11_c01007{margin-left:-5.229333pt;}
._1_c01007{margin-left:-4.258667pt;}
._3_c01007{margin-left:-3.189333pt;}
._2_c01007{margin-left:-1.472000pt;}
._0_c01007{width:1.778667pt;}
._4_c01007{width:2.978667pt;}
._5_c01007{width:4.450667pt;}
._7_c01007{width:5.866667pt;}
._f_c01007{width:7.586667pt;}
._12_c01007{width:8.778667pt;}
._13_c01007{width:10.274667pt;}
._19_c01007{width:11.226667pt;}
._10_c01007{width:12.154667pt;}
._16_c01007{width:14.277333pt;}
._18_c01007{width:15.840000pt;}
._17_c01007{width:16.832000pt;}
.fs5_c01007{font-size:32.000000pt;}
.fs6_c01007{font-size:42.666667pt;}
.fs3_c01007{font-size:45.333333pt;}
.fs2_c01007{font-size:56.000000pt;}
.fs1_c01007{font-size:64.000000pt;}
.fs4_c01007{font-size:69.333333pt;}
.fs0_c01007{font-size:77.333333pt;}
.y0_c01007{bottom:0.000000pt;}
.y1e_c01007{bottom:2.760000pt;}
.y1d_c01007{bottom:6.425212pt;}
.y1c_c01007{bottom:52.266667pt;}
.y1b_c01007{bottom:76.533333pt;}
.y1a_c01007{bottom:99.066667pt;}
.y19_c01007{bottom:120.266667pt;}
.y18_c01007{bottom:143.200000pt;}
.y17_c01007{bottom:164.400000pt;}
.y16_c01007{bottom:186.666667pt;}
.y15_c01007{bottom:209.466667pt;}
.y14_c01007{bottom:230.666667pt;}
.y13_c01007{bottom:253.200000pt;}
.y12_c01007{bottom:275.733333pt;}
.y11_c01007{bottom:295.466667pt;}
.y10_c01007{bottom:319.200000pt;}
.yf_c01007{bottom:339.333333pt;}
.ye_c01007{bottom:361.866667pt;}
.yd_c01007{bottom:383.466667pt;}
.yc_c01007{bottom:404.800000pt;}
.yb_c01007{bottom:427.200000pt;}
.ya_c01007{bottom:448.533333pt;}
.y9_c01007{bottom:469.600000pt;}
.y8_c01007{bottom:491.200000pt;}
.y7_c01007{bottom:513.600000pt;}
.y6_c01007{bottom:534.266667pt;}
.y5_c01007{bottom:557.066667pt;}
.y4_c01007{bottom:578.800000pt;}
.y3_c01007{bottom:600.400000pt;}
.y2_c01007{bottom:622.800000pt;}
.y1_c01007{bottom:645.200000pt;}
.h5_c01007{height:11.733399pt;}
.h6_c01007{height:38.937500pt;}
.h3_c01007{height:81.031250pt;}
.h4_c01007{height:87.783854pt;}
.h2_c01007{height:90.511719pt;}
.h0_c01007{height:685.200000pt;}
.h1_c01007{height:685.333333pt;}
.w2_c01007{width:93.222667pt;}
.w0_c01007{width:445.933333pt;}
.w1_c01007{width:446.000000pt;}
.x0_c01007{left:0.000000pt;}
.x7_c01007{left:81.600000pt;}
.x6_c01007{left:85.600000pt;}
.x5_c01007{left:86.666667pt;}
.x4_c01007{left:88.133333pt;}
.x3_c01007{left:89.066667pt;}
.x2_c01007{left:90.266667pt;}
.x8_c01007{left:180.134888pt;}
.x1_c01007{left:198.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0ebe1ecca8738e4ce24959db.woff2')format("woff");}.ff1_c01008{font-family:ff1_c01008;line-height:1.480469;font-style:normal;font-weight:normal;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_00e3f8645a766e1169331ea4.woff2')format("woff");}.ff2_c01008{font-family:ff2_c01008;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01008{font-family:ff3_c01008;line-height:1.219238;font-style: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);}
.v0_c01008{vertical-align:0.000000px;}
.ls0_c01008{letter-spacing:0.000000px;}
.ls1_c01008{letter-spacing:3.000000px;}
.ls2_c01008{letter-spacing:6.000000px;}
.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:0.000000px;}
._6_c01008{margin-left:-20.184000px;}
._7_c01008{margin-left:-18.531000px;}
._1c_c01008{margin-left:-15.408000px;}
._2_c01008{margin-left:-8.961000px;}
._a_c01008{margin-left:-7.047000px;}
._12_c01008{margin-left:-6.030000px;}
._8_c01008{margin-left:-4.698000px;}
._4_c01008{margin-left:-3.045000px;}
._3_c01008{margin-left:-1.392000px;}
._b_c01008{width:1.614000px;}
._5_c01008{width:3.045000px;}
._13_c01008{width:4.056000px;}
._1_c01008{width:5.133000px;}
._11_c01008{width:6.408000px;}
._d_c01008{width:7.539000px;}
._0_c01008{width:8.613000px;}
._15_c01008{width:10.497000px;}
._c_c01008{width:11.589000px;}
._f_c01008{width:12.804000px;}
._e_c01008{width:15.012000px;}
._14_c01008{width:17.478000px;}
._16_c01008{width:18.726000px;}
._19_c01008{width:23.022000px;}
._18_c01008{width:24.192000px;}
._1a_c01008{width:26.862000px;}
._10_c01008{width:29.970000px;}
._1b_c01008{width:31.563000px;}
._17_c01008{width:38.034000px;}
._1d_c01008{width:254.736000px;}
._9_c01008{width:376.884000px;}
.fc2_c01008{color:transparent;}
.fc1_c01008{color:rgb(128,128,128);}
.fc0_c01008{color:rgb(0,0,0);}
.fs3_c01008{font-size:48.000000px;}
.fs1_c01008{font-size:72.000000px;}
.fs2_c01008{font-size:78.000000px;}
.fs0_c01008{font-size:87.000000px;}
.y0_c01008{bottom:0.000000px;}
.y1e_c01008{bottom:3.105000px;}
.y1d_c01008{bottom:7.228363px;}
.y1c_c01008{bottom:33.750000px;}
.y1b_c01008{bottom:86.100000px;}
.y1a_c01008{bottom:113.850000px;}
.y19_c01008{bottom:138.450000px;}
.y18_c01008{bottom:163.350000px;}
.y17_c01008{bottom:189.300000px;}
.y16_c01008{bottom:213.600000px;}
.y15_c01008{bottom:237.900000px;}
.y14_c01008{bottom:259.500000px;}
.y13_c01008{bottom:281.850000px;}
.y12_c01008{bottom:310.500000px;}
.y11_c01008{bottom:333.750000px;}
.y10_c01008{bottom:357.750000px;}
.yf_c01008{bottom:381.150000px;}
.ye_c01008{bottom:405.450000px;}
.yd_c01008{bottom:430.350000px;}
.yc_c01008{bottom:454.950000px;}
.yb_c01008{bottom:479.250000px;}
.ya_c01008{bottom:504.300000px;}
.y9_c01008{bottom:528.600000px;}
.y8_c01008{bottom:553.200000px;}
.y7_c01008{bottom:577.800000px;}
.y6_c01008{bottom:602.400000px;}
.y5_c01008{bottom:626.850000px;}
.y4_c01008{bottom:651.000000px;}
.y3_c01008{bottom:675.450000px;}
.y2_c01008{bottom:700.650000px;}
.y1_c01008{bottom:726.000000px;}
.h4_c01008{height:13.200074px;}
.h5_c01008{height:43.804688px;}
.h2_c01008{height:91.160156px;}
.h3_c01008{height:98.756836px;}
.h1_c01008{height:101.825684px;}
.h0_c01008{height:776.250000px;}
.w2_c01008{width:104.875500px;}
.w1_c01008{width:534.750000px;}
.w0_c01008{width:534.900000px;}
.x0_c01008{left:0.000000px;}
.x8_c01008{left:34.050000px;}
.x7_c01008{left:35.100000px;}
.x6_c01008{left:36.150000px;}
.x5_c01008{left:37.200000px;}
.x4_c01008{left:38.250000px;}
.x2_c01008{left:39.600000px;}
.x3_c01008{left:62.550000px;}
.x1_c01008{left:151.950000px;}
.xa_c01008{left:219.264267px;}
.x9_c01008{left:257.550000px;}
@media print{
.v0_c01008{vertical-align:0.000000pt;}
.ls0_c01008{letter-spacing:0.000000pt;}
.ls1_c01008{letter-spacing:2.666667pt;}
.ls2_c01008{letter-spacing:5.333333pt;}
.ws0_c01008{word-spacing:0.000000pt;}
._6_c01008{margin-left:-17.941333pt;}
._7_c01008{margin-left:-16.472000pt;}
._1c_c01008{margin-left:-13.696000pt;}
._2_c01008{margin-left:-7.965333pt;}
._a_c01008{margin-left:-6.264000pt;}
._12_c01008{margin-left:-5.360000pt;}
._8_c01008{margin-left:-4.176000pt;}
._4_c01008{margin-left:-2.706667pt;}
._3_c01008{margin-left:-1.237333pt;}
._b_c01008{width:1.434667pt;}
._5_c01008{width:2.706667pt;}
._13_c01008{width:3.605333pt;}
._1_c01008{width:4.562667pt;}
._11_c01008{width:5.696000pt;}
._d_c01008{width:6.701333pt;}
._0_c01008{width:7.656000pt;}
._15_c01008{width:9.330667pt;}
._c_c01008{width:10.301333pt;}
._f_c01008{width:11.381333pt;}
._e_c01008{width:13.344000pt;}
._14_c01008{width:15.536000pt;}
._16_c01008{width:16.645333pt;}
._19_c01008{width:20.464000pt;}
._18_c01008{width:21.504000pt;}
._1a_c01008{width:23.877333pt;}
._10_c01008{width:26.640000pt;}
._1b_c01008{width:28.056000pt;}
._17_c01008{width:33.808000pt;}
._1d_c01008{width:226.432000pt;}
._9_c01008{width:335.008000pt;}
.fs3_c01008{font-size:42.666667pt;}
.fs1_c01008{font-size:64.000000pt;}
.fs2_c01008{font-size:69.333333pt;}
.fs0_c01008{font-size:77.333333pt;}
.y0_c01008{bottom:0.000000pt;}
.y1e_c01008{bottom:2.760000pt;}
.y1d_c01008{bottom:6.425212pt;}
.y1c_c01008{bottom:30.000000pt;}
.y1b_c01008{bottom:76.533333pt;}
.y1a_c01008{bottom:101.200000pt;}
.y19_c01008{bottom:123.066667pt;}
.y18_c01008{bottom:145.200000pt;}
.y17_c01008{bottom:168.266667pt;}
.y16_c01008{bottom:189.866667pt;}
.y15_c01008{bottom:211.466667pt;}
.y14_c01008{bottom:230.666667pt;}
.y13_c01008{bottom:250.533333pt;}
.y12_c01008{bottom:276.000000pt;}
.y11_c01008{bottom:296.666667pt;}
.y10_c01008{bottom:318.000000pt;}
.yf_c01008{bottom:338.800000pt;}
.ye_c01008{bottom:360.400000pt;}
.yd_c01008{bottom:382.533333pt;}
.yc_c01008{bottom:404.400000pt;}
.yb_c01008{bottom:426.000000pt;}
.ya_c01008{bottom:448.266667pt;}
.y9_c01008{bottom:469.866667pt;}
.y8_c01008{bottom:491.733333pt;}
.y7_c01008{bottom:513.600000pt;}
.y6_c01008{bottom:535.466667pt;}
.y5_c01008{bottom:557.200000pt;}
.y4_c01008{bottom:578.666667pt;}
.y3_c01008{bottom:600.400000pt;}
.y2_c01008{bottom:622.800000pt;}
.y1_c01008{bottom:645.333333pt;}
.h4_c01008{height:11.733399pt;}
.h5_c01008{height:38.937500pt;}
.h2_c01008{height:81.031250pt;}
.h3_c01008{height:87.783854pt;}
.h1_c01008{height:90.511719pt;}
.h0_c01008{height:690.000000pt;}
.w2_c01008{width:93.222667pt;}
.w1_c01008{width:475.333333pt;}
.w0_c01008{width:475.466667pt;}
.x0_c01008{left:0.000000pt;}
.x8_c01008{left:30.266667pt;}
.x7_c01008{left:31.200000pt;}
.x6_c01008{left:32.133333pt;}
.x5_c01008{left:33.066667pt;}
.x4_c01008{left:34.000000pt;}
.x2_c01008{left:35.200000pt;}
.x3_c01008{left:55.600000pt;}
.x1_c01008{left:135.066667pt;}
.xa_c01008{left:194.901571pt;}
.x9_c01008{left:228.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8f9c01ddb4e7bf8836cf351e.woff2')format("woff");}.ff1_c01009{font-family:ff1_c01009;line-height:1.284180;font-style:normal;font-weight:normal;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_b427f658c38e506b975e5b43.woff2')format("woff");}.ff2_c01009{font-family:ff2_c01009;line-height:1.568848;font-style:normal;font-weight:normal;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_9a8ab91403958ac0856f4aca.woff2')format("woff");}.ff3_c01009{font-family:ff3_c01009;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01009{font-family:ff4_c01009;line-height:1.219238;font-style: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;}
.ls3_c01009{letter-spacing:-3.000000px;}
.ls2_c01009{letter-spacing:0.000000px;}
.ls1_c01009{letter-spacing:3.000000px;}
.ls0_c01009{letter-spacing:52.488000px;}
.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;}
}
.ws3_c01009{word-spacing:-69.840000px;}
.ws1_c01009{word-spacing:-17.352000px;}
.ws0_c01009{word-spacing:-0.582000px;}
.ws4_c01009{word-spacing:0.000000px;}
.ws2_c01009{word-spacing:39.528000px;}
._f_c01009{margin-left:-16.920000px;}
._1b_c01009{margin-left:-15.528000px;}
._1a_c01009{margin-left:-14.352000px;}
._15_c01009{margin-left:-13.218000px;}
._13_c01009{margin-left:-12.021000px;}
._12_c01009{margin-left:-9.792000px;}
._11_c01009{margin-left:-8.712000px;}
._8_c01009{margin-left:-6.972000px;}
._7_c01009{margin-left:-5.088000px;}
._6_c01009{margin-left:-4.008000px;}
._4_c01009{margin-left:-2.520000px;}
._5_c01009{margin-left:-1.344000px;}
._3_c01009{width:1.176000px;}
._9_c01009{width:2.256000px;}
._1_c01009{width:3.276000px;}
._2_c01009{width:5.124000px;}
._14_c01009{width:6.552000px;}
._b_c01009{width:7.776000px;}
._0_c01009{width:8.988000px;}
._d_c01009{width:10.536000px;}
._c_c01009{width:12.120000px;}
._19_c01009{width:13.200000px;}
._a_c01009{width:16.368000px;}
._10_c01009{width:22.824000px;}
._17_c01009{width:70.392000px;}
._16_c01009{width:92.376000px;}
._e_c01009{width:120.168000px;}
._18_c01009{width:152.820000px;}
._1c_c01009{width:490.113000px;}
.fc2_c01009{color:transparent;}
.fc1_c01009{color:rgb(128,128,128);}
.fc0_c01009{color:rgb(0,0,0);}
.fs5_c01009{font-size:48.000000px;}
.fs3_c01009{font-size:63.000000px;}
.fs2_c01009{font-size:66.000000px;}
.fs1_c01009{font-size:72.000000px;}
.fs0_c01009{font-size:84.000000px;}
.fs4_c01009{font-size:93.000000px;}
.y0_c01009{bottom:0.000000px;}
.y1e_c01009{bottom:3.105000px;}
.y1d_c01009{bottom:7.228357px;}
.y1c_c01009{bottom:69.180000px;}
.y1b_c01009{bottom:100.230000px;}
.y1a_c01009{bottom:124.830000px;}
.y19_c01009{bottom:145.830000px;}
.y18_c01009{bottom:172.230000px;}
.y17_c01009{bottom:196.530000px;}
.y16_c01009{bottom:221.130000px;}
.y15_c01009{bottom:245.730000px;}
.y14_c01009{bottom:270.330000px;}
.y13_c01009{bottom:294.630000px;}
.y12_c01009{bottom:319.680000px;}
.y11_c01009{bottom:343.980000px;}
.y10_c01009{bottom:366.930000px;}
.yf_c01009{bottom:389.580000px;}
.ye_c01009{bottom:412.080000px;}
.yd_c01009{bottom:439.530000px;}
.yc_c01009{bottom:465.480000px;}
.yb_c01009{bottom:489.480000px;}
.ya_c01009{bottom:513.780000px;}
.y9_c01009{bottom:537.030000px;}
.y8_c01009{bottom:562.680000px;}
.y7_c01009{bottom:586.680000px;}
.y6_c01009{bottom:611.880000px;}
.y5_c01009{bottom:635.580000px;}
.y4_c01009{bottom:660.780000px;}
.y3_c01009{bottom:685.230000px;}
.y2_c01009{bottom:709.380000px;}
.y1_c01009{bottom:736.080000px;}
.h5_c01009{height:13.200074px;}
.h6_c01009{height:43.804688px;}
.h2_c01009{height:82.400391px;}
.h3_c01009{height:91.160156px;}
.h4_c01009{height:117.748535px;}
.h1_c01009{height:783.000000px;}
.h0_c01009{height:783.300000px;}
.w2_c01009{width:104.875500px;}
.w1_c01009{width:510.750000px;}
.w0_c01009{width:510.825000px;}
.x0_c01009{left:0.000000px;}
.x4_c01009{left:28.050000px;}
.x5_c01009{left:29.400000px;}
.x6_c01009{left:73.650000px;}
.x2_c01009{left:103.950000px;}
.x3_c01009{left:105.300000px;}
.x8_c01009{left:106.350000px;}
.x7_c01009{left:107.550000px;}
.x9_c01009{left:207.226730px;}
.x1_c01009{left:221.400000px;}
@media print{
.v0_c01009{vertical-align:0.000000pt;}
.ls3_c01009{letter-spacing:-2.666667pt;}
.ls2_c01009{letter-spacing:0.000000pt;}
.ls1_c01009{letter-spacing:2.666667pt;}
.ls0_c01009{letter-spacing:46.656000pt;}
.ws3_c01009{word-spacing:-62.080000pt;}
.ws1_c01009{word-spacing:-15.424000pt;}
.ws0_c01009{word-spacing:-0.517333pt;}
.ws4_c01009{word-spacing:0.000000pt;}
.ws2_c01009{word-spacing:35.136000pt;}
._f_c01009{margin-left:-15.040000pt;}
._1b_c01009{margin-left:-13.802667pt;}
._1a_c01009{margin-left:-12.757333pt;}
._15_c01009{margin-left:-11.749333pt;}
._13_c01009{margin-left:-10.685333pt;}
._12_c01009{margin-left:-8.704000pt;}
._11_c01009{margin-left:-7.744000pt;}
._8_c01009{margin-left:-6.197333pt;}
._7_c01009{margin-left:-4.522667pt;}
._6_c01009{margin-left:-3.562667pt;}
._4_c01009{margin-left:-2.240000pt;}
._5_c01009{margin-left:-1.194667pt;}
._3_c01009{width:1.045333pt;}
._9_c01009{width:2.005333pt;}
._1_c01009{width:2.912000pt;}
._2_c01009{width:4.554667pt;}
._14_c01009{width:5.824000pt;}
._b_c01009{width:6.912000pt;}
._0_c01009{width:7.989333pt;}
._d_c01009{width:9.365333pt;}
._c_c01009{width:10.773333pt;}
._19_c01009{width:11.733333pt;}
._a_c01009{width:14.549333pt;}
._10_c01009{width:20.288000pt;}
._17_c01009{width:62.570667pt;}
._16_c01009{width:82.112000pt;}
._e_c01009{width:106.816000pt;}
._18_c01009{width:135.840000pt;}
._1c_c01009{width:435.656000pt;}
.fs5_c01009{font-size:42.666667pt;}
.fs3_c01009{font-size:56.000000pt;}
.fs2_c01009{font-size:58.666667pt;}
.fs1_c01009{font-size:64.000000pt;}
.fs0_c01009{font-size:74.666667pt;}
.fs4_c01009{font-size:82.666667pt;}
.y0_c01009{bottom:0.000000pt;}
.y1e_c01009{bottom:2.760000pt;}
.y1d_c01009{bottom:6.425206pt;}
.y1c_c01009{bottom:61.493333pt;}
.y1b_c01009{bottom:89.093333pt;}
.y1a_c01009{bottom:110.960000pt;}
.y19_c01009{bottom:129.626667pt;}
.y18_c01009{bottom:153.093333pt;}
.y17_c01009{bottom:174.693333pt;}
.y16_c01009{bottom:196.560000pt;}
.y15_c01009{bottom:218.426667pt;}
.y14_c01009{bottom:240.293333pt;}
.y13_c01009{bottom:261.893333pt;}
.y12_c01009{bottom:284.160000pt;}
.y11_c01009{bottom:305.760000pt;}
.y10_c01009{bottom:326.160000pt;}
.yf_c01009{bottom:346.293333pt;}
.ye_c01009{bottom:366.293333pt;}
.yd_c01009{bottom:390.693333pt;}
.yc_c01009{bottom:413.760000pt;}
.yb_c01009{bottom:435.093333pt;}
.ya_c01009{bottom:456.693333pt;}
.y9_c01009{bottom:477.360000pt;}
.y8_c01009{bottom:500.160000pt;}
.y7_c01009{bottom:521.493333pt;}
.y6_c01009{bottom:543.893333pt;}
.y5_c01009{bottom:564.960000pt;}
.y4_c01009{bottom:587.360000pt;}
.y3_c01009{bottom:609.093333pt;}
.y2_c01009{bottom:630.560000pt;}
.y1_c01009{bottom:654.293333pt;}
.h5_c01009{height:11.733399pt;}
.h6_c01009{height:38.937500pt;}
.h2_c01009{height:73.244792pt;}
.h3_c01009{height:81.031250pt;}
.h4_c01009{height:104.665365pt;}
.h1_c01009{height:696.000000pt;}
.h0_c01009{height:696.266667pt;}
.w2_c01009{width:93.222667pt;}
.w1_c01009{width:454.000000pt;}
.w0_c01009{width:454.066667pt;}
.x0_c01009{left:0.000000pt;}
.x4_c01009{left:24.933333pt;}
.x5_c01009{left:26.133333pt;}
.x6_c01009{left:65.466667pt;}
.x2_c01009{left:92.400000pt;}
.x3_c01009{left:93.600000pt;}
.x8_c01009{left:94.533333pt;}
.x7_c01009{left:95.600000pt;}
.x9_c01009{left:184.201538pt;}
.x1_c01009{left:196.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7d16e44a20aae9c90d7a0b62.woff2')format("woff");}.ff1_c01010{font-family:ff1_c01010;line-height:1.480469;font-style:normal;font-weight:normal;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_d82cf171010ac05310c41291.woff2')format("woff");}.ff2_c01010{font-family:ff2_c01010;line-height:1.568848;font-style:normal;font-weight:normal;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_d12a914ee94a62d6d19fb6ce.woff2')format("woff");}.ff3_c01010{font-family:ff3_c01010;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01010;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01010{font-family:ff4_c01010;line-height:1.219238;font-style: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;}
.ls0_c01010{letter-spacing:0.000000px;}
.ls1_c01010{letter-spacing:3.000000px;}
.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:-40.107000px;}
.ws2_c01010{word-spacing:-37.341000px;}
.ws1_c01010{word-spacing:-33.192000px;}
.ws3_c01010{word-spacing:-18.075000px;}
.ws4_c01010{word-spacing:0.000000px;}
._1a_c01010{margin-left:-23.400000px;}
._4_c01010{margin-left:-14.760000px;}
._12_c01010{margin-left:-12.444000px;}
._15_c01010{margin-left:-11.178000px;}
._5_c01010{margin-left:-9.432000px;}
._6_c01010{margin-left:-7.416000px;}
._8_c01010{margin-left:-6.120000px;}
._a_c01010{margin-left:-4.824000px;}
._d_c01010{margin-left:-3.570000px;}
._9_c01010{margin-left:-2.520000px;}
._7_c01010{margin-left:-1.296000px;}
._1_c01010{width:1.914000px;}
._0_c01010{width:3.828000px;}
._b_c01010{width:5.256000px;}
._3_c01010{width:6.612000px;}
._11_c01010{width:8.583000px;}
._e_c01010{width:10.068000px;}
._16_c01010{width:11.214000px;}
._c_c01010{width:12.624000px;}
._17_c01010{width:13.659000px;}
._10_c01010{width:17.100000px;}
._19_c01010{width:19.449000px;}
._18_c01010{width:20.565000px;}
._f_c01010{width:23.475000px;}
._1c_c01010{width:31.230000px;}
._1d_c01010{width:39.357000px;}
._1e_c01010{width:208.371000px;}
._13_c01010{width:229.908000px;}
._14_c01010{width:263.112000px;}
._2_c01010{width:301.929000px;}
._1b_c01010{width:396.936000px;}
.fc2_c01010{color:transparent;}
.fc1_c01010{color:rgb(128,128,128);}
.fc0_c01010{color:rgb(0,0,0);}
.fs6_c01010{font-size:48.000000px;}
.fs3_c01010{font-size:63.000000px;}
.fs1_c01010{font-size:72.000000px;}
.fs2_c01010{font-size:75.000000px;}
.fs5_c01010{font-size:78.000000px;}
.fs4_c01010{font-size:81.000000px;}
.fs0_c01010{font-size:87.000000px;}
.y0_c01010{bottom:0.000000px;}
.y1f_c01010{bottom:3.105000px;}
.y1e_c01010{bottom:7.228363px;}
.y1d_c01010{bottom:47.550000px;}
.y1c_c01010{bottom:73.200000px;}
.y1b_c01010{bottom:100.950000px;}
.y1a_c01010{bottom:120.150000px;}
.y19_c01010{bottom:149.400000px;}
.y18_c01010{bottom:174.750000px;}
.y17_c01010{bottom:199.350000px;}
.y16_c01010{bottom:224.400000px;}
.y15_c01010{bottom:248.400000px;}
.y14_c01010{bottom:270.600000px;}
.y13_c01010{bottom:297.900000px;}
.y12_c01010{bottom:319.650000px;}
.y11_c01010{bottom:343.500000px;}
.y10_c01010{bottom:367.800000px;}
.yf_c01010{bottom:390.150000px;}
.ye_c01010{bottom:415.050000px;}
.yd_c01010{bottom:439.050000px;}
.yc_c01010{bottom:463.350000px;}
.yb_c01010{bottom:487.950000px;}
.ya_c01010{bottom:513.000000px;}
.y9_c01010{bottom:537.300000px;}
.y8_c01010{bottom:561.900000px;}
.y7_c01010{bottom:586.200000px;}
.y6_c01010{bottom:610.500000px;}
.y5_c01010{bottom:634.800000px;}
.y4_c01010{bottom:659.100000px;}
.y3_c01010{bottom:684.000000px;}
.y2_c01010{bottom:707.700000px;}
.y1_c01010{bottom:732.750000px;}
.h8_c01010{height:13.200074px;}
.h9_c01010{height:43.804688px;}
.h4_c01010{height:73.608398px;}
.h5_c01010{height:79.765137px;}
.h3_c01010{height:91.160156px;}
.h6_c01010{height:94.803223px;}
.h7_c01010{height:94.958496px;}
.h2_c01010{height:110.151855px;}
.h1_c01010{height:774.750000px;}
.h0_c01010{height:774.900000px;}
.w2_c01010{width:104.875500px;}
.w0_c01010{width:514.350000px;}
.w1_c01010{width:514.500000px;}
.x0_c01010{left:0.000000px;}
.x6_c01010{left:30.150000px;}
.x8_c01010{left:32.400000px;}
.x7_c01010{left:33.450000px;}
.x5_c01010{left:35.550000px;}
.x2_c01010{left:36.750000px;}
.x3_c01010{left:37.800000px;}
.x4_c01010{left:39.450000px;}
.x9_c01010{left:109.050000px;}
.xa_c01010{left:134.400000px;}
.x1_c01010{left:163.650000px;}
.xb_c01010{left:208.989258px;}
@media print{
.v0_c01010{vertical-align:0.000000pt;}
.ls0_c01010{letter-spacing:0.000000pt;}
.ls1_c01010{letter-spacing:2.666667pt;}
.ws0_c01010{word-spacing:-35.650667pt;}
.ws2_c01010{word-spacing:-33.192000pt;}
.ws1_c01010{word-spacing:-29.504000pt;}
.ws3_c01010{word-spacing:-16.066667pt;}
.ws4_c01010{word-spacing:0.000000pt;}
._1a_c01010{margin-left:-20.800000pt;}
._4_c01010{margin-left:-13.120000pt;}
._12_c01010{margin-left:-11.061333pt;}
._15_c01010{margin-left:-9.936000pt;}
._5_c01010{margin-left:-8.384000pt;}
._6_c01010{margin-left:-6.592000pt;}
._8_c01010{margin-left:-5.440000pt;}
._a_c01010{margin-left:-4.288000pt;}
._d_c01010{margin-left:-3.173333pt;}
._9_c01010{margin-left:-2.240000pt;}
._7_c01010{margin-left:-1.152000pt;}
._1_c01010{width:1.701333pt;}
._0_c01010{width:3.402667pt;}
._b_c01010{width:4.672000pt;}
._3_c01010{width:5.877333pt;}
._11_c01010{width:7.629333pt;}
._e_c01010{width:8.949333pt;}
._16_c01010{width:9.968000pt;}
._c_c01010{width:11.221333pt;}
._17_c01010{width:12.141333pt;}
._10_c01010{width:15.200000pt;}
._19_c01010{width:17.288000pt;}
._18_c01010{width:18.280000pt;}
._f_c01010{width:20.866667pt;}
._1c_c01010{width:27.760000pt;}
._1d_c01010{width:34.984000pt;}
._1e_c01010{width:185.218667pt;}
._13_c01010{width:204.362667pt;}
._14_c01010{width:233.877333pt;}
._2_c01010{width:268.381333pt;}
._1b_c01010{width:352.832000pt;}
.fs6_c01010{font-size:42.666667pt;}
.fs3_c01010{font-size:56.000000pt;}
.fs1_c01010{font-size:64.000000pt;}
.fs2_c01010{font-size:66.666667pt;}
.fs5_c01010{font-size:69.333333pt;}
.fs4_c01010{font-size:72.000000pt;}
.fs0_c01010{font-size:77.333333pt;}
.y0_c01010{bottom:0.000000pt;}
.y1f_c01010{bottom:2.760000pt;}
.y1e_c01010{bottom:6.425212pt;}
.y1d_c01010{bottom:42.266667pt;}
.y1c_c01010{bottom:65.066667pt;}
.y1b_c01010{bottom:89.733333pt;}
.y1a_c01010{bottom:106.800000pt;}
.y19_c01010{bottom:132.800000pt;}
.y18_c01010{bottom:155.333333pt;}
.y17_c01010{bottom:177.200000pt;}
.y16_c01010{bottom:199.466667pt;}
.y15_c01010{bottom:220.800000pt;}
.y14_c01010{bottom:240.533333pt;}
.y13_c01010{bottom:264.800000pt;}
.y12_c01010{bottom:284.133333pt;}
.y11_c01010{bottom:305.333333pt;}
.y10_c01010{bottom:326.933333pt;}
.yf_c01010{bottom:346.800000pt;}
.ye_c01010{bottom:368.933333pt;}
.yd_c01010{bottom:390.266667pt;}
.yc_c01010{bottom:411.866667pt;}
.yb_c01010{bottom:433.733333pt;}
.ya_c01010{bottom:456.000000pt;}
.y9_c01010{bottom:477.600000pt;}
.y8_c01010{bottom:499.466667pt;}
.y7_c01010{bottom:521.066667pt;}
.y6_c01010{bottom:542.666667pt;}
.y5_c01010{bottom:564.266667pt;}
.y4_c01010{bottom:585.866667pt;}
.y3_c01010{bottom:608.000000pt;}
.y2_c01010{bottom:629.066667pt;}
.y1_c01010{bottom:651.333333pt;}
.h8_c01010{height:11.733399pt;}
.h9_c01010{height:38.937500pt;}
.h4_c01010{height:65.429688pt;}
.h5_c01010{height:70.902344pt;}
.h3_c01010{height:81.031250pt;}
.h6_c01010{height:84.269531pt;}
.h7_c01010{height:84.407552pt;}
.h2_c01010{height:97.912760pt;}
.h1_c01010{height:688.666667pt;}
.h0_c01010{height:688.800000pt;}
.w2_c01010{width:93.222667pt;}
.w0_c01010{width:457.200000pt;}
.w1_c01010{width:457.333333pt;}
.x0_c01010{left:0.000000pt;}
.x6_c01010{left:26.800000pt;}
.x8_c01010{left:28.800000pt;}
.x7_c01010{left:29.733333pt;}
.x5_c01010{left:31.600000pt;}
.x2_c01010{left:32.666667pt;}
.x3_c01010{left:33.600000pt;}
.x4_c01010{left:35.066667pt;}
.x9_c01010{left:96.933333pt;}
.xa_c01010{left:119.466667pt;}
.x1_c01010{left:145.466667pt;}
.xb_c01010{left:185.768229pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ddb8c34d53eb33d39517333f.woff2')format("woff");}.ff1_c01011{font-family:ff1_c01011;line-height:1.480469;font-style:normal;font-weight:normal;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_08a78cccec14011e1fb52201.woff2')format("woff");}.ff2_c01011{font-family:ff2_c01011;line-height:1.568848;font-style:normal;font-weight:normal;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_19a4a5193ede8d846e962336.woff2')format("woff");}.ff3_c01011{font-family:ff3_c01011;line-height:1.575000;font-style:normal;font-weight:normal;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_b74867b7849abe8cee524b7f.woff2')format("woff");}.ff4_c01011{font-family:ff4_c01011;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01011;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c01011{font-family:ff5_c01011;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01011;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01011{font-family:ff6_c01011;line-height:1.219238;font-style: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;}
.ls0_c01011{letter-spacing:0.000000px;}
.ls1_c01011{letter-spacing:3.000000px;}
.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:-40.107000px;}
.ws1_c01011{word-spacing:-33.192000px;}
.ws2_c01011{word-spacing:0.000000px;}
._12_c01011{margin-left:-19.887000px;}
._1a_c01011{margin-left:-15.309000px;}
._10_c01011{margin-left:-13.380000px;}
._d_c01011{margin-left:-11.115000px;}
._11_c01011{margin-left:-9.918000px;}
._c_c01011{margin-left:-8.193000px;}
._b_c01011{margin-left:-6.624000px;}
._5_c01011{margin-left:-5.043000px;}
._9_c01011{margin-left:-3.387000px;}
._1_c01011{margin-left:-2.229000px;}
._4_c01011{margin-left:-1.071000px;}
._0_c01011{width:1.653000px;}
._6_c01011{width:2.742000px;}
._3_c01011{width:3.747000px;}
._2_c01011{width:5.403000px;}
._a_c01011{width:6.912000px;}
._19_c01011{width:7.974000px;}
._13_c01011{width:9.072000px;}
._f_c01011{width:10.080000px;}
._8_c01011{width:12.006000px;}
._16_c01011{width:13.017000px;}
._e_c01011{width:14.511000px;}
._7_c01011{width:17.595000px;}
._17_c01011{width:18.879000px;}
._18_c01011{width:20.838000px;}
._1d_c01011{width:22.491000px;}
._15_c01011{width:30.732000px;}
._1c_c01011{width:204.057000px;}
._14_c01011{width:502.287000px;}
._1b_c01011{width:1011.429000px;}
.fc2_c01011{color:transparent;}
.fc1_c01011{color:rgb(128,128,128);}
.fc0_c01011{color:rgb(0,0,0);}
.fs5_c01011{font-size:48.000000px;}
.fs2_c01011{font-size:63.000000px;}
.fs3_c01011{font-size:66.000000px;}
.fs1_c01011{font-size:72.000000px;}
.fs4_c01011{font-size:81.000000px;}
.fs0_c01011{font-size:87.000000px;}
.y0_c01011{bottom:0.000000px;}
.y1f_c01011{bottom:3.105000px;}
.y1e_c01011{bottom:7.228363px;}
.y1d_c01011{bottom:49.650000px;}
.y1c_c01011{bottom:70.500000px;}
.y1b_c01011{bottom:94.800000px;}
.y1a_c01011{bottom:122.850000px;}
.y19_c01011{bottom:149.400000px;}
.y18_c01011{bottom:170.850000px;}
.y17_c01011{bottom:196.050000px;}
.y16_c01011{bottom:220.950000px;}
.y15_c01011{bottom:244.050000px;}
.y14_c01011{bottom:270.000000px;}
.y13_c01011{bottom:294.750000px;}
.y12_c01011{bottom:319.200000px;}
.y11_c01011{bottom:343.350000px;}
.y10_c01011{bottom:368.850000px;}
.yf_c01011{bottom:392.550000px;}
.ye_c01011{bottom:416.250000px;}
.yd_c01011{bottom:441.150000px;}
.yc_c01011{bottom:466.050000px;}
.yb_c01011{bottom:489.750000px;}
.ya_c01011{bottom:514.050000px;}
.y9_c01011{bottom:538.650000px;}
.y8_c01011{bottom:563.400000px;}
.y7_c01011{bottom:587.550000px;}
.y6_c01011{bottom:612.000000px;}
.y5_c01011{bottom:636.150000px;}
.y4_c01011{bottom:661.500000px;}
.y3_c01011{bottom:686.100000px;}
.y2_c01011{bottom:710.400000px;}
.y1_c01011{bottom:736.350000px;}
.h6_c01011{height:13.200074px;}
.h7_c01011{height:43.804688px;}
.h4_c01011{height:79.765137px;}
.h5_c01011{height:81.632812px;}
.h3_c01011{height:91.160156px;}
.h2_c01011{height:110.151855px;}
.h0_c01011{height:778.950000px;}
.h1_c01011{height:779.250000px;}
.w2_c01011{width:104.875500px;}
.w0_c01011{width:502.200000px;}
.w1_c01011{width:502.500000px;}
.x0_c01011{left:0.000000px;}
.x4_c01011{left:90.900000px;}
.x6_c01011{left:92.550000px;}
.x3_c01011{left:93.600000px;}
.x2_c01011{left:94.950000px;}
.x5_c01011{left:96.150000px;}
.x7_c01011{left:97.500000px;}
.x8_c01011{left:98.550000px;}
.x9_c01011{left:100.200000px;}
.xa_c01011{left:202.914230px;}
.x1_c01011{left:214.200000px;}
@media print{
.v0_c01011{vertical-align:0.000000pt;}
.ls0_c01011{letter-spacing:0.000000pt;}
.ls1_c01011{letter-spacing:2.666667pt;}
.ws0_c01011{word-spacing:-35.650667pt;}
.ws1_c01011{word-spacing:-29.504000pt;}
.ws2_c01011{word-spacing:0.000000pt;}
._12_c01011{margin-left:-17.677333pt;}
._1a_c01011{margin-left:-13.608000pt;}
._10_c01011{margin-left:-11.893333pt;}
._d_c01011{margin-left:-9.880000pt;}
._11_c01011{margin-left:-8.816000pt;}
._c_c01011{margin-left:-7.282667pt;}
._b_c01011{margin-left:-5.888000pt;}
._5_c01011{margin-left:-4.482667pt;}
._9_c01011{margin-left:-3.010667pt;}
._1_c01011{margin-left:-1.981333pt;}
._4_c01011{margin-left:-0.952000pt;}
._0_c01011{width:1.469333pt;}
._6_c01011{width:2.437333pt;}
._3_c01011{width:3.330667pt;}
._2_c01011{width:4.802667pt;}
._a_c01011{width:6.144000pt;}
._19_c01011{width:7.088000pt;}
._13_c01011{width:8.064000pt;}
._f_c01011{width:8.960000pt;}
._8_c01011{width:10.672000pt;}
._16_c01011{width:11.570667pt;}
._e_c01011{width:12.898667pt;}
._7_c01011{width:15.640000pt;}
._17_c01011{width:16.781333pt;}
._18_c01011{width:18.522667pt;}
._1d_c01011{width:19.992000pt;}
._15_c01011{width:27.317333pt;}
._1c_c01011{width:181.384000pt;}
._14_c01011{width:446.477333pt;}
._1b_c01011{width:899.048000pt;}
.fs5_c01011{font-size:42.666667pt;}
.fs2_c01011{font-size:56.000000pt;}
.fs3_c01011{font-size:58.666667pt;}
.fs1_c01011{font-size:64.000000pt;}
.fs4_c01011{font-size:72.000000pt;}
.fs0_c01011{font-size:77.333333pt;}
.y0_c01011{bottom:0.000000pt;}
.y1f_c01011{bottom:2.760000pt;}
.y1e_c01011{bottom:6.425212pt;}
.y1d_c01011{bottom:44.133333pt;}
.y1c_c01011{bottom:62.666667pt;}
.y1b_c01011{bottom:84.266667pt;}
.y1a_c01011{bottom:109.200000pt;}
.y19_c01011{bottom:132.800000pt;}
.y18_c01011{bottom:151.866667pt;}
.y17_c01011{bottom:174.266667pt;}
.y16_c01011{bottom:196.400000pt;}
.y15_c01011{bottom:216.933333pt;}
.y14_c01011{bottom:240.000000pt;}
.y13_c01011{bottom:262.000000pt;}
.y12_c01011{bottom:283.733333pt;}
.y11_c01011{bottom:305.200000pt;}
.y10_c01011{bottom:327.866667pt;}
.yf_c01011{bottom:348.933333pt;}
.ye_c01011{bottom:370.000000pt;}
.yd_c01011{bottom:392.133333pt;}
.yc_c01011{bottom:414.266667pt;}
.yb_c01011{bottom:435.333333pt;}
.ya_c01011{bottom:456.933333pt;}
.y9_c01011{bottom:478.800000pt;}
.y8_c01011{bottom:500.800000pt;}
.y7_c01011{bottom:522.266667pt;}
.y6_c01011{bottom:544.000000pt;}
.y5_c01011{bottom:565.466667pt;}
.y4_c01011{bottom:588.000000pt;}
.y3_c01011{bottom:609.866667pt;}
.y2_c01011{bottom:631.466667pt;}
.y1_c01011{bottom:654.533333pt;}
.h6_c01011{height:11.733399pt;}
.h7_c01011{height:38.937500pt;}
.h4_c01011{height:70.902344pt;}
.h5_c01011{height:72.562500pt;}
.h3_c01011{height:81.031250pt;}
.h2_c01011{height:97.912760pt;}
.h0_c01011{height:692.400000pt;}
.h1_c01011{height:692.666667pt;}
.w2_c01011{width:93.222667pt;}
.w0_c01011{width:446.400000pt;}
.w1_c01011{width:446.666667pt;}
.x0_c01011{left:0.000000pt;}
.x4_c01011{left:80.800000pt;}
.x6_c01011{left:82.266667pt;}
.x3_c01011{left:83.200000pt;}
.x2_c01011{left:84.400000pt;}
.x5_c01011{left:85.466667pt;}
.x7_c01011{left:86.666667pt;}
.x8_c01011{left:87.600000pt;}
.x9_c01011{left:89.066667pt;}
.xa_c01011{left:180.368205pt;}
.x1_c01011{left:190.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_601ff815adff73e05a1d7963.woff2')format("woff");}.ff1_c01012{font-family:ff1_c01012;line-height:1.480469;font-style:normal;font-weight:normal;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_00ed95f16c85aa373ae1c4c7.woff2')format("woff");}.ff2_c01012{font-family:ff2_c01012;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01012;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01012{font-family:ff3_c01012;line-height:1.219238;font-style: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;}
.ls1_c01012{letter-spacing:0.000000px;}
.ls0_c01012{letter-spacing:3.000000px;}
.ls2_c01012{letter-spacing:15.000000px;}
.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:-32.352000px;}
.ws1_c01012{word-spacing:-17.352000px;}
.ws2_c01012{word-spacing:0.000000px;}
._c_c01012{margin-left:-22.479000px;}
._14_c01012{margin-left:-14.151000px;}
._1a_c01012{margin-left:-12.876000px;}
._12_c01012{margin-left:-10.248000px;}
._1_c01012{margin-left:-8.556000px;}
._4_c01012{margin-left:-7.533000px;}
._3_c01012{margin-left:-5.394000px;}
._0_c01012{margin-left:-3.999000px;}
._2_c01012{margin-left:-2.046000px;}
._f_c01012{margin-left:-1.020000px;}
._8_c01012{width:1.080000px;}
._7_c01012{width:2.880000px;}
._6_c01012{width:4.743000px;}
._11_c01012{width:5.907000px;}
._d_c01012{width:7.002000px;}
._13_c01012{width:8.097000px;}
._e_c01012{width:9.216000px;}
._b_c01012{width:11.133000px;}
._9_c01012{width:12.954000px;}
._a_c01012{width:14.070000px;}
._19_c01012{width:15.354000px;}
._18_c01012{width:16.407000px;}
._17_c01012{width:18.342000px;}
._10_c01012{width:25.425000px;}
._15_c01012{width:29.727000px;}
._16_c01012{width:30.993000px;}
._1b_c01012{width:193.917000px;}
._5_c01012{width:298.902000px;}
.fc2_c01012{color:transparent;}
.fc1_c01012{color:rgb(128,128,128);}
.fc0_c01012{color:rgb(0,0,0);}
.fs3_c01012{font-size:48.000000px;}
.fs1_c01012{font-size:72.000000px;}
.fs2_c01012{font-size:87.000000px;}
.fs0_c01012{font-size:93.000000px;}
.y0_c01012{bottom:0.000000px;}
.y1f_c01012{bottom:3.105000px;}
.y1e_c01012{bottom:7.228371px;}
.y1d_c01012{bottom:30.015000px;}
.y1c_c01012{bottom:57.465000px;}
.y1b_c01012{bottom:84.015000px;}
.y1a_c01012{bottom:107.415000px;}
.y19_c01012{bottom:133.365000px;}
.y18_c01012{bottom:157.665000px;}
.y17_c01012{bottom:183.015000px;}
.y16_c01012{bottom:207.315000px;}
.y15_c01012{bottom:231.165000px;}
.y14_c01012{bottom:256.515000px;}
.y13_c01012{bottom:280.515000px;}
.y12_c01012{bottom:305.415000px;}
.y11_c01012{bottom:328.065000px;}
.y10_c01012{bottom:350.415000px;}
.yf_c01012{bottom:375.015000px;}
.ye_c01012{bottom:399.315000px;}
.yd_c01012{bottom:424.965000px;}
.yc_c01012{bottom:448.215000px;}
.yb_c01012{bottom:472.965000px;}
.ya_c01012{bottom:497.265000px;}
.y9_c01012{bottom:521.865000px;}
.y8_c01012{bottom:546.465000px;}
.y7_c01012{bottom:571.065000px;}
.y6_c01012{bottom:595.065000px;}
.y5_c01012{bottom:619.665000px;}
.y4_c01012{bottom:643.665000px;}
.y3_c01012{bottom:669.015000px;}
.y2_c01012{bottom:693.315000px;}
.y1_c01012{bottom:717.315000px;}
.h5_c01012{height:13.200074px;}
.h6_c01012{height:43.804688px;}
.h3_c01012{height:91.160156px;}
.h2_c01012{height:108.848145px;}
.h4_c01012{height:110.151855px;}
.h0_c01012{height:766.275000px;}
.h1_c01012{height:766.500000px;}
.w2_c01012{width:104.875500px;}
.w0_c01012{width:511.125000px;}
.w1_c01012{width:511.500000px;}
.x0_c01012{left:0.000000px;}
.x8_c01012{left:28.650000px;}
.x2_c01012{left:30.000000px;}
.x3_c01012{left:31.500000px;}
.x4_c01012{left:33.750000px;}
.x5_c01012{left:34.800000px;}
.x7_c01012{left:80.700000px;}
.x6_c01012{left:161.550000px;}
.x1_c01012{left:189.450000px;}
.xa_c01012{left:207.376740px;}
.x9_c01012{left:257.850000px;}
@media print{
.v0_c01012{vertical-align:0.000000pt;}
.ls1_c01012{letter-spacing:0.000000pt;}
.ls0_c01012{letter-spacing:2.666667pt;}
.ls2_c01012{letter-spacing:13.333333pt;}
.ws0_c01012{word-spacing:-28.757333pt;}
.ws1_c01012{word-spacing:-15.424000pt;}
.ws2_c01012{word-spacing:0.000000pt;}
._c_c01012{margin-left:-19.981333pt;}
._14_c01012{margin-left:-12.578667pt;}
._1a_c01012{margin-left:-11.445333pt;}
._12_c01012{margin-left:-9.109333pt;}
._1_c01012{margin-left:-7.605333pt;}
._4_c01012{margin-left:-6.696000pt;}
._3_c01012{margin-left:-4.794667pt;}
._0_c01012{margin-left:-3.554667pt;}
._2_c01012{margin-left:-1.818667pt;}
._f_c01012{margin-left:-0.906667pt;}
._8_c01012{width:0.960000pt;}
._7_c01012{width:2.560000pt;}
._6_c01012{width:4.216000pt;}
._11_c01012{width:5.250667pt;}
._d_c01012{width:6.224000pt;}
._13_c01012{width:7.197333pt;}
._e_c01012{width:8.192000pt;}
._b_c01012{width:9.896000pt;}
._9_c01012{width:11.514667pt;}
._a_c01012{width:12.506667pt;}
._19_c01012{width:13.648000pt;}
._18_c01012{width:14.584000pt;}
._17_c01012{width:16.304000pt;}
._10_c01012{width:22.600000pt;}
._15_c01012{width:26.424000pt;}
._16_c01012{width:27.549333pt;}
._1b_c01012{width:172.370667pt;}
._5_c01012{width:265.690667pt;}
.fs3_c01012{font-size:42.666667pt;}
.fs1_c01012{font-size:64.000000pt;}
.fs2_c01012{font-size:77.333333pt;}
.fs0_c01012{font-size:82.666667pt;}
.y0_c01012{bottom:0.000000pt;}
.y1f_c01012{bottom:2.760000pt;}
.y1e_c01012{bottom:6.425219pt;}
.y1d_c01012{bottom:26.680000pt;}
.y1c_c01012{bottom:51.080000pt;}
.y1b_c01012{bottom:74.680000pt;}
.y1a_c01012{bottom:95.480000pt;}
.y19_c01012{bottom:118.546667pt;}
.y18_c01012{bottom:140.146667pt;}
.y17_c01012{bottom:162.680000pt;}
.y16_c01012{bottom:184.280000pt;}
.y15_c01012{bottom:205.480000pt;}
.y14_c01012{bottom:228.013333pt;}
.y13_c01012{bottom:249.346667pt;}
.y12_c01012{bottom:271.480000pt;}
.y11_c01012{bottom:291.613333pt;}
.y10_c01012{bottom:311.480000pt;}
.yf_c01012{bottom:333.346667pt;}
.ye_c01012{bottom:354.946667pt;}
.yd_c01012{bottom:377.746667pt;}
.yc_c01012{bottom:398.413333pt;}
.yb_c01012{bottom:420.413333pt;}
.ya_c01012{bottom:442.013333pt;}
.y9_c01012{bottom:463.880000pt;}
.y8_c01012{bottom:485.746667pt;}
.y7_c01012{bottom:507.613333pt;}
.y6_c01012{bottom:528.946667pt;}
.y5_c01012{bottom:550.813333pt;}
.y4_c01012{bottom:572.146667pt;}
.y3_c01012{bottom:594.680000pt;}
.y2_c01012{bottom:616.280000pt;}
.y1_c01012{bottom:637.613333pt;}
.h5_c01012{height:11.733399pt;}
.h6_c01012{height:38.937500pt;}
.h3_c01012{height:81.031250pt;}
.h2_c01012{height:96.753906pt;}
.h4_c01012{height:97.912760pt;}
.h0_c01012{height:681.133333pt;}
.h1_c01012{height:681.333333pt;}
.w2_c01012{width:93.222667pt;}
.w0_c01012{width:454.333333pt;}
.w1_c01012{width:454.666667pt;}
.x0_c01012{left:0.000000pt;}
.x8_c01012{left:25.466667pt;}
.x2_c01012{left:26.666667pt;}
.x3_c01012{left:28.000000pt;}
.x4_c01012{left:30.000000pt;}
.x5_c01012{left:30.933333pt;}
.x7_c01012{left:71.733333pt;}
.x6_c01012{left:143.600000pt;}
.x1_c01012{left:168.400000pt;}
.xa_c01012{left:184.334880pt;}
.x9_c01012{left:229.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e16b3f5fa998b4e159402a63.woff2')format("woff");}.ff1_c01013{font-family:ff1_c01013;line-height:1.284180;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01013{font-family:ff2_c01013;line-height:1.284668;font-style:normal;font-weight:normal;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_dd3d3b702ad6c2224092ea08.woff2')format("woff");}.ff3_c01013{font-family:ff3_c01013;line-height:1.568848;font-style:normal;font-weight:normal;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_f91411b5df1ec4c3f851e9cb.woff2')format("woff");}.ff4_c01013{font-family:ff4_c01013;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01013;src:url('chunks/assets/font_0f1be55c4a971fb6bae38069.woff2')format("woff");}.ff5_c01013{font-family:ff5_c01013;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01013;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01013{font-family:ff6_c01013;line-height:1.219238;font-style: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;}
.ls2_c01013{letter-spacing:0.000000px;}
.ls0_c01013{letter-spacing:3.000000px;}
.ls1_c01013{letter-spacing:10.188000px;}
.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:-33.192000px;}
.ws1_c01013{word-spacing:-20.352000px;}
.ws2_c01013{word-spacing:0.000000px;}
._16_c01013{margin-left:-37.296000px;}
._14_c01013{margin-left:-28.896000px;}
._19_c01013{margin-left:-14.112000px;}
._12_c01013{margin-left:-12.612000px;}
._d_c01013{margin-left:-10.296000px;}
._10_c01013{margin-left:-8.664000px;}
._b_c01013{margin-left:-7.632000px;}
._9_c01013{margin-left:-6.228000px;}
._6_c01013{margin-left:-4.500000px;}
._7_c01013{margin-left:-3.204000px;}
._3_c01013{margin-left:-1.596000px;}
._1_c01013{width:1.848000px;}
._0_c01013{width:3.528000px;}
._8_c01013{width:4.548000px;}
._13_c01013{width:5.808000px;}
._5_c01013{width:6.912000px;}
._a_c01013{width:8.964000px;}
._e_c01013{width:9.984000px;}
._2_c01013{width:11.004000px;}
._1b_c01013{width:12.090000px;}
._4_c01013{width:13.152000px;}
._c_c01013{width:15.600000px;}
._1e_c01013{width:18.081000px;}
._18_c01013{width:19.131000px;}
._1d_c01013{width:22.008000px;}
._15_c01013{width:24.912000px;}
._1c_c01013{width:28.251000px;}
._17_c01013{width:32.592000px;}
._1a_c01013{width:34.650000px;}
._11_c01013{width:85.116000px;}
._f_c01013{width:134.412000px;}
.fc2_c01013{color:transparent;}
.fc1_c01013{color:rgb(128,128,128);}
.fc0_c01013{color:rgb(0,0,0);}
.fs3_c01013{font-size:48.000000px;}
.fs2_c01013{font-size:63.000000px;}
.fs1_c01013{font-size:72.000000px;}
.fs0_c01013{font-size:84.000000px;}
.y0_c01013{bottom:0.000000px;}
.y1f_c01013{bottom:3.105000px;}
.y1e_c01013{bottom:7.228357px;}
.y1d_c01013{bottom:39.180000px;}
.y1c_c01013{bottom:57.030000px;}
.y1b_c01013{bottom:83.730000px;}
.y1a_c01013{bottom:110.430000px;}
.y19_c01013{bottom:134.280000px;}
.y18_c01013{bottom:157.980000px;}
.y17_c01013{bottom:183.630000px;}
.y16_c01013{bottom:207.330000px;}
.y15_c01013{bottom:232.980000px;}
.y14_c01013{bottom:257.130000px;}
.y13_c01013{bottom:282.480000px;}
.y12_c01013{bottom:306.480000px;}
.y11_c01013{bottom:331.380000px;}
.y10_c01013{bottom:355.680000px;}
.yf_c01013{bottom:379.380000px;}
.ye_c01013{bottom:402.630000px;}
.yd_c01013{bottom:426.930000px;}
.yc_c01013{bottom:450.330000px;}
.yb_c01013{bottom:474.180000px;}
.ya_c01013{bottom:499.830000px;}
.y9_c01013{bottom:523.530000px;}
.y8_c01013{bottom:548.430000px;}
.y7_c01013{bottom:573.480000px;}
.y6_c01013{bottom:597.480000px;}
.y5_c01013{bottom:622.080000px;}
.y4_c01013{bottom:646.380000px;}
.y3_c01013{bottom:671.280000px;}
.y2_c01013{bottom:695.580000px;}
.y1_c01013{bottom:720.930000px;}
.h5_c01013{height:13.200074px;}
.h6_c01013{height:43.804688px;}
.h4_c01013{height:79.765137px;}
.h2_c01013{height:82.441406px;}
.h3_c01013{height:91.160156px;}
.h0_c01013{height:767.100000px;}
.h1_c01013{height:767.250000px;}
.w2_c01013{width:104.875500px;}
.w1_c01013{width:510.750000px;}
.w0_c01013{width:510.825000px;}
.x0_c01013{left:0.000000px;}
.x6_c01013{left:27.300000px;}
.x5_c01013{left:43.950000px;}
.x2_c01013{left:97.950000px;}
.x3_c01013{left:99.600000px;}
.x4_c01013{left:101.250000px;}
.x8_c01013{left:207.226730px;}
.x1_c01013{left:223.650000px;}
.x7_c01013{left:448.200000px;}
@media print{
.v0_c01013{vertical-align:0.000000pt;}
.ls2_c01013{letter-spacing:0.000000pt;}
.ls0_c01013{letter-spacing:2.666667pt;}
.ls1_c01013{letter-spacing:9.056000pt;}
.ws0_c01013{word-spacing:-29.504000pt;}
.ws1_c01013{word-spacing:-18.090667pt;}
.ws2_c01013{word-spacing:0.000000pt;}
._16_c01013{margin-left:-33.152000pt;}
._14_c01013{margin-left:-25.685333pt;}
._19_c01013{margin-left:-12.544000pt;}
._12_c01013{margin-left:-11.210667pt;}
._d_c01013{margin-left:-9.152000pt;}
._10_c01013{margin-left:-7.701333pt;}
._b_c01013{margin-left:-6.784000pt;}
._9_c01013{margin-left:-5.536000pt;}
._6_c01013{margin-left:-4.000000pt;}
._7_c01013{margin-left:-2.848000pt;}
._3_c01013{margin-left:-1.418667pt;}
._1_c01013{width:1.642667pt;}
._0_c01013{width:3.136000pt;}
._8_c01013{width:4.042667pt;}
._13_c01013{width:5.162667pt;}
._5_c01013{width:6.144000pt;}
._a_c01013{width:7.968000pt;}
._e_c01013{width:8.874667pt;}
._2_c01013{width:9.781333pt;}
._1b_c01013{width:10.746667pt;}
._4_c01013{width:11.690667pt;}
._c_c01013{width:13.866667pt;}
._1e_c01013{width:16.072000pt;}
._18_c01013{width:17.005333pt;}
._1d_c01013{width:19.562667pt;}
._15_c01013{width:22.144000pt;}
._1c_c01013{width:25.112000pt;}
._17_c01013{width:28.970667pt;}
._1a_c01013{width:30.800000pt;}
._11_c01013{width:75.658667pt;}
._f_c01013{width:119.477333pt;}
.fs3_c01013{font-size:42.666667pt;}
.fs2_c01013{font-size:56.000000pt;}
.fs1_c01013{font-size:64.000000pt;}
.fs0_c01013{font-size:74.666667pt;}
.y0_c01013{bottom:0.000000pt;}
.y1f_c01013{bottom:2.760000pt;}
.y1e_c01013{bottom:6.425206pt;}
.y1d_c01013{bottom:34.826667pt;}
.y1c_c01013{bottom:50.693333pt;}
.y1b_c01013{bottom:74.426667pt;}
.y1a_c01013{bottom:98.160000pt;}
.y19_c01013{bottom:119.360000pt;}
.y18_c01013{bottom:140.426667pt;}
.y17_c01013{bottom:163.226667pt;}
.y16_c01013{bottom:184.293333pt;}
.y15_c01013{bottom:207.093333pt;}
.y14_c01013{bottom:228.560000pt;}
.y13_c01013{bottom:251.093333pt;}
.y12_c01013{bottom:272.426667pt;}
.y11_c01013{bottom:294.560000pt;}
.y10_c01013{bottom:316.160000pt;}
.yf_c01013{bottom:337.226667pt;}
.ye_c01013{bottom:357.893333pt;}
.yd_c01013{bottom:379.493333pt;}
.yc_c01013{bottom:400.293333pt;}
.yb_c01013{bottom:421.493333pt;}
.ya_c01013{bottom:444.293333pt;}
.y9_c01013{bottom:465.360000pt;}
.y8_c01013{bottom:487.493333pt;}
.y7_c01013{bottom:509.760000pt;}
.y6_c01013{bottom:531.093333pt;}
.y5_c01013{bottom:552.960000pt;}
.y4_c01013{bottom:574.560000pt;}
.y3_c01013{bottom:596.693333pt;}
.y2_c01013{bottom:618.293333pt;}
.y1_c01013{bottom:640.826667pt;}
.h5_c01013{height:11.733399pt;}
.h6_c01013{height:38.937500pt;}
.h4_c01013{height:70.902344pt;}
.h2_c01013{height:73.281250pt;}
.h3_c01013{height:81.031250pt;}
.h0_c01013{height:681.866667pt;}
.h1_c01013{height:682.000000pt;}
.w2_c01013{width:93.222667pt;}
.w1_c01013{width:454.000000pt;}
.w0_c01013{width:454.066667pt;}
.x0_c01013{left:0.000000pt;}
.x6_c01013{left:24.266667pt;}
.x5_c01013{left:39.066667pt;}
.x2_c01013{left:87.066667pt;}
.x3_c01013{left:88.533333pt;}
.x4_c01013{left:90.000000pt;}
.x8_c01013{left:184.201538pt;}
.x1_c01013{left:198.800000pt;}
.x7_c01013{left:398.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b44aea11cc0c9de3622af39a.woff2')format("woff");}.ff1_c01014{font-family:ff1_c01014;line-height:1.480469;font-style:normal;font-weight:normal;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_112349858ea52ad4c39d5a98.woff2')format("woff");}.ff2_c01014{font-family:ff2_c01014;line-height:1.568848;font-style:normal;font-weight:normal;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_a128cc4a3e2fba0494f34a5a.woff2')format("woff");}.ff3_c01014{font-family:ff3_c01014;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01014;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01014{font-family:ff4_c01014;line-height:1.219238;font-style: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:-3.000000px;}
.ls1_c01014{letter-spacing:0.000000px;}
.ls0_c01014{letter-spacing:3.000000px;}
.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:-20.352000px;}
.ws2_c01014{word-spacing:-20.250000px;}
.ws1_c01014{word-spacing:-17.352000px;}
.ws3_c01014{word-spacing:0.000000px;}
._1f_c01014{margin-left:-36.606000px;}
._20_c01014{margin-left:-33.984000px;}
._18_c01014{margin-left:-16.164000px;}
._1c_c01014{margin-left:-14.832000px;}
._1b_c01014{margin-left:-13.524000px;}
._1e_c01014{margin-left:-11.757000px;}
._21_c01014{margin-left:-9.453000px;}
._15_c01014{margin-left:-8.022000px;}
._19_c01014{margin-left:-6.459000px;}
._11_c01014{margin-left:-5.145000px;}
._17_c01014{margin-left:-3.885000px;}
._9_c01014{margin-left:-2.865000px;}
._e_c01014{margin-left:-1.368000px;}
._a_c01014{width:1.572000px;}
._c_c01014{width:2.889000px;}
._4_c01014{width:4.320000px;}
._3_c01014{width:5.700000px;}
._22_c01014{width:6.894000px;}
._7_c01014{width:8.100000px;}
._6_c01014{width:9.480000px;}
._5_c01014{width:10.920000px;}
._2_c01014{width:12.540000px;}
._b_c01014{width:14.307000px;}
._1a_c01014{width:15.768000px;}
._1_c01014{width:16.980000px;}
._8_c01014{width:18.540000px;}
._d_c01014{width:21.960000px;}
._10_c01014{width:24.534000px;}
._0_c01014{width:27.360000px;}
._13_c01014{width:28.383000px;}
._14_c01014{width:30.252000px;}
._12_c01014{width:31.686000px;}
._f_c01014{width:35.136000px;}
._16_c01014{width:79.704000px;}
._23_c01014{width:267.687000px;}
._1d_c01014{width:320.916000px;}
.fc2_c01014{color:transparent;}
.fc1_c01014{color:rgb(128,128,128);}
.fc0_c01014{color:rgb(0,0,0);}
.fs6_c01014{font-size:48.000000px;}
.fs0_c01014{font-size:60.000000px;}
.fs5_c01014{font-size:63.000000px;}
.fs4_c01014{font-size:69.000000px;}
.fs2_c01014{font-size:72.000000px;}
.fs3_c01014{font-size:81.000000px;}
.fs1_c01014{font-size:93.000000px;}
.y0_c01014{bottom:0.000000px;}
.y1f_c01014{bottom:3.105000px;}
.y1e_c01014{bottom:7.228357px;}
.y1d_c01014{bottom:32.130000px;}
.y1c_c01014{bottom:59.730000px;}
.y1b_c01014{bottom:85.080000px;}
.y1a_c01014{bottom:110.130000px;}
.y19_c01014{bottom:134.730000px;}
.y18_c01014{bottom:156.930000px;}
.y17_c01014{bottom:183.030000px;}
.y16_c01014{bottom:208.980000px;}
.y15_c01014{bottom:232.980000px;}
.y14_c01014{bottom:257.130000px;}
.y13_c01014{bottom:282.180000px;}
.y12_c01014{bottom:305.880000px;}
.y11_c01014{bottom:328.380000px;}
.y10_c01014{bottom:351.630000px;}
.yf_c01014{bottom:374.730000px;}
.ye_c01014{bottom:399.330000px;}
.yd_c01014{bottom:423.930000px;}
.yc_c01014{bottom:447.630000px;}
.yb_c01014{bottom:472.230000px;}
.ya_c01014{bottom:497.130000px;}
.y9_c01014{bottom:521.130000px;}
.y8_c01014{bottom:545.730000px;}
.y7_c01014{bottom:569.730000px;}
.y6_c01014{bottom:594.330000px;}
.y5_c01014{bottom:618.930000px;}
.y4_c01014{bottom:642.930000px;}
.y3_c01014{bottom:666.930000px;}
.y2_c01014{bottom:691.830000px;}
.y1_c01014{bottom:716.580000px;}
.h5_c01014{height:13.200074px;}
.h6_c01014{height:43.804688px;}
.h4_c01014{height:79.765137px;}
.h3_c01014{height:91.160156px;}
.h2_c01014{height:117.748535px;}
.h1_c01014{height:771.000000px;}
.h0_c01014{height:771.150000px;}
.w2_c01014{width:104.875500px;}
.w1_c01014{width:531.000000px;}
.w0_c01014{width:531.075000px;}
.x0_c01014{left:0.000000px;}
.x8_c01014{left:11.100000px;}
.x9_c01014{left:31.800000px;}
.x2_c01014{left:33.750000px;}
.x3_c01014{left:35.100000px;}
.x4_c01014{left:36.150000px;}
.x5_c01014{left:37.800000px;}
.x7_c01014{left:39.150000px;}
.x6_c01014{left:40.800000px;}
.x1_c01014{left:146.400000px;}
.xb_c01014{left:217.351730px;}
.xa_c01014{left:246.450000px;}
@media print{
.v0_c01014{vertical-align:0.000000pt;}
.ls2_c01014{letter-spacing:-2.666667pt;}
.ls1_c01014{letter-spacing:0.000000pt;}
.ls0_c01014{letter-spacing:2.666667pt;}
.ws0_c01014{word-spacing:-18.090667pt;}
.ws2_c01014{word-spacing:-18.000000pt;}
.ws1_c01014{word-spacing:-15.424000pt;}
.ws3_c01014{word-spacing:0.000000pt;}
._1f_c01014{margin-left:-32.538667pt;}
._20_c01014{margin-left:-30.208000pt;}
._18_c01014{margin-left:-14.368000pt;}
._1c_c01014{margin-left:-13.184000pt;}
._1b_c01014{margin-left:-12.021333pt;}
._1e_c01014{margin-left:-10.450667pt;}
._21_c01014{margin-left:-8.402667pt;}
._15_c01014{margin-left:-7.130667pt;}
._19_c01014{margin-left:-5.741333pt;}
._11_c01014{margin-left:-4.573333pt;}
._17_c01014{margin-left:-3.453333pt;}
._9_c01014{margin-left:-2.546667pt;}
._e_c01014{margin-left:-1.216000pt;}
._a_c01014{width:1.397333pt;}
._c_c01014{width:2.568000pt;}
._4_c01014{width:3.840000pt;}
._3_c01014{width:5.066667pt;}
._22_c01014{width:6.128000pt;}
._7_c01014{width:7.200000pt;}
._6_c01014{width:8.426667pt;}
._5_c01014{width:9.706667pt;}
._2_c01014{width:11.146667pt;}
._b_c01014{width:12.717333pt;}
._1a_c01014{width:14.016000pt;}
._1_c01014{width:15.093333pt;}
._8_c01014{width:16.480000pt;}
._d_c01014{width:19.520000pt;}
._10_c01014{width:21.808000pt;}
._0_c01014{width:24.320000pt;}
._13_c01014{width:25.229333pt;}
._14_c01014{width:26.890667pt;}
._12_c01014{width:28.165333pt;}
._f_c01014{width:31.232000pt;}
._16_c01014{width:70.848000pt;}
._23_c01014{width:237.944000pt;}
._1d_c01014{width:285.258667pt;}
.fs6_c01014{font-size:42.666667pt;}
.fs0_c01014{font-size:53.333333pt;}
.fs5_c01014{font-size:56.000000pt;}
.fs4_c01014{font-size:61.333333pt;}
.fs2_c01014{font-size:64.000000pt;}
.fs3_c01014{font-size:72.000000pt;}
.fs1_c01014{font-size:82.666667pt;}
.y0_c01014{bottom:0.000000pt;}
.y1f_c01014{bottom:2.760000pt;}
.y1e_c01014{bottom:6.425206pt;}
.y1d_c01014{bottom:28.560000pt;}
.y1c_c01014{bottom:53.093333pt;}
.y1b_c01014{bottom:75.626667pt;}
.y1a_c01014{bottom:97.893333pt;}
.y19_c01014{bottom:119.760000pt;}
.y18_c01014{bottom:139.493333pt;}
.y17_c01014{bottom:162.693333pt;}
.y16_c01014{bottom:185.760000pt;}
.y15_c01014{bottom:207.093333pt;}
.y14_c01014{bottom:228.560000pt;}
.y13_c01014{bottom:250.826667pt;}
.y12_c01014{bottom:271.893333pt;}
.y11_c01014{bottom:291.893333pt;}
.y10_c01014{bottom:312.560000pt;}
.yf_c01014{bottom:333.093333pt;}
.ye_c01014{bottom:354.960000pt;}
.yd_c01014{bottom:376.826667pt;}
.yc_c01014{bottom:397.893333pt;}
.yb_c01014{bottom:419.760000pt;}
.ya_c01014{bottom:441.893333pt;}
.y9_c01014{bottom:463.226667pt;}
.y8_c01014{bottom:485.093333pt;}
.y7_c01014{bottom:506.426667pt;}
.y6_c01014{bottom:528.293333pt;}
.y5_c01014{bottom:550.160000pt;}
.y4_c01014{bottom:571.493333pt;}
.y3_c01014{bottom:592.826667pt;}
.y2_c01014{bottom:614.960000pt;}
.y1_c01014{bottom:636.960000pt;}
.h5_c01014{height:11.733399pt;}
.h6_c01014{height:38.937500pt;}
.h4_c01014{height:70.902344pt;}
.h3_c01014{height:81.031250pt;}
.h2_c01014{height:104.665365pt;}
.h1_c01014{height:685.333333pt;}
.h0_c01014{height:685.466667pt;}
.w2_c01014{width:93.222667pt;}
.w1_c01014{width:472.000000pt;}
.w0_c01014{width:472.066667pt;}
.x0_c01014{left:0.000000pt;}
.x8_c01014{left:9.866667pt;}
.x9_c01014{left:28.266667pt;}
.x2_c01014{left:30.000000pt;}
.x3_c01014{left:31.200000pt;}
.x4_c01014{left:32.133333pt;}
.x5_c01014{left:33.600000pt;}
.x7_c01014{left:34.800000pt;}
.x6_c01014{left:36.266667pt;}
.x1_c01014{left:130.133333pt;}
.xb_c01014{left:193.201538pt;}
.xa_c01014{left:219.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6986b9f251bd8238948bd01a.woff2')format("woff");}.ff1_c01015{font-family:ff1_c01015;line-height:1.480469;font-style:normal;font-weight:normal;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_417fe7271415459879d4e647.woff2')format("woff");}.ff2_c01015{font-family:ff2_c01015;line-height:1.568848;font-style:normal;font-weight:normal;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_33615f19a9943892bfcf81b6.woff2')format("woff");}.ff3_c01015{font-family:ff3_c01015;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01015{font-family:ff4_c01015;line-height:1.219238;font-style: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;}
.ls2_c01015{letter-spacing:-3.000000px;}
.ls0_c01015{letter-spacing:0.000000px;}
.ls1_c01015{letter-spacing:3.000000px;}
.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;}
._1b_c01015{margin-left:-15.912000px;}
._c_c01015{margin-left:-14.616000px;}
._a_c01015{margin-left:-12.384000px;}
._9_c01015{margin-left:-10.584000px;}
._17_c01015{margin-left:-9.000000px;}
._b_c01015{margin-left:-7.200000px;}
._13_c01015{margin-left:-5.112000px;}
._5_c01015{margin-left:-3.672000px;}
._7_c01015{margin-left:-2.232000px;}
._8_c01015{margin-left:-1.080000px;}
._6_c01015{width:1.872000px;}
._4_c01015{width:3.024000px;}
._3_c01015{width:4.536000px;}
._1_c01015{width:5.832000px;}
._f_c01015{width:7.416000px;}
._d_c01015{width:9.144000px;}
._15_c01015{width:10.512000px;}
._2_c01015{width:12.024000px;}
._0_c01015{width:13.968000px;}
._10_c01015{width:16.080000px;}
._11_c01015{width:17.424000px;}
._12_c01015{width:18.720000px;}
._18_c01015{width:20.712000px;}
._e_c01015{width:22.464000px;}
._16_c01015{width:25.632000px;}
._1a_c01015{width:31.032000px;}
._19_c01015{width:65.088000px;}
._14_c01015{width:90.000000px;}
._1c_c01015{width:402.912000px;}
._1d_c01015{width:655.992000px;}
.fc2_c01015{color:transparent;}
.fc1_c01015{color:rgb(128,128,128);}
.fc0_c01015{color:rgb(0,0,0);}
.fs3_c01015{font-size:48.000000px;}
.fs1_c01015{font-size:60.000000px;}
.fs2_c01015{font-size:63.000000px;}
.fs0_c01015{font-size:72.000000px;}
.y0_c01015{bottom:0.000000px;}
.y1f_c01015{bottom:3.105000px;}
.y1e_c01015{bottom:7.228357px;}
.y1d_c01015{bottom:29.730000px;}
.y1c_c01015{bottom:50.280000px;}
.y1b_c01015{bottom:75.930000px;}
.y1a_c01015{bottom:100.230000px;}
.y19_c01015{bottom:125.280000px;}
.y18_c01015{bottom:150.630000px;}
.y17_c01015{bottom:175.230000px;}
.y16_c01015{bottom:200.130000px;}
.y15_c01015{bottom:225.180000px;}
.y14_c01015{bottom:250.080000px;}
.y13_c01015{bottom:275.130000px;}
.y12_c01015{bottom:299.730000px;}
.y11_c01015{bottom:324.780000px;}
.y10_c01015{bottom:348.330000px;}
.yf_c01015{bottom:372.930000px;}
.ye_c01015{bottom:396.630000px;}
.yd_c01015{bottom:421.830000px;}
.yc_c01015{bottom:446.280000px;}
.yb_c01015{bottom:470.880000px;}
.ya_c01015{bottom:494.730000px;}
.y9_c01015{bottom:519.180000px;}
.y8_c01015{bottom:543.780000px;}
.y7_c01015{bottom:568.680000px;}
.y6_c01015{bottom:593.280000px;}
.y5_c01015{bottom:618.030000px;}
.y4_c01015{bottom:642.030000px;}
.y3_c01015{bottom:667.530000px;}
.y2_c01015{bottom:691.830000px;}
.y1_c01015{bottom:717.480000px;}
.h5_c01015{height:13.200074px;}
.h6_c01015{height:43.804688px;}
.h4_c01015{height:75.966797px;}
.h2_c01015{height:84.269531px;}
.h3_c01015{height:91.160156px;}
.h1_c01015{height:771.000000px;}
.h0_c01015{height:771.150000px;}
.w2_c01015{width:104.875500px;}
.w1_c01015{width:491.250000px;}
.w0_c01015{width:491.400000px;}
.x0_c01015{left:0.000000px;}
.x8_c01015{left:89.400000px;}
.x7_c01015{left:91.050000px;}
.x6_c01015{left:92.100000px;}
.x5_c01015{left:93.750000px;}
.x4_c01015{left:94.800000px;}
.x3_c01015{left:95.850000px;}
.x2_c01015{left:97.200000px;}
.x9_c01015{left:102.900000px;}
.xa_c01015{left:197.514267px;}
.x1_c01015{left:206.850000px;}
@media print{
.v0_c01015{vertical-align:0.000000pt;}
.ls2_c01015{letter-spacing:-2.666667pt;}
.ls0_c01015{letter-spacing:0.000000pt;}
.ls1_c01015{letter-spacing:2.666667pt;}
.ws0_c01015{word-spacing:0.000000pt;}
._1b_c01015{margin-left:-14.144000pt;}
._c_c01015{margin-left:-12.992000pt;}
._a_c01015{margin-left:-11.008000pt;}
._9_c01015{margin-left:-9.408000pt;}
._17_c01015{margin-left:-8.000000pt;}
._b_c01015{margin-left:-6.400000pt;}
._13_c01015{margin-left:-4.544000pt;}
._5_c01015{margin-left:-3.264000pt;}
._7_c01015{margin-left:-1.984000pt;}
._8_c01015{margin-left:-0.960000pt;}
._6_c01015{width:1.664000pt;}
._4_c01015{width:2.688000pt;}
._3_c01015{width:4.032000pt;}
._1_c01015{width:5.184000pt;}
._f_c01015{width:6.592000pt;}
._d_c01015{width:8.128000pt;}
._15_c01015{width:9.344000pt;}
._2_c01015{width:10.688000pt;}
._0_c01015{width:12.416000pt;}
._10_c01015{width:14.293333pt;}
._11_c01015{width:15.488000pt;}
._12_c01015{width:16.640000pt;}
._18_c01015{width:18.410667pt;}
._e_c01015{width:19.968000pt;}
._16_c01015{width:22.784000pt;}
._1a_c01015{width:27.584000pt;}
._19_c01015{width:57.856000pt;}
._14_c01015{width:80.000000pt;}
._1c_c01015{width:358.144000pt;}
._1d_c01015{width:583.104000pt;}
.fs3_c01015{font-size:42.666667pt;}
.fs1_c01015{font-size:53.333333pt;}
.fs2_c01015{font-size:56.000000pt;}
.fs0_c01015{font-size:64.000000pt;}
.y0_c01015{bottom:0.000000pt;}
.y1f_c01015{bottom:2.760000pt;}
.y1e_c01015{bottom:6.425206pt;}
.y1d_c01015{bottom:26.426667pt;}
.y1c_c01015{bottom:44.693333pt;}
.y1b_c01015{bottom:67.493333pt;}
.y1a_c01015{bottom:89.093333pt;}
.y19_c01015{bottom:111.360000pt;}
.y18_c01015{bottom:133.893333pt;}
.y17_c01015{bottom:155.760000pt;}
.y16_c01015{bottom:177.893333pt;}
.y15_c01015{bottom:200.160000pt;}
.y14_c01015{bottom:222.293333pt;}
.y13_c01015{bottom:244.560000pt;}
.y12_c01015{bottom:266.426667pt;}
.y11_c01015{bottom:288.693333pt;}
.y10_c01015{bottom:309.626667pt;}
.yf_c01015{bottom:331.493333pt;}
.ye_c01015{bottom:352.560000pt;}
.yd_c01015{bottom:374.960000pt;}
.yc_c01015{bottom:396.693333pt;}
.yb_c01015{bottom:418.560000pt;}
.ya_c01015{bottom:439.760000pt;}
.y9_c01015{bottom:461.493333pt;}
.y8_c01015{bottom:483.360000pt;}
.y7_c01015{bottom:505.493333pt;}
.y6_c01015{bottom:527.360000pt;}
.y5_c01015{bottom:549.360000pt;}
.y4_c01015{bottom:570.693333pt;}
.y3_c01015{bottom:593.360000pt;}
.y2_c01015{bottom:614.960000pt;}
.y1_c01015{bottom:637.760000pt;}
.h5_c01015{height:11.733399pt;}
.h6_c01015{height:38.937500pt;}
.h4_c01015{height:67.526042pt;}
.h2_c01015{height:74.906250pt;}
.h3_c01015{height:81.031250pt;}
.h1_c01015{height:685.333333pt;}
.h0_c01015{height:685.466667pt;}
.w2_c01015{width:93.222667pt;}
.w1_c01015{width:436.666667pt;}
.w0_c01015{width:436.800000pt;}
.x0_c01015{left:0.000000pt;}
.x8_c01015{left:79.466667pt;}
.x7_c01015{left:80.933333pt;}
.x6_c01015{left:81.866667pt;}
.x5_c01015{left:83.333333pt;}
.x4_c01015{left:84.266667pt;}
.x3_c01015{left:85.200000pt;}
.x2_c01015{left:86.400000pt;}
.x9_c01015{left:91.466667pt;}
.xa_c01015{left:175.568237pt;}
.x1_c01015{left:183.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cc492b74b4b73dd9a0e050b5.woff2')format("woff");}.ff1_c01016{font-family:ff1_c01016;line-height:1.480469;font-style:normal;font-weight:normal;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_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff2_c01016{font-family:ff2_c01016;line-height:1.284180;font-style:normal;font-weight:normal;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_f3493026ca894f95888def47.woff2')format("woff");}.ff3_c01016{font-family:ff3_c01016;line-height:1.568848;font-style:normal;font-weight:normal;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_697b8acede189a0b756c34bb.woff2')format("woff");}.ff4_c01016{font-family:ff4_c01016;line-height:1.284668;font-style:normal;font-weight:normal;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_9fe57d9de9e6eeaf37090617.woff2')format("woff");}.ff5_c01016{font-family:ff5_c01016;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01016;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01016{font-family:ff6_c01016;line-height:1.219238;font-style: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);}
.v0_c01016{vertical-align:0.000000px;}
.ls4_c01016{letter-spacing:-3.000000px;}
.ls3_c01016{letter-spacing:0.000000px;}
.ls2_c01016{letter-spacing:3.000000px;}
.ls0_c01016{letter-spacing:5.400000px;}
.ls1_c01016{letter-spacing:15.000000px;}
.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:-32.352000px;}
.ws3_c01016{word-spacing:-27.051000px;}
.ws4_c01016{word-spacing:-20.352000px;}
.ws2_c01016{word-spacing:-20.250000px;}
.ws1_c01016{word-spacing:-17.352000px;}
.ws5_c01016{word-spacing:0.000000px;}
._f_c01016{margin-left:-17.736000px;}
._9_c01016{margin-left:-14.544000px;}
._14_c01016{margin-left:-12.792000px;}
._10_c01016{margin-left:-9.984000px;}
._16_c01016{margin-left:-8.856000px;}
._18_c01016{margin-left:-7.680000px;}
._2_c01016{margin-left:-6.552000px;}
._e_c01016{margin-left:-4.824000px;}
._b_c01016{margin-left:-3.408000px;}
._8_c01016{margin-left:-2.088000px;}
._13_c01016{margin-left:-1.032000px;}
._c_c01016{width:1.080000px;}
._a_c01016{width:2.160000px;}
._6_c01016{width:3.480000px;}
._3_c01016{width:4.584000px;}
._4_c01016{width:6.336000px;}
._1a_c01016{width:7.488000px;}
._5_c01016{width:8.496000px;}
._d_c01016{width:9.816000px;}
._1_c01016{width:11.016000px;}
._12_c01016{width:12.312000px;}
._1e_c01016{width:13.452000px;}
._15_c01016{width:14.496000px;}
._1b_c01016{width:15.744000px;}
._11_c01016{width:16.920000px;}
._1c_c01016{width:18.168000px;}
._17_c01016{width:22.128000px;}
._0_c01016{width:24.408000px;}
._19_c01016{width:34.992000px;}
._1d_c01016{width:180.570000px;}
._20_c01016{width:252.144000px;}
._7_c01016{width:282.624000px;}
._1f_c01016{width:546.696000px;}
.fc2_c01016{color:transparent;}
.fc1_c01016{color:rgb(128,128,128);}
.fc0_c01016{color:rgb(0,0,0);}
.fs5_c01016{font-size:48.000000px;}
.fs3_c01016{font-size:60.000000px;}
.fs4_c01016{font-size:63.000000px;}
.fs0_c01016{font-size:72.000000px;}
.fs1_c01016{font-size:78.000000px;}
.fs2_c01016{font-size:81.000000px;}
.y0_c01016{bottom:0.000000px;}
.y1f_c01016{bottom:3.105000px;}
.y1e_c01016{bottom:7.228357px;}
.y1d_c01016{bottom:45.630000px;}
.y1c_c01016{bottom:75.330000px;}
.y1b_c01016{bottom:96.180000px;}
.y1a_c01016{bottom:124.980000px;}
.y19_c01016{bottom:145.230000px;}
.y18_c01016{bottom:177.480000px;}
.y17_c01016{bottom:200.130000px;}
.y16_c01016{bottom:226.080000px;}
.y15_c01016{bottom:250.530000px;}
.y14_c01016{bottom:274.830000px;}
.y13_c01016{bottom:300.330000px;}
.y12_c01016{bottom:323.280000px;}
.y11_c01016{bottom:346.230000px;}
.y10_c01016{bottom:369.630000px;}
.yf_c01016{bottom:394.230000px;}
.ye_c01016{bottom:419.130000px;}
.yd_c01016{bottom:442.830000px;}
.yc_c01016{bottom:467.880000px;}
.yb_c01016{bottom:493.380000px;}
.ya_c01016{bottom:517.830000px;}
.y9_c01016{bottom:542.430000px;}
.y8_c01016{bottom:566.730000px;}
.y7_c01016{bottom:591.330000px;}
.y6_c01016{bottom:615.930000px;}
.y5_c01016{bottom:640.530000px;}
.y4_c01016{bottom:665.280000px;}
.y3_c01016{bottom:690.480000px;}
.y2_c01016{bottom:714.480000px;}
.y1_c01016{bottom:739.530000px;}
.h5_c01016{height:13.200074px;}
.h6_c01016{height:43.804688px;}
.h4_c01016{height:75.966797px;}
.h3_c01016{height:79.497070px;}
.h2_c01016{height:91.160156px;}
.h1_c01016{height:777.750000px;}
.h0_c01016{height:777.900000px;}
.w2_c01016{width:104.875500px;}
.w0_c01016{width:527.850000px;}
.w1_c01016{width:528.000000px;}
.x0_c01016{left:0.000000px;}
.x2_c01016{left:33.450000px;}
.x3_c01016{left:34.650000px;}
.x4_c01016{left:37.050000px;}
.x6_c01016{left:38.700000px;}
.x8_c01016{left:39.750000px;}
.x5_c01016{left:40.800000px;}
.x7_c01016{left:42.150000px;}
.x1_c01016{left:150.150000px;}
.x9_c01016{left:166.050000px;}
.xb_c01016{left:215.739258px;}
.xa_c01016{left:356.100000px;}
@media print{
.v0_c01016{vertical-align:0.000000pt;}
.ls4_c01016{letter-spacing:-2.666667pt;}
.ls3_c01016{letter-spacing:0.000000pt;}
.ls2_c01016{letter-spacing:2.666667pt;}
.ls0_c01016{letter-spacing:4.800000pt;}
.ls1_c01016{letter-spacing:13.333333pt;}
.ws0_c01016{word-spacing:-28.757333pt;}
.ws3_c01016{word-spacing:-24.045333pt;}
.ws4_c01016{word-spacing:-18.090667pt;}
.ws2_c01016{word-spacing:-18.000000pt;}
.ws1_c01016{word-spacing:-15.424000pt;}
.ws5_c01016{word-spacing:0.000000pt;}
._f_c01016{margin-left:-15.765333pt;}
._9_c01016{margin-left:-12.928000pt;}
._14_c01016{margin-left:-11.370667pt;}
._10_c01016{margin-left:-8.874667pt;}
._16_c01016{margin-left:-7.872000pt;}
._18_c01016{margin-left:-6.826667pt;}
._2_c01016{margin-left:-5.824000pt;}
._e_c01016{margin-left:-4.288000pt;}
._b_c01016{margin-left:-3.029333pt;}
._8_c01016{margin-left:-1.856000pt;}
._13_c01016{margin-left:-0.917333pt;}
._c_c01016{width:0.960000pt;}
._a_c01016{width:1.920000pt;}
._6_c01016{width:3.093333pt;}
._3_c01016{width:4.074667pt;}
._4_c01016{width:5.632000pt;}
._1a_c01016{width:6.656000pt;}
._5_c01016{width:7.552000pt;}
._d_c01016{width:8.725333pt;}
._1_c01016{width:9.792000pt;}
._12_c01016{width:10.944000pt;}
._1e_c01016{width:11.957333pt;}
._15_c01016{width:12.885333pt;}
._1b_c01016{width:13.994667pt;}
._11_c01016{width:15.040000pt;}
._1c_c01016{width:16.149333pt;}
._17_c01016{width:19.669333pt;}
._0_c01016{width:21.696000pt;}
._19_c01016{width:31.104000pt;}
._1d_c01016{width:160.506667pt;}
._20_c01016{width:224.128000pt;}
._7_c01016{width:251.221333pt;}
._1f_c01016{width:485.952000pt;}
.fs5_c01016{font-size:42.666667pt;}
.fs3_c01016{font-size:53.333333pt;}
.fs4_c01016{font-size:56.000000pt;}
.fs0_c01016{font-size:64.000000pt;}
.fs1_c01016{font-size:69.333333pt;}
.fs2_c01016{font-size:72.000000pt;}
.y0_c01016{bottom:0.000000pt;}
.y1f_c01016{bottom:2.760000pt;}
.y1e_c01016{bottom:6.425206pt;}
.y1d_c01016{bottom:40.560000pt;}
.y1c_c01016{bottom:66.960000pt;}
.y1b_c01016{bottom:85.493333pt;}
.y1a_c01016{bottom:111.093333pt;}
.y19_c01016{bottom:129.093333pt;}
.y18_c01016{bottom:157.760000pt;}
.y17_c01016{bottom:177.893333pt;}
.y16_c01016{bottom:200.960000pt;}
.y15_c01016{bottom:222.693333pt;}
.y14_c01016{bottom:244.293333pt;}
.y13_c01016{bottom:266.960000pt;}
.y12_c01016{bottom:287.360000pt;}
.y11_c01016{bottom:307.760000pt;}
.y10_c01016{bottom:328.560000pt;}
.yf_c01016{bottom:350.426667pt;}
.ye_c01016{bottom:372.560000pt;}
.yd_c01016{bottom:393.626667pt;}
.yc_c01016{bottom:415.893333pt;}
.yb_c01016{bottom:438.560000pt;}
.ya_c01016{bottom:460.293333pt;}
.y9_c01016{bottom:482.160000pt;}
.y8_c01016{bottom:503.760000pt;}
.y7_c01016{bottom:525.626667pt;}
.y6_c01016{bottom:547.493333pt;}
.y5_c01016{bottom:569.360000pt;}
.y4_c01016{bottom:591.360000pt;}
.y3_c01016{bottom:613.760000pt;}
.y2_c01016{bottom:635.093333pt;}
.y1_c01016{bottom:657.360000pt;}
.h5_c01016{height:11.733399pt;}
.h6_c01016{height:38.937500pt;}
.h4_c01016{height:67.526042pt;}
.h3_c01016{height:70.664062pt;}
.h2_c01016{height:81.031250pt;}
.h1_c01016{height:691.333333pt;}
.h0_c01016{height:691.466667pt;}
.w2_c01016{width:93.222667pt;}
.w0_c01016{width:469.200000pt;}
.w1_c01016{width:469.333333pt;}
.x0_c01016{left:0.000000pt;}
.x2_c01016{left:29.733333pt;}
.x3_c01016{left:30.800000pt;}
.x4_c01016{left:32.933333pt;}
.x6_c01016{left:34.400000pt;}
.x8_c01016{left:35.333333pt;}
.x5_c01016{left:36.266667pt;}
.x7_c01016{left:37.466667pt;}
.x1_c01016{left:133.466667pt;}
.x9_c01016{left:147.600000pt;}
.xb_c01016{left:191.768229pt;}
.xa_c01016{left:316.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d09b014d13f5d8d482378a0b.woff2')format("woff");}.ff1_c01017{font-family:ff1_c01017;line-height:1.480469;font-style:normal;font-weight:normal;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_7c8de87015bc70939645a52b.woff2')format("woff");}.ff2_c01017{font-family:ff2_c01017;line-height:1.568848;font-style:normal;font-weight:normal;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_1122e66432fd285e67076c78.woff2')format("woff");}.ff3_c01017{font-family:ff3_c01017;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01017;src:url('chunks/assets/font_08535e3d8cac356385e2eca2.woff2')format("woff");}.ff4_c01017{font-family:ff4_c01017;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01017;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01017{font-family:ff5_c01017;line-height:1.219238;font-style: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;}
.ls0_c01017{letter-spacing:0.000000px;}
.ls2_c01017{letter-spacing:3.000000px;}
.ls1_c01017{letter-spacing:300.000000px;}
.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;}
}
.ws4_c01017{word-spacing:-315.183000px;}
.ws3_c01017{word-spacing:-44.256000px;}
.ws1_c01017{word-spacing:-37.341000px;}
.ws0_c01017{word-spacing:-33.192000px;}
.ws2_c01017{word-spacing:-23.250000px;}
.ws5_c01017{word-spacing:-17.352000px;}
.ws6_c01017{word-spacing:0.000000px;}
._1c_c01017{margin-left:-42.924000px;}
._1f_c01017{margin-left:-41.760000px;}
._1e_c01017{margin-left:-40.320000px;}
._1b_c01017{margin-left:-13.647000px;}
._19_c01017{margin-left:-12.546000px;}
._1a_c01017{margin-left:-10.323000px;}
._13_c01017{margin-left:-8.379000px;}
._c_c01017{margin-left:-7.101000px;}
._14_c01017{margin-left:-6.084000px;}
._d_c01017{margin-left:-4.503000px;}
._9_c01017{margin-left:-3.240000px;}
._b_c01017{margin-left:-2.223000px;}
._18_c01017{margin-left:-1.080000px;}
._10_c01017{width:1.170000px;}
._a_c01017{width:2.718000px;}
._8_c01017{width:3.951000px;}
._4_c01017{width:5.040000px;}
._1_c01017{width:6.192000px;}
._7_c01017{width:8.064000px;}
._3_c01017{width:9.360000px;}
._2_c01017{width:10.656000px;}
._e_c01017{width:11.826000px;}
._5_c01017{width:13.176000px;}
._0_c01017{width:14.184000px;}
._6_c01017{width:16.056000px;}
._11_c01017{width:17.361000px;}
._16_c01017{width:18.612000px;}
._f_c01017{width:19.998000px;}
._17_c01017{width:21.357000px;}
._12_c01017{width:22.617000px;}
._15_c01017{width:35.838000px;}
._1d_c01017{width:146.187000px;}
._20_c01017{width:214.716000px;}
._21_c01017{width:259.086000px;}
.fc2_c01017{color:transparent;}
.fc1_c01017{color:rgb(128,128,128);}
.fc0_c01017{color:rgb(0,0,0);}
.fs6_c01017{font-size:48.000000px;}
.fs5_c01017{font-size:57.000000px;}
.fs1_c01017{font-size:63.000000px;}
.fs0_c01017{font-size:72.000000px;}
.fs2_c01017{font-size:81.000000px;}
.fs3_c01017{font-size:93.000000px;}
.fs4_c01017{font-size:96.000000px;}
.y0_c01017{bottom:0.000000px;}
.y1e_c01017{bottom:3.105000px;}
.y1d_c01017{bottom:7.228371px;}
.y1c_c01017{bottom:54.765000px;}
.y1b_c01017{bottom:95.865000px;}
.y1a_c01017{bottom:122.865000px;}
.y19_c01017{bottom:147.615000px;}
.y18_c01017{bottom:172.515000px;}
.y17_c01017{bottom:197.865000px;}
.y16_c01017{bottom:222.465000px;}
.y15_c01017{bottom:249.465000px;}
.y14_c01017{bottom:271.665000px;}
.y13_c01017{bottom:297.465000px;}
.y12_c01017{bottom:321.765000px;}
.y11_c01017{bottom:347.265000px;}
.y10_c01017{bottom:370.965000px;}
.yf_c01017{bottom:395.265000px;}
.ye_c01017{bottom:418.815000px;}
.yd_c01017{bottom:443.865000px;}
.yc_c01017{bottom:467.865000px;}
.yb_c01017{bottom:491.865000px;}
.ya_c01017{bottom:516.015000px;}
.y9_c01017{bottom:540.315000px;}
.y8_c01017{bottom:565.065000px;}
.y7_c01017{bottom:589.065000px;}
.y6_c01017{bottom:613.965000px;}
.y5_c01017{bottom:638.865000px;}
.y4_c01017{bottom:663.315000px;}
.y3_c01017{bottom:687.915000px;}
.y2_c01017{bottom:711.765000px;}
.y1_c01017{bottom:737.865000px;}
.h9_c01017{height:13.200074px;}
.ha_c01017{height:43.804688px;}
.h8_c01017{height:55.942383px;}
.h3_c01017{height:79.765137px;}
.h2_c01017{height:91.160156px;}
.h5_c01017{height:93.726562px;}
.h6_c01017{height:94.218750px;}
.h4_c01017{height:102.555176px;}
.h7_c01017{height:112.359375px;}
.h1_c01017{height:783.750000px;}
.h0_c01017{height:783.825000px;}
.w2_c01017{width:104.875500px;}
.w1_c01017{width:494.250000px;}
.w0_c01017{width:494.400000px;}
.x0_c01017{left:0.000000px;}
.x9_c01017{left:80.700000px;}
.x6_c01017{left:83.400000px;}
.x8_c01017{left:84.450000px;}
.x7_c01017{left:86.400000px;}
.x5_c01017{left:88.500000px;}
.x4_c01017{left:89.550000px;}
.x3_c01017{left:91.800000px;}
.x2_c01017{left:93.150000px;}
.xb_c01017{left:199.014267px;}
.x1_c01017{left:212.400000px;}
.xa_c01017{left:435.750000px;}
@media print{
.v0_c01017{vertical-align:0.000000pt;}
.ls0_c01017{letter-spacing:0.000000pt;}
.ls2_c01017{letter-spacing:2.666667pt;}
.ls1_c01017{letter-spacing:266.666667pt;}
.ws4_c01017{word-spacing:-280.162667pt;}
.ws3_c01017{word-spacing:-39.338667pt;}
.ws1_c01017{word-spacing:-33.192000pt;}
.ws0_c01017{word-spacing:-29.504000pt;}
.ws2_c01017{word-spacing:-20.666667pt;}
.ws5_c01017{word-spacing:-15.424000pt;}
.ws6_c01017{word-spacing:0.000000pt;}
._1c_c01017{margin-left:-38.154667pt;}
._1f_c01017{margin-left:-37.120000pt;}
._1e_c01017{margin-left:-35.840000pt;}
._1b_c01017{margin-left:-12.130667pt;}
._19_c01017{margin-left:-11.152000pt;}
._1a_c01017{margin-left:-9.176000pt;}
._13_c01017{margin-left:-7.448000pt;}
._c_c01017{margin-left:-6.312000pt;}
._14_c01017{margin-left:-5.408000pt;}
._d_c01017{margin-left:-4.002667pt;}
._9_c01017{margin-left:-2.880000pt;}
._b_c01017{margin-left:-1.976000pt;}
._18_c01017{margin-left:-0.960000pt;}
._10_c01017{width:1.040000pt;}
._a_c01017{width:2.416000pt;}
._8_c01017{width:3.512000pt;}
._4_c01017{width:4.480000pt;}
._1_c01017{width:5.504000pt;}
._7_c01017{width:7.168000pt;}
._3_c01017{width:8.320000pt;}
._2_c01017{width:9.472000pt;}
._e_c01017{width:10.512000pt;}
._5_c01017{width:11.712000pt;}
._0_c01017{width:12.608000pt;}
._6_c01017{width:14.272000pt;}
._11_c01017{width:15.432000pt;}
._16_c01017{width:16.544000pt;}
._f_c01017{width:17.776000pt;}
._17_c01017{width:18.984000pt;}
._12_c01017{width:20.104000pt;}
._15_c01017{width:31.856000pt;}
._1d_c01017{width:129.944000pt;}
._20_c01017{width:190.858667pt;}
._21_c01017{width:230.298667pt;}
.fs6_c01017{font-size:42.666667pt;}
.fs5_c01017{font-size:50.666667pt;}
.fs1_c01017{font-size:56.000000pt;}
.fs0_c01017{font-size:64.000000pt;}
.fs2_c01017{font-size:72.000000pt;}
.fs3_c01017{font-size:82.666667pt;}
.fs4_c01017{font-size:85.333333pt;}
.y0_c01017{bottom:0.000000pt;}
.y1e_c01017{bottom:2.760000pt;}
.y1d_c01017{bottom:6.425219pt;}
.y1c_c01017{bottom:48.680000pt;}
.y1b_c01017{bottom:85.213333pt;}
.y1a_c01017{bottom:109.213333pt;}
.y19_c01017{bottom:131.213333pt;}
.y18_c01017{bottom:153.346667pt;}
.y17_c01017{bottom:175.880000pt;}
.y16_c01017{bottom:197.746667pt;}
.y15_c01017{bottom:221.746667pt;}
.y14_c01017{bottom:241.480000pt;}
.y13_c01017{bottom:264.413333pt;}
.y12_c01017{bottom:286.013333pt;}
.y11_c01017{bottom:308.680000pt;}
.y10_c01017{bottom:329.746667pt;}
.yf_c01017{bottom:351.346667pt;}
.ye_c01017{bottom:372.280000pt;}
.yd_c01017{bottom:394.546667pt;}
.yc_c01017{bottom:415.880000pt;}
.yb_c01017{bottom:437.213333pt;}
.ya_c01017{bottom:458.680000pt;}
.y9_c01017{bottom:480.280000pt;}
.y8_c01017{bottom:502.280000pt;}
.y7_c01017{bottom:523.613333pt;}
.y6_c01017{bottom:545.746667pt;}
.y5_c01017{bottom:567.880000pt;}
.y4_c01017{bottom:589.613333pt;}
.y3_c01017{bottom:611.480000pt;}
.y2_c01017{bottom:632.680000pt;}
.y1_c01017{bottom:655.880000pt;}
.h9_c01017{height:11.733399pt;}
.ha_c01017{height:38.937500pt;}
.h8_c01017{height:49.726562pt;}
.h3_c01017{height:70.902344pt;}
.h2_c01017{height:81.031250pt;}
.h5_c01017{height:83.312500pt;}
.h6_c01017{height:83.750000pt;}
.h4_c01017{height:91.160156pt;}
.h7_c01017{height:99.875000pt;}
.h1_c01017{height:696.666667pt;}
.h0_c01017{height:696.733333pt;}
.w2_c01017{width:93.222667pt;}
.w1_c01017{width:439.333333pt;}
.w0_c01017{width:439.466667pt;}
.x0_c01017{left:0.000000pt;}
.x9_c01017{left:71.733333pt;}
.x6_c01017{left:74.133333pt;}
.x8_c01017{left:75.066667pt;}
.x7_c01017{left:76.800000pt;}
.x5_c01017{left:78.666667pt;}
.x4_c01017{left:79.600000pt;}
.x3_c01017{left:81.600000pt;}
.x2_c01017{left:82.800000pt;}
.xb_c01017{left:176.901571pt;}
.x1_c01017{left:188.800000pt;}
.xa_c01017{left:387.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_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_2727226191fa073ce226d42e.woff2')format("woff");}.ff1_c01018{font-family:ff1_c01018;line-height:1.575000;font-style:normal;font-weight:normal;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_f8f8fe8e1fb1c0c2ba7d0d0c.woff2')format("woff");}.ff2_c01018{font-family:ff2_c01018;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01018{font-family:ff3_c01018;line-height:1.219238;font-style: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;}
.ls1_c01018{letter-spacing:-3.000000px;}
.ls2_c01018{letter-spacing:0.000000px;}
.ls0_c01018{letter-spacing:3.000000px;}
.sc__c01018{text-shadow:none;}
.sc0_c01018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01018{-webkit-text-stroke:0px transparent;}
.sc0_c01018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01018{word-spacing:-20.352000px;}
.ws0_c01018{word-spacing:-1.851000px;}
.ws2_c01018{word-spacing:0.000000px;}
._14_c01018{margin-left:-23.505000px;}
._11_c01018{margin-left:-11.232000px;}
._d_c01018{margin-left:-8.901000px;}
._e_c01018{margin-left:-6.951000px;}
._9_c01018{margin-left:-5.400000px;}
._c_c01018{margin-left:-4.248000px;}
._5_c01018{margin-left:-3.168000px;}
._6_c01018{margin-left:-1.440000px;}
._7_c01018{width:1.512000px;}
._2_c01018{width:2.664000px;}
._0_c01018{width:3.888000px;}
._1_c01018{width:5.112000px;}
._3_c01018{width:6.696000px;}
._10_c01018{width:7.848000px;}
._f_c01018{width:9.216000px;}
._8_c01018{width:10.512000px;}
._4_c01018{width:12.180000px;}
._b_c01018{width:13.248000px;}
._13_c01018{width:14.943000px;}
._a_c01018{width:16.848000px;}
._15_c01018{width:24.324000px;}
._12_c01018{width:86.112000px;}
._16_c01018{width:133.443000px;}
.fc2_c01018{color:transparent;}
.fc1_c01018{color:rgb(128,128,128);}
.fc0_c01018{color:rgb(0,0,0);}
.fs4_c01018{font-size:48.000000px;}
.fs2_c01018{font-size:54.000000px;}
.fs0_c01018{font-size:63.000000px;}
.fs3_c01018{font-size:69.000000px;}
.fs1_c01018{font-size:72.000000px;}
.y0_c01018{bottom:0.000000px;}
.y1f_c01018{bottom:3.105000px;}
.y1e_c01018{bottom:7.228371px;}
.y1d_c01018{bottom:35.565000px;}
.y1c_c01018{bottom:63.915000px;}
.y1b_c01018{bottom:88.065000px;}
.y1a_c01018{bottom:109.815000px;}
.y19_c01018{bottom:139.515000px;}
.y18_c01018{bottom:163.065000px;}
.y17_c01018{bottom:188.715000px;}
.y16_c01018{bottom:213.765000px;}
.y15_c01018{bottom:237.615000px;}
.y14_c01018{bottom:263.265000px;}
.y13_c01018{bottom:287.565000px;}
.y12_c01018{bottom:311.265000px;}
.y11_c01018{bottom:334.515000px;}
.y10_c01018{bottom:357.765000px;}
.yf_c01018{bottom:382.515000px;}
.ye_c01018{bottom:406.065000px;}
.yd_c01018{bottom:430.365000px;}
.yc_c01018{bottom:454.965000px;}
.yb_c01018{bottom:479.715000px;}
.ya_c01018{bottom:504.915000px;}
.y9_c01018{bottom:528.915000px;}
.y8_c01018{bottom:553.515000px;}
.y7_c01018{bottom:577.215000px;}
.y6_c01018{bottom:602.415000px;}
.y5_c01018{bottom:626.715000px;}
.y4_c01018{bottom:652.515000px;}
.y3_c01018{bottom:676.065000px;}
.y2_c01018{bottom:702.465000px;}
.y1_c01018{bottom:725.715000px;}
.h5_c01018{height:13.200074px;}
.h6_c01018{height:43.804688px;}
.h2_c01018{height:67.221000px;}
.h4_c01018{height:79.765137px;}
.h3_c01018{height:91.160156px;}
.h1_c01018{height:777.000000px;}
.h0_c01018{height:777.075000px;}
.w2_c01018{width:104.875500px;}
.w1_c01018{width:525.000000px;}
.w0_c01018{width:525.150000px;}
.x0_c01018{left:0.000000px;}
.x2_c01018{left:36.750000px;}
.x6_c01018{left:37.800000px;}
.x3_c01018{left:39.150000px;}
.x4_c01018{left:40.200000px;}
.x5_c01018{left:41.850000px;}
.x8_c01018{left:214.389267px;}
.x7_c01018{left:376.950000px;}
.x1_c01018{left:381.000000px;}
@media print{
.v0_c01018{vertical-align:0.000000pt;}
.ls1_c01018{letter-spacing:-2.666667pt;}
.ls2_c01018{letter-spacing:0.000000pt;}
.ls0_c01018{letter-spacing:2.666667pt;}
.ws1_c01018{word-spacing:-18.090667pt;}
.ws0_c01018{word-spacing:-1.645333pt;}
.ws2_c01018{word-spacing:0.000000pt;}
._14_c01018{margin-left:-20.893333pt;}
._11_c01018{margin-left:-9.984000pt;}
._d_c01018{margin-left:-7.912000pt;}
._e_c01018{margin-left:-6.178667pt;}
._9_c01018{margin-left:-4.800000pt;}
._c_c01018{margin-left:-3.776000pt;}
._5_c01018{margin-left:-2.816000pt;}
._6_c01018{margin-left:-1.280000pt;}
._7_c01018{width:1.344000pt;}
._2_c01018{width:2.368000pt;}
._0_c01018{width:3.456000pt;}
._1_c01018{width:4.544000pt;}
._3_c01018{width:5.952000pt;}
._10_c01018{width:6.976000pt;}
._f_c01018{width:8.192000pt;}
._8_c01018{width:9.344000pt;}
._4_c01018{width:10.826667pt;}
._b_c01018{width:11.776000pt;}
._13_c01018{width:13.282667pt;}
._a_c01018{width:14.976000pt;}
._15_c01018{width:21.621333pt;}
._12_c01018{width:76.544000pt;}
._16_c01018{width:118.616000pt;}
.fs4_c01018{font-size:42.666667pt;}
.fs2_c01018{font-size:48.000000pt;}
.fs0_c01018{font-size:56.000000pt;}
.fs3_c01018{font-size:61.333333pt;}
.fs1_c01018{font-size:64.000000pt;}
.y0_c01018{bottom:0.000000pt;}
.y1f_c01018{bottom:2.760000pt;}
.y1e_c01018{bottom:6.425219pt;}
.y1d_c01018{bottom:31.613333pt;}
.y1c_c01018{bottom:56.813333pt;}
.y1b_c01018{bottom:78.280000pt;}
.y1a_c01018{bottom:97.613333pt;}
.y19_c01018{bottom:124.013333pt;}
.y18_c01018{bottom:144.946667pt;}
.y17_c01018{bottom:167.746667pt;}
.y16_c01018{bottom:190.013333pt;}
.y15_c01018{bottom:211.213333pt;}
.y14_c01018{bottom:234.013333pt;}
.y13_c01018{bottom:255.613333pt;}
.y12_c01018{bottom:276.680000pt;}
.y11_c01018{bottom:297.346667pt;}
.y10_c01018{bottom:318.013333pt;}
.yf_c01018{bottom:340.013333pt;}
.ye_c01018{bottom:360.946667pt;}
.yd_c01018{bottom:382.546667pt;}
.yc_c01018{bottom:404.413333pt;}
.yb_c01018{bottom:426.413333pt;}
.ya_c01018{bottom:448.813333pt;}
.y9_c01018{bottom:470.146667pt;}
.y8_c01018{bottom:492.013333pt;}
.y7_c01018{bottom:513.080000pt;}
.y6_c01018{bottom:535.480000pt;}
.y5_c01018{bottom:557.080000pt;}
.y4_c01018{bottom:580.013333pt;}
.y3_c01018{bottom:600.946667pt;}
.y2_c01018{bottom:624.413333pt;}
.y1_c01018{bottom:645.080000pt;}
.h5_c01018{height:11.733399pt;}
.h6_c01018{height:38.937500pt;}
.h2_c01018{height:59.752000pt;}
.h4_c01018{height:70.902344pt;}
.h3_c01018{height:81.031250pt;}
.h1_c01018{height:690.666667pt;}
.h0_c01018{height:690.733333pt;}
.w2_c01018{width:93.222667pt;}
.w1_c01018{width:466.666667pt;}
.w0_c01018{width:466.800000pt;}
.x0_c01018{left:0.000000pt;}
.x2_c01018{left:32.666667pt;}
.x6_c01018{left:33.600000pt;}
.x3_c01018{left:34.800000pt;}
.x4_c01018{left:35.733333pt;}
.x5_c01018{left:37.200000pt;}
.x8_c01018{left:190.568237pt;}
.x7_c01018{left:335.066667pt;}
.x1_c01018{left:338.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_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_38b5cabe4d53dc09693d515f.woff2')format("woff");}.ff1_c01019{font-family:ff1_c01019;line-height:1.480469;font-style:normal;font-weight:normal;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_8254f64f3b2d07bd4ad442ae.woff2')format("woff");}.ff2_c01019{font-family:ff2_c01019;line-height:1.568848;font-style:normal;font-weight:normal;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_c61e503b69da2d4e13a7b6c9.woff2')format("woff");}.ff3_c01019{font-family:ff3_c01019;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01019;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01019{font-family:ff4_c01019;line-height:1.219238;font-style: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;}
.ls0_c01019{letter-spacing:0.000000px;}
.ls1_c01019{letter-spacing:3.000000px;}
.ls2_c01019{letter-spacing:6.000000px;}
.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;}
}
.ws1_c01019{word-spacing:-18.750000px;}
.ws0_c01019{word-spacing:-17.352000px;}
.ws2_c01019{word-spacing:0.000000px;}
._10_c01019{margin-left:-37.728000px;}
._12_c01019{margin-left:-14.127000px;}
._13_c01019{margin-left:-12.168000px;}
._14_c01019{margin-left:-10.944000px;}
._11_c01019{margin-left:-9.432000px;}
._f_c01019{margin-left:-8.424000px;}
._d_c01019{margin-left:-6.840000px;}
._e_c01019{margin-left:-5.832000px;}
._5_c01019{margin-left:-4.680000px;}
._a_c01019{margin-left:-3.384000px;}
._8_c01019{margin-left:-2.232000px;}
._6_c01019{margin-left:-1.152000px;}
._4_c01019{width:1.728000px;}
._7_c01019{width:3.600000px;}
._1_c01019{width:4.968000px;}
._3_c01019{width:6.552000px;}
._9_c01019{width:7.848000px;}
._2_c01019{width:8.928000px;}
._0_c01019{width:10.224000px;}
._c_c01019{width:11.304000px;}
._b_c01019{width:14.976000px;}
._15_c01019{width:147.642000px;}
._16_c01019{width:227.664000px;}
._17_c01019{width:1007.712000px;}
.fc2_c01019{color:transparent;}
.fc1_c01019{color:rgb(128,128,128);}
.fc0_c01019{color:rgb(0,0,0);}
.fs4_c01019{font-size:48.000000px;}
.fs1_c01019{font-size:51.000000px;}
.fs2_c01019{font-size:69.000000px;}
.fs0_c01019{font-size:72.000000px;}
.fs3_c01019{font-size:75.000000px;}
.y0_c01019{bottom:0.000000px;}
.y1f_c01019{bottom:3.105000px;}
.y1e_c01019{bottom:7.228357px;}
.y1d_c01019{bottom:35.730000px;}
.y1c_c01019{bottom:54.630000px;}
.y1b_c01019{bottom:79.980000px;}
.y1a_c01019{bottom:106.080000px;}
.y19_c01019{bottom:132.330000px;}
.y18_c01019{bottom:160.980000px;}
.y17_c01019{bottom:184.680000px;}
.y16_c01019{bottom:207.630000px;}
.y15_c01019{bottom:232.530000px;}
.y14_c01019{bottom:257.130000px;}
.y13_c01019{bottom:281.880000px;}
.y12_c01019{bottom:307.080000px;}
.y11_c01019{bottom:331.830000px;}
.y10_c01019{bottom:358.380000px;}
.yf_c01019{bottom:380.430000px;}
.ye_c01019{bottom:404.280000px;}
.yd_c01019{bottom:429.030000px;}
.yc_c01019{bottom:453.330000px;}
.yb_c01019{bottom:478.230000px;}
.ya_c01019{bottom:502.230000px;}
.y9_c01019{bottom:527.130000px;}
.y8_c01019{bottom:551.580000px;}
.y7_c01019{bottom:576.480000px;}
.y6_c01019{bottom:601.830000px;}
.y5_c01019{bottom:626.130000px;}
.y4_c01019{bottom:650.130000px;}
.y3_c01019{bottom:674.730000px;}
.y2_c01019{bottom:699.930000px;}
.y1_c01019{bottom:725.280000px;}
.h3_c01019{height:13.200074px;}
.h4_c01019{height:43.804688px;}
.h2_c01019{height:91.160156px;}
.h1_c01019{height:784.500000px;}
.h0_c01019{height:784.650000px;}
.w2_c01019{width:104.875500px;}
.w1_c01019{width:498.000000px;}
.w0_c01019{width:498.150000px;}
.x0_c01019{left:0.000000px;}
.x7_c01019{left:78.000000px;}
.x6_c01019{left:79.050000px;}
.x8_c01019{left:80.700000px;}
.x5_c01019{left:81.750000px;}
.x4_c01019{left:82.800000px;}
.x3_c01019{left:84.150000px;}
.x2_c01019{left:85.350000px;}
.xb_c01019{left:104.550000px;}
.x9_c01019{left:105.600000px;}
.xa_c01019{left:121.200000px;}
.xc_c01019{left:200.889267px;}
.x1_c01019{left:212.400000px;}
@media print{
.v0_c01019{vertical-align:0.000000pt;}
.ls0_c01019{letter-spacing:0.000000pt;}
.ls1_c01019{letter-spacing:2.666667pt;}
.ls2_c01019{letter-spacing:5.333333pt;}
.ws1_c01019{word-spacing:-16.666667pt;}
.ws0_c01019{word-spacing:-15.424000pt;}
.ws2_c01019{word-spacing:0.000000pt;}
._10_c01019{margin-left:-33.536000pt;}
._12_c01019{margin-left:-12.557333pt;}
._13_c01019{margin-left:-10.816000pt;}
._14_c01019{margin-left:-9.728000pt;}
._11_c01019{margin-left:-8.384000pt;}
._f_c01019{margin-left:-7.488000pt;}
._d_c01019{margin-left:-6.080000pt;}
._e_c01019{margin-left:-5.184000pt;}
._5_c01019{margin-left:-4.160000pt;}
._a_c01019{margin-left:-3.008000pt;}
._8_c01019{margin-left:-1.984000pt;}
._6_c01019{margin-left:-1.024000pt;}
._4_c01019{width:1.536000pt;}
._7_c01019{width:3.200000pt;}
._1_c01019{width:4.416000pt;}
._3_c01019{width:5.824000pt;}
._9_c01019{width:6.976000pt;}
._2_c01019{width:7.936000pt;}
._0_c01019{width:9.088000pt;}
._c_c01019{width:10.048000pt;}
._b_c01019{width:13.312000pt;}
._15_c01019{width:131.237333pt;}
._16_c01019{width:202.368000pt;}
._17_c01019{width:895.744000pt;}
.fs4_c01019{font-size:42.666667pt;}
.fs1_c01019{font-size:45.333333pt;}
.fs2_c01019{font-size:61.333333pt;}
.fs0_c01019{font-size:64.000000pt;}
.fs3_c01019{font-size:66.666667pt;}
.y0_c01019{bottom:0.000000pt;}
.y1f_c01019{bottom:2.760000pt;}
.y1e_c01019{bottom:6.425206pt;}
.y1d_c01019{bottom:31.760000pt;}
.y1c_c01019{bottom:48.560000pt;}
.y1b_c01019{bottom:71.093333pt;}
.y1a_c01019{bottom:94.293333pt;}
.y19_c01019{bottom:117.626667pt;}
.y18_c01019{bottom:143.093333pt;}
.y17_c01019{bottom:164.160000pt;}
.y16_c01019{bottom:184.560000pt;}
.y15_c01019{bottom:206.693333pt;}
.y14_c01019{bottom:228.560000pt;}
.y13_c01019{bottom:250.560000pt;}
.y12_c01019{bottom:272.960000pt;}
.y11_c01019{bottom:294.960000pt;}
.y10_c01019{bottom:318.560000pt;}
.yf_c01019{bottom:338.160000pt;}
.ye_c01019{bottom:359.360000pt;}
.yd_c01019{bottom:381.360000pt;}
.yc_c01019{bottom:402.960000pt;}
.yb_c01019{bottom:425.093333pt;}
.ya_c01019{bottom:446.426667pt;}
.y9_c01019{bottom:468.560000pt;}
.y8_c01019{bottom:490.293333pt;}
.y7_c01019{bottom:512.426667pt;}
.y6_c01019{bottom:534.960000pt;}
.y5_c01019{bottom:556.560000pt;}
.y4_c01019{bottom:577.893333pt;}
.y3_c01019{bottom:599.760000pt;}
.y2_c01019{bottom:622.160000pt;}
.y1_c01019{bottom:644.693333pt;}
.h3_c01019{height:11.733399pt;}
.h4_c01019{height:38.937500pt;}
.h2_c01019{height:81.031250pt;}
.h1_c01019{height:697.333333pt;}
.h0_c01019{height:697.466667pt;}
.w2_c01019{width:93.222667pt;}
.w1_c01019{width:442.666667pt;}
.w0_c01019{width:442.800000pt;}
.x0_c01019{left:0.000000pt;}
.x7_c01019{left:69.333333pt;}
.x6_c01019{left:70.266667pt;}
.x8_c01019{left:71.733333pt;}
.x5_c01019{left:72.666667pt;}
.x4_c01019{left:73.600000pt;}
.x3_c01019{left:74.800000pt;}
.x2_c01019{left:75.866667pt;}
.xb_c01019{left:92.933333pt;}
.x9_c01019{left:93.866667pt;}
.xa_c01019{left:107.733333pt;}
.xc_c01019{left:178.568237pt;}
.x1_c01019{left:188.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2f37df8c96ffcf7f16ec8ad5.woff2')format("woff");}.ff1_c01020{font-family:ff1_c01020;line-height:1.568848;font-style:normal;font-weight:normal;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_0284b97f8be5b5645f066d2d.woff2')format("woff");}.ff2_c01020{font-family:ff2_c01020;line-height:1.480469;font-style:normal;font-weight:normal;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_d363bdefd3a8c53c698c23ed.woff2')format("woff");}.ff3_c01020{font-family:ff3_c01020;line-height:1.284668;font-style:normal;font-weight:normal;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_a7a09a7331966efb47ba8019.woff2')format("woff");}.ff4_c01020{font-family:ff4_c01020;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01020;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01020{font-family:ff5_c01020;line-height:1.219238;font-style: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;}
.ls1_c01020{letter-spacing:3.000000px;}
.ls0_c01020{letter-spacing:20.352000px;}
.ls2_c01020{letter-spacing:24.000000px;}
.ls4_c01020{letter-spacing:33.000000px;}
.sc__c01020{text-shadow:none;}
.sc0_c01020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01020{-webkit-text-stroke:0px transparent;}
.sc0_c01020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01020{word-spacing:-39.000000px;}
.ws1_c01020{word-spacing:-24.957000px;}
.ws3_c01020{word-spacing:-20.352000px;}
.ws0_c01020{word-spacing:-17.352000px;}
.ws4_c01020{word-spacing:0.000000px;}
._1b_c01020{margin-left:-31.251000px;}
._19_c01020{margin-left:-23.316000px;}
._23_c01020{margin-left:-20.367000px;}
._15_c01020{margin-left:-19.095000px;}
._1a_c01020{margin-left:-17.487000px;}
._16_c01020{margin-left:-14.835000px;}
._20_c01020{margin-left:-13.710000px;}
._1_c01020{margin-left:-12.702000px;}
._24_c01020{margin-left:-10.854000px;}
._0_c01020{margin-left:-9.570000px;}
._11_c01020{margin-left:-8.553000px;}
._e_c01020{margin-left:-6.618000px;}
._b_c01020{margin-left:-4.794000px;}
._f_c01020{margin-left:-3.768000px;}
._2_c01020{margin-left:-2.709000px;}
._4_c01020{margin-left:-1.380000px;}
._5_c01020{width:1.368000px;}
._6_c01020{width:2.592000px;}
._a_c01020{width:3.672000px;}
._8_c01020{width:4.869000px;}
._c_c01020{width:5.988000px;}
._9_c01020{width:7.200000px;}
._3_c01020{width:8.613000px;}
._7_c01020{width:10.872000px;}
._d_c01020{width:13.110000px;}
._10_c01020{width:15.138000px;}
._18_c01020{width:17.139000px;}
._17_c01020{width:21.081000px;}
._21_c01020{width:24.192000px;}
._1f_c01020{width:25.392000px;}
._26_c01020{width:27.738000px;}
._1c_c01020{width:30.852000px;}
._1e_c01020{width:37.062000px;}
._27_c01020{width:38.076000px;}
._22_c01020{width:47.520000px;}
._12_c01020{width:55.836000px;}
._25_c01020{width:80.871000px;}
._1d_c01020{width:101.955000px;}
._13_c01020{width:105.876000px;}
._28_c01020{width:250.440000px;}
._14_c01020{width:658.650000px;}
.fc2_c01020{color:transparent;}
.fc1_c01020{color:rgb(128,128,128);}
.fc0_c01020{color:rgb(0,0,0);}
.fs5_c01020{font-size:48.000000px;}
.fs2_c01020{font-size:57.000000px;}
.fs4_c01020{font-size:60.000000px;}
.fs0_c01020{font-size:72.000000px;}
.fs3_c01020{font-size:78.000000px;}
.fs1_c01020{font-size:87.000000px;}
.y0_c01020{bottom:0.000000px;}
.y1e_c01020{bottom:3.105000px;}
.y1d_c01020{bottom:7.228369px;}
.y1c_c01020{bottom:35.670000px;}
.y1b_c01020{bottom:66.720000px;}
.y1a_c01020{bottom:92.070000px;}
.y19_c01020{bottom:116.670000px;}
.y18_c01020{bottom:142.320000px;}
.y17_c01020{bottom:162.270000px;}
.y16_c01020{bottom:190.320000px;}
.y15_c01020{bottom:214.920000px;}
.y14_c01020{bottom:235.470000px;}
.y13_c01020{bottom:263.520000px;}
.y12_c01020{bottom:297.270000px;}
.y11_c01020{bottom:321.870000px;}
.y10_c01020{bottom:347.670000px;}
.yf_c01020{bottom:373.620000px;}
.ye_c01020{bottom:401.220000px;}
.yd_c01020{bottom:436.620000px;}
.yc_c01020{bottom:461.370000px;}
.yb_c01020{bottom:486.120000px;}
.ya_c01020{bottom:510.870000px;}
.y9_c01020{bottom:535.620000px;}
.y8_c01020{bottom:559.920000px;}
.y7_c01020{bottom:584.520000px;}
.y6_c01020{bottom:609.120000px;}
.y5_c01020{bottom:634.170000px;}
.y4_c01020{bottom:658.170000px;}
.y3_c01020{bottom:683.070000px;}
.y2_c01020{bottom:708.120000px;}
.y1_c01020{bottom:732.420000px;}
.h6_c01020{height:13.200073px;}
.h7_c01020{height:43.804688px;}
.h3_c01020{height:91.160156px;}
.h4_c01020{height:98.756836px;}
.h5_c01020{height:101.825684px;}
.h2_c01020{height:110.151855px;}
.h0_c01020{height:774.600000px;}
.h1_c01020{height:774.750000px;}
.w2_c01020{width:104.875500px;}
.w0_c01020{width:524.100000px;}
.w1_c01020{width:524.250000px;}
.x0_c01020{left:0.000000px;}
.xd_c01020{left:33.750000px;}
.xc_c01020{left:37.050000px;}
.x4_c01020{left:42.600000px;}
.x3_c01020{left:44.550000px;}
.x2_c01020{left:45.600000px;}
.x5_c01020{left:46.650000px;}
.x7_c01020{left:51.750000px;}
.x8_c01020{left:71.850000px;}
.x6_c01020{left:86.850000px;}
.xb_c01020{left:119.850000px;}
.x9_c01020{left:135.300000px;}
.xa_c01020{left:148.050000px;}
.x1_c01020{left:159.900000px;}
.xf_c01020{left:213.864258px;}
.xe_c01020{left:359.850000px;}
@media print{
.v0_c01020{vertical-align:0.000000pt;}
.ls3_c01020{letter-spacing:0.000000pt;}
.ls1_c01020{letter-spacing:2.666667pt;}
.ls0_c01020{letter-spacing:18.090667pt;}
.ls2_c01020{letter-spacing:21.333333pt;}
.ls4_c01020{letter-spacing:29.333333pt;}
.ws2_c01020{word-spacing:-34.666667pt;}
.ws1_c01020{word-spacing:-22.184000pt;}
.ws3_c01020{word-spacing:-18.090667pt;}
.ws0_c01020{word-spacing:-15.424000pt;}
.ws4_c01020{word-spacing:0.000000pt;}
._1b_c01020{margin-left:-27.778667pt;}
._19_c01020{margin-left:-20.725333pt;}
._23_c01020{margin-left:-18.104000pt;}
._15_c01020{margin-left:-16.973333pt;}
._1a_c01020{margin-left:-15.544000pt;}
._16_c01020{margin-left:-13.186667pt;}
._20_c01020{margin-left:-12.186667pt;}
._1_c01020{margin-left:-11.290667pt;}
._24_c01020{margin-left:-9.648000pt;}
._0_c01020{margin-left:-8.506667pt;}
._11_c01020{margin-left:-7.602667pt;}
._e_c01020{margin-left:-5.882667pt;}
._b_c01020{margin-left:-4.261333pt;}
._f_c01020{margin-left:-3.349333pt;}
._2_c01020{margin-left:-2.408000pt;}
._4_c01020{margin-left:-1.226667pt;}
._5_c01020{width:1.216000pt;}
._6_c01020{width:2.304000pt;}
._a_c01020{width:3.264000pt;}
._8_c01020{width:4.328000pt;}
._c_c01020{width:5.322667pt;}
._9_c01020{width:6.400000pt;}
._3_c01020{width:7.656000pt;}
._7_c01020{width:9.664000pt;}
._d_c01020{width:11.653333pt;}
._10_c01020{width:13.456000pt;}
._18_c01020{width:15.234667pt;}
._17_c01020{width:18.738667pt;}
._21_c01020{width:21.504000pt;}
._1f_c01020{width:22.570667pt;}
._26_c01020{width:24.656000pt;}
._1c_c01020{width:27.424000pt;}
._1e_c01020{width:32.944000pt;}
._27_c01020{width:33.845333pt;}
._22_c01020{width:42.240000pt;}
._12_c01020{width:49.632000pt;}
._25_c01020{width:71.885333pt;}
._1d_c01020{width:90.626667pt;}
._13_c01020{width:94.112000pt;}
._28_c01020{width:222.613333pt;}
._14_c01020{width:585.466667pt;}
.fs5_c01020{font-size:42.666667pt;}
.fs2_c01020{font-size:50.666667pt;}
.fs4_c01020{font-size:53.333333pt;}
.fs0_c01020{font-size:64.000000pt;}
.fs3_c01020{font-size:69.333333pt;}
.fs1_c01020{font-size:77.333333pt;}
.y0_c01020{bottom:0.000000pt;}
.y1e_c01020{bottom:2.760000pt;}
.y1d_c01020{bottom:6.425217pt;}
.y1c_c01020{bottom:31.706667pt;}
.y1b_c01020{bottom:59.306667pt;}
.y1a_c01020{bottom:81.840000pt;}
.y19_c01020{bottom:103.706667pt;}
.y18_c01020{bottom:126.506667pt;}
.y17_c01020{bottom:144.240000pt;}
.y16_c01020{bottom:169.173333pt;}
.y15_c01020{bottom:191.040000pt;}
.y14_c01020{bottom:209.306667pt;}
.y13_c01020{bottom:234.240000pt;}
.y12_c01020{bottom:264.240000pt;}
.y11_c01020{bottom:286.106667pt;}
.y10_c01020{bottom:309.040000pt;}
.yf_c01020{bottom:332.106667pt;}
.ye_c01020{bottom:356.640000pt;}
.yd_c01020{bottom:388.106667pt;}
.yc_c01020{bottom:410.106667pt;}
.yb_c01020{bottom:432.106667pt;}
.ya_c01020{bottom:454.106667pt;}
.y9_c01020{bottom:476.106667pt;}
.y8_c01020{bottom:497.706667pt;}
.y7_c01020{bottom:519.573333pt;}
.y6_c01020{bottom:541.440000pt;}
.y5_c01020{bottom:563.706667pt;}
.y4_c01020{bottom:585.040000pt;}
.y3_c01020{bottom:607.173333pt;}
.y2_c01020{bottom:629.440000pt;}
.y1_c01020{bottom:651.040000pt;}
.h6_c01020{height:11.733399pt;}
.h7_c01020{height:38.937500pt;}
.h3_c01020{height:81.031250pt;}
.h4_c01020{height:87.783854pt;}
.h5_c01020{height:90.511719pt;}
.h2_c01020{height:97.912760pt;}
.h0_c01020{height:688.533333pt;}
.h1_c01020{height:688.666667pt;}
.w2_c01020{width:93.222667pt;}
.w0_c01020{width:465.866667pt;}
.w1_c01020{width:466.000000pt;}
.x0_c01020{left:0.000000pt;}
.xd_c01020{left:30.000000pt;}
.xc_c01020{left:32.933333pt;}
.x4_c01020{left:37.866667pt;}
.x3_c01020{left:39.600000pt;}
.x2_c01020{left:40.533333pt;}
.x5_c01020{left:41.466667pt;}
.x7_c01020{left:46.000000pt;}
.x8_c01020{left:63.866667pt;}
.x6_c01020{left:77.200000pt;}
.xb_c01020{left:106.533333pt;}
.x9_c01020{left:120.266667pt;}
.xa_c01020{left:131.600000pt;}
.x1_c01020{left:142.133333pt;}
.xf_c01020{left:190.101563pt;}
.xe_c01020{left:319.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4e43de6bd26c44e7e550f7b8.woff2')format("woff");}.ff1_c01021{font-family:ff1_c01021;line-height:1.480469;font-style:normal;font-weight:normal;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_b275a77130d79f6449e8b6e4.woff2')format("woff");}.ff2_c01021{font-family:ff2_c01021;line-height:1.568848;font-style:normal;font-weight:normal;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_48bd75242bd7d94af3dfab85.woff2')format("woff");}.ff3_c01021{font-family:ff3_c01021;line-height:1.284668;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01021{font-family:ff4_c01021;line-height:1.219238;font-style: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;}
.ls0_c01021{letter-spacing:0.000000px;}
.ls1_c01021{letter-spacing:3.000000px;}
.ls2_c01021{letter-spacing:6.000000px;}
.sc__c01021{text-shadow:none;}
.sc0_c01021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01021{-webkit-text-stroke:0px transparent;}
.sc0_c01021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01021{word-spacing:-20.352000px;}
.ws0_c01021{word-spacing:-17.352000px;}
.ws2_c01021{word-spacing:0.000000px;}
._10_c01021{margin-left:-8.712000px;}
._12_c01021{margin-left:-7.632000px;}
._d_c01021{margin-left:-6.624000px;}
._e_c01021{margin-left:-5.256000px;}
._8_c01021{margin-left:-4.104000px;}
._7_c01021{margin-left:-2.808000px;}
._9_c01021{margin-left:-1.800000px;}
._6_c01021{width:1.224000px;}
._5_c01021{width:2.736000px;}
._4_c01021{width:4.320000px;}
._c_c01021{width:5.328000px;}
._a_c01021{width:6.696000px;}
._2_c01021{width:8.496000px;}
._1_c01021{width:10.728000px;}
._b_c01021{width:12.744000px;}
._3_c01021{width:15.912000px;}
._f_c01021{width:17.640000px;}
._0_c01021{width:19.080000px;}
._11_c01021{width:184.752000px;}
.fc2_c01021{color:transparent;}
.fc1_c01021{color:rgb(128,128,128);}
.fc0_c01021{color:rgb(0,0,0);}
.fs1_c01021{font-size:48.000000px;}
.fs0_c01021{font-size:72.000000px;}
.y0_c01021{bottom:0.000000px;}
.y1e_c01021{bottom:3.105000px;}
.y1d_c01021{bottom:7.228355px;}
.y1c_c01021{bottom:59.085000px;}
.y1b_c01021{bottom:90.435000px;}
.y1a_c01021{bottom:113.385000px;}
.y19_c01021{bottom:138.735000px;}
.y18_c01021{bottom:163.335000px;}
.y17_c01021{bottom:188.235000px;}
.y16_c01021{bottom:212.835000px;}
.y15_c01021{bottom:237.885000px;}
.y14_c01021{bottom:262.785000px;}
.y13_c01021{bottom:287.535000px;}
.y12_c01021{bottom:312.135000px;}
.y11_c01021{bottom:337.185000px;}
.y10_c01021{bottom:360.435000px;}
.yf_c01021{bottom:385.335000px;}
.ye_c01021{bottom:409.335000px;}
.yd_c01021{bottom:434.385000px;}
.yc_c01021{bottom:458.985000px;}
.yb_c01021{bottom:483.585000px;}
.ya_c01021{bottom:507.285000px;}
.y9_c01021{bottom:532.185000px;}
.y8_c01021{bottom:557.085000px;}
.y7_c01021{bottom:581.835000px;}
.y6_c01021{bottom:606.435000px;}
.y5_c01021{bottom:631.035000px;}
.y4_c01021{bottom:655.635000px;}
.y3_c01021{bottom:680.085000px;}
.y2_c01021{bottom:703.635000px;}
.y1_c01021{bottom:730.035000px;}
.h3_c01021{height:13.200074px;}
.h4_c01021{height:43.804688px;}
.h2_c01021{height:91.160156px;}
.h1_c01021{height:787.500000px;}
.h0_c01021{height:787.575000px;}
.w2_c01021{width:104.875500px;}
.w1_c01021{width:489.000000px;}
.w0_c01021{width:489.225000px;}
.x0_c01021{left:0.000000px;}
.xa_c01021{left:72.150000px;}
.x9_c01021{left:73.500000px;}
.x8_c01021{left:74.700000px;}
.x7_c01021{left:76.050000px;}
.x6_c01021{left:77.250000px;}
.x5_c01021{left:78.600000px;}
.x4_c01021{left:79.950000px;}
.x3_c01021{left:81.900000px;}
.x2_c01021{left:85.050000px;}
.xb_c01021{left:196.426758px;}
.x1_c01021{left:203.100000px;}
@media print{
.v0_c01021{vertical-align:0.000000pt;}
.ls0_c01021{letter-spacing:0.000000pt;}
.ls1_c01021{letter-spacing:2.666667pt;}
.ls2_c01021{letter-spacing:5.333333pt;}
.ws1_c01021{word-spacing:-18.090667pt;}
.ws0_c01021{word-spacing:-15.424000pt;}
.ws2_c01021{word-spacing:0.000000pt;}
._10_c01021{margin-left:-7.744000pt;}
._12_c01021{margin-left:-6.784000pt;}
._d_c01021{margin-left:-5.888000pt;}
._e_c01021{margin-left:-4.672000pt;}
._8_c01021{margin-left:-3.648000pt;}
._7_c01021{margin-left:-2.496000pt;}
._9_c01021{margin-left:-1.600000pt;}
._6_c01021{width:1.088000pt;}
._5_c01021{width:2.432000pt;}
._4_c01021{width:3.840000pt;}
._c_c01021{width:4.736000pt;}
._a_c01021{width:5.952000pt;}
._2_c01021{width:7.552000pt;}
._1_c01021{width:9.536000pt;}
._b_c01021{width:11.328000pt;}
._3_c01021{width:14.144000pt;}
._f_c01021{width:15.680000pt;}
._0_c01021{width:16.960000pt;}
._11_c01021{width:164.224000pt;}
.fs1_c01021{font-size:42.666667pt;}
.fs0_c01021{font-size:64.000000pt;}
.y0_c01021{bottom:0.000000pt;}
.y1e_c01021{bottom:2.760000pt;}
.y1d_c01021{bottom:6.425204pt;}
.y1c_c01021{bottom:52.520000pt;}
.y1b_c01021{bottom:80.386667pt;}
.y1a_c01021{bottom:100.786667pt;}
.y19_c01021{bottom:123.320000pt;}
.y18_c01021{bottom:145.186667pt;}
.y17_c01021{bottom:167.320000pt;}
.y16_c01021{bottom:189.186667pt;}
.y15_c01021{bottom:211.453333pt;}
.y14_c01021{bottom:233.586667pt;}
.y13_c01021{bottom:255.586667pt;}
.y12_c01021{bottom:277.453333pt;}
.y11_c01021{bottom:299.720000pt;}
.y10_c01021{bottom:320.386667pt;}
.yf_c01021{bottom:342.520000pt;}
.ye_c01021{bottom:363.853333pt;}
.yd_c01021{bottom:386.120000pt;}
.yc_c01021{bottom:407.986667pt;}
.yb_c01021{bottom:429.853333pt;}
.ya_c01021{bottom:450.920000pt;}
.y9_c01021{bottom:473.053333pt;}
.y8_c01021{bottom:495.186667pt;}
.y7_c01021{bottom:517.186667pt;}
.y6_c01021{bottom:539.053333pt;}
.y5_c01021{bottom:560.920000pt;}
.y4_c01021{bottom:582.786667pt;}
.y3_c01021{bottom:604.520000pt;}
.y2_c01021{bottom:625.453333pt;}
.y1_c01021{bottom:648.920000pt;}
.h3_c01021{height:11.733399pt;}
.h4_c01021{height:38.937500pt;}
.h2_c01021{height:81.031250pt;}
.h1_c01021{height:700.000000pt;}
.h0_c01021{height:700.066667pt;}
.w2_c01021{width:93.222667pt;}
.w1_c01021{width:434.666667pt;}
.w0_c01021{width:434.866667pt;}
.x0_c01021{left:0.000000pt;}
.xa_c01021{left:64.133333pt;}
.x9_c01021{left:65.333333pt;}
.x8_c01021{left:66.400000pt;}
.x7_c01021{left:67.600000pt;}
.x6_c01021{left:68.666667pt;}
.x5_c01021{left:69.866667pt;}
.x4_c01021{left:71.066667pt;}
.x3_c01021{left:72.800000pt;}
.x2_c01021{left:75.600000pt;}
.xb_c01021{left:174.601563pt;}
.x1_c01021{left:180.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_96935d91b140f9027ed2252b.woff2')format("woff");}.ff1_c01022{font-family:ff1_c01022;line-height:1.568848;font-style:normal;font-weight:normal;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_ee0ceaa5482d7caa853370c7.woff2')format("woff");}.ff2_c01022{font-family:ff2_c01022;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01022{font-family:ff3_c01022;line-height:1.219238;font-style: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);}
.v0_c01022{vertical-align:0.000000px;}
.ls1_c01022{letter-spacing:0.000000px;}
.ls0_c01022{letter-spacing:3.000000px;}
.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;}
}
.ws0_c01022{word-spacing:-17.352000px;}
.ws1_c01022{word-spacing:0.000000px;}
._16_c01022{margin-left:-38.088000px;}
._5_c01022{margin-left:-15.840000px;}
._4_c01022{margin-left:-13.464000px;}
._8_c01022{margin-left:-11.232000px;}
._17_c01022{margin-left:-10.056000px;}
._12_c01022{margin-left:-8.424000px;}
._6_c01022{margin-left:-6.912000px;}
._2_c01022{margin-left:-5.184000px;}
._7_c01022{margin-left:-3.264000px;}
._3_c01022{margin-left:-2.160000px;}
._f_c01022{margin-left:-1.152000px;}
._0_c01022{width:1.080000px;}
._1_c01022{width:2.808000px;}
._a_c01022{width:3.960000px;}
._c_c01022{width:4.968000px;}
._13_c01022{width:6.024000px;}
._11_c01022{width:7.056000px;}
._e_c01022{width:8.472000px;}
._14_c01022{width:9.600000px;}
._9_c01022{width:11.160000px;}
._b_c01022{width:12.312000px;}
._d_c01022{width:13.968000px;}
._10_c01022{width:16.008000px;}
._15_c01022{width:25.296000px;}
.fc2_c01022{color:transparent;}
.fc1_c01022{color:rgb(128,128,128);}
.fc0_c01022{color:rgb(0,0,0);}
.fs2_c01022{font-size:48.000000px;}
.fs0_c01022{font-size:72.000000px;}
.fs1_c01022{font-size:96.000000px;}
.y0_c01022{bottom:0.000000px;}
.y1e_c01022{bottom:3.105000px;}
.y1d_c01022{bottom:7.228357px;}
.y1c_c01022{bottom:43.230000px;}
.y1b_c01022{bottom:79.680000px;}
.y1a_c01022{bottom:105.330000px;}
.y19_c01022{bottom:130.680000px;}
.y18_c01022{bottom:151.230000px;}
.y17_c01022{bottom:179.880000px;}
.y16_c01022{bottom:204.930000px;}
.y15_c01022{bottom:228.180000px;}
.y14_c01022{bottom:253.530000px;}
.y13_c01022{bottom:278.430000px;}
.y12_c01022{bottom:302.430000px;}
.y11_c01022{bottom:325.080000px;}
.y10_c01022{bottom:348.630000px;}
.yf_c01022{bottom:372.930000px;}
.ye_c01022{bottom:397.230000px;}
.yd_c01022{bottom:422.580000px;}
.yc_c01022{bottom:445.530000px;}
.yb_c01022{bottom:469.830000px;}
.ya_c01022{bottom:493.830000px;}
.y9_c01022{bottom:520.530000px;}
.y8_c01022{bottom:543.480000px;}
.y7_c01022{bottom:567.030000px;}
.y6_c01022{bottom:591.930000px;}
.y5_c01022{bottom:615.630000px;}
.y4_c01022{bottom:640.980000px;}
.y3_c01022{bottom:664.530000px;}
.y2_c01022{bottom:689.880000px;}
.y1_c01022{bottom:715.230000px;}
.h4_c01022{height:13.200074px;}
.h5_c01022{height:43.804688px;}
.h3_c01022{height:91.160156px;}
.h2_c01022{height:121.546875px;}
.h0_c01022{height:773.850000px;}
.h1_c01022{height:774.000000px;}
.w2_c01022{width:104.875500px;}
.w0_c01022{width:507.600000px;}
.w1_c01022{width:507.750000px;}
.x0_c01022{left:0.000000px;}
.x2_c01022{left:21.900000px;}
.x1_c01022{left:24.750000px;}
.x3_c01022{left:25.950000px;}
.x4_c01022{left:27.300000px;}
.x6_c01022{left:205.614258px;}
.x5_c01022{left:280.500000px;}
@media print{
.v0_c01022{vertical-align:0.000000pt;}
.ls1_c01022{letter-spacing:0.000000pt;}
.ls0_c01022{letter-spacing:2.666667pt;}
.ws0_c01022{word-spacing:-15.424000pt;}
.ws1_c01022{word-spacing:0.000000pt;}
._16_c01022{margin-left:-33.856000pt;}
._5_c01022{margin-left:-14.080000pt;}
._4_c01022{margin-left:-11.968000pt;}
._8_c01022{margin-left:-9.984000pt;}
._17_c01022{margin-left:-8.938667pt;}
._12_c01022{margin-left:-7.488000pt;}
._6_c01022{margin-left:-6.144000pt;}
._2_c01022{margin-left:-4.608000pt;}
._7_c01022{margin-left:-2.901333pt;}
._3_c01022{margin-left:-1.920000pt;}
._f_c01022{margin-left:-1.024000pt;}
._0_c01022{width:0.960000pt;}
._1_c01022{width:2.496000pt;}
._a_c01022{width:3.520000pt;}
._c_c01022{width:4.416000pt;}
._13_c01022{width:5.354667pt;}
._11_c01022{width:6.272000pt;}
._e_c01022{width:7.530667pt;}
._14_c01022{width:8.533333pt;}
._9_c01022{width:9.920000pt;}
._b_c01022{width:10.944000pt;}
._d_c01022{width:12.416000pt;}
._10_c01022{width:14.229333pt;}
._15_c01022{width:22.485333pt;}
.fs2_c01022{font-size:42.666667pt;}
.fs0_c01022{font-size:64.000000pt;}
.fs1_c01022{font-size:85.333333pt;}
.y0_c01022{bottom:0.000000pt;}
.y1e_c01022{bottom:2.760000pt;}
.y1d_c01022{bottom:6.425206pt;}
.y1c_c01022{bottom:38.426667pt;}
.y1b_c01022{bottom:70.826667pt;}
.y1a_c01022{bottom:93.626667pt;}
.y19_c01022{bottom:116.160000pt;}
.y18_c01022{bottom:134.426667pt;}
.y17_c01022{bottom:159.893333pt;}
.y16_c01022{bottom:182.160000pt;}
.y15_c01022{bottom:202.826667pt;}
.y14_c01022{bottom:225.360000pt;}
.y13_c01022{bottom:247.493333pt;}
.y12_c01022{bottom:268.826667pt;}
.y11_c01022{bottom:288.960000pt;}
.y10_c01022{bottom:309.893333pt;}
.yf_c01022{bottom:331.493333pt;}
.ye_c01022{bottom:353.093333pt;}
.yd_c01022{bottom:375.626667pt;}
.yc_c01022{bottom:396.026667pt;}
.yb_c01022{bottom:417.626667pt;}
.ya_c01022{bottom:438.960000pt;}
.y9_c01022{bottom:462.693333pt;}
.y8_c01022{bottom:483.093333pt;}
.y7_c01022{bottom:504.026667pt;}
.y6_c01022{bottom:526.160000pt;}
.y5_c01022{bottom:547.226667pt;}
.y4_c01022{bottom:569.760000pt;}
.y3_c01022{bottom:590.693333pt;}
.y2_c01022{bottom:613.226667pt;}
.y1_c01022{bottom:635.760000pt;}
.h4_c01022{height:11.733399pt;}
.h5_c01022{height:38.937500pt;}
.h3_c01022{height:81.031250pt;}
.h2_c01022{height:108.041667pt;}
.h0_c01022{height:687.866667pt;}
.h1_c01022{height:688.000000pt;}
.w2_c01022{width:93.222667pt;}
.w0_c01022{width:451.200000pt;}
.w1_c01022{width:451.333333pt;}
.x0_c01022{left:0.000000pt;}
.x2_c01022{left:19.466667pt;}
.x1_c01022{left:22.000000pt;}
.x3_c01022{left:23.066667pt;}
.x4_c01022{left:24.266667pt;}
.x6_c01022{left:182.768229pt;}
.x5_c01022{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_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_90b123ba2631a3e032e6d912.woff2')format("woff");}.ff1_c01023{font-family:ff1_c01023;line-height:1.480469;font-style:normal;font-weight:normal;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_fe4ad59f51f86505f9b62475.woff2')format("woff");}.ff2_c01023{font-family:ff2_c01023;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01023{font-family:ff3_c01023;line-height:1.219238;font-style: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;}
.ls0_c01023{letter-spacing:0.000000px;}
.ls1_c01023{letter-spacing:3.000000px;}
.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:-17.352000px;}
.ws1_c01023{word-spacing:0.000000px;}
._15_c01023{margin-left:-20.562000px;}
._1c_c01023{margin-left:-18.360000px;}
._1b_c01023{margin-left:-14.976000px;}
._11_c01023{margin-left:-12.816000px;}
._1a_c01023{margin-left:-11.664000px;}
._8_c01023{margin-left:-10.512000px;}
._10_c01023{margin-left:-9.144000px;}
._f_c01023{margin-left:-8.046000px;}
._c_c01023{margin-left:-6.597000px;}
._4_c01023{margin-left:-4.740000px;}
._0_c01023{margin-left:-3.393000px;}
._2_c01023{margin-left:-2.349000px;}
._1_c01023{margin-left:-1.218000px;}
._5_c01023{width:1.728000px;}
._6_c01023{width:3.096000px;}
._7_c01023{width:4.104000px;}
._9_c01023{width:5.472000px;}
._b_c01023{width:6.912000px;}
._3_c01023{width:8.091000px;}
._e_c01023{width:9.261000px;}
._a_c01023{width:10.944000px;}
._18_c01023{width:11.970000px;}
._16_c01023{width:14.214000px;}
._d_c01023{width:15.774000px;}
._14_c01023{width:23.415000px;}
._17_c01023{width:44.040000px;}
._13_c01023{width:158.208000px;}
._1d_c01023{width:166.848000px;}
._12_c01023{width:224.097000px;}
._19_c01023{width:286.608000px;}
.fc2_c01023{color:transparent;}
.fc1_c01023{color:rgb(128,128,128);}
.fc0_c01023{color:rgb(0,0,0);}
.fs2_c01023{font-size:48.000000px;}
.fs1_c01023{font-size:72.000000px;}
.fs0_c01023{font-size:87.000000px;}
.y0_c01023{bottom:0.000000px;}
.y1e_c01023{bottom:3.105000px;}
.y1d_c01023{bottom:7.228357px;}
.y1c_c01023{bottom:83.130000px;}
.y1b_c01023{bottom:109.680000px;}
.y1a_c01023{bottom:134.730000px;}
.y19_c01023{bottom:160.680000px;}
.y18_c01023{bottom:186.630000px;}
.y17_c01023{bottom:212.280000px;}
.y16_c01023{bottom:235.680000px;}
.y15_c01023{bottom:260.880000px;}
.y14_c01023{bottom:286.980000px;}
.y13_c01023{bottom:310.830000px;}
.y12_c01023{bottom:337.230000px;}
.y11_c01023{bottom:361.080000px;}
.y10_c01023{bottom:384.780000px;}
.yf_c01023{bottom:408.480000px;}
.ye_c01023{bottom:433.380000px;}
.yd_c01023{bottom:457.680000px;}
.yc_c01023{bottom:482.730000px;}
.yb_c01023{bottom:507.030000px;}
.ya_c01023{bottom:531.930000px;}
.y9_c01023{bottom:556.830000px;}
.y8_c01023{bottom:580.830000px;}
.y7_c01023{bottom:605.880000px;}
.y6_c01023{bottom:631.080000px;}
.y5_c01023{bottom:656.130000px;}
.y4_c01023{bottom:680.430000px;}
.y3_c01023{bottom:704.130000px;}
.y2_c01023{bottom:729.780000px;}
.y1_c01023{bottom:755.430000px;}
.h4_c01023{height:13.200074px;}
.h5_c01023{height:43.804688px;}
.h3_c01023{height:91.160156px;}
.h2_c01023{height:110.151855px;}
.h0_c01023{height:788.700000px;}
.h1_c01023{height:789.000000px;}
.w2_c01023{width:104.875500px;}
.w1_c01023{width:513.750000px;}
.w0_c01023{width:514.050000px;}
.x0_c01023{left:0.000000px;}
.x4_c01023{left:24.000000px;}
.x5_c01023{left:38.100000px;}
.x6_c01023{left:99.150000px;}
.x3_c01023{left:100.800000px;}
.x2_c01023{left:102.300000px;}
.x7_c01023{left:208.839249px;}
.x1_c01023{left:233.850000px;}
@media print{
.v0_c01023{vertical-align:0.000000pt;}
.ls0_c01023{letter-spacing:0.000000pt;}
.ls1_c01023{letter-spacing:2.666667pt;}
.ws0_c01023{word-spacing:-15.424000pt;}
.ws1_c01023{word-spacing:0.000000pt;}
._15_c01023{margin-left:-18.277333pt;}
._1c_c01023{margin-left:-16.320000pt;}
._1b_c01023{margin-left:-13.312000pt;}
._11_c01023{margin-left:-11.392000pt;}
._1a_c01023{margin-left:-10.368000pt;}
._8_c01023{margin-left:-9.344000pt;}
._10_c01023{margin-left:-8.128000pt;}
._f_c01023{margin-left:-7.152000pt;}
._c_c01023{margin-left:-5.864000pt;}
._4_c01023{margin-left:-4.213333pt;}
._0_c01023{margin-left:-3.016000pt;}
._2_c01023{margin-left:-2.088000pt;}
._1_c01023{margin-left:-1.082667pt;}
._5_c01023{width:1.536000pt;}
._6_c01023{width:2.752000pt;}
._7_c01023{width:3.648000pt;}
._9_c01023{width:4.864000pt;}
._b_c01023{width:6.144000pt;}
._3_c01023{width:7.192000pt;}
._e_c01023{width:8.232000pt;}
._a_c01023{width:9.728000pt;}
._18_c01023{width:10.640000pt;}
._16_c01023{width:12.634667pt;}
._d_c01023{width:14.021333pt;}
._14_c01023{width:20.813333pt;}
._17_c01023{width:39.146667pt;}
._13_c01023{width:140.629333pt;}
._1d_c01023{width:148.309333pt;}
._12_c01023{width:199.197333pt;}
._19_c01023{width:254.762667pt;}
.fs2_c01023{font-size:42.666667pt;}
.fs1_c01023{font-size:64.000000pt;}
.fs0_c01023{font-size:77.333333pt;}
.y0_c01023{bottom:0.000000pt;}
.y1e_c01023{bottom:2.760000pt;}
.y1d_c01023{bottom:6.425206pt;}
.y1c_c01023{bottom:73.893333pt;}
.y1b_c01023{bottom:97.493333pt;}
.y1a_c01023{bottom:119.760000pt;}
.y19_c01023{bottom:142.826667pt;}
.y18_c01023{bottom:165.893333pt;}
.y17_c01023{bottom:188.693333pt;}
.y16_c01023{bottom:209.493333pt;}
.y15_c01023{bottom:231.893333pt;}
.y14_c01023{bottom:255.093333pt;}
.y13_c01023{bottom:276.293333pt;}
.y12_c01023{bottom:299.760000pt;}
.y11_c01023{bottom:320.960000pt;}
.y10_c01023{bottom:342.026667pt;}
.yf_c01023{bottom:363.093333pt;}
.ye_c01023{bottom:385.226667pt;}
.yd_c01023{bottom:406.826667pt;}
.yc_c01023{bottom:429.093333pt;}
.yb_c01023{bottom:450.693333pt;}
.ya_c01023{bottom:472.826667pt;}
.y9_c01023{bottom:494.960000pt;}
.y8_c01023{bottom:516.293333pt;}
.y7_c01023{bottom:538.560000pt;}
.y6_c01023{bottom:560.960000pt;}
.y5_c01023{bottom:583.226667pt;}
.y4_c01023{bottom:604.826667pt;}
.y3_c01023{bottom:625.893333pt;}
.y2_c01023{bottom:648.693333pt;}
.y1_c01023{bottom:671.493333pt;}
.h4_c01023{height:11.733399pt;}
.h5_c01023{height:38.937500pt;}
.h3_c01023{height:81.031250pt;}
.h2_c01023{height:97.912760pt;}
.h0_c01023{height:701.066667pt;}
.h1_c01023{height:701.333333pt;}
.w2_c01023{width:93.222667pt;}
.w1_c01023{width:456.666667pt;}
.w0_c01023{width:456.933333pt;}
.x0_c01023{left:0.000000pt;}
.x4_c01023{left:21.333333pt;}
.x5_c01023{left:33.866667pt;}
.x6_c01023{left:88.133333pt;}
.x3_c01023{left:89.600000pt;}
.x2_c01023{left:90.933333pt;}
.x7_c01023{left:185.634888pt;}
.x1_c01023{left:207.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bc6a18214688bdb39ff7821d.woff2')format("woff");}.ff1_c01024{font-family:ff1_c01024;line-height:1.480469;font-style:normal;font-weight:normal;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_120f0f2bee8771434aa74dca.woff2')format("woff");}.ff2_c01024{font-family:ff2_c01024;line-height:1.568848;font-style:normal;font-weight:normal;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_3dd79500d2b4902e9beb4fb7.woff2')format("woff");}.ff3_c01024{font-family:ff3_c01024;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01024;src:url('chunks/assets/font_678f7b3719a915532e006236.woff2')format("woff");}.ff4_c01024{font-family:ff4_c01024;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01024;src:url('chunks/assets/font_4fd906f1479ad3fe7f34d223.woff2')format("woff");}.ff5_c01024{font-family:ff5_c01024;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01024;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01024{font-family:ff6_c01024;line-height:1.219238;font-style: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;}
.ls0_c01024{letter-spacing:3.000000px;}
.ls4_c01024{letter-spacing:9.000000px;}
.ls1_c01024{letter-spacing:23.244000px;}
.ls2_c01024{letter-spacing:33.756000px;}
.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;}
}
.ws2_c01024{word-spacing:-105.204000px;}
.ws0_c01024{word-spacing:-33.192000px;}
.ws1_c01024{word-spacing:-28.500000px;}
.ws5_c01024{word-spacing:-15.183000px;}
.ws3_c01024{word-spacing:-14.280000px;}
.ws4_c01024{word-spacing:-0.213000px;}
.ws6_c01024{word-spacing:0.000000px;}
._18_c01024{margin-left:-36.522000px;}
._1d_c01024{margin-left:-19.398000px;}
._1e_c01024{margin-left:-17.856000px;}
._1c_c01024{margin-left:-11.814000px;}
._1a_c01024{margin-left:-10.674000px;}
._10_c01024{margin-left:-7.980000px;}
._d_c01024{margin-left:-5.820000px;}
._b_c01024{margin-left:-4.092000px;}
._8_c01024{margin-left:-2.874000px;}
._9_c01024{margin-left:-1.446000px;}
._c_c01024{width:1.026000px;}
._5_c01024{width:2.046000px;}
._6_c01024{width:3.234000px;}
._2_c01024{width:4.608000px;}
._4_c01024{width:5.616000px;}
._f_c01024{width:6.690000px;}
._1_c01024{width:7.704000px;}
._3_c01024{width:9.288000px;}
._e_c01024{width:11.196000px;}
._0_c01024{width:12.960000px;}
._7_c01024{width:15.000000px;}
._14_c01024{width:16.728000px;}
._1f_c01024{width:19.215000px;}
._11_c01024{width:21.618000px;}
._12_c01024{width:23.670000px;}
._13_c01024{width:25.344000px;}
._15_c01024{width:28.050000px;}
._20_c01024{width:30.591000px;}
._1b_c01024{width:42.888000px;}
._16_c01024{width:88.014000px;}
._17_c01024{width:194.304000px;}
._19_c01024{width:261.630000px;}
._a_c01024{width:309.972000px;}
._21_c01024{width:314.076000px;}
.fc2_c01024{color:transparent;}
.fc1_c01024{color:rgb(128,128,128);}
.fc0_c01024{color:rgb(0,0,0);}
.fs7_c01024{font-size:48.000000px;}
.fs3_c01024{font-size:51.000000px;}
.fs2_c01024{font-size:54.000000px;}
.fs6_c01024{font-size:60.000000px;}
.fs5_c01024{font-size:63.000000px;}
.fs1_c01024{font-size:66.000000px;}
.fs0_c01024{font-size:72.000000px;}
.fs4_c01024{font-size:132.000000px;}
.y0_c01024{bottom:0.000000px;}
.y1f_c01024{bottom:3.105000px;}
.y1e_c01024{bottom:7.228369px;}
.y1d_c01024{bottom:49.320000px;}
.y1c_c01024{bottom:75.570000px;}
.y1b_c01024{bottom:101.970000px;}
.y1a_c01024{bottom:126.570000px;}
.y19_c01024{bottom:151.770000px;}
.y18_c01024{bottom:176.070000px;}
.y17_c01024{bottom:201.720000px;}
.y16_c01024{bottom:225.420000px;}
.y15_c01024{bottom:251.070000px;}
.y14_c01024{bottom:275.370000px;}
.y13_c01024{bottom:299.670000px;}
.y12_c01024{bottom:323.370000px;}
.y11_c01024{bottom:346.170000px;}
.y10_c01024{bottom:369.870000px;}
.yf_c01024{bottom:394.920000px;}
.ye_c01024{bottom:419.070000px;}
.yd_c01024{bottom:443.820000px;}
.yc_c01024{bottom:468.720000px;}
.yb_c01024{bottom:493.320000px;}
.ya_c01024{bottom:518.970000px;}
.y9_c01024{bottom:545.070000px;}
.y8_c01024{bottom:567.570000px;}
.y7_c01024{bottom:592.020000px;}
.y6_c01024{bottom:616.620000px;}
.y5_c01024{bottom:640.470000px;}
.y4_c01024{bottom:665.820000px;}
.y3_c01024{bottom:690.420000px;}
.y2_c01024{bottom:714.420000px;}
.y1_c01024{bottom:739.770000px;}
.h7_c01024{height:13.200073px;}
.h8_c01024{height:43.804688px;}
.h6_c01024{height:75.966797px;}
.h3_c01024{height:83.563477px;}
.h2_c01024{height:84.269531px;}
.h4_c01024{height:91.160156px;}
.h5_c01024{height:167.126953px;}
.h0_c01024{height:781.350000px;}
.h1_c01024{height:781.500000px;}
.w2_c01024{width:104.875500px;}
.w1_c01024{width:532.500000px;}
.w0_c01024{width:532.725000px;}
.x0_c01024{left:0.000000px;}
.x8_c01024{left:24.600000px;}
.x7_c01024{left:26.400000px;}
.x2_c01024{left:27.450000px;}
.x3_c01024{left:29.100000px;}
.x4_c01024{left:30.450000px;}
.x5_c01024{left:32.400000px;}
.x6_c01024{left:70.200000px;}
.x1_c01024{left:137.100000px;}
.xa_c01024{left:218.176758px;}
.x9_c01024{left:227.100000px;}
@media print{
.v0_c01024{vertical-align:0.000000pt;}
.ls3_c01024{letter-spacing:0.000000pt;}
.ls0_c01024{letter-spacing:2.666667pt;}
.ls4_c01024{letter-spacing:8.000000pt;}
.ls1_c01024{letter-spacing:20.661333pt;}
.ls2_c01024{letter-spacing:30.005333pt;}
.ws2_c01024{word-spacing:-93.514667pt;}
.ws0_c01024{word-spacing:-29.504000pt;}
.ws1_c01024{word-spacing:-25.333333pt;}
.ws5_c01024{word-spacing:-13.496000pt;}
.ws3_c01024{word-spacing:-12.693333pt;}
.ws4_c01024{word-spacing:-0.189333pt;}
.ws6_c01024{word-spacing:0.000000pt;}
._18_c01024{margin-left:-32.464000pt;}
._1d_c01024{margin-left:-17.242667pt;}
._1e_c01024{margin-left:-15.872000pt;}
._1c_c01024{margin-left:-10.501333pt;}
._1a_c01024{margin-left:-9.488000pt;}
._10_c01024{margin-left:-7.093333pt;}
._d_c01024{margin-left:-5.173333pt;}
._b_c01024{margin-left:-3.637333pt;}
._8_c01024{margin-left:-2.554667pt;}
._9_c01024{margin-left:-1.285333pt;}
._c_c01024{width:0.912000pt;}
._5_c01024{width:1.818667pt;}
._6_c01024{width:2.874667pt;}
._2_c01024{width:4.096000pt;}
._4_c01024{width:4.992000pt;}
._f_c01024{width:5.946667pt;}
._1_c01024{width:6.848000pt;}
._3_c01024{width:8.256000pt;}
._e_c01024{width:9.952000pt;}
._0_c01024{width:11.520000pt;}
._7_c01024{width:13.333333pt;}
._14_c01024{width:14.869333pt;}
._1f_c01024{width:17.080000pt;}
._11_c01024{width:19.216000pt;}
._12_c01024{width:21.040000pt;}
._13_c01024{width:22.528000pt;}
._15_c01024{width:24.933333pt;}
._20_c01024{width:27.192000pt;}
._1b_c01024{width:38.122667pt;}
._16_c01024{width:78.234667pt;}
._17_c01024{width:172.714667pt;}
._19_c01024{width:232.560000pt;}
._a_c01024{width:275.530667pt;}
._21_c01024{width:279.178667pt;}
.fs7_c01024{font-size:42.666667pt;}
.fs3_c01024{font-size:45.333333pt;}
.fs2_c01024{font-size:48.000000pt;}
.fs6_c01024{font-size:53.333333pt;}
.fs5_c01024{font-size:56.000000pt;}
.fs1_c01024{font-size:58.666667pt;}
.fs0_c01024{font-size:64.000000pt;}
.fs4_c01024{font-size:117.333333pt;}
.y0_c01024{bottom:0.000000pt;}
.y1f_c01024{bottom:2.760000pt;}
.y1e_c01024{bottom:6.425217pt;}
.y1d_c01024{bottom:43.840000pt;}
.y1c_c01024{bottom:67.173333pt;}
.y1b_c01024{bottom:90.640000pt;}
.y1a_c01024{bottom:112.506667pt;}
.y19_c01024{bottom:134.906667pt;}
.y18_c01024{bottom:156.506667pt;}
.y17_c01024{bottom:179.306667pt;}
.y16_c01024{bottom:200.373333pt;}
.y15_c01024{bottom:223.173333pt;}
.y14_c01024{bottom:244.773333pt;}
.y13_c01024{bottom:266.373333pt;}
.y12_c01024{bottom:287.440000pt;}
.y11_c01024{bottom:307.706667pt;}
.y10_c01024{bottom:328.773333pt;}
.yf_c01024{bottom:351.040000pt;}
.ye_c01024{bottom:372.506667pt;}
.yd_c01024{bottom:394.506667pt;}
.yc_c01024{bottom:416.640000pt;}
.yb_c01024{bottom:438.506667pt;}
.ya_c01024{bottom:461.306667pt;}
.y9_c01024{bottom:484.506667pt;}
.y8_c01024{bottom:504.506667pt;}
.y7_c01024{bottom:526.240000pt;}
.y6_c01024{bottom:548.106667pt;}
.y5_c01024{bottom:569.306667pt;}
.y4_c01024{bottom:591.840000pt;}
.y3_c01024{bottom:613.706667pt;}
.y2_c01024{bottom:635.040000pt;}
.y1_c01024{bottom:657.573333pt;}
.h7_c01024{height:11.733399pt;}
.h8_c01024{height:38.937500pt;}
.h6_c01024{height:67.526042pt;}
.h3_c01024{height:74.278646pt;}
.h2_c01024{height:74.906250pt;}
.h4_c01024{height:81.031250pt;}
.h5_c01024{height:148.557292pt;}
.h0_c01024{height:694.533333pt;}
.h1_c01024{height:694.666667pt;}
.w2_c01024{width:93.222667pt;}
.w1_c01024{width:473.333333pt;}
.w0_c01024{width:473.533333pt;}
.x0_c01024{left:0.000000pt;}
.x8_c01024{left:21.866667pt;}
.x7_c01024{left:23.466667pt;}
.x2_c01024{left:24.400000pt;}
.x3_c01024{left:25.866667pt;}
.x4_c01024{left:27.066667pt;}
.x5_c01024{left:28.800000pt;}
.x6_c01024{left:62.400000pt;}
.x1_c01024{left:121.866667pt;}
.xa_c01024{left:193.934896pt;}
.x9_c01024{left:201.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_803a6350c5ace25ac2499690.woff2')format("woff");}.ff1_c01025{font-family:ff1_c01025;line-height:1.480469;font-style:normal;font-weight:normal;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_3469e3d3f8ba1289553aeb74.woff2')format("woff");}.ff2_c01025{font-family:ff2_c01025;line-height:1.568848;font-style:normal;font-weight:normal;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_eb49d2b522ed7c7564d29236.woff2')format("woff");}.ff3_c01025{font-family:ff3_c01025;line-height:1.575000;font-style:normal;font-weight:normal;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_43ec90974334ebf4c9736c27.woff2')format("woff");}.ff4_c01025{font-family:ff4_c01025;line-height:1.284668;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01025{font-family:ff5_c01025;line-height:1.219238;font-style: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;}
.ls2_c01025{letter-spacing:-3.000000px;}
.ls1_c01025{letter-spacing:0.000000px;}
.ls0_c01025{letter-spacing:3.000000px;}
.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:-27.051000px;}
.ws1_c01025{word-spacing:0.000000px;}
._19_c01025{margin-left:-24.507000px;}
._15_c01025{margin-left:-15.456000px;}
._14_c01025{margin-left:-12.600000px;}
._d_c01025{margin-left:-11.400000px;}
._11_c01025{margin-left:-9.888000px;}
._12_c01025{margin-left:-8.424000px;}
._13_c01025{margin-left:-6.984000px;}
._5_c01025{margin-left:-5.976000px;}
._8_c01025{margin-left:-4.584000px;}
._e_c01025{margin-left:-3.240000px;}
._9_c01025{margin-left:-2.208000px;}
._7_c01025{margin-left:-1.032000px;}
._6_c01025{width:1.008000px;}
._4_c01025{width:2.616000px;}
._3_c01025{width:3.960000px;}
._1_c01025{width:4.968000px;}
._2_c01025{width:6.840000px;}
._f_c01025{width:7.920000px;}
._0_c01025{width:8.928000px;}
._16_c01025{width:10.107000px;}
._a_c01025{width:12.096000px;}
._b_c01025{width:13.680000px;}
._c_c01025{width:15.072000px;}
._17_c01025{width:18.432000px;}
._10_c01025{width:172.512000px;}
._18_c01025{width:242.136000px;}
.fc2_c01025{color:transparent;}
.fc1_c01025{color:rgb(128,128,128);}
.fc0_c01025{color:rgb(0,0,0);}
.fs4_c01025{font-size:48.000000px;}
.fs2_c01025{font-size:57.000000px;}
.fs1_c01025{font-size:63.000000px;}
.fs0_c01025{font-size:72.000000px;}
.fs3_c01025{font-size:87.000000px;}
.y0_c01025{bottom:0.000000px;}
.y1e_c01025{bottom:3.105000px;}
.y1d_c01025{bottom:7.228355px;}
.y1c_c01025{bottom:77.835000px;}
.y1b_c01025{bottom:104.835000px;}
.y1a_c01025{bottom:129.135000px;}
.y19_c01025{bottom:154.485000px;}
.y18_c01025{bottom:178.785000px;}
.y17_c01025{bottom:203.835000px;}
.y16_c01025{bottom:227.685000px;}
.y15_c01025{bottom:253.035000px;}
.y14_c01025{bottom:278.985000px;}
.y13_c01025{bottom:302.385000px;}
.y12_c01025{bottom:325.935000px;}
.y11_c01025{bottom:350.685000px;}
.y10_c01025{bottom:374.235000px;}
.yf_c01025{bottom:397.935000px;}
.ye_c01025{bottom:422.085000px;}
.yd_c01025{bottom:446.085000px;}
.yc_c01025{bottom:470.085000px;}
.yb_c01025{bottom:493.785000px;}
.ya_c01025{bottom:517.935000px;}
.y9_c01025{bottom:542.385000px;}
.y8_c01025{bottom:567.885000px;}
.y7_c01025{bottom:592.185000px;}
.y6_c01025{bottom:616.935000px;}
.y5_c01025{bottom:642.135000px;}
.y4_c01025{bottom:667.185000px;}
.y3_c01025{bottom:692.085000px;}
.y2_c01025{bottom:716.385000px;}
.y1_c01025{bottom:741.135000px;}
.h4_c01025{height:13.200074px;}
.h5_c01025{height:43.804688px;}
.h2_c01025{height:91.160156px;}
.h3_c01025{height:110.151855px;}
.h1_c01025{height:780.750000px;}
.h0_c01025{height:780.825000px;}
.w2_c01025{width:104.875500px;}
.w0_c01025{width:501.375000px;}
.w1_c01025{width:501.750000px;}
.x0_c01025{left:0.000000px;}
.x2_c01025{left:78.900000px;}
.x3_c01025{left:80.700000px;}
.x4_c01025{left:82.350000px;}
.x5_c01025{left:83.400000px;}
.x7_c01025{left:85.650000px;}
.x8_c01025{left:120.750000px;}
.x6_c01025{left:146.100000px;}
.x9_c01025{left:202.501740px;}
.x1_c01025{left:214.950000px;}
@media print{
.v0_c01025{vertical-align:0.000000pt;}
.ls2_c01025{letter-spacing:-2.666667pt;}
.ls1_c01025{letter-spacing:0.000000pt;}
.ls0_c01025{letter-spacing:2.666667pt;}
.ws0_c01025{word-spacing:-24.045333pt;}
.ws1_c01025{word-spacing:0.000000pt;}
._19_c01025{margin-left:-21.784000pt;}
._15_c01025{margin-left:-13.738667pt;}
._14_c01025{margin-left:-11.200000pt;}
._d_c01025{margin-left:-10.133333pt;}
._11_c01025{margin-left:-8.789333pt;}
._12_c01025{margin-left:-7.488000pt;}
._13_c01025{margin-left:-6.208000pt;}
._5_c01025{margin-left:-5.312000pt;}
._8_c01025{margin-left:-4.074667pt;}
._e_c01025{margin-left:-2.880000pt;}
._9_c01025{margin-left:-1.962667pt;}
._7_c01025{margin-left:-0.917333pt;}
._6_c01025{width:0.896000pt;}
._4_c01025{width:2.325333pt;}
._3_c01025{width:3.520000pt;}
._1_c01025{width:4.416000pt;}
._2_c01025{width:6.080000pt;}
._f_c01025{width:7.040000pt;}
._0_c01025{width:7.936000pt;}
._16_c01025{width:8.984000pt;}
._a_c01025{width:10.752000pt;}
._b_c01025{width:12.160000pt;}
._c_c01025{width:13.397333pt;}
._17_c01025{width:16.384000pt;}
._10_c01025{width:153.344000pt;}
._18_c01025{width:215.232000pt;}
.fs4_c01025{font-size:42.666667pt;}
.fs2_c01025{font-size:50.666667pt;}
.fs1_c01025{font-size:56.000000pt;}
.fs0_c01025{font-size:64.000000pt;}
.fs3_c01025{font-size:77.333333pt;}
.y0_c01025{bottom:0.000000pt;}
.y1e_c01025{bottom:2.760000pt;}
.y1d_c01025{bottom:6.425204pt;}
.y1c_c01025{bottom:69.186667pt;}
.y1b_c01025{bottom:93.186667pt;}
.y1a_c01025{bottom:114.786667pt;}
.y19_c01025{bottom:137.320000pt;}
.y18_c01025{bottom:158.920000pt;}
.y17_c01025{bottom:181.186667pt;}
.y16_c01025{bottom:202.386667pt;}
.y15_c01025{bottom:224.920000pt;}
.y14_c01025{bottom:247.986667pt;}
.y13_c01025{bottom:268.786667pt;}
.y12_c01025{bottom:289.720000pt;}
.y11_c01025{bottom:311.720000pt;}
.y10_c01025{bottom:332.653333pt;}
.yf_c01025{bottom:353.720000pt;}
.ye_c01025{bottom:375.186667pt;}
.yd_c01025{bottom:396.520000pt;}
.yc_c01025{bottom:417.853333pt;}
.yb_c01025{bottom:438.920000pt;}
.ya_c01025{bottom:460.386667pt;}
.y9_c01025{bottom:482.120000pt;}
.y8_c01025{bottom:504.786667pt;}
.y7_c01025{bottom:526.386667pt;}
.y6_c01025{bottom:548.386667pt;}
.y5_c01025{bottom:570.786667pt;}
.y4_c01025{bottom:593.053333pt;}
.y3_c01025{bottom:615.186667pt;}
.y2_c01025{bottom:636.786667pt;}
.y1_c01025{bottom:658.786667pt;}
.h4_c01025{height:11.733399pt;}
.h5_c01025{height:38.937500pt;}
.h2_c01025{height:81.031250pt;}
.h3_c01025{height:97.912760pt;}
.h1_c01025{height:694.000000pt;}
.h0_c01025{height:694.066667pt;}
.w2_c01025{width:93.222667pt;}
.w0_c01025{width:445.666667pt;}
.w1_c01025{width:446.000000pt;}
.x0_c01025{left:0.000000pt;}
.x2_c01025{left:70.133333pt;}
.x3_c01025{left:71.733333pt;}
.x4_c01025{left:73.200000pt;}
.x5_c01025{left:74.133333pt;}
.x7_c01025{left:76.133333pt;}
.x8_c01025{left:107.333333pt;}
.x6_c01025{left:129.866667pt;}
.x9_c01025{left:180.001546pt;}
.x1_c01025{left:191.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_df633a222e44c27d7bec6c9d.woff2')format("woff");}.ff1_c01026{font-family:ff1_c01026;line-height:1.568848;font-style:normal;font-weight:normal;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_8c44a50360ef74731b42b223.woff2')format("woff");}.ff2_c01026{font-family:ff2_c01026;line-height:1.575000;font-style:normal;font-weight:normal;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_4e5c2f9fa52761ae64b56bdd.woff2')format("woff");}.ff3_c01026{font-family:ff3_c01026;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01026;src:url('chunks/assets/font_bec93d1b74b54d56182a6053.woff2')format("woff");}.ff4_c01026{font-family:ff4_c01026;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01026;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01026{font-family:ff5_c01026;line-height:1.219238;font-style: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;}
.ls2_c01026{letter-spacing:0.000000px;}
.ls0_c01026{letter-spacing:0.588000px;}
.ls1_c01026{letter-spacing:3.000000px;}
.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:-33.192000px;}
.ws0_c01026{word-spacing:-1.848000px;}
.ws2_c01026{word-spacing:0.000000px;}
._11_c01026{margin-left:-17.136000px;}
._10_c01026{margin-left:-12.888000px;}
._14_c01026{margin-left:-10.872000px;}
._9_c01026{margin-left:-9.000000px;}
._f_c01026{margin-left:-7.056000px;}
._b_c01026{margin-left:-5.400000px;}
._2_c01026{margin-left:-4.320000px;}
._1_c01026{margin-left:-2.664000px;}
._3_c01026{margin-left:-1.152000px;}
._4_c01026{width:1.080000px;}
._8_c01026{width:2.088000px;}
._5_c01026{width:3.096000px;}
._6_c01026{width:4.392000px;}
._7_c01026{width:5.400000px;}
._12_c01026{width:6.408000px;}
._a_c01026{width:7.560000px;}
._c_c01026{width:8.712000px;}
._16_c01026{width:10.800000px;}
._15_c01026{width:12.216000px;}
._e_c01026{width:14.832000px;}
._d_c01026{width:16.200000px;}
._13_c01026{width:17.424000px;}
._0_c01026{width:29.232000px;}
._17_c01026{width:36.063000px;}
._18_c01026{width:291.438000px;}
.fc2_c01026{color:transparent;}
.fc1_c01026{color:rgb(128,128,128);}
.fc0_c01026{color:rgb(0,0,0);}
.fs4_c01026{font-size:48.000000px;}
.fs2_c01026{font-size:54.000000px;}
.fs1_c01026{font-size:63.000000px;}
.fs0_c01026{font-size:72.000000px;}
.fs3_c01026{font-size:81.000000px;}
.y0_c01026{bottom:0.000000px;}
.y1f_c01026{bottom:3.105000px;}
.y1e_c01026{bottom:7.228369px;}
.y1d_c01026{bottom:50.520000px;}
.y1c_c01026{bottom:77.220000px;}
.y1b_c01026{bottom:102.570000px;}
.y1a_c01026{bottom:126.420000px;}
.y19_c01026{bottom:151.770000px;}
.y18_c01026{bottom:177.120000px;}
.y17_c01026{bottom:202.170000px;}
.y16_c01026{bottom:226.770000px;}
.y15_c01026{bottom:251.370000px;}
.y14_c01026{bottom:276.120000px;}
.y13_c01026{bottom:300.720000px;}
.y12_c01026{bottom:323.970000px;}
.y11_c01026{bottom:347.970000px;}
.y10_c01026{bottom:371.820000px;}
.yf_c01026{bottom:396.120000px;}
.ye_c01026{bottom:421.170000px;}
.yd_c01026{bottom:445.470000px;}
.yc_c01026{bottom:470.070000px;}
.yb_c01026{bottom:495.420000px;}
.ya_c01026{bottom:519.720000px;}
.y9_c01026{bottom:544.020000px;}
.y8_c01026{bottom:568.320000px;}
.y7_c01026{bottom:593.970000px;}
.y6_c01026{bottom:618.870000px;}
.y5_c01026{bottom:642.270000px;}
.y4_c01026{bottom:666.270000px;}
.y3_c01026{bottom:692.520000px;}
.y2_c01026{bottom:714.720000px;}
.y1_c01026{bottom:739.170000px;}
.h4_c01026{height:13.200073px;}
.h5_c01026{height:43.804688px;}
.h3_c01026{height:81.632812px;}
.h2_c01026{height:91.160156px;}
.h0_c01026{height:781.350000px;}
.h1_c01026{height:781.500000px;}
.w2_c01026{width:104.875500px;}
.w0_c01026{width:549.450000px;}
.w1_c01026{width:549.750000px;}
.x0_c01026{left:0.000000px;}
.x3_c01026{left:31.350000px;}
.x2_c01026{left:33.150000px;}
.x4_c01026{left:35.400000px;}
.x6_c01026{left:226.539230px;}
.x5_c01026{left:246.000000px;}
.x1_c01026{left:377.700000px;}
@media print{
.v0_c01026{vertical-align:0.000000pt;}
.ls2_c01026{letter-spacing:0.000000pt;}
.ls0_c01026{letter-spacing:0.522667pt;}
.ls1_c01026{letter-spacing:2.666667pt;}
.ws1_c01026{word-spacing:-29.504000pt;}
.ws0_c01026{word-spacing:-1.642667pt;}
.ws2_c01026{word-spacing:0.000000pt;}
._11_c01026{margin-left:-15.232000pt;}
._10_c01026{margin-left:-11.456000pt;}
._14_c01026{margin-left:-9.664000pt;}
._9_c01026{margin-left:-8.000000pt;}
._f_c01026{margin-left:-6.272000pt;}
._b_c01026{margin-left:-4.800000pt;}
._2_c01026{margin-left:-3.840000pt;}
._1_c01026{margin-left:-2.368000pt;}
._3_c01026{margin-left:-1.024000pt;}
._4_c01026{width:0.960000pt;}
._8_c01026{width:1.856000pt;}
._5_c01026{width:2.752000pt;}
._6_c01026{width:3.904000pt;}
._7_c01026{width:4.800000pt;}
._12_c01026{width:5.696000pt;}
._a_c01026{width:6.720000pt;}
._c_c01026{width:7.744000pt;}
._16_c01026{width:9.600000pt;}
._15_c01026{width:10.858667pt;}
._e_c01026{width:13.184000pt;}
._d_c01026{width:14.400000pt;}
._13_c01026{width:15.488000pt;}
._0_c01026{width:25.984000pt;}
._17_c01026{width:32.056000pt;}
._18_c01026{width:259.056000pt;}
.fs4_c01026{font-size:42.666667pt;}
.fs2_c01026{font-size:48.000000pt;}
.fs1_c01026{font-size:56.000000pt;}
.fs0_c01026{font-size:64.000000pt;}
.fs3_c01026{font-size:72.000000pt;}
.y0_c01026{bottom:0.000000pt;}
.y1f_c01026{bottom:2.760000pt;}
.y1e_c01026{bottom:6.425217pt;}
.y1d_c01026{bottom:44.906667pt;}
.y1c_c01026{bottom:68.640000pt;}
.y1b_c01026{bottom:91.173333pt;}
.y1a_c01026{bottom:112.373333pt;}
.y19_c01026{bottom:134.906667pt;}
.y18_c01026{bottom:157.440000pt;}
.y17_c01026{bottom:179.706667pt;}
.y16_c01026{bottom:201.573333pt;}
.y15_c01026{bottom:223.440000pt;}
.y14_c01026{bottom:245.440000pt;}
.y13_c01026{bottom:267.306667pt;}
.y12_c01026{bottom:287.973333pt;}
.y11_c01026{bottom:309.306667pt;}
.y10_c01026{bottom:330.506667pt;}
.yf_c01026{bottom:352.106667pt;}
.ye_c01026{bottom:374.373333pt;}
.yd_c01026{bottom:395.973333pt;}
.yc_c01026{bottom:417.840000pt;}
.yb_c01026{bottom:440.373333pt;}
.ya_c01026{bottom:461.973333pt;}
.y9_c01026{bottom:483.573333pt;}
.y8_c01026{bottom:505.173333pt;}
.y7_c01026{bottom:527.973333pt;}
.y6_c01026{bottom:550.106667pt;}
.y5_c01026{bottom:570.906667pt;}
.y4_c01026{bottom:592.240000pt;}
.y3_c01026{bottom:615.573333pt;}
.y2_c01026{bottom:635.306667pt;}
.y1_c01026{bottom:657.040000pt;}
.h4_c01026{height:11.733399pt;}
.h5_c01026{height:38.937500pt;}
.h3_c01026{height:72.562500pt;}
.h2_c01026{height:81.031250pt;}
.h0_c01026{height:694.533333pt;}
.h1_c01026{height:694.666667pt;}
.w2_c01026{width:93.222667pt;}
.w0_c01026{width:488.400000pt;}
.w1_c01026{width:488.666667pt;}
.x0_c01026{left:0.000000pt;}
.x3_c01026{left:27.866667pt;}
.x2_c01026{left:29.466667pt;}
.x4_c01026{left:31.466667pt;}
.x6_c01026{left:201.368205pt;}
.x5_c01026{left:218.666667pt;}
.x1_c01026{left:335.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8a6fcb863a1dd4889e2b693d.woff2')format("woff");}.ff1_c01027{font-family:ff1_c01027;line-height:1.480469;font-style:normal;font-weight:normal;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_b234b47eda59ed21b190eecc.woff2')format("woff");}.ff2_c01027{font-family:ff2_c01027;line-height:1.568848;font-style:normal;font-weight:normal;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_517b66357ba9398e68832c5b.woff2')format("woff");}.ff3_c01027{font-family:ff3_c01027;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01027{font-family:ff4_c01027;line-height:1.219238;font-style: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;}
.ls2_c01027{letter-spacing:-3.000000px;}
.ls0_c01027{letter-spacing:0.000000px;}
.ls1_c01027{letter-spacing:3.000000px;}
.sc__c01027{text-shadow:none;}
.sc0_c01027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01027{-webkit-text-stroke:0px transparent;}
.sc0_c01027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01027{word-spacing:-23.136000px;}
.ws4_c01027{word-spacing:-20.352000px;}
.ws0_c01027{word-spacing:-17.352000px;}
.ws2_c01027{word-spacing:-0.084000px;}
.ws5_c01027{word-spacing:0.000000px;}
.ws3_c01027{word-spacing:9.300000px;}
._18_c01027{margin-left:-15.480000px;}
._e_c01027{margin-left:-14.256000px;}
._16_c01027{margin-left:-12.744000px;}
._f_c01027{margin-left:-10.296000px;}
._c_c01027{margin-left:-9.288000px;}
._d_c01027{margin-left:-7.776000px;}
._10_c01027{margin-left:-6.552000px;}
._b_c01027{margin-left:-5.400000px;}
._14_c01027{margin-left:-4.392000px;}
._8_c01027{margin-left:-2.952000px;}
._7_c01027{margin-left:-1.800000px;}
._a_c01027{width:1.080000px;}
._6_c01027{width:2.088000px;}
._5_c01027{width:3.312000px;}
._13_c01027{width:4.320000px;}
._2_c01027{width:5.328000px;}
._15_c01027{width:6.696000px;}
._12_c01027{width:7.776000px;}
._3_c01027{width:9.504000px;}
._4_c01027{width:10.944000px;}
._0_c01027{width:12.528000px;}
._9_c01027{width:13.656000px;}
._1_c01027{width:14.832000px;}
._17_c01027{width:15.840000px;}
._1f_c01027{width:19.980000px;}
._1b_c01027{width:22.035000px;}
._1e_c01027{width:25.008000px;}
._1d_c01027{width:26.328000px;}
._1c_c01027{width:27.792000px;}
._1a_c01027{width:37.872000px;}
._11_c01027{width:191.520000px;}
._19_c01027{width:429.384000px;}
.fc2_c01027{color:transparent;}
.fc1_c01027{color:rgb(128,128,128);}
.fc0_c01027{color:rgb(0,0,0);}
.fs5_c01027{font-size:48.000000px;}
.fs4_c01027{font-size:60.000000px;}
.fs0_c01027{font-size:72.000000px;}
.fs2_c01027{font-size:84.000000px;}
.fs3_c01027{font-size:93.000000px;}
.fs1_c01027{font-size:96.000000px;}
.y0_c01027{bottom:0.000000px;}
.y1f_c01027{bottom:3.105000px;}
.y1e_c01027{bottom:7.228355px;}
.y1d_c01027{bottom:67.485000px;}
.y1c_c01027{bottom:90.135000px;}
.y1b_c01027{bottom:115.785000px;}
.y1a_c01027{bottom:138.735000px;}
.y19_c01027{bottom:164.685000px;}
.y18_c01027{bottom:189.285000px;}
.y17_c01027{bottom:214.335000px;}
.y16_c01027{bottom:239.535000px;}
.y15_c01027{bottom:263.535000px;}
.y14_c01027{bottom:288.135000px;}
.y13_c01027{bottom:312.435000px;}
.y12_c01027{bottom:337.485000px;}
.y11_c01027{bottom:361.785000px;}
.y10_c01027{bottom:386.685000px;}
.yf_c01027{bottom:409.335000px;}
.ye_c01027{bottom:434.235000px;}
.yd_c01027{bottom:457.335000px;}
.yc_c01027{bottom:481.935000px;}
.yb_c01027{bottom:506.535000px;}
.ya_c01027{bottom:531.585000px;}
.y9_c01027{bottom:555.435000px;}
.y8_c01027{bottom:576.735000px;}
.y7_c01027{bottom:604.335000px;}
.y6_c01027{bottom:629.385000px;}
.y5_c01027{bottom:655.785000px;}
.y4_c01027{bottom:679.035000px;}
.y3_c01027{bottom:704.985000px;}
.y2_c01027{bottom:729.585000px;}
.y1_c01027{bottom:755.235000px;}
.h5_c01027{height:13.200074px;}
.h6_c01027{height:43.804688px;}
.h2_c01027{height:91.160156px;}
.h3_c01027{height:112.359375px;}
.h4_c01027{height:117.748535px;}
.h0_c01027{height:795.675000px;}
.h1_c01027{height:795.750000px;}
.w1_c01027{width:104.875500px;}
.w0_c01027{width:516.000000px;}
.x0_c01027{left:0.000000px;}
.xa_c01027{left:89.400000px;}
.x9_c01027{left:91.500000px;}
.x8_c01027{left:93.450000px;}
.x7_c01027{left:94.950000px;}
.x6_c01027{left:96.900000px;}
.x5_c01027{left:99.900000px;}
.x4_c01027{left:102.300000px;}
.x3_c01027{left:103.350000px;}
.x2_c01027{left:105.900000px;}
.xc_c01027{left:209.814240px;}
.x1_c01027{left:242.100000px;}
.xb_c01027{left:425.700000px;}
@media print{
.v0_c01027{vertical-align:0.000000pt;}
.ls2_c01027{letter-spacing:-2.666667pt;}
.ls0_c01027{letter-spacing:0.000000pt;}
.ls1_c01027{letter-spacing:2.666667pt;}
.ws1_c01027{word-spacing:-20.565333pt;}
.ws4_c01027{word-spacing:-18.090667pt;}
.ws0_c01027{word-spacing:-15.424000pt;}
.ws2_c01027{word-spacing:-0.074667pt;}
.ws5_c01027{word-spacing:0.000000pt;}
.ws3_c01027{word-spacing:8.266667pt;}
._18_c01027{margin-left:-13.760000pt;}
._e_c01027{margin-left:-12.672000pt;}
._16_c01027{margin-left:-11.328000pt;}
._f_c01027{margin-left:-9.152000pt;}
._c_c01027{margin-left:-8.256000pt;}
._d_c01027{margin-left:-6.912000pt;}
._10_c01027{margin-left:-5.824000pt;}
._b_c01027{margin-left:-4.800000pt;}
._14_c01027{margin-left:-3.904000pt;}
._8_c01027{margin-left:-2.624000pt;}
._7_c01027{margin-left:-1.600000pt;}
._a_c01027{width:0.960000pt;}
._6_c01027{width:1.856000pt;}
._5_c01027{width:2.944000pt;}
._13_c01027{width:3.840000pt;}
._2_c01027{width:4.736000pt;}
._15_c01027{width:5.952000pt;}
._12_c01027{width:6.912000pt;}
._3_c01027{width:8.448000pt;}
._4_c01027{width:9.728000pt;}
._0_c01027{width:11.136000pt;}
._9_c01027{width:12.138667pt;}
._1_c01027{width:13.184000pt;}
._17_c01027{width:14.080000pt;}
._1f_c01027{width:17.760000pt;}
._1b_c01027{width:19.586667pt;}
._1e_c01027{width:22.229333pt;}
._1d_c01027{width:23.402667pt;}
._1c_c01027{width:24.704000pt;}
._1a_c01027{width:33.664000pt;}
._11_c01027{width:170.240000pt;}
._19_c01027{width:381.674667pt;}
.fs5_c01027{font-size:42.666667pt;}
.fs4_c01027{font-size:53.333333pt;}
.fs0_c01027{font-size:64.000000pt;}
.fs2_c01027{font-size:74.666667pt;}
.fs3_c01027{font-size:82.666667pt;}
.fs1_c01027{font-size:85.333333pt;}
.y0_c01027{bottom:0.000000pt;}
.y1f_c01027{bottom:2.760000pt;}
.y1e_c01027{bottom:6.425204pt;}
.y1d_c01027{bottom:59.986667pt;}
.y1c_c01027{bottom:80.120000pt;}
.y1b_c01027{bottom:102.920000pt;}
.y1a_c01027{bottom:123.320000pt;}
.y19_c01027{bottom:146.386667pt;}
.y18_c01027{bottom:168.253333pt;}
.y17_c01027{bottom:190.520000pt;}
.y16_c01027{bottom:212.920000pt;}
.y15_c01027{bottom:234.253333pt;}
.y14_c01027{bottom:256.120000pt;}
.y13_c01027{bottom:277.720000pt;}
.y12_c01027{bottom:299.986667pt;}
.y11_c01027{bottom:321.586667pt;}
.y10_c01027{bottom:343.720000pt;}
.yf_c01027{bottom:363.853333pt;}
.ye_c01027{bottom:385.986667pt;}
.yd_c01027{bottom:406.520000pt;}
.yc_c01027{bottom:428.386667pt;}
.yb_c01027{bottom:450.253333pt;}
.ya_c01027{bottom:472.520000pt;}
.y9_c01027{bottom:493.720000pt;}
.y8_c01027{bottom:512.653333pt;}
.y7_c01027{bottom:537.186667pt;}
.y6_c01027{bottom:559.453333pt;}
.y5_c01027{bottom:582.920000pt;}
.y4_c01027{bottom:603.586667pt;}
.y3_c01027{bottom:626.653333pt;}
.y2_c01027{bottom:648.520000pt;}
.y1_c01027{bottom:671.320000pt;}
.h5_c01027{height:11.733399pt;}
.h6_c01027{height:38.937500pt;}
.h2_c01027{height:81.031250pt;}
.h3_c01027{height:99.875000pt;}
.h4_c01027{height:104.665365pt;}
.h0_c01027{height:707.266667pt;}
.h1_c01027{height:707.333333pt;}
.w1_c01027{width:93.222667pt;}
.w0_c01027{width:458.666667pt;}
.x0_c01027{left:0.000000pt;}
.xa_c01027{left:79.466667pt;}
.x9_c01027{left:81.333333pt;}
.x8_c01027{left:83.066667pt;}
.x7_c01027{left:84.400000pt;}
.x6_c01027{left:86.133333pt;}
.x5_c01027{left:88.800000pt;}
.x4_c01027{left:90.933333pt;}
.x3_c01027{left:91.866667pt;}
.x2_c01027{left:94.133333pt;}
.xc_c01027{left:186.501546pt;}
.x1_c01027{left:215.200000pt;}
.xb_c01027{left:378.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8d20270e3500ebde0ccf5f62.woff2')format("woff");}.ff1_c01028{font-family:ff1_c01028;line-height:1.480469;font-style:normal;font-weight:normal;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_9b0d4db2c4fa90b02322c649.woff2')format("woff");}.ff2_c01028{font-family:ff2_c01028;line-height:1.568848;font-style:normal;font-weight:normal;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_3b9f8748e1793792fdda2a39.woff2')format("woff");}.ff3_c01028{font-family:ff3_c01028;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01028;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01028{font-family:ff4_c01028;line-height:1.219238;font-style: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;}
.ls2_c01028{letter-spacing:-3.000000px;}
.ls0_c01028{letter-spacing:0.000000px;}
.ls1_c01028{letter-spacing:3.000000px;}
.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;}
}
.ws0_c01028{word-spacing:0.000000px;}
._18_c01028{margin-left:-16.488000px;}
._17_c01028{margin-left:-13.392000px;}
._a_c01028{margin-left:-11.952000px;}
._16_c01028{margin-left:-10.152000px;}
._9_c01028{margin-left:-8.424000px;}
._14_c01028{margin-left:-7.416000px;}
._11_c01028{margin-left:-6.048000px;}
._13_c01028{margin-left:-4.464000px;}
._b_c01028{margin-left:-2.520000px;}
._e_c01028{margin-left:-1.296000px;}
._c_c01028{width:1.440000px;}
._d_c01028{width:2.448000px;}
._f_c01028{width:4.320000px;}
._2_c01028{width:5.976000px;}
._4_c01028{width:6.984000px;}
._1_c01028{width:9.144000px;}
._15_c01028{width:10.152000px;}
._3_c01028{width:11.520000px;}
._12_c01028{width:13.608000px;}
._0_c01028{width:15.408000px;}
._5_c01028{width:18.648000px;}
._1a_c01028{width:24.648000px;}
._8_c01028{width:26.424000px;}
._7_c01028{width:38.304000px;}
._10_c01028{width:262.944000px;}
._6_c01028{width:371.448000px;}
._19_c01028{width:882.432000px;}
.fc2_c01028{color:transparent;}
.fc1_c01028{color:rgb(128,128,128);}
.fc0_c01028{color:rgb(0,0,0);}
.fs3_c01028{font-size:48.000000px;}
.fs2_c01028{font-size:63.000000px;}
.fs0_c01028{font-size:72.000000px;}
.fs1_c01028{font-size:87.000000px;}
.y0_c01028{bottom:0.000000px;}
.y1f_c01028{bottom:3.105000px;}
.y1e_c01028{bottom:7.228363px;}
.y1d_c01028{bottom:58.350000px;}
.y1c_c01028{bottom:87.750000px;}
.y1b_c01028{bottom:114.150000px;}
.y1a_c01028{bottom:139.350000px;}
.y19_c01028{bottom:164.400000px;}
.y18_c01028{bottom:189.000000px;}
.y17_c01028{bottom:214.350000px;}
.y16_c01028{bottom:238.350000px;}
.y15_c01028{bottom:262.200000px;}
.y14_c01028{bottom:286.950000px;}
.y13_c01028{bottom:311.550000px;}
.y12_c01028{bottom:334.500000px;}
.y11_c01028{bottom:358.200000px;}
.y10_c01028{bottom:381.450000px;}
.yf_c01028{bottom:406.050000px;}
.ye_c01028{bottom:431.250000px;}
.yd_c01028{bottom:458.250000px;}
.yc_c01028{bottom:482.850000px;}
.yb_c01028{bottom:504.600000px;}
.ya_c01028{bottom:528.900000px;}
.y9_c01028{bottom:554.550000px;}
.y8_c01028{bottom:579.150000px;}
.y7_c01028{bottom:603.450000px;}
.y6_c01028{bottom:626.850000px;}
.y5_c01028{bottom:651.450000px;}
.y4_c01028{bottom:676.800000px;}
.y3_c01028{bottom:701.700000px;}
.y2_c01028{bottom:724.650000px;}
.y1_c01028{bottom:751.500000px;}
.h4_c01028{height:13.200074px;}
.h5_c01028{height:43.804688px;}
.h1_c01028{height:84.269531px;}
.h2_c01028{height:91.160156px;}
.h3_c01028{height:110.151855px;}
.h0_c01028{height:789.750000px;}
.w2_c01028{width:104.875500px;}
.w0_c01028{width:524.850000px;}
.w1_c01028{width:525.000000px;}
.x0_c01028{left:0.000000px;}
.x2_c01028{left:33.150000px;}
.x3_c01028{left:35.400000px;}
.x4_c01028{left:36.750000px;}
.x5_c01028{left:37.800000px;}
.x1_c01028{left:142.350000px;}
.x6_c01028{left:158.400000px;}
.x7_c01028{left:214.239258px;}
@media print{
.v0_c01028{vertical-align:0.000000pt;}
.ls2_c01028{letter-spacing:-2.666667pt;}
.ls0_c01028{letter-spacing:0.000000pt;}
.ls1_c01028{letter-spacing:2.666667pt;}
.ws0_c01028{word-spacing:0.000000pt;}
._18_c01028{margin-left:-14.656000pt;}
._17_c01028{margin-left:-11.904000pt;}
._a_c01028{margin-left:-10.624000pt;}
._16_c01028{margin-left:-9.024000pt;}
._9_c01028{margin-left:-7.488000pt;}
._14_c01028{margin-left:-6.592000pt;}
._11_c01028{margin-left:-5.376000pt;}
._13_c01028{margin-left:-3.968000pt;}
._b_c01028{margin-left:-2.240000pt;}
._e_c01028{margin-left:-1.152000pt;}
._c_c01028{width:1.280000pt;}
._d_c01028{width:2.176000pt;}
._f_c01028{width:3.840000pt;}
._2_c01028{width:5.312000pt;}
._4_c01028{width:6.208000pt;}
._1_c01028{width:8.128000pt;}
._15_c01028{width:9.024000pt;}
._3_c01028{width:10.240000pt;}
._12_c01028{width:12.096000pt;}
._0_c01028{width:13.696000pt;}
._5_c01028{width:16.576000pt;}
._1a_c01028{width:21.909333pt;}
._8_c01028{width:23.488000pt;}
._7_c01028{width:34.048000pt;}
._10_c01028{width:233.728000pt;}
._6_c01028{width:330.176000pt;}
._19_c01028{width:784.384000pt;}
.fs3_c01028{font-size:42.666667pt;}
.fs2_c01028{font-size:56.000000pt;}
.fs0_c01028{font-size:64.000000pt;}
.fs1_c01028{font-size:77.333333pt;}
.y0_c01028{bottom:0.000000pt;}
.y1f_c01028{bottom:2.760000pt;}
.y1e_c01028{bottom:6.425212pt;}
.y1d_c01028{bottom:51.866667pt;}
.y1c_c01028{bottom:78.000000pt;}
.y1b_c01028{bottom:101.466667pt;}
.y1a_c01028{bottom:123.866667pt;}
.y19_c01028{bottom:146.133333pt;}
.y18_c01028{bottom:168.000000pt;}
.y17_c01028{bottom:190.533333pt;}
.y16_c01028{bottom:211.866667pt;}
.y15_c01028{bottom:233.066667pt;}
.y14_c01028{bottom:255.066667pt;}
.y13_c01028{bottom:276.933333pt;}
.y12_c01028{bottom:297.333333pt;}
.y11_c01028{bottom:318.400000pt;}
.y10_c01028{bottom:339.066667pt;}
.yf_c01028{bottom:360.933333pt;}
.ye_c01028{bottom:383.333333pt;}
.yd_c01028{bottom:407.333333pt;}
.yc_c01028{bottom:429.200000pt;}
.yb_c01028{bottom:448.533333pt;}
.ya_c01028{bottom:470.133333pt;}
.y9_c01028{bottom:492.933333pt;}
.y8_c01028{bottom:514.800000pt;}
.y7_c01028{bottom:536.400000pt;}
.y6_c01028{bottom:557.200000pt;}
.y5_c01028{bottom:579.066667pt;}
.y4_c01028{bottom:601.600000pt;}
.y3_c01028{bottom:623.733333pt;}
.y2_c01028{bottom:644.133333pt;}
.y1_c01028{bottom:668.000000pt;}
.h4_c01028{height:11.733399pt;}
.h5_c01028{height:38.937500pt;}
.h1_c01028{height:74.906250pt;}
.h2_c01028{height:81.031250pt;}
.h3_c01028{height:97.912760pt;}
.h0_c01028{height:702.000000pt;}
.w2_c01028{width:93.222667pt;}
.w0_c01028{width:466.533333pt;}
.w1_c01028{width:466.666667pt;}
.x0_c01028{left:0.000000pt;}
.x2_c01028{left:29.466667pt;}
.x3_c01028{left:31.466667pt;}
.x4_c01028{left:32.666667pt;}
.x5_c01028{left:33.600000pt;}
.x1_c01028{left:126.533333pt;}
.x6_c01028{left:140.800000pt;}
.x7_c01028{left:190.434896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cf9779cef698cee4be665f08.woff2')format("woff");}.ff1_c01029{font-family:ff1_c01029;line-height:1.284180;font-style:normal;font-weight:normal;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_26a87128aa466e6587d88252.woff2')format("woff");}.ff2_c01029{font-family:ff2_c01029;line-height:1.568848;font-style:normal;font-weight:normal;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_aebc17dffbf20881e11c83b3.woff2')format("woff");}.ff3_c01029{font-family:ff3_c01029;line-height:1.480469;font-style:normal;font-weight:normal;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_05b38880db1dc7bc2964039b.woff2')format("woff");}.ff4_c01029{font-family:ff4_c01029;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01029;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c01029{font-family:ff5_c01029;line-height:1.284668;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01029{font-family:ff6_c01029;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01029{vertical-align:0.000000px;}
.ls2_c01029{letter-spacing:-3.000000px;}
.ls0_c01029{letter-spacing:0.000000px;}
.ls1_c01029{letter-spacing:3.000000px;}
.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:-17.352000px;}
.ws1_c01029{word-spacing:0.000000px;}
._15_c01029{margin-left:-15.696000px;}
._16_c01029{margin-left:-14.544000px;}
._17_c01029{margin-left:-12.984000px;}
._4_c01029{margin-left:-11.592000px;}
._8_c01029{margin-left:-9.936000px;}
._12_c01029{margin-left:-8.784000px;}
._7_c01029{margin-left:-7.416000px;}
._e_c01029{margin-left:-6.264000px;}
._5_c01029{margin-left:-5.184000px;}
._a_c01029{margin-left:-3.456000px;}
._3_c01029{margin-left:-2.304000px;}
._b_c01029{margin-left:-1.080000px;}
._0_c01029{width:1.512000px;}
._6_c01029{width:2.952000px;}
._c_c01029{width:4.176000px;}
._9_c01029{width:5.256000px;}
._13_c01029{width:6.336000px;}
._11_c01029{width:7.344000px;}
._1_c01029{width:8.652000px;}
._10_c01029{width:9.936000px;}
._14_c01029{width:11.016000px;}
._d_c01029{width:12.816000px;}
._2_c01029{width:14.364000px;}
._1a_c01029{width:15.696000px;}
._19_c01029{width:25.872000px;}
._1c_c01029{width:50.721000px;}
._1b_c01029{width:142.272000px;}
._f_c01029{width:163.800000px;}
._18_c01029{width:227.280000px;}
._1d_c01029{width:364.059000px;}
.fc2_c01029{color:transparent;}
.fc1_c01029{color:rgb(128,128,128);}
.fc0_c01029{color:rgb(0,0,0);}
.fs3_c01029{font-size:48.000000px;}
.fs1_c01029{font-size:72.000000px;}
.fs0_c01029{font-size:84.000000px;}
.fs2_c01029{font-size:93.000000px;}
.y0_c01029{bottom:0.000000px;}
.y1f_c01029{bottom:3.105000px;}
.y1e_c01029{bottom:7.228371px;}
.y1d_c01029{bottom:59.115000px;}
.y1c_c01029{bottom:85.515000px;}
.y1b_c01029{bottom:109.665000px;}
.y1a_c01029{bottom:134.415000px;}
.y19_c01029{bottom:159.015000px;}
.y18_c01029{bottom:184.665000px;}
.y17_c01029{bottom:209.265000px;}
.y16_c01029{bottom:234.915000px;}
.y15_c01029{bottom:258.915000px;}
.y14_c01029{bottom:283.965000px;}
.y13_c01029{bottom:307.815000px;}
.y12_c01029{bottom:332.865000px;}
.y11_c01029{bottom:356.865000px;}
.y10_c01029{bottom:381.765000px;}
.yf_c01029{bottom:405.465000px;}
.ye_c01029{bottom:429.765000px;}
.yd_c01029{bottom:454.065000px;}
.yc_c01029{bottom:478.215000px;}
.yb_c01029{bottom:502.215000px;}
.ya_c01029{bottom:526.815000px;}
.y9_c01029{bottom:551.565000px;}
.y8_c01029{bottom:576.765000px;}
.y7_c01029{bottom:601.215000px;}
.y6_c01029{bottom:624.465000px;}
.y5_c01029{bottom:650.715000px;}
.y4_c01029{bottom:675.765000px;}
.y3_c01029{bottom:700.365000px;}
.y2_c01029{bottom:725.265000px;}
.y1_c01029{bottom:750.315000px;}
.h5_c01029{height:13.200074px;}
.h6_c01029{height:43.804688px;}
.h2_c01029{height:82.400391px;}
.h3_c01029{height:91.160156px;}
.h4_c01029{height:93.726562px;}
.h0_c01029{height:787.875000px;}
.h1_c01029{height:788.250000px;}
.w2_c01029{width:104.875500px;}
.w0_c01029{width:505.425000px;}
.w1_c01029{width:505.500000px;}
.x0_c01029{left:0.000000px;}
.x6_c01029{left:87.000000px;}
.x3_c01029{left:88.650000px;}
.x2_c01029{left:90.450000px;}
.x5_c01029{left:91.500000px;}
.x4_c01029{left:92.700000px;}
.x7_c01029{left:143.100000px;}
.x8_c01029{left:204.526749px;}
.x1_c01029{left:209.850000px;}
@media print{
.v0_c01029{vertical-align:0.000000pt;}
.ls2_c01029{letter-spacing:-2.666667pt;}
.ls0_c01029{letter-spacing:0.000000pt;}
.ls1_c01029{letter-spacing:2.666667pt;}
.ws0_c01029{word-spacing:-15.424000pt;}
.ws1_c01029{word-spacing:0.000000pt;}
._15_c01029{margin-left:-13.952000pt;}
._16_c01029{margin-left:-12.928000pt;}
._17_c01029{margin-left:-11.541333pt;}
._4_c01029{margin-left:-10.304000pt;}
._8_c01029{margin-left:-8.832000pt;}
._12_c01029{margin-left:-7.808000pt;}
._7_c01029{margin-left:-6.592000pt;}
._e_c01029{margin-left:-5.568000pt;}
._5_c01029{margin-left:-4.608000pt;}
._a_c01029{margin-left:-3.072000pt;}
._3_c01029{margin-left:-2.048000pt;}
._b_c01029{margin-left:-0.960000pt;}
._0_c01029{width:1.344000pt;}
._6_c01029{width:2.624000pt;}
._c_c01029{width:3.712000pt;}
._9_c01029{width:4.672000pt;}
._13_c01029{width:5.632000pt;}
._11_c01029{width:6.528000pt;}
._1_c01029{width:7.690667pt;}
._10_c01029{width:8.832000pt;}
._14_c01029{width:9.792000pt;}
._d_c01029{width:11.392000pt;}
._2_c01029{width:12.768000pt;}
._1a_c01029{width:13.952000pt;}
._19_c01029{width:22.997333pt;}
._1c_c01029{width:45.085333pt;}
._1b_c01029{width:126.464000pt;}
._f_c01029{width:145.600000pt;}
._18_c01029{width:202.026667pt;}
._1d_c01029{width:323.608000pt;}
.fs3_c01029{font-size:42.666667pt;}
.fs1_c01029{font-size:64.000000pt;}
.fs0_c01029{font-size:74.666667pt;}
.fs2_c01029{font-size:82.666667pt;}
.y0_c01029{bottom:0.000000pt;}
.y1f_c01029{bottom:2.760000pt;}
.y1e_c01029{bottom:6.425219pt;}
.y1d_c01029{bottom:52.546667pt;}
.y1c_c01029{bottom:76.013333pt;}
.y1b_c01029{bottom:97.480000pt;}
.y1a_c01029{bottom:119.480000pt;}
.y19_c01029{bottom:141.346667pt;}
.y18_c01029{bottom:164.146667pt;}
.y17_c01029{bottom:186.013333pt;}
.y16_c01029{bottom:208.813333pt;}
.y15_c01029{bottom:230.146667pt;}
.y14_c01029{bottom:252.413333pt;}
.y13_c01029{bottom:273.613333pt;}
.y12_c01029{bottom:295.880000pt;}
.y11_c01029{bottom:317.213333pt;}
.y10_c01029{bottom:339.346667pt;}
.yf_c01029{bottom:360.413333pt;}
.ye_c01029{bottom:382.013333pt;}
.yd_c01029{bottom:403.613333pt;}
.yc_c01029{bottom:425.080000pt;}
.yb_c01029{bottom:446.413333pt;}
.ya_c01029{bottom:468.280000pt;}
.y9_c01029{bottom:490.280000pt;}
.y8_c01029{bottom:512.680000pt;}
.y7_c01029{bottom:534.413333pt;}
.y6_c01029{bottom:555.080000pt;}
.y5_c01029{bottom:578.413333pt;}
.y4_c01029{bottom:600.680000pt;}
.y3_c01029{bottom:622.546667pt;}
.y2_c01029{bottom:644.680000pt;}
.y1_c01029{bottom:666.946667pt;}
.h5_c01029{height:11.733399pt;}
.h6_c01029{height:38.937500pt;}
.h2_c01029{height:73.244792pt;}
.h3_c01029{height:81.031250pt;}
.h4_c01029{height:83.312500pt;}
.h0_c01029{height:700.333333pt;}
.h1_c01029{height:700.666667pt;}
.w2_c01029{width:93.222667pt;}
.w0_c01029{width:449.266667pt;}
.w1_c01029{width:449.333333pt;}
.x0_c01029{left:0.000000pt;}
.x6_c01029{left:77.333333pt;}
.x3_c01029{left:78.800000pt;}
.x2_c01029{left:80.400000pt;}
.x5_c01029{left:81.333333pt;}
.x4_c01029{left:82.400000pt;}
.x7_c01029{left:127.200000pt;}
.x8_c01029{left:181.801554pt;}
.x1_c01029{left:186.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1f1d559b90c4597b81ebb107.woff2')format("woff");}.ff1_c01030{font-family:ff1_c01030;line-height:1.480469;font-style:normal;font-weight:normal;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_65b03df12cf8b1c6dd32619e.woff2')format("woff");}.ff2_c01030{font-family:ff2_c01030;line-height:1.284180;font-style:normal;font-weight:normal;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_3de66b6c658c0376160a90a9.woff2')format("woff");}.ff3_c01030{font-family:ff3_c01030;line-height:1.568848;font-style:normal;font-weight:normal;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_907c0f896c4b54681cbf1de9.woff2')format("woff");}.ff4_c01030{font-family:ff4_c01030;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01030;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01030{font-family:ff5_c01030;line-height:1.219238;font-style: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);}
.v0_c01030{vertical-align:0.000000px;}
.ls6_c01030{letter-spacing:-3.000000px;}
.ls3_c01030{letter-spacing:0.000000px;}
.ls4_c01030{letter-spacing:3.000000px;}
.ls1_c01030{letter-spacing:3.588000px;}
.ls0_c01030{letter-spacing:14.400000px;}
.ls5_c01030{letter-spacing:15.000000px;}
.ls2_c01030{letter-spacing:22.656000px;}
.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:-27.051000px;}
.ws2_c01030{word-spacing:-20.352000px;}
.ws0_c01030{word-spacing:-17.352000px;}
.ws3_c01030{word-spacing:0.000000px;}
._b_c01030{margin-left:-17.784000px;}
._14_c01030{margin-left:-13.824000px;}
._17_c01030{margin-left:-12.312000px;}
._11_c01030{margin-left:-10.872000px;}
._10_c01030{margin-left:-9.504000px;}
._15_c01030{margin-left:-7.632000px;}
._7_c01030{margin-left:-6.624000px;}
._f_c01030{margin-left:-5.256000px;}
._e_c01030{margin-left:-4.176000px;}
._8_c01030{margin-left:-2.952000px;}
._9_c01030{margin-left:-1.512000px;}
._3_c01030{width:1.224000px;}
._1_c01030{width:2.376000px;}
._0_c01030{width:3.456000px;}
._2_c01030{width:4.968000px;}
._c_c01030{width:6.768000px;}
._d_c01030{width:8.424000px;}
._6_c01030{width:10.296000px;}
._5_c01030{width:11.304000px;}
._12_c01030{width:12.960000px;}
._a_c01030{width:14.544000px;}
._16_c01030{width:16.176000px;}
._18_c01030{width:18.096000px;}
._1c_c01030{width:29.808000px;}
._13_c01030{width:97.776000px;}
._19_c01030{width:210.960000px;}
._1a_c01030{width:233.208000px;}
._1d_c01030{width:327.384000px;}
._4_c01030{width:333.864000px;}
._1b_c01030{width:723.480000px;}
.fc2_c01030{color:transparent;}
.fc1_c01030{color:rgb(128,128,128);}
.fc0_c01030{color:rgb(0,0,0);}
.fs4_c01030{font-size:48.000000px;}
.fs3_c01030{font-size:63.000000px;}
.fs2_c01030{font-size:66.000000px;}
.fs0_c01030{font-size:72.000000px;}
.fs1_c01030{font-size:78.000000px;}
.y0_c01030{bottom:0.000000px;}
.y1f_c01030{bottom:3.105000px;}
.y1e_c01030{bottom:7.228363px;}
.y1d_c01030{bottom:54.300000px;}
.y1c_c01030{bottom:79.950000px;}
.y1b_c01030{bottom:108.900000px;}
.y1a_c01030{bottom:133.350000px;}
.y19_c01030{bottom:157.950000px;}
.y18_c01030{bottom:184.650000px;}
.y17_c01030{bottom:209.550000px;}
.y16_c01030{bottom:233.250000px;}
.y15_c01030{bottom:258.900000px;}
.y14_c01030{bottom:282.150000px;}
.y13_c01030{bottom:308.700000px;}
.y12_c01030{bottom:332.700000px;}
.y11_c01030{bottom:356.100000px;}
.y10_c01030{bottom:380.400000px;}
.yf_c01030{bottom:405.300000px;}
.ye_c01030{bottom:430.350000px;}
.yd_c01030{bottom:456.000000px;}
.yc_c01030{bottom:479.850000px;}
.yb_c01030{bottom:503.850000px;}
.ya_c01030{bottom:528.150000px;}
.y9_c01030{bottom:553.800000px;}
.y8_c01030{bottom:578.550000px;}
.y7_c01030{bottom:604.200000px;}
.y6_c01030{bottom:628.050000px;}
.y5_c01030{bottom:655.500000px;}
.y4_c01030{bottom:677.700000px;}
.y3_c01030{bottom:702.300000px;}
.y2_c01030{bottom:727.950000px;}
.y1_c01030{bottom:751.500000px;}
.h5_c01030{height:13.200074px;}
.h6_c01030{height:43.804688px;}
.h4_c01030{height:83.563477px;}
.h2_c01030{height:84.269531px;}
.h3_c01030{height:91.160156px;}
.h0_c01030{height:784.350000px;}
.h1_c01030{height:784.500000px;}
.w2_c01030{width:104.875500px;}
.w0_c01030{width:538.125000px;}
.w1_c01030{width:538.500000px;}
.x0_c01030{left:0.000000px;}
.x3_c01030{left:34.050000px;}
.x4_c01030{left:35.100000px;}
.x5_c01030{left:36.150000px;}
.x6_c01030{left:38.250000px;}
.x7_c01030{left:39.450000px;}
.x8_c01030{left:40.500000px;}
.xa_c01030{left:41.850000px;}
.x9_c01030{left:42.900000px;}
.x2_c01030{left:134.550000px;}
.x1_c01030{left:155.400000px;}
.xb_c01030{left:220.876740px;}
@media print{
.v0_c01030{vertical-align:0.000000pt;}
.ls6_c01030{letter-spacing:-2.666667pt;}
.ls3_c01030{letter-spacing:0.000000pt;}
.ls4_c01030{letter-spacing:2.666667pt;}
.ls1_c01030{letter-spacing:3.189333pt;}
.ls0_c01030{letter-spacing:12.800000pt;}
.ls5_c01030{letter-spacing:13.333333pt;}
.ls2_c01030{letter-spacing:20.138667pt;}
.ws1_c01030{word-spacing:-24.045333pt;}
.ws2_c01030{word-spacing:-18.090667pt;}
.ws0_c01030{word-spacing:-15.424000pt;}
.ws3_c01030{word-spacing:0.000000pt;}
._b_c01030{margin-left:-15.808000pt;}
._14_c01030{margin-left:-12.288000pt;}
._17_c01030{margin-left:-10.944000pt;}
._11_c01030{margin-left:-9.664000pt;}
._10_c01030{margin-left:-8.448000pt;}
._15_c01030{margin-left:-6.784000pt;}
._7_c01030{margin-left:-5.888000pt;}
._f_c01030{margin-left:-4.672000pt;}
._e_c01030{margin-left:-3.712000pt;}
._8_c01030{margin-left:-2.624000pt;}
._9_c01030{margin-left:-1.344000pt;}
._3_c01030{width:1.088000pt;}
._1_c01030{width:2.112000pt;}
._0_c01030{width:3.072000pt;}
._2_c01030{width:4.416000pt;}
._c_c01030{width:6.016000pt;}
._d_c01030{width:7.488000pt;}
._6_c01030{width:9.152000pt;}
._5_c01030{width:10.048000pt;}
._12_c01030{width:11.520000pt;}
._a_c01030{width:12.928000pt;}
._16_c01030{width:14.378667pt;}
._18_c01030{width:16.085333pt;}
._1c_c01030{width:26.496000pt;}
._13_c01030{width:86.912000pt;}
._19_c01030{width:187.520000pt;}
._1a_c01030{width:207.296000pt;}
._1d_c01030{width:291.008000pt;}
._4_c01030{width:296.768000pt;}
._1b_c01030{width:643.093333pt;}
.fs4_c01030{font-size:42.666667pt;}
.fs3_c01030{font-size:56.000000pt;}
.fs2_c01030{font-size:58.666667pt;}
.fs0_c01030{font-size:64.000000pt;}
.fs1_c01030{font-size:69.333333pt;}
.y0_c01030{bottom:0.000000pt;}
.y1f_c01030{bottom:2.760000pt;}
.y1e_c01030{bottom:6.425212pt;}
.y1d_c01030{bottom:48.266667pt;}
.y1c_c01030{bottom:71.066667pt;}
.y1b_c01030{bottom:96.800000pt;}
.y1a_c01030{bottom:118.533333pt;}
.y19_c01030{bottom:140.400000pt;}
.y18_c01030{bottom:164.133333pt;}
.y17_c01030{bottom:186.266667pt;}
.y16_c01030{bottom:207.333333pt;}
.y15_c01030{bottom:230.133333pt;}
.y14_c01030{bottom:250.800000pt;}
.y13_c01030{bottom:274.400000pt;}
.y12_c01030{bottom:295.733333pt;}
.y11_c01030{bottom:316.533333pt;}
.y10_c01030{bottom:338.133333pt;}
.yf_c01030{bottom:360.266667pt;}
.ye_c01030{bottom:382.533333pt;}
.yd_c01030{bottom:405.333333pt;}
.yc_c01030{bottom:426.533333pt;}
.yb_c01030{bottom:447.866667pt;}
.ya_c01030{bottom:469.466667pt;}
.y9_c01030{bottom:492.266667pt;}
.y8_c01030{bottom:514.266667pt;}
.y7_c01030{bottom:537.066667pt;}
.y6_c01030{bottom:558.266667pt;}
.y5_c01030{bottom:582.666667pt;}
.y4_c01030{bottom:602.400000pt;}
.y3_c01030{bottom:624.266667pt;}
.y2_c01030{bottom:647.066667pt;}
.y1_c01030{bottom:668.000000pt;}
.h5_c01030{height:11.733399pt;}
.h6_c01030{height:38.937500pt;}
.h4_c01030{height:74.278646pt;}
.h2_c01030{height:74.906250pt;}
.h3_c01030{height:81.031250pt;}
.h0_c01030{height:697.200000pt;}
.h1_c01030{height:697.333333pt;}
.w2_c01030{width:93.222667pt;}
.w0_c01030{width:478.333333pt;}
.w1_c01030{width:478.666667pt;}
.x0_c01030{left:0.000000pt;}
.x3_c01030{left:30.266667pt;}
.x4_c01030{left:31.200000pt;}
.x5_c01030{left:32.133333pt;}
.x6_c01030{left:34.000000pt;}
.x7_c01030{left:35.066667pt;}
.x8_c01030{left:36.000000pt;}
.xa_c01030{left:37.200000pt;}
.x9_c01030{left:38.133333pt;}
.x2_c01030{left:119.600000pt;}
.x1_c01030{left:138.133333pt;}
.xb_c01030{left:196.334880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1100db0847039358e7143de9.woff2')format("woff");}.ff1_c01031{font-family:ff1_c01031;line-height:1.480469;font-style:normal;font-weight:normal;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_995e5a9c0abae3985862d3d9.woff2')format("woff");}.ff2_c01031{font-family:ff2_c01031;line-height:1.568848;font-style:normal;font-weight:normal;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_6ffca6bb2ef020323113544c.woff2')format("woff");}.ff3_c01031{font-family:ff3_c01031;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01031;src:url('chunks/assets/font_1baab31b3aca010b1256b44d.woff2')format("woff");}.ff4_c01031{font-family:ff4_c01031;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01031{font-family:ff5_c01031;line-height:1.219238;font-style: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;}
.ls2_c01031{letter-spacing:-9.000000px;}
.ls0_c01031{letter-spacing:-3.000000px;}
.ls1_c01031{letter-spacing:0.000000px;}
.sc__c01031{text-shadow:none;}
.sc0_c01031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01031{-webkit-text-stroke:0px transparent;}
.sc0_c01031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01031{word-spacing:-21.051000px;}
.ws0_c01031{word-spacing:-17.352000px;}
.ws2_c01031{word-spacing:0.000000px;}
._12_c01031{margin-left:-27.627000px;}
._19_c01031{margin-left:-13.575000px;}
._17_c01031{margin-left:-11.346000px;}
._c_c01031{margin-left:-9.048000px;}
._16_c01031{margin-left:-7.488000px;}
._11_c01031{margin-left:-6.219000px;}
._2_c01031{margin-left:-5.046000px;}
._d_c01031{margin-left:-3.567000px;}
._3_c01031{margin-left:-2.436000px;}
._4_c01031{margin-left:-1.392000px;}
._0_c01031{width:1.131000px;}
._1_c01031{width:2.610000px;}
._5_c01031{width:3.888000px;}
._6_c01031{width:5.094000px;}
._9_c01031{width:7.074000px;}
._8_c01031{width:8.352000px;}
._7_c01031{width:9.762000px;}
._a_c01031{width:10.950000px;}
._10_c01031{width:12.021000px;}
._18_c01031{width:13.281000px;}
._e_c01031{width:14.358000px;}
._b_c01031{width:15.360000px;}
._14_c01031{width:18.375000px;}
._f_c01031{width:20.190000px;}
._1b_c01031{width:21.768000px;}
._15_c01031{width:23.313000px;}
._1a_c01031{width:28.557000px;}
._13_c01031{width:30.708000px;}
.fc2_c01031{color:transparent;}
.fc1_c01031{color:rgb(128,128,128);}
.fc0_c01031{color:rgb(0,0,0);}
.fs4_c01031{font-size:48.000000px;}
.fs2_c01031{font-size:57.000000px;}
.fs3_c01031{font-size:63.000000px;}
.fs1_c01031{font-size:72.000000px;}
.fs0_c01031{font-size:87.000000px;}
.y0_c01031{bottom:0.000000px;}
.y1e_c01031{bottom:3.105000px;}
.y1d_c01031{bottom:7.228357px;}
.y1c_c01031{bottom:78.330000px;}
.y1b_c01031{bottom:102.330000px;}
.y1a_c01031{bottom:129.330000px;}
.y19_c01031{bottom:152.880000px;}
.y18_c01031{bottom:178.230000px;}
.y17_c01031{bottom:202.830000px;}
.y16_c01031{bottom:228.180000px;}
.y15_c01031{bottom:252.780000px;}
.y14_c01031{bottom:278.880000px;}
.y13_c01031{bottom:302.730000px;}
.y12_c01031{bottom:327.330000px;}
.y11_c01031{bottom:351.030000px;}
.y10_c01031{bottom:375.630000px;}
.yf_c01031{bottom:399.630000px;}
.ye_c01031{bottom:425.280000px;}
.yd_c01031{bottom:447.930000px;}
.yc_c01031{bottom:470.580000px;}
.yb_c01031{bottom:496.230000px;}
.ya_c01031{bottom:521.430000px;}
.y9_c01031{bottom:545.430000px;}
.y8_c01031{bottom:569.430000px;}
.y7_c01031{bottom:594.030000px;}
.y6_c01031{bottom:618.330000px;}
.y5_c01031{bottom:642.930000px;}
.y4_c01031{bottom:667.680000px;}
.y3_c01031{bottom:692.280000px;}
.y2_c01031{bottom:716.580000px;}
.y1_c01031{bottom:742.530000px;}
.h4_c01031{height:13.200074px;}
.h5_c01031{height:43.804688px;}
.h3_c01031{height:91.160156px;}
.h2_c01031{height:110.151855px;}
.h0_c01031{height:780.600000px;}
.h1_c01031{height:780.750000px;}
.w2_c01031{width:104.875500px;}
.w0_c01031{width:511.350000px;}
.w1_c01031{width:511.500000px;}
.x0_c01031{left:0.000000px;}
.x4_c01031{left:69.150000px;}
.x2_c01031{left:72.900000px;}
.x3_c01031{left:73.950000px;}
.x5_c01031{left:75.000000px;}
.x7_c01031{left:76.650000px;}
.x6_c01031{left:77.700000px;}
.x1_c01031{left:204.900000px;}
.x8_c01031{left:207.489258px;}
@media print{
.v0_c01031{vertical-align:0.000000pt;}
.ls2_c01031{letter-spacing:-8.000000pt;}
.ls0_c01031{letter-spacing:-2.666667pt;}
.ls1_c01031{letter-spacing:0.000000pt;}
.ws1_c01031{word-spacing:-18.712000pt;}
.ws0_c01031{word-spacing:-15.424000pt;}
.ws2_c01031{word-spacing:0.000000pt;}
._12_c01031{margin-left:-24.557333pt;}
._19_c01031{margin-left:-12.066667pt;}
._17_c01031{margin-left:-10.085333pt;}
._c_c01031{margin-left:-8.042667pt;}
._16_c01031{margin-left:-6.656000pt;}
._11_c01031{margin-left:-5.528000pt;}
._2_c01031{margin-left:-4.485333pt;}
._d_c01031{margin-left:-3.170667pt;}
._3_c01031{margin-left:-2.165333pt;}
._4_c01031{margin-left:-1.237333pt;}
._0_c01031{width:1.005333pt;}
._1_c01031{width:2.320000pt;}
._5_c01031{width:3.456000pt;}
._6_c01031{width:4.528000pt;}
._9_c01031{width:6.288000pt;}
._8_c01031{width:7.424000pt;}
._7_c01031{width:8.677333pt;}
._a_c01031{width:9.733333pt;}
._10_c01031{width:10.685333pt;}
._18_c01031{width:11.805333pt;}
._e_c01031{width:12.762667pt;}
._b_c01031{width:13.653333pt;}
._14_c01031{width:16.333333pt;}
._f_c01031{width:17.946667pt;}
._1b_c01031{width:19.349333pt;}
._15_c01031{width:20.722667pt;}
._1a_c01031{width:25.384000pt;}
._13_c01031{width:27.296000pt;}
.fs4_c01031{font-size:42.666667pt;}
.fs2_c01031{font-size:50.666667pt;}
.fs3_c01031{font-size:56.000000pt;}
.fs1_c01031{font-size:64.000000pt;}
.fs0_c01031{font-size:77.333333pt;}
.y0_c01031{bottom:0.000000pt;}
.y1e_c01031{bottom:2.760000pt;}
.y1d_c01031{bottom:6.425206pt;}
.y1c_c01031{bottom:69.626667pt;}
.y1b_c01031{bottom:90.960000pt;}
.y1a_c01031{bottom:114.960000pt;}
.y19_c01031{bottom:135.893333pt;}
.y18_c01031{bottom:158.426667pt;}
.y17_c01031{bottom:180.293333pt;}
.y16_c01031{bottom:202.826667pt;}
.y15_c01031{bottom:224.693333pt;}
.y14_c01031{bottom:247.893333pt;}
.y13_c01031{bottom:269.093333pt;}
.y12_c01031{bottom:290.960000pt;}
.y11_c01031{bottom:312.026667pt;}
.y10_c01031{bottom:333.893333pt;}
.yf_c01031{bottom:355.226667pt;}
.ye_c01031{bottom:378.026667pt;}
.yd_c01031{bottom:398.160000pt;}
.yc_c01031{bottom:418.293333pt;}
.yb_c01031{bottom:441.093333pt;}
.ya_c01031{bottom:463.493333pt;}
.y9_c01031{bottom:484.826667pt;}
.y8_c01031{bottom:506.160000pt;}
.y7_c01031{bottom:528.026667pt;}
.y6_c01031{bottom:549.626667pt;}
.y5_c01031{bottom:571.493333pt;}
.y4_c01031{bottom:593.493333pt;}
.y3_c01031{bottom:615.360000pt;}
.y2_c01031{bottom:636.960000pt;}
.y1_c01031{bottom:660.026667pt;}
.h4_c01031{height:11.733399pt;}
.h5_c01031{height:38.937500pt;}
.h3_c01031{height:81.031250pt;}
.h2_c01031{height:97.912760pt;}
.h0_c01031{height:693.866667pt;}
.h1_c01031{height:694.000000pt;}
.w2_c01031{width:93.222667pt;}
.w0_c01031{width:454.533333pt;}
.w1_c01031{width:454.666667pt;}
.x0_c01031{left:0.000000pt;}
.x4_c01031{left:61.466667pt;}
.x2_c01031{left:64.800000pt;}
.x3_c01031{left:65.733333pt;}
.x5_c01031{left:66.666667pt;}
.x7_c01031{left:68.133333pt;}
.x6_c01031{left:69.066667pt;}
.x1_c01031{left:182.133333pt;}
.x8_c01031{left:184.434896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1fbbc5aadb4482a8fb1f91e9.woff2')format("woff");}.ff1_c01032{font-family:ff1_c01032;line-height:1.480469;font-style:normal;font-weight:normal;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_3df5a1fe75d549bfa278c925.woff2')format("woff");}.ff2_c01032{font-family:ff2_c01032;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01032;src:url('chunks/assets/font_28899971b3068dc580d2b01b.woff2')format("woff");}.ff3_c01032{font-family:ff3_c01032;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01032;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01032{font-family:ff4_c01032;line-height:1.219238;font-style: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;}
.v1_c01032{vertical-align:13.800000px;}
.ls1_c01032{letter-spacing:0.000000px;}
.ls0_c01032{letter-spacing:29.400000px;}
.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;}
}
.ws1_c01032{word-spacing:-39.000000px;}
.ws0_c01032{word-spacing:-17.352000px;}
.ws2_c01032{word-spacing:0.000000px;}
._12_c01032{margin-left:-35.352000px;}
._20_c01032{margin-left:-22.920000px;}
._19_c01032{margin-left:-15.120000px;}
._21_c01032{margin-left:-10.800000px;}
._10_c01032{margin-left:-9.168000px;}
._11_c01032{margin-left:-7.920000px;}
._13_c01032{margin-left:-6.336000px;}
._14_c01032{margin-left:-5.256000px;}
._f_c01032{margin-left:-4.104000px;}
._e_c01032{margin-left:-3.024000px;}
._d_c01032{margin-left:-1.800000px;}
._9_c01032{width:1.008000px;}
._5_c01032{width:2.016000px;}
._6_c01032{width:3.456000px;}
._2_c01032{width:4.752000px;}
._7_c01032{width:6.696000px;}
._c_c01032{width:7.776000px;}
._3_c01032{width:9.072000px;}
._4_c01032{width:10.584000px;}
._8_c01032{width:11.736000px;}
._a_c01032{width:13.320000px;}
._b_c01032{width:15.696000px;}
._1_c01032{width:22.104000px;}
._16_c01032{width:23.304000px;}
._1b_c01032{width:26.928000px;}
._0_c01032{width:30.528000px;}
._1a_c01032{width:36.648000px;}
._1c_c01032{width:64.872000px;}
._1f_c01032{width:69.600000px;}
._1d_c01032{width:148.056000px;}
._15_c01032{width:196.344000px;}
._1e_c01032{width:238.608000px;}
._18_c01032{width:287.064000px;}
._17_c01032{width:322.944000px;}
.fc2_c01032{color:transparent;}
.fc1_c01032{color:rgb(128,128,128);}
.fc0_c01032{color:rgb(0,0,0);}
.fs3_c01032{font-size:48.000000px;}
.fs1_c01032{font-size:60.000000px;}
.fs0_c01032{font-size:72.000000px;}
.fs2_c01032{font-size:78.000000px;}
.y0_c01032{bottom:0.000000px;}
.y1f_c01032{bottom:3.105000px;}
.y1e_c01032{bottom:7.228369px;}
.y1d_c01032{bottom:76.920000px;}
.y1c_c01032{bottom:90.120000px;}
.y1b_c01032{bottom:102.870000px;}
.y1a_c01032{bottom:127.620000px;}
.y19_c01032{bottom:153.270000px;}
.y18_c01032{bottom:177.420000px;}
.y17_c01032{bottom:201.420000px;}
.y16_c01032{bottom:227.370000px;}
.y15_c01032{bottom:251.820000px;}
.y14_c01032{bottom:276.420000px;}
.y13_c01032{bottom:301.320000px;}
.y12_c01032{bottom:325.020000px;}
.y11_c01032{bottom:347.520000px;}
.y10_c01032{bottom:368.070000px;}
.yf_c01032{bottom:395.220000px;}
.ye_c01032{bottom:420.120000px;}
.yd_c01032{bottom:444.720000px;}
.yc_c01032{bottom:470.070000px;}
.yb_c01032{bottom:496.170000px;}
.ya_c01032{bottom:519.120000px;}
.y9_c01032{bottom:547.020000px;}
.y8_c01032{bottom:570.420000px;}
.y7_c01032{bottom:594.270000px;}
.y6_c01032{bottom:619.320000px;}
.y5_c01032{bottom:643.320000px;}
.y4_c01032{bottom:669.870000px;}
.y3_c01032{bottom:692.520000px;}
.y2_c01032{bottom:716.520000px;}
.y1_c01032{bottom:741.120000px;}
.h5_c01032{height:13.200073px;}
.h6_c01032{height:43.804688px;}
.h2_c01032{height:84.269531px;}
.h3_c01032{height:91.160156px;}
.h4_c01032{height:104.960156px;}
.h1_c01032{height:778.500000px;}
.h0_c01032{height:778.650000px;}
.w2_c01032{width:104.875500px;}
.w0_c01032{width:537.600000px;}
.w1_c01032{width:537.750000px;}
.x0_c01032{left:0.000000px;}
.x8_c01032{left:36.000000px;}
.x6_c01032{left:37.050000px;}
.x2_c01032{left:38.100000px;}
.x3_c01032{left:39.450000px;}
.x4_c01032{left:41.250000px;}
.x5_c01032{left:55.350000px;}
.x7_c01032{left:142.350000px;}
.x1_c01032{left:150.900000px;}
.x9_c01032{left:220.614258px;}
@media print{
.v0_c01032{vertical-align:0.000000pt;}
.v1_c01032{vertical-align:12.266667pt;}
.ls1_c01032{letter-spacing:0.000000pt;}
.ls0_c01032{letter-spacing:26.133333pt;}
.ws1_c01032{word-spacing:-34.666667pt;}
.ws0_c01032{word-spacing:-15.424000pt;}
.ws2_c01032{word-spacing:0.000000pt;}
._12_c01032{margin-left:-31.424000pt;}
._20_c01032{margin-left:-20.373333pt;}
._19_c01032{margin-left:-13.440000pt;}
._21_c01032{margin-left:-9.600000pt;}
._10_c01032{margin-left:-8.149333pt;}
._11_c01032{margin-left:-7.040000pt;}
._13_c01032{margin-left:-5.632000pt;}
._14_c01032{margin-left:-4.672000pt;}
._f_c01032{margin-left:-3.648000pt;}
._e_c01032{margin-left:-2.688000pt;}
._d_c01032{margin-left:-1.600000pt;}
._9_c01032{width:0.896000pt;}
._5_c01032{width:1.792000pt;}
._6_c01032{width:3.072000pt;}
._2_c01032{width:4.224000pt;}
._7_c01032{width:5.952000pt;}
._c_c01032{width:6.912000pt;}
._3_c01032{width:8.064000pt;}
._4_c01032{width:9.408000pt;}
._8_c01032{width:10.432000pt;}
._a_c01032{width:11.840000pt;}
._b_c01032{width:13.952000pt;}
._1_c01032{width:19.648000pt;}
._16_c01032{width:20.714667pt;}
._1b_c01032{width:23.936000pt;}
._0_c01032{width:27.136000pt;}
._1a_c01032{width:32.576000pt;}
._1c_c01032{width:57.664000pt;}
._1f_c01032{width:61.866667pt;}
._1d_c01032{width:131.605333pt;}
._15_c01032{width:174.528000pt;}
._1e_c01032{width:212.096000pt;}
._18_c01032{width:255.168000pt;}
._17_c01032{width:287.061333pt;}
.fs3_c01032{font-size:42.666667pt;}
.fs1_c01032{font-size:53.333333pt;}
.fs0_c01032{font-size:64.000000pt;}
.fs2_c01032{font-size:69.333333pt;}
.y0_c01032{bottom:0.000000pt;}
.y1f_c01032{bottom:2.760000pt;}
.y1e_c01032{bottom:6.425217pt;}
.y1d_c01032{bottom:68.373333pt;}
.y1c_c01032{bottom:80.106667pt;}
.y1b_c01032{bottom:91.440000pt;}
.y1a_c01032{bottom:113.440000pt;}
.y19_c01032{bottom:136.240000pt;}
.y18_c01032{bottom:157.706667pt;}
.y17_c01032{bottom:179.040000pt;}
.y16_c01032{bottom:202.106667pt;}
.y15_c01032{bottom:223.840000pt;}
.y14_c01032{bottom:245.706667pt;}
.y13_c01032{bottom:267.840000pt;}
.y12_c01032{bottom:288.906667pt;}
.y11_c01032{bottom:308.906667pt;}
.y10_c01032{bottom:327.173333pt;}
.yf_c01032{bottom:351.306667pt;}
.ye_c01032{bottom:373.440000pt;}
.yd_c01032{bottom:395.306667pt;}
.yc_c01032{bottom:417.840000pt;}
.yb_c01032{bottom:441.040000pt;}
.ya_c01032{bottom:461.440000pt;}
.y9_c01032{bottom:486.240000pt;}
.y8_c01032{bottom:507.040000pt;}
.y7_c01032{bottom:528.240000pt;}
.y6_c01032{bottom:550.506667pt;}
.y5_c01032{bottom:571.840000pt;}
.y4_c01032{bottom:595.440000pt;}
.y3_c01032{bottom:615.573333pt;}
.y2_c01032{bottom:636.906667pt;}
.y1_c01032{bottom:658.773333pt;}
.h5_c01032{height:11.733399pt;}
.h6_c01032{height:38.937500pt;}
.h2_c01032{height:74.906250pt;}
.h3_c01032{height:81.031250pt;}
.h4_c01032{height:93.297917pt;}
.h1_c01032{height:692.000000pt;}
.h0_c01032{height:692.133333pt;}
.w2_c01032{width:93.222667pt;}
.w0_c01032{width:477.866667pt;}
.w1_c01032{width:478.000000pt;}
.x0_c01032{left:0.000000pt;}
.x8_c01032{left:32.000000pt;}
.x6_c01032{left:32.933333pt;}
.x2_c01032{left:33.866667pt;}
.x3_c01032{left:35.066667pt;}
.x4_c01032{left:36.666667pt;}
.x5_c01032{left:49.200000pt;}
.x7_c01032{left:126.533333pt;}
.x1_c01032{left:134.133333pt;}
.x9_c01032{left:196.101563pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce514c789b13bbcb9ad4c3b4.woff2')format("woff");}.ff1_c01033{font-family:ff1_c01033;line-height:1.480469;font-style:normal;font-weight:normal;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_e41d23696e2407082976a2b9.woff2')format("woff");}.ff2_c01033{font-family:ff2_c01033;line-height:1.568848;font-style:normal;font-weight:normal;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_d2b5b919b37293552fa4ccb9.woff2')format("woff");}.ff3_c01033{font-family:ff3_c01033;line-height:1.575000;font-style:normal;font-weight:normal;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_4b8814b6172bd9093df010d1.woff2')format("woff");}.ff4_c01033{font-family:ff4_c01033;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01033;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01033{font-family:ff5_c01033;line-height:1.219238;font-style: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;}
.ls5_c01033{letter-spacing:-9.000000px;}
.ls2_c01033{letter-spacing:-6.000000px;}
.ls4_c01033{letter-spacing:-3.000000px;}
.ls3_c01033{letter-spacing:0.000000px;}
.ls0_c01033{letter-spacing:1.017000px;}
.ls1_c01033{letter-spacing:10.188000px;}
.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;}
}
.ws3_c01033{word-spacing:-21.051000px;}
.ws4_c01033{word-spacing:-20.136000px;}
.ws2_c01033{word-spacing:-17.352000px;}
.ws0_c01033{word-spacing:-16.521000px;}
.ws5_c01033{word-spacing:0.000000px;}
.ws1_c01033{word-spacing:3.000000px;}
._13_c01033{margin-left:-21.231000px;}
._18_c01033{margin-left:-13.908000px;}
._17_c01033{margin-left:-12.495000px;}
._12_c01033{margin-left:-10.959000px;}
._10_c01033{margin-left:-9.864000px;}
._11_c01033{margin-left:-8.727000px;}
._7_c01033{margin-left:-7.332000px;}
._8_c01033{margin-left:-5.952000px;}
._6_c01033{margin-left:-4.908000px;}
._e_c01033{margin-left:-3.624000px;}
._f_c01033{margin-left:-2.376000px;}
._5_c01033{margin-left:-1.230000px;}
._0_c01033{width:1.653000px;}
._1_c01033{width:2.958000px;}
._4_c01033{width:4.029000px;}
._9_c01033{width:5.112000px;}
._3_c01033{width:6.351000px;}
._a_c01033{width:7.416000px;}
._b_c01033{width:8.712000px;}
._19_c01033{width:9.714000px;}
._c_c01033{width:10.998000px;}
._1a_c01033{width:12.192000px;}
._d_c01033{width:13.953000px;}
._14_c01033{width:15.093000px;}
._2_c01033{width:19.140000px;}
._15_c01033{width:20.676000px;}
._16_c01033{width:21.840000px;}
._1b_c01033{width:24.855000px;}
.fc2_c01033{color:transparent;}
.fc1_c01033{color:rgb(128,128,128);}
.fc0_c01033{color:rgb(0,0,0);}
.fs6_c01033{font-size:48.000000px;}
.fs4_c01033{font-size:60.000000px;}
.fs1_c01033{font-size:63.000000px;}
.fs2_c01033{font-size:72.000000px;}
.fs3_c01033{font-size:81.000000px;}
.fs0_c01033{font-size:87.000000px;}
.fs5_c01033{font-size:96.000000px;}
.y0_c01033{bottom:0.000000px;}
.y1e_c01033{bottom:3.105000px;}
.y1d_c01033{bottom:7.228363px;}
.y1c_c01033{bottom:83.100000px;}
.y1b_c01033{bottom:107.400000px;}
.y1a_c01033{bottom:133.950000px;}
.y19_c01033{bottom:159.300000px;}
.y18_c01033{bottom:185.250000px;}
.y17_c01033{bottom:209.700000px;}
.y16_c01033{bottom:236.250000px;}
.y15_c01033{bottom:258.600000px;}
.y14_c01033{bottom:283.500000px;}
.y13_c01033{bottom:311.850000px;}
.y12_c01033{bottom:332.100000px;}
.y11_c01033{bottom:356.850000px;}
.y10_c01033{bottom:381.750000px;}
.yf_c01033{bottom:406.050000px;}
.ye_c01033{bottom:432.000000px;}
.yd_c01033{bottom:454.650000px;}
.yc_c01033{bottom:478.950000px;}
.yb_c01033{bottom:504.900000px;}
.ya_c01033{bottom:528.600000px;}
.y9_c01033{bottom:552.450000px;}
.y8_c01033{bottom:576.900000px;}
.y7_c01033{bottom:601.800000px;}
.y6_c01033{bottom:627.000000px;}
.y5_c01033{bottom:651.150000px;}
.y4_c01033{bottom:676.350000px;}
.y3_c01033{bottom:699.600000px;}
.y2_c01033{bottom:724.650000px;}
.y1_c01033{bottom:750.000000px;}
.h7_c01033{height:13.200074px;}
.h8_c01033{height:43.804688px;}
.h3_c01033{height:91.160156px;}
.h5_c01033{height:92.829000px;}
.h4_c01033{height:94.803223px;}
.h2_c01033{height:110.151855px;}
.h6_c01033{height:112.359375px;}
.h0_c01033{height:792.450000px;}
.h1_c01033{height:792.750000px;}
.w2_c01033{width:104.875500px;}
.w1_c01033{width:512.250000px;}
.w0_c01033{width:512.475000px;}
.x0_c01033{left:0.000000px;}
.xa_c01033{left:66.900000px;}
.x9_c01033{left:67.950000px;}
.x6_c01033{left:76.650000px;}
.x8_c01033{left:78.750000px;}
.x7_c01033{left:80.100000px;}
.x2_c01033{left:81.450000px;}
.x5_c01033{left:82.800000px;}
.x4_c01033{left:84.150000px;}
.x3_c01033{left:85.500000px;}
.xb_c01033{left:208.051758px;}
.x1_c01033{left:215.700000px;}
@media print{
.v0_c01033{vertical-align:0.000000pt;}
.ls5_c01033{letter-spacing:-8.000000pt;}
.ls2_c01033{letter-spacing:-5.333333pt;}
.ls4_c01033{letter-spacing:-2.666667pt;}
.ls3_c01033{letter-spacing:0.000000pt;}
.ls0_c01033{letter-spacing:0.904000pt;}
.ls1_c01033{letter-spacing:9.056000pt;}
.ws3_c01033{word-spacing:-18.712000pt;}
.ws4_c01033{word-spacing:-17.898667pt;}
.ws2_c01033{word-spacing:-15.424000pt;}
.ws0_c01033{word-spacing:-14.685333pt;}
.ws5_c01033{word-spacing:0.000000pt;}
.ws1_c01033{word-spacing:2.666667pt;}
._13_c01033{margin-left:-18.872000pt;}
._18_c01033{margin-left:-12.362667pt;}
._17_c01033{margin-left:-11.106667pt;}
._12_c01033{margin-left:-9.741333pt;}
._10_c01033{margin-left:-8.768000pt;}
._11_c01033{margin-left:-7.757333pt;}
._7_c01033{margin-left:-6.517333pt;}
._8_c01033{margin-left:-5.290667pt;}
._6_c01033{margin-left:-4.362667pt;}
._e_c01033{margin-left:-3.221333pt;}
._f_c01033{margin-left:-2.112000pt;}
._5_c01033{margin-left:-1.093333pt;}
._0_c01033{width:1.469333pt;}
._1_c01033{width:2.629333pt;}
._4_c01033{width:3.581333pt;}
._9_c01033{width:4.544000pt;}
._3_c01033{width:5.645333pt;}
._a_c01033{width:6.592000pt;}
._b_c01033{width:7.744000pt;}
._19_c01033{width:8.634667pt;}
._c_c01033{width:9.776000pt;}
._1a_c01033{width:10.837333pt;}
._d_c01033{width:12.402667pt;}
._14_c01033{width:13.416000pt;}
._2_c01033{width:17.013333pt;}
._15_c01033{width:18.378667pt;}
._16_c01033{width:19.413333pt;}
._1b_c01033{width:22.093333pt;}
.fs6_c01033{font-size:42.666667pt;}
.fs4_c01033{font-size:53.333333pt;}
.fs1_c01033{font-size:56.000000pt;}
.fs2_c01033{font-size:64.000000pt;}
.fs3_c01033{font-size:72.000000pt;}
.fs0_c01033{font-size:77.333333pt;}
.fs5_c01033{font-size:85.333333pt;}
.y0_c01033{bottom:0.000000pt;}
.y1e_c01033{bottom:2.760000pt;}
.y1d_c01033{bottom:6.425212pt;}
.y1c_c01033{bottom:73.866667pt;}
.y1b_c01033{bottom:95.466667pt;}
.y1a_c01033{bottom:119.066667pt;}
.y19_c01033{bottom:141.600000pt;}
.y18_c01033{bottom:164.666667pt;}
.y17_c01033{bottom:186.400000pt;}
.y16_c01033{bottom:210.000000pt;}
.y15_c01033{bottom:229.866667pt;}
.y14_c01033{bottom:252.000000pt;}
.y13_c01033{bottom:277.200000pt;}
.y12_c01033{bottom:295.200000pt;}
.y11_c01033{bottom:317.200000pt;}
.y10_c01033{bottom:339.333333pt;}
.yf_c01033{bottom:360.933333pt;}
.ye_c01033{bottom:384.000000pt;}
.yd_c01033{bottom:404.133333pt;}
.yc_c01033{bottom:425.733333pt;}
.yb_c01033{bottom:448.800000pt;}
.ya_c01033{bottom:469.866667pt;}
.y9_c01033{bottom:491.066667pt;}
.y8_c01033{bottom:512.800000pt;}
.y7_c01033{bottom:534.933333pt;}
.y6_c01033{bottom:557.333333pt;}
.y5_c01033{bottom:578.800000pt;}
.y4_c01033{bottom:601.200000pt;}
.y3_c01033{bottom:621.866667pt;}
.y2_c01033{bottom:644.133333pt;}
.y1_c01033{bottom:666.666667pt;}
.h7_c01033{height:11.733399pt;}
.h8_c01033{height:38.937500pt;}
.h3_c01033{height:81.031250pt;}
.h5_c01033{height:82.514667pt;}
.h4_c01033{height:84.269531pt;}
.h2_c01033{height:97.912760pt;}
.h6_c01033{height:99.875000pt;}
.h0_c01033{height:704.400000pt;}
.h1_c01033{height:704.666667pt;}
.w2_c01033{width:93.222667pt;}
.w1_c01033{width:455.333333pt;}
.w0_c01033{width:455.533333pt;}
.x0_c01033{left:0.000000pt;}
.xa_c01033{left:59.466667pt;}
.x9_c01033{left:60.400000pt;}
.x6_c01033{left:68.133333pt;}
.x8_c01033{left:70.000000pt;}
.x7_c01033{left:71.200000pt;}
.x2_c01033{left:72.400000pt;}
.x5_c01033{left:73.600000pt;}
.x4_c01033{left:74.800000pt;}
.x3_c01033{left:76.000000pt;}
.xb_c01033{left:184.934896pt;}
.x1_c01033{left:191.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8c0e85cc83583903133b8025.woff2')format("woff");}.ff1_c01034{font-family:ff1_c01034;line-height:1.480469;font-style:normal;font-weight:normal;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_773e094a70a235824e732f21.woff2')format("woff");}.ff2_c01034{font-family:ff2_c01034;line-height:1.568848;font-style:normal;font-weight:normal;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_c01a57c11fa1983c23953b9c.woff2')format("woff");}.ff3_c01034{font-family:ff3_c01034;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01034;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c01034{font-family:ff4_c01034;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01034;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01034{font-family:ff5_c01034;line-height:1.219238;font-style: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;}
.ls0_c01034{letter-spacing:0.000000px;}
.ls2_c01034{letter-spacing:3.000000px;}
.ls1_c01034{letter-spacing:6.000000px;}
.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:-20.250000px;}
.ws1_c01034{word-spacing:0.000000px;}
._16_c01034{margin-left:-9.288000px;}
._10_c01034{margin-left:-6.840000px;}
._11_c01034{margin-left:-5.742000px;}
._e_c01034{margin-left:-3.762000px;}
._12_c01034{margin-left:-2.700000px;}
._b_c01034{margin-left:-1.566000px;}
._a_c01034{width:1.584000px;}
._8_c01034{width:2.880000px;}
._9_c01034{width:4.608000px;}
._3_c01034{width:5.832000px;}
._2_c01034{width:7.776000px;}
._4_c01034{width:9.576000px;}
._f_c01034{width:10.728000px;}
._1_c01034{width:12.672000px;}
._5_c01034{width:13.968000px;}
._0_c01034{width:15.552000px;}
._d_c01034{width:18.810000px;}
._c_c01034{width:21.096000px;}
._14_c01034{width:22.824000px;}
._7_c01034{width:24.192000px;}
._13_c01034{width:26.568000px;}
._6_c01034{width:370.728000px;}
._17_c01034{width:412.560000px;}
._15_c01034{width:656.784000px;}
.fc2_c01034{color:transparent;}
.fc1_c01034{color:rgb(128,128,128);}
.fc0_c01034{color:rgb(0,0,0);}
.fs4_c01034{font-size:48.000000px;}
.fs1_c01034{font-size:57.000000px;}
.fs2_c01034{font-size:63.000000px;}
.fs0_c01034{font-size:72.000000px;}
.fs3_c01034{font-size:81.000000px;}
.y0_c01034{bottom:0.000000px;}
.y1f_c01034{bottom:3.105000px;}
.y1e_c01034{bottom:7.228357px;}
.y1d_c01034{bottom:50.580000px;}
.y1c_c01034{bottom:76.380000px;}
.y1b_c01034{bottom:102.930000px;}
.y1a_c01034{bottom:127.980000px;}
.y19_c01034{bottom:153.630000px;}
.y18_c01034{bottom:178.830000px;}
.y17_c01034{bottom:203.130000px;}
.y16_c01034{bottom:228.180000px;}
.y15_c01034{bottom:253.230000px;}
.y14_c01034{bottom:278.130000px;}
.y13_c01034{bottom:302.130000px;}
.y12_c01034{bottom:325.380000px;}
.y11_c01034{bottom:348.330000px;}
.y10_c01034{bottom:372.630000px;}
.yf_c01034{bottom:396.930000px;}
.ye_c01034{bottom:421.230000px;}
.yd_c01034{bottom:445.830000px;}
.yc_c01034{bottom:471.180000px;}
.yb_c01034{bottom:495.480000px;}
.ya_c01034{bottom:519.480000px;}
.y9_c01034{bottom:543.480000px;}
.y8_c01034{bottom:568.380000px;}
.y7_c01034{bottom:594.330000px;}
.y6_c01034{bottom:618.030000px;}
.y5_c01034{bottom:641.580000px;}
.y4_c01034{bottom:666.180000px;}
.y3_c01034{bottom:690.930000px;}
.y2_c01034{bottom:715.530000px;}
.y1_c01034{bottom:740.130000px;}
.h3_c01034{height:13.200074px;}
.h4_c01034{height:43.804688px;}
.h1_c01034{height:84.269531px;}
.h2_c01034{height:91.160156px;}
.h0_c01034{height:786.000000px;}
.w1_c01034{width:104.875500px;}
.w0_c01034{width:526.500000px;}
.x0_c01034{left:0.000000px;}
.x2_c01034{left:34.800000px;}
.x3_c01034{left:36.750000px;}
.x4_c01034{left:38.700000px;}
.x5_c01034{left:50.550000px;}
.x7_c01034{left:52.350000px;}
.x6_c01034{left:82.350000px;}
.x1_c01034{left:148.500000px;}
.x8_c01034{left:215.064240px;}
@media print{
.v0_c01034{vertical-align:0.000000pt;}
.ls0_c01034{letter-spacing:0.000000pt;}
.ls2_c01034{letter-spacing:2.666667pt;}
.ls1_c01034{letter-spacing:5.333333pt;}
.ws0_c01034{word-spacing:-18.000000pt;}
.ws1_c01034{word-spacing:0.000000pt;}
._16_c01034{margin-left:-8.256000pt;}
._10_c01034{margin-left:-6.080000pt;}
._11_c01034{margin-left:-5.104000pt;}
._e_c01034{margin-left:-3.344000pt;}
._12_c01034{margin-left:-2.400000pt;}
._b_c01034{margin-left:-1.392000pt;}
._a_c01034{width:1.408000pt;}
._8_c01034{width:2.560000pt;}
._9_c01034{width:4.096000pt;}
._3_c01034{width:5.184000pt;}
._2_c01034{width:6.912000pt;}
._4_c01034{width:8.512000pt;}
._f_c01034{width:9.536000pt;}
._1_c01034{width:11.264000pt;}
._5_c01034{width:12.416000pt;}
._0_c01034{width:13.824000pt;}
._d_c01034{width:16.720000pt;}
._c_c01034{width:18.752000pt;}
._14_c01034{width:20.288000pt;}
._7_c01034{width:21.504000pt;}
._13_c01034{width:23.616000pt;}
._6_c01034{width:329.536000pt;}
._17_c01034{width:366.720000pt;}
._15_c01034{width:583.808000pt;}
.fs4_c01034{font-size:42.666667pt;}
.fs1_c01034{font-size:50.666667pt;}
.fs2_c01034{font-size:56.000000pt;}
.fs0_c01034{font-size:64.000000pt;}
.fs3_c01034{font-size:72.000000pt;}
.y0_c01034{bottom:0.000000pt;}
.y1f_c01034{bottom:2.760000pt;}
.y1e_c01034{bottom:6.425206pt;}
.y1d_c01034{bottom:44.960000pt;}
.y1c_c01034{bottom:67.893333pt;}
.y1b_c01034{bottom:91.493333pt;}
.y1a_c01034{bottom:113.760000pt;}
.y19_c01034{bottom:136.560000pt;}
.y18_c01034{bottom:158.960000pt;}
.y17_c01034{bottom:180.560000pt;}
.y16_c01034{bottom:202.826667pt;}
.y15_c01034{bottom:225.093333pt;}
.y14_c01034{bottom:247.226667pt;}
.y13_c01034{bottom:268.560000pt;}
.y12_c01034{bottom:289.226667pt;}
.y11_c01034{bottom:309.626667pt;}
.y10_c01034{bottom:331.226667pt;}
.yf_c01034{bottom:352.826667pt;}
.ye_c01034{bottom:374.426667pt;}
.yd_c01034{bottom:396.293333pt;}
.yc_c01034{bottom:418.826667pt;}
.yb_c01034{bottom:440.426667pt;}
.ya_c01034{bottom:461.760000pt;}
.y9_c01034{bottom:483.093333pt;}
.y8_c01034{bottom:505.226667pt;}
.y7_c01034{bottom:528.293333pt;}
.y6_c01034{bottom:549.360000pt;}
.y5_c01034{bottom:570.293333pt;}
.y4_c01034{bottom:592.160000pt;}
.y3_c01034{bottom:614.160000pt;}
.y2_c01034{bottom:636.026667pt;}
.y1_c01034{bottom:657.893333pt;}
.h3_c01034{height:11.733399pt;}
.h4_c01034{height:38.937500pt;}
.h1_c01034{height:74.906250pt;}
.h2_c01034{height:81.031250pt;}
.h0_c01034{height:698.666667pt;}
.w1_c01034{width:93.222667pt;}
.w0_c01034{width:468.000000pt;}
.x0_c01034{left:0.000000pt;}
.x2_c01034{left:30.933333pt;}
.x3_c01034{left:32.666667pt;}
.x4_c01034{left:34.400000pt;}
.x5_c01034{left:44.933333pt;}
.x7_c01034{left:46.533333pt;}
.x6_c01034{left:73.200000pt;}
.x1_c01034{left:132.000000pt;}
.x8_c01034{left:191.168213pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e152608dd07857a6bf0e0971.woff2')format("woff");}.ff1_c01035{font-family:ff1_c01035;line-height:1.284180;font-style:normal;font-weight:normal;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_e52b0f38fd2a632c3615abe0.woff2')format("woff");}.ff2_c01035{font-family:ff2_c01035;line-height:1.284668;font-style:normal;font-weight:normal;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_f82362befed891feb562e720.woff2')format("woff");}.ff3_c01035{font-family:ff3_c01035;line-height:1.568848;font-style:normal;font-weight:normal;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_ca31ba44191b007074972741.woff2')format("woff");}.ff4_c01035{font-family:ff4_c01035;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01035;src:url('chunks/assets/font_4b714806a1eed9e69f1a1231.woff2')format("woff");}.ff5_c01035{font-family:ff5_c01035;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01035;src:url('chunks/assets/font_25df5cf97fa31b9e89445511.woff2')format("woff");}.ff6_c01035{font-family:ff6_c01035;line-height:1.480469;font-style:normal;font-weight: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_c01035;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c01035{font-family:ff7_c01035;line-height:1.219238;font-style: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);}
.v1_c01035{vertical-align:-74.400000px;}
.v0_c01035{vertical-align:0.000000px;}
.ls4_c01035{letter-spacing:-3.000000px;}
.ls2_c01035{letter-spacing:0.000000px;}
.ls1_c01035{letter-spacing:1.002000px;}
.ls0_c01035{letter-spacing:2.898000px;}
.ls3_c01035{letter-spacing:3.000000px;}
.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;}
}
.ws2_c01035{word-spacing:-34.341000px;}
.ws3_c01035{word-spacing:-17.352000px;}
.ws0_c01035{word-spacing:-16.629000px;}
.ws1_c01035{word-spacing:-11.100000px;}
.ws4_c01035{word-spacing:0.000000px;}
._9_c01035{margin-left:-7.584000px;}
._b_c01035{margin-left:-6.300000px;}
._c_c01035{margin-left:-4.473000px;}
._12_c01035{margin-left:-3.354000px;}
._1_c01035{margin-left:-2.184000px;}
._e_c01035{margin-left:-1.155000px;}
._0_c01035{width:1.932000px;}
._7_c01035{width:3.045000px;}
._3_c01035{width:4.347000px;}
._2_c01035{width:5.670000px;}
._4_c01035{width:6.993000px;}
._5_c01035{width:8.379000px;}
._d_c01035{width:9.450000px;}
._8_c01035{width:10.563000px;}
._10_c01035{width:11.598000px;}
._a_c01035{width:12.657000px;}
._11_c01035{width:14.658000px;}
._6_c01035{width:16.497000px;}
._13_c01035{width:18.531000px;}
._14_c01035{width:20.547000px;}
._15_c01035{width:22.572000px;}
._16_c01035{width:29.016000px;}
._f_c01035{width:258.573000px;}
._17_c01035{width:321.921000px;}
.fc2_c01035{color:transparent;}
.fc1_c01035{color:rgb(128,128,128);}
.fc0_c01035{color:rgb(0,0,0);}
.fs5_c01035{font-size:36.000000px;}
.fs8_c01035{font-size:48.000000px;}
.fs4_c01035{font-size:60.000000px;}
.fs1_c01035{font-size:63.000000px;}
.fs3_c01035{font-size:69.000000px;}
.fs7_c01035{font-size:72.000000px;}
.fs6_c01035{font-size:78.000000px;}
.fs2_c01035{font-size:81.000000px;}
.fs0_c01035{font-size:84.000000px;}
.y0_c01035{bottom:0.000000px;}
.y1e_c01035{bottom:3.105000px;}
.y1d_c01035{bottom:7.228363px;}
.y1c_c01035{bottom:70.200000px;}
.y1b_c01035{bottom:97.200000px;}
.y1a_c01035{bottom:121.800000px;}
.y19_c01035{bottom:147.450000px;}
.y18_c01035{bottom:172.800000px;}
.y17_c01035{bottom:198.000000px;}
.y16_c01035{bottom:223.500000px;}
.y15_c01035{bottom:250.350000px;}
.y14_c01035{bottom:273.750000px;}
.y13_c01035{bottom:296.700000px;}
.y12_c01035{bottom:321.750000px;}
.y11_c01035{bottom:346.500000px;}
.y10_c01035{bottom:370.200000px;}
.yf_c01035{bottom:393.750000px;}
.ye_c01035{bottom:417.450000px;}
.yd_c01035{bottom:442.350000px;}
.yc_c01035{bottom:466.050000px;}
.yb_c01035{bottom:489.600000px;}
.ya_c01035{bottom:514.050000px;}
.y9_c01035{bottom:537.900000px;}
.y8_c01035{bottom:563.550000px;}
.y7_c01035{bottom:587.550000px;}
.y6_c01035{bottom:612.900000px;}
.y5_c01035{bottom:637.200000px;}
.y4_c01035{bottom:661.200000px;}
.y3_c01035{bottom:686.250000px;}
.y2_c01035{bottom:710.400000px;}
.y1_c01035{bottom:736.350000px;}
.h7_c01035{height:13.200074px;}
.h8_c01035{height:43.804688px;}
.h3_c01035{height:79.765137px;}
.h2_c01035{height:81.632812px;}
.h1_c01035{height:82.441406px;}
.h4_c01035{height:87.361816px;}
.h5_c01035{height:98.756836px;}
.h6_c01035{height:102.555176px;}
.h0_c01035{height:776.250000px;}
.w2_c01035{width:104.875500px;}
.w0_c01035{width:521.625000px;}
.w1_c01035{width:522.000000px;}
.x0_c01035{left:0.000000px;}
.x5_c01035{left:88.800000px;}
.x4_c01035{left:90.450000px;}
.x7_c01035{left:91.800000px;}
.x6_c01035{left:92.850000px;}
.x3_c01035{left:94.200000px;}
.x2_c01035{left:95.550000px;}
.x8_c01035{left:212.626740px;}
.x1_c01035{left:224.400000px;}
@media print{
.v1_c01035{vertical-align:-66.133333pt;}
.v0_c01035{vertical-align:0.000000pt;}
.ls4_c01035{letter-spacing:-2.666667pt;}
.ls2_c01035{letter-spacing:0.000000pt;}
.ls1_c01035{letter-spacing:0.890667pt;}
.ls0_c01035{letter-spacing:2.576000pt;}
.ls3_c01035{letter-spacing:2.666667pt;}
.ws2_c01035{word-spacing:-30.525333pt;}
.ws3_c01035{word-spacing:-15.424000pt;}
.ws0_c01035{word-spacing:-14.781333pt;}
.ws1_c01035{word-spacing:-9.866667pt;}
.ws4_c01035{word-spacing:0.000000pt;}
._9_c01035{margin-left:-6.741333pt;}
._b_c01035{margin-left:-5.600000pt;}
._c_c01035{margin-left:-3.976000pt;}
._12_c01035{margin-left:-2.981333pt;}
._1_c01035{margin-left:-1.941333pt;}
._e_c01035{margin-left:-1.026667pt;}
._0_c01035{width:1.717333pt;}
._7_c01035{width:2.706667pt;}
._3_c01035{width:3.864000pt;}
._2_c01035{width:5.040000pt;}
._4_c01035{width:6.216000pt;}
._5_c01035{width:7.448000pt;}
._d_c01035{width:8.400000pt;}
._8_c01035{width:9.389333pt;}
._10_c01035{width:10.309333pt;}
._a_c01035{width:11.250667pt;}
._11_c01035{width:13.029333pt;}
._6_c01035{width:14.664000pt;}
._13_c01035{width:16.472000pt;}
._14_c01035{width:18.264000pt;}
._15_c01035{width:20.064000pt;}
._16_c01035{width:25.792000pt;}
._f_c01035{width:229.842667pt;}
._17_c01035{width:286.152000pt;}
.fs5_c01035{font-size:32.000000pt;}
.fs8_c01035{font-size:42.666667pt;}
.fs4_c01035{font-size:53.333333pt;}
.fs1_c01035{font-size:56.000000pt;}
.fs3_c01035{font-size:61.333333pt;}
.fs7_c01035{font-size:64.000000pt;}
.fs6_c01035{font-size:69.333333pt;}
.fs2_c01035{font-size:72.000000pt;}
.fs0_c01035{font-size:74.666667pt;}
.y0_c01035{bottom:0.000000pt;}
.y1e_c01035{bottom:2.760000pt;}
.y1d_c01035{bottom:6.425212pt;}
.y1c_c01035{bottom:62.400000pt;}
.y1b_c01035{bottom:86.400000pt;}
.y1a_c01035{bottom:108.266667pt;}
.y19_c01035{bottom:131.066667pt;}
.y18_c01035{bottom:153.600000pt;}
.y17_c01035{bottom:176.000000pt;}
.y16_c01035{bottom:198.666667pt;}
.y15_c01035{bottom:222.533333pt;}
.y14_c01035{bottom:243.333333pt;}
.y13_c01035{bottom:263.733333pt;}
.y12_c01035{bottom:286.000000pt;}
.y11_c01035{bottom:308.000000pt;}
.y10_c01035{bottom:329.066667pt;}
.yf_c01035{bottom:350.000000pt;}
.ye_c01035{bottom:371.066667pt;}
.yd_c01035{bottom:393.200000pt;}
.yc_c01035{bottom:414.266667pt;}
.yb_c01035{bottom:435.200000pt;}
.ya_c01035{bottom:456.933333pt;}
.y9_c01035{bottom:478.133333pt;}
.y8_c01035{bottom:500.933333pt;}
.y7_c01035{bottom:522.266667pt;}
.y6_c01035{bottom:544.800000pt;}
.y5_c01035{bottom:566.400000pt;}
.y4_c01035{bottom:587.733333pt;}
.y3_c01035{bottom:610.000000pt;}
.y2_c01035{bottom:631.466667pt;}
.y1_c01035{bottom:654.533333pt;}
.h7_c01035{height:11.733399pt;}
.h8_c01035{height:38.937500pt;}
.h3_c01035{height:70.902344pt;}
.h2_c01035{height:72.562500pt;}
.h1_c01035{height:73.281250pt;}
.h4_c01035{height:77.654948pt;}
.h5_c01035{height:87.783854pt;}
.h6_c01035{height:91.160156pt;}
.h0_c01035{height:690.000000pt;}
.w2_c01035{width:93.222667pt;}
.w0_c01035{width:463.666667pt;}
.w1_c01035{width:464.000000pt;}
.x0_c01035{left:0.000000pt;}
.x5_c01035{left:78.933333pt;}
.x4_c01035{left:80.400000pt;}
.x7_c01035{left:81.600000pt;}
.x6_c01035{left:82.533333pt;}
.x3_c01035{left:83.733333pt;}
.x2_c01035{left:84.933333pt;}
.x8_c01035{left:189.001546pt;}
.x1_c01035{left:199.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e6baad6b48b9c54bfcce79ed.woff2')format("woff");}.ff1_c01036{font-family:ff1_c01036;line-height:1.480469;font-style:normal;font-weight:normal;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_67cc6a30c67151d0e48875cd.woff2')format("woff");}.ff2_c01036{font-family:ff2_c01036;line-height:1.284180;font-style:normal;font-weight:normal;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_1468a49582c827233298e081.woff2')format("woff");}.ff3_c01036{font-family:ff3_c01036;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01036;src:url('chunks/assets/font_c59119afe74a69675d461d42.woff2')format("woff");}.ff4_c01036{font-family:ff4_c01036;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01036;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01036{font-family:ff5_c01036;line-height:1.219238;font-style: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);}
.v1_c01036{vertical-align:-108.000000px;}
.v0_c01036{vertical-align:0.000000px;}
.ls4_c01036{letter-spacing:-3.000000px;}
.ls5_c01036{letter-spacing:0.000000px;}
.ls2_c01036{letter-spacing:0.588000px;}
.ls1_c01036{letter-spacing:10.608000px;}
.ls3_c01036{letter-spacing:11.388000px;}
.ls6_c01036{letter-spacing:12.000000px;}
.ls0_c01036{letter-spacing:15.000000px;}
.sc__c01036{text-shadow:none;}
.sc0_c01036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01036{-webkit-text-stroke:0px transparent;}
.sc0_c01036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01036{word-spacing:-28.629000px;}
.ws3_c01036{word-spacing:-17.352000px;}
.ws0_c01036{word-spacing:-13.629000px;}
.ws4_c01036{word-spacing:0.000000px;}
.ws1_c01036{word-spacing:6.726000px;}
._13_c01036{margin-left:-21.942000px;}
._14_c01036{margin-left:-17.457000px;}
._17_c01036{margin-left:-11.460000px;}
._16_c01036{margin-left:-8.403000px;}
._18_c01036{margin-left:-7.209000px;}
._4_c01036{margin-left:-6.141000px;}
._f_c01036{margin-left:-4.314000px;}
._a_c01036{margin-left:-3.282000px;}
._11_c01036{margin-left:-2.253000px;}
._d_c01036{margin-left:-1.209000px;}
._9_c01036{width:2.001000px;}
._5_c01036{width:3.831000px;}
._3_c01036{width:4.863000px;}
._2_c01036{width:6.624000px;}
._b_c01036{width:8.385000px;}
._c_c01036{width:9.660000px;}
._6_c01036{width:10.905000px;}
._12_c01036{width:11.919000px;}
._15_c01036{width:14.031000px;}
._1_c01036{width:15.111000px;}
._e_c01036{width:18.315000px;}
._10_c01036{width:20.181000px;}
._19_c01036{width:21.741000px;}
._0_c01036{width:25.737000px;}
._8_c01036{width:29.946000px;}
._1a_c01036{width:138.933000px;}
._7_c01036{width:311.529000px;}
.fc2_c01036{color:transparent;}
.fc1_c01036{color:rgb(128,128,128);}
.fc0_c01036{color:rgb(0,0,0);}
.fs4_c01036{font-size:48.000000px;}
.fs1_c01036{font-size:60.000000px;}
.fs3_c01036{font-size:63.000000px;}
.fs0_c01036{font-size:69.000000px;}
.fs2_c01036{font-size:72.000000px;}
.y0_c01036{bottom:0.000000px;}
.y1e_c01036{bottom:3.105000px;}
.y1d_c01036{bottom:7.228363px;}
.y1c_c01036{bottom:71.850000px;}
.y1b_c01036{bottom:99.000000px;}
.y1a_c01036{bottom:124.500000px;}
.y19_c01036{bottom:150.150000px;}
.y18_c01036{bottom:173.250000px;}
.y17_c01036{bottom:198.450000px;}
.y16_c01036{bottom:222.150000px;}
.y15_c01036{bottom:249.450000px;}
.y14_c01036{bottom:273.450000px;}
.y13_c01036{bottom:298.800000px;}
.y12_c01036{bottom:322.350000px;}
.y11_c01036{bottom:343.350000px;}
.y10_c01036{bottom:368.550000px;}
.yf_c01036{bottom:393.600000px;}
.ye_c01036{bottom:417.600000px;}
.yd_c01036{bottom:442.200000px;}
.yc_c01036{bottom:467.550000px;}
.yb_c01036{bottom:492.150000px;}
.ya_c01036{bottom:516.150000px;}
.y9_c01036{bottom:541.050000px;}
.y8_c01036{bottom:566.100000px;}
.y7_c01036{bottom:590.700000px;}
.y6_c01036{bottom:615.000000px;}
.y5_c01036{bottom:640.200000px;}
.y4_c01036{bottom:664.650000px;}
.y3_c01036{bottom:689.550000px;}
.y2_c01036{bottom:714.450000px;}
.y1_c01036{bottom:739.800000px;}
.h5_c01036{height:13.200074px;}
.h6_c01036{height:43.804688px;}
.h2_c01036{height:80.758301px;}
.h3_c01036{height:87.361816px;}
.h4_c01036{height:91.160156px;}
.h0_c01036{height:778.950000px;}
.h1_c01036{height:779.250000px;}
.w2_c01036{width:104.875500px;}
.w1_c01036{width:532.500000px;}
.w0_c01036{width:532.725000px;}
.x0_c01036{left:0.000000px;}
.x9_c01036{left:25.950000px;}
.x8_c01036{left:27.300000px;}
.x7_c01036{left:28.350000px;}
.x3_c01036{left:30.000000px;}
.x2_c01036{left:31.050000px;}
.x4_c01036{left:32.100000px;}
.x5_c01036{left:33.150000px;}
.x6_c01036{left:34.200000px;}
.x1_c01036{left:153.600000px;}
.xa_c01036{left:218.176758px;}
@media print{
.v1_c01036{vertical-align:-96.000000pt;}
.v0_c01036{vertical-align:0.000000pt;}
.ls4_c01036{letter-spacing:-2.666667pt;}
.ls5_c01036{letter-spacing:0.000000pt;}
.ls2_c01036{letter-spacing:0.522667pt;}
.ls1_c01036{letter-spacing:9.429333pt;}
.ls3_c01036{letter-spacing:10.122667pt;}
.ls6_c01036{letter-spacing:10.666667pt;}
.ls0_c01036{letter-spacing:13.333333pt;}
.ws2_c01036{word-spacing:-25.448000pt;}
.ws3_c01036{word-spacing:-15.424000pt;}
.ws0_c01036{word-spacing:-12.114667pt;}
.ws4_c01036{word-spacing:0.000000pt;}
.ws1_c01036{word-spacing:5.978667pt;}
._13_c01036{margin-left:-19.504000pt;}
._14_c01036{margin-left:-15.517333pt;}
._17_c01036{margin-left:-10.186667pt;}
._16_c01036{margin-left:-7.469333pt;}
._18_c01036{margin-left:-6.408000pt;}
._4_c01036{margin-left:-5.458667pt;}
._f_c01036{margin-left:-3.834667pt;}
._a_c01036{margin-left:-2.917333pt;}
._11_c01036{margin-left:-2.002667pt;}
._d_c01036{margin-left:-1.074667pt;}
._9_c01036{width:1.778667pt;}
._5_c01036{width:3.405333pt;}
._3_c01036{width:4.322667pt;}
._2_c01036{width:5.888000pt;}
._b_c01036{width:7.453333pt;}
._c_c01036{width:8.586667pt;}
._6_c01036{width:9.693333pt;}
._12_c01036{width:10.594667pt;}
._15_c01036{width:12.472000pt;}
._1_c01036{width:13.432000pt;}
._e_c01036{width:16.280000pt;}
._10_c01036{width:17.938667pt;}
._19_c01036{width:19.325333pt;}
._0_c01036{width:22.877333pt;}
._8_c01036{width:26.618667pt;}
._1a_c01036{width:123.496000pt;}
._7_c01036{width:276.914667pt;}
.fs4_c01036{font-size:42.666667pt;}
.fs1_c01036{font-size:53.333333pt;}
.fs3_c01036{font-size:56.000000pt;}
.fs0_c01036{font-size:61.333333pt;}
.fs2_c01036{font-size:64.000000pt;}
.y0_c01036{bottom:0.000000pt;}
.y1e_c01036{bottom:2.760000pt;}
.y1d_c01036{bottom:6.425212pt;}
.y1c_c01036{bottom:63.866667pt;}
.y1b_c01036{bottom:88.000000pt;}
.y1a_c01036{bottom:110.666667pt;}
.y19_c01036{bottom:133.466667pt;}
.y18_c01036{bottom:154.000000pt;}
.y17_c01036{bottom:176.400000pt;}
.y16_c01036{bottom:197.466667pt;}
.y15_c01036{bottom:221.733333pt;}
.y14_c01036{bottom:243.066667pt;}
.y13_c01036{bottom:265.600000pt;}
.y12_c01036{bottom:286.533333pt;}
.y11_c01036{bottom:305.200000pt;}
.y10_c01036{bottom:327.600000pt;}
.yf_c01036{bottom:349.866667pt;}
.ye_c01036{bottom:371.200000pt;}
.yd_c01036{bottom:393.066667pt;}
.yc_c01036{bottom:415.600000pt;}
.yb_c01036{bottom:437.466667pt;}
.ya_c01036{bottom:458.800000pt;}
.y9_c01036{bottom:480.933333pt;}
.y8_c01036{bottom:503.200000pt;}
.y7_c01036{bottom:525.066667pt;}
.y6_c01036{bottom:546.666667pt;}
.y5_c01036{bottom:569.066667pt;}
.y4_c01036{bottom:590.800000pt;}
.y3_c01036{bottom:612.933333pt;}
.y2_c01036{bottom:635.066667pt;}
.y1_c01036{bottom:657.600000pt;}
.h5_c01036{height:11.733399pt;}
.h6_c01036{height:38.937500pt;}
.h2_c01036{height:71.785156pt;}
.h3_c01036{height:77.654948pt;}
.h4_c01036{height:81.031250pt;}
.h0_c01036{height:692.400000pt;}
.h1_c01036{height:692.666667pt;}
.w2_c01036{width:93.222667pt;}
.w1_c01036{width:473.333333pt;}
.w0_c01036{width:473.533333pt;}
.x0_c01036{left:0.000000pt;}
.x9_c01036{left:23.066667pt;}
.x8_c01036{left:24.266667pt;}
.x7_c01036{left:25.200000pt;}
.x3_c01036{left:26.666667pt;}
.x2_c01036{left:27.600000pt;}
.x4_c01036{left:28.533333pt;}
.x5_c01036{left:29.466667pt;}
.x6_c01036{left:30.400000pt;}
.x1_c01036{left:136.533333pt;}
.xa_c01036{left:193.934896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_de8345c9c3ed49af4a1fa393.woff2')format("woff");}.ff1_c01037{font-family:ff1_c01037;line-height:1.480469;font-style:normal;font-weight:normal;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_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff2_c01037{font-family:ff2_c01037;line-height:1.284180;font-style:normal;font-weight:normal;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_2f52d997db681cbeb512041b.woff2')format("woff");}.ff3_c01037{font-family:ff3_c01037;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01037;src:url('chunks/assets/font_4ea9a50200b1996a35e5b904.woff2')format("woff");}.ff4_c01037{font-family:ff4_c01037;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01037;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01037{font-family:ff5_c01037;line-height:1.219238;font-style: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;}
.ls4_c01037{letter-spacing:-9.000000px;}
.ls2_c01037{letter-spacing:0.000000px;}
.ls3_c01037{letter-spacing:3.000000px;}
.ls1_c01037{letter-spacing:4.788000px;}
.ls0_c01037{letter-spacing:13.800000px;}
.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;}
}
.ws2_c01037{word-spacing:-21.051000px;}
.ws0_c01037{word-spacing:-17.352000px;}
.ws3_c01037{word-spacing:0.000000px;}
.ws1_c01037{word-spacing:4.608000px;}
._12_c01037{margin-left:-15.192000px;}
._13_c01037{margin-left:-13.992000px;}
._18_c01037{margin-left:-12.600000px;}
._17_c01037{margin-left:-11.508000px;}
._15_c01037{margin-left:-9.936000px;}
._16_c01037{margin-left:-8.928000px;}
._11_c01037{margin-left:-7.824000px;}
._e_c01037{margin-left:-6.480000px;}
._f_c01037{margin-left:-4.320000px;}
._b_c01037{margin-left:-3.168000px;}
._9_c01037{margin-left:-1.584000px;}
._8_c01037{width:1.440000px;}
._7_c01037{width:2.664000px;}
._6_c01037{width:3.960000px;}
._1_c01037{width:5.328000px;}
._5_c01037{width:6.696000px;}
._0_c01037{width:8.136000px;}
._a_c01037{width:9.648000px;}
._4_c01037{width:11.448000px;}
._2_c01037{width:12.696000px;}
._3_c01037{width:14.472000px;}
._d_c01037{width:16.104000px;}
._1a_c01037{width:19.440000px;}
._14_c01037{width:21.096000px;}
._c_c01037{width:25.848000px;}
._19_c01037{width:33.120000px;}
._10_c01037{width:227.520000px;}
.fc2_c01037{color:transparent;}
.fc1_c01037{color:rgb(128,128,128);}
.fc0_c01037{color:rgb(0,0,0);}
.fs5_c01037{font-size:48.000000px;}
.fs3_c01037{font-size:63.000000px;}
.fs2_c01037{font-size:66.000000px;}
.fs0_c01037{font-size:72.000000px;}
.fs1_c01037{font-size:78.000000px;}
.fs4_c01037{font-size:87.000000px;}
.y0_c01037{bottom:0.000000px;}
.y1e_c01037{bottom:3.105000px;}
.y1d_c01037{bottom:7.228357px;}
.y1c_c01037{bottom:78.630000px;}
.y1b_c01037{bottom:103.380000px;}
.y1a_c01037{bottom:127.530000px;}
.y19_c01037{bottom:152.880000px;}
.y18_c01037{bottom:177.630000px;}
.y17_c01037{bottom:201.930000px;}
.y16_c01037{bottom:226.830000px;}
.y15_c01037{bottom:252.180000px;}
.y14_c01037{bottom:276.480000px;}
.y13_c01037{bottom:301.680000px;}
.y12_c01037{bottom:326.430000px;}
.y11_c01037{bottom:349.380000px;}
.y10_c01037{bottom:373.680000px;}
.yf_c01037{bottom:396.930000px;}
.ye_c01037{bottom:421.530000px;}
.yd_c01037{bottom:446.580000px;}
.yc_c01037{bottom:468.780000px;}
.yb_c01037{bottom:493.380000px;}
.ya_c01037{bottom:517.830000px;}
.y9_c01037{bottom:541.080000px;}
.y8_c01037{bottom:566.280000px;}
.y7_c01037{bottom:589.980000px;}
.y6_c01037{bottom:613.980000px;}
.y5_c01037{bottom:639.330000px;}
.y4_c01037{bottom:664.530000px;}
.y3_c01037{bottom:688.830000px;}
.y2_c01037{bottom:713.430000px;}
.y1_c01037{bottom:739.230000px;}
.h4_c01037{height:13.200074px;}
.h5_c01037{height:43.804688px;}
.h2_c01037{height:91.160156px;}
.h3_c01037{height:110.151855px;}
.h0_c01037{height:781.950000px;}
.h1_c01037{height:782.250000px;}
.w2_c01037{width:104.875500px;}
.w1_c01037{width:512.250000px;}
.w0_c01037{width:512.475000px;}
.x0_c01037{left:0.000000px;}
.x4_c01037{left:25.050000px;}
.x3_c01037{left:34.500000px;}
.x9_c01037{left:96.300000px;}
.x8_c01037{left:97.500000px;}
.x6_c01037{left:98.550000px;}
.x7_c01037{left:99.900000px;}
.x5_c01037{left:101.250000px;}
.x2_c01037{left:103.950000px;}
.xa_c01037{left:208.051758px;}
.x1_c01037{left:225.150000px;}
@media print{
.v0_c01037{vertical-align:0.000000pt;}
.ls4_c01037{letter-spacing:-8.000000pt;}
.ls2_c01037{letter-spacing:0.000000pt;}
.ls3_c01037{letter-spacing:2.666667pt;}
.ls1_c01037{letter-spacing:4.256000pt;}
.ls0_c01037{letter-spacing:12.266667pt;}
.ws2_c01037{word-spacing:-18.712000pt;}
.ws0_c01037{word-spacing:-15.424000pt;}
.ws3_c01037{word-spacing:0.000000pt;}
.ws1_c01037{word-spacing:4.096000pt;}
._12_c01037{margin-left:-13.504000pt;}
._13_c01037{margin-left:-12.437333pt;}
._18_c01037{margin-left:-11.200000pt;}
._17_c01037{margin-left:-10.229333pt;}
._15_c01037{margin-left:-8.832000pt;}
._16_c01037{margin-left:-7.936000pt;}
._11_c01037{margin-left:-6.954667pt;}
._e_c01037{margin-left:-5.760000pt;}
._f_c01037{margin-left:-3.840000pt;}
._b_c01037{margin-left:-2.816000pt;}
._9_c01037{margin-left:-1.408000pt;}
._8_c01037{width:1.280000pt;}
._7_c01037{width:2.368000pt;}
._6_c01037{width:3.520000pt;}
._1_c01037{width:4.736000pt;}
._5_c01037{width:5.952000pt;}
._0_c01037{width:7.232000pt;}
._a_c01037{width:8.576000pt;}
._4_c01037{width:10.176000pt;}
._2_c01037{width:11.285333pt;}
._3_c01037{width:12.864000pt;}
._d_c01037{width:14.314667pt;}
._1a_c01037{width:17.280000pt;}
._14_c01037{width:18.752000pt;}
._c_c01037{width:22.976000pt;}
._19_c01037{width:29.440000pt;}
._10_c01037{width:202.240000pt;}
.fs5_c01037{font-size:42.666667pt;}
.fs3_c01037{font-size:56.000000pt;}
.fs2_c01037{font-size:58.666667pt;}
.fs0_c01037{font-size:64.000000pt;}
.fs1_c01037{font-size:69.333333pt;}
.fs4_c01037{font-size:77.333333pt;}
.y0_c01037{bottom:0.000000pt;}
.y1e_c01037{bottom:2.760000pt;}
.y1d_c01037{bottom:6.425206pt;}
.y1c_c01037{bottom:69.893333pt;}
.y1b_c01037{bottom:91.893333pt;}
.y1a_c01037{bottom:113.360000pt;}
.y19_c01037{bottom:135.893333pt;}
.y18_c01037{bottom:157.893333pt;}
.y17_c01037{bottom:179.493333pt;}
.y16_c01037{bottom:201.626667pt;}
.y15_c01037{bottom:224.160000pt;}
.y14_c01037{bottom:245.760000pt;}
.y13_c01037{bottom:268.160000pt;}
.y12_c01037{bottom:290.160000pt;}
.y11_c01037{bottom:310.560000pt;}
.y10_c01037{bottom:332.160000pt;}
.yf_c01037{bottom:352.826667pt;}
.ye_c01037{bottom:374.693333pt;}
.yd_c01037{bottom:396.960000pt;}
.yc_c01037{bottom:416.693333pt;}
.yb_c01037{bottom:438.560000pt;}
.ya_c01037{bottom:460.293333pt;}
.y9_c01037{bottom:480.960000pt;}
.y8_c01037{bottom:503.360000pt;}
.y7_c01037{bottom:524.426667pt;}
.y6_c01037{bottom:545.760000pt;}
.y5_c01037{bottom:568.293333pt;}
.y4_c01037{bottom:590.693333pt;}
.y3_c01037{bottom:612.293333pt;}
.y2_c01037{bottom:634.160000pt;}
.y1_c01037{bottom:657.093333pt;}
.h4_c01037{height:11.733399pt;}
.h5_c01037{height:38.937500pt;}
.h2_c01037{height:81.031250pt;}
.h3_c01037{height:97.912760pt;}
.h0_c01037{height:695.066667pt;}
.h1_c01037{height:695.333333pt;}
.w2_c01037{width:93.222667pt;}
.w1_c01037{width:455.333333pt;}
.w0_c01037{width:455.533333pt;}
.x0_c01037{left:0.000000pt;}
.x4_c01037{left:22.266667pt;}
.x3_c01037{left:30.666667pt;}
.x9_c01037{left:85.600000pt;}
.x8_c01037{left:86.666667pt;}
.x6_c01037{left:87.600000pt;}
.x7_c01037{left:88.800000pt;}
.x5_c01037{left:90.000000pt;}
.x2_c01037{left:92.400000pt;}
.xa_c01037{left:184.934896pt;}
.x1_c01037{left:200.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_22ccf1c6676dadaf8cb79825.woff2')format("woff");}.ff1_c01038{font-family:ff1_c01038;line-height:1.480469;font-style:normal;font-weight:normal;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_4c0bab56035bfed350b231e8.woff2')format("woff");}.ff2_c01038{font-family:ff2_c01038;line-height:1.284180;font-style:normal;font-weight:normal;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_23dc6d3378cf1070b8208cde.woff2')format("woff");}.ff3_c01038{font-family:ff3_c01038;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01038;src:url('chunks/assets/font_ab42f96d5d95165abc22dba7.woff2')format("woff");}.ff4_c01038{font-family:ff4_c01038;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01038;src:url('chunks/assets/font_4bb71be9cdc78ab036bb3949.woff2')format("woff");}.ff5_c01038{font-family:ff5_c01038;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01038;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01038{font-family:ff6_c01038;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01038{vertical-align:0.000000px;}
.ls3_c01038{letter-spacing:-9.000000px;}
.ls2_c01038{letter-spacing:0.000000px;}
.ls4_c01038{letter-spacing:3.000000px;}
.ls1_c01038{letter-spacing:7.200000px;}
.ls0_c01038{letter-spacing:17.661000px;}
.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;}
}
.ws1_c01038{word-spacing:-21.051000px;}
.ws0_c01038{word-spacing:-17.352000px;}
.ws2_c01038{word-spacing:0.000000px;}
._18_c01038{margin-left:-9.936000px;}
._16_c01038{margin-left:-8.532000px;}
._15_c01038{margin-left:-6.120000px;}
._17_c01038{margin-left:-5.040000px;}
._11_c01038{margin-left:-4.032000px;}
._10_c01038{margin-left:-2.736000px;}
._f_c01038{margin-left:-1.224000px;}
._14_c01038{width:1.080000px;}
._a_c01038{width:2.088000px;}
._b_c01038{width:3.600000px;}
._c_c01038{width:4.824000px;}
._d_c01038{width:6.192000px;}
._2_c01038{width:7.920000px;}
._6_c01038{width:8.940000px;}
._12_c01038{width:10.296000px;}
._1_c01038{width:11.400000px;}
._13_c01038{width:12.456000px;}
._e_c01038{width:14.112000px;}
._4_c01038{width:15.720000px;}
._3_c01038{width:17.220000px;}
._0_c01038{width:19.260000px;}
._5_c01038{width:23.580000px;}
._8_c01038{width:41.880000px;}
._9_c01038{width:46.860000px;}
._7_c01038{width:340.740000px;}
._19_c01038{width:359.925000px;}
.fc2_c01038{color:transparent;}
.fc1_c01038{color:rgb(128,128,128);}
.fc0_c01038{color:rgb(0,0,0);}
.fs8_c01038{font-size:48.000000px;}
.fs0_c01038{font-size:60.000000px;}
.fs3_c01038{font-size:63.000000px;}
.fs4_c01038{font-size:66.000000px;}
.fs7_c01038{font-size:69.000000px;}
.fs2_c01038{font-size:72.000000px;}
.fs5_c01038{font-size:78.000000px;}
.fs6_c01038{font-size:84.000000px;}
.fs1_c01038{font-size:108.000000px;}
.y0_c01038{bottom:0.000000px;}
.y1f_c01038{bottom:3.105000px;}
.y1e_c01038{bottom:7.228369px;}
.y1d_c01038{bottom:55.020000px;}
.y1c_c01038{bottom:81.270000px;}
.y1b_c01038{bottom:107.670000px;}
.y1a_c01038{bottom:130.620000px;}
.y19_c01038{bottom:157.620000px;}
.y18_c01038{bottom:182.220000px;}
.y17_c01038{bottom:203.220000px;}
.y16_c01038{bottom:231.870000px;}
.y15_c01038{bottom:252.420000px;}
.y14_c01038{bottom:281.070000px;}
.y13_c01038{bottom:304.770000px;}
.y12_c01038{bottom:327.720000px;}
.y11_c01038{bottom:350.370000px;}
.y10_c01038{bottom:374.520000px;}
.yf_c01038{bottom:398.220000px;}
.ye_c01038{bottom:422.820000px;}
.yd_c01038{bottom:447.120000px;}
.yc_c01038{bottom:471.720000px;}
.yb_c01038{bottom:496.470000px;}
.ya_c01038{bottom:521.070000px;}
.y9_c01038{bottom:545.370000px;}
.y8_c01038{bottom:570.270000px;}
.y7_c01038{bottom:595.020000px;}
.y6_c01038{bottom:619.620000px;}
.y5_c01038{bottom:644.220000px;}
.y4_c01038{bottom:668.670000px;}
.y3_c01038{bottom:693.270000px;}
.y2_c01038{bottom:717.870000px;}
.y1_c01038{bottom:742.170000px;}
.h8_c01038{height:13.200073px;}
.h9_c01038{height:43.804688px;}
.h4_c01038{height:79.765137px;}
.h6_c01038{height:82.441406px;}
.h7_c01038{height:87.361816px;}
.h3_c01038{height:91.160156px;}
.h5_c01038{height:98.756836px;}
.h2_c01038{height:105.943359px;}
.h1_c01038{height:778.500000px;}
.h0_c01038{height:778.650000px;}
.w2_c01038{width:104.875500px;}
.w0_c01038{width:537.600000px;}
.w1_c01038{width:537.750000px;}
.x0_c01038{left:0.000000px;}
.x5_c01038{left:32.100000px;}
.x2_c01038{left:34.050000px;}
.x3_c01038{left:36.000000px;}
.x4_c01038{left:37.350000px;}
.x1_c01038{left:157.350000px;}
.x7_c01038{left:220.614258px;}
.x6_c01038{left:253.200000px;}
@media print{
.v0_c01038{vertical-align:0.000000pt;}
.ls3_c01038{letter-spacing:-8.000000pt;}
.ls2_c01038{letter-spacing:0.000000pt;}
.ls4_c01038{letter-spacing:2.666667pt;}
.ls1_c01038{letter-spacing:6.400000pt;}
.ls0_c01038{letter-spacing:15.698667pt;}
.ws1_c01038{word-spacing:-18.712000pt;}
.ws0_c01038{word-spacing:-15.424000pt;}
.ws2_c01038{word-spacing:0.000000pt;}
._18_c01038{margin-left:-8.832000pt;}
._16_c01038{margin-left:-7.584000pt;}
._15_c01038{margin-left:-5.440000pt;}
._17_c01038{margin-left:-4.480000pt;}
._11_c01038{margin-left:-3.584000pt;}
._10_c01038{margin-left:-2.432000pt;}
._f_c01038{margin-left:-1.088000pt;}
._14_c01038{width:0.960000pt;}
._a_c01038{width:1.856000pt;}
._b_c01038{width:3.200000pt;}
._c_c01038{width:4.288000pt;}
._d_c01038{width:5.504000pt;}
._2_c01038{width:7.040000pt;}
._6_c01038{width:7.946667pt;}
._12_c01038{width:9.152000pt;}
._1_c01038{width:10.133333pt;}
._13_c01038{width:11.072000pt;}
._e_c01038{width:12.544000pt;}
._4_c01038{width:13.973333pt;}
._3_c01038{width:15.306667pt;}
._0_c01038{width:17.120000pt;}
._5_c01038{width:20.960000pt;}
._8_c01038{width:37.226667pt;}
._9_c01038{width:41.653333pt;}
._7_c01038{width:302.880000pt;}
._19_c01038{width:319.933333pt;}
.fs8_c01038{font-size:42.666667pt;}
.fs0_c01038{font-size:53.333333pt;}
.fs3_c01038{font-size:56.000000pt;}
.fs4_c01038{font-size:58.666667pt;}
.fs7_c01038{font-size:61.333333pt;}
.fs2_c01038{font-size:64.000000pt;}
.fs5_c01038{font-size:69.333333pt;}
.fs6_c01038{font-size:74.666667pt;}
.fs1_c01038{font-size:96.000000pt;}
.y0_c01038{bottom:0.000000pt;}
.y1f_c01038{bottom:2.760000pt;}
.y1e_c01038{bottom:6.425217pt;}
.y1d_c01038{bottom:48.906667pt;}
.y1c_c01038{bottom:72.240000pt;}
.y1b_c01038{bottom:95.706667pt;}
.y1a_c01038{bottom:116.106667pt;}
.y19_c01038{bottom:140.106667pt;}
.y18_c01038{bottom:161.973333pt;}
.y17_c01038{bottom:180.640000pt;}
.y16_c01038{bottom:206.106667pt;}
.y15_c01038{bottom:224.373333pt;}
.y14_c01038{bottom:249.840000pt;}
.y13_c01038{bottom:270.906667pt;}
.y12_c01038{bottom:291.306667pt;}
.y11_c01038{bottom:311.440000pt;}
.y10_c01038{bottom:332.906667pt;}
.yf_c01038{bottom:353.973333pt;}
.ye_c01038{bottom:375.840000pt;}
.yd_c01038{bottom:397.440000pt;}
.yc_c01038{bottom:419.306667pt;}
.yb_c01038{bottom:441.306667pt;}
.ya_c01038{bottom:463.173333pt;}
.y9_c01038{bottom:484.773333pt;}
.y8_c01038{bottom:506.906667pt;}
.y7_c01038{bottom:528.906667pt;}
.y6_c01038{bottom:550.773333pt;}
.y5_c01038{bottom:572.640000pt;}
.y4_c01038{bottom:594.373333pt;}
.y3_c01038{bottom:616.240000pt;}
.y2_c01038{bottom:638.106667pt;}
.y1_c01038{bottom:659.706667pt;}
.h8_c01038{height:11.733399pt;}
.h9_c01038{height:38.937500pt;}
.h4_c01038{height:70.902344pt;}
.h6_c01038{height:73.281250pt;}
.h7_c01038{height:77.654948pt;}
.h3_c01038{height:81.031250pt;}
.h5_c01038{height:87.783854pt;}
.h2_c01038{height:94.171875pt;}
.h1_c01038{height:692.000000pt;}
.h0_c01038{height:692.133333pt;}
.w2_c01038{width:93.222667pt;}
.w0_c01038{width:477.866667pt;}
.w1_c01038{width:478.000000pt;}
.x0_c01038{left:0.000000pt;}
.x5_c01038{left:28.533333pt;}
.x2_c01038{left:30.266667pt;}
.x3_c01038{left:32.000000pt;}
.x4_c01038{left:33.200000pt;}
.x1_c01038{left:139.866667pt;}
.x7_c01038{left:196.101563pt;}
.x6_c01038{left:225.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5bfc4e8e4434e0a748379433.woff2')format("woff");}.ff1_c01039{font-family:ff1_c01039;line-height:1.480469;font-style:normal;font-weight:normal;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_4f218f1bcf0a7ccc9ab79136.woff2')format("woff");}.ff2_c01039{font-family:ff2_c01039;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01039{font-family:ff3_c01039;line-height:1.219238;font-style: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;}
.ls0_c01039{letter-spacing:-3.000000px;}
.ls1_c01039{letter-spacing:0.000000px;}
.ls2_c01039{letter-spacing:3.000000px;}
.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;}
._14_c01039{margin-left:-19.152000px;}
._13_c01039{margin-left:-15.552000px;}
._12_c01039{margin-left:-12.024000px;}
._11_c01039{margin-left:-10.584000px;}
._2_c01039{margin-left:-7.872000px;}
._c_c01039{margin-left:-6.408000px;}
._0_c01039{margin-left:-4.512000px;}
._1_c01039{margin-left:-2.688000px;}
._a_c01039{margin-left:-1.656000px;}
._9_c01039{width:1.080000px;}
._8_c01039{width:2.232000px;}
._3_c01039{width:3.960000px;}
._7_c01039{width:4.968000px;}
._4_c01039{width:6.048000px;}
._6_c01039{width:7.488000px;}
._f_c01039{width:8.496000px;}
._5_c01039{width:10.008000px;}
._b_c01039{width:11.088000px;}
._d_c01039{width:12.528000px;}
._e_c01039{width:14.304000px;}
._10_c01039{width:15.312000px;}
.fc2_c01039{color:transparent;}
.fc1_c01039{color:rgb(128,128,128);}
.fc0_c01039{color:rgb(0,0,0);}
.fs3_c01039{font-size:48.000000px;}
.fs2_c01039{font-size:69.000000px;}
.fs1_c01039{font-size:72.000000px;}
.fs0_c01039{font-size:96.000000px;}
.y0_c01039{bottom:0.000000px;}
.y1f_c01039{bottom:3.105000px;}
.y1e_c01039{bottom:7.228371px;}
.y1d_c01039{bottom:68.265000px;}
.y1c_c01039{bottom:89.865000px;}
.y1b_c01039{bottom:114.465000px;}
.y1a_c01039{bottom:138.465000px;}
.y19_c01039{bottom:163.815000px;}
.y18_c01039{bottom:189.315000px;}
.y17_c01039{bottom:213.315000px;}
.y16_c01039{bottom:238.365000px;}
.y15_c01039{bottom:262.365000px;}
.y14_c01039{bottom:287.265000px;}
.y13_c01039{bottom:311.265000px;}
.y12_c01039{bottom:336.165000px;}
.y11_c01039{bottom:360.165000px;}
.y10_c01039{bottom:383.415000px;}
.yf_c01039{bottom:408.465000px;}
.ye_c01039{bottom:432.315000px;}
.yd_c01039{bottom:455.265000px;}
.yc_c01039{bottom:478.365000px;}
.yb_c01039{bottom:502.965000px;}
.ya_c01039{bottom:526.965000px;}
.y9_c01039{bottom:551.265000px;}
.y8_c01039{bottom:576.165000px;}
.y7_c01039{bottom:600.165000px;}
.y6_c01039{bottom:625.815000px;}
.y5_c01039{bottom:649.665000px;}
.y4_c01039{bottom:674.115000px;}
.y3_c01039{bottom:697.365000px;}
.y2_c01039{bottom:724.065000px;}
.y1_c01039{bottom:750.615000px;}
.h5_c01039{height:13.200074px;}
.h6_c01039{height:43.804688px;}
.h4_c01039{height:87.361816px;}
.h3_c01039{height:91.160156px;}
.h2_c01039{height:121.546875px;}
.h1_c01039{height:789.000000px;}
.h0_c01039{height:789.225000px;}
.w2_c01039{width:104.875500px;}
.w0_c01039{width:523.275000px;}
.w1_c01039{width:523.500000px;}
.x0_c01039{left:0.000000px;}
.x6_c01039{left:95.400000px;}
.x5_c01039{left:96.750000px;}
.x4_c01039{left:97.800000px;}
.x3_c01039{left:99.150000px;}
.x2_c01039{left:100.800000px;}
.x8_c01039{left:213.451767px;}
.x1_c01039{left:219.600000px;}
.x7_c01039{left:454.650000px;}
@media print{
.v0_c01039{vertical-align:0.000000pt;}
.ls0_c01039{letter-spacing:-2.666667pt;}
.ls1_c01039{letter-spacing:0.000000pt;}
.ls2_c01039{letter-spacing:2.666667pt;}
.ws0_c01039{word-spacing:0.000000pt;}
._14_c01039{margin-left:-17.024000pt;}
._13_c01039{margin-left:-13.824000pt;}
._12_c01039{margin-left:-10.688000pt;}
._11_c01039{margin-left:-9.408000pt;}
._2_c01039{margin-left:-6.997333pt;}
._c_c01039{margin-left:-5.696000pt;}
._0_c01039{margin-left:-4.010667pt;}
._1_c01039{margin-left:-2.389333pt;}
._a_c01039{margin-left:-1.472000pt;}
._9_c01039{width:0.960000pt;}
._8_c01039{width:1.984000pt;}
._3_c01039{width:3.520000pt;}
._7_c01039{width:4.416000pt;}
._4_c01039{width:5.376000pt;}
._6_c01039{width:6.656000pt;}
._f_c01039{width:7.552000pt;}
._5_c01039{width:8.896000pt;}
._b_c01039{width:9.856000pt;}
._d_c01039{width:11.136000pt;}
._e_c01039{width:12.714667pt;}
._10_c01039{width:13.610667pt;}
.fs3_c01039{font-size:42.666667pt;}
.fs2_c01039{font-size:61.333333pt;}
.fs1_c01039{font-size:64.000000pt;}
.fs0_c01039{font-size:85.333333pt;}
.y0_c01039{bottom:0.000000pt;}
.y1f_c01039{bottom:2.760000pt;}
.y1e_c01039{bottom:6.425219pt;}
.y1d_c01039{bottom:60.680000pt;}
.y1c_c01039{bottom:79.880000pt;}
.y1b_c01039{bottom:101.746667pt;}
.y1a_c01039{bottom:123.080000pt;}
.y19_c01039{bottom:145.613333pt;}
.y18_c01039{bottom:168.280000pt;}
.y17_c01039{bottom:189.613333pt;}
.y16_c01039{bottom:211.880000pt;}
.y15_c01039{bottom:233.213333pt;}
.y14_c01039{bottom:255.346667pt;}
.y13_c01039{bottom:276.680000pt;}
.y12_c01039{bottom:298.813333pt;}
.y11_c01039{bottom:320.146667pt;}
.y10_c01039{bottom:340.813333pt;}
.yf_c01039{bottom:363.080000pt;}
.ye_c01039{bottom:384.280000pt;}
.yd_c01039{bottom:404.680000pt;}
.yc_c01039{bottom:425.213333pt;}
.yb_c01039{bottom:447.080000pt;}
.ya_c01039{bottom:468.413333pt;}
.y9_c01039{bottom:490.013333pt;}
.y8_c01039{bottom:512.146667pt;}
.y7_c01039{bottom:533.480000pt;}
.y6_c01039{bottom:556.280000pt;}
.y5_c01039{bottom:577.480000pt;}
.y4_c01039{bottom:599.213333pt;}
.y3_c01039{bottom:619.880000pt;}
.y2_c01039{bottom:643.613333pt;}
.y1_c01039{bottom:667.213333pt;}
.h5_c01039{height:11.733399pt;}
.h6_c01039{height:38.937500pt;}
.h4_c01039{height:77.654948pt;}
.h3_c01039{height:81.031250pt;}
.h2_c01039{height:108.041667pt;}
.h1_c01039{height:701.333333pt;}
.h0_c01039{height:701.533333pt;}
.w2_c01039{width:93.222667pt;}
.w0_c01039{width:465.133333pt;}
.w1_c01039{width:465.333333pt;}
.x0_c01039{left:0.000000pt;}
.x6_c01039{left:84.800000pt;}
.x5_c01039{left:86.000000pt;}
.x4_c01039{left:86.933333pt;}
.x3_c01039{left:88.133333pt;}
.x2_c01039{left:89.600000pt;}
.x8_c01039{left:189.734904pt;}
.x1_c01039{left:195.200000pt;}
.x7_c01039{left:404.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6958acf9af26c7658082d067.woff2')format("woff");}.ff1_c01040{font-family:ff1_c01040;line-height:1.480469;font-style:normal;font-weight:normal;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_b2c9158e7a4ba3fb6b29f3a0.woff2')format("woff");}.ff2_c01040{font-family:ff2_c01040;line-height:1.568848;font-style:normal;font-weight:normal;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_6c5dbeed7938d5f7eaecae05.woff2')format("woff");}.ff3_c01040{font-family:ff3_c01040;line-height:1.284668;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01040{font-family:ff4_c01040;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01040{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.v0_c01040{vertical-align:0.000000px;}
.ls0_c01040{letter-spacing:-3.000000px;}
.ls1_c01040{letter-spacing:0.000000px;}
.ls2_c01040{letter-spacing:3.000000px;}
.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;}
}
.ws0_c01040{word-spacing:-18.183000px;}
.ws1_c01040{word-spacing:-17.352000px;}
.ws2_c01040{word-spacing:0.000000px;}
._1b_c01040{margin-left:-11.970000px;}
._16_c01040{margin-left:-8.970000px;}
._14_c01040{margin-left:-6.237000px;}
._15_c01040{margin-left:-5.184000px;}
._f_c01040{margin-left:-4.143000px;}
._6_c01040{margin-left:-2.433000px;}
._e_c01040{margin-left:-1.077000px;}
._2_c01040{width:1.653000px;}
._1_c01040{width:3.306000px;}
._0_c01040{width:4.872000px;}
._3_c01040{width:6.525000px;}
._b_c01040{width:7.746000px;}
._a_c01040{width:9.402000px;}
._11_c01040{width:10.518000px;}
._7_c01040{width:12.246000px;}
._c_c01040{width:13.248000px;}
._8_c01040{width:15.486000px;}
._5_c01040{width:16.791000px;}
._9_c01040{width:19.962000px;}
._17_c01040{width:22.194000px;}
._18_c01040{width:23.286000px;}
._13_c01040{width:25.998000px;}
._19_c01040{width:27.114000px;}
._12_c01040{width:28.131000px;}
._1a_c01040{width:32.625000px;}
._d_c01040{width:34.896000px;}
._10_c01040{width:37.071000px;}
._1f_c01040{width:39.726000px;}
._1e_c01040{width:130.449000px;}
._1d_c01040{width:159.303000px;}
._1c_c01040{width:317.160000px;}
._20_c01040{width:324.816000px;}
._4_c01040{width:336.255000px;}
.fc2_c01040{color:transparent;}
.fc1_c01040{color:rgb(128,128,128);}
.fc0_c01040{color:rgb(0,0,0);}
.fs4_c01040{font-size:48.000000px;}
.fs2_c01040{font-size:63.000000px;}
.fs1_c01040{font-size:72.000000px;}
.fs3_c01040{font-size:81.000000px;}
.fs0_c01040{font-size:87.000000px;}
.y0_c01040{bottom:0.000000px;}
.y1f_c01040{bottom:3.105000px;}
.y1e_c01040{bottom:7.228357px;}
.y1d_c01040{bottom:57.330000px;}
.y1c_c01040{bottom:82.680000px;}
.y1b_c01040{bottom:107.730000px;}
.y1a_c01040{bottom:133.080000px;}
.y19_c01040{bottom:158.580000px;}
.y18_c01040{bottom:183.030000px;}
.y17_c01040{bottom:207.630000px;}
.y16_c01040{bottom:232.230000px;}
.y15_c01040{bottom:256.830000px;}
.y14_c01040{bottom:281.880000px;}
.y13_c01040{bottom:305.880000px;}
.y12_c01040{bottom:329.430000px;}
.y11_c01040{bottom:353.430000px;}
.y10_c01040{bottom:376.080000px;}
.yf_c01040{bottom:400.230000px;}
.ye_c01040{bottom:424.980000px;}
.yd_c01040{bottom:449.580000px;}
.yc_c01040{bottom:475.230000px;}
.yb_c01040{bottom:498.180000px;}
.ya_c01040{bottom:521.880000px;}
.y9_c01040{bottom:546.480000px;}
.y8_c01040{bottom:570.780000px;}
.y7_c01040{bottom:595.380000px;}
.y6_c01040{bottom:620.280000px;}
.y5_c01040{bottom:644.280000px;}
.y4_c01040{bottom:669.030000px;}
.y3_c01040{bottom:693.180000px;}
.y2_c01040{bottom:717.480000px;}
.y1_c01040{bottom:742.830000px;}
.h3_c01040{height:13.200074px;}
.h4_c01040{height:43.804688px;}
.h2_c01040{height:91.160156px;}
.h1_c01040{height:110.151855px;}
.h0_c01040{height:786.000000px;}
.w2_c01040{width:104.875500px;}
.w1_c01040{width:512.250000px;}
.w0_c01040{width:512.475000px;}
.x0_c01040{left:0.000000px;}
.xa_c01040{left:30.000000px;}
.x9_c01040{left:34.050000px;}
.x8_c01040{left:35.400000px;}
.x7_c01040{left:36.450000px;}
.x6_c01040{left:37.500000px;}
.x2_c01040{left:38.550000px;}
.x5_c01040{left:40.200000px;}
.x3_c01040{left:42.600000px;}
.x4_c01040{left:45.300000px;}
.xb_c01040{left:69.750000px;}
.x1_c01040{left:170.850000px;}
.xc_c01040{left:208.051758px;}
@media print{
.v0_c01040{vertical-align:0.000000pt;}
.ls0_c01040{letter-spacing:-2.666667pt;}
.ls1_c01040{letter-spacing:0.000000pt;}
.ls2_c01040{letter-spacing:2.666667pt;}
.ws0_c01040{word-spacing:-16.162667pt;}
.ws1_c01040{word-spacing:-15.424000pt;}
.ws2_c01040{word-spacing:0.000000pt;}
._1b_c01040{margin-left:-10.640000pt;}
._16_c01040{margin-left:-7.973333pt;}
._14_c01040{margin-left:-5.544000pt;}
._15_c01040{margin-left:-4.608000pt;}
._f_c01040{margin-left:-3.682667pt;}
._6_c01040{margin-left:-2.162667pt;}
._e_c01040{margin-left:-0.957333pt;}
._2_c01040{width:1.469333pt;}
._1_c01040{width:2.938667pt;}
._0_c01040{width:4.330667pt;}
._3_c01040{width:5.800000pt;}
._b_c01040{width:6.885333pt;}
._a_c01040{width:8.357333pt;}
._11_c01040{width:9.349333pt;}
._7_c01040{width:10.885333pt;}
._c_c01040{width:11.776000pt;}
._8_c01040{width:13.765333pt;}
._5_c01040{width:14.925333pt;}
._9_c01040{width:17.744000pt;}
._17_c01040{width:19.728000pt;}
._18_c01040{width:20.698667pt;}
._13_c01040{width:23.109333pt;}
._19_c01040{width:24.101333pt;}
._12_c01040{width:25.005333pt;}
._1a_c01040{width:29.000000pt;}
._d_c01040{width:31.018667pt;}
._10_c01040{width:32.952000pt;}
._1f_c01040{width:35.312000pt;}
._1e_c01040{width:115.954667pt;}
._1d_c01040{width:141.602667pt;}
._1c_c01040{width:281.920000pt;}
._20_c01040{width:288.725333pt;}
._4_c01040{width:298.893333pt;}
.fs4_c01040{font-size:42.666667pt;}
.fs2_c01040{font-size:56.000000pt;}
.fs1_c01040{font-size:64.000000pt;}
.fs3_c01040{font-size:72.000000pt;}
.fs0_c01040{font-size:77.333333pt;}
.y0_c01040{bottom:0.000000pt;}
.y1f_c01040{bottom:2.760000pt;}
.y1e_c01040{bottom:6.425206pt;}
.y1d_c01040{bottom:50.960000pt;}
.y1c_c01040{bottom:73.493333pt;}
.y1b_c01040{bottom:95.760000pt;}
.y1a_c01040{bottom:118.293333pt;}
.y19_c01040{bottom:140.960000pt;}
.y18_c01040{bottom:162.693333pt;}
.y17_c01040{bottom:184.560000pt;}
.y16_c01040{bottom:206.426667pt;}
.y15_c01040{bottom:228.293333pt;}
.y14_c01040{bottom:250.560000pt;}
.y13_c01040{bottom:271.893333pt;}
.y12_c01040{bottom:292.826667pt;}
.y11_c01040{bottom:314.160000pt;}
.y10_c01040{bottom:334.293333pt;}
.yf_c01040{bottom:355.760000pt;}
.ye_c01040{bottom:377.760000pt;}
.yd_c01040{bottom:399.626667pt;}
.yc_c01040{bottom:422.426667pt;}
.yb_c01040{bottom:442.826667pt;}
.ya_c01040{bottom:463.893333pt;}
.y9_c01040{bottom:485.760000pt;}
.y8_c01040{bottom:507.360000pt;}
.y7_c01040{bottom:529.226667pt;}
.y6_c01040{bottom:551.360000pt;}
.y5_c01040{bottom:572.693333pt;}
.y4_c01040{bottom:594.693333pt;}
.y3_c01040{bottom:616.160000pt;}
.y2_c01040{bottom:637.760000pt;}
.y1_c01040{bottom:660.293333pt;}
.h3_c01040{height:11.733399pt;}
.h4_c01040{height:38.937500pt;}
.h2_c01040{height:81.031250pt;}
.h1_c01040{height:97.912760pt;}
.h0_c01040{height:698.666667pt;}
.w2_c01040{width:93.222667pt;}
.w1_c01040{width:455.333333pt;}
.w0_c01040{width:455.533333pt;}
.x0_c01040{left:0.000000pt;}
.xa_c01040{left:26.666667pt;}
.x9_c01040{left:30.266667pt;}
.x8_c01040{left:31.466667pt;}
.x7_c01040{left:32.400000pt;}
.x6_c01040{left:33.333333pt;}
.x2_c01040{left:34.266667pt;}
.x5_c01040{left:35.733333pt;}
.x3_c01040{left:37.866667pt;}
.x4_c01040{left:40.266667pt;}
.xb_c01040{left:62.000000pt;}
.x1_c01040{left:151.866667pt;}
.xc_c01040{left:184.934896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2c287abcc1f3f52006662808.woff2')format("woff");}.ff1_c01041{font-family:ff1_c01041;line-height:1.568848;font-style:normal;font-weight:normal;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_5487ac9fa72c98357b9c059a.woff2')format("woff");}.ff2_c01041{font-family:ff2_c01041;line-height:1.480469;font-style:normal;font-weight:normal;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_e0aded06fa01b980b610064e.woff2')format("woff");}.ff3_c01041{font-family:ff3_c01041;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01041;src:url('chunks/assets/font_61cbf9bdcda0de843ae7719a.woff2')format("woff");}.ff4_c01041{font-family:ff4_c01041;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01041;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01041{font-family:ff5_c01041;line-height:1.219238;font-style: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;}
.ls2_c01041{letter-spacing:-9.000000px;}
.ls1_c01041{letter-spacing:0.000000px;}
.ls0_c01041{letter-spacing:11.388000px;}
.sc__c01041{text-shadow:none;}
.sc0_c01041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01041{-webkit-text-stroke:0px transparent;}
.sc0_c01041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01041{word-spacing:-21.051000px;}
.ws0_c01041{word-spacing:-17.352000px;}
.ws2_c01041{word-spacing:0.000000px;}
._11_c01041{margin-left:-11.034000px;}
._13_c01041{margin-left:-9.462000px;}
._0_c01041{margin-left:-7.560000px;}
._1_c01041{margin-left:-5.328000px;}
._f_c01041{margin-left:-4.176000px;}
._8_c01041{margin-left:-2.232000px;}
._c_c01041{margin-left:-1.080000px;}
._9_c01041{width:1.131000px;}
._b_c01041{width:2.232000px;}
._6_c01041{width:3.240000px;}
._3_c01041{width:4.896000px;}
._4_c01041{width:6.408000px;}
._a_c01041{width:7.848000px;}
._5_c01041{width:9.144000px;}
._10_c01041{width:10.431000px;}
._7_c01041{width:12.024000px;}
._d_c01041{width:13.392000px;}
._12_c01041{width:14.994000px;}
._e_c01041{width:16.272000px;}
._2_c01041{width:461.856000px;}
.fc2_c01041{color:transparent;}
.fc1_c01041{color:rgb(128,128,128);}
.fc0_c01041{color:rgb(0,0,0);}
.fs4_c01041{font-size:48.000000px;}
.fs1_c01041{font-size:63.000000px;}
.fs3_c01041{font-size:69.000000px;}
.fs0_c01041{font-size:72.000000px;}
.fs2_c01041{font-size:81.000000px;}
.y0_c01041{bottom:0.000000px;}
.y1e_c01041{bottom:3.105000px;}
.y1d_c01041{bottom:7.228371px;}
.y1c_c01041{bottom:84.015000px;}
.y1b_c01041{bottom:106.965000px;}
.y1a_c01041{bottom:131.265000px;}
.y19_c01041{bottom:156.315000px;}
.y18_c01041{bottom:180.915000px;}
.y17_c01041{bottom:205.665000px;}
.y16_c01041{bottom:231.915000px;}
.y15_c01041{bottom:255.615000px;}
.y14_c01041{bottom:280.515000px;}
.y13_c01041{bottom:305.565000px;}
.y12_c01041{bottom:329.715000px;}
.y11_c01041{bottom:353.115000px;}
.y10_c01041{bottom:377.415000px;}
.yf_c01041{bottom:400.365000px;}
.ye_c01041{bottom:424.365000px;}
.yd_c01041{bottom:448.215000px;}
.yc_c01041{bottom:472.215000px;}
.yb_c01041{bottom:496.215000px;}
.ya_c01041{bottom:521.115000px;}
.y9_c01041{bottom:545.115000px;}
.y8_c01041{bottom:569.715000px;}
.y7_c01041{bottom:594.465000px;}
.y6_c01041{bottom:619.065000px;}
.y5_c01041{bottom:643.365000px;}
.y4_c01041{bottom:667.965000px;}
.y3_c01041{bottom:692.565000px;}
.y2_c01041{bottom:717.615000px;}
.y1_c01041{bottom:742.965000px;}
.h3_c01041{height:13.200074px;}
.h4_c01041{height:43.804688px;}
.h2_c01041{height:91.160156px;}
.h1_c01041{height:782.250000px;}
.h0_c01041{height:782.475000px;}
.w2_c01041{width:104.875500px;}
.w0_c01041{width:510.600000px;}
.w1_c01041{width:510.750000px;}
.x0_c01041{left:0.000000px;}
.x1_c01041{left:78.600000px;}
.x2_c01041{left:80.400000px;}
.x3_c01041{left:82.950000px;}
.x4_c01041{left:84.300000px;}
.x5_c01041{left:85.950000px;}
.x6_c01041{left:87.300000px;}
.x7_c01041{left:88.800000px;}
.x8_c01041{left:92.400000px;}
.x9_c01041{left:207.114258px;}
@media print{
.v0_c01041{vertical-align:0.000000pt;}
.ls2_c01041{letter-spacing:-8.000000pt;}
.ls1_c01041{letter-spacing:0.000000pt;}
.ls0_c01041{letter-spacing:10.122667pt;}
.ws1_c01041{word-spacing:-18.712000pt;}
.ws0_c01041{word-spacing:-15.424000pt;}
.ws2_c01041{word-spacing:0.000000pt;}
._11_c01041{margin-left:-9.808000pt;}
._13_c01041{margin-left:-8.410667pt;}
._0_c01041{margin-left:-6.720000pt;}
._1_c01041{margin-left:-4.736000pt;}
._f_c01041{margin-left:-3.712000pt;}
._8_c01041{margin-left:-1.984000pt;}
._c_c01041{margin-left:-0.960000pt;}
._9_c01041{width:1.005333pt;}
._b_c01041{width:1.984000pt;}
._6_c01041{width:2.880000pt;}
._3_c01041{width:4.352000pt;}
._4_c01041{width:5.696000pt;}
._a_c01041{width:6.976000pt;}
._5_c01041{width:8.128000pt;}
._10_c01041{width:9.272000pt;}
._7_c01041{width:10.688000pt;}
._d_c01041{width:11.904000pt;}
._12_c01041{width:13.328000pt;}
._e_c01041{width:14.464000pt;}
._2_c01041{width:410.538667pt;}
.fs4_c01041{font-size:42.666667pt;}
.fs1_c01041{font-size:56.000000pt;}
.fs3_c01041{font-size:61.333333pt;}
.fs0_c01041{font-size:64.000000pt;}
.fs2_c01041{font-size:72.000000pt;}
.y0_c01041{bottom:0.000000pt;}
.y1e_c01041{bottom:2.760000pt;}
.y1d_c01041{bottom:6.425219pt;}
.y1c_c01041{bottom:74.680000pt;}
.y1b_c01041{bottom:95.080000pt;}
.y1a_c01041{bottom:116.680000pt;}
.y19_c01041{bottom:138.946667pt;}
.y18_c01041{bottom:160.813333pt;}
.y17_c01041{bottom:182.813333pt;}
.y16_c01041{bottom:206.146667pt;}
.y15_c01041{bottom:227.213333pt;}
.y14_c01041{bottom:249.346667pt;}
.y13_c01041{bottom:271.613333pt;}
.y12_c01041{bottom:293.080000pt;}
.y11_c01041{bottom:313.880000pt;}
.y10_c01041{bottom:335.480000pt;}
.yf_c01041{bottom:355.880000pt;}
.ye_c01041{bottom:377.213333pt;}
.yd_c01041{bottom:398.413333pt;}
.yc_c01041{bottom:419.746667pt;}
.yb_c01041{bottom:441.080000pt;}
.ya_c01041{bottom:463.213333pt;}
.y9_c01041{bottom:484.546667pt;}
.y8_c01041{bottom:506.413333pt;}
.y7_c01041{bottom:528.413333pt;}
.y6_c01041{bottom:550.280000pt;}
.y5_c01041{bottom:571.880000pt;}
.y4_c01041{bottom:593.746667pt;}
.y3_c01041{bottom:615.613333pt;}
.y2_c01041{bottom:637.880000pt;}
.y1_c01041{bottom:660.413333pt;}
.h3_c01041{height:11.733399pt;}
.h4_c01041{height:38.937500pt;}
.h2_c01041{height:81.031250pt;}
.h1_c01041{height:695.333333pt;}
.h0_c01041{height:695.533333pt;}
.w2_c01041{width:93.222667pt;}
.w0_c01041{width:453.866667pt;}
.w1_c01041{width:454.000000pt;}
.x0_c01041{left:0.000000pt;}
.x1_c01041{left:69.866667pt;}
.x2_c01041{left:71.466667pt;}
.x3_c01041{left:73.733333pt;}
.x4_c01041{left:74.933333pt;}
.x5_c01041{left:76.400000pt;}
.x6_c01041{left:77.600000pt;}
.x7_c01041{left:78.933333pt;}
.x8_c01041{left:82.133333pt;}
.x9_c01041{left:184.101563pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fec15175af5adfe762e922ca.woff2')format("woff");}.ff1_c01042{font-family:ff1_c01042;line-height:1.568848;font-style:normal;font-weight:normal;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_d957a1c5794cb545a6a286db.woff2')format("woff");}.ff2_c01042{font-family:ff2_c01042;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01042;src:url('chunks/assets/font_ddd361d03fae2a0c1a7a49ea.woff2')format("woff");}.ff3_c01042{font-family:ff3_c01042;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01042;src:url('chunks/assets/font_a7a09a7331966efb47ba8019.woff2')format("woff");}.ff4_c01042{font-family:ff4_c01042;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01042;src:url('chunks/assets/font_5cc7759b0f4b206a60ff68ab.woff2')format("woff");}.ff5_c01042{font-family:ff5_c01042;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01042;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01042{font-family:ff6_c01042;line-height:1.219238;font-style: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;}
.ls7_c01042{letter-spacing:-9.000000px;}
.ls8_c01042{letter-spacing:-3.000000px;}
.ls3_c01042{letter-spacing:0.000000px;}
.ls6_c01042{letter-spacing:3.000000px;}
.ls1_c01042{letter-spacing:4.788000px;}
.ls4_c01042{letter-spacing:6.000000px;}
.ls2_c01042{letter-spacing:10.500000px;}
.ls0_c01042{letter-spacing:16.800000px;}
.ls5_c01042{letter-spacing:27.000000px;}
.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:-44.352000px;}
.ws1_c01042{word-spacing:-33.192000px;}
.ws2_c01042{word-spacing:-29.250000px;}
.ws4_c01042{word-spacing:-21.051000px;}
.ws3_c01042{word-spacing:-17.352000px;}
.ws5_c01042{word-spacing:-12.183000px;}
.ws6_c01042{word-spacing:0.000000px;}
._1e_c01042{margin-left:-57.015000px;}
._14_c01042{margin-left:-33.243000px;}
._4_c01042{margin-left:-26.784000px;}
._1d_c01042{margin-left:-23.367000px;}
._13_c01042{margin-left:-15.552000px;}
._1f_c01042{margin-left:-12.786000px;}
._3_c01042{margin-left:-11.520000px;}
._16_c01042{margin-left:-9.960000px;}
._d_c01042{margin-left:-8.547000px;}
._11_c01042{margin-left:-7.473000px;}
._10_c01042{margin-left:-5.400000px;}
._1_c01042{margin-left:-4.032000px;}
._2_c01042{margin-left:-2.808000px;}
._0_c01042{margin-left:-1.800000px;}
._a_c01042{width:1.536000px;}
._5_c01042{width:2.880000px;}
._9_c01042{width:4.512000px;}
._7_c01042{width:5.637000px;}
._12_c01042{width:6.792000px;}
._6_c01042{width:7.800000px;}
._8_c01042{width:8.835000px;}
._c_c01042{width:10.266000px;}
._f_c01042{width:11.793000px;}
._b_c01042{width:13.272000px;}
._15_c01042{width:15.741000px;}
._17_c01042{width:19.206000px;}
._1a_c01042{width:21.456000px;}
._19_c01042{width:22.914000px;}
._18_c01042{width:24.603000px;}
._1b_c01042{width:27.072000px;}
._1c_c01042{width:29.088000px;}
._20_c01042{width:228.096000px;}
._22_c01042{width:385.566000px;}
._21_c01042{width:522.156000px;}
._e_c01042{width:559.008000px;}
.fc2_c01042{color:transparent;}
.fc1_c01042{color:rgb(128,128,128);}
.fc0_c01042{color:rgb(0,0,0);}
.fs5_c01042{font-size:48.000000px;}
.fs1_c01042{font-size:63.000000px;}
.fs3_c01042{font-size:66.000000px;}
.fs0_c01042{font-size:72.000000px;}
.fs2_c01042{font-size:75.000000px;}
.fs4_c01042{font-size:78.000000px;}
.y0_c01042{bottom:0.000000px;}
.y1e_c01042{bottom:3.105000px;}
.y1d_c01042{bottom:7.228363px;}
.y1c_c01042{bottom:54.600000px;}
.y1b_c01042{bottom:83.700000px;}
.y1a_c01042{bottom:107.100000px;}
.y19_c01042{bottom:132.600000px;}
.y18_c01042{bottom:156.900000px;}
.y17_c01042{bottom:181.650000px;}
.y16_c01042{bottom:206.250000px;}
.y15_c01042{bottom:230.850000px;}
.y14_c01042{bottom:254.100000px;}
.y13_c01042{bottom:280.500000px;}
.y12_c01042{bottom:304.500000px;}
.y11_c01042{bottom:328.500000px;}
.y10_c01042{bottom:350.400000px;}
.yf_c01042{bottom:374.250000px;}
.ye_c01042{bottom:399.300000px;}
.yd_c01042{bottom:423.600000px;}
.yc_c01042{bottom:448.200000px;}
.yb_c01042{bottom:472.800000px;}
.ya_c01042{bottom:497.850000px;}
.y9_c01042{bottom:522.450000px;}
.y8_c01042{bottom:546.450000px;}
.y7_c01042{bottom:571.500000px;}
.y6_c01042{bottom:596.700000px;}
.y5_c01042{bottom:621.000000px;}
.y4_c01042{bottom:645.600000px;}
.y3_c01042{bottom:670.050000px;}
.y2_c01042{bottom:695.250000px;}
.y1_c01042{bottom:720.000000px;}
.h3_c01042{height:13.200074px;}
.h4_c01042{height:43.804688px;}
.h2_c01042{height:91.160156px;}
.h0_c01042{height:784.350000px;}
.h1_c01042{height:784.500000px;}
.w2_c01042{width:104.875500px;}
.w1_c01042{width:513.750000px;}
.w0_c01042{width:514.050000px;}
.x0_c01042{left:0.000000px;}
.x6_c01042{left:18.300000px;}
.x7_c01042{left:26.400000px;}
.x2_c01042{left:28.050000px;}
.x3_c01042{left:29.250000px;}
.x4_c01042{left:31.050000px;}
.x8_c01042{left:36.900000px;}
.x5_c01042{left:178.200000px;}
.x1_c01042{left:203.850000px;}
.x9_c01042{left:208.839249px;}
@media print{
.v0_c01042{vertical-align:0.000000pt;}
.ls7_c01042{letter-spacing:-8.000000pt;}
.ls8_c01042{letter-spacing:-2.666667pt;}
.ls3_c01042{letter-spacing:0.000000pt;}
.ls6_c01042{letter-spacing:2.666667pt;}
.ls1_c01042{letter-spacing:4.256000pt;}
.ls4_c01042{letter-spacing:5.333333pt;}
.ls2_c01042{letter-spacing:9.333333pt;}
.ls0_c01042{letter-spacing:14.933333pt;}
.ls5_c01042{letter-spacing:24.000000pt;}
.ws0_c01042{word-spacing:-39.424000pt;}
.ws1_c01042{word-spacing:-29.504000pt;}
.ws2_c01042{word-spacing:-26.000000pt;}
.ws4_c01042{word-spacing:-18.712000pt;}
.ws3_c01042{word-spacing:-15.424000pt;}
.ws5_c01042{word-spacing:-10.829333pt;}
.ws6_c01042{word-spacing:0.000000pt;}
._1e_c01042{margin-left:-50.680000pt;}
._14_c01042{margin-left:-29.549333pt;}
._4_c01042{margin-left:-23.808000pt;}
._1d_c01042{margin-left:-20.770667pt;}
._13_c01042{margin-left:-13.824000pt;}
._1f_c01042{margin-left:-11.365333pt;}
._3_c01042{margin-left:-10.240000pt;}
._16_c01042{margin-left:-8.853333pt;}
._d_c01042{margin-left:-7.597333pt;}
._11_c01042{margin-left:-6.642667pt;}
._10_c01042{margin-left:-4.800000pt;}
._1_c01042{margin-left:-3.584000pt;}
._2_c01042{margin-left:-2.496000pt;}
._0_c01042{margin-left:-1.600000pt;}
._a_c01042{width:1.365333pt;}
._5_c01042{width:2.560000pt;}
._9_c01042{width:4.010667pt;}
._7_c01042{width:5.010667pt;}
._12_c01042{width:6.037333pt;}
._6_c01042{width:6.933333pt;}
._8_c01042{width:7.853333pt;}
._c_c01042{width:9.125333pt;}
._f_c01042{width:10.482667pt;}
._b_c01042{width:11.797333pt;}
._15_c01042{width:13.992000pt;}
._17_c01042{width:17.072000pt;}
._1a_c01042{width:19.072000pt;}
._19_c01042{width:20.368000pt;}
._18_c01042{width:21.869333pt;}
._1b_c01042{width:24.064000pt;}
._1c_c01042{width:25.856000pt;}
._20_c01042{width:202.752000pt;}
._22_c01042{width:342.725333pt;}
._21_c01042{width:464.138667pt;}
._e_c01042{width:496.896000pt;}
.fs5_c01042{font-size:42.666667pt;}
.fs1_c01042{font-size:56.000000pt;}
.fs3_c01042{font-size:58.666667pt;}
.fs0_c01042{font-size:64.000000pt;}
.fs2_c01042{font-size:66.666667pt;}
.fs4_c01042{font-size:69.333333pt;}
.y0_c01042{bottom:0.000000pt;}
.y1e_c01042{bottom:2.760000pt;}
.y1d_c01042{bottom:6.425212pt;}
.y1c_c01042{bottom:48.533333pt;}
.y1b_c01042{bottom:74.400000pt;}
.y1a_c01042{bottom:95.200000pt;}
.y19_c01042{bottom:117.866667pt;}
.y18_c01042{bottom:139.466667pt;}
.y17_c01042{bottom:161.466667pt;}
.y16_c01042{bottom:183.333333pt;}
.y15_c01042{bottom:205.200000pt;}
.y14_c01042{bottom:225.866667pt;}
.y13_c01042{bottom:249.333333pt;}
.y12_c01042{bottom:270.666667pt;}
.y11_c01042{bottom:292.000000pt;}
.y10_c01042{bottom:311.466667pt;}
.yf_c01042{bottom:332.666667pt;}
.ye_c01042{bottom:354.933333pt;}
.yd_c01042{bottom:376.533333pt;}
.yc_c01042{bottom:398.400000pt;}
.yb_c01042{bottom:420.266667pt;}
.ya_c01042{bottom:442.533333pt;}
.y9_c01042{bottom:464.400000pt;}
.y8_c01042{bottom:485.733333pt;}
.y7_c01042{bottom:508.000000pt;}
.y6_c01042{bottom:530.400000pt;}
.y5_c01042{bottom:552.000000pt;}
.y4_c01042{bottom:573.866667pt;}
.y3_c01042{bottom:595.600000pt;}
.y2_c01042{bottom:618.000000pt;}
.y1_c01042{bottom:640.000000pt;}
.h3_c01042{height:11.733399pt;}
.h4_c01042{height:38.937500pt;}
.h2_c01042{height:81.031250pt;}
.h0_c01042{height:697.200000pt;}
.h1_c01042{height:697.333333pt;}
.w2_c01042{width:93.222667pt;}
.w1_c01042{width:456.666667pt;}
.w0_c01042{width:456.933333pt;}
.x0_c01042{left:0.000000pt;}
.x6_c01042{left:16.266667pt;}
.x7_c01042{left:23.466667pt;}
.x2_c01042{left:24.933333pt;}
.x3_c01042{left:26.000000pt;}
.x4_c01042{left:27.600000pt;}
.x8_c01042{left:32.800000pt;}
.x5_c01042{left:158.400000pt;}
.x1_c01042{left:181.200000pt;}
.x9_c01042{left:185.634888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_442ec4e21c239e01cce1421d.woff2')format("woff");}.ff1_c01043{font-family:ff1_c01043;line-height:1.480469;font-style:normal;font-weight:normal;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_82a7f7ce4db850151fee0e3f.woff2')format("woff");}.ff2_c01043{font-family:ff2_c01043;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01043{font-family:ff3_c01043;line-height:1.219238;font-style: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:-3.000000px;}
.ls1_c01043{letter-spacing:0.000000px;}
.ls2_c01043{letter-spacing:6.000000px;}
.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:-37.107000px;}
.ws1_c01043{word-spacing:-17.352000px;}
.ws2_c01043{word-spacing:0.000000px;}
._12_c01043{margin-left:-20.235000px;}
._14_c01043{margin-left:-16.845000px;}
._f_c01043{margin-left:-11.169000px;}
._10_c01043{margin-left:-9.993000px;}
._c_c01043{margin-left:-8.718000px;}
._e_c01043{margin-left:-6.969000px;}
._b_c01043{margin-left:-4.152000px;}
._13_c01043{margin-left:-2.682000px;}
._8_c01043{margin-left:-1.545000px;}
._1_c01043{width:1.131000px;}
._2_c01043{width:2.349000px;}
._0_c01043{width:3.567000px;}
._3_c01043{width:4.911000px;}
._11_c01043{width:5.916000px;}
._4_c01043{width:6.945000px;}
._5_c01043{width:8.262000px;}
._6_c01043{width:10.116000px;}
._9_c01043{width:11.385000px;}
._a_c01043{width:13.122000px;}
._19_c01043{width:14.133000px;}
._7_c01043{width:15.510000px;}
._18_c01043{width:16.938000px;}
._1c_c01043{width:17.970000px;}
._17_c01043{width:19.215000px;}
._15_c01043{width:21.762000px;}
._1a_c01043{width:23.571000px;}
._1b_c01043{width:25.176000px;}
._d_c01043{width:27.186000px;}
._16_c01043{width:214.932000px;}
.fc2_c01043{color:transparent;}
.fc1_c01043{color:rgb(128,128,128);}
.fc0_c01043{color:rgb(0,0,0);}
.fs3_c01043{font-size:24.000000px;}
.fs5_c01043{font-size:48.000000px;}
.fs2_c01043{font-size:63.000000px;}
.fs1_c01043{font-size:69.000000px;}
.fs4_c01043{font-size:72.000000px;}
.fs0_c01043{font-size:87.000000px;}
.y0_c01043{bottom:0.000000px;}
.y1f_c01043{bottom:3.105000px;}
.y1e_c01043{bottom:7.228355px;}
.y1d_c01043{bottom:56.385000px;}
.y1c_c01043{bottom:80.535000px;}
.y1b_c01043{bottom:105.285000px;}
.y1a_c01043{bottom:129.585000px;}
.y19_c01043{bottom:154.785000px;}
.y18_c01043{bottom:179.085000px;}
.y17_c01043{bottom:204.435000px;}
.y16_c01043{bottom:229.035000px;}
.y15_c01043{bottom:254.835000px;}
.y14_c01043{bottom:278.985000px;}
.y13_c01043{bottom:304.635000px;}
.y12_c01043{bottom:328.635000px;}
.y11_c01043{bottom:352.635000px;}
.y10_c01043{bottom:376.185000px;}
.yf_c01043{bottom:401.235000px;}
.ye_c01043{bottom:424.185000px;}
.yd_c01043{bottom:448.485000px;}
.yc_c01043{bottom:472.185000px;}
.yb_c01043{bottom:495.735000px;}
.ya_c01043{bottom:518.385000px;}
.y9_c01043{bottom:543.735000px;}
.y8_c01043{bottom:568.635000px;}
.y7_c01043{bottom:593.235000px;}
.y6_c01043{bottom:617.985000px;}
.y5_c01043{bottom:643.485000px;}
.y4_c01043{bottom:666.135000px;}
.y3_c01043{bottom:691.185000px;}
.y2_c01043{bottom:717.435000px;}
.y1_c01043{bottom:742.785000px;}
.h6_c01043{height:13.200074px;}
.h7_c01043{height:43.804688px;}
.h4_c01043{height:79.765137px;}
.h3_c01043{height:87.361816px;}
.h5_c01043{height:91.160156px;}
.h2_c01043{height:110.151855px;}
.h1_c01043{height:779.250000px;}
.h0_c01043{height:779.475000px;}
.w2_c01043{width:104.875500px;}
.w1_c01043{width:515.250000px;}
.w0_c01043{width:515.400000px;}
.x0_c01043{left:0.000000px;}
.x4_c01043{left:88.650000px;}
.x3_c01043{left:90.150000px;}
.x2_c01043{left:91.350000px;}
.x5_c01043{left:148.500000px;}
.x7_c01043{left:209.514267px;}
.x1_c01043{left:222.750000px;}
.x6_c01043{left:446.850000px;}
@media print{
.v0_c01043{vertical-align:0.000000pt;}
.ls0_c01043{letter-spacing:-2.666667pt;}
.ls1_c01043{letter-spacing:0.000000pt;}
.ls2_c01043{letter-spacing:5.333333pt;}
.ws0_c01043{word-spacing:-32.984000pt;}
.ws1_c01043{word-spacing:-15.424000pt;}
.ws2_c01043{word-spacing:0.000000pt;}
._12_c01043{margin-left:-17.986667pt;}
._14_c01043{margin-left:-14.973333pt;}
._f_c01043{margin-left:-9.928000pt;}
._10_c01043{margin-left:-8.882667pt;}
._c_c01043{margin-left:-7.749333pt;}
._e_c01043{margin-left:-6.194667pt;}
._b_c01043{margin-left:-3.690667pt;}
._13_c01043{margin-left:-2.384000pt;}
._8_c01043{margin-left:-1.373333pt;}
._1_c01043{width:1.005333pt;}
._2_c01043{width:2.088000pt;}
._0_c01043{width:3.170667pt;}
._3_c01043{width:4.365333pt;}
._11_c01043{width:5.258667pt;}
._4_c01043{width:6.173333pt;}
._5_c01043{width:7.344000pt;}
._6_c01043{width:8.992000pt;}
._9_c01043{width:10.120000pt;}
._a_c01043{width:11.664000pt;}
._19_c01043{width:12.562667pt;}
._7_c01043{width:13.786667pt;}
._18_c01043{width:15.056000pt;}
._1c_c01043{width:15.973333pt;}
._17_c01043{width:17.080000pt;}
._15_c01043{width:19.344000pt;}
._1a_c01043{width:20.952000pt;}
._1b_c01043{width:22.378667pt;}
._d_c01043{width:24.165333pt;}
._16_c01043{width:191.050667pt;}
.fs3_c01043{font-size:21.333333pt;}
.fs5_c01043{font-size:42.666667pt;}
.fs2_c01043{font-size:56.000000pt;}
.fs1_c01043{font-size:61.333333pt;}
.fs4_c01043{font-size:64.000000pt;}
.fs0_c01043{font-size:77.333333pt;}
.y0_c01043{bottom:0.000000pt;}
.y1f_c01043{bottom:2.760000pt;}
.y1e_c01043{bottom:6.425204pt;}
.y1d_c01043{bottom:50.120000pt;}
.y1c_c01043{bottom:71.586667pt;}
.y1b_c01043{bottom:93.586667pt;}
.y1a_c01043{bottom:115.186667pt;}
.y19_c01043{bottom:137.586667pt;}
.y18_c01043{bottom:159.186667pt;}
.y17_c01043{bottom:181.720000pt;}
.y16_c01043{bottom:203.586667pt;}
.y15_c01043{bottom:226.520000pt;}
.y14_c01043{bottom:247.986667pt;}
.y13_c01043{bottom:270.786667pt;}
.y12_c01043{bottom:292.120000pt;}
.y11_c01043{bottom:313.453333pt;}
.y10_c01043{bottom:334.386667pt;}
.yf_c01043{bottom:356.653333pt;}
.ye_c01043{bottom:377.053333pt;}
.yd_c01043{bottom:398.653333pt;}
.yc_c01043{bottom:419.720000pt;}
.yb_c01043{bottom:440.653333pt;}
.ya_c01043{bottom:460.786667pt;}
.y9_c01043{bottom:483.320000pt;}
.y8_c01043{bottom:505.453333pt;}
.y7_c01043{bottom:527.320000pt;}
.y6_c01043{bottom:549.320000pt;}
.y5_c01043{bottom:571.986667pt;}
.y4_c01043{bottom:592.120000pt;}
.y3_c01043{bottom:614.386667pt;}
.y2_c01043{bottom:637.720000pt;}
.y1_c01043{bottom:660.253333pt;}
.h6_c01043{height:11.733399pt;}
.h7_c01043{height:38.937500pt;}
.h4_c01043{height:70.902344pt;}
.h3_c01043{height:77.654948pt;}
.h5_c01043{height:81.031250pt;}
.h2_c01043{height:97.912760pt;}
.h1_c01043{height:692.666667pt;}
.h0_c01043{height:692.866667pt;}
.w2_c01043{width:93.222667pt;}
.w1_c01043{width:458.000000pt;}
.w0_c01043{width:458.133333pt;}
.x0_c01043{left:0.000000pt;}
.x4_c01043{left:78.800000pt;}
.x3_c01043{left:80.133333pt;}
.x2_c01043{left:81.200000pt;}
.x5_c01043{left:132.000000pt;}
.x7_c01043{left:186.234904pt;}
.x1_c01043{left:198.000000pt;}
.x6_c01043{left:397.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f3ee377d06c025a932fb3f06.woff2')format("woff");}.ff1_c01044{font-family:ff1_c01044;line-height:1.480469;font-style:normal;font-weight:normal;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_d1533c237b672f80b079fc2e.woff2')format("woff");}.ff2_c01044{font-family:ff2_c01044;line-height:1.568848;font-style:normal;font-weight:normal;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_e88ba72f0acffffb99ef72c8.woff2')format("woff");}.ff3_c01044{font-family:ff3_c01044;line-height:1.284668;font-style:normal;font-weight:normal;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_e2f2b73d0b953b7703dd096e.woff2')format("woff");}.ff4_c01044{font-family:ff4_c01044;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01044{font-family:ff5_c01044;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01044{vertical-align:0.000000px;}
.ls1_c01044{letter-spacing:-3.000000px;}
.ls2_c01044{letter-spacing:0.000000px;}
.ls0_c01044{letter-spacing:3.000000px;}
.ls3_c01044{letter-spacing:6.000000px;}
.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;}
}
.ws3_c01044{word-spacing:-41.100000px;}
.ws2_c01044{word-spacing:-21.000000px;}
.ws0_c01044{word-spacing:-15.906000px;}
.ws1_c01044{word-spacing:-15.183000px;}
.ws4_c01044{word-spacing:0.000000px;}
._12_c01044{margin-left:-11.952000px;}
._b_c01044{margin-left:-9.306000px;}
._7_c01044{margin-left:-8.073000px;}
._c_c01044{margin-left:-6.552000px;}
._e_c01044{margin-left:-5.316000px;}
._15_c01044{margin-left:-4.206000px;}
._5_c01044{margin-left:-2.958000px;}
._2_c01044{margin-left:-1.827000px;}
._3_c01044{width:1.914000px;}
._4_c01044{width:3.828000px;}
._1_c01044{width:4.872000px;}
._8_c01044{width:5.916000px;}
._0_c01044{width:7.134000px;}
._9_c01044{width:8.208000px;}
._6_c01044{width:9.222000px;}
._d_c01044{width:10.554000px;}
._f_c01044{width:11.718000px;}
._13_c01044{width:13.302000px;}
._a_c01044{width:15.396000px;}
._16_c01044{width:17.115000px;}
._17_c01044{width:19.026000px;}
._11_c01044{width:23.832000px;}
._18_c01044{width:35.712000px;}
._14_c01044{width:242.502000px;}
._10_c01044{width:266.754000px;}
._19_c01044{width:316.458000px;}
.fc2_c01044{color:transparent;}
.fc1_c01044{color:rgb(128,128,128);}
.fc0_c01044{color:rgb(0,0,0);}
.fs8_c01044{font-size:48.000000px;}
.fs6_c01044{font-size:51.000000px;}
.fs7_c01044{font-size:60.000000px;}
.fs4_c01044{font-size:63.000000px;}
.fs3_c01044{font-size:66.000000px;}
.fs1_c01044{font-size:72.000000px;}
.fs2_c01044{font-size:75.000000px;}
.fs5_c01044{font-size:84.000000px;}
.fs0_c01044{font-size:87.000000px;}
.y0_c01044{bottom:0.000000px;}
.y1e_c01044{bottom:3.105000px;}
.y1d_c01044{bottom:7.228369px;}
.y1c_c01044{bottom:54.570000px;}
.y1b_c01044{bottom:78.870000px;}
.y1a_c01044{bottom:104.970000px;}
.y19_c01044{bottom:129.570000px;}
.y18_c01044{bottom:155.820000px;}
.y17_c01044{bottom:177.870000px;}
.y16_c01044{bottom:203.070000px;}
.y15_c01044{bottom:230.070000px;}
.y14_c01044{bottom:252.720000px;}
.y13_c01044{bottom:279.420000px;}
.y12_c01044{bottom:305.370000px;}
.y11_c01044{bottom:326.970000px;}
.y10_c01044{bottom:350.970000px;}
.yf_c01044{bottom:375.570000px;}
.ye_c01044{bottom:399.570000px;}
.yd_c01044{bottom:424.170000px;}
.yc_c01044{bottom:474.570000px;}
.yb_c01044{bottom:499.470000px;}
.ya_c01044{bottom:523.470000px;}
.y9_c01044{bottom:547.770000px;}
.y8_c01044{bottom:572.670000px;}
.y7_c01044{bottom:597.270000px;}
.y6_c01044{bottom:621.720000px;}
.y5_c01044{bottom:646.020000px;}
.y4_c01044{bottom:670.320000px;}
.y3_c01044{bottom:695.820000px;}
.y2_c01044{bottom:719.220000px;}
.y1_c01044{bottom:744.120000px;}
.h8_c01044{height:13.200073px;}
.h9_c01044{height:43.804688px;}
.h6_c01044{height:64.571777px;}
.h3_c01044{height:73.608398px;}
.h7_c01044{height:75.966797px;}
.h5_c01044{height:82.441406px;}
.h4_c01044{height:83.563477px;}
.h2_c01044{height:91.160156px;}
.h1_c01044{height:110.151855px;}
.h0_c01044{height:780.000000px;}
.w2_c01044{width:104.875500px;}
.w1_c01044{width:528.000000px;}
.w0_c01044{width:528.150000px;}
.x0_c01044{left:0.000000px;}
.xb_c01044{left:18.150000px;}
.xa_c01044{left:20.550000px;}
.x9_c01044{left:22.650000px;}
.x8_c01044{left:24.000000px;}
.x7_c01044{left:26.250000px;}
.x6_c01044{left:27.300000px;}
.x5_c01044{left:28.950000px;}
.x4_c01044{left:30.600000px;}
.x3_c01044{left:31.650000px;}
.x2_c01044{left:33.450000px;}
.x1_c01044{left:157.200000px;}
.xd_c01044{left:215.889267px;}
.xc_c01044{left:227.700000px;}
@media print{
.v0_c01044{vertical-align:0.000000pt;}
.ls1_c01044{letter-spacing:-2.666667pt;}
.ls2_c01044{letter-spacing:0.000000pt;}
.ls0_c01044{letter-spacing:2.666667pt;}
.ls3_c01044{letter-spacing:5.333333pt;}
.ws3_c01044{word-spacing:-36.533333pt;}
.ws2_c01044{word-spacing:-18.666667pt;}
.ws0_c01044{word-spacing:-14.138667pt;}
.ws1_c01044{word-spacing:-13.496000pt;}
.ws4_c01044{word-spacing:0.000000pt;}
._12_c01044{margin-left:-10.624000pt;}
._b_c01044{margin-left:-8.272000pt;}
._7_c01044{margin-left:-7.176000pt;}
._c_c01044{margin-left:-5.824000pt;}
._e_c01044{margin-left:-4.725333pt;}
._15_c01044{margin-left:-3.738667pt;}
._5_c01044{margin-left:-2.629333pt;}
._2_c01044{margin-left:-1.624000pt;}
._3_c01044{width:1.701333pt;}
._4_c01044{width:3.402667pt;}
._1_c01044{width:4.330667pt;}
._8_c01044{width:5.258667pt;}
._0_c01044{width:6.341333pt;}
._9_c01044{width:7.296000pt;}
._6_c01044{width:8.197333pt;}
._d_c01044{width:9.381333pt;}
._f_c01044{width:10.416000pt;}
._13_c01044{width:11.824000pt;}
._a_c01044{width:13.685333pt;}
._16_c01044{width:15.213333pt;}
._17_c01044{width:16.912000pt;}
._11_c01044{width:21.184000pt;}
._18_c01044{width:31.744000pt;}
._14_c01044{width:215.557333pt;}
._10_c01044{width:237.114667pt;}
._19_c01044{width:281.296000pt;}
.fs8_c01044{font-size:42.666667pt;}
.fs6_c01044{font-size:45.333333pt;}
.fs7_c01044{font-size:53.333333pt;}
.fs4_c01044{font-size:56.000000pt;}
.fs3_c01044{font-size:58.666667pt;}
.fs1_c01044{font-size:64.000000pt;}
.fs2_c01044{font-size:66.666667pt;}
.fs5_c01044{font-size:74.666667pt;}
.fs0_c01044{font-size:77.333333pt;}
.y0_c01044{bottom:0.000000pt;}
.y1e_c01044{bottom:2.760000pt;}
.y1d_c01044{bottom:6.425217pt;}
.y1c_c01044{bottom:48.506667pt;}
.y1b_c01044{bottom:70.106667pt;}
.y1a_c01044{bottom:93.306667pt;}
.y19_c01044{bottom:115.173333pt;}
.y18_c01044{bottom:138.506667pt;}
.y17_c01044{bottom:158.106667pt;}
.y16_c01044{bottom:180.506667pt;}
.y15_c01044{bottom:204.506667pt;}
.y14_c01044{bottom:224.640000pt;}
.y13_c01044{bottom:248.373333pt;}
.y12_c01044{bottom:271.440000pt;}
.y11_c01044{bottom:290.640000pt;}
.y10_c01044{bottom:311.973333pt;}
.yf_c01044{bottom:333.840000pt;}
.ye_c01044{bottom:355.173333pt;}
.yd_c01044{bottom:377.040000pt;}
.yc_c01044{bottom:421.840000pt;}
.yb_c01044{bottom:443.973333pt;}
.ya_c01044{bottom:465.306667pt;}
.y9_c01044{bottom:486.906667pt;}
.y8_c01044{bottom:509.040000pt;}
.y7_c01044{bottom:530.906667pt;}
.y6_c01044{bottom:552.640000pt;}
.y5_c01044{bottom:574.240000pt;}
.y4_c01044{bottom:595.840000pt;}
.y3_c01044{bottom:618.506667pt;}
.y2_c01044{bottom:639.306667pt;}
.y1_c01044{bottom:661.440000pt;}
.h8_c01044{height:11.733399pt;}
.h9_c01044{height:38.937500pt;}
.h6_c01044{height:57.397135pt;}
.h3_c01044{height:65.429688pt;}
.h7_c01044{height:67.526042pt;}
.h5_c01044{height:73.281250pt;}
.h4_c01044{height:74.278646pt;}
.h2_c01044{height:81.031250pt;}
.h1_c01044{height:97.912760pt;}
.h0_c01044{height:693.333333pt;}
.w2_c01044{width:93.222667pt;}
.w1_c01044{width:469.333333pt;}
.w0_c01044{width:469.466667pt;}
.x0_c01044{left:0.000000pt;}
.xb_c01044{left:16.133333pt;}
.xa_c01044{left:18.266667pt;}
.x9_c01044{left:20.133333pt;}
.x8_c01044{left:21.333333pt;}
.x7_c01044{left:23.333333pt;}
.x6_c01044{left:24.266667pt;}
.x5_c01044{left:25.733333pt;}
.x4_c01044{left:27.200000pt;}
.x3_c01044{left:28.133333pt;}
.x2_c01044{left:29.733333pt;}
.x1_c01044{left:139.733333pt;}
.xd_c01044{left:191.901571pt;}
.xc_c01044{left:202.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_76fcb85eaf0d333271e05477.woff2')format("woff");}.ff1_c01045{font-family:ff1_c01045;line-height:1.568848;font-style:normal;font-weight:normal;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_f6777ccf87c38d0a3f5775e3.woff2')format("woff");}.ff2_c01045{font-family:ff2_c01045;line-height:1.480469;font-style:normal;font-weight:normal;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_28899971b3068dc580d2b01b.woff2')format("woff");}.ff3_c01045{font-family:ff3_c01045;line-height:1.284180;font-style:normal;font-weight:normal;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_0869bd8bde0f4144a0d48b8f.woff2')format("woff");}.ff4_c01045{font-family:ff4_c01045;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01045{font-family:ff5_c01045;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01045{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01045{vertical-align:0.000000px;}
.ls6_c01045{letter-spacing:-9.000000px;}
.ls5_c01045{letter-spacing:0.000000px;}
.ls2_c01045{letter-spacing:3.588000px;}
.ls4_c01045{letter-spacing:8.448000px;}
.ls3_c01045{letter-spacing:14.388000px;}
.ls1_c01045{letter-spacing:16.788000px;}
.ls7_c01045{letter-spacing:27.000000px;}
.ls0_c01045{letter-spacing:433.833000px;}
.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;}
}
.ws5_c01045{word-spacing:-39.000000px;}
.ws6_c01045{word-spacing:-21.051000px;}
.ws4_c01045{word-spacing:-17.352000px;}
.ws3_c01045{word-spacing:-14.460000px;}
.ws0_c01045{word-spacing:-0.840000px;}
.ws7_c01045{word-spacing:0.000000px;}
.ws2_c01045{word-spacing:0.900000px;}
.ws1_c01045{word-spacing:3.660000px;}
._22_c01045{margin-left:-81.606000px;}
._2c_c01045{margin-left:-69.861000px;}
._36_c01045{margin-left:-62.289000px;}
._38_c01045{margin-left:-54.000000px;}
._39_c01045{margin-left:-51.120000px;}
._37_c01045{margin-left:-34.704000px;}
._2e_c01045{margin-left:-31.059000px;}
._3c_c01045{margin-left:-29.160000px;}
._3b_c01045{margin-left:-26.712000px;}
._3a_c01045{margin-left:-25.488000px;}
._35_c01045{margin-left:-22.968000px;}
._2d_c01045{margin-left:-18.966000px;}
._29_c01045{margin-left:-16.878000px;}
._18_c01045{margin-left:-14.460000px;}
._1b_c01045{margin-left:-13.260000px;}
._24_c01045{margin-left:-12.093000px;}
._b_c01045{margin-left:-10.740000px;}
._e_c01045{margin-left:-8.196000px;}
._14_c01045{margin-left:-6.981000px;}
._d_c01045{margin-left:-5.418000px;}
._c_c01045{margin-left:-4.032000px;}
._34_c01045{margin-left:-2.580000px;}
._0_c01045{margin-left:-1.566000px;}
._a_c01045{width:1.014000px;}
._7_c01045{width:2.664000px;}
._9_c01045{width:3.672000px;}
._8_c01045{width:4.752000px;}
._3_c01045{width:6.480000px;}
._2_c01045{width:8.280000px;}
._6_c01045{width:9.480000px;}
._5_c01045{width:10.980000px;}
._12_c01045{width:12.420000px;}
._26_c01045{width:14.040000px;}
._11_c01045{width:15.480000px;}
._10_c01045{width:17.160000px;}
._f_c01045{width:18.660000px;}
._4_c01045{width:19.920000px;}
._13_c01045{width:22.896000px;}
._17_c01045{width:24.660000px;}
._15_c01045{width:26.820000px;}
._16_c01045{width:28.680000px;}
._1a_c01045{width:32.880000px;}
._32_c01045{width:34.260000px;}
._19_c01045{width:37.440000px;}
._31_c01045{width:38.580000px;}
._23_c01045{width:43.848000px;}
._20_c01045{width:45.420000px;}
._28_c01045{width:50.565000px;}
._2a_c01045{width:66.450000px;}
._21_c01045{width:68.718000px;}
._25_c01045{width:73.062000px;}
._2f_c01045{width:94.128000px;}
._27_c01045{width:114.387000px;}
._1f_c01045{width:232.068000px;}
._30_c01045{width:261.069000px;}
._1_c01045{width:327.639000px;}
._1e_c01045{width:328.686000px;}
._2b_c01045{width:666.354000px;}
._33_c01045{width:674.163000px;}
._3d_c01045{width:778.566000px;}
._1d_c01045{width:785.226000px;}
._1c_c01045{width:1031.754000px;}
.fc2_c01045{color:transparent;}
.fc1_c01045{color:rgb(128,128,128);}
.fc0_c01045{color:rgb(0,0,0);}
.fs6_c01045{font-size:48.000000px;}
.fs3_c01045{font-size:51.000000px;}
.fs1_c01045{font-size:60.000000px;}
.fs5_c01045{font-size:63.000000px;}
.fs2_c01045{font-size:72.000000px;}
.fs4_c01045{font-size:78.000000px;}
.fs0_c01045{font-size:87.000000px;}
.y0_c01045{bottom:0.000000px;}
.y1c_c01045{bottom:3.105000px;}
.y1b_c01045{bottom:7.228357px;}
.y1a_c01045{bottom:55.980000px;}
.y19_c01045{bottom:76.380000px;}
.y18_c01045{bottom:101.580000px;}
.y17_c01045{bottom:126.330000px;}
.y16_c01045{bottom:153.330000px;}
.y15_c01045{bottom:178.830000px;}
.y14_c01045{bottom:203.280000px;}
.y13_c01045{bottom:228.780000px;}
.y12_c01045{bottom:258.180000px;}
.y11_c01045{bottom:312.930000px;}
.y10_c01045{bottom:340.980000px;}
.yf_c01045{bottom:366.930000px;}
.ye_c01045{bottom:395.280000px;}
.yd_c01045{bottom:422.580000px;}
.yc_c01045{bottom:447.930000px;}
.yb_c01045{bottom:473.130000px;}
.ya_c01045{bottom:502.980000px;}
.y9_c01045{bottom:528.480000px;}
.y8_c01045{bottom:557.580000px;}
.y7_c01045{bottom:585.330000px;}
.y6_c01045{bottom:613.530000px;}
.y5_c01045{bottom:640.680000px;}
.y4_c01045{bottom:667.980000px;}
.y3_c01045{bottom:692.580000px;}
.y2_c01045{bottom:717.180000px;}
.y1_c01045{bottom:743.130000px;}
.h6_c01045{height:13.200074px;}
.h7_c01045{height:43.804688px;}
.h4_c01045{height:70.224609px;}
.h5_c01045{height:84.269531px;}
.h3_c01045{height:91.160156px;}
.h2_c01045{height:110.151855px;}
.h0_c01045{height:781.950000px;}
.h1_c01045{height:782.250000px;}
.w2_c01045{width:104.875500px;}
.w0_c01045{width:535.950000px;}
.w1_c01045{width:536.250000px;}
.x0_c01045{left:0.000000px;}
.x7_c01045{left:95.850000px;}
.x2_c01045{left:105.600000px;}
.x3_c01045{left:106.650000px;}
.x6_c01045{left:111.000000px;}
.x1_c01045{left:112.950000px;}
.x9_c01045{left:114.000000px;}
.xa_c01045{left:116.100000px;}
.xc_c01045{left:118.350000px;}
.xd_c01045{left:119.700000px;}
.x4_c01045{left:137.100000px;}
.x5_c01045{left:139.950000px;}
.x8_c01045{left:141.750000px;}
.xb_c01045{left:144.450000px;}
.xe_c01045{left:219.300000px;}
@media print{
.v0_c01045{vertical-align:0.000000pt;}
.ls6_c01045{letter-spacing:-8.000000pt;}
.ls5_c01045{letter-spacing:0.000000pt;}
.ls2_c01045{letter-spacing:3.189333pt;}
.ls4_c01045{letter-spacing:7.509333pt;}
.ls3_c01045{letter-spacing:12.789333pt;}
.ls1_c01045{letter-spacing:14.922667pt;}
.ls7_c01045{letter-spacing:24.000000pt;}
.ls0_c01045{letter-spacing:385.629333pt;}
.ws5_c01045{word-spacing:-34.666667pt;}
.ws6_c01045{word-spacing:-18.712000pt;}
.ws4_c01045{word-spacing:-15.424000pt;}
.ws3_c01045{word-spacing:-12.853333pt;}
.ws0_c01045{word-spacing:-0.746667pt;}
.ws7_c01045{word-spacing:0.000000pt;}
.ws2_c01045{word-spacing:0.800000pt;}
.ws1_c01045{word-spacing:3.253333pt;}
._22_c01045{margin-left:-72.538667pt;}
._2c_c01045{margin-left:-62.098667pt;}
._36_c01045{margin-left:-55.368000pt;}
._38_c01045{margin-left:-48.000000pt;}
._39_c01045{margin-left:-45.440000pt;}
._37_c01045{margin-left:-30.848000pt;}
._2e_c01045{margin-left:-27.608000pt;}
._3c_c01045{margin-left:-25.920000pt;}
._3b_c01045{margin-left:-23.744000pt;}
._3a_c01045{margin-left:-22.656000pt;}
._35_c01045{margin-left:-20.416000pt;}
._2d_c01045{margin-left:-16.858667pt;}
._29_c01045{margin-left:-15.002667pt;}
._18_c01045{margin-left:-12.853333pt;}
._1b_c01045{margin-left:-11.786667pt;}
._24_c01045{margin-left:-10.749333pt;}
._b_c01045{margin-left:-9.546667pt;}
._e_c01045{margin-left:-7.285333pt;}
._14_c01045{margin-left:-6.205333pt;}
._d_c01045{margin-left:-4.816000pt;}
._c_c01045{margin-left:-3.584000pt;}
._34_c01045{margin-left:-2.293333pt;}
._0_c01045{margin-left:-1.392000pt;}
._a_c01045{width:0.901333pt;}
._7_c01045{width:2.368000pt;}
._9_c01045{width:3.264000pt;}
._8_c01045{width:4.224000pt;}
._3_c01045{width:5.760000pt;}
._2_c01045{width:7.360000pt;}
._6_c01045{width:8.426667pt;}
._5_c01045{width:9.760000pt;}
._12_c01045{width:11.040000pt;}
._26_c01045{width:12.480000pt;}
._11_c01045{width:13.760000pt;}
._10_c01045{width:15.253333pt;}
._f_c01045{width:16.586667pt;}
._4_c01045{width:17.706667pt;}
._13_c01045{width:20.352000pt;}
._17_c01045{width:21.920000pt;}
._15_c01045{width:23.840000pt;}
._16_c01045{width:25.493333pt;}
._1a_c01045{width:29.226667pt;}
._32_c01045{width:30.453333pt;}
._19_c01045{width:33.280000pt;}
._31_c01045{width:34.293333pt;}
._23_c01045{width:38.976000pt;}
._20_c01045{width:40.373333pt;}
._28_c01045{width:44.946667pt;}
._2a_c01045{width:59.066667pt;}
._21_c01045{width:61.082667pt;}
._25_c01045{width:64.944000pt;}
._2f_c01045{width:83.669333pt;}
._27_c01045{width:101.677333pt;}
._1f_c01045{width:206.282667pt;}
._30_c01045{width:232.061333pt;}
._1_c01045{width:291.234667pt;}
._1e_c01045{width:292.165333pt;}
._2b_c01045{width:592.314667pt;}
._33_c01045{width:599.256000pt;}
._3d_c01045{width:692.058667pt;}
._1d_c01045{width:697.978667pt;}
._1c_c01045{width:917.114667pt;}
.fs6_c01045{font-size:42.666667pt;}
.fs3_c01045{font-size:45.333333pt;}
.fs1_c01045{font-size:53.333333pt;}
.fs5_c01045{font-size:56.000000pt;}
.fs2_c01045{font-size:64.000000pt;}
.fs4_c01045{font-size:69.333333pt;}
.fs0_c01045{font-size:77.333333pt;}
.y0_c01045{bottom:0.000000pt;}
.y1c_c01045{bottom:2.760000pt;}
.y1b_c01045{bottom:6.425206pt;}
.y1a_c01045{bottom:49.760000pt;}
.y19_c01045{bottom:67.893333pt;}
.y18_c01045{bottom:90.293333pt;}
.y17_c01045{bottom:112.293333pt;}
.y16_c01045{bottom:136.293333pt;}
.y15_c01045{bottom:158.960000pt;}
.y14_c01045{bottom:180.693333pt;}
.y13_c01045{bottom:203.360000pt;}
.y12_c01045{bottom:229.493333pt;}
.y11_c01045{bottom:278.160000pt;}
.y10_c01045{bottom:303.093333pt;}
.yf_c01045{bottom:326.160000pt;}
.ye_c01045{bottom:351.360000pt;}
.yd_c01045{bottom:375.626667pt;}
.yc_c01045{bottom:398.160000pt;}
.yb_c01045{bottom:420.560000pt;}
.ya_c01045{bottom:447.093333pt;}
.y9_c01045{bottom:469.760000pt;}
.y8_c01045{bottom:495.626667pt;}
.y7_c01045{bottom:520.293333pt;}
.y6_c01045{bottom:545.360000pt;}
.y5_c01045{bottom:569.493333pt;}
.y4_c01045{bottom:593.760000pt;}
.y3_c01045{bottom:615.626667pt;}
.y2_c01045{bottom:637.493333pt;}
.y1_c01045{bottom:660.560000pt;}
.h6_c01045{height:11.733399pt;}
.h7_c01045{height:38.937500pt;}
.h4_c01045{height:62.421875pt;}
.h5_c01045{height:74.906250pt;}
.h3_c01045{height:81.031250pt;}
.h2_c01045{height:97.912760pt;}
.h0_c01045{height:695.066667pt;}
.h1_c01045{height:695.333333pt;}
.w2_c01045{width:93.222667pt;}
.w0_c01045{width:476.400000pt;}
.w1_c01045{width:476.666667pt;}
.x0_c01045{left:0.000000pt;}
.x7_c01045{left:85.200000pt;}
.x2_c01045{left:93.866667pt;}
.x3_c01045{left:94.800000pt;}
.x6_c01045{left:98.666667pt;}
.x1_c01045{left:100.400000pt;}
.x9_c01045{left:101.333333pt;}
.xa_c01045{left:103.200000pt;}
.xc_c01045{left:105.200000pt;}
.xd_c01045{left:106.400000pt;}
.x4_c01045{left:121.866667pt;}
.x5_c01045{left:124.400000pt;}
.x8_c01045{left:126.000000pt;}
.xb_c01045{left:128.400000pt;}
.xe_c01045{left:194.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6bab4819c1a0abb9de02c5d2.woff2')format("woff");}.ff1_c01046{font-family:ff1_c01046;line-height:1.480469;font-style:normal;font-weight:normal;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_6a08dfc984178d848649949f.woff2')format("woff");}.ff2_c01046{font-family:ff2_c01046;line-height:1.284668;font-style:normal;font-weight:normal;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_c1411735d41fab7e5af9ea4c.woff2')format("woff");}.ff3_c01046{font-family:ff3_c01046;line-height:1.284668;font-style:normal;font-weight:normal;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_a44ccea5a7bc8461818692dc.woff2')format("woff");}.ff4_c01046{font-family:ff4_c01046;line-height:1.568848;font-style:normal;font-weight:normal;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_e1a8522cac84fe4506647b06.woff2')format("woff");}.ff5_c01046{font-family:ff5_c01046;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01046;src:url('chunks/assets/font_9249d8a5ce771908d21fb8ca.woff2')format("woff");}.ff6_c01046{font-family:ff6_c01046;line-height:1.575000;font-style:normal;font-weight: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_c01046;src:url('chunks/assets/font_af4a30f887957ec95a4cb540.woff2')format("woff");}.ff7_c01046{font-family:ff7_c01046;line-height:1.284180;font-style:normal;font-weight: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_c01046;src:url('chunks/assets/font_8cd37fc49d7af343755bc1ff.woff2')format("woff");}.ff8_c01046{font-family:ff8_c01046;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01046;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff9_c01046{font-family:ff9_c01046;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01046{vertical-align:0.000000px;}
.ls6_c01046{letter-spacing:-9.000000px;}
.ls9_c01046{letter-spacing:-6.000000px;}
.ls7_c01046{letter-spacing:-3.000000px;}
.ls5_c01046{letter-spacing:0.000000px;}
.ls4_c01046{letter-spacing:5.304000px;}
.ls8_c01046{letter-spacing:15.000000px;}
.ls0_c01046{letter-spacing:17.574000px;}
.ls3_c01046{letter-spacing:19.800000px;}
.ls2_c01046{letter-spacing:21.000000px;}
.ls1_c01046{letter-spacing:74.448000px;}
.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;}
}
.ws9_c01046{word-spacing:-51.375000px;}
.ws8_c01046{word-spacing:-45.375000px;}
.ws3_c01046{word-spacing:-24.750000px;}
.ws5_c01046{word-spacing:-21.051000px;}
.ws6_c01046{word-spacing:-21.000000px;}
.ws2_c01046{word-spacing:-19.500000px;}
.ws4_c01046{word-spacing:-17.352000px;}
.ws7_c01046{word-spacing:-13.629000px;}
.ws1_c01046{word-spacing:-0.078000px;}
.ws0_c01046{word-spacing:-0.062400px;}
.wsa_c01046{word-spacing:0.000000px;}
._12_c01046{margin-left:-26.301600px;}
._34_c01046{margin-left:-20.826000px;}
._14_c01046{margin-left:-19.266000px;}
._10_c01046{margin-left:-17.005200px;}
._e_c01046{margin-left:-15.738000px;}
._33_c01046{margin-left:-14.113200px;}
._13_c01046{margin-left:-12.532800px;}
._17_c01046{margin-left:-10.896000px;}
._a_c01046{margin-left:-9.882000px;}
._8_c01046{margin-left:-8.712000px;}
._6_c01046{margin-left:-7.356000px;}
._9_c01046{margin-left:-6.216000px;}
._b_c01046{margin-left:-5.136000px;}
._7_c01046{margin-left:-3.978000px;}
._5_c01046{margin-left:-2.574000px;}
._4_c01046{margin-left:-1.482000px;}
._2_c01046{width:1.584000px;}
._1_c01046{width:3.456000px;}
._0_c01046{width:4.608000px;}
._11_c01046{width:6.489600px;}
._16_c01046{width:7.734000px;}
._f_c01046{width:9.294000px;}
._d_c01046{width:10.842000px;}
._24_c01046{width:11.922000px;}
._2a_c01046{width:13.197000px;}
._15_c01046{width:15.470400px;}
._2f_c01046{width:16.836600px;}
._1b_c01046{width:17.913000px;}
._26_c01046{width:19.905000px;}
._29_c01046{width:21.018000px;}
._25_c01046{width:22.347000px;}
._31_c01046{width:26.127600px;}
._c_c01046{width:27.240000px;}
._28_c01046{width:28.359000px;}
._1c_c01046{width:30.450000px;}
._30_c01046{width:32.184000px;}
._27_c01046{width:33.944400px;}
._23_c01046{width:36.540000px;}
._21_c01046{width:39.432000px;}
._19_c01046{width:44.274000px;}
._1f_c01046{width:47.505000px;}
._22_c01046{width:52.986000px;}
._2e_c01046{width:63.207000px;}
._1d_c01046{width:70.977000px;}
._1a_c01046{width:93.955200px;}
._32_c01046{width:146.074800px;}
._20_c01046{width:162.213000px;}
._2d_c01046{width:167.668800px;}
._1e_c01046{width:180.043800px;}
._2b_c01046{width:210.877200px;}
._2c_c01046{width:248.634000px;}
._18_c01046{width:441.454800px;}
._3_c01046{width:470.232000px;}
.fc2_c01046{color:transparent;}
.fc1_c01046{color:rgb(128,128,128);}
.fc0_c01046{color:rgb(0,0,0);}
.fs5_c01046{font-size:24.000000px;}
.fsa_c01046{font-size:42.000000px;}
.fsd_c01046{font-size:48.000000px;}
.fs7_c01046{font-size:54.000000px;}
.fsb_c01046{font-size:60.000000px;}
.fs2_c01046{font-size:62.400000px;}
.fs6_c01046{font-size:63.000000px;}
.fs8_c01046{font-size:69.000000px;}
.fs0_c01046{font-size:72.000000px;}
.fsc_c01046{font-size:75.000000px;}
.fs1_c01046{font-size:78.000000px;}
.fs9_c01046{font-size:81.000000px;}
.fs4_c01046{font-size:84.000000px;}
.fs3_c01046{font-size:99.000000px;}
.y0_c01046{bottom:0.000000px;}
.y19_c01046{bottom:3.105000px;}
.y18_c01046{bottom:7.228357px;}
.y17_c01046{bottom:70.530000px;}
.y16_c01046{bottom:118.530000px;}
.y15_c01046{bottom:144.780000px;}
.y14_c01046{bottom:169.830000px;}
.y13_c01046{bottom:196.080000px;}
.y12_c01046{bottom:220.680000px;}
.y11_c01046{bottom:247.380000px;}
.y10_c01046{bottom:305.430000px;}
.yf_c01046{bottom:317.880000px;}
.ye_c01046{bottom:332.880000px;}
.yd_c01046{bottom:358.830000px;}
.yc_c01046{bottom:412.830000px;}
.yb_c01046{bottom:438.480000px;}
.ya_c01046{bottom:496.080000px;}
.y9_c01046{bottom:520.080000px;}
.y8_c01046{bottom:560.580000px;}
.y7_c01046{bottom:607.830000px;}
.y6_c01046{bottom:636.630000px;}
.y5_c01046{bottom:659.880000px;}
.y4_c01046{bottom:685.830000px;}
.y3_c01046{bottom:709.830000px;}
.y2_c01046{bottom:734.430000px;}
.y1_c01046{bottom:759.030000px;}
.hc_c01046{height:13.200074px;}
.hd_c01046{height:43.804688px;}
.h8_c01046{height:53.176758px;}
.h3_c01046{height:76.552734px;}
.h6_c01046{height:82.400391px;}
.h9_c01046{height:82.441406px;}
.h2_c01046{height:84.269531px;}
.h7_c01046{height:87.361816px;}
.hb_c01046{height:87.780762px;}
.h5_c01046{height:91.160156px;}
.ha_c01046{height:94.958496px;}
.h4_c01046{height:97.163086px;}
.h1_c01046{height:796.500000px;}
.h0_c01046{height:796.800000px;}
.w2_c01046{width:104.875500px;}
.w0_c01046{width:513.525000px;}
.w1_c01046{width:513.750000px;}
.x0_c01046{left:0.000000px;}
.x2_c01046{left:33.450000px;}
.x3_c01046{left:34.500000px;}
.x4_c01046{left:36.150000px;}
.x6_c01046{left:39.450000px;}
.x5_c01046{left:41.250000px;}
.xe_c01046{left:43.500000px;}
.x7_c01046{left:45.000000px;}
.xd_c01046{left:47.250000px;}
.x8_c01046{left:50.700000px;}
.x9_c01046{left:62.850000px;}
.xb_c01046{left:64.800000px;}
.xa_c01046{left:99.900000px;}
.x1_c01046{left:141.000000px;}
.xf_c01046{left:208.576767px;}
.xc_c01046{left:228.450000px;}
@media print{
.v0_c01046{vertical-align:0.000000pt;}
.ls6_c01046{letter-spacing:-8.000000pt;}
.ls9_c01046{letter-spacing:-5.333333pt;}
.ls7_c01046{letter-spacing:-2.666667pt;}
.ls5_c01046{letter-spacing:0.000000pt;}
.ls4_c01046{letter-spacing:4.714667pt;}
.ls8_c01046{letter-spacing:13.333333pt;}
.ls0_c01046{letter-spacing:15.621333pt;}
.ls3_c01046{letter-spacing:17.600000pt;}
.ls2_c01046{letter-spacing:18.666667pt;}
.ls1_c01046{letter-spacing:66.176000pt;}
.ws9_c01046{word-spacing:-45.666667pt;}
.ws8_c01046{word-spacing:-40.333333pt;}
.ws3_c01046{word-spacing:-22.000000pt;}
.ws5_c01046{word-spacing:-18.712000pt;}
.ws6_c01046{word-spacing:-18.666667pt;}
.ws2_c01046{word-spacing:-17.333333pt;}
.ws4_c01046{word-spacing:-15.424000pt;}
.ws7_c01046{word-spacing:-12.114667pt;}
.ws1_c01046{word-spacing:-0.069333pt;}
.ws0_c01046{word-spacing:-0.055467pt;}
.wsa_c01046{word-spacing:0.000000pt;}
._12_c01046{margin-left:-23.379200pt;}
._34_c01046{margin-left:-18.512000pt;}
._14_c01046{margin-left:-17.125333pt;}
._10_c01046{margin-left:-15.115733pt;}
._e_c01046{margin-left:-13.989333pt;}
._33_c01046{margin-left:-12.545067pt;}
._13_c01046{margin-left:-11.140267pt;}
._17_c01046{margin-left:-9.685333pt;}
._a_c01046{margin-left:-8.784000pt;}
._8_c01046{margin-left:-7.744000pt;}
._6_c01046{margin-left:-6.538667pt;}
._9_c01046{margin-left:-5.525333pt;}
._b_c01046{margin-left:-4.565333pt;}
._7_c01046{margin-left:-3.536000pt;}
._5_c01046{margin-left:-2.288000pt;}
._4_c01046{margin-left:-1.317333pt;}
._2_c01046{width:1.408000pt;}
._1_c01046{width:3.072000pt;}
._0_c01046{width:4.096000pt;}
._11_c01046{width:5.768533pt;}
._16_c01046{width:6.874667pt;}
._f_c01046{width:8.261333pt;}
._d_c01046{width:9.637333pt;}
._24_c01046{width:10.597333pt;}
._2a_c01046{width:11.730667pt;}
._15_c01046{width:13.751467pt;}
._2f_c01046{width:14.965867pt;}
._1b_c01046{width:15.922667pt;}
._26_c01046{width:17.693333pt;}
._29_c01046{width:18.682667pt;}
._25_c01046{width:19.864000pt;}
._31_c01046{width:23.224533pt;}
._c_c01046{width:24.213333pt;}
._28_c01046{width:25.208000pt;}
._1c_c01046{width:27.066667pt;}
._30_c01046{width:28.608000pt;}
._27_c01046{width:30.172800pt;}
._23_c01046{width:32.480000pt;}
._21_c01046{width:35.050667pt;}
._19_c01046{width:39.354667pt;}
._1f_c01046{width:42.226667pt;}
._22_c01046{width:47.098667pt;}
._2e_c01046{width:56.184000pt;}
._1d_c01046{width:63.090667pt;}
._1a_c01046{width:83.515733pt;}
._32_c01046{width:129.844267pt;}
._20_c01046{width:144.189333pt;}
._2d_c01046{width:149.038933pt;}
._1e_c01046{width:160.038933pt;}
._2b_c01046{width:187.446400pt;}
._2c_c01046{width:221.008000pt;}
._18_c01046{width:392.404267pt;}
._3_c01046{width:417.984000pt;}
.fs5_c01046{font-size:21.333333pt;}
.fsa_c01046{font-size:37.333333pt;}
.fsd_c01046{font-size:42.666667pt;}
.fs7_c01046{font-size:48.000000pt;}
.fsb_c01046{font-size:53.333333pt;}
.fs2_c01046{font-size:55.466667pt;}
.fs6_c01046{font-size:56.000000pt;}
.fs8_c01046{font-size:61.333333pt;}
.fs0_c01046{font-size:64.000000pt;}
.fsc_c01046{font-size:66.666667pt;}
.fs1_c01046{font-size:69.333333pt;}
.fs9_c01046{font-size:72.000000pt;}
.fs4_c01046{font-size:74.666667pt;}
.fs3_c01046{font-size:88.000000pt;}
.y0_c01046{bottom:0.000000pt;}
.y19_c01046{bottom:2.760000pt;}
.y18_c01046{bottom:6.425206pt;}
.y17_c01046{bottom:62.693333pt;}
.y16_c01046{bottom:105.360000pt;}
.y15_c01046{bottom:128.693333pt;}
.y14_c01046{bottom:150.960000pt;}
.y13_c01046{bottom:174.293333pt;}
.y12_c01046{bottom:196.160000pt;}
.y11_c01046{bottom:219.893333pt;}
.y10_c01046{bottom:271.493333pt;}
.yf_c01046{bottom:282.560000pt;}
.ye_c01046{bottom:295.893333pt;}
.yd_c01046{bottom:318.960000pt;}
.yc_c01046{bottom:366.960000pt;}
.yb_c01046{bottom:389.760000pt;}
.ya_c01046{bottom:440.960000pt;}
.y9_c01046{bottom:462.293333pt;}
.y8_c01046{bottom:498.293333pt;}
.y7_c01046{bottom:540.293333pt;}
.y6_c01046{bottom:565.893333pt;}
.y5_c01046{bottom:586.560000pt;}
.y4_c01046{bottom:609.626667pt;}
.y3_c01046{bottom:630.960000pt;}
.y2_c01046{bottom:652.826667pt;}
.y1_c01046{bottom:674.693333pt;}
.hc_c01046{height:11.733399pt;}
.hd_c01046{height:38.937500pt;}
.h8_c01046{height:47.268229pt;}
.h3_c01046{height:68.046875pt;}
.h6_c01046{height:73.244792pt;}
.h9_c01046{height:73.281250pt;}
.h2_c01046{height:74.906250pt;}
.h7_c01046{height:77.654948pt;}
.hb_c01046{height:78.027344pt;}
.h5_c01046{height:81.031250pt;}
.ha_c01046{height:84.407552pt;}
.h4_c01046{height:86.367188pt;}
.h1_c01046{height:708.000000pt;}
.h0_c01046{height:708.266667pt;}
.w2_c01046{width:93.222667pt;}
.w0_c01046{width:456.466667pt;}
.w1_c01046{width:456.666667pt;}
.x0_c01046{left:0.000000pt;}
.x2_c01046{left:29.733333pt;}
.x3_c01046{left:30.666667pt;}
.x4_c01046{left:32.133333pt;}
.x6_c01046{left:35.066667pt;}
.x5_c01046{left:36.666667pt;}
.xe_c01046{left:38.666667pt;}
.x7_c01046{left:40.000000pt;}
.xd_c01046{left:42.000000pt;}
.x8_c01046{left:45.066667pt;}
.x9_c01046{left:55.866667pt;}
.xb_c01046{left:57.600000pt;}
.xa_c01046{left:88.800000pt;}
.x1_c01046{left:125.333333pt;}
.xf_c01046{left:185.401571pt;}
.xc_c01046{left:203.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e19c33e2536520f5e5f200d1.woff2')format("woff");}.ff1_c01047{font-family:ff1_c01047;line-height:1.284180;font-style:normal;font-weight:normal;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_98f82b85ca44202da8409908.woff2')format("woff");}.ff2_c01047{font-family:ff2_c01047;line-height:1.284668;font-style:normal;font-weight:normal;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_54ad0eb02853147086e9a0bc.woff2')format("woff");}.ff3_c01047{font-family:ff3_c01047;line-height:1.568848;font-style:normal;font-weight:normal;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_e2f0a374fdd9f8e538357c6d.woff2')format("woff");}.ff4_c01047{font-family:ff4_c01047;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01047;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01047{font-family:ff5_c01047;line-height:1.219238;font-style: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:3.000000px;}
.ls0_c01047{letter-spacing:4.500000px;}
.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;}
._1d_c01047{margin-left:-34.776000px;}
._16_c01047{margin-left:-21.399000px;}
._17_c01047{margin-left:-16.689000px;}
._d_c01047{margin-left:-11.364000px;}
._11_c01047{margin-left:-9.432000px;}
._e_c01047{margin-left:-8.352000px;}
._10_c01047{margin-left:-7.224000px;}
._c_c01047{margin-left:-5.865000px;}
._f_c01047{margin-left:-4.485000px;}
._a_c01047{margin-left:-2.748000px;}
._6_c01047{margin-left:-1.518000px;}
._0_c01047{width:1.680000px;}
._2_c01047{width:3.192000px;}
._5_c01047{width:4.227000px;}
._3_c01047{width:5.244000px;}
._4_c01047{width:7.020000px;}
._b_c01047{width:8.040000px;}
._1_c01047{width:9.072000px;}
._12_c01047{width:10.521000px;}
._7_c01047{width:11.523000px;}
._13_c01047{width:13.275000px;}
._8_c01047{width:15.336000px;}
._18_c01047{width:18.255000px;}
._9_c01047{width:19.977000px;}
._15_c01047{width:21.912000px;}
._19_c01047{width:43.230000px;}
._1a_c01047{width:47.034000px;}
._14_c01047{width:59.547000px;}
._1c_c01047{width:93.753000px;}
._1b_c01047{width:129.897000px;}
._1e_c01047{width:881.889000px;}
.fc2_c01047{color:transparent;}
.fc1_c01047{color:rgb(128,128,128);}
.fc0_c01047{color:rgb(0,0,0);}
.fs4_c01047{font-size:48.000000px;}
.fs2_c01047{font-size:57.000000px;}
.fs1_c01047{font-size:69.000000px;}
.fs3_c01047{font-size:72.000000px;}
.fs0_c01047{font-size:84.000000px;}
.y0_c01047{bottom:0.000000px;}
.y1f_c01047{bottom:3.105000px;}
.y1e_c01047{bottom:7.228355px;}
.y1d_c01047{bottom:51.885000px;}
.y1c_c01047{bottom:78.585000px;}
.y1b_c01047{bottom:105.585000px;}
.y1a_c01047{bottom:129.585000px;}
.y19_c01047{bottom:154.935000px;}
.y18_c01047{bottom:179.235000px;}
.y17_c01047{bottom:204.885000px;}
.y16_c01047{bottom:230.085000px;}
.y15_c01047{bottom:255.135000px;}
.y14_c01047{bottom:280.785000px;}
.y13_c01047{bottom:304.635000px;}
.y12_c01047{bottom:330.735000px;}
.y11_c01047{bottom:354.735000px;}
.y10_c01047{bottom:380.235000px;}
.yf_c01047{bottom:402.285000px;}
.ye_c01047{bottom:426.135000px;}
.yd_c01047{bottom:450.585000px;}
.yc_c01047{bottom:473.835000px;}
.yb_c01047{bottom:499.485000px;}
.ya_c01047{bottom:523.785000px;}
.y9_c01047{bottom:547.335000px;}
.y8_c01047{bottom:572.985000px;}
.y7_c01047{bottom:596.985000px;}
.y6_c01047{bottom:622.335000px;}
.y5_c01047{bottom:646.935000px;}
.y4_c01047{bottom:670.935000px;}
.y3_c01047{bottom:696.285000px;}
.y2_c01047{bottom:720.135000px;}
.y1_c01047{bottom:746.535000px;}
.h5_c01047{height:13.200074px;}
.h6_c01047{height:43.804688px;}
.h2_c01047{height:82.441406px;}
.h3_c01047{height:87.361816px;}
.h4_c01047{height:91.160156px;}
.h0_c01047{height:776.775000px;}
.h1_c01047{height:777.000000px;}
.w1_c01047{width:104.875500px;}
.w0_c01047{width:516.750000px;}
.x0_c01047{left:0.000000px;}
.xa_c01047{left:73.500000px;}
.x9_c01047{left:77.550000px;}
.x8_c01047{left:79.350000px;}
.x7_c01047{left:80.550000px;}
.x4_c01047{left:81.600000px;}
.x3_c01047{left:82.650000px;}
.x2_c01047{left:83.700000px;}
.x5_c01047{left:85.950000px;}
.x6_c01047{left:88.050000px;}
.xb_c01047{left:210.189240px;}
.x1_c01047{left:213.000000px;}
@media print{
.v0_c01047{vertical-align:0.000000pt;}
.ls1_c01047{letter-spacing:0.000000pt;}
.ls2_c01047{letter-spacing:2.666667pt;}
.ls0_c01047{letter-spacing:4.000000pt;}
.ws0_c01047{word-spacing:0.000000pt;}
._1d_c01047{margin-left:-30.912000pt;}
._16_c01047{margin-left:-19.021333pt;}
._17_c01047{margin-left:-14.834667pt;}
._d_c01047{margin-left:-10.101333pt;}
._11_c01047{margin-left:-8.384000pt;}
._e_c01047{margin-left:-7.424000pt;}
._10_c01047{margin-left:-6.421333pt;}
._c_c01047{margin-left:-5.213333pt;}
._f_c01047{margin-left:-3.986667pt;}
._a_c01047{margin-left:-2.442667pt;}
._6_c01047{margin-left:-1.349333pt;}
._0_c01047{width:1.493333pt;}
._2_c01047{width:2.837333pt;}
._5_c01047{width:3.757333pt;}
._3_c01047{width:4.661333pt;}
._4_c01047{width:6.240000pt;}
._b_c01047{width:7.146667pt;}
._1_c01047{width:8.064000pt;}
._12_c01047{width:9.352000pt;}
._7_c01047{width:10.242667pt;}
._13_c01047{width:11.800000pt;}
._8_c01047{width:13.632000pt;}
._18_c01047{width:16.226667pt;}
._9_c01047{width:17.757333pt;}
._15_c01047{width:19.477333pt;}
._19_c01047{width:38.426667pt;}
._1a_c01047{width:41.808000pt;}
._14_c01047{width:52.930667pt;}
._1c_c01047{width:83.336000pt;}
._1b_c01047{width:115.464000pt;}
._1e_c01047{width:783.901333pt;}
.fs4_c01047{font-size:42.666667pt;}
.fs2_c01047{font-size:50.666667pt;}
.fs1_c01047{font-size:61.333333pt;}
.fs3_c01047{font-size:64.000000pt;}
.fs0_c01047{font-size:74.666667pt;}
.y0_c01047{bottom:0.000000pt;}
.y1f_c01047{bottom:2.760000pt;}
.y1e_c01047{bottom:6.425204pt;}
.y1d_c01047{bottom:46.120000pt;}
.y1c_c01047{bottom:69.853333pt;}
.y1b_c01047{bottom:93.853333pt;}
.y1a_c01047{bottom:115.186667pt;}
.y19_c01047{bottom:137.720000pt;}
.y18_c01047{bottom:159.320000pt;}
.y17_c01047{bottom:182.120000pt;}
.y16_c01047{bottom:204.520000pt;}
.y15_c01047{bottom:226.786667pt;}
.y14_c01047{bottom:249.586667pt;}
.y13_c01047{bottom:270.786667pt;}
.y12_c01047{bottom:293.986667pt;}
.y11_c01047{bottom:315.320000pt;}
.y10_c01047{bottom:337.986667pt;}
.yf_c01047{bottom:357.586667pt;}
.ye_c01047{bottom:378.786667pt;}
.yd_c01047{bottom:400.520000pt;}
.yc_c01047{bottom:421.186667pt;}
.yb_c01047{bottom:443.986667pt;}
.ya_c01047{bottom:465.586667pt;}
.y9_c01047{bottom:486.520000pt;}
.y8_c01047{bottom:509.320000pt;}
.y7_c01047{bottom:530.653333pt;}
.y6_c01047{bottom:553.186667pt;}
.y5_c01047{bottom:575.053333pt;}
.y4_c01047{bottom:596.386667pt;}
.y3_c01047{bottom:618.920000pt;}
.y2_c01047{bottom:640.120000pt;}
.y1_c01047{bottom:663.586667pt;}
.h5_c01047{height:11.733399pt;}
.h6_c01047{height:38.937500pt;}
.h2_c01047{height:73.281250pt;}
.h3_c01047{height:77.654948pt;}
.h4_c01047{height:81.031250pt;}
.h0_c01047{height:690.466667pt;}
.h1_c01047{height:690.666667pt;}
.w1_c01047{width:93.222667pt;}
.w0_c01047{width:459.333333pt;}
.x0_c01047{left:0.000000pt;}
.xa_c01047{left:65.333333pt;}
.x9_c01047{left:68.933333pt;}
.x8_c01047{left:70.533333pt;}
.x7_c01047{left:71.600000pt;}
.x4_c01047{left:72.533333pt;}
.x3_c01047{left:73.466667pt;}
.x2_c01047{left:74.400000pt;}
.x5_c01047{left:76.400000pt;}
.x6_c01047{left:78.266667pt;}
.xb_c01047{left:186.834880pt;}
.x1_c01047{left:189.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_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_ae98df43527b91b26d30a884.woff2')format("woff");}.ff1_c01048{font-family:ff1_c01048;line-height:1.284180;font-style:normal;font-weight:normal;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_309d8f05084e3c23de801b4b.woff2')format("woff");}.ff2_c01048{font-family:ff2_c01048;line-height:1.284180;font-style:normal;font-weight:normal;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_b215a43815ce89dab90dc64f.woff2')format("woff");}.ff3_c01048{font-family:ff3_c01048;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01048;src:url('chunks/assets/font_ebce3029059afd0480e423a1.woff2')format("woff");}.ff4_c01048{font-family:ff4_c01048;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01048;src:url('chunks/assets/font_9d1ae9e8a163a44b568f426b.woff2')format("woff");}.ff5_c01048{font-family:ff5_c01048;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01048;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01048{font-family:ff6_c01048;line-height:1.219238;font-style: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;}
.ls1_c01048{letter-spacing:0.000000px;}
.ls0_c01048{letter-spacing:4.788000px;}
.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:-35.212800px;}
.ws1_c01048{word-spacing:-17.352000px;}
.ws2_c01048{word-spacing:0.000000px;}
._18_c01048{margin-left:-63.540000px;}
._11_c01048{margin-left:-23.592000px;}
._1a_c01048{margin-left:-19.318200px;}
._19_c01048{margin-left:-11.091000px;}
._17_c01048{margin-left:-9.591000px;}
._12_c01048{margin-left:-7.872000px;}
._f_c01048{margin-left:-5.988000px;}
._d_c01048{margin-left:-4.884000px;}
._6_c01048{margin-left:-2.844000px;}
._7_c01048{margin-left:-1.368000px;}
._a_c01048{width:1.164000px;}
._2_c01048{width:2.436000px;}
._1_c01048{width:4.116000px;}
._3_c01048{width:5.460000px;}
._0_c01048{width:6.552000px;}
._9_c01048{width:7.824000px;}
._e_c01048{width:8.988000px;}
._b_c01048{width:10.584000px;}
._c_c01048{width:12.300000px;}
._8_c01048{width:13.428000px;}
._10_c01048{width:15.120000px;}
._5_c01048{width:20.428800px;}
._15_c01048{width:22.329000px;}
._14_c01048{width:24.226200px;}
._1b_c01048{width:66.879000px;}
._13_c01048{width:216.636000px;}
._16_c01048{width:273.342000px;}
._4_c01048{width:324.264000px;}
.fc2_c01048{color:transparent;}
.fc1_c01048{color:rgb(128,128,128);}
.fc0_c01048{color:rgb(0,0,0);}
.fs5_c01048{font-size:48.000000px;}
.fs3_c01048{font-size:63.000000px;}
.fs1_c01048{font-size:67.200000px;}
.fs4_c01048{font-size:69.000000px;}
.fs2_c01048{font-size:72.000000px;}
.fs0_c01048{font-size:84.000000px;}
.y0_c01048{bottom:0.000000px;}
.y1f_c01048{bottom:3.105000px;}
.y1e_c01048{bottom:7.228369px;}
.y1d_c01048{bottom:47.820000px;}
.y1c_c01048{bottom:72.870000px;}
.y1b_c01048{bottom:99.120000px;}
.y1a_c01048{bottom:122.220000px;}
.y19_c01048{bottom:148.470000px;}
.y18_c01048{bottom:176.220000px;}
.y17_c01048{bottom:197.370000px;}
.y16_c01048{bottom:224.070000px;}
.y15_c01048{bottom:247.320000px;}
.y14_c01048{bottom:276.120000px;}
.y13_c01048{bottom:301.020000px;}
.y12_c01048{bottom:321.270000px;}
.y11_c01048{bottom:346.170000px;}
.y10_c01048{bottom:370.620000px;}
.yf_c01048{bottom:394.770000px;}
.ye_c01048{bottom:420.120000px;}
.yd_c01048{bottom:444.420000px;}
.yc_c01048{bottom:468.420000px;}
.yb_c01048{bottom:494.070000px;}
.ya_c01048{bottom:518.370000px;}
.y9_c01048{bottom:543.420000px;}
.y8_c01048{bottom:568.020000px;}
.y7_c01048{bottom:592.020000px;}
.y6_c01048{bottom:617.520000px;}
.y5_c01048{bottom:641.520000px;}
.y4_c01048{bottom:665.820000px;}
.y3_c01048{bottom:690.420000px;}
.y2_c01048{bottom:715.770000px;}
.y1_c01048{bottom:741.120000px;}
.h6_c01048{height:13.200073px;}
.h7_c01048{height:43.804688px;}
.h2_c01048{height:82.400391px;}
.h5_c01048{height:82.441406px;}
.h4_c01048{height:87.361816px;}
.h3_c01048{height:91.160156px;}
.h1_c01048{height:785.250000px;}
.h0_c01048{height:785.400000px;}
.w2_c01048{width:104.875500px;}
.w0_c01048{width:524.625000px;}
.w1_c01048{width:525.000000px;}
.x0_c01048{left:0.000000px;}
.x7_c01048{left:29.700000px;}
.x6_c01048{left:31.800000px;}
.x3_c01048{left:33.150000px;}
.x2_c01048{left:34.200000px;}
.x5_c01048{left:35.550000px;}
.x4_c01048{left:36.750000px;}
.x1_c01048{left:156.150000px;}
.x9_c01048{left:214.126740px;}
.x8_c01048{left:386.850000px;}
@media print{
.v0_c01048{vertical-align:0.000000pt;}
.ls1_c01048{letter-spacing:0.000000pt;}
.ls0_c01048{letter-spacing:4.256000pt;}
.ws0_c01048{word-spacing:-31.300267pt;}
.ws1_c01048{word-spacing:-15.424000pt;}
.ws2_c01048{word-spacing:0.000000pt;}
._18_c01048{margin-left:-56.480000pt;}
._11_c01048{margin-left:-20.970667pt;}
._1a_c01048{margin-left:-17.171733pt;}
._19_c01048{margin-left:-9.858667pt;}
._17_c01048{margin-left:-8.525333pt;}
._12_c01048{margin-left:-6.997333pt;}
._f_c01048{margin-left:-5.322667pt;}
._d_c01048{margin-left:-4.341333pt;}
._6_c01048{margin-left:-2.528000pt;}
._7_c01048{margin-left:-1.216000pt;}
._a_c01048{width:1.034667pt;}
._2_c01048{width:2.165333pt;}
._1_c01048{width:3.658667pt;}
._3_c01048{width:4.853333pt;}
._0_c01048{width:5.824000pt;}
._9_c01048{width:6.954667pt;}
._e_c01048{width:7.989333pt;}
._b_c01048{width:9.408000pt;}
._c_c01048{width:10.933333pt;}
._8_c01048{width:11.936000pt;}
._10_c01048{width:13.440000pt;}
._5_c01048{width:18.158933pt;}
._15_c01048{width:19.848000pt;}
._14_c01048{width:21.534400pt;}
._1b_c01048{width:59.448000pt;}
._13_c01048{width:192.565333pt;}
._16_c01048{width:242.970667pt;}
._4_c01048{width:288.234667pt;}
.fs5_c01048{font-size:42.666667pt;}
.fs3_c01048{font-size:56.000000pt;}
.fs1_c01048{font-size:59.733333pt;}
.fs4_c01048{font-size:61.333333pt;}
.fs2_c01048{font-size:64.000000pt;}
.fs0_c01048{font-size:74.666667pt;}
.y0_c01048{bottom:0.000000pt;}
.y1f_c01048{bottom:2.760000pt;}
.y1e_c01048{bottom:6.425217pt;}
.y1d_c01048{bottom:42.506667pt;}
.y1c_c01048{bottom:64.773333pt;}
.y1b_c01048{bottom:88.106667pt;}
.y1a_c01048{bottom:108.640000pt;}
.y19_c01048{bottom:131.973333pt;}
.y18_c01048{bottom:156.640000pt;}
.y17_c01048{bottom:175.440000pt;}
.y16_c01048{bottom:199.173333pt;}
.y15_c01048{bottom:219.840000pt;}
.y14_c01048{bottom:245.440000pt;}
.y13_c01048{bottom:267.573333pt;}
.y12_c01048{bottom:285.573333pt;}
.y11_c01048{bottom:307.706667pt;}
.y10_c01048{bottom:329.440000pt;}
.yf_c01048{bottom:350.906667pt;}
.ye_c01048{bottom:373.440000pt;}
.yd_c01048{bottom:395.040000pt;}
.yc_c01048{bottom:416.373333pt;}
.yb_c01048{bottom:439.173333pt;}
.ya_c01048{bottom:460.773333pt;}
.y9_c01048{bottom:483.040000pt;}
.y8_c01048{bottom:504.906667pt;}
.y7_c01048{bottom:526.240000pt;}
.y6_c01048{bottom:548.906667pt;}
.y5_c01048{bottom:570.240000pt;}
.y4_c01048{bottom:591.840000pt;}
.y3_c01048{bottom:613.706667pt;}
.y2_c01048{bottom:636.240000pt;}
.y1_c01048{bottom:658.773333pt;}
.h6_c01048{height:11.733399pt;}
.h7_c01048{height:38.937500pt;}
.h2_c01048{height:73.244792pt;}
.h5_c01048{height:73.281250pt;}
.h4_c01048{height:77.654948pt;}
.h3_c01048{height:81.031250pt;}
.h1_c01048{height:698.000000pt;}
.h0_c01048{height:698.133333pt;}
.w2_c01048{width:93.222667pt;}
.w0_c01048{width:466.333333pt;}
.w1_c01048{width:466.666667pt;}
.x0_c01048{left:0.000000pt;}
.x7_c01048{left:26.400000pt;}
.x6_c01048{left:28.266667pt;}
.x3_c01048{left:29.466667pt;}
.x2_c01048{left:30.400000pt;}
.x5_c01048{left:31.600000pt;}
.x4_c01048{left:32.666667pt;}
.x1_c01048{left:138.800000pt;}
.x9_c01048{left:190.334880pt;}
.x8_c01048{left:343.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c241f95443ab70b6e40293b1.woff2')format("woff");}.ff1_c01049{font-family:ff1_c01049;line-height:1.284668;font-style:normal;font-weight:normal;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_e6b1a76e32de2dd8b442a862.woff2')format("woff");}.ff2_c01049{font-family:ff2_c01049;line-height:1.568848;font-style:normal;font-weight:normal;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_c7323ee983308edace32f700.woff2')format("woff");}.ff3_c01049{font-family:ff3_c01049;line-height:1.480469;font-style:normal;font-weight:normal;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_9ef1377755cb3cc00d74befa.woff2')format("woff");}.ff4_c01049{font-family:ff4_c01049;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01049;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01049{font-family:ff5_c01049;line-height:1.219238;font-style: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;}
.ls4_c01049{letter-spacing:0.000000px;}
.ls3_c01049{letter-spacing:3.000000px;}
.ls2_c01049{letter-spacing:6.000000px;}
.ls0_c01049{letter-spacing:6.768000px;}
.ls1_c01049{letter-spacing:10.788000px;}
.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:-33.192000px;}
.ws2_c01049{word-spacing:-17.352000px;}
.ws1_c01049{word-spacing:-0.894000px;}
.ws3_c01049{word-spacing:0.000000px;}
._13_c01049{margin-left:-25.101000px;}
._8_c01049{margin-left:-18.150000px;}
._e_c01049{margin-left:-15.984000px;}
._f_c01049{margin-left:-14.586000px;}
._6_c01049{margin-left:-12.900000px;}
._7_c01049{margin-left:-11.850000px;}
._9_c01049{margin-left:-9.675000px;}
._1c_c01049{margin-left:-8.670000px;}
._5_c01049{margin-left:-7.650000px;}
._10_c01049{margin-left:-6.075000px;}
._2_c01049{margin-left:-4.950000px;}
._4_c01049{margin-left:-3.300000px;}
._3_c01049{margin-left:-2.175000px;}
._11_c01049{margin-left:-1.119000px;}
._b_c01049{width:1.800000px;}
._a_c01049{width:2.844000px;}
._c_c01049{width:3.936000px;}
._0_c01049{width:5.400000px;}
._d_c01049{width:7.044000px;}
._1_c01049{width:8.250000px;}
._1a_c01049{width:9.276000px;}
._12_c01049{width:10.296000px;}
._19_c01049{width:11.925000px;}
._15_c01049{width:13.032000px;}
._17_c01049{width:14.787000px;}
._16_c01049{width:15.822000px;}
._1b_c01049{width:18.477000px;}
._14_c01049{width:19.764000px;}
._18_c01049{width:22.119000px;}
._1d_c01049{width:24.030000px;}
._1e_c01049{width:512.988000px;}
._1f_c01049{width:673.533000px;}
.fc2_c01049{color:transparent;}
.fc1_c01049{color:rgb(128,128,128);}
.fc0_c01049{color:rgb(0,0,0);}
.fs5_c01049{font-size:48.000000px;}
.fs4_c01049{font-size:54.000000px;}
.fs1_c01049{font-size:63.000000px;}
.fs3_c01049{font-size:69.000000px;}
.fs2_c01049{font-size:72.000000px;}
.fs0_c01049{font-size:75.000000px;}
.y0_c01049{bottom:0.000000px;}
.y1e_c01049{bottom:3.105000px;}
.y1d_c01049{bottom:7.228369px;}
.y1c_c01049{bottom:52.320000px;}
.y1b_c01049{bottom:78.270000px;}
.y1a_c01049{bottom:103.620000px;}
.y19_c01049{bottom:129.570000px;}
.y18_c01049{bottom:155.520000px;}
.y17_c01049{bottom:180.270000px;}
.y16_c01049{bottom:204.420000px;}
.y15_c01049{bottom:228.870000px;}
.y14_c01049{bottom:254.370000px;}
.y13_c01049{bottom:278.370000px;}
.y12_c01049{bottom:302.970000px;}
.y11_c01049{bottom:328.320000px;}
.y10_c01049{bottom:353.670000px;}
.yf_c01049{bottom:377.970000px;}
.ye_c01049{bottom:401.220000px;}
.yd_c01049{bottom:424.920000px;}
.yc_c01049{bottom:448.470000px;}
.yb_c01049{bottom:473.520000px;}
.ya_c01049{bottom:498.120000px;}
.y9_c01049{bottom:522.120000px;}
.y8_c01049{bottom:547.320000px;}
.y7_c01049{bottom:571.320000px;}
.y6_c01049{bottom:596.670000px;}
.y5_c01049{bottom:620.370000px;}
.y4_c01049{bottom:644.520000px;}
.y3_c01049{bottom:670.620000px;}
.y2_c01049{bottom:695.220000px;}
.y1_c01049{bottom:718.470000px;}
.h5_c01049{height:13.200073px;}
.h6_c01049{height:43.804688px;}
.h4_c01049{height:52.998047px;}
.h2_c01049{height:73.608398px;}
.h3_c01049{height:91.160156px;}
.h1_c01049{height:778.500000px;}
.h0_c01049{height:778.650000px;}
.w2_c01049{width:104.875500px;}
.w1_c01049{width:523.500000px;}
.w0_c01049{width:523.800000px;}
.x0_c01049{left:0.000000px;}
.x6_c01049{left:99.600000px;}
.x7_c01049{left:100.800000px;}
.x5_c01049{left:101.850000px;}
.x4_c01049{left:103.500000px;}
.x2_c01049{left:105.300000px;}
.x1_c01049{left:131.250000px;}
.x8_c01049{left:141.450000px;}
.x3_c01049{left:148.500000px;}
.x9_c01049{left:213.714249px;}
@media print{
.v0_c01049{vertical-align:0.000000pt;}
.ls4_c01049{letter-spacing:0.000000pt;}
.ls3_c01049{letter-spacing:2.666667pt;}
.ls2_c01049{letter-spacing:5.333333pt;}
.ls0_c01049{letter-spacing:6.016000pt;}
.ls1_c01049{letter-spacing:9.589333pt;}
.ws0_c01049{word-spacing:-29.504000pt;}
.ws2_c01049{word-spacing:-15.424000pt;}
.ws1_c01049{word-spacing:-0.794667pt;}
.ws3_c01049{word-spacing:0.000000pt;}
._13_c01049{margin-left:-22.312000pt;}
._8_c01049{margin-left:-16.133333pt;}
._e_c01049{margin-left:-14.208000pt;}
._f_c01049{margin-left:-12.965333pt;}
._6_c01049{margin-left:-11.466667pt;}
._7_c01049{margin-left:-10.533333pt;}
._9_c01049{margin-left:-8.600000pt;}
._1c_c01049{margin-left:-7.706667pt;}
._5_c01049{margin-left:-6.800000pt;}
._10_c01049{margin-left:-5.400000pt;}
._2_c01049{margin-left:-4.400000pt;}
._4_c01049{margin-left:-2.933333pt;}
._3_c01049{margin-left:-1.933333pt;}
._11_c01049{margin-left:-0.994667pt;}
._b_c01049{width:1.600000pt;}
._a_c01049{width:2.528000pt;}
._c_c01049{width:3.498667pt;}
._0_c01049{width:4.800000pt;}
._d_c01049{width:6.261333pt;}
._1_c01049{width:7.333333pt;}
._1a_c01049{width:8.245333pt;}
._12_c01049{width:9.152000pt;}
._19_c01049{width:10.600000pt;}
._15_c01049{width:11.584000pt;}
._17_c01049{width:13.144000pt;}
._16_c01049{width:14.064000pt;}
._1b_c01049{width:16.424000pt;}
._14_c01049{width:17.568000pt;}
._18_c01049{width:19.661333pt;}
._1d_c01049{width:21.360000pt;}
._1e_c01049{width:455.989333pt;}
._1f_c01049{width:598.696000pt;}
.fs5_c01049{font-size:42.666667pt;}
.fs4_c01049{font-size:48.000000pt;}
.fs1_c01049{font-size:56.000000pt;}
.fs3_c01049{font-size:61.333333pt;}
.fs2_c01049{font-size:64.000000pt;}
.fs0_c01049{font-size:66.666667pt;}
.y0_c01049{bottom:0.000000pt;}
.y1e_c01049{bottom:2.760000pt;}
.y1d_c01049{bottom:6.425217pt;}
.y1c_c01049{bottom:46.506667pt;}
.y1b_c01049{bottom:69.573333pt;}
.y1a_c01049{bottom:92.106667pt;}
.y19_c01049{bottom:115.173333pt;}
.y18_c01049{bottom:138.240000pt;}
.y17_c01049{bottom:160.240000pt;}
.y16_c01049{bottom:181.706667pt;}
.y15_c01049{bottom:203.440000pt;}
.y14_c01049{bottom:226.106667pt;}
.y13_c01049{bottom:247.440000pt;}
.y12_c01049{bottom:269.306667pt;}
.y11_c01049{bottom:291.840000pt;}
.y10_c01049{bottom:314.373333pt;}
.yf_c01049{bottom:335.973333pt;}
.ye_c01049{bottom:356.640000pt;}
.yd_c01049{bottom:377.706667pt;}
.yc_c01049{bottom:398.640000pt;}
.yb_c01049{bottom:420.906667pt;}
.ya_c01049{bottom:442.773333pt;}
.y9_c01049{bottom:464.106667pt;}
.y8_c01049{bottom:486.506667pt;}
.y7_c01049{bottom:507.840000pt;}
.y6_c01049{bottom:530.373333pt;}
.y5_c01049{bottom:551.440000pt;}
.y4_c01049{bottom:572.906667pt;}
.y3_c01049{bottom:596.106667pt;}
.y2_c01049{bottom:617.973333pt;}
.y1_c01049{bottom:638.640000pt;}
.h5_c01049{height:11.733399pt;}
.h6_c01049{height:38.937500pt;}
.h4_c01049{height:47.109375pt;}
.h2_c01049{height:65.429688pt;}
.h3_c01049{height:81.031250pt;}
.h1_c01049{height:692.000000pt;}
.h0_c01049{height:692.133333pt;}
.w2_c01049{width:93.222667pt;}
.w1_c01049{width:465.333333pt;}
.w0_c01049{width:465.600000pt;}
.x0_c01049{left:0.000000pt;}
.x6_c01049{left:88.533333pt;}
.x7_c01049{left:89.600000pt;}
.x5_c01049{left:90.533333pt;}
.x4_c01049{left:92.000000pt;}
.x2_c01049{left:93.600000pt;}
.x1_c01049{left:116.666667pt;}
.x8_c01049{left:125.733333pt;}
.x3_c01049{left:132.000000pt;}
.x9_c01049{left:189.968221pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_70e174f7dce8d08e9eb85d82.woff2')format("woff");}.ff1_c01050{font-family:ff1_c01050;line-height:1.480469;font-style:normal;font-weight:normal;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_a7a09a7331966efb47ba8019.woff2')format("woff");}.ff2_c01050{font-family:ff2_c01050;line-height:1.284180;font-style:normal;font-weight:normal;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_222ee51bddc70487cb07ecdb.woff2')format("woff");}.ff3_c01050{font-family:ff3_c01050;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01050;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01050{font-family:ff4_c01050;line-height:1.219238;font-style: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;}
.ls2_c01050{letter-spacing:3.000000px;}
.ls0_c01050{letter-spacing:4.200000px;}
.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:-17.352000px;}
.ws1_c01050{word-spacing:0.000000px;}
._12_c01050{margin-left:-10.440000px;}
._11_c01050{margin-left:-8.856000px;}
._8_c01050{margin-left:-6.960000px;}
._13_c01050{margin-left:-5.460000px;}
._10_c01050{margin-left:-4.236000px;}
._e_c01050{margin-left:-2.424000px;}
._b_c01050{margin-left:-1.224000px;}
._c_c01050{width:1.536000px;}
._4_c01050{width:2.640000px;}
._a_c01050{width:3.816000px;}
._9_c01050{width:4.968000px;}
._2_c01050{width:6.240000px;}
._5_c01050{width:7.680000px;}
._d_c01050{width:9.336000px;}
._7_c01050{width:11.220000px;}
._3_c01050{width:13.320000px;}
._f_c01050{width:14.568000px;}
._1_c01050{width:16.080000px;}
._14_c01050{width:17.151000px;}
._0_c01050{width:26.460000px;}
._15_c01050{width:27.696000px;}
._16_c01050{width:350.352000px;}
._6_c01050{width:387.660000px;}
.fc2_c01050{color:transparent;}
.fc1_c01050{color:rgb(128,128,128);}
.fc0_c01050{color:rgb(0,0,0);}
.fs4_c01050{font-size:48.000000px;}
.fs0_c01050{font-size:60.000000px;}
.fs3_c01050{font-size:63.000000px;}
.fs2_c01050{font-size:72.000000px;}
.fs1_c01050{font-size:108.000000px;}
.y0_c01050{bottom:0.000000px;}
.y1f_c01050{bottom:3.105000px;}
.y1e_c01050{bottom:7.228355px;}
.y1d_c01050{bottom:59.985000px;}
.y1c_c01050{bottom:87.435000px;}
.y1b_c01050{bottom:110.985000px;}
.y1a_c01050{bottom:135.585000px;}
.y19_c01050{bottom:160.335000px;}
.y18_c01050{bottom:187.935000px;}
.y17_c01050{bottom:212.835000px;}
.y16_c01050{bottom:234.435000px;}
.y15_c01050{bottom:262.785000px;}
.y14_c01050{bottom:287.535000px;}
.y13_c01050{bottom:308.385000px;}
.y12_c01050{bottom:334.785000px;}
.y11_c01050{bottom:358.335000px;}
.y10_c01050{bottom:382.035000px;}
.yf_c01050{bottom:406.335000px;}
.ye_c01050{bottom:430.635000px;}
.yd_c01050{bottom:455.235000px;}
.yc_c01050{bottom:480.135000px;}
.yb_c01050{bottom:503.835000px;}
.ya_c01050{bottom:528.735000px;}
.y9_c01050{bottom:553.185000px;}
.y8_c01050{bottom:577.485000px;}
.y7_c01050{bottom:603.435000px;}
.y6_c01050{bottom:626.685000px;}
.y5_c01050{bottom:650.685000px;}
.y4_c01050{bottom:676.035000px;}
.y3_c01050{bottom:700.335000px;}
.y2_c01050{bottom:726.585000px;}
.y1_c01050{bottom:749.835000px;}
.h4_c01050{height:13.200074px;}
.h5_c01050{height:43.804688px;}
.h3_c01050{height:91.160156px;}
.h2_c01050{height:105.943359px;}
.h1_c01050{height:792.750000px;}
.h0_c01050{height:792.975000px;}
.w2_c01050{width:104.875500px;}
.w0_c01050{width:517.350000px;}
.w1_c01050{width:517.500000px;}
.x0_c01050{left:0.000000px;}
.x7_c01050{left:24.900000px;}
.x5_c01050{left:25.950000px;}
.x2_c01050{left:27.600000px;}
.x3_c01050{left:28.650000px;}
.x4_c01050{left:30.000000px;}
.x6_c01050{left:62.400000px;}
.x1_c01050{left:135.450000px;}
.x9_c01050{left:210.489258px;}
.x8_c01050{left:348.900000px;}
@media print{
.v0_c01050{vertical-align:0.000000pt;}
.ls1_c01050{letter-spacing:0.000000pt;}
.ls2_c01050{letter-spacing:2.666667pt;}
.ls0_c01050{letter-spacing:3.733333pt;}
.ws0_c01050{word-spacing:-15.424000pt;}
.ws1_c01050{word-spacing:0.000000pt;}
._12_c01050{margin-left:-9.280000pt;}
._11_c01050{margin-left:-7.872000pt;}
._8_c01050{margin-left:-6.186667pt;}
._13_c01050{margin-left:-4.853333pt;}
._10_c01050{margin-left:-3.765333pt;}
._e_c01050{margin-left:-2.154667pt;}
._b_c01050{margin-left:-1.088000pt;}
._c_c01050{width:1.365333pt;}
._4_c01050{width:2.346667pt;}
._a_c01050{width:3.392000pt;}
._9_c01050{width:4.416000pt;}
._2_c01050{width:5.546667pt;}
._5_c01050{width:6.826667pt;}
._d_c01050{width:8.298667pt;}
._7_c01050{width:9.973333pt;}
._3_c01050{width:11.840000pt;}
._f_c01050{width:12.949333pt;}
._1_c01050{width:14.293333pt;}
._14_c01050{width:15.245333pt;}
._0_c01050{width:23.520000pt;}
._15_c01050{width:24.618667pt;}
._16_c01050{width:311.424000pt;}
._6_c01050{width:344.586667pt;}
.fs4_c01050{font-size:42.666667pt;}
.fs0_c01050{font-size:53.333333pt;}
.fs3_c01050{font-size:56.000000pt;}
.fs2_c01050{font-size:64.000000pt;}
.fs1_c01050{font-size:96.000000pt;}
.y0_c01050{bottom:0.000000pt;}
.y1f_c01050{bottom:2.760000pt;}
.y1e_c01050{bottom:6.425204pt;}
.y1d_c01050{bottom:53.320000pt;}
.y1c_c01050{bottom:77.720000pt;}
.y1b_c01050{bottom:98.653333pt;}
.y1a_c01050{bottom:120.520000pt;}
.y19_c01050{bottom:142.520000pt;}
.y18_c01050{bottom:167.053333pt;}
.y17_c01050{bottom:189.186667pt;}
.y16_c01050{bottom:208.386667pt;}
.y15_c01050{bottom:233.586667pt;}
.y14_c01050{bottom:255.586667pt;}
.y13_c01050{bottom:274.120000pt;}
.y12_c01050{bottom:297.586667pt;}
.y11_c01050{bottom:318.520000pt;}
.y10_c01050{bottom:339.586667pt;}
.yf_c01050{bottom:361.186667pt;}
.ye_c01050{bottom:382.786667pt;}
.yd_c01050{bottom:404.653333pt;}
.yc_c01050{bottom:426.786667pt;}
.yb_c01050{bottom:447.853333pt;}
.ya_c01050{bottom:469.986667pt;}
.y9_c01050{bottom:491.720000pt;}
.y8_c01050{bottom:513.320000pt;}
.y7_c01050{bottom:536.386667pt;}
.y6_c01050{bottom:557.053333pt;}
.y5_c01050{bottom:578.386667pt;}
.y4_c01050{bottom:600.920000pt;}
.y3_c01050{bottom:622.520000pt;}
.y2_c01050{bottom:645.853333pt;}
.y1_c01050{bottom:666.520000pt;}
.h4_c01050{height:11.733399pt;}
.h5_c01050{height:38.937500pt;}
.h3_c01050{height:81.031250pt;}
.h2_c01050{height:94.171875pt;}
.h1_c01050{height:704.666667pt;}
.h0_c01050{height:704.866667pt;}
.w2_c01050{width:93.222667pt;}
.w0_c01050{width:459.866667pt;}
.w1_c01050{width:460.000000pt;}
.x0_c01050{left:0.000000pt;}
.x7_c01050{left:22.133333pt;}
.x5_c01050{left:23.066667pt;}
.x2_c01050{left:24.533333pt;}
.x3_c01050{left:25.466667pt;}
.x4_c01050{left:26.666667pt;}
.x6_c01050{left:55.466667pt;}
.x1_c01050{left:120.400000pt;}
.x9_c01050{left:187.101563pt;}
.x8_c01050{left:310.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_35fac3f91b18f73ef1ca5ff8.woff2')format("woff");}.ff1_c01051{font-family:ff1_c01051;line-height:1.284180;font-style:normal;font-weight:normal;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_9879225714d708c3305c13fd.woff2')format("woff");}.ff2_c01051{font-family:ff2_c01051;line-height:1.284668;font-style:normal;font-weight:normal;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_3c28df6838d5aafc7422d9af.woff2')format("woff");}.ff3_c01051{font-family:ff3_c01051;line-height:1.568848;font-style:normal;font-weight:normal;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_46279264686a48adbe25a74f.woff2')format("woff");}.ff4_c01051{font-family:ff4_c01051;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01051;src:url('chunks/assets/font_e34200aa33face4246288d15.woff2')format("woff");}.ff5_c01051{font-family:ff5_c01051;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01051;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01051{font-family:ff6_c01051;line-height:1.219238;font-style: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;}
.ls6_c01051{letter-spacing:-9.000000px;}
.ls4_c01051{letter-spacing:0.000000px;}
.ls5_c01051{letter-spacing:3.000000px;}
.ls3_c01051{letter-spacing:4.440000px;}
.ls1_c01051{letter-spacing:11.550000px;}
.ls0_c01051{letter-spacing:61.350000px;}
.ls2_c01051{letter-spacing:226.950000px;}
.sc__c01051{text-shadow:none;}
.sc0_c01051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01051{-webkit-text-stroke:0px transparent;}
.sc0_c01051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01051{word-spacing:-21.051000px;}
.ws0_c01051{word-spacing:-17.352000px;}
.ws3_c01051{word-spacing:-14.460000px;}
.ws1_c01051{word-spacing:-14.250000px;}
.ws4_c01051{word-spacing:0.000000px;}
._14_c01051{margin-left:-13.509000px;}
._e_c01051{margin-left:-11.868000px;}
._10_c01051{margin-left:-9.936000px;}
._d_c01051{margin-left:-8.568000px;}
._f_c01051{margin-left:-7.056000px;}
._11_c01051{margin-left:-5.544000px;}
._2_c01051{margin-left:-4.536000px;}
._c_c01051{margin-left:-3.312000px;}
._9_c01051{margin-left:-2.016000px;}
._1_c01051{width:1.764000px;}
._0_c01051{width:2.772000px;}
._4_c01051{width:4.392000px;}
._3_c01051{width:5.436000px;}
._8_c01051{width:6.768000px;}
._7_c01051{width:8.640000px;}
._b_c01051{width:10.080000px;}
._6_c01051{width:11.628000px;}
._a_c01051{width:13.140000px;}
._5_c01051{width:14.472000px;}
._1d_c01051{width:15.732000px;}
._1b_c01051{width:18.684000px;}
._1c_c01051{width:22.680000px;}
._1a_c01051{width:31.752000px;}
._12_c01051{width:52.911000px;}
._16_c01051{width:68.634000px;}
._18_c01051{width:105.807000px;}
._17_c01051{width:122.925000px;}
._19_c01051{width:132.456000px;}
._13_c01051{width:143.319000px;}
._15_c01051{width:873.753000px;}
.fc2_c01051{color:transparent;}
.fc1_c01051{color:rgb(128,128,128);}
.fc0_c01051{color:rgb(0,0,0);}
.fs5_c01051{font-size:48.000000px;}
.fs2_c01051{font-size:57.000000px;}
.fs4_c01051{font-size:60.000000px;}
.fs3_c01051{font-size:63.000000px;}
.fs1_c01051{font-size:72.000000px;}
.fs0_c01051{font-size:84.000000px;}
.y0_c01051{bottom:0.000000px;}
.y20_c01051{bottom:3.105000px;}
.y1f_c01051{bottom:7.228357px;}
.y1e_c01051{bottom:53.430000px;}
.y1d_c01051{bottom:75.030000px;}
.y1c_c01051{bottom:100.530000px;}
.y1b_c01051{bottom:125.280000px;}
.y1a_c01051{bottom:149.880000px;}
.y19_c01051{bottom:174.930000px;}
.y18_c01051{bottom:200.130000px;}
.y17_c01051{bottom:224.730000px;}
.y16_c01051{bottom:249.780000px;}
.y15_c01051{bottom:274.380000px;}
.y14_c01051{bottom:298.680000px;}
.y13_c01051{bottom:324.330000px;}
.y12_c01051{bottom:348.630000px;}
.y11_c01051{bottom:372.030000px;}
.y10_c01051{bottom:396.930000px;}
.yf_c01051{bottom:418.530000px;}
.ye_c01051{bottom:432.780000px;}
.yd_c01051{bottom:444.480000px;}
.yc_c01051{bottom:468.780000px;}
.yb_c01051{bottom:491.730000px;}
.ya_c01051{bottom:514.680000px;}
.y9_c01051{bottom:539.280000px;}
.y8_c01051{bottom:564.930000px;}
.y7_c01051{bottom:588.930000px;}
.y6_c01051{bottom:613.230000px;}
.y5_c01051{bottom:638.580000px;}
.y4_c01051{bottom:662.580000px;}
.y3_c01051{bottom:687.180000px;}
.y2_c01051{bottom:711.180000px;}
.y1_c01051{bottom:737.130000px;}
.h6_c01051{height:13.200074px;}
.h7_c01051{height:43.804688px;}
.h4_c01051{height:55.942383px;}
.h5_c01051{height:75.966797px;}
.h2_c01051{height:82.441406px;}
.h3_c01051{height:91.160156px;}
.h1_c01051{height:777.750000px;}
.h0_c01051{height:777.900000px;}
.w2_c01051{width:104.875500px;}
.w1_c01051{width:525.000000px;}
.w0_c01051{width:525.150000px;}
.x0_c01051{left:0.000000px;}
.x4_c01051{left:26.100000px;}
.x5_c01051{left:27.300000px;}
.x6_c01051{left:28.350000px;}
.x8_c01051{left:98.550000px;}
.x9_c01051{left:100.200000px;}
.x7_c01051{left:102.300000px;}
.x3_c01051{left:103.350000px;}
.x2_c01051{left:105.000000px;}
.xb_c01051{left:214.389267px;}
.x1_c01051{left:242.700000px;}
.xa_c01051{left:440.400000px;}
@media print{
.v0_c01051{vertical-align:0.000000pt;}
.ls6_c01051{letter-spacing:-8.000000pt;}
.ls4_c01051{letter-spacing:0.000000pt;}
.ls5_c01051{letter-spacing:2.666667pt;}
.ls3_c01051{letter-spacing:3.946667pt;}
.ls1_c01051{letter-spacing:10.266667pt;}
.ls0_c01051{letter-spacing:54.533333pt;}
.ls2_c01051{letter-spacing:201.733333pt;}
.ws2_c01051{word-spacing:-18.712000pt;}
.ws0_c01051{word-spacing:-15.424000pt;}
.ws3_c01051{word-spacing:-12.853333pt;}
.ws1_c01051{word-spacing:-12.666667pt;}
.ws4_c01051{word-spacing:0.000000pt;}
._14_c01051{margin-left:-12.008000pt;}
._e_c01051{margin-left:-10.549333pt;}
._10_c01051{margin-left:-8.832000pt;}
._d_c01051{margin-left:-7.616000pt;}
._f_c01051{margin-left:-6.272000pt;}
._11_c01051{margin-left:-4.928000pt;}
._2_c01051{margin-left:-4.032000pt;}
._c_c01051{margin-left:-2.944000pt;}
._9_c01051{margin-left:-1.792000pt;}
._1_c01051{width:1.568000pt;}
._0_c01051{width:2.464000pt;}
._4_c01051{width:3.904000pt;}
._3_c01051{width:4.832000pt;}
._8_c01051{width:6.016000pt;}
._7_c01051{width:7.680000pt;}
._b_c01051{width:8.960000pt;}
._6_c01051{width:10.336000pt;}
._a_c01051{width:11.680000pt;}
._5_c01051{width:12.864000pt;}
._1d_c01051{width:13.984000pt;}
._1b_c01051{width:16.608000pt;}
._1c_c01051{width:20.160000pt;}
._1a_c01051{width:28.224000pt;}
._12_c01051{width:47.032000pt;}
._16_c01051{width:61.008000pt;}
._18_c01051{width:94.050667pt;}
._17_c01051{width:109.266667pt;}
._19_c01051{width:117.738667pt;}
._13_c01051{width:127.394667pt;}
._15_c01051{width:776.669333pt;}
.fs5_c01051{font-size:42.666667pt;}
.fs2_c01051{font-size:50.666667pt;}
.fs4_c01051{font-size:53.333333pt;}
.fs3_c01051{font-size:56.000000pt;}
.fs1_c01051{font-size:64.000000pt;}
.fs0_c01051{font-size:74.666667pt;}
.y0_c01051{bottom:0.000000pt;}
.y20_c01051{bottom:2.760000pt;}
.y1f_c01051{bottom:6.425206pt;}
.y1e_c01051{bottom:47.493333pt;}
.y1d_c01051{bottom:66.693333pt;}
.y1c_c01051{bottom:89.360000pt;}
.y1b_c01051{bottom:111.360000pt;}
.y1a_c01051{bottom:133.226667pt;}
.y19_c01051{bottom:155.493333pt;}
.y18_c01051{bottom:177.893333pt;}
.y17_c01051{bottom:199.760000pt;}
.y16_c01051{bottom:222.026667pt;}
.y15_c01051{bottom:243.893333pt;}
.y14_c01051{bottom:265.493333pt;}
.y13_c01051{bottom:288.293333pt;}
.y12_c01051{bottom:309.893333pt;}
.y11_c01051{bottom:330.693333pt;}
.y10_c01051{bottom:352.826667pt;}
.yf_c01051{bottom:372.026667pt;}
.ye_c01051{bottom:384.693333pt;}
.yd_c01051{bottom:395.093333pt;}
.yc_c01051{bottom:416.693333pt;}
.yb_c01051{bottom:437.093333pt;}
.ya_c01051{bottom:457.493333pt;}
.y9_c01051{bottom:479.360000pt;}
.y8_c01051{bottom:502.160000pt;}
.y7_c01051{bottom:523.493333pt;}
.y6_c01051{bottom:545.093333pt;}
.y5_c01051{bottom:567.626667pt;}
.y4_c01051{bottom:588.960000pt;}
.y3_c01051{bottom:610.826667pt;}
.y2_c01051{bottom:632.160000pt;}
.y1_c01051{bottom:655.226667pt;}
.h6_c01051{height:11.733399pt;}
.h7_c01051{height:38.937500pt;}
.h4_c01051{height:49.726562pt;}
.h5_c01051{height:67.526042pt;}
.h2_c01051{height:73.281250pt;}
.h3_c01051{height:81.031250pt;}
.h1_c01051{height:691.333333pt;}
.h0_c01051{height:691.466667pt;}
.w2_c01051{width:93.222667pt;}
.w1_c01051{width:466.666667pt;}
.w0_c01051{width:466.800000pt;}
.x0_c01051{left:0.000000pt;}
.x4_c01051{left:23.200000pt;}
.x5_c01051{left:24.266667pt;}
.x6_c01051{left:25.200000pt;}
.x8_c01051{left:87.600000pt;}
.x9_c01051{left:89.066667pt;}
.x7_c01051{left:90.933333pt;}
.x3_c01051{left:91.866667pt;}
.x2_c01051{left:93.333333pt;}
.xb_c01051{left:190.568237pt;}
.x1_c01051{left:215.733333pt;}
.xa_c01051{left:391.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5a798be6d1dc15fe664841df.woff2')format("woff");}.ff1_c01052{font-family:ff1_c01052;line-height:1.480469;font-style:normal;font-weight:normal;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_75ff48a145828d88fb5678f4.woff2')format("woff");}.ff2_c01052{font-family:ff2_c01052;line-height:1.568848;font-style:normal;font-weight:normal;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_c43d3afaa8ebfef95d03208e.woff2')format("woff");}.ff3_c01052{font-family:ff3_c01052;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01052;src:url('chunks/assets/font_f2e17fd1d93e7d99dbffb626.woff2')format("woff");}.ff4_c01052{font-family:ff4_c01052;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01052;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01052{font-family:ff5_c01052;line-height:1.219238;font-style: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;}
.ls0_c01052{letter-spacing:0.000000px;}
.ls1_c01052{letter-spacing:3.000000px;}
.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:-34.790400px;}
.ws1_c01052{word-spacing:-17.352000px;}
.ws2_c01052{word-spacing:0.000000px;}
._1b_c01052{margin-left:-20.592000px;}
._17_c01052{margin-left:-19.584000px;}
._8_c01052{margin-left:-17.856000px;}
._18_c01052{margin-left:-14.421000px;}
._7_c01052{margin-left:-13.299000px;}
._1d_c01052{margin-left:-10.536000px;}
._16_c01052{margin-left:-9.432000px;}
._19_c01052{margin-left:-7.293000px;}
._1c_c01052{margin-left:-6.192000px;}
._13_c01052{margin-left:-4.176000px;}
._5_c01052{margin-left:-3.060000px;}
._12_c01052{margin-left:-1.476000px;}
._e_c01052{width:1.296000px;}
._9_c01052{width:2.772000px;}
._c_c01052{width:3.852000px;}
._2_c01052{width:4.980000px;}
._f_c01052{width:6.288000px;}
._10_c01052{width:7.404000px;}
._a_c01052{width:8.556000px;}
._3_c01052{width:9.720000px;}
._4_c01052{width:11.040000px;}
._1a_c01052{width:12.063000px;}
._14_c01052{width:13.095000px;}
._d_c01052{width:14.652000px;}
._b_c01052{width:15.840000px;}
._1_c01052{width:17.160000px;}
._11_c01052{width:18.756000px;}
._15_c01052{width:20.268000px;}
._0_c01052{width:27.960000px;}
._6_c01052{width:427.524000px;}
.fc2_c01052{color:transparent;}
.fc1_c01052{color:rgb(128,128,128);}
.fc0_c01052{color:rgb(0,0,0);}
.fs5_c01052{font-size:48.000000px;}
.fs3_c01052{font-size:57.000000px;}
.fs4_c01052{font-size:57.600000px;}
.fs0_c01052{font-size:60.000000px;}
.fs2_c01052{font-size:72.000000px;}
.fs1_c01052{font-size:93.000000px;}
.y0_c01052{bottom:0.000000px;}
.y1f_c01052{bottom:3.105000px;}
.y1e_c01052{bottom:7.228363px;}
.y1d_c01052{bottom:58.800000px;}
.y1c_c01052{bottom:85.500000px;}
.y1b_c01052{bottom:110.100000px;}
.y1a_c01052{bottom:135.300000px;}
.y19_c01052{bottom:160.350000px;}
.y18_c01052{bottom:182.700000px;}
.y17_c01052{bottom:207.000000px;}
.y16_c01052{bottom:235.350000px;}
.y15_c01052{bottom:258.300000px;}
.y14_c01052{bottom:284.250000px;}
.y13_c01052{bottom:308.250000px;}
.y12_c01052{bottom:331.800000px;}
.y11_c01052{bottom:352.650000px;}
.y10_c01052{bottom:377.400000px;}
.yf_c01052{bottom:402.300000px;}
.ye_c01052{bottom:427.350000px;}
.yd_c01052{bottom:452.250000px;}
.yc_c01052{bottom:476.850000px;}
.yb_c01052{bottom:501.600000px;}
.ya_c01052{bottom:525.600000px;}
.y9_c01052{bottom:550.200000px;}
.y8_c01052{bottom:575.400000px;}
.y7_c01052{bottom:600.000000px;}
.y6_c01052{bottom:624.150000px;}
.y5_c01052{bottom:649.050000px;}
.y4_c01052{bottom:673.650000px;}
.y3_c01052{bottom:698.400000px;}
.y2_c01052{bottom:723.600000px;}
.y1_c01052{bottom:748.200000px;}
.h4_c01052{height:13.200074px;}
.h5_c01052{height:43.804688px;}
.h3_c01052{height:91.160156px;}
.h2_c01052{height:117.748535px;}
.h0_c01052{height:784.350000px;}
.h1_c01052{height:784.500000px;}
.w2_c01052{width:104.875500px;}
.w1_c01052{width:515.250000px;}
.w0_c01052{width:515.400000px;}
.x0_c01052{left:0.000000px;}
.x7_c01052{left:24.300000px;}
.x6_c01052{left:26.700000px;}
.x5_c01052{left:27.750000px;}
.x2_c01052{left:28.950000px;}
.x3_c01052{left:30.300000px;}
.x4_c01052{left:31.650000px;}
.x1_c01052{left:140.550000px;}
.x9_c01052{left:209.514267px;}
.x8_c01052{left:367.650000px;}
@media print{
.v0_c01052{vertical-align:0.000000pt;}
.ls0_c01052{letter-spacing:0.000000pt;}
.ls1_c01052{letter-spacing:2.666667pt;}
.ws0_c01052{word-spacing:-30.924800pt;}
.ws1_c01052{word-spacing:-15.424000pt;}
.ws2_c01052{word-spacing:0.000000pt;}
._1b_c01052{margin-left:-18.304000pt;}
._17_c01052{margin-left:-17.408000pt;}
._8_c01052{margin-left:-15.872000pt;}
._18_c01052{margin-left:-12.818667pt;}
._7_c01052{margin-left:-11.821333pt;}
._1d_c01052{margin-left:-9.365333pt;}
._16_c01052{margin-left:-8.384000pt;}
._19_c01052{margin-left:-6.482667pt;}
._1c_c01052{margin-left:-5.504000pt;}
._13_c01052{margin-left:-3.712000pt;}
._5_c01052{margin-left:-2.720000pt;}
._12_c01052{margin-left:-1.312000pt;}
._e_c01052{width:1.152000pt;}
._9_c01052{width:2.464000pt;}
._c_c01052{width:3.424000pt;}
._2_c01052{width:4.426667pt;}
._f_c01052{width:5.589333pt;}
._10_c01052{width:6.581333pt;}
._a_c01052{width:7.605333pt;}
._3_c01052{width:8.640000pt;}
._4_c01052{width:9.813333pt;}
._1a_c01052{width:10.722667pt;}
._14_c01052{width:11.640000pt;}
._d_c01052{width:13.024000pt;}
._b_c01052{width:14.080000pt;}
._1_c01052{width:15.253333pt;}
._11_c01052{width:16.672000pt;}
._15_c01052{width:18.016000pt;}
._0_c01052{width:24.853333pt;}
._6_c01052{width:380.021333pt;}
.fs5_c01052{font-size:42.666667pt;}
.fs3_c01052{font-size:50.666667pt;}
.fs4_c01052{font-size:51.200000pt;}
.fs0_c01052{font-size:53.333333pt;}
.fs2_c01052{font-size:64.000000pt;}
.fs1_c01052{font-size:82.666667pt;}
.y0_c01052{bottom:0.000000pt;}
.y1f_c01052{bottom:2.760000pt;}
.y1e_c01052{bottom:6.425212pt;}
.y1d_c01052{bottom:52.266667pt;}
.y1c_c01052{bottom:76.000000pt;}
.y1b_c01052{bottom:97.866667pt;}
.y1a_c01052{bottom:120.266667pt;}
.y19_c01052{bottom:142.533333pt;}
.y18_c01052{bottom:162.400000pt;}
.y17_c01052{bottom:184.000000pt;}
.y16_c01052{bottom:209.200000pt;}
.y15_c01052{bottom:229.600000pt;}
.y14_c01052{bottom:252.666667pt;}
.y13_c01052{bottom:274.000000pt;}
.y12_c01052{bottom:294.933333pt;}
.y11_c01052{bottom:313.466667pt;}
.y10_c01052{bottom:335.466667pt;}
.yf_c01052{bottom:357.600000pt;}
.ye_c01052{bottom:379.866667pt;}
.yd_c01052{bottom:402.000000pt;}
.yc_c01052{bottom:423.866667pt;}
.yb_c01052{bottom:445.866667pt;}
.ya_c01052{bottom:467.200000pt;}
.y9_c01052{bottom:489.066667pt;}
.y8_c01052{bottom:511.466667pt;}
.y7_c01052{bottom:533.333333pt;}
.y6_c01052{bottom:554.800000pt;}
.y5_c01052{bottom:576.933333pt;}
.y4_c01052{bottom:598.800000pt;}
.y3_c01052{bottom:620.800000pt;}
.y2_c01052{bottom:643.200000pt;}
.y1_c01052{bottom:665.066667pt;}
.h4_c01052{height:11.733399pt;}
.h5_c01052{height:38.937500pt;}
.h3_c01052{height:81.031250pt;}
.h2_c01052{height:104.665365pt;}
.h0_c01052{height:697.200000pt;}
.h1_c01052{height:697.333333pt;}
.w2_c01052{width:93.222667pt;}
.w1_c01052{width:458.000000pt;}
.w0_c01052{width:458.133333pt;}
.x0_c01052{left:0.000000pt;}
.x7_c01052{left:21.600000pt;}
.x6_c01052{left:23.733333pt;}
.x5_c01052{left:24.666667pt;}
.x2_c01052{left:25.733333pt;}
.x3_c01052{left:26.933333pt;}
.x4_c01052{left:28.133333pt;}
.x1_c01052{left:124.933333pt;}
.x9_c01052{left:186.234904pt;}
.x8_c01052{left:326.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c6bd3bb7f96ce23d8bb4780c.woff2')format("woff");}.ff1_c01053{font-family:ff1_c01053;line-height:1.480469;font-style:normal;font-weight:normal;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_90d93c66d16ec328362cbca6.woff2')format("woff");}.ff2_c01053{font-family:ff2_c01053;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01053{font-family:ff3_c01053;line-height:1.219238;font-style: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);}
.v1_c01053{vertical-align:-70.200000px;}
.v0_c01053{vertical-align:0.000000px;}
.ls1_c01053{letter-spacing:0.000000px;}
.ls2_c01053{letter-spacing:3.000000px;}
.ls0_c01053{letter-spacing:1038.417000px;}
.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;}
}
.ws1_c01053{word-spacing:-20.967000px;}
.ws0_c01053{word-spacing:-17.352000px;}
.ws2_c01053{word-spacing:0.000000px;}
._16_c01053{margin-left:-14.688000px;}
._10_c01053{margin-left:-12.672000px;}
._17_c01053{margin-left:-11.016000px;}
._e_c01053{margin-left:-9.648000px;}
._d_c01053{margin-left:-8.136000px;}
._c_c01053{margin-left:-6.984000px;}
._b_c01053{margin-left:-5.760000px;}
._9_c01053{margin-left:-4.104000px;}
._f_c01053{margin-left:-2.808000px;}
._a_c01053{margin-left:-1.728000px;}
._8_c01053{width:1.872000px;}
._1_c01053{width:3.672000px;}
._2_c01053{width:4.752000px;}
._7_c01053{width:6.408000px;}
._6_c01053{width:7.488000px;}
._3_c01053{width:8.712000px;}
._0_c01053{width:9.936000px;}
._18_c01053{width:11.064000px;}
._4_c01053{width:12.168000px;}
._5_c01053{width:14.544000px;}
._12_c01053{width:15.624000px;}
._19_c01053{width:18.480000px;}
._15_c01053{width:20.808000px;}
._13_c01053{width:27.948000px;}
._11_c01053{width:46.224000px;}
._1a_c01053{width:317.760000px;}
._14_c01053{width:1267.416000px;}
.fc2_c01053{color:transparent;}
.fc1_c01053{color:rgb(128,128,128);}
.fc0_c01053{color:rgb(0,0,0);}
.fs4_c01053{font-size:33.000000px;}
.fs5_c01053{font-size:48.000000px;}
.fs1_c01053{font-size:60.000000px;}
.fs2_c01053{font-size:63.000000px;}
.fs0_c01053{font-size:72.000000px;}
.fs3_c01053{font-size:87.000000px;}
.y0_c01053{bottom:0.000000px;}
.y1e_c01053{bottom:3.105000px;}
.y1d_c01053{bottom:7.228355px;}
.y1c_c01053{bottom:78.585000px;}
.y1b_c01053{bottom:104.985000px;}
.y1a_c01053{bottom:129.135000px;}
.y19_c01053{bottom:154.485000px;}
.y18_c01053{bottom:180.435000px;}
.y17_c01053{bottom:204.135000px;}
.y16_c01053{bottom:230.385000px;}
.y15_c01053{bottom:255.135000px;}
.y14_c01053{bottom:278.685000px;}
.y13_c01053{bottom:303.285000px;}
.y12_c01053{bottom:329.085000px;}
.y11_c01053{bottom:352.335000px;}
.y10_c01053{bottom:378.285000px;}
.yf_c01053{bottom:401.535000px;}
.ye_c01053{bottom:424.935000px;}
.yd_c01053{bottom:448.485000px;}
.yc_c01053{bottom:471.435000px;}
.yb_c01053{bottom:491.985000px;}
.ya_c01053{bottom:517.935000px;}
.y9_c01053{bottom:546.735000px;}
.y8_c01053{bottom:571.635000px;}
.y7_c01053{bottom:594.885000px;}
.y6_c01053{bottom:618.885000px;}
.y5_c01053{bottom:645.285000px;}
.y4_c01053{bottom:669.585000px;}
.y3_c01053{bottom:693.885000px;}
.y2_c01053{bottom:718.185000px;}
.y1_c01053{bottom:744.435000px;}
.h4_c01053{height:13.200074px;}
.h5_c01053{height:43.804688px;}
.h2_c01053{height:91.160156px;}
.h3_c01053{height:110.151855px;}
.h0_c01053{height:775.425000px;}
.h1_c01053{height:775.500000px;}
.w2_c01053{width:104.875500px;}
.w1_c01053{width:520.500000px;}
.w0_c01053{width:520.800000px;}
.x0_c01053{left:0.000000px;}
.x5_c01053{left:28.350000px;}
.x6_c01053{left:77.850000px;}
.x7_c01053{left:100.500000px;}
.x4_c01053{left:103.200000px;}
.x8_c01053{left:104.550000px;}
.x3_c01053{left:105.600000px;}
.x2_c01053{left:106.650000px;}
.x9_c01053{left:212.214249px;}
.x1_c01053{left:239.850000px;}
@media print{
.v1_c01053{vertical-align:-62.400000pt;}
.v0_c01053{vertical-align:0.000000pt;}
.ls1_c01053{letter-spacing:0.000000pt;}
.ls2_c01053{letter-spacing:2.666667pt;}
.ls0_c01053{letter-spacing:923.037333pt;}
.ws1_c01053{word-spacing:-18.637333pt;}
.ws0_c01053{word-spacing:-15.424000pt;}
.ws2_c01053{word-spacing:0.000000pt;}
._16_c01053{margin-left:-13.056000pt;}
._10_c01053{margin-left:-11.264000pt;}
._17_c01053{margin-left:-9.792000pt;}
._e_c01053{margin-left:-8.576000pt;}
._d_c01053{margin-left:-7.232000pt;}
._c_c01053{margin-left:-6.208000pt;}
._b_c01053{margin-left:-5.120000pt;}
._9_c01053{margin-left:-3.648000pt;}
._f_c01053{margin-left:-2.496000pt;}
._a_c01053{margin-left:-1.536000pt;}
._8_c01053{width:1.664000pt;}
._1_c01053{width:3.264000pt;}
._2_c01053{width:4.224000pt;}
._7_c01053{width:5.696000pt;}
._6_c01053{width:6.656000pt;}
._3_c01053{width:7.744000pt;}
._0_c01053{width:8.832000pt;}
._18_c01053{width:9.834667pt;}
._4_c01053{width:10.816000pt;}
._5_c01053{width:12.928000pt;}
._12_c01053{width:13.888000pt;}
._19_c01053{width:16.426667pt;}
._15_c01053{width:18.496000pt;}
._13_c01053{width:24.842667pt;}
._11_c01053{width:41.088000pt;}
._1a_c01053{width:282.453333pt;}
._14_c01053{width:1126.592000pt;}
.fs4_c01053{font-size:29.333333pt;}
.fs5_c01053{font-size:42.666667pt;}
.fs1_c01053{font-size:53.333333pt;}
.fs2_c01053{font-size:56.000000pt;}
.fs0_c01053{font-size:64.000000pt;}
.fs3_c01053{font-size:77.333333pt;}
.y0_c01053{bottom:0.000000pt;}
.y1e_c01053{bottom:2.760000pt;}
.y1d_c01053{bottom:6.425204pt;}
.y1c_c01053{bottom:69.853333pt;}
.y1b_c01053{bottom:93.320000pt;}
.y1a_c01053{bottom:114.786667pt;}
.y19_c01053{bottom:137.320000pt;}
.y18_c01053{bottom:160.386667pt;}
.y17_c01053{bottom:181.453333pt;}
.y16_c01053{bottom:204.786667pt;}
.y15_c01053{bottom:226.786667pt;}
.y14_c01053{bottom:247.720000pt;}
.y13_c01053{bottom:269.586667pt;}
.y12_c01053{bottom:292.520000pt;}
.y11_c01053{bottom:313.186667pt;}
.y10_c01053{bottom:336.253333pt;}
.yf_c01053{bottom:356.920000pt;}
.ye_c01053{bottom:377.720000pt;}
.yd_c01053{bottom:398.653333pt;}
.yc_c01053{bottom:419.053333pt;}
.yb_c01053{bottom:437.320000pt;}
.ya_c01053{bottom:460.386667pt;}
.y9_c01053{bottom:485.986667pt;}
.y8_c01053{bottom:508.120000pt;}
.y7_c01053{bottom:528.786667pt;}
.y6_c01053{bottom:550.120000pt;}
.y5_c01053{bottom:573.586667pt;}
.y4_c01053{bottom:595.186667pt;}
.y3_c01053{bottom:616.786667pt;}
.y2_c01053{bottom:638.386667pt;}
.y1_c01053{bottom:661.720000pt;}
.h4_c01053{height:11.733399pt;}
.h5_c01053{height:38.937500pt;}
.h2_c01053{height:81.031250pt;}
.h3_c01053{height:97.912760pt;}
.h0_c01053{height:689.266667pt;}
.h1_c01053{height:689.333333pt;}
.w2_c01053{width:93.222667pt;}
.w1_c01053{width:462.666667pt;}
.w0_c01053{width:462.933333pt;}
.x0_c01053{left:0.000000pt;}
.x5_c01053{left:25.200000pt;}
.x6_c01053{left:69.200000pt;}
.x7_c01053{left:89.333333pt;}
.x4_c01053{left:91.733333pt;}
.x8_c01053{left:92.933333pt;}
.x3_c01053{left:93.866667pt;}
.x2_c01053{left:94.800000pt;}
.x9_c01053{left:188.634888pt;}
.x1_c01053{left:213.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5172d91aea07f02ee169df00.woff2')format("woff");}.ff1_c01054{font-family:ff1_c01054;line-height:1.480469;font-style:normal;font-weight:normal;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_71326675b01a8e220a744187.woff2')format("woff");}.ff2_c01054{font-family:ff2_c01054;line-height:1.568848;font-style:normal;font-weight:normal;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_596896a7b81e5c165f2c92c8.woff2')format("woff");}.ff3_c01054{font-family:ff3_c01054;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01054;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01054{font-family:ff4_c01054;line-height:1.219238;font-style: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:23.184000px;}
.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;}
}
.ws1_c01054{word-spacing:-17.352000px;}
.ws2_c01054{word-spacing:0.000000px;}
.ws0_c01054{word-spacing:6.288000px;}
._16_c01054{margin-left:-20.784000px;}
._d_c01054{margin-left:-10.584000px;}
._18_c01054{margin-left:-8.856000px;}
._e_c01054{margin-left:-4.896000px;}
._f_c01054{margin-left:-3.888000px;}
._b_c01054{margin-left:-2.016000px;}
._11_c01054{margin-left:-1.008000px;}
._c_c01054{width:1.872000px;}
._a_c01054{width:2.880000px;}
._8_c01054{width:4.104000px;}
._9_c01054{width:5.112000px;}
._7_c01054{width:6.984000px;}
._5_c01054{width:8.568000px;}
._4_c01054{width:10.440000px;}
._10_c01054{width:11.880000px;}
._17_c01054{width:13.176000px;}
._1_c01054{width:14.328000px;}
._3_c01054{width:15.840000px;}
._12_c01054{width:17.652000px;}
._0_c01054{width:19.368000px;}
._14_c01054{width:20.736000px;}
._2_c01054{width:22.104000px;}
._13_c01054{width:29.964000px;}
._15_c01054{width:43.032000px;}
._19_c01054{width:276.048000px;}
._6_c01054{width:333.072000px;}
.fc2_c01054{color:transparent;}
.fc1_c01054{color:rgb(128,128,128);}
.fc0_c01054{color:rgb(0,0,0);}
.fs3_c01054{font-size:24.000000px;}
.fs5_c01054{font-size:48.000000px;}
.fs2_c01054{font-size:60.000000px;}
.fs4_c01054{font-size:63.000000px;}
.fs0_c01054{font-size:72.000000px;}
.fs1_c01054{font-size:81.000000px;}
.y0_c01054{bottom:0.000000px;}
.y20_c01054{bottom:3.105000px;}
.y1f_c01054{bottom:7.228357px;}
.y1e_c01054{bottom:21.630000px;}
.y1d_c01054{bottom:50.730000px;}
.y1c_c01054{bottom:75.630000px;}
.y1b_c01054{bottom:100.680000px;}
.y1a_c01054{bottom:126.930000px;}
.y19_c01054{bottom:150.480000px;}
.y18_c01054{bottom:176.580000px;}
.y17_c01054{bottom:201.180000px;}
.y16_c01054{bottom:226.080000px;}
.y15_c01054{bottom:250.830000px;}
.y14_c01054{bottom:275.730000px;}
.y13_c01054{bottom:298.380000px;}
.y12_c01054{bottom:324.030000px;}
.y11_c01054{bottom:346.980000px;}
.y10_c01054{bottom:371.280000px;}
.yf_c01054{bottom:395.880000px;}
.ye_c01054{bottom:419.880000px;}
.yd_c01054{bottom:445.230000px;}
.yc_c01054{bottom:468.780000px;}
.yb_c01054{bottom:493.380000px;}
.ya_c01054{bottom:517.380000px;}
.y9_c01054{bottom:541.380000px;}
.y8_c01054{bottom:566.280000px;}
.y7_c01054{bottom:590.730000px;}
.y6_c01054{bottom:614.880000px;}
.y5_c01054{bottom:639.330000px;}
.y4_c01054{bottom:664.230000px;}
.y3_c01054{bottom:688.530000px;}
.y2_c01054{bottom:713.580000px;}
.y1_c01054{bottom:737.430000px;}
.h3_c01054{height:13.200074px;}
.h4_c01054{height:43.804688px;}
.h1_c01054{height:84.269531px;}
.h2_c01054{height:91.160156px;}
.h0_c01054{height:786.000000px;}
.w2_c01054{width:104.875500px;}
.w0_c01054{width:529.200000px;}
.w1_c01054{width:529.500000px;}
.x0_c01054{left:0.000000px;}
.x9_c01054{left:24.300000px;}
.x8_c01054{left:26.100000px;}
.x7_c01054{left:27.450000px;}
.xa_c01054{left:29.100000px;}
.x6_c01054{left:31.050000px;}
.x5_c01054{left:32.700000px;}
.x3_c01054{left:34.200000px;}
.x4_c01054{left:35.400000px;}
.x2_c01054{left:36.450000px;}
.x1_c01054{left:152.100000px;}
.xc_c01054{left:216.414230px;}
.xb_c01054{left:287.250000px;}
@media print{
.v0_c01054{vertical-align:0.000000pt;}
.ls1_c01054{letter-spacing:0.000000pt;}
.ls0_c01054{letter-spacing:20.608000pt;}
.ws1_c01054{word-spacing:-15.424000pt;}
.ws2_c01054{word-spacing:0.000000pt;}
.ws0_c01054{word-spacing:5.589333pt;}
._16_c01054{margin-left:-18.474667pt;}
._d_c01054{margin-left:-9.408000pt;}
._18_c01054{margin-left:-7.872000pt;}
._e_c01054{margin-left:-4.352000pt;}
._f_c01054{margin-left:-3.456000pt;}
._b_c01054{margin-left:-1.792000pt;}
._11_c01054{margin-left:-0.896000pt;}
._c_c01054{width:1.664000pt;}
._a_c01054{width:2.560000pt;}
._8_c01054{width:3.648000pt;}
._9_c01054{width:4.544000pt;}
._7_c01054{width:6.208000pt;}
._5_c01054{width:7.616000pt;}
._4_c01054{width:9.280000pt;}
._10_c01054{width:10.560000pt;}
._17_c01054{width:11.712000pt;}
._1_c01054{width:12.736000pt;}
._3_c01054{width:14.080000pt;}
._12_c01054{width:15.690667pt;}
._0_c01054{width:17.216000pt;}
._14_c01054{width:18.432000pt;}
._2_c01054{width:19.648000pt;}
._13_c01054{width:26.634667pt;}
._15_c01054{width:38.250667pt;}
._19_c01054{width:245.376000pt;}
._6_c01054{width:296.064000pt;}
.fs3_c01054{font-size:21.333333pt;}
.fs5_c01054{font-size:42.666667pt;}
.fs2_c01054{font-size:53.333333pt;}
.fs4_c01054{font-size:56.000000pt;}
.fs0_c01054{font-size:64.000000pt;}
.fs1_c01054{font-size:72.000000pt;}
.y0_c01054{bottom:0.000000pt;}
.y20_c01054{bottom:2.760000pt;}
.y1f_c01054{bottom:6.425206pt;}
.y1e_c01054{bottom:19.226667pt;}
.y1d_c01054{bottom:45.093333pt;}
.y1c_c01054{bottom:67.226667pt;}
.y1b_c01054{bottom:89.493333pt;}
.y1a_c01054{bottom:112.826667pt;}
.y19_c01054{bottom:133.760000pt;}
.y18_c01054{bottom:156.960000pt;}
.y17_c01054{bottom:178.826667pt;}
.y16_c01054{bottom:200.960000pt;}
.y15_c01054{bottom:222.960000pt;}
.y14_c01054{bottom:245.093333pt;}
.y13_c01054{bottom:265.226667pt;}
.y12_c01054{bottom:288.026667pt;}
.y11_c01054{bottom:308.426667pt;}
.y10_c01054{bottom:330.026667pt;}
.yf_c01054{bottom:351.893333pt;}
.ye_c01054{bottom:373.226667pt;}
.yd_c01054{bottom:395.760000pt;}
.yc_c01054{bottom:416.693333pt;}
.yb_c01054{bottom:438.560000pt;}
.ya_c01054{bottom:459.893333pt;}
.y9_c01054{bottom:481.226667pt;}
.y8_c01054{bottom:503.360000pt;}
.y7_c01054{bottom:525.093333pt;}
.y6_c01054{bottom:546.560000pt;}
.y5_c01054{bottom:568.293333pt;}
.y4_c01054{bottom:590.426667pt;}
.y3_c01054{bottom:612.026667pt;}
.y2_c01054{bottom:634.293333pt;}
.y1_c01054{bottom:655.493333pt;}
.h3_c01054{height:11.733399pt;}
.h4_c01054{height:38.937500pt;}
.h1_c01054{height:74.906250pt;}
.h2_c01054{height:81.031250pt;}
.h0_c01054{height:698.666667pt;}
.w2_c01054{width:93.222667pt;}
.w0_c01054{width:470.400000pt;}
.w1_c01054{width:470.666667pt;}
.x0_c01054{left:0.000000pt;}
.x9_c01054{left:21.600000pt;}
.x8_c01054{left:23.200000pt;}
.x7_c01054{left:24.400000pt;}
.xa_c01054{left:25.866667pt;}
.x6_c01054{left:27.600000pt;}
.x5_c01054{left:29.066667pt;}
.x3_c01054{left:30.400000pt;}
.x4_c01054{left:31.466667pt;}
.x2_c01054{left:32.400000pt;}
.x1_c01054{left:135.200000pt;}
.xc_c01054{left:192.368205pt;}
.xb_c01054{left:255.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_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_7f2305130c6ea6c62cb3bc13.woff2')format("woff");}.ff1_c01055{font-family:ff1_c01055;line-height:1.480469;font-style:normal;font-weight:normal;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_d6ad9753136dc211a2b74ab2.woff2')format("woff");}.ff2_c01055{font-family:ff2_c01055;line-height:1.568848;font-style:normal;font-weight:normal;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_7256a3551192dfb60627e22d.woff2')format("woff");}.ff3_c01055{font-family:ff3_c01055;line-height:1.284668;font-style:normal;font-weight:normal;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_7b3845c727e64e9e6e9f0c2a.woff2')format("woff");}.ff4_c01055{font-family:ff4_c01055;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01055;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01055{font-family:ff5_c01055;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01055{vertical-align:0.000000px;}
.ls3_c01055{letter-spacing:-3.000000px;}
.ls0_c01055{letter-spacing:0.000000px;}
.ls2_c01055{letter-spacing:3.000000px;}
.ls1_c01055{letter-spacing:6.000000px;}
.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:-17.352000px;}
.ws1_c01055{word-spacing:0.000000px;}
._16_c01055{margin-left:-17.496000px;}
._12_c01055{margin-left:-15.192000px;}
._15_c01055{margin-left:-12.348000px;}
._e_c01055{margin-left:-10.584000px;}
._d_c01055{margin-left:-9.084000px;}
._c_c01055{margin-left:-7.188000px;}
._f_c01055{margin-left:-6.120000px;}
._b_c01055{margin-left:-4.356000px;}
._13_c01055{margin-left:-2.820000px;}
._11_c01055{margin-left:-1.740000px;}
._9_c01055{width:1.008000px;}
._7_c01055{width:2.448000px;}
._4_c01055{width:4.320000px;}
._8_c01055{width:5.460000px;}
._1_c01055{width:6.780000px;}
._6_c01055{width:8.280000px;}
._5_c01055{width:9.600000px;}
._3_c01055{width:11.100000px;}
._2_c01055{width:12.720000px;}
._a_c01055{width:14.427000px;}
._0_c01055{width:16.560000px;}
._10_c01055{width:18.516000px;}
._1a_c01055{width:20.232000px;}
._19_c01055{width:22.176000px;}
._1c_c01055{width:24.018000px;}
._1d_c01055{width:25.515000px;}
._1b_c01055{width:33.117000px;}
._17_c01055{width:36.864000px;}
._18_c01055{width:112.797000px;}
._1e_c01055{width:239.526000px;}
._14_c01055{width:588.777000px;}
.fc2_c01055{color:transparent;}
.fc1_c01055{color:rgb(128,128,128);}
.fc0_c01055{color:rgb(0,0,0);}
.fs5_c01055{font-size:24.000000px;}
.fs6_c01055{font-size:48.000000px;}
.fs2_c01055{font-size:57.000000px;}
.fs0_c01055{font-size:60.000000px;}
.fs3_c01055{font-size:63.000000px;}
.fs1_c01055{font-size:72.000000px;}
.fs4_c01055{font-size:81.000000px;}
.y0_c01055{bottom:0.000000px;}
.y1f_c01055{bottom:3.105000px;}
.y1e_c01055{bottom:7.228363px;}
.y1d_c01055{bottom:43.800000px;}
.y1c_c01055{bottom:66.750000px;}
.y1b_c01055{bottom:90.000000px;}
.y1a_c01055{bottom:116.400000px;}
.y19_c01055{bottom:142.050000px;}
.y18_c01055{bottom:167.700000px;}
.y17_c01055{bottom:192.600000px;}
.y16_c01055{bottom:217.050000px;}
.y15_c01055{bottom:242.700000px;}
.y14_c01055{bottom:269.550000px;}
.y13_c01055{bottom:291.150000px;}
.y12_c01055{bottom:315.900000px;}
.y11_c01055{bottom:341.250000px;}
.y10_c01055{bottom:365.400000px;}
.yf_c01055{bottom:388.500000px;}
.ye_c01055{bottom:412.800000px;}
.yd_c01055{bottom:435.750000px;}
.yc_c01055{bottom:459.000000px;}
.yb_c01055{bottom:484.200000px;}
.ya_c01055{bottom:508.950000px;}
.y9_c01055{bottom:533.550000px;}
.y8_c01055{bottom:558.150000px;}
.y7_c01055{bottom:582.450000px;}
.y6_c01055{bottom:605.850000px;}
.y5_c01055{bottom:631.500000px;}
.y4_c01055{bottom:655.800000px;}
.y3_c01055{bottom:680.100000px;}
.y2_c01055{bottom:705.000000px;}
.y1_c01055{bottom:730.350000px;}
.h6_c01055{height:13.200074px;}
.h7_c01055{height:43.804688px;}
.h2_c01055{height:75.966797px;}
.h4_c01055{height:79.765137px;}
.h3_c01055{height:91.160156px;}
.h5_c01055{height:94.803223px;}
.h1_c01055{height:788.250000px;}
.h0_c01055{height:788.400000px;}
.w2_c01055{width:104.875500px;}
.w0_c01055{width:526.200000px;}
.w1_c01055{width:526.500000px;}
.x0_c01055{left:0.000000px;}
.x7_c01055{left:103.650000px;}
.x3_c01055{left:105.900000px;}
.x2_c01055{left:106.950000px;}
.x4_c01055{left:108.000000px;}
.x5_c01055{left:109.650000px;}
.x6_c01055{left:110.700000px;}
.x8_c01055{left:112.950000px;}
.x9_c01055{left:114.450000px;}
.xa_c01055{left:214.914230px;}
.x1_c01055{left:239.850000px;}
@media print{
.v0_c01055{vertical-align:0.000000pt;}
.ls3_c01055{letter-spacing:-2.666667pt;}
.ls0_c01055{letter-spacing:0.000000pt;}
.ls2_c01055{letter-spacing:2.666667pt;}
.ls1_c01055{letter-spacing:5.333333pt;}
.ws0_c01055{word-spacing:-15.424000pt;}
.ws1_c01055{word-spacing:0.000000pt;}
._16_c01055{margin-left:-15.552000pt;}
._12_c01055{margin-left:-13.504000pt;}
._15_c01055{margin-left:-10.976000pt;}
._e_c01055{margin-left:-9.408000pt;}
._d_c01055{margin-left:-8.074667pt;}
._c_c01055{margin-left:-6.389333pt;}
._f_c01055{margin-left:-5.440000pt;}
._b_c01055{margin-left:-3.872000pt;}
._13_c01055{margin-left:-2.506667pt;}
._11_c01055{margin-left:-1.546667pt;}
._9_c01055{width:0.896000pt;}
._7_c01055{width:2.176000pt;}
._4_c01055{width:3.840000pt;}
._8_c01055{width:4.853333pt;}
._1_c01055{width:6.026667pt;}
._6_c01055{width:7.360000pt;}
._5_c01055{width:8.533333pt;}
._3_c01055{width:9.866667pt;}
._2_c01055{width:11.306667pt;}
._a_c01055{width:12.824000pt;}
._0_c01055{width:14.720000pt;}
._10_c01055{width:16.458667pt;}
._1a_c01055{width:17.984000pt;}
._19_c01055{width:19.712000pt;}
._1c_c01055{width:21.349333pt;}
._1d_c01055{width:22.680000pt;}
._1b_c01055{width:29.437333pt;}
._17_c01055{width:32.768000pt;}
._18_c01055{width:100.264000pt;}
._1e_c01055{width:212.912000pt;}
._14_c01055{width:523.357333pt;}
.fs5_c01055{font-size:21.333333pt;}
.fs6_c01055{font-size:42.666667pt;}
.fs2_c01055{font-size:50.666667pt;}
.fs0_c01055{font-size:53.333333pt;}
.fs3_c01055{font-size:56.000000pt;}
.fs1_c01055{font-size:64.000000pt;}
.fs4_c01055{font-size:72.000000pt;}
.y0_c01055{bottom:0.000000pt;}
.y1f_c01055{bottom:2.760000pt;}
.y1e_c01055{bottom:6.425212pt;}
.y1d_c01055{bottom:38.933333pt;}
.y1c_c01055{bottom:59.333333pt;}
.y1b_c01055{bottom:80.000000pt;}
.y1a_c01055{bottom:103.466667pt;}
.y19_c01055{bottom:126.266667pt;}
.y18_c01055{bottom:149.066667pt;}
.y17_c01055{bottom:171.200000pt;}
.y16_c01055{bottom:192.933333pt;}
.y15_c01055{bottom:215.733333pt;}
.y14_c01055{bottom:239.600000pt;}
.y13_c01055{bottom:258.800000pt;}
.y12_c01055{bottom:280.800000pt;}
.y11_c01055{bottom:303.333333pt;}
.y10_c01055{bottom:324.800000pt;}
.yf_c01055{bottom:345.333333pt;}
.ye_c01055{bottom:366.933333pt;}
.yd_c01055{bottom:387.333333pt;}
.yc_c01055{bottom:408.000000pt;}
.yb_c01055{bottom:430.400000pt;}
.ya_c01055{bottom:452.400000pt;}
.y9_c01055{bottom:474.266667pt;}
.y8_c01055{bottom:496.133333pt;}
.y7_c01055{bottom:517.733333pt;}
.y6_c01055{bottom:538.533333pt;}
.y5_c01055{bottom:561.333333pt;}
.y4_c01055{bottom:582.933333pt;}
.y3_c01055{bottom:604.533333pt;}
.y2_c01055{bottom:626.666667pt;}
.y1_c01055{bottom:649.200000pt;}
.h6_c01055{height:11.733399pt;}
.h7_c01055{height:38.937500pt;}
.h2_c01055{height:67.526042pt;}
.h4_c01055{height:70.902344pt;}
.h3_c01055{height:81.031250pt;}
.h5_c01055{height:84.269531pt;}
.h1_c01055{height:700.666667pt;}
.h0_c01055{height:700.800000pt;}
.w2_c01055{width:93.222667pt;}
.w0_c01055{width:467.733333pt;}
.w1_c01055{width:468.000000pt;}
.x0_c01055{left:0.000000pt;}
.x7_c01055{left:92.133333pt;}
.x3_c01055{left:94.133333pt;}
.x2_c01055{left:95.066667pt;}
.x4_c01055{left:96.000000pt;}
.x5_c01055{left:97.466667pt;}
.x6_c01055{left:98.400000pt;}
.x8_c01055{left:100.400000pt;}
.x9_c01055{left:101.733333pt;}
.xa_c01055{left:191.034871pt;}
.x1_c01055{left:213.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ffeb37676222a935b5cee723.woff2')format("woff");}.ff1_c01056{font-family:ff1_c01056;line-height:1.480469;font-style:normal;font-weight:normal;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_2f79f6626b2a4be00b507312.woff2')format("woff");}.ff2_c01056{font-family:ff2_c01056;line-height:1.568848;font-style:normal;font-weight:normal;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_c1a52eabbfc5a606b7b95699.woff2')format("woff");}.ff3_c01056{font-family:ff3_c01056;line-height:1.592000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01056{font-family:ff4_c01056;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01056{vertical-align:0.000000px;}
.ls0_c01056{letter-spacing:0.000000px;}
.ls1_c01056{letter-spacing:3.000000px;}
.ls2_c01056{letter-spacing:15.000000px;}
.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:-17.352000px;}
.ws1_c01056{word-spacing:0.000000px;}
._19_c01056{margin-left:-24.297000px;}
._10_c01056{margin-left:-10.512000px;}
._14_c01056{margin-left:-6.984000px;}
._13_c01056{margin-left:-5.328000px;}
._11_c01056{margin-left:-3.600000px;}
._12_c01056{margin-left:-2.568000px;}
._c_c01056{margin-left:-1.512000px;}
._b_c01056{width:1.080000px;}
._9_c01056{width:2.808000px;}
._a_c01056{width:3.888000px;}
._8_c01056{width:5.112000px;}
._2_c01056{width:6.192000px;}
._5_c01056{width:7.416000px;}
._e_c01056{width:8.424000px;}
._1_c01056{width:9.792000px;}
._4_c01056{width:11.088000px;}
._3_c01056{width:12.168000px;}
._7_c01056{width:14.040000px;}
._0_c01056{width:15.696000px;}
._d_c01056{width:18.360000px;}
._f_c01056{width:20.160000px;}
._18_c01056{width:25.848000px;}
._17_c01056{width:28.728000px;}
._15_c01056{width:31.392000px;}
._16_c01056{width:33.696000px;}
._1a_c01056{width:364.572000px;}
._6_c01056{width:382.968000px;}
.fc2_c01056{color:transparent;}
.fc1_c01056{color:rgb(128,128,128);}
.fc0_c01056{color:rgb(0,0,0);}
.fs3_c01056{font-size:48.000000px;}
.fs2_c01056{font-size:57.000000px;}
.fs0_c01056{font-size:72.000000px;}
.fs1_c01056{font-size:81.000000px;}
.y0_c01056{bottom:0.000000px;}
.y20_c01056{bottom:3.105000px;}
.y1f_c01056{bottom:7.228355px;}
.y1e_c01056{bottom:23.985000px;}
.y1d_c01056{bottom:49.635000px;}
.y1c_c01056{bottom:77.235000px;}
.y1b_c01056{bottom:101.235000px;}
.y1a_c01056{bottom:127.485000px;}
.y19_c01056{bottom:152.535000px;}
.y18_c01056{bottom:177.735000px;}
.y17_c01056{bottom:201.735000px;}
.y16_c01056{bottom:226.785000px;}
.y15_c01056{bottom:251.385000px;}
.y14_c01056{bottom:275.685000px;}
.y13_c01056{bottom:300.735000px;}
.y12_c01056{bottom:324.285000px;}
.y11_c01056{bottom:348.585000px;}
.y10_c01056{bottom:373.185000px;}
.yf_c01056{bottom:397.485000px;}
.ye_c01056{bottom:420.885000px;}
.yd_c01056{bottom:445.785000px;}
.yc_c01056{bottom:470.085000px;}
.yb_c01056{bottom:494.985000px;}
.ya_c01056{bottom:519.285000px;}
.y9_c01056{bottom:543.285000px;}
.y8_c01056{bottom:567.885000px;}
.y7_c01056{bottom:592.335000px;}
.y6_c01056{bottom:617.235000px;}
.y5_c01056{bottom:641.835000px;}
.y4_c01056{bottom:666.585000px;}
.y3_c01056{bottom:691.185000px;}
.y2_c01056{bottom:715.785000px;}
.y1_c01056{bottom:740.835000px;}
.h5_c01056{height:13.200074px;}
.h6_c01056{height:43.804688px;}
.h2_c01056{height:84.269531px;}
.h4_c01056{height:87.804000px;}
.h3_c01056{height:91.160156px;}
.h1_c01056{height:786.000000px;}
.h0_c01056{height:786.225000px;}
.w2_c01056{width:104.875500px;}
.w1_c01056{width:525.000000px;}
.w0_c01056{width:525.150000px;}
.x0_c01056{left:0.000000px;}
.x9_c01056{left:33.000000px;}
.x8_c01056{left:34.050000px;}
.x3_c01056{left:35.100000px;}
.x2_c01056{left:36.150000px;}
.x4_c01056{left:37.800000px;}
.x5_c01056{left:39.450000px;}
.x6_c01056{left:41.100000px;}
.x7_c01056{left:64.800000px;}
.x1_c01056{left:146.850000px;}
.xb_c01056{left:214.389267px;}
.xa_c01056{left:245.700000px;}
@media print{
.v0_c01056{vertical-align:0.000000pt;}
.ls0_c01056{letter-spacing:0.000000pt;}
.ls1_c01056{letter-spacing:2.666667pt;}
.ls2_c01056{letter-spacing:13.333333pt;}
.ws0_c01056{word-spacing:-15.424000pt;}
.ws1_c01056{word-spacing:0.000000pt;}
._19_c01056{margin-left:-21.597333pt;}
._10_c01056{margin-left:-9.344000pt;}
._14_c01056{margin-left:-6.208000pt;}
._13_c01056{margin-left:-4.736000pt;}
._11_c01056{margin-left:-3.200000pt;}
._12_c01056{margin-left:-2.282667pt;}
._c_c01056{margin-left:-1.344000pt;}
._b_c01056{width:0.960000pt;}
._9_c01056{width:2.496000pt;}
._a_c01056{width:3.456000pt;}
._8_c01056{width:4.544000pt;}
._2_c01056{width:5.504000pt;}
._5_c01056{width:6.592000pt;}
._e_c01056{width:7.488000pt;}
._1_c01056{width:8.704000pt;}
._4_c01056{width:9.856000pt;}
._3_c01056{width:10.816000pt;}
._7_c01056{width:12.480000pt;}
._0_c01056{width:13.952000pt;}
._d_c01056{width:16.320000pt;}
._f_c01056{width:17.920000pt;}
._18_c01056{width:22.976000pt;}
._17_c01056{width:25.536000pt;}
._15_c01056{width:27.904000pt;}
._16_c01056{width:29.952000pt;}
._1a_c01056{width:324.064000pt;}
._6_c01056{width:340.416000pt;}
.fs3_c01056{font-size:42.666667pt;}
.fs2_c01056{font-size:50.666667pt;}
.fs0_c01056{font-size:64.000000pt;}
.fs1_c01056{font-size:72.000000pt;}
.y0_c01056{bottom:0.000000pt;}
.y20_c01056{bottom:2.760000pt;}
.y1f_c01056{bottom:6.425204pt;}
.y1e_c01056{bottom:21.320000pt;}
.y1d_c01056{bottom:44.120000pt;}
.y1c_c01056{bottom:68.653333pt;}
.y1b_c01056{bottom:89.986667pt;}
.y1a_c01056{bottom:113.320000pt;}
.y19_c01056{bottom:135.586667pt;}
.y18_c01056{bottom:157.986667pt;}
.y17_c01056{bottom:179.320000pt;}
.y16_c01056{bottom:201.586667pt;}
.y15_c01056{bottom:223.453333pt;}
.y14_c01056{bottom:245.053333pt;}
.y13_c01056{bottom:267.320000pt;}
.y12_c01056{bottom:288.253333pt;}
.y11_c01056{bottom:309.853333pt;}
.y10_c01056{bottom:331.720000pt;}
.yf_c01056{bottom:353.320000pt;}
.ye_c01056{bottom:374.120000pt;}
.yd_c01056{bottom:396.253333pt;}
.yc_c01056{bottom:417.853333pt;}
.yb_c01056{bottom:439.986667pt;}
.ya_c01056{bottom:461.586667pt;}
.y9_c01056{bottom:482.920000pt;}
.y8_c01056{bottom:504.786667pt;}
.y7_c01056{bottom:526.520000pt;}
.y6_c01056{bottom:548.653333pt;}
.y5_c01056{bottom:570.520000pt;}
.y4_c01056{bottom:592.520000pt;}
.y3_c01056{bottom:614.386667pt;}
.y2_c01056{bottom:636.253333pt;}
.y1_c01056{bottom:658.520000pt;}
.h5_c01056{height:11.733399pt;}
.h6_c01056{height:38.937500pt;}
.h2_c01056{height:74.906250pt;}
.h4_c01056{height:78.048000pt;}
.h3_c01056{height:81.031250pt;}
.h1_c01056{height:698.666667pt;}
.h0_c01056{height:698.866667pt;}
.w2_c01056{width:93.222667pt;}
.w1_c01056{width:466.666667pt;}
.w0_c01056{width:466.800000pt;}
.x0_c01056{left:0.000000pt;}
.x9_c01056{left:29.333333pt;}
.x8_c01056{left:30.266667pt;}
.x3_c01056{left:31.200000pt;}
.x2_c01056{left:32.133333pt;}
.x4_c01056{left:33.600000pt;}
.x5_c01056{left:35.066667pt;}
.x6_c01056{left:36.533333pt;}
.x7_c01056{left:57.600000pt;}
.x1_c01056{left:130.533333pt;}
.xb_c01056{left:190.568237pt;}
.xa_c01056{left:218.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d20e9a17a2500ba866fef8b7.woff2')format("woff");}.ff1_c01057{font-family:ff1_c01057;line-height:1.480469;font-style:normal;font-weight:normal;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_e1a4f399f557773dd6cfe237.woff2')format("woff");}.ff2_c01057{font-family:ff2_c01057;line-height:1.568848;font-style:normal;font-weight:normal;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_40f37487690f66e65939aa18.woff2')format("woff");}.ff3_c01057{font-family:ff3_c01057;line-height:1.575000;font-style:normal;font-weight:normal;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_b4d699541df505c9038613e5.woff2')format("woff");}.ff4_c01057{font-family:ff4_c01057;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01057;src:url('chunks/assets/font_a78600c064d1ace92daa0f24.woff2')format("woff");}.ff5_c01057{font-family:ff5_c01057;line-height:1.284668;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01057{font-family:ff6_c01057;line-height:1.219238;font-style: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;}
.ls4_c01057{letter-spacing:0.000000px;}
.ls5_c01057{letter-spacing:3.000000px;}
.ls6_c01057{letter-spacing:6.000000px;}
.ls3_c01057{letter-spacing:7.788000px;}
.ls2_c01057{letter-spacing:10.200000px;}
.ls1_c01057{letter-spacing:12.300000px;}
.ls0_c01057{letter-spacing:13.788000px;}
.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;}
}
.ws2_c01057{word-spacing:-17.352000px;}
.ws0_c01057{word-spacing:-17.250000px;}
.ws1_c01057{word-spacing:-15.183000px;}
.ws3_c01057{word-spacing:0.000000px;}
._f_c01057{margin-left:-8.289000px;}
._b_c01057{margin-left:-6.264000px;}
._8_c01057{margin-left:-4.284000px;}
._c_c01057{margin-left:-3.198000px;}
._9_c01057{margin-left:-1.908000px;}
._6_c01057{width:1.044000px;}
._4_c01057{width:2.448000px;}
._a_c01057{width:3.492000px;}
._2_c01057{width:4.500000px;}
._5_c01057{width:6.192000px;}
._7_c01057{width:7.488000px;}
._1_c01057{width:9.180000px;}
._3_c01057{width:10.320000px;}
._d_c01057{width:11.592000px;}
._11_c01057{width:13.497000px;}
._10_c01057{width:14.589000px;}
._0_c01057{width:16.800000px;}
._14_c01057{width:17.847000px;}
._12_c01057{width:20.010000px;}
._13_c01057{width:21.081000px;}
._15_c01057{width:23.631000px;}
._e_c01057{width:25.620000px;}
.fc2_c01057{color:transparent;}
.fc1_c01057{color:rgb(128,128,128);}
.fc0_c01057{color:rgb(0,0,0);}
.fs4_c01057{font-size:39.000000px;}
.fs9_c01057{font-size:48.000000px;}
.fs7_c01057{font-size:57.000000px;}
.fs0_c01057{font-size:60.000000px;}
.fs3_c01057{font-size:63.000000px;}
.fs5_c01057{font-size:69.000000px;}
.fs1_c01057{font-size:72.000000px;}
.fs2_c01057{font-size:78.000000px;}
.fs6_c01057{font-size:81.000000px;}
.fs8_c01057{font-size:84.000000px;}
.y0_c01057{bottom:0.000000px;}
.y1f_c01057{bottom:3.105000px;}
.y1e_c01057{bottom:7.228371px;}
.y1d_c01057{bottom:50.415000px;}
.y1c_c01057{bottom:76.065000px;}
.y1b_c01057{bottom:101.715000px;}
.y1a_c01057{bottom:127.665000px;}
.y19_c01057{bottom:151.515000px;}
.y18_c01057{bottom:175.965000px;}
.y17_c01057{bottom:200.265000px;}
.y16_c01057{bottom:225.765000px;}
.y15_c01057{bottom:250.215000px;}
.y14_c01057{bottom:278.865000px;}
.y13_c01057{bottom:301.065000px;}
.y12_c01057{bottom:326.115000px;}
.y11_c01057{bottom:349.365000px;}
.y10_c01057{bottom:372.915000px;}
.yf_c01057{bottom:397.215000px;}
.ye_c01057{bottom:420.915000px;}
.yd_c01057{bottom:445.965000px;}
.yc_c01057{bottom:466.215000px;}
.yb_c01057{bottom:493.065000px;}
.ya_c01057{bottom:520.065000px;}
.y9_c01057{bottom:542.115000px;}
.y8_c01057{bottom:566.115000px;}
.y7_c01057{bottom:591.015000px;}
.y6_c01057{bottom:615.615000px;}
.y5_c01057{bottom:640.215000px;}
.y4_c01057{bottom:664.965000px;}
.y3_c01057{bottom:689.565000px;}
.y2_c01057{bottom:713.565000px;}
.y1_c01057{bottom:739.815000px;}
.h9_c01057{height:13.200074px;}
.ha_c01057{height:43.804688px;}
.h2_c01057{height:75.966797px;}
.h7_c01057{height:79.765137px;}
.h6_c01057{height:81.632812px;}
.h8_c01057{height:82.441406px;}
.h5_c01057{height:87.361816px;}
.h3_c01057{height:91.160156px;}
.h4_c01057{height:98.756836px;}
.h0_c01057{height:781.125000px;}
.h1_c01057{height:781.500000px;}
.w1_c01057{width:104.875500px;}
.w0_c01057{width:516.000000px;}
.x0_c01057{left:0.000000px;}
.x2_c01057{left:89.400000px;}
.x3_c01057{left:90.900000px;}
.x4_c01057{left:92.250000px;}
.x5_c01057{left:93.450000px;}
.x6_c01057{left:95.250000px;}
.x7_c01057{left:96.900000px;}
.x8_c01057{left:98.100000px;}
.x9_c01057{left:99.150000px;}
.xa_c01057{left:100.800000px;}
.xb_c01057{left:102.300000px;}
.xc_c01057{left:209.814240px;}
.x1_c01057{left:223.650000px;}
@media print{
.v0_c01057{vertical-align:0.000000pt;}
.ls4_c01057{letter-spacing:0.000000pt;}
.ls5_c01057{letter-spacing:2.666667pt;}
.ls6_c01057{letter-spacing:5.333333pt;}
.ls3_c01057{letter-spacing:6.922667pt;}
.ls2_c01057{letter-spacing:9.066667pt;}
.ls1_c01057{letter-spacing:10.933333pt;}
.ls0_c01057{letter-spacing:12.256000pt;}
.ws2_c01057{word-spacing:-15.424000pt;}
.ws0_c01057{word-spacing:-15.333333pt;}
.ws1_c01057{word-spacing:-13.496000pt;}
.ws3_c01057{word-spacing:0.000000pt;}
._f_c01057{margin-left:-7.368000pt;}
._b_c01057{margin-left:-5.568000pt;}
._8_c01057{margin-left:-3.808000pt;}
._c_c01057{margin-left:-2.842667pt;}
._9_c01057{margin-left:-1.696000pt;}
._6_c01057{width:0.928000pt;}
._4_c01057{width:2.176000pt;}
._a_c01057{width:3.104000pt;}
._2_c01057{width:4.000000pt;}
._5_c01057{width:5.504000pt;}
._7_c01057{width:6.656000pt;}
._1_c01057{width:8.160000pt;}
._3_c01057{width:9.173333pt;}
._d_c01057{width:10.304000pt;}
._11_c01057{width:11.997333pt;}
._10_c01057{width:12.968000pt;}
._0_c01057{width:14.933333pt;}
._14_c01057{width:15.864000pt;}
._12_c01057{width:17.786667pt;}
._13_c01057{width:18.738667pt;}
._15_c01057{width:21.005333pt;}
._e_c01057{width:22.773333pt;}
.fs4_c01057{font-size:34.666667pt;}
.fs9_c01057{font-size:42.666667pt;}
.fs7_c01057{font-size:50.666667pt;}
.fs0_c01057{font-size:53.333333pt;}
.fs3_c01057{font-size:56.000000pt;}
.fs5_c01057{font-size:61.333333pt;}
.fs1_c01057{font-size:64.000000pt;}
.fs2_c01057{font-size:69.333333pt;}
.fs6_c01057{font-size:72.000000pt;}
.fs8_c01057{font-size:74.666667pt;}
.y0_c01057{bottom:0.000000pt;}
.y1f_c01057{bottom:2.760000pt;}
.y1e_c01057{bottom:6.425219pt;}
.y1d_c01057{bottom:44.813333pt;}
.y1c_c01057{bottom:67.613333pt;}
.y1b_c01057{bottom:90.413333pt;}
.y1a_c01057{bottom:113.480000pt;}
.y19_c01057{bottom:134.680000pt;}
.y18_c01057{bottom:156.413333pt;}
.y17_c01057{bottom:178.013333pt;}
.y16_c01057{bottom:200.680000pt;}
.y15_c01057{bottom:222.413333pt;}
.y14_c01057{bottom:247.880000pt;}
.y13_c01057{bottom:267.613333pt;}
.y12_c01057{bottom:289.880000pt;}
.y11_c01057{bottom:310.546667pt;}
.y10_c01057{bottom:331.480000pt;}
.yf_c01057{bottom:353.080000pt;}
.ye_c01057{bottom:374.146667pt;}
.yd_c01057{bottom:396.413333pt;}
.yc_c01057{bottom:414.413333pt;}
.yb_c01057{bottom:438.280000pt;}
.ya_c01057{bottom:462.280000pt;}
.y9_c01057{bottom:481.880000pt;}
.y8_c01057{bottom:503.213333pt;}
.y7_c01057{bottom:525.346667pt;}
.y6_c01057{bottom:547.213333pt;}
.y5_c01057{bottom:569.080000pt;}
.y4_c01057{bottom:591.080000pt;}
.y3_c01057{bottom:612.946667pt;}
.y2_c01057{bottom:634.280000pt;}
.y1_c01057{bottom:657.613333pt;}
.h9_c01057{height:11.733399pt;}
.ha_c01057{height:38.937500pt;}
.h2_c01057{height:67.526042pt;}
.h7_c01057{height:70.902344pt;}
.h6_c01057{height:72.562500pt;}
.h8_c01057{height:73.281250pt;}
.h5_c01057{height:77.654948pt;}
.h3_c01057{height:81.031250pt;}
.h4_c01057{height:87.783854pt;}
.h0_c01057{height:694.333333pt;}
.h1_c01057{height:694.666667pt;}
.w1_c01057{width:93.222667pt;}
.w0_c01057{width:458.666667pt;}
.x0_c01057{left:0.000000pt;}
.x2_c01057{left:79.466667pt;}
.x3_c01057{left:80.800000pt;}
.x4_c01057{left:82.000000pt;}
.x5_c01057{left:83.066667pt;}
.x6_c01057{left:84.666667pt;}
.x7_c01057{left:86.133333pt;}
.x8_c01057{left:87.200000pt;}
.x9_c01057{left:88.133333pt;}
.xa_c01057{left:89.600000pt;}
.xb_c01057{left:90.933333pt;}
.xc_c01057{left:186.501546pt;}
.x1_c01057{left:198.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_529a0aaf1d3ba948b7763f1f.woff2')format("woff");}.ff1_c01058{font-family:ff1_c01058;line-height:1.568848;font-style:normal;font-weight:normal;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_b7ea5607f278d7d2aa59d3e5.woff2')format("woff");}.ff2_c01058{font-family:ff2_c01058;line-height:1.568848;font-style:normal;font-weight:normal;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_f35053ca9b2c251fe86bf325.woff2')format("woff");}.ff3_c01058{font-family:ff3_c01058;line-height:1.480469;font-style:normal;font-weight:normal;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_5a8733bbcb19d4a6fc10a397.woff2')format("woff");}.ff4_c01058{font-family:ff4_c01058;line-height:1.575000;font-style:normal;font-weight:normal;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_c990a3a1a3c6c159551c2e45.woff2')format("woff");}.ff5_c01058{font-family:ff5_c01058;line-height:1.592000;font-style:normal;font-weight:normal;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_eee95b2553e9c9104b49ee2f.woff2')format("woff");}.ff6_c01058{font-family:ff6_c01058;line-height:1.575000;font-style:normal;font-weight: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_0cd28848117c522636214637.woff2')format("woff");}.ff7_c01058{font-family:ff7_c01058;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01058{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01058{vertical-align:0.000000px;}
.ls4_c01058{letter-spacing:-9.000000px;}
.ls5_c01058{letter-spacing:-3.000000px;}
.ls2_c01058{letter-spacing:0.000000px;}
.ls1_c01058{letter-spacing:4.104000px;}
.ls3_c01058{letter-spacing:6.000000px;}
.ls0_c01058{letter-spacing:22.188000px;}
.sc__c01058{text-shadow:none;}
.sc0_c01058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01058{-webkit-text-stroke:0px transparent;}
.sc0_c01058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01058{word-spacing:-25.521000px;}
.ws6_c01058{word-spacing:-23.760000px;}
.ws3_c01058{word-spacing:-21.051000px;}
.ws1_c01058{word-spacing:-17.352000px;}
.ws2_c01058{word-spacing:-14.460000px;}
.ws4_c01058{word-spacing:-0.072000px;}
.ws7_c01058{word-spacing:0.000000px;}
.ws5_c01058{word-spacing:0.504000px;}
._1b_c01058{margin-left:-28.521000px;}
._17_c01058{margin-left:-16.410000px;}
._16_c01058{margin-left:-12.960000px;}
._13_c01058{margin-left:-11.178000px;}
._15_c01058{margin-left:-9.432000px;}
._14_c01058{margin-left:-7.569000px;}
._12_c01058{margin-left:-6.363000px;}
._0_c01058{margin-left:-4.896000px;}
._2_c01058{margin-left:-3.240000px;}
._1_c01058{margin-left:-2.232000px;}
._3_c01058{margin-left:-1.152000px;}
._d_c01058{width:1.368000px;}
._4_c01058{width:3.024000px;}
._5_c01058{width:4.392000px;}
._f_c01058{width:5.976000px;}
._e_c01058{width:7.272000px;}
._19_c01058{width:8.331000px;}
._18_c01058{width:9.504000px;}
._11_c01058{width:11.592000px;}
._6_c01058{width:13.320000px;}
._10_c01058{width:14.904000px;}
._1e_c01058{width:16.437000px;}
._a_c01058{width:22.968000px;}
._8_c01058{width:24.696000px;}
._c_c01058{width:26.640000px;}
._7_c01058{width:28.080000px;}
._b_c01058{width:29.160000px;}
._9_c01058{width:31.320000px;}
._22_c01058{width:33.048000px;}
._21_c01058{width:61.845000px;}
._20_c01058{width:96.330000px;}
._1f_c01058{width:232.623000px;}
._23_c01058{width:300.960000px;}
._1c_c01058{width:427.134000px;}
._1a_c01058{width:506.853000px;}
._1d_c01058{width:819.345000px;}
.fc2_c01058{color:transparent;}
.fc1_c01058{color:rgb(128,128,128);}
.fc0_c01058{color:rgb(0,0,0);}
.fs6_c01058{font-size:45.000000px;}
.fs7_c01058{font-size:48.000000px;}
.fs3_c01058{font-size:57.000000px;}
.fs4_c01058{font-size:60.000000px;}
.fs2_c01058{font-size:63.000000px;}
.fs5_c01058{font-size:69.000000px;}
.fs0_c01058{font-size:72.000000px;}
.fs1_c01058{font-size:81.000000px;}
.y0_c01058{bottom:0.000000px;}
.y1f_c01058{bottom:3.105000px;}
.y1e_c01058{bottom:7.228371px;}
.y1d_c01058{bottom:35.415000px;}
.y1c_c01058{bottom:50.415000px;}
.y1b_c01058{bottom:65.115000px;}
.y1a_c01058{bottom:88.815000px;}
.y19_c01058{bottom:115.515000px;}
.y18_c01058{bottom:139.065000px;}
.y17_c01058{bottom:163.065000px;}
.y16_c01058{bottom:189.015000px;}
.y15_c01058{bottom:214.965000px;}
.y14_c01058{bottom:239.265000px;}
.y13_c01058{bottom:264.315000px;}
.y12_c01058{bottom:289.215000px;}
.y11_c01058{bottom:313.215000px;}
.y10_c01058{bottom:336.615000px;}
.yf_c01058{bottom:361.215000px;}
.ye_c01058{bottom:385.815000px;}
.yd_c01058{bottom:409.365000px;}
.yc_c01058{bottom:434.715000px;}
.yb_c01058{bottom:458.415000px;}
.ya_c01058{bottom:483.315000px;}
.y9_c01058{bottom:507.915000px;}
.y8_c01058{bottom:531.315000px;}
.y7_c01058{bottom:556.965000px;}
.y6_c01058{bottom:582.165000px;}
.y5_c01058{bottom:606.465000px;}
.y4_c01058{bottom:631.215000px;}
.y3_c01058{bottom:655.215000px;}
.y2_c01058{bottom:680.865000px;}
.y1_c01058{bottom:703.365000px;}
.h6_c01058{height:13.200074px;}
.h7_c01058{height:43.804688px;}
.h5_c01058{height:72.168457px;}
.h4_c01058{height:87.361816px;}
.h2_c01058{height:91.160156px;}
.h3_c01058{height:102.555176px;}
.h1_c01058{height:768.750000px;}
.h0_c01058{height:768.975000px;}
.w2_c01058{width:104.875500px;}
.w1_c01058{width:543.000000px;}
.w0_c01058{width:543.225000px;}
.x0_c01058{left:0.000000px;}
.x2_c01058{left:25.950000px;}
.x3_c01058{left:27.600000px;}
.x4_c01058{left:28.650000px;}
.x5_c01058{left:30.150000px;}
.x1_c01058{left:31.950000px;}
.x6_c01058{left:33.150000px;}
.x9_c01058{left:35.550000px;}
.x7_c01058{left:68.550000px;}
.x8_c01058{left:83.100000px;}
.xb_c01058{left:223.426758px;}
.xa_c01058{left:267.000000px;}
@media print{
.v0_c01058{vertical-align:0.000000pt;}
.ls4_c01058{letter-spacing:-8.000000pt;}
.ls5_c01058{letter-spacing:-2.666667pt;}
.ls2_c01058{letter-spacing:0.000000pt;}
.ls1_c01058{letter-spacing:3.648000pt;}
.ls3_c01058{letter-spacing:5.333333pt;}
.ls0_c01058{letter-spacing:19.722667pt;}
.ws0_c01058{word-spacing:-22.685333pt;}
.ws6_c01058{word-spacing:-21.120000pt;}
.ws3_c01058{word-spacing:-18.712000pt;}
.ws1_c01058{word-spacing:-15.424000pt;}
.ws2_c01058{word-spacing:-12.853333pt;}
.ws4_c01058{word-spacing:-0.064000pt;}
.ws7_c01058{word-spacing:0.000000pt;}
.ws5_c01058{word-spacing:0.448000pt;}
._1b_c01058{margin-left:-25.352000pt;}
._17_c01058{margin-left:-14.586667pt;}
._16_c01058{margin-left:-11.520000pt;}
._13_c01058{margin-left:-9.936000pt;}
._15_c01058{margin-left:-8.384000pt;}
._14_c01058{margin-left:-6.728000pt;}
._12_c01058{margin-left:-5.656000pt;}
._0_c01058{margin-left:-4.352000pt;}
._2_c01058{margin-left:-2.880000pt;}
._1_c01058{margin-left:-1.984000pt;}
._3_c01058{margin-left:-1.024000pt;}
._d_c01058{width:1.216000pt;}
._4_c01058{width:2.688000pt;}
._5_c01058{width:3.904000pt;}
._f_c01058{width:5.312000pt;}
._e_c01058{width:6.464000pt;}
._19_c01058{width:7.405333pt;}
._18_c01058{width:8.448000pt;}
._11_c01058{width:10.304000pt;}
._6_c01058{width:11.840000pt;}
._10_c01058{width:13.248000pt;}
._1e_c01058{width:14.610667pt;}
._a_c01058{width:20.416000pt;}
._8_c01058{width:21.952000pt;}
._c_c01058{width:23.680000pt;}
._7_c01058{width:24.960000pt;}
._b_c01058{width:25.920000pt;}
._9_c01058{width:27.840000pt;}
._22_c01058{width:29.376000pt;}
._21_c01058{width:54.973333pt;}
._20_c01058{width:85.626667pt;}
._1f_c01058{width:206.776000pt;}
._23_c01058{width:267.520000pt;}
._1c_c01058{width:379.674667pt;}
._1a_c01058{width:450.536000pt;}
._1d_c01058{width:728.306667pt;}
.fs6_c01058{font-size:40.000000pt;}
.fs7_c01058{font-size:42.666667pt;}
.fs3_c01058{font-size:50.666667pt;}
.fs4_c01058{font-size:53.333333pt;}
.fs2_c01058{font-size:56.000000pt;}
.fs5_c01058{font-size:61.333333pt;}
.fs0_c01058{font-size:64.000000pt;}
.fs1_c01058{font-size:72.000000pt;}
.y0_c01058{bottom:0.000000pt;}
.y1f_c01058{bottom:2.760000pt;}
.y1e_c01058{bottom:6.425219pt;}
.y1d_c01058{bottom:31.480000pt;}
.y1c_c01058{bottom:44.813333pt;}
.y1b_c01058{bottom:57.880000pt;}
.y1a_c01058{bottom:78.946667pt;}
.y19_c01058{bottom:102.680000pt;}
.y18_c01058{bottom:123.613333pt;}
.y17_c01058{bottom:144.946667pt;}
.y16_c01058{bottom:168.013333pt;}
.y15_c01058{bottom:191.080000pt;}
.y14_c01058{bottom:212.680000pt;}
.y13_c01058{bottom:234.946667pt;}
.y12_c01058{bottom:257.080000pt;}
.y11_c01058{bottom:278.413333pt;}
.y10_c01058{bottom:299.213333pt;}
.yf_c01058{bottom:321.080000pt;}
.ye_c01058{bottom:342.946667pt;}
.yd_c01058{bottom:363.880000pt;}
.yc_c01058{bottom:386.413333pt;}
.yb_c01058{bottom:407.480000pt;}
.ya_c01058{bottom:429.613333pt;}
.y9_c01058{bottom:451.480000pt;}
.y8_c01058{bottom:472.280000pt;}
.y7_c01058{bottom:495.080000pt;}
.y6_c01058{bottom:517.480000pt;}
.y5_c01058{bottom:539.080000pt;}
.y4_c01058{bottom:561.080000pt;}
.y3_c01058{bottom:582.413333pt;}
.y2_c01058{bottom:605.213333pt;}
.y1_c01058{bottom:625.213333pt;}
.h6_c01058{height:11.733399pt;}
.h7_c01058{height:38.937500pt;}
.h5_c01058{height:64.149740pt;}
.h4_c01058{height:77.654948pt;}
.h2_c01058{height:81.031250pt;}
.h3_c01058{height:91.160156pt;}
.h1_c01058{height:683.333333pt;}
.h0_c01058{height:683.533333pt;}
.w2_c01058{width:93.222667pt;}
.w1_c01058{width:482.666667pt;}
.w0_c01058{width:482.866667pt;}
.x0_c01058{left:0.000000pt;}
.x2_c01058{left:23.066667pt;}
.x3_c01058{left:24.533333pt;}
.x4_c01058{left:25.466667pt;}
.x5_c01058{left:26.800000pt;}
.x1_c01058{left:28.400000pt;}
.x6_c01058{left:29.466667pt;}
.x9_c01058{left:31.600000pt;}
.x7_c01058{left:60.933333pt;}
.x8_c01058{left:73.866667pt;}
.xb_c01058{left:198.601563pt;}
.xa_c01058{left:237.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_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_bfef2168fb8a2f56b4d6d049.woff2')format("woff");}.ff1_c01059{font-family:ff1_c01059;line-height:1.480469;font-style:normal;font-weight:normal;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_de7e32e2656b4cc5bd933753.woff2')format("woff");}.ff2_c01059{font-family:ff2_c01059;line-height:1.480469;font-style:normal;font-weight:normal;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_b8ef6a036e4ed47ff69b2892.woff2')format("woff");}.ff3_c01059{font-family:ff3_c01059;line-height:1.568848;font-style:normal;font-weight:normal;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_198e0a1e4eb9c55f2ae54aa6.woff2')format("woff");}.ff4_c01059{font-family:ff4_c01059;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01059;src:url('chunks/assets/font_cdec2b64dcb1319141393630.woff2')format("woff");}.ff5_c01059{font-family:ff5_c01059;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01059;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01059{font-family:ff6_c01059;line-height:1.219238;font-style: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);}
.v1_c01059{vertical-align:-9.000000px;}
.v0_c01059{vertical-align:0.000000px;}
.ls4_c01059{letter-spacing:-9.000000px;}
.ls2_c01059{letter-spacing:-6.000000px;}
.ls3_c01059{letter-spacing:0.000000px;}
.ls1_c01059{letter-spacing:2.616000px;}
.ls0_c01059{letter-spacing:12.600000px;}
.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:-51.540000px;}
.ws2_c01059{word-spacing:-21.051000px;}
.ws1_c01059{word-spacing:-17.352000px;}
.ws3_c01059{word-spacing:0.000000px;}
._a_c01059{margin-left:-19.644000px;}
._16_c01059{margin-left:-7.920000px;}
._c_c01059{margin-left:-6.420000px;}
._d_c01059{margin-left:-5.340000px;}
._10_c01059{margin-left:-3.828000px;}
._8_c01059{margin-left:-2.673000px;}
._6_c01059{margin-left:-1.512000px;}
._1_c01059{width:1.092000px;}
._12_c01059{width:2.100000px;}
._0_c01059{width:3.108000px;}
._3_c01059{width:4.968000px;}
._4_c01059{width:6.336000px;}
._5_c01059{width:7.560000px;}
._9_c01059{width:8.664000px;}
._e_c01059{width:10.632000px;}
._7_c01059{width:12.228000px;}
._f_c01059{width:13.968000px;}
._15_c01059{width:15.228000px;}
._b_c01059{width:16.284000px;}
._14_c01059{width:18.504000px;}
._11_c01059{width:19.560000px;}
._13_c01059{width:23.697000px;}
._17_c01059{width:25.848000px;}
._2_c01059{width:350.268000px;}
.fc2_c01059{color:transparent;}
.fc1_c01059{color:rgb(128,128,128);}
.fc0_c01059{color:rgb(0,0,0);}
.fs6_c01059{font-size:48.000000px;}
.fs4_c01059{font-size:60.000000px;}
.fs5_c01059{font-size:63.000000px;}
.fs3_c01059{font-size:69.000000px;}
.fs1_c01059{font-size:72.000000px;}
.fs0_c01059{font-size:84.000000px;}
.fs2_c01059{font-size:93.000000px;}
.y0_c01059{bottom:0.000000px;}
.y1e_c01059{bottom:3.105000px;}
.y1d_c01059{bottom:7.228369px;}
.y1c_c01059{bottom:53.220000px;}
.y1b_c01059{bottom:78.570000px;}
.y1a_c01059{bottom:103.620000px;}
.y19_c01059{bottom:129.570000px;}
.y18_c01059{bottom:154.470000px;}
.y17_c01059{bottom:178.770000px;}
.y16_c01059{bottom:203.820000px;}
.y15_c01059{bottom:228.720000px;}
.y14_c01059{bottom:253.770000px;}
.y13_c01059{bottom:278.070000px;}
.y12_c01059{bottom:302.970000px;}
.y11_c01059{bottom:327.270000px;}
.y10_c01059{bottom:350.970000px;}
.yf_c01059{bottom:375.570000px;}
.ye_c01059{bottom:400.170000px;}
.yd_c01059{bottom:422.520000px;}
.yc_c01059{bottom:447.120000px;}
.yb_c01059{bottom:471.720000px;}
.ya_c01059{bottom:496.170000px;}
.y9_c01059{bottom:521.070000px;}
.y8_c01059{bottom:546.420000px;}
.y7_c01059{bottom:570.270000px;}
.y6_c01059{bottom:594.270000px;}
.y5_c01059{bottom:622.470000px;}
.y4_c01059{bottom:643.320000px;}
.y3_c01059{bottom:666.120000px;}
.y2_c01059{bottom:691.470000px;}
.y1_c01059{bottom:719.220000px;}
.h6_c01059{height:13.200073px;}
.h7_c01059{height:43.804688px;}
.h5_c01059{height:82.160156px;}
.h4_c01059{height:87.361816px;}
.h2_c01059{height:91.160156px;}
.h3_c01059{height:93.726562px;}
.h1_c01059{height:98.314453px;}
.h0_c01059{height:766.500000px;}
.w2_c01059{width:104.875500px;}
.w1_c01059{width:473.250000px;}
.w0_c01059{width:473.325000px;}
.x0_c01059{left:0.000000px;}
.xb_c01059{left:43.800000px;}
.xa_c01059{left:57.300000px;}
.x9_c01059{left:58.650000px;}
.x8_c01059{left:60.000000px;}
.x7_c01059{left:61.800000px;}
.x6_c01059{left:64.350000px;}
.x5_c01059{left:65.700000px;}
.x4_c01059{left:66.750000px;}
.x2_c01059{left:68.100000px;}
.x3_c01059{left:76.500000px;}
.xc_c01059{left:188.476753px;}
.x1_c01059{left:213.600000px;}
@media print{
.v1_c01059{vertical-align:-8.000000pt;}
.v0_c01059{vertical-align:0.000000pt;}
.ls4_c01059{letter-spacing:-8.000000pt;}
.ls2_c01059{letter-spacing:-5.333333pt;}
.ls3_c01059{letter-spacing:0.000000pt;}
.ls1_c01059{letter-spacing:2.325333pt;}
.ls0_c01059{letter-spacing:11.200000pt;}
.ws0_c01059{word-spacing:-45.813333pt;}
.ws2_c01059{word-spacing:-18.712000pt;}
.ws1_c01059{word-spacing:-15.424000pt;}
.ws3_c01059{word-spacing:0.000000pt;}
._a_c01059{margin-left:-17.461333pt;}
._16_c01059{margin-left:-7.040000pt;}
._c_c01059{margin-left:-5.706667pt;}
._d_c01059{margin-left:-4.746667pt;}
._10_c01059{margin-left:-3.402667pt;}
._8_c01059{margin-left:-2.376000pt;}
._6_c01059{margin-left:-1.344000pt;}
._1_c01059{width:0.970667pt;}
._12_c01059{width:1.866667pt;}
._0_c01059{width:2.762667pt;}
._3_c01059{width:4.416000pt;}
._4_c01059{width:5.632000pt;}
._5_c01059{width:6.720000pt;}
._9_c01059{width:7.701333pt;}
._e_c01059{width:9.450667pt;}
._7_c01059{width:10.869333pt;}
._f_c01059{width:12.416000pt;}
._15_c01059{width:13.536000pt;}
._b_c01059{width:14.474667pt;}
._14_c01059{width:16.448000pt;}
._11_c01059{width:17.386667pt;}
._13_c01059{width:21.064000pt;}
._17_c01059{width:22.976000pt;}
._2_c01059{width:311.349333pt;}
.fs6_c01059{font-size:42.666667pt;}
.fs4_c01059{font-size:53.333333pt;}
.fs5_c01059{font-size:56.000000pt;}
.fs3_c01059{font-size:61.333333pt;}
.fs1_c01059{font-size:64.000000pt;}
.fs0_c01059{font-size:74.666667pt;}
.fs2_c01059{font-size:82.666667pt;}
.y0_c01059{bottom:0.000000pt;}
.y1e_c01059{bottom:2.760000pt;}
.y1d_c01059{bottom:6.425217pt;}
.y1c_c01059{bottom:47.306667pt;}
.y1b_c01059{bottom:69.840000pt;}
.y1a_c01059{bottom:92.106667pt;}
.y19_c01059{bottom:115.173333pt;}
.y18_c01059{bottom:137.306667pt;}
.y17_c01059{bottom:158.906667pt;}
.y16_c01059{bottom:181.173333pt;}
.y15_c01059{bottom:203.306667pt;}
.y14_c01059{bottom:225.573333pt;}
.y13_c01059{bottom:247.173333pt;}
.y12_c01059{bottom:269.306667pt;}
.y11_c01059{bottom:290.906667pt;}
.y10_c01059{bottom:311.973333pt;}
.yf_c01059{bottom:333.840000pt;}
.ye_c01059{bottom:355.706667pt;}
.yd_c01059{bottom:375.573333pt;}
.yc_c01059{bottom:397.440000pt;}
.yb_c01059{bottom:419.306667pt;}
.ya_c01059{bottom:441.040000pt;}
.y9_c01059{bottom:463.173333pt;}
.y8_c01059{bottom:485.706667pt;}
.y7_c01059{bottom:506.906667pt;}
.y6_c01059{bottom:528.240000pt;}
.y5_c01059{bottom:553.306667pt;}
.y4_c01059{bottom:571.840000pt;}
.y3_c01059{bottom:592.106667pt;}
.y2_c01059{bottom:614.640000pt;}
.y1_c01059{bottom:639.306667pt;}
.h6_c01059{height:11.733399pt;}
.h7_c01059{height:38.937500pt;}
.h5_c01059{height:73.031250pt;}
.h4_c01059{height:77.654948pt;}
.h2_c01059{height:81.031250pt;}
.h3_c01059{height:83.312500pt;}
.h1_c01059{height:87.390625pt;}
.h0_c01059{height:681.333333pt;}
.w2_c01059{width:93.222667pt;}
.w1_c01059{width:420.666667pt;}
.w0_c01059{width:420.733333pt;}
.x0_c01059{left:0.000000pt;}
.xb_c01059{left:38.933333pt;}
.xa_c01059{left:50.933333pt;}
.x9_c01059{left:52.133333pt;}
.x8_c01059{left:53.333333pt;}
.x7_c01059{left:54.933333pt;}
.x6_c01059{left:57.200000pt;}
.x5_c01059{left:58.400000pt;}
.x4_c01059{left:59.333333pt;}
.x2_c01059{left:60.533333pt;}
.x3_c01059{left:68.000000pt;}
.xc_c01059{left:167.534892pt;}
.x1_c01059{left:189.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_292a1e3c256658b0309c7d65.woff2')format("woff");}.ff1_c01060{font-family:ff1_c01060;line-height:1.568848;font-style:normal;font-weight:normal;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_ec26f95081b2407bf8c46f40.woff2')format("woff");}.ff2_c01060{font-family:ff2_c01060;line-height:1.480469;font-style:normal;font-weight:normal;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_d5a7fc7febef97caaf3b406e.woff2')format("woff");}.ff3_c01060{font-family:ff3_c01060;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01060;src:url('chunks/assets/font_befce46a58f472ae781ba945.woff2')format("woff");}.ff4_c01060{font-family:ff4_c01060;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01060;src:url('chunks/assets/font_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff5_c01060{font-family:ff5_c01060;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01060;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01060{font-family:ff6_c01060;line-height:1.219238;font-style: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;}
.v1_c01060{vertical-align:115.200000px;}
.ls4_c01060{letter-spacing:-3.000000px;}
.ls2_c01060{letter-spacing:0.000000px;}
.ls1_c01060{letter-spacing:2.187000px;}
.ls3_c01060{letter-spacing:3.000000px;}
.ls0_c01060{letter-spacing:11.100000px;}
.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;}
}
.ws3_c01060{word-spacing:-110.880000px;}
.ws1_c01060{word-spacing:-42.000000px;}
.ws2_c01060{word-spacing:-19.629000px;}
.ws4_c01060{word-spacing:-16.521000px;}
.ws5_c01060{word-spacing:0.000000px;}
.ws0_c01060{word-spacing:9.936000px;}
._16_c01060{margin-left:-24.180000px;}
._e_c01060{margin-left:-16.629000px;}
._1b_c01060{margin-left:-13.365000px;}
._14_c01060{margin-left:-10.833000px;}
._13_c01060{margin-left:-9.384000px;}
._11_c01060{margin-left:-7.083000px;}
._1c_c01060{margin-left:-5.205000px;}
._10_c01060{margin-left:-3.555000px;}
._d_c01060{margin-left:-1.665000px;}
._c_c01060{width:1.512000px;}
._4_c01060{width:2.952000px;}
._15_c01060{width:4.035000px;}
._2_c01060{width:5.040000px;}
._3_c01060{width:6.840000px;}
._7_c01060{width:8.595000px;}
._6_c01060{width:9.828000px;}
._a_c01060{width:11.025000px;}
._9_c01060{width:12.096000px;}
._8_c01060{width:13.230000px;}
._12_c01060{width:16.371000px;}
._f_c01060{width:17.829000px;}
._17_c01060{width:18.954000px;}
._b_c01060{width:20.412000px;}
._1d_c01060{width:22.512000px;}
._19_c01060{width:26.163000px;}
._21_c01060{width:30.429000px;}
._20_c01060{width:32.130000px;}
._0_c01060{width:47.664000px;}
._1_c01060{width:54.504000px;}
._18_c01060{width:92.574000px;}
._1a_c01060{width:191.967000px;}
._1e_c01060{width:224.691000px;}
._1f_c01060{width:270.204000px;}
._22_c01060{width:312.102000px;}
._5_c01060{width:340.272000px;}
.fc2_c01060{color:transparent;}
.fc1_c01060{color:rgb(128,128,128);}
.fc0_c01060{color:rgb(0,0,0);}
.fs6_c01060{font-size:48.000000px;}
.fs1_c01060{font-size:63.000000px;}
.fs3_c01060{font-size:69.000000px;}
.fs0_c01060{font-size:72.000000px;}
.fs5_c01060{font-size:81.000000px;}
.fs2_c01060{font-size:84.000000px;}
.fs4_c01060{font-size:210.000000px;}
.y0_c01060{bottom:0.000000px;}
.y1f_c01060{bottom:3.105000px;}
.y1e_c01060{bottom:7.228369px;}
.y1d_c01060{bottom:33.120000px;}
.y1c_c01060{bottom:59.670000px;}
.y1b_c01060{bottom:87.420000px;}
.y1a_c01060{bottom:112.020000px;}
.y19_c01060{bottom:136.620000px;}
.y18_c01060{bottom:159.870000px;}
.y17_c01060{bottom:187.020000px;}
.y16_c01060{bottom:212.520000px;}
.y15_c01060{bottom:236.520000px;}
.y14_c01060{bottom:261.570000px;}
.y13_c01060{bottom:285.870000px;}
.y12_c01060{bottom:309.870000px;}
.y11_c01060{bottom:335.520000px;}
.y10_c01060{bottom:359.070000px;}
.yf_c01060{bottom:384.120000px;}
.ye_c01060{bottom:406.920000px;}
.yd_c01060{bottom:432.270000px;}
.yb_c01060{bottom:453.120000px;}
.yc_c01060{bottom:457.320000px;}
.ya_c01060{bottom:508.170000px;}
.y9_c01060{bottom:531.870000px;}
.y8_c01060{bottom:556.770000px;}
.y7_c01060{bottom:581.070000px;}
.y6_c01060{bottom:606.420000px;}
.y5_c01060{bottom:630.120000px;}
.y4_c01060{bottom:654.720000px;}
.y3_c01060{bottom:679.320000px;}
.y2_c01060{bottom:705.270000px;}
.y1_c01060{bottom:728.970000px;}
.h9_c01060{height:13.200073px;}
.ha_c01060{height:43.804688px;}
.h3_c01060{height:79.765137px;}
.h4_c01060{height:82.441406px;}
.h5_c01060{height:87.361816px;}
.h2_c01060{height:91.160156px;}
.h7_c01060{height:94.803223px;}
.h8_c01060{height:102.555176px;}
.h6_c01060{height:224.070000px;}
.h1_c01060{height:785.250000px;}
.h0_c01060{height:785.400000px;}
.w2_c01060{width:104.875500px;}
.w0_c01060{width:531.375000px;}
.w1_c01060{width:531.750000px;}
.x0_c01060{left:0.000000px;}
.x7_c01060{left:26.700000px;}
.x4_c01060{left:30.750000px;}
.x3_c01060{left:31.950000px;}
.x2_c01060{left:33.300000px;}
.x5_c01060{left:35.100000px;}
.x6_c01060{left:42.900000px;}
.x1_c01060{left:148.500000px;}
.x9_c01060{left:217.501740px;}
.x8_c01060{left:264.150000px;}
@media print{
.v0_c01060{vertical-align:0.000000pt;}
.v1_c01060{vertical-align:102.400000pt;}
.ls4_c01060{letter-spacing:-2.666667pt;}
.ls2_c01060{letter-spacing:0.000000pt;}
.ls1_c01060{letter-spacing:1.944000pt;}
.ls3_c01060{letter-spacing:2.666667pt;}
.ls0_c01060{letter-spacing:9.866667pt;}
.ws3_c01060{word-spacing:-98.560000pt;}
.ws1_c01060{word-spacing:-37.333333pt;}
.ws2_c01060{word-spacing:-17.448000pt;}
.ws4_c01060{word-spacing:-14.685333pt;}
.ws5_c01060{word-spacing:0.000000pt;}
.ws0_c01060{word-spacing:8.832000pt;}
._16_c01060{margin-left:-21.493333pt;}
._e_c01060{margin-left:-14.781333pt;}
._1b_c01060{margin-left:-11.880000pt;}
._14_c01060{margin-left:-9.629333pt;}
._13_c01060{margin-left:-8.341333pt;}
._11_c01060{margin-left:-6.296000pt;}
._1c_c01060{margin-left:-4.626667pt;}
._10_c01060{margin-left:-3.160000pt;}
._d_c01060{margin-left:-1.480000pt;}
._c_c01060{width:1.344000pt;}
._4_c01060{width:2.624000pt;}
._15_c01060{width:3.586667pt;}
._2_c01060{width:4.480000pt;}
._3_c01060{width:6.080000pt;}
._7_c01060{width:7.640000pt;}
._6_c01060{width:8.736000pt;}
._a_c01060{width:9.800000pt;}
._9_c01060{width:10.752000pt;}
._8_c01060{width:11.760000pt;}
._12_c01060{width:14.552000pt;}
._f_c01060{width:15.848000pt;}
._17_c01060{width:16.848000pt;}
._b_c01060{width:18.144000pt;}
._1d_c01060{width:20.010667pt;}
._19_c01060{width:23.256000pt;}
._21_c01060{width:27.048000pt;}
._20_c01060{width:28.560000pt;}
._0_c01060{width:42.368000pt;}
._1_c01060{width:48.448000pt;}
._18_c01060{width:82.288000pt;}
._1a_c01060{width:170.637333pt;}
._1e_c01060{width:199.725333pt;}
._1f_c01060{width:240.181333pt;}
._22_c01060{width:277.424000pt;}
._5_c01060{width:302.464000pt;}
.fs6_c01060{font-size:42.666667pt;}
.fs1_c01060{font-size:56.000000pt;}
.fs3_c01060{font-size:61.333333pt;}
.fs0_c01060{font-size:64.000000pt;}
.fs5_c01060{font-size:72.000000pt;}
.fs2_c01060{font-size:74.666667pt;}
.fs4_c01060{font-size:186.666667pt;}
.y0_c01060{bottom:0.000000pt;}
.y1f_c01060{bottom:2.760000pt;}
.y1e_c01060{bottom:6.425217pt;}
.y1d_c01060{bottom:29.440000pt;}
.y1c_c01060{bottom:53.040000pt;}
.y1b_c01060{bottom:77.706667pt;}
.y1a_c01060{bottom:99.573333pt;}
.y19_c01060{bottom:121.440000pt;}
.y18_c01060{bottom:142.106667pt;}
.y17_c01060{bottom:166.240000pt;}
.y16_c01060{bottom:188.906667pt;}
.y15_c01060{bottom:210.240000pt;}
.y14_c01060{bottom:232.506667pt;}
.y13_c01060{bottom:254.106667pt;}
.y12_c01060{bottom:275.440000pt;}
.y11_c01060{bottom:298.240000pt;}
.y10_c01060{bottom:319.173333pt;}
.yf_c01060{bottom:341.440000pt;}
.ye_c01060{bottom:361.706667pt;}
.yd_c01060{bottom:384.240000pt;}
.yb_c01060{bottom:402.773333pt;}
.yc_c01060{bottom:406.506667pt;}
.ya_c01060{bottom:451.706667pt;}
.y9_c01060{bottom:472.773333pt;}
.y8_c01060{bottom:494.906667pt;}
.y7_c01060{bottom:516.506667pt;}
.y6_c01060{bottom:539.040000pt;}
.y5_c01060{bottom:560.106667pt;}
.y4_c01060{bottom:581.973333pt;}
.y3_c01060{bottom:603.840000pt;}
.y2_c01060{bottom:626.906667pt;}
.y1_c01060{bottom:647.973333pt;}
.h9_c01060{height:11.733399pt;}
.ha_c01060{height:38.937500pt;}
.h3_c01060{height:70.902344pt;}
.h4_c01060{height:73.281250pt;}
.h5_c01060{height:77.654948pt;}
.h2_c01060{height:81.031250pt;}
.h7_c01060{height:84.269531pt;}
.h8_c01060{height:91.160156pt;}
.h6_c01060{height:199.173333pt;}
.h1_c01060{height:698.000000pt;}
.h0_c01060{height:698.133333pt;}
.w2_c01060{width:93.222667pt;}
.w0_c01060{width:472.333333pt;}
.w1_c01060{width:472.666667pt;}
.x0_c01060{left:0.000000pt;}
.x7_c01060{left:23.733333pt;}
.x4_c01060{left:27.333333pt;}
.x3_c01060{left:28.400000pt;}
.x2_c01060{left:29.600000pt;}
.x5_c01060{left:31.200000pt;}
.x6_c01060{left:38.133333pt;}
.x1_c01060{left:132.000000pt;}
.x9_c01060{left:193.334880pt;}
.x8_c01060{left:234.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e7ec9af2a8b231708c13bc2c.woff2')format("woff");}.ff1_c01061{font-family:ff1_c01061;line-height:1.568848;font-style:normal;font-weight:normal;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_3482c4ded10a72d2510b93b9.woff2')format("woff");}.ff2_c01061{font-family:ff2_c01061;line-height:1.575000;font-style:normal;font-weight:normal;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_a4e215fbd66fc9cb3c9ae626.woff2')format("woff");}.ff3_c01061{font-family:ff3_c01061;line-height:1.284668;font-style:normal;font-weight:normal;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_342d7cc126b4699e5520b23d.woff2')format("woff");}.ff4_c01061{font-family:ff4_c01061;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01061;src:url('chunks/assets/font_c264e1299077fa0d76019ddc.woff2')format("woff");}.ff5_c01061{font-family:ff5_c01061;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01061;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01061{font-family:ff6_c01061;line-height:1.219238;font-style: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;}
.ls1_c01061{letter-spacing:-9.000000px;}
.ls0_c01061{letter-spacing:0.000000px;}
.ls2_c01061{letter-spacing:6.000000px;}
.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;}
}
.ws3_c01061{word-spacing:-33.192000px;}
.ws0_c01061{word-spacing:-21.051000px;}
.ws2_c01061{word-spacing:-17.352000px;}
.ws1_c01061{word-spacing:-6.036000px;}
.ws4_c01061{word-spacing:0.000000px;}
._f_c01061{margin-left:-9.720000px;}
._b_c01061{margin-left:-7.920000px;}
._a_c01061{margin-left:-5.400000px;}
._2_c01061{margin-left:-3.528000px;}
._6_c01061{margin-left:-2.472000px;}
._5_c01061{margin-left:-1.152000px;}
._3_c01061{width:1.656000px;}
._7_c01061{width:2.664000px;}
._4_c01061{width:3.744000px;}
._0_c01061{width:5.688000px;}
._1_c01061{width:6.696000px;}
._c_c01061{width:7.776000px;}
._9_c01061{width:8.784000px;}
._8_c01061{width:9.792000px;}
._13_c01061{width:11.304000px;}
._11_c01061{width:12.744000px;}
._12_c01061{width:13.860000px;}
._d_c01061{width:15.936000px;}
._14_c01061{width:19.116000px;}
._17_c01061{width:23.112000px;}
._16_c01061{width:32.904000px;}
._18_c01061{width:34.680000px;}
._e_c01061{width:39.372000px;}
._15_c01061{width:116.793000px;}
._10_c01061{width:281.628000px;}
.fc2_c01061{color:transparent;}
.fc1_c01061{color:rgb(128,128,128);}
.fc0_c01061{color:rgb(0,0,0);}
.fs4_c01061{font-size:24.000000px;}
.fs2_c01061{font-size:36.000000px;}
.fs5_c01061{font-size:48.000000px;}
.fs1_c01061{font-size:63.000000px;}
.fs0_c01061{font-size:72.000000px;}
.fs3_c01061{font-size:75.000000px;}
.y0_c01061{bottom:0.000000px;}
.y1d_c01061{bottom:3.105000px;}
.y1c_c01061{bottom:7.228371px;}
.y1b_c01061{bottom:35.565000px;}
.y1a_c01061{bottom:57.015000px;}
.y19_c01061{bottom:80.115000px;}
.y18_c01061{bottom:105.315000px;}
.y17_c01061{bottom:133.365000px;}
.y16_c01061{bottom:154.965000px;}
.y15_c01061{bottom:179.565000px;}
.y14_c01061{bottom:204.165000px;}
.y13_c01061{bottom:230.265000px;}
.y12_c01061{bottom:255.615000px;}
.y11_c01061{bottom:282.465000px;}
.y10_c01061{bottom:306.765000px;}
.yf_c01061{bottom:328.815000px;}
.ye_c01061{bottom:379.065000px;}
.yd_c01061{bottom:402.615000px;}
.yc_c01061{bottom:424.965000px;}
.yb_c01061{bottom:454.665000px;}
.ya_c01061{bottom:471.615000px;}
.y9_c01061{bottom:497.565000px;}
.y8_c01061{bottom:523.215000px;}
.y7_c01061{bottom:547.065000px;}
.y6_c01061{bottom:572.115000px;}
.y5_c01061{bottom:597.465000px;}
.y4_c01061{bottom:622.065000px;}
.y3_c01061{bottom:647.115000px;}
.y2_c01061{bottom:672.315000px;}
.y1_c01061{bottom:696.315000px;}
.h6_c01061{height:13.200074px;}
.h3_c01061{height:39.024000px;}
.h7_c01061{height:43.804688px;}
.h4_c01061{height:73.608398px;}
.h5_c01061{height:79.765137px;}
.h2_c01061{height:91.160156px;}
.h0_c01061{height:785.175000px;}
.h1_c01061{height:785.250000px;}
.w2_c01061{width:104.875500px;}
.w1_c01061{width:493.500000px;}
.w0_c01061{width:493.575000px;}
.x0_c01061{left:0.000000px;}
.x1_c01061{left:79.950000px;}
.x2_c01061{left:81.000000px;}
.x3_c01061{left:82.350000px;}
.x5_c01061{left:83.400000px;}
.x6_c01061{left:84.450000px;}
.x8_c01061{left:85.500000px;}
.x9_c01061{left:87.150000px;}
.xa_c01061{left:88.200000px;}
.x4_c01061{left:151.200000px;}
.xc_c01061{left:198.601730px;}
.x7_c01061{left:371.250000px;}
.xb_c01061{left:456.000000px;}
@media print{
.v0_c01061{vertical-align:0.000000pt;}
.ls1_c01061{letter-spacing:-8.000000pt;}
.ls0_c01061{letter-spacing:0.000000pt;}
.ls2_c01061{letter-spacing:5.333333pt;}
.ws3_c01061{word-spacing:-29.504000pt;}
.ws0_c01061{word-spacing:-18.712000pt;}
.ws2_c01061{word-spacing:-15.424000pt;}
.ws1_c01061{word-spacing:-5.365333pt;}
.ws4_c01061{word-spacing:0.000000pt;}
._f_c01061{margin-left:-8.640000pt;}
._b_c01061{margin-left:-7.040000pt;}
._a_c01061{margin-left:-4.800000pt;}
._2_c01061{margin-left:-3.136000pt;}
._6_c01061{margin-left:-2.197333pt;}
._5_c01061{margin-left:-1.024000pt;}
._3_c01061{width:1.472000pt;}
._7_c01061{width:2.368000pt;}
._4_c01061{width:3.328000pt;}
._0_c01061{width:5.056000pt;}
._1_c01061{width:5.952000pt;}
._c_c01061{width:6.912000pt;}
._9_c01061{width:7.808000pt;}
._8_c01061{width:8.704000pt;}
._13_c01061{width:10.048000pt;}
._11_c01061{width:11.328000pt;}
._12_c01061{width:12.320000pt;}
._d_c01061{width:14.165333pt;}
._14_c01061{width:16.992000pt;}
._17_c01061{width:20.544000pt;}
._16_c01061{width:29.248000pt;}
._18_c01061{width:30.826667pt;}
._e_c01061{width:34.997333pt;}
._15_c01061{width:103.816000pt;}
._10_c01061{width:250.336000pt;}
.fs4_c01061{font-size:21.333333pt;}
.fs2_c01061{font-size:32.000000pt;}
.fs5_c01061{font-size:42.666667pt;}
.fs1_c01061{font-size:56.000000pt;}
.fs0_c01061{font-size:64.000000pt;}
.fs3_c01061{font-size:66.666667pt;}
.y0_c01061{bottom:0.000000pt;}
.y1d_c01061{bottom:2.760000pt;}
.y1c_c01061{bottom:6.425219pt;}
.y1b_c01061{bottom:31.613333pt;}
.y1a_c01061{bottom:50.680000pt;}
.y19_c01061{bottom:71.213333pt;}
.y18_c01061{bottom:93.613333pt;}
.y17_c01061{bottom:118.546667pt;}
.y16_c01061{bottom:137.746667pt;}
.y15_c01061{bottom:159.613333pt;}
.y14_c01061{bottom:181.480000pt;}
.y13_c01061{bottom:204.680000pt;}
.y12_c01061{bottom:227.213333pt;}
.y11_c01061{bottom:251.080000pt;}
.y10_c01061{bottom:272.680000pt;}
.yf_c01061{bottom:292.280000pt;}
.ye_c01061{bottom:336.946667pt;}
.yd_c01061{bottom:357.880000pt;}
.yc_c01061{bottom:377.746667pt;}
.yb_c01061{bottom:404.146667pt;}
.ya_c01061{bottom:419.213333pt;}
.y9_c01061{bottom:442.280000pt;}
.y8_c01061{bottom:465.080000pt;}
.y7_c01061{bottom:486.280000pt;}
.y6_c01061{bottom:508.546667pt;}
.y5_c01061{bottom:531.080000pt;}
.y4_c01061{bottom:552.946667pt;}
.y3_c01061{bottom:575.213333pt;}
.y2_c01061{bottom:597.613333pt;}
.y1_c01061{bottom:618.946667pt;}
.h6_c01061{height:11.733399pt;}
.h3_c01061{height:34.688000pt;}
.h7_c01061{height:38.937500pt;}
.h4_c01061{height:65.429688pt;}
.h5_c01061{height:70.902344pt;}
.h2_c01061{height:81.031250pt;}
.h0_c01061{height:697.933333pt;}
.h1_c01061{height:698.000000pt;}
.w2_c01061{width:93.222667pt;}
.w1_c01061{width:438.666667pt;}
.w0_c01061{width:438.733333pt;}
.x0_c01061{left:0.000000pt;}
.x1_c01061{left:71.066667pt;}
.x2_c01061{left:72.000000pt;}
.x3_c01061{left:73.200000pt;}
.x5_c01061{left:74.133333pt;}
.x6_c01061{left:75.066667pt;}
.x8_c01061{left:76.000000pt;}
.x9_c01061{left:77.466667pt;}
.xa_c01061{left:78.400000pt;}
.x4_c01061{left:134.400000pt;}
.xc_c01061{left:176.534871pt;}
.x7_c01061{left:330.000000pt;}
.xb_c01061{left:405.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_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_08fa5cf5976f15d968047904.woff2')format("woff");}.ff1_c01062{font-family:ff1_c01062;line-height:1.480469;font-style:normal;font-weight:normal;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_d3ac3a62e4515dd07e430984.woff2')format("woff");}.ff2_c01062{font-family:ff2_c01062;line-height:1.568848;font-style:normal;font-weight:normal;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_a242709453b8a7123945f7b4.woff2')format("woff");}.ff3_c01062{font-family:ff3_c01062;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01062;src:url('chunks/assets/font_2b6264997ab41eaa1fb8a5ea.woff2')format("woff");}.ff4_c01062{font-family:ff4_c01062;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01062;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01062{font-family:ff5_c01062;line-height:1.219238;font-style: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:-9.000000px;}
.ls3_c01062{letter-spacing:-3.000000px;}
.ls0_c01062{letter-spacing:0.000000px;}
.ls2_c01062{letter-spacing:3.000000px;}
.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:-21.051000px;}
.ws2_c01062{word-spacing:-17.250000px;}
.ws1_c01062{word-spacing:-16.629000px;}
.ws3_c01062{word-spacing:-13.629000px;}
.ws4_c01062{word-spacing:0.000000px;}
._18_c01062{margin-left:-25.485000px;}
._19_c01062{margin-left:-15.921000px;}
._1a_c01062{margin-left:-12.309000px;}
._15_c01062{margin-left:-11.103000px;}
._12_c01062{margin-left:-9.927000px;}
._b_c01062{margin-left:-8.781000px;}
._c_c01062{margin-left:-6.984000px;}
._11_c01062{margin-left:-5.253000px;}
._13_c01062{margin-left:-3.954000px;}
._a_c01062{margin-left:-2.811000px;}
._9_c01062{margin-left:-1.080000px;}
._d_c01062{width:1.080000px;}
._5_c01062{width:2.232000px;}
._3_c01062{width:3.240000px;}
._2_c01062{width:4.248000px;}
._1_c01062{width:5.328000px;}
._4_c01062{width:6.696000px;}
._0_c01062{width:7.848000px;}
._6_c01062{width:9.648000px;}
._14_c01062{width:10.872000px;}
._e_c01062{width:12.384000px;}
._17_c01062{width:13.536000px;}
._16_c01062{width:14.685000px;}
._8_c01062{width:15.912000px;}
._10_c01062{width:19.872000px;}
._1b_c01062{width:21.312000px;}
._f_c01062{width:26.424000px;}
._1c_c01062{width:34.488000px;}
._7_c01062{width:370.152000px;}
._1d_c01062{width:429.192000px;}
.fc2_c01062{color:transparent;}
.fc1_c01062{color:rgb(128,128,128);}
.fc0_c01062{color:rgb(0,0,0);}
.fs4_c01062{font-size:48.000000px;}
.fs2_c01062{font-size:60.000000px;}
.fs1_c01062{font-size:63.000000px;}
.fs3_c01062{font-size:69.000000px;}
.fs0_c01062{font-size:72.000000px;}
.y0_c01062{bottom:0.000000px;}
.y1f_c01062{bottom:3.105000px;}
.y1e_c01062{bottom:7.228369px;}
.y1d_c01062{bottom:38.370000px;}
.y1c_c01062{bottom:62.820000px;}
.y1b_c01062{bottom:89.070000px;}
.y1a_c01062{bottom:112.770000px;}
.y19_c01062{bottom:139.620000px;}
.y18_c01062{bottom:165.270000px;}
.y17_c01062{bottom:188.670000px;}
.y16_c01062{bottom:212.520000px;}
.y15_c01062{bottom:237.570000px;}
.y14_c01062{bottom:263.970000px;}
.y13_c01062{bottom:288.270000px;}
.y12_c01062{bottom:313.170000px;}
.y11_c01062{bottom:336.720000px;}
.y10_c01062{bottom:360.720000px;}
.yf_c01062{bottom:385.470000px;}
.ye_c01062{bottom:409.320000px;}
.yd_c01062{bottom:434.370000px;}
.yc_c01062{bottom:459.270000px;}
.yb_c01062{bottom:482.670000px;}
.ya_c01062{bottom:507.570000px;}
.y9_c01062{bottom:530.820000px;}
.y8_c01062{bottom:556.470000px;}
.y7_c01062{bottom:579.720000px;}
.y6_c01062{bottom:604.470000px;}
.y5_c01062{bottom:628.320000px;}
.y4_c01062{bottom:653.970000px;}
.y3_c01062{bottom:678.270000px;}
.y2_c01062{bottom:703.320000px;}
.y1_c01062{bottom:728.220000px;}
.h5_c01062{height:13.200073px;}
.h6_c01062{height:43.804688px;}
.h2_c01062{height:84.269531px;}
.h4_c01062{height:87.361816px;}
.h3_c01062{height:91.160156px;}
.h0_c01062{height:782.700000px;}
.h1_c01062{height:783.000000px;}
.w2_c01062{width:104.875500px;}
.w0_c01062{width:538.125000px;}
.w1_c01062{width:538.500000px;}
.x0_c01062{left:0.000000px;}
.x2_c01062{left:28.800000px;}
.x3_c01062{left:30.450000px;}
.x4_c01062{left:31.500000px;}
.x5_c01062{left:32.700000px;}
.x6_c01062{left:33.750000px;}
.x7_c01062{left:35.100000px;}
.x8_c01062{left:36.750000px;}
.xa_c01062{left:121.950000px;}
.x1_c01062{left:136.200000px;}
.x9_c01062{left:153.150000px;}
.xc_c01062{left:220.876740px;}
.xb_c01062{left:247.350000px;}
@media print{
.v0_c01062{vertical-align:0.000000pt;}
.ls1_c01062{letter-spacing:-8.000000pt;}
.ls3_c01062{letter-spacing:-2.666667pt;}
.ls0_c01062{letter-spacing:0.000000pt;}
.ls2_c01062{letter-spacing:2.666667pt;}
.ws0_c01062{word-spacing:-18.712000pt;}
.ws2_c01062{word-spacing:-15.333333pt;}
.ws1_c01062{word-spacing:-14.781333pt;}
.ws3_c01062{word-spacing:-12.114667pt;}
.ws4_c01062{word-spacing:0.000000pt;}
._18_c01062{margin-left:-22.653333pt;}
._19_c01062{margin-left:-14.152000pt;}
._1a_c01062{margin-left:-10.941333pt;}
._15_c01062{margin-left:-9.869333pt;}
._12_c01062{margin-left:-8.824000pt;}
._b_c01062{margin-left:-7.805333pt;}
._c_c01062{margin-left:-6.208000pt;}
._11_c01062{margin-left:-4.669333pt;}
._13_c01062{margin-left:-3.514667pt;}
._a_c01062{margin-left:-2.498667pt;}
._9_c01062{margin-left:-0.960000pt;}
._d_c01062{width:0.960000pt;}
._5_c01062{width:1.984000pt;}
._3_c01062{width:2.880000pt;}
._2_c01062{width:3.776000pt;}
._1_c01062{width:4.736000pt;}
._4_c01062{width:5.952000pt;}
._0_c01062{width:6.976000pt;}
._6_c01062{width:8.576000pt;}
._14_c01062{width:9.664000pt;}
._e_c01062{width:11.008000pt;}
._17_c01062{width:12.032000pt;}
._16_c01062{width:13.053333pt;}
._8_c01062{width:14.144000pt;}
._10_c01062{width:17.664000pt;}
._1b_c01062{width:18.944000pt;}
._f_c01062{width:23.488000pt;}
._1c_c01062{width:30.656000pt;}
._7_c01062{width:329.024000pt;}
._1d_c01062{width:381.504000pt;}
.fs4_c01062{font-size:42.666667pt;}
.fs2_c01062{font-size:53.333333pt;}
.fs1_c01062{font-size:56.000000pt;}
.fs3_c01062{font-size:61.333333pt;}
.fs0_c01062{font-size:64.000000pt;}
.y0_c01062{bottom:0.000000pt;}
.y1f_c01062{bottom:2.760000pt;}
.y1e_c01062{bottom:6.425217pt;}
.y1d_c01062{bottom:34.106667pt;}
.y1c_c01062{bottom:55.840000pt;}
.y1b_c01062{bottom:79.173333pt;}
.y1a_c01062{bottom:100.240000pt;}
.y19_c01062{bottom:124.106667pt;}
.y18_c01062{bottom:146.906667pt;}
.y17_c01062{bottom:167.706667pt;}
.y16_c01062{bottom:188.906667pt;}
.y15_c01062{bottom:211.173333pt;}
.y14_c01062{bottom:234.640000pt;}
.y13_c01062{bottom:256.240000pt;}
.y12_c01062{bottom:278.373333pt;}
.y11_c01062{bottom:299.306667pt;}
.y10_c01062{bottom:320.640000pt;}
.yf_c01062{bottom:342.640000pt;}
.ye_c01062{bottom:363.840000pt;}
.yd_c01062{bottom:386.106667pt;}
.yc_c01062{bottom:408.240000pt;}
.yb_c01062{bottom:429.040000pt;}
.ya_c01062{bottom:451.173333pt;}
.y9_c01062{bottom:471.840000pt;}
.y8_c01062{bottom:494.640000pt;}
.y7_c01062{bottom:515.306667pt;}
.y6_c01062{bottom:537.306667pt;}
.y5_c01062{bottom:558.506667pt;}
.y4_c01062{bottom:581.306667pt;}
.y3_c01062{bottom:602.906667pt;}
.y2_c01062{bottom:625.173333pt;}
.y1_c01062{bottom:647.306667pt;}
.h5_c01062{height:11.733399pt;}
.h6_c01062{height:38.937500pt;}
.h2_c01062{height:74.906250pt;}
.h4_c01062{height:77.654948pt;}
.h3_c01062{height:81.031250pt;}
.h0_c01062{height:695.733333pt;}
.h1_c01062{height:696.000000pt;}
.w2_c01062{width:93.222667pt;}
.w0_c01062{width:478.333333pt;}
.w1_c01062{width:478.666667pt;}
.x0_c01062{left:0.000000pt;}
.x2_c01062{left:25.600000pt;}
.x3_c01062{left:27.066667pt;}
.x4_c01062{left:28.000000pt;}
.x5_c01062{left:29.066667pt;}
.x6_c01062{left:30.000000pt;}
.x7_c01062{left:31.200000pt;}
.x8_c01062{left:32.666667pt;}
.xa_c01062{left:108.400000pt;}
.x1_c01062{left:121.066667pt;}
.x9_c01062{left:136.133333pt;}
.xc_c01062{left:196.334880pt;}
.xb_c01062{left:219.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a6fb498882210bd8595c5078.woff2')format("woff");}.ff1_c01063{font-family:ff1_c01063;line-height:1.480469;font-style:normal;font-weight:normal;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_b5852e5c9a5321839501b13a.woff2')format("woff");}.ff2_c01063{font-family:ff2_c01063;line-height:1.568848;font-style:normal;font-weight:normal;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_8639ba95b4f53c6878e0afba.woff2')format("woff");}.ff3_c01063{font-family:ff3_c01063;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01063;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01063{font-family:ff4_c01063;line-height:1.219238;font-style: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);}
.v0_c01063{vertical-align:0.000000px;}
.ls1_c01063{letter-spacing:-3.000000px;}
.ls0_c01063{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01063{word-spacing:-34.341000px;}
.ws0_c01063{word-spacing:-33.192000px;}
.ws2_c01063{word-spacing:-17.352000px;}
.ws3_c01063{word-spacing:0.000000px;}
._12_c01063{margin-left:-12.222000px;}
._e_c01063{margin-left:-9.378000px;}
._c_c01063{margin-left:-5.535000px;}
._7_c01063{margin-left:-4.203000px;}
._a_c01063{margin-left:-3.024000px;}
._9_c01063{margin-left:-1.197000px;}
._b_c01063{width:1.008000px;}
._4_c01063{width:2.844000px;}
._1_c01063{width:4.536000px;}
._f_c01063{width:5.544000px;}
._5_c01063{width:6.561000px;}
._2_c01063{width:8.064000px;}
._0_c01063{width:10.008000px;}
._6_c01063{width:11.853000px;}
._3_c01063{width:13.032000px;}
._d_c01063{width:14.076000px;}
._11_c01063{width:17.199000px;}
._10_c01063{width:18.702000px;}
._8_c01063{width:29.655000px;}
._13_c01063{width:1378.278000px;}
.fc2_c01063{color:transparent;}
.fc1_c01063{color:rgb(128,128,128);}
.fc0_c01063{color:rgb(0,0,0);}
.fs4_c01063{font-size:48.000000px;}
.fs1_c01063{font-size:63.000000px;}
.fs0_c01063{font-size:72.000000px;}
.fs2_c01063{font-size:81.000000px;}
.fs3_c01063{font-size:93.000000px;}
.y0_c01063{bottom:0.000000px;}
.y1f_c01063{bottom:3.105000px;}
.y1e_c01063{bottom:7.228363px;}
.y1d_c01063{bottom:33.450000px;}
.y1c_c01063{bottom:50.250000px;}
.y1b_c01063{bottom:76.950000px;}
.y1a_c01063{bottom:101.850000px;}
.y19_c01063{bottom:127.350000px;}
.y18_c01063{bottom:152.850000px;}
.y17_c01063{bottom:177.900000px;}
.y16_c01063{bottom:201.900000px;}
.y15_c01063{bottom:228.150000px;}
.y14_c01063{bottom:252.900000px;}
.y13_c01063{bottom:277.500000px;}
.y12_c01063{bottom:301.350000px;}
.y11_c01063{bottom:326.400000px;}
.y10_c01063{bottom:350.700000px;}
.yf_c01063{bottom:374.850000px;}
.ye_c01063{bottom:398.850000px;}
.yd_c01063{bottom:423.000000px;}
.yc_c01063{bottom:447.150000px;}
.yb_c01063{bottom:470.850000px;}
.ya_c01063{bottom:495.900000px;}
.y9_c01063{bottom:520.350000px;}
.y8_c01063{bottom:545.100000px;}
.y7_c01063{bottom:568.950000px;}
.y6_c01063{bottom:594.300000px;}
.y5_c01063{bottom:618.600000px;}
.y4_c01063{bottom:643.200000px;}
.y3_c01063{bottom:667.950000px;}
.y2_c01063{bottom:692.250000px;}
.y1_c01063{bottom:717.750000px;}
.h7_c01063{height:13.200074px;}
.h8_c01063{height:43.804688px;}
.h3_c01063{height:79.765137px;}
.h2_c01063{height:84.269531px;}
.h4_c01063{height:91.160156px;}
.h6_c01063{height:93.726562px;}
.h5_c01063{height:94.803223px;}
.h0_c01063{height:770.850000px;}
.h1_c01063{height:771.000000px;}
.w2_c01063{width:104.875500px;}
.w0_c01063{width:470.100000px;}
.w1_c01063{width:470.250000px;}
.x0_c01063{left:0.000000px;}
.x7_c01063{left:52.350000px;}
.x6_c01063{left:53.550000px;}
.x5_c01063{left:55.050000px;}
.x4_c01063{left:56.400000px;}
.x3_c01063{left:57.750000px;}
.x2_c01063{left:59.400000px;}
.x1_c01063{left:186.000000px;}
@media print{
.v0_c01063{vertical-align:0.000000pt;}
.ls1_c01063{letter-spacing:-2.666667pt;}
.ls0_c01063{letter-spacing:0.000000pt;}
.ws1_c01063{word-spacing:-30.525333pt;}
.ws0_c01063{word-spacing:-29.504000pt;}
.ws2_c01063{word-spacing:-15.424000pt;}
.ws3_c01063{word-spacing:0.000000pt;}
._12_c01063{margin-left:-10.864000pt;}
._e_c01063{margin-left:-8.336000pt;}
._c_c01063{margin-left:-4.920000pt;}
._7_c01063{margin-left:-3.736000pt;}
._a_c01063{margin-left:-2.688000pt;}
._9_c01063{margin-left:-1.064000pt;}
._b_c01063{width:0.896000pt;}
._4_c01063{width:2.528000pt;}
._1_c01063{width:4.032000pt;}
._f_c01063{width:4.928000pt;}
._5_c01063{width:5.832000pt;}
._2_c01063{width:7.168000pt;}
._0_c01063{width:8.896000pt;}
._6_c01063{width:10.536000pt;}
._3_c01063{width:11.584000pt;}
._d_c01063{width:12.512000pt;}
._11_c01063{width:15.288000pt;}
._10_c01063{width:16.624000pt;}
._8_c01063{width:26.360000pt;}
._13_c01063{width:1225.136000pt;}
.fs4_c01063{font-size:42.666667pt;}
.fs1_c01063{font-size:56.000000pt;}
.fs0_c01063{font-size:64.000000pt;}
.fs2_c01063{font-size:72.000000pt;}
.fs3_c01063{font-size:82.666667pt;}
.y0_c01063{bottom:0.000000pt;}
.y1f_c01063{bottom:2.760000pt;}
.y1e_c01063{bottom:6.425212pt;}
.y1d_c01063{bottom:29.733333pt;}
.y1c_c01063{bottom:44.666667pt;}
.y1b_c01063{bottom:68.400000pt;}
.y1a_c01063{bottom:90.533333pt;}
.y19_c01063{bottom:113.200000pt;}
.y18_c01063{bottom:135.866667pt;}
.y17_c01063{bottom:158.133333pt;}
.y16_c01063{bottom:179.466667pt;}
.y15_c01063{bottom:202.800000pt;}
.y14_c01063{bottom:224.800000pt;}
.y13_c01063{bottom:246.666667pt;}
.y12_c01063{bottom:267.866667pt;}
.y11_c01063{bottom:290.133333pt;}
.y10_c01063{bottom:311.733333pt;}
.yf_c01063{bottom:333.200000pt;}
.ye_c01063{bottom:354.533333pt;}
.yd_c01063{bottom:376.000000pt;}
.yc_c01063{bottom:397.466667pt;}
.yb_c01063{bottom:418.533333pt;}
.ya_c01063{bottom:440.800000pt;}
.y9_c01063{bottom:462.533333pt;}
.y8_c01063{bottom:484.533333pt;}
.y7_c01063{bottom:505.733333pt;}
.y6_c01063{bottom:528.266667pt;}
.y5_c01063{bottom:549.866667pt;}
.y4_c01063{bottom:571.733333pt;}
.y3_c01063{bottom:593.733333pt;}
.y2_c01063{bottom:615.333333pt;}
.y1_c01063{bottom:638.000000pt;}
.h7_c01063{height:11.733399pt;}
.h8_c01063{height:38.937500pt;}
.h3_c01063{height:70.902344pt;}
.h2_c01063{height:74.906250pt;}
.h4_c01063{height:81.031250pt;}
.h6_c01063{height:83.312500pt;}
.h5_c01063{height:84.269531pt;}
.h0_c01063{height:685.200000pt;}
.h1_c01063{height:685.333333pt;}
.w2_c01063{width:93.222667pt;}
.w0_c01063{width:417.866667pt;}
.w1_c01063{width:418.000000pt;}
.x0_c01063{left:0.000000pt;}
.x7_c01063{left:46.533333pt;}
.x6_c01063{left:47.600000pt;}
.x5_c01063{left:48.933333pt;}
.x4_c01063{left:50.133333pt;}
.x3_c01063{left:51.333333pt;}
.x2_c01063{left:52.800000pt;}
.x1_c01063{left:165.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_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_a7d81fdf4647ced0af5679c9.woff2')format("woff");}.ff1_c01064{font-family:ff1_c01064;line-height:1.568848;font-style:normal;font-weight:normal;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_68d07a0256eb84f20345b733.woff2')format("woff");}.ff2_c01064{font-family:ff2_c01064;line-height:1.480469;font-style:normal;font-weight:normal;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_520ab8582e72c44db43f5958.woff2')format("woff");}.ff3_c01064{font-family:ff3_c01064;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01064{font-family:ff4_c01064;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01064{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01064{vertical-align:0.000000px;}
.ls3_c01064{letter-spacing:-9.000000px;}
.ls1_c01064{letter-spacing:-6.000000px;}
.ls2_c01064{letter-spacing:0.000000px;}
.ls0_c01064{letter-spacing:3.000000px;}
.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;}
}
.ws2_c01064{word-spacing:-21.051000px;}
.ws1_c01064{word-spacing:-17.352000px;}
.ws0_c01064{word-spacing:-0.288000px;}
.ws3_c01064{word-spacing:0.000000px;}
._13_c01064{margin-left:-9.924000px;}
._3_c01064{margin-left:-6.180000px;}
._f_c01064{margin-left:-4.848000px;}
._12_c01064{margin-left:-2.904000px;}
._11_c01064{margin-left:-1.080000px;}
._0_c01064{width:2.028000px;}
._2_c01064{width:3.744000px;}
._1_c01064{width:5.460000px;}
._6_c01064{width:6.840000px;}
._d_c01064{width:8.016000px;}
._4_c01064{width:9.600000px;}
._a_c01064{width:10.800000px;}
._9_c01064{width:12.180000px;}
._14_c01064{width:13.452000px;}
._8_c01064{width:14.580000px;}
._15_c01064{width:15.624000px;}
._10_c01064{width:19.296000px;}
._e_c01064{width:20.736000px;}
._17_c01064{width:22.152000px;}
._16_c01064{width:23.892000px;}
._5_c01064{width:25.020000px;}
._7_c01064{width:26.220000px;}
._b_c01064{width:28.380000px;}
._c_c01064{width:310.812000px;}
.fc2_c01064{color:transparent;}
.fc1_c01064{color:rgb(128,128,128);}
.fc0_c01064{color:rgb(0,0,0);}
.fs5_c01064{font-size:48.000000px;}
.fs1_c01064{font-size:60.000000px;}
.fs4_c01064{font-size:63.000000px;}
.fs2_c01064{font-size:72.000000px;}
.fs0_c01064{font-size:78.000000px;}
.fs3_c01064{font-size:87.000000px;}
.y0_c01064{bottom:0.000000px;}
.y1e_c01064{bottom:3.105000px;}
.y1d_c01064{bottom:7.228369px;}
.y1c_c01064{bottom:86.070000px;}
.y1b_c01064{bottom:110.670000px;}
.y1a_c01064{bottom:137.370000px;}
.y19_c01064{bottom:162.570000px;}
.y18_c01064{bottom:186.570000px;}
.y17_c01064{bottom:211.920000px;}
.y16_c01064{bottom:236.520000px;}
.y15_c01064{bottom:259.770000px;}
.y14_c01064{bottom:285.870000px;}
.y13_c01064{bottom:310.770000px;}
.y12_c01064{bottom:334.020000px;}
.y11_c01064{bottom:357.720000px;}
.y10_c01064{bottom:382.320000px;}
.yf_c01064{bottom:406.020000px;}
.ye_c01064{bottom:431.220000px;}
.yd_c01064{bottom:454.920000px;}
.yc_c01064{bottom:481.170000px;}
.yb_c01064{bottom:504.570000px;}
.ya_c01064{bottom:528.870000px;}
.y9_c01064{bottom:553.470000px;}
.y8_c01064{bottom:578.520000px;}
.y7_c01064{bottom:603.570000px;}
.y6_c01064{bottom:627.420000px;}
.y5_c01064{bottom:651.270000px;}
.y4_c01064{bottom:676.320000px;}
.y3_c01064{bottom:700.920000px;}
.y2_c01064{bottom:725.520000px;}
.y1_c01064{bottom:750.270000px;}
.h4_c01064{height:13.200073px;}
.h5_c01064{height:43.804688px;}
.h2_c01064{height:91.160156px;}
.h1_c01064{height:98.756836px;}
.h3_c01064{height:110.151855px;}
.h0_c01064{height:793.500000px;}
.w2_c01064{width:104.875500px;}
.w0_c01064{width:511.350000px;}
.w1_c01064{width:511.500000px;}
.x0_c01064{left:0.000000px;}
.x8_c01064{left:34.200000px;}
.x2_c01064{left:37.500000px;}
.x3_c01064{left:38.700000px;}
.x4_c01064{left:40.050000px;}
.x7_c01064{left:42.150000px;}
.x5_c01064{left:43.200000px;}
.x6_c01064{left:45.300000px;}
.x1_c01064{left:153.900000px;}
.x9_c01064{left:207.489258px;}
@media print{
.v0_c01064{vertical-align:0.000000pt;}
.ls3_c01064{letter-spacing:-8.000000pt;}
.ls1_c01064{letter-spacing:-5.333333pt;}
.ls2_c01064{letter-spacing:0.000000pt;}
.ls0_c01064{letter-spacing:2.666667pt;}
.ws2_c01064{word-spacing:-18.712000pt;}
.ws1_c01064{word-spacing:-15.424000pt;}
.ws0_c01064{word-spacing:-0.256000pt;}
.ws3_c01064{word-spacing:0.000000pt;}
._13_c01064{margin-left:-8.821333pt;}
._3_c01064{margin-left:-5.493333pt;}
._f_c01064{margin-left:-4.309333pt;}
._12_c01064{margin-left:-2.581333pt;}
._11_c01064{margin-left:-0.960000pt;}
._0_c01064{width:1.802667pt;}
._2_c01064{width:3.328000pt;}
._1_c01064{width:4.853333pt;}
._6_c01064{width:6.080000pt;}
._d_c01064{width:7.125333pt;}
._4_c01064{width:8.533333pt;}
._a_c01064{width:9.600000pt;}
._9_c01064{width:10.826667pt;}
._14_c01064{width:11.957333pt;}
._8_c01064{width:12.960000pt;}
._15_c01064{width:13.888000pt;}
._10_c01064{width:17.152000pt;}
._e_c01064{width:18.432000pt;}
._17_c01064{width:19.690667pt;}
._16_c01064{width:21.237333pt;}
._5_c01064{width:22.240000pt;}
._7_c01064{width:23.306667pt;}
._b_c01064{width:25.226667pt;}
._c_c01064{width:276.277333pt;}
.fs5_c01064{font-size:42.666667pt;}
.fs1_c01064{font-size:53.333333pt;}
.fs4_c01064{font-size:56.000000pt;}
.fs2_c01064{font-size:64.000000pt;}
.fs0_c01064{font-size:69.333333pt;}
.fs3_c01064{font-size:77.333333pt;}
.y0_c01064{bottom:0.000000pt;}
.y1e_c01064{bottom:2.760000pt;}
.y1d_c01064{bottom:6.425217pt;}
.y1c_c01064{bottom:76.506667pt;}
.y1b_c01064{bottom:98.373333pt;}
.y1a_c01064{bottom:122.106667pt;}
.y19_c01064{bottom:144.506667pt;}
.y18_c01064{bottom:165.840000pt;}
.y17_c01064{bottom:188.373333pt;}
.y16_c01064{bottom:210.240000pt;}
.y15_c01064{bottom:230.906667pt;}
.y14_c01064{bottom:254.106667pt;}
.y13_c01064{bottom:276.240000pt;}
.y12_c01064{bottom:296.906667pt;}
.y11_c01064{bottom:317.973333pt;}
.y10_c01064{bottom:339.840000pt;}
.yf_c01064{bottom:360.906667pt;}
.ye_c01064{bottom:383.306667pt;}
.yd_c01064{bottom:404.373333pt;}
.yc_c01064{bottom:427.706667pt;}
.yb_c01064{bottom:448.506667pt;}
.ya_c01064{bottom:470.106667pt;}
.y9_c01064{bottom:491.973333pt;}
.y8_c01064{bottom:514.240000pt;}
.y7_c01064{bottom:536.506667pt;}
.y6_c01064{bottom:557.706667pt;}
.y5_c01064{bottom:578.906667pt;}
.y4_c01064{bottom:601.173333pt;}
.y3_c01064{bottom:623.040000pt;}
.y2_c01064{bottom:644.906667pt;}
.y1_c01064{bottom:666.906667pt;}
.h4_c01064{height:11.733399pt;}
.h5_c01064{height:38.937500pt;}
.h2_c01064{height:81.031250pt;}
.h1_c01064{height:87.783854pt;}
.h3_c01064{height:97.912760pt;}
.h0_c01064{height:705.333333pt;}
.w2_c01064{width:93.222667pt;}
.w0_c01064{width:454.533333pt;}
.w1_c01064{width:454.666667pt;}
.x0_c01064{left:0.000000pt;}
.x8_c01064{left:30.400000pt;}
.x2_c01064{left:33.333333pt;}
.x3_c01064{left:34.400000pt;}
.x4_c01064{left:35.600000pt;}
.x7_c01064{left:37.466667pt;}
.x5_c01064{left:38.400000pt;}
.x6_c01064{left:40.266667pt;}
.x1_c01064{left:136.800000pt;}
.x9_c01064{left:184.434896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7eff950d61490ee9364bd065.woff2')format("woff");}.ff1_c01065{font-family:ff1_c01065;line-height:1.568848;font-style:normal;font-weight:normal;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_054b8ae3094fd8fd6b385bd9.woff2')format("woff");}.ff2_c01065{font-family:ff2_c01065;line-height:1.480469;font-style:normal;font-weight:normal;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_c72eae5d9d788b366bd8359d.woff2')format("woff");}.ff3_c01065{font-family:ff3_c01065;line-height:1.284668;font-style:normal;font-weight:normal;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_a845f73ec3ce9d99ffb12b57.woff2')format("woff");}.ff4_c01065{font-family:ff4_c01065;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01065;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01065{font-family:ff5_c01065;line-height:1.219238;font-style: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);}
.v1_c01065{vertical-align:-70.800000px;}
.v0_c01065{vertical-align:0.000000px;}
.ls2_c01065{letter-spacing:-3.000000px;}
.ls1_c01065{letter-spacing:0.000000px;}
.ls0_c01065{letter-spacing:1.728000px;}
.ls4_c01065{letter-spacing:3.000000px;}
.ls3_c01065{letter-spacing:6.000000px;}
.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;}
}
.ws1_c01065{word-spacing:-26.973000px;}
.ws0_c01065{word-spacing:-19.080000px;}
.ws2_c01065{word-spacing:0.000000px;}
._c_c01065{margin-left:-7.854000px;}
._a_c01065{margin-left:-6.828000px;}
._b_c01065{margin-left:-5.610000px;}
._10_c01065{margin-left:-4.551000px;}
._3_c01065{margin-left:-3.393000px;}
._4_c01065{margin-left:-2.262000px;}
._f_c01065{margin-left:-1.185000px;}
._2_c01065{width:1.827000px;}
._d_c01065{width:2.973000px;}
._0_c01065{width:4.350000px;}
._8_c01065{width:5.802000px;}
._6_c01065{width:7.488000px;}
._e_c01065{width:8.724000px;}
._7_c01065{width:9.864000px;}
._12_c01065{width:11.184000px;}
._13_c01065{width:12.435000px;}
._5_c01065{width:13.932000px;}
._9_c01065{width:15.528000px;}
._11_c01065{width:19.116000px;}
._15_c01065{width:20.901000px;}
._14_c01065{width:23.550000px;}
._16_c01065{width:31.158000px;}
._1_c01065{width:430.542000px;}
._17_c01065{width:498.672000px;}
.fc2_c01065{color:transparent;}
.fc1_c01065{color:rgb(128,128,128);}
.fc0_c01065{color:rgb(0,0,0);}
.fs5_c01065{font-size:48.000000px;}
.fs3_c01065{font-size:57.000000px;}
.fs2_c01065{font-size:66.000000px;}
.fs1_c01065{font-size:72.000000px;}
.fs4_c01065{font-size:81.000000px;}
.fs0_c01065{font-size:87.000000px;}
.y0_c01065{bottom:0.000000px;}
.y1e_c01065{bottom:3.105000px;}
.y1d_c01065{bottom:7.228363px;}
.y1c_c01065{bottom:63.900000px;}
.y1b_c01065{bottom:90.900000px;}
.y1a_c01065{bottom:114.750000px;}
.y19_c01065{bottom:140.850000px;}
.y18_c01065{bottom:165.750000px;}
.y17_c01065{bottom:190.650000px;}
.y16_c01065{bottom:217.050000px;}
.y15_c01065{bottom:240.600000px;}
.y14_c01065{bottom:265.350000px;}
.y13_c01065{bottom:289.350000px;}
.y12_c01065{bottom:314.550000px;}
.y11_c01065{bottom:338.850000px;}
.y10_c01065{bottom:362.550000px;}
.yf_c01065{bottom:386.850000px;}
.ye_c01065{bottom:411.450000px;}
.yd_c01065{bottom:435.150000px;}
.yc_c01065{bottom:458.250000px;}
.yb_c01065{bottom:483.000000px;}
.ya_c01065{bottom:508.050000px;}
.y9_c01065{bottom:532.950000px;}
.y8_c01065{bottom:556.950000px;}
.y7_c01065{bottom:582.300000px;}
.y6_c01065{bottom:606.750000px;}
.y5_c01065{bottom:630.900000px;}
.y4_c01065{bottom:655.500000px;}
.y3_c01065{bottom:681.150000px;}
.y2_c01065{bottom:706.050000px;}
.y1_c01065{bottom:731.400000px;}
.h4_c01065{height:13.200074px;}
.h5_c01065{height:43.804688px;}
.h3_c01065{height:91.160156px;}
.h2_c01065{height:110.151855px;}
.h1_c01065{height:766.500000px;}
.h0_c01065{height:766.800000px;}
.w2_c01065{width:104.875500px;}
.w1_c01065{width:486.000000px;}
.w0_c01065{width:486.300000px;}
.x0_c01065{left:0.000000px;}
.x3_c01065{left:73.200000px;}
.x2_c01065{left:74.250000px;}
.x4_c01065{left:75.900000px;}
.x1_c01065{left:77.250000px;}
.x5_c01065{left:78.600000px;}
.x6_c01065{left:79.950000px;}
.x7_c01065{left:194.964249px;}
@media print{
.v1_c01065{vertical-align:-62.933333pt;}
.v0_c01065{vertical-align:0.000000pt;}
.ls2_c01065{letter-spacing:-2.666667pt;}
.ls1_c01065{letter-spacing:0.000000pt;}
.ls0_c01065{letter-spacing:1.536000pt;}
.ls4_c01065{letter-spacing:2.666667pt;}
.ls3_c01065{letter-spacing:5.333333pt;}
.ws1_c01065{word-spacing:-23.976000pt;}
.ws0_c01065{word-spacing:-16.960000pt;}
.ws2_c01065{word-spacing:0.000000pt;}
._c_c01065{margin-left:-6.981333pt;}
._a_c01065{margin-left:-6.069333pt;}
._b_c01065{margin-left:-4.986667pt;}
._10_c01065{margin-left:-4.045333pt;}
._3_c01065{margin-left:-3.016000pt;}
._4_c01065{margin-left:-2.010667pt;}
._f_c01065{margin-left:-1.053333pt;}
._2_c01065{width:1.624000pt;}
._d_c01065{width:2.642667pt;}
._0_c01065{width:3.866667pt;}
._8_c01065{width:5.157333pt;}
._6_c01065{width:6.656000pt;}
._e_c01065{width:7.754667pt;}
._7_c01065{width:8.768000pt;}
._12_c01065{width:9.941333pt;}
._13_c01065{width:11.053333pt;}
._5_c01065{width:12.384000pt;}
._9_c01065{width:13.802667pt;}
._11_c01065{width:16.992000pt;}
._15_c01065{width:18.578667pt;}
._14_c01065{width:20.933333pt;}
._16_c01065{width:27.696000pt;}
._1_c01065{width:382.704000pt;}
._17_c01065{width:443.264000pt;}
.fs5_c01065{font-size:42.666667pt;}
.fs3_c01065{font-size:50.666667pt;}
.fs2_c01065{font-size:58.666667pt;}
.fs1_c01065{font-size:64.000000pt;}
.fs4_c01065{font-size:72.000000pt;}
.fs0_c01065{font-size:77.333333pt;}
.y0_c01065{bottom:0.000000pt;}
.y1e_c01065{bottom:2.760000pt;}
.y1d_c01065{bottom:6.425212pt;}
.y1c_c01065{bottom:56.800000pt;}
.y1b_c01065{bottom:80.800000pt;}
.y1a_c01065{bottom:102.000000pt;}
.y19_c01065{bottom:125.200000pt;}
.y18_c01065{bottom:147.333333pt;}
.y17_c01065{bottom:169.466667pt;}
.y16_c01065{bottom:192.933333pt;}
.y15_c01065{bottom:213.866667pt;}
.y14_c01065{bottom:235.866667pt;}
.y13_c01065{bottom:257.200000pt;}
.y12_c01065{bottom:279.600000pt;}
.y11_c01065{bottom:301.200000pt;}
.y10_c01065{bottom:322.266667pt;}
.yf_c01065{bottom:343.866667pt;}
.ye_c01065{bottom:365.733333pt;}
.yd_c01065{bottom:386.800000pt;}
.yc_c01065{bottom:407.333333pt;}
.yb_c01065{bottom:429.333333pt;}
.ya_c01065{bottom:451.600000pt;}
.y9_c01065{bottom:473.733333pt;}
.y8_c01065{bottom:495.066667pt;}
.y7_c01065{bottom:517.600000pt;}
.y6_c01065{bottom:539.333333pt;}
.y5_c01065{bottom:560.800000pt;}
.y4_c01065{bottom:582.666667pt;}
.y3_c01065{bottom:605.466667pt;}
.y2_c01065{bottom:627.600000pt;}
.y1_c01065{bottom:650.133333pt;}
.h4_c01065{height:11.733399pt;}
.h5_c01065{height:38.937500pt;}
.h3_c01065{height:81.031250pt;}
.h2_c01065{height:97.912760pt;}
.h1_c01065{height:681.333333pt;}
.h0_c01065{height:681.600000pt;}
.w2_c01065{width:93.222667pt;}
.w1_c01065{width:432.000000pt;}
.w0_c01065{width:432.266667pt;}
.x0_c01065{left:0.000000pt;}
.x3_c01065{left:65.066667pt;}
.x2_c01065{left:66.000000pt;}
.x4_c01065{left:67.466667pt;}
.x1_c01065{left:68.666667pt;}
.x5_c01065{left:69.866667pt;}
.x6_c01065{left:71.066667pt;}
.x7_c01065{left:173.301554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a172092a7337c945d1a56549.woff2')format("woff");}.ff1_c01066{font-family:ff1_c01066;line-height:1.480469;font-style:normal;font-weight:normal;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_e971f20962e3f804f15aac4f.woff2')format("woff");}.ff2_c01066{font-family:ff2_c01066;line-height:1.568848;font-style:normal;font-weight:normal;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_92d89f1e45f30bbdb6d82bd5.woff2')format("woff");}.ff3_c01066{font-family:ff3_c01066;line-height:1.575000;font-style:normal;font-weight:normal;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_d5a7fc7febef97caaf3b406e.woff2')format("woff");}.ff4_c01066{font-family:ff4_c01066;line-height:1.284668;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01066{font-family:ff5_c01066;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01066{vertical-align:0.000000px;}
.ls4_c01066{letter-spacing:-3.000000px;}
.ls2_c01066{letter-spacing:0.000000px;}
.ls3_c01066{letter-spacing:3.000000px;}
.ls1_c01066{letter-spacing:10.200000px;}
.ls0_c01066{letter-spacing:27.588000px;}
.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;}
}
.ws2_c01066{word-spacing:-34.341000px;}
.ws0_c01066{word-spacing:-33.192000px;}
.ws1_c01066{word-spacing:-16.704000px;}
.ws3_c01066{word-spacing:-14.460000px;}
.ws4_c01066{word-spacing:0.000000px;}
._13_c01066{margin-left:-23.904000px;}
._1b_c01066{margin-left:-14.058000px;}
._18_c01066{margin-left:-9.459000px;}
._16_c01066{margin-left:-8.280000px;}
._f_c01066{margin-left:-6.336000px;}
._6_c01066{margin-left:-5.184000px;}
._e_c01066{margin-left:-3.528000px;}
._15_c01066{margin-left:-2.304000px;}
._b_c01066{margin-left:-1.296000px;}
._c_c01066{width:1.440000px;}
._7_c01066{width:2.520000px;}
._0_c01066{width:3.744000px;}
._8_c01066{width:4.824000px;}
._2_c01066{width:5.904000px;}
._d_c01066{width:6.912000px;}
._3_c01066{width:8.064000px;}
._4_c01066{width:9.792000px;}
._1_c01066{width:11.736000px;}
._9_c01066{width:13.248000px;}
._a_c01066{width:15.912000px;}
._1a_c01066{width:17.190000px;}
._12_c01066{width:18.435000px;}
._11_c01066{width:19.440000px;}
._17_c01066{width:21.024000px;}
._1c_c01066{width:25.011000px;}
._10_c01066{width:26.496000px;}
._19_c01066{width:41.418000px;}
._14_c01066{width:167.517000px;}
._5_c01066{width:303.288000px;}
.fc2_c01066{color:transparent;}
.fc1_c01066{color:rgb(128,128,128);}
.fc0_c01066{color:rgb(0,0,0);}
.fs6_c01066{font-size:48.000000px;}
.fs1_c01066{font-size:57.000000px;}
.fs5_c01066{font-size:60.000000px;}
.fs2_c01066{font-size:63.000000px;}
.fs0_c01066{font-size:72.000000px;}
.fs3_c01066{font-size:81.000000px;}
.fs4_c01066{font-size:84.000000px;}
.y0_c01066{bottom:0.000000px;}
.y1f_c01066{bottom:3.105000px;}
.y1e_c01066{bottom:7.228357px;}
.y1d_c01066{bottom:54.630000px;}
.y1c_c01066{bottom:82.080000px;}
.y1b_c01066{bottom:108.030000px;}
.y1a_c01066{bottom:134.280000px;}
.y19_c01066{bottom:158.730000px;}
.y18_c01066{bottom:183.180000px;}
.y17_c01066{bottom:208.230000px;}
.y16_c01066{bottom:233.280000px;}
.y15_c01066{bottom:258.180000px;}
.y14_c01066{bottom:283.530000px;}
.y13_c01066{bottom:308.130000px;}
.y12_c01066{bottom:330.780000px;}
.y11_c01066{bottom:355.080000px;}
.y10_c01066{bottom:379.680000px;}
.yf_c01066{bottom:405.030000px;}
.ye_c01066{bottom:429.030000px;}
.yd_c01066{bottom:452.280000px;}
.yc_c01066{bottom:476.880000px;}
.yb_c01066{bottom:502.230000px;}
.ya_c01066{bottom:525.630000px;}
.y9_c01066{bottom:550.230000px;}
.y8_c01066{bottom:574.830000px;}
.y7_c01066{bottom:599.730000px;}
.y6_c01066{bottom:623.730000px;}
.y5_c01066{bottom:648.030000px;}
.y4_c01066{bottom:672.330000px;}
.y3_c01066{bottom:697.680000px;}
.y2_c01066{bottom:723.030000px;}
.y1_c01066{bottom:747.930000px;}
.h7_c01066{height:13.200074px;}
.h8_c01066{height:43.804688px;}
.h6_c01066{height:75.966797px;}
.h3_c01066{height:79.765137px;}
.h5_c01066{height:81.841406px;}
.h2_c01066{height:91.160156px;}
.h4_c01066{height:94.803223px;}
.h0_c01066{height:795.450000px;}
.h1_c01066{height:795.750000px;}
.w2_c01066{width:104.875500px;}
.w0_c01066{width:532.425000px;}
.w1_c01066{width:532.500000px;}
.x0_c01066{left:0.000000px;}
.x2_c01066{left:23.400000px;}
.x3_c01066{left:25.050000px;}
.x4_c01066{left:27.450000px;}
.x5_c01066{left:30.450000px;}
.x6_c01066{left:31.800000px;}
.x7_c01066{left:33.750000px;}
.x9_c01066{left:122.250000px;}
.x1_c01066{left:159.600000px;}
.xb_c01066{left:218.026749px;}
.x8_c01066{left:221.700000px;}
.xa_c01066{left:370.950000px;}
@media print{
.v0_c01066{vertical-align:0.000000pt;}
.ls4_c01066{letter-spacing:-2.666667pt;}
.ls2_c01066{letter-spacing:0.000000pt;}
.ls3_c01066{letter-spacing:2.666667pt;}
.ls1_c01066{letter-spacing:9.066667pt;}
.ls0_c01066{letter-spacing:24.522667pt;}
.ws2_c01066{word-spacing:-30.525333pt;}
.ws0_c01066{word-spacing:-29.504000pt;}
.ws1_c01066{word-spacing:-14.848000pt;}
.ws3_c01066{word-spacing:-12.853333pt;}
.ws4_c01066{word-spacing:0.000000pt;}
._13_c01066{margin-left:-21.248000pt;}
._1b_c01066{margin-left:-12.496000pt;}
._18_c01066{margin-left:-8.408000pt;}
._16_c01066{margin-left:-7.360000pt;}
._f_c01066{margin-left:-5.632000pt;}
._6_c01066{margin-left:-4.608000pt;}
._e_c01066{margin-left:-3.136000pt;}
._15_c01066{margin-left:-2.048000pt;}
._b_c01066{margin-left:-1.152000pt;}
._c_c01066{width:1.280000pt;}
._7_c01066{width:2.240000pt;}
._0_c01066{width:3.328000pt;}
._8_c01066{width:4.288000pt;}
._2_c01066{width:5.248000pt;}
._d_c01066{width:6.144000pt;}
._3_c01066{width:7.168000pt;}
._4_c01066{width:8.704000pt;}
._1_c01066{width:10.432000pt;}
._9_c01066{width:11.776000pt;}
._a_c01066{width:14.144000pt;}
._1a_c01066{width:15.280000pt;}
._12_c01066{width:16.386667pt;}
._11_c01066{width:17.280000pt;}
._17_c01066{width:18.688000pt;}
._1c_c01066{width:22.232000pt;}
._10_c01066{width:23.552000pt;}
._19_c01066{width:36.816000pt;}
._14_c01066{width:148.904000pt;}
._5_c01066{width:269.589333pt;}
.fs6_c01066{font-size:42.666667pt;}
.fs1_c01066{font-size:50.666667pt;}
.fs5_c01066{font-size:53.333333pt;}
.fs2_c01066{font-size:56.000000pt;}
.fs0_c01066{font-size:64.000000pt;}
.fs3_c01066{font-size:72.000000pt;}
.fs4_c01066{font-size:74.666667pt;}
.y0_c01066{bottom:0.000000pt;}
.y1f_c01066{bottom:2.760000pt;}
.y1e_c01066{bottom:6.425206pt;}
.y1d_c01066{bottom:48.560000pt;}
.y1c_c01066{bottom:72.960000pt;}
.y1b_c01066{bottom:96.026667pt;}
.y1a_c01066{bottom:119.360000pt;}
.y19_c01066{bottom:141.093333pt;}
.y18_c01066{bottom:162.826667pt;}
.y17_c01066{bottom:185.093333pt;}
.y16_c01066{bottom:207.360000pt;}
.y15_c01066{bottom:229.493333pt;}
.y14_c01066{bottom:252.026667pt;}
.y13_c01066{bottom:273.893333pt;}
.y12_c01066{bottom:294.026667pt;}
.y11_c01066{bottom:315.626667pt;}
.y10_c01066{bottom:337.493333pt;}
.yf_c01066{bottom:360.026667pt;}
.ye_c01066{bottom:381.360000pt;}
.yd_c01066{bottom:402.026667pt;}
.yc_c01066{bottom:423.893333pt;}
.yb_c01066{bottom:446.426667pt;}
.ya_c01066{bottom:467.226667pt;}
.y9_c01066{bottom:489.093333pt;}
.y8_c01066{bottom:510.960000pt;}
.y7_c01066{bottom:533.093333pt;}
.y6_c01066{bottom:554.426667pt;}
.y5_c01066{bottom:576.026667pt;}
.y4_c01066{bottom:597.626667pt;}
.y3_c01066{bottom:620.160000pt;}
.y2_c01066{bottom:642.693333pt;}
.y1_c01066{bottom:664.826667pt;}
.h7_c01066{height:11.733399pt;}
.h8_c01066{height:38.937500pt;}
.h6_c01066{height:67.526042pt;}
.h3_c01066{height:70.902344pt;}
.h5_c01066{height:72.747917pt;}
.h2_c01066{height:81.031250pt;}
.h4_c01066{height:84.269531pt;}
.h0_c01066{height:707.066667pt;}
.h1_c01066{height:707.333333pt;}
.w2_c01066{width:93.222667pt;}
.w0_c01066{width:473.266667pt;}
.w1_c01066{width:473.333333pt;}
.x0_c01066{left:0.000000pt;}
.x2_c01066{left:20.800000pt;}
.x3_c01066{left:22.266667pt;}
.x4_c01066{left:24.400000pt;}
.x5_c01066{left:27.066667pt;}
.x6_c01066{left:28.266667pt;}
.x7_c01066{left:30.000000pt;}
.x9_c01066{left:108.666667pt;}
.x1_c01066{left:141.866667pt;}
.xb_c01066{left:193.801554pt;}
.x8_c01066{left:197.066667pt;}
.xa_c01066{left:329.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dac65bf5aa15c6abc1297882.woff2')format("woff");}.ff1_c01067{font-family:ff1_c01067;line-height:1.480469;font-style:normal;font-weight:normal;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_116bfe995daaf880c9f535a2.woff2')format("woff");}.ff2_c01067{font-family:ff2_c01067;line-height:1.568848;font-style:normal;font-weight:normal;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_b0422987fc505aae2b5d3676.woff2')format("woff");}.ff3_c01067{font-family:ff3_c01067;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01067;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01067{font-family:ff4_c01067;line-height:1.219238;font-style: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);}
.v1_c01067{vertical-align:-69.600000px;}
.v0_c01067{vertical-align:0.000000px;}
.ls4_c01067{letter-spacing:-9.000000px;}
.ls3_c01067{letter-spacing:0.000000px;}
.ls2_c01067{letter-spacing:6.312000px;}
.ls0_c01067{letter-spacing:7.788000px;}
.ls1_c01067{letter-spacing:11.988000px;}
.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;}
}
.ws2_c01067{word-spacing:-21.051000px;}
.ws1_c01067{word-spacing:-17.352000px;}
.ws4_c01067{word-spacing:-15.183000px;}
.ws5_c01067{word-spacing:0.000000px;}
.ws0_c01067{word-spacing:3.024000px;}
.ws3_c01067{word-spacing:447.552000px;}
._16_c01067{margin-left:-18.432000px;}
._19_c01067{margin-left:-15.480000px;}
._1f_c01067{margin-left:-12.576000px;}
._d_c01067{margin-left:-10.296000px;}
._18_c01067{margin-left:-8.232000px;}
._14_c01067{margin-left:-6.408000px;}
._12_c01067{margin-left:-5.328000px;}
._8_c01067{margin-left:-3.744000px;}
._6_c01067{margin-left:-2.520000px;}
._7_c01067{margin-left:-1.440000px;}
._f_c01067{width:1.224000px;}
._e_c01067{width:2.520000px;}
._9_c01067{width:3.816000px;}
._5_c01067{width:4.824000px;}
._13_c01067{width:5.832000px;}
._2_c01067{width:6.840000px;}
._4_c01067{width:7.920000px;}
._0_c01067{width:9.216000px;}
._a_c01067{width:10.368000px;}
._b_c01067{width:11.448000px;}
._3_c01067{width:13.032000px;}
._1a_c01067{width:14.184000px;}
._1_c01067{width:15.192000px;}
._15_c01067{width:19.368000px;}
._11_c01067{width:21.888000px;}
._1b_c01067{width:24.312000px;}
._1e_c01067{width:26.784000px;}
._17_c01067{width:33.336000px;}
._c_c01067{width:110.160000px;}
._1c_c01067{width:131.832000px;}
._10_c01067{width:165.672000px;}
._1d_c01067{width:279.432000px;}
.fc2_c01067{color:transparent;}
.fc1_c01067{color:rgb(128,128,128);}
.fc0_c01067{color:rgb(0,0,0);}
.fs2_c01067{font-size:48.000000px;}
.fs1_c01067{font-size:63.000000px;}
.fs0_c01067{font-size:72.000000px;}
.y0_c01067{bottom:0.000000px;}
.y1e_c01067{bottom:3.105000px;}
.y1d_c01067{bottom:7.228371px;}
.y1c_c01067{bottom:62.415000px;}
.y1b_c01067{bottom:88.065000px;}
.y1a_c01067{bottom:115.515000px;}
.y19_c01067{bottom:140.115000px;}
.y18_c01067{bottom:165.015000px;}
.y17_c01067{bottom:190.665000px;}
.y16_c01067{bottom:214.965000px;}
.y15_c01067{bottom:240.765000px;}
.y14_c01067{bottom:265.065000px;}
.y13_c01067{bottom:289.665000px;}
.y12_c01067{bottom:314.865000px;}
.y11_c01067{bottom:340.215000px;}
.y10_c01067{bottom:363.315000px;}
.yf_c01067{bottom:387.765000px;}
.ye_c01067{bottom:412.215000px;}
.yd_c01067{bottom:435.465000px;}
.yc_c01067{bottom:459.015000px;}
.yb_c01067{bottom:483.615000px;}
.ya_c01067{bottom:508.065000px;}
.y9_c01067{bottom:532.665000px;}
.y8_c01067{bottom:556.965000px;}
.y7_c01067{bottom:582.165000px;}
.y6_c01067{bottom:606.915000px;}
.y5_c01067{bottom:631.215000px;}
.y4_c01067{bottom:656.565000px;}
.y3_c01067{bottom:680.865000px;}
.y2_c01067{bottom:705.765000px;}
.y1_c01067{bottom:731.115000px;}
.h5_c01067{height:13.200074px;}
.h6_c01067{height:43.804688px;}
.h4_c01067{height:79.765137px;}
.h2_c01067{height:91.160156px;}
.h3_c01067{height:91.760156px;}
.h0_c01067{height:779.775000px;}
.h1_c01067{height:780.000000px;}
.w2_c01067{width:104.875500px;}
.w0_c01067{width:490.875000px;}
.w1_c01067{width:491.250000px;}
.x0_c01067{left:0.000000px;}
.x6_c01067{left:63.750000px;}
.x5_c01067{left:66.600000px;}
.x4_c01067{left:68.550000px;}
.x3_c01067{left:69.900000px;}
.x2_c01067{left:73.800000px;}
.x1_c01067{left:194.850000px;}
.x7_c01067{left:197.251740px;}
@media print{
.v1_c01067{vertical-align:-61.866667pt;}
.v0_c01067{vertical-align:0.000000pt;}
.ls4_c01067{letter-spacing:-8.000000pt;}
.ls3_c01067{letter-spacing:0.000000pt;}
.ls2_c01067{letter-spacing:5.610667pt;}
.ls0_c01067{letter-spacing:6.922667pt;}
.ls1_c01067{letter-spacing:10.656000pt;}
.ws2_c01067{word-spacing:-18.712000pt;}
.ws1_c01067{word-spacing:-15.424000pt;}
.ws4_c01067{word-spacing:-13.496000pt;}
.ws5_c01067{word-spacing:0.000000pt;}
.ws0_c01067{word-spacing:2.688000pt;}
.ws3_c01067{word-spacing:397.824000pt;}
._16_c01067{margin-left:-16.384000pt;}
._19_c01067{margin-left:-13.760000pt;}
._1f_c01067{margin-left:-11.178667pt;}
._d_c01067{margin-left:-9.152000pt;}
._18_c01067{margin-left:-7.317333pt;}
._14_c01067{margin-left:-5.696000pt;}
._12_c01067{margin-left:-4.736000pt;}
._8_c01067{margin-left:-3.328000pt;}
._6_c01067{margin-left:-2.240000pt;}
._7_c01067{margin-left:-1.280000pt;}
._f_c01067{width:1.088000pt;}
._e_c01067{width:2.240000pt;}
._9_c01067{width:3.392000pt;}
._5_c01067{width:4.288000pt;}
._13_c01067{width:5.184000pt;}
._2_c01067{width:6.080000pt;}
._4_c01067{width:7.040000pt;}
._0_c01067{width:8.192000pt;}
._a_c01067{width:9.216000pt;}
._b_c01067{width:10.176000pt;}
._3_c01067{width:11.584000pt;}
._1a_c01067{width:12.608000pt;}
._1_c01067{width:13.504000pt;}
._15_c01067{width:17.216000pt;}
._11_c01067{width:19.456000pt;}
._1b_c01067{width:21.610667pt;}
._1e_c01067{width:23.808000pt;}
._17_c01067{width:29.632000pt;}
._c_c01067{width:97.920000pt;}
._1c_c01067{width:117.184000pt;}
._10_c01067{width:147.264000pt;}
._1d_c01067{width:248.384000pt;}
.fs2_c01067{font-size:42.666667pt;}
.fs1_c01067{font-size:56.000000pt;}
.fs0_c01067{font-size:64.000000pt;}
.y0_c01067{bottom:0.000000pt;}
.y1e_c01067{bottom:2.760000pt;}
.y1d_c01067{bottom:6.425219pt;}
.y1c_c01067{bottom:55.480000pt;}
.y1b_c01067{bottom:78.280000pt;}
.y1a_c01067{bottom:102.680000pt;}
.y19_c01067{bottom:124.546667pt;}
.y18_c01067{bottom:146.680000pt;}
.y17_c01067{bottom:169.480000pt;}
.y16_c01067{bottom:191.080000pt;}
.y15_c01067{bottom:214.013333pt;}
.y14_c01067{bottom:235.613333pt;}
.y13_c01067{bottom:257.480000pt;}
.y12_c01067{bottom:279.880000pt;}
.y11_c01067{bottom:302.413333pt;}
.y10_c01067{bottom:322.946667pt;}
.yf_c01067{bottom:344.680000pt;}
.ye_c01067{bottom:366.413333pt;}
.yd_c01067{bottom:387.080000pt;}
.yc_c01067{bottom:408.013333pt;}
.yb_c01067{bottom:429.880000pt;}
.ya_c01067{bottom:451.613333pt;}
.y9_c01067{bottom:473.480000pt;}
.y8_c01067{bottom:495.080000pt;}
.y7_c01067{bottom:517.480000pt;}
.y6_c01067{bottom:539.480000pt;}
.y5_c01067{bottom:561.080000pt;}
.y4_c01067{bottom:583.613333pt;}
.y3_c01067{bottom:605.213333pt;}
.y2_c01067{bottom:627.346667pt;}
.y1_c01067{bottom:649.880000pt;}
.h5_c01067{height:11.733399pt;}
.h6_c01067{height:38.937500pt;}
.h4_c01067{height:70.902344pt;}
.h2_c01067{height:81.031250pt;}
.h3_c01067{height:81.564583pt;}
.h0_c01067{height:693.133333pt;}
.h1_c01067{height:693.333333pt;}
.w2_c01067{width:93.222667pt;}
.w0_c01067{width:436.333333pt;}
.w1_c01067{width:436.666667pt;}
.x0_c01067{left:0.000000pt;}
.x6_c01067{left:56.666667pt;}
.x5_c01067{left:59.200000pt;}
.x4_c01067{left:60.933333pt;}
.x3_c01067{left:62.133333pt;}
.x2_c01067{left:65.600000pt;}
.x1_c01067{left:173.200000pt;}
.x7_c01067{left:175.334880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a63d691207da303238961417.woff2')format("woff");}.ff1_c01068{font-family:ff1_c01068;line-height:1.592000;font-style:normal;font-weight:normal;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_6bd7d94881aab350ccfa2d87.woff2')format("woff");}.ff2_c01068{font-family:ff2_c01068;line-height:1.568848;font-style:normal;font-weight:normal;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_2f19712d7ccb1d1fdfbe6fb8.woff2')format("woff");}.ff3_c01068{font-family:ff3_c01068;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01068;src:url('chunks/assets/font_32631a460cb76c2e98ca86b2.woff2')format("woff");}.ff4_c01068{font-family:ff4_c01068;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01068;src:url('chunks/assets/font_166d717db7b26cbc4e6623d2.woff2')format("woff");}.ff5_c01068{font-family:ff5_c01068;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01068;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01068{font-family:ff6_c01068;line-height:1.219238;font-style: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;}
.ls0_c01068{letter-spacing:-3.000000px;}
.ls1_c01068{letter-spacing:0.000000px;}
.ls2_c01068{letter-spacing:3.000000px;}
.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:-33.192000px;}
.ws1_c01068{word-spacing:0.000000px;}
._16_c01068{margin-left:-23.364000px;}
._1d_c01068{margin-left:-20.952000px;}
._19_c01068{margin-left:-13.728000px;}
._1b_c01068{margin-left:-12.468000px;}
._1c_c01068{margin-left:-10.992000px;}
._18_c01068{margin-left:-9.948000px;}
._1a_c01068{margin-left:-8.484000px;}
._10_c01068{margin-left:-6.840000px;}
._11_c01068{margin-left:-5.472000px;}
._14_c01068{margin-left:-4.008000px;}
._12_c01068{margin-left:-2.088000px;}
._f_c01068{margin-left:-1.080000px;}
._c_c01068{width:1.440000px;}
._3_c01068{width:2.520000px;}
._1_c01068{width:4.320000px;}
._d_c01068{width:5.352000px;}
._6_c01068{width:6.660000px;}
._7_c01068{width:7.860000px;}
._13_c01068{width:8.940000px;}
._a_c01068{width:10.020000px;}
._5_c01068{width:11.460000px;}
._17_c01068{width:12.732000px;}
._2_c01068{width:14.400000px;}
._e_c01068{width:15.432000px;}
._4_c01068{width:18.120000px;}
._8_c01068{width:19.920000px;}
._0_c01068{width:21.000000px;}
._15_c01068{width:26.808000px;}
._9_c01068{width:28.020000px;}
._b_c01068{width:366.804000px;}
._1e_c01068{width:1339.767000px;}
.fc2_c01068{color:transparent;}
.fc1_c01068{color:rgb(128,128,128);}
.fc0_c01068{color:rgb(0,0,0);}
.fs3_c01068{font-size:24.000000px;}
.fs8_c01068{font-size:48.000000px;}
.fs4_c01068{font-size:54.000000px;}
.fs0_c01068{font-size:60.000000px;}
.fs1_c01068{font-size:69.000000px;}
.fs2_c01068{font-size:72.000000px;}
.fs6_c01068{font-size:81.000000px;}
.fs5_c01068{font-size:87.000000px;}
.fs7_c01068{font-size:93.000000px;}
.y0_c01068{bottom:0.000000px;}
.y1f_c01068{bottom:3.105000px;}
.y1e_c01068{bottom:7.228369px;}
.y1d_c01068{bottom:57.270000px;}
.y1c_c01068{bottom:85.770000px;}
.y1b_c01068{bottom:111.420000px;}
.y1a_c01068{bottom:133.320000px;}
.y19_c01068{bottom:158.220000px;}
.y18_c01068{bottom:185.220000px;}
.y17_c01068{bottom:212.520000px;}
.y16_c01068{bottom:231.570000px;}
.y15_c01068{bottom:261.270000px;}
.y14_c01068{bottom:286.170000px;}
.y13_c01068{bottom:307.170000px;}
.y12_c01068{bottom:335.070000px;}
.y11_c01068{bottom:358.770000px;}
.y10_c01068{bottom:383.070000px;}
.yf_c01068{bottom:407.670000px;}
.ye_c01068{bottom:431.970000px;}
.yd_c01068{bottom:456.270000px;}
.yc_c01068{bottom:482.520000px;}
.yb_c01068{bottom:506.820000px;}
.ya_c01068{bottom:529.470000px;}
.y9_c01068{bottom:554.070000px;}
.y8_c01068{bottom:579.120000px;}
.y7_c01068{bottom:603.120000px;}
.y6_c01068{bottom:627.720000px;}
.y5_c01068{bottom:652.620000px;}
.y4_c01068{bottom:677.970000px;}
.y3_c01068{bottom:702.570000px;}
.y2_c01068{bottom:726.270000px;}
.y1_c01068{bottom:751.320000px;}
.h6_c01068{height:13.200073px;}
.h7_c01068{height:43.804688px;}
.h4_c01068{height:79.497070px;}
.h1_c01068{height:87.361816px;}
.h2_c01068{height:91.160156px;}
.h5_c01068{height:93.726562px;}
.h3_c01068{height:110.151855px;}
.h0_c01068{height:800.250000px;}
.w2_c01068{width:104.875500px;}
.w0_c01068{width:534.600000px;}
.w1_c01068{width:534.750000px;}
.x0_c01068{left:0.000000px;}
.x2_c01068{left:22.350000px;}
.x7_c01068{left:23.400000px;}
.x3_c01068{left:24.750000px;}
.x4_c01068{left:25.950000px;}
.x5_c01068{left:27.300000px;}
.x9_c01068{left:41.250000px;}
.x8_c01068{left:53.700000px;}
.x1_c01068{left:137.400000px;}
.xa_c01068{left:219.114258px;}
.x6_c01068{left:229.800000px;}
@media print{
.v0_c01068{vertical-align:0.000000pt;}
.ls0_c01068{letter-spacing:-2.666667pt;}
.ls1_c01068{letter-spacing:0.000000pt;}
.ls2_c01068{letter-spacing:2.666667pt;}
.ws0_c01068{word-spacing:-29.504000pt;}
.ws1_c01068{word-spacing:0.000000pt;}
._16_c01068{margin-left:-20.768000pt;}
._1d_c01068{margin-left:-18.624000pt;}
._19_c01068{margin-left:-12.202667pt;}
._1b_c01068{margin-left:-11.082667pt;}
._1c_c01068{margin-left:-9.770667pt;}
._18_c01068{margin-left:-8.842667pt;}
._1a_c01068{margin-left:-7.541333pt;}
._10_c01068{margin-left:-6.080000pt;}
._11_c01068{margin-left:-4.864000pt;}
._14_c01068{margin-left:-3.562667pt;}
._12_c01068{margin-left:-1.856000pt;}
._f_c01068{margin-left:-0.960000pt;}
._c_c01068{width:1.280000pt;}
._3_c01068{width:2.240000pt;}
._1_c01068{width:3.840000pt;}
._d_c01068{width:4.757333pt;}
._6_c01068{width:5.920000pt;}
._7_c01068{width:6.986667pt;}
._13_c01068{width:7.946667pt;}
._a_c01068{width:8.906667pt;}
._5_c01068{width:10.186667pt;}
._17_c01068{width:11.317333pt;}
._2_c01068{width:12.800000pt;}
._e_c01068{width:13.717333pt;}
._4_c01068{width:16.106667pt;}
._8_c01068{width:17.706667pt;}
._0_c01068{width:18.666667pt;}
._15_c01068{width:23.829333pt;}
._9_c01068{width:24.906667pt;}
._b_c01068{width:326.048000pt;}
._1e_c01068{width:1190.904000pt;}
.fs3_c01068{font-size:21.333333pt;}
.fs8_c01068{font-size:42.666667pt;}
.fs4_c01068{font-size:48.000000pt;}
.fs0_c01068{font-size:53.333333pt;}
.fs1_c01068{font-size:61.333333pt;}
.fs2_c01068{font-size:64.000000pt;}
.fs6_c01068{font-size:72.000000pt;}
.fs5_c01068{font-size:77.333333pt;}
.fs7_c01068{font-size:82.666667pt;}
.y0_c01068{bottom:0.000000pt;}
.y1f_c01068{bottom:2.760000pt;}
.y1e_c01068{bottom:6.425217pt;}
.y1d_c01068{bottom:50.906667pt;}
.y1c_c01068{bottom:76.240000pt;}
.y1b_c01068{bottom:99.040000pt;}
.y1a_c01068{bottom:118.506667pt;}
.y19_c01068{bottom:140.640000pt;}
.y18_c01068{bottom:164.640000pt;}
.y17_c01068{bottom:188.906667pt;}
.y16_c01068{bottom:205.840000pt;}
.y15_c01068{bottom:232.240000pt;}
.y14_c01068{bottom:254.373333pt;}
.y13_c01068{bottom:273.040000pt;}
.y12_c01068{bottom:297.840000pt;}
.y11_c01068{bottom:318.906667pt;}
.y10_c01068{bottom:340.506667pt;}
.yf_c01068{bottom:362.373333pt;}
.ye_c01068{bottom:383.973333pt;}
.yd_c01068{bottom:405.573333pt;}
.yc_c01068{bottom:428.906667pt;}
.yb_c01068{bottom:450.506667pt;}
.ya_c01068{bottom:470.640000pt;}
.y9_c01068{bottom:492.506667pt;}
.y8_c01068{bottom:514.773333pt;}
.y7_c01068{bottom:536.106667pt;}
.y6_c01068{bottom:557.973333pt;}
.y5_c01068{bottom:580.106667pt;}
.y4_c01068{bottom:602.640000pt;}
.y3_c01068{bottom:624.506667pt;}
.y2_c01068{bottom:645.573333pt;}
.y1_c01068{bottom:667.840000pt;}
.h6_c01068{height:11.733399pt;}
.h7_c01068{height:38.937500pt;}
.h4_c01068{height:70.664062pt;}
.h1_c01068{height:77.654948pt;}
.h2_c01068{height:81.031250pt;}
.h5_c01068{height:83.312500pt;}
.h3_c01068{height:97.912760pt;}
.h0_c01068{height:711.333333pt;}
.w2_c01068{width:93.222667pt;}
.w0_c01068{width:475.200000pt;}
.w1_c01068{width:475.333333pt;}
.x0_c01068{left:0.000000pt;}
.x2_c01068{left:19.866667pt;}
.x7_c01068{left:20.800000pt;}
.x3_c01068{left:22.000000pt;}
.x4_c01068{left:23.066667pt;}
.x5_c01068{left:24.266667pt;}
.x9_c01068{left:36.666667pt;}
.x8_c01068{left:47.733333pt;}
.x1_c01068{left:122.133333pt;}
.xa_c01068{left:194.768229pt;}
.x6_c01068{left:204.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c624144ecbce049642e344f9.woff2')format("woff");}.ff1_c01069{font-family:ff1_c01069;line-height:1.480469;font-style:normal;font-weight:normal;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_886b404a9d3a1b6c6e2814cf.woff2')format("woff");}.ff2_c01069{font-family:ff2_c01069;line-height:1.568848;font-style:normal;font-weight:normal;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_6cafe491488d12f276ae44c6.woff2')format("woff");}.ff3_c01069{font-family:ff3_c01069;line-height:1.284180;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c01069{font-family:ff4_c01069;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01069;src:url('chunks/assets/font_61b76d8265ebe046c8d6f795.woff2')format("woff");}.ff5_c01069{font-family:ff5_c01069;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01069;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01069{font-family:ff6_c01069;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01069{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01069{vertical-align:0.000000px;}
.ls3_c01069{letter-spacing:-3.000000px;}
.ls4_c01069{letter-spacing:0.000000px;}
.ls5_c01069{letter-spacing:6.000000px;}
.ls2_c01069{letter-spacing:11.988000px;}
.ls0_c01069{letter-spacing:207.150000px;}
.ls1_c01069{letter-spacing:382.350000px;}
.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:-17.352000px;}
.ws1_c01069{word-spacing:-14.250000px;}
.ws2_c01069{word-spacing:0.000000px;}
._f_c01069{margin-left:-11.229000px;}
._e_c01069{margin-left:-10.218000px;}
._b_c01069{margin-left:-8.568000px;}
._a_c01069{margin-left:-6.411000px;}
._10_c01069{margin-left:-5.328000px;}
._c_c01069{margin-left:-4.317000px;}
._3_c01069{margin-left:-2.784000px;}
._4_c01069{margin-left:-1.566000px;}
._9_c01069{width:1.800000px;}
._1_c01069{width:3.219000px;}
._6_c01069{width:4.458000px;}
._2_c01069{width:6.090000px;}
._0_c01069{width:7.308000px;}
._d_c01069{width:8.628000px;}
._7_c01069{width:9.681000px;}
._5_c01069{width:11.448000px;}
._8_c01069{width:12.741000px;}
._12_c01069{width:14.460000px;}
._14_c01069{width:15.468000px;}
._13_c01069{width:18.735000px;}
._1a_c01069{width:19.968000px;}
._15_c01069{width:21.153000px;}
._1c_c01069{width:22.536000px;}
._19_c01069{width:23.748000px;}
._17_c01069{width:26.859000px;}
._1d_c01069{width:30.627000px;}
._1b_c01069{width:32.352000px;}
._16_c01069{width:33.408000px;}
._18_c01069{width:39.654000px;}
._11_c01069{width:179.424000px;}
.fc2_c01069{color:transparent;}
.fc1_c01069{color:rgb(128,128,128);}
.fc0_c01069{color:rgb(0,0,0);}
.fs5_c01069{font-size:48.000000px;}
.fs2_c01069{font-size:57.000000px;}
.fs4_c01069{font-size:60.000000px;}
.fs3_c01069{font-size:63.000000px;}
.fs1_c01069{font-size:72.000000px;}
.fs0_c01069{font-size:87.000000px;}
.y0_c01069{bottom:0.000000px;}
.y1e_c01069{bottom:3.105000px;}
.y1d_c01069{bottom:7.228357px;}
.y1c_c01069{bottom:70.230000px;}
.y1b_c01069{bottom:88.380000px;}
.y1a_c01069{bottom:114.030000px;}
.y19_c01069{bottom:139.680000px;}
.y18_c01069{bottom:163.680000px;}
.y17_c01069{bottom:188.730000px;}
.y16_c01069{bottom:213.030000px;}
.y15_c01069{bottom:238.680000px;}
.y14_c01069{bottom:264.030000px;}
.y13_c01069{bottom:288.180000px;}
.y12_c01069{bottom:312.930000px;}
.y11_c01069{bottom:338.130000px;}
.y10_c01069{bottom:361.080000px;}
.yf_c01069{bottom:385.080000px;}
.ye_c01069{bottom:408.780000px;}
.yd_c01069{bottom:432.030000px;}
.yc_c01069{bottom:455.280000px;}
.yb_c01069{bottom:480.030000px;}
.ya_c01069{bottom:504.930000px;}
.y9_c01069{bottom:529.980000px;}
.y8_c01069{bottom:553.830000px;}
.y7_c01069{bottom:578.130000px;}
.y6_c01069{bottom:602.430000px;}
.y5_c01069{bottom:628.830000px;}
.y4_c01069{bottom:654.030000px;}
.y3_c01069{bottom:678.480000px;}
.y2_c01069{bottom:703.080000px;}
.y1_c01069{bottom:728.430000px;}
.h4_c01069{height:13.200074px;}
.h5_c01069{height:43.804688px;}
.h3_c01069{height:91.160156px;}
.h2_c01069{height:110.151855px;}
.h0_c01069{height:780.600000px;}
.h1_c01069{height:780.750000px;}
.w2_c01069{width:104.875500px;}
.w0_c01069{width:507.600000px;}
.w1_c01069{width:507.750000px;}
.x0_c01069{left:0.000000px;}
.x5_c01069{left:17.850000px;}
.x4_c01069{left:18.900000px;}
.xb_c01069{left:90.900000px;}
.xc_c01069{left:92.550000px;}
.x9_c01069{left:93.600000px;}
.xa_c01069{left:94.800000px;}
.x8_c01069{left:96.300000px;}
.x7_c01069{left:97.950000px;}
.x6_c01069{left:99.000000px;}
.x3_c01069{left:101.550000px;}
.x2_c01069{left:103.650000px;}
.xd_c01069{left:205.614258px;}
.x1_c01069{left:231.900000px;}
@media print{
.v0_c01069{vertical-align:0.000000pt;}
.ls3_c01069{letter-spacing:-2.666667pt;}
.ls4_c01069{letter-spacing:0.000000pt;}
.ls5_c01069{letter-spacing:5.333333pt;}
.ls2_c01069{letter-spacing:10.656000pt;}
.ls0_c01069{letter-spacing:184.133333pt;}
.ls1_c01069{letter-spacing:339.866667pt;}
.ws0_c01069{word-spacing:-15.424000pt;}
.ws1_c01069{word-spacing:-12.666667pt;}
.ws2_c01069{word-spacing:0.000000pt;}
._f_c01069{margin-left:-9.981333pt;}
._e_c01069{margin-left:-9.082667pt;}
._b_c01069{margin-left:-7.616000pt;}
._a_c01069{margin-left:-5.698667pt;}
._10_c01069{margin-left:-4.736000pt;}
._c_c01069{margin-left:-3.837333pt;}
._3_c01069{margin-left:-2.474667pt;}
._4_c01069{margin-left:-1.392000pt;}
._9_c01069{width:1.600000pt;}
._1_c01069{width:2.861333pt;}
._6_c01069{width:3.962667pt;}
._2_c01069{width:5.413333pt;}
._0_c01069{width:6.496000pt;}
._d_c01069{width:7.669333pt;}
._7_c01069{width:8.605333pt;}
._5_c01069{width:10.176000pt;}
._8_c01069{width:11.325333pt;}
._12_c01069{width:12.853333pt;}
._14_c01069{width:13.749333pt;}
._13_c01069{width:16.653333pt;}
._1a_c01069{width:17.749333pt;}
._15_c01069{width:18.802667pt;}
._1c_c01069{width:20.032000pt;}
._19_c01069{width:21.109333pt;}
._17_c01069{width:23.874667pt;}
._1d_c01069{width:27.224000pt;}
._1b_c01069{width:28.757333pt;}
._16_c01069{width:29.696000pt;}
._18_c01069{width:35.248000pt;}
._11_c01069{width:159.488000pt;}
.fs5_c01069{font-size:42.666667pt;}
.fs2_c01069{font-size:50.666667pt;}
.fs4_c01069{font-size:53.333333pt;}
.fs3_c01069{font-size:56.000000pt;}
.fs1_c01069{font-size:64.000000pt;}
.fs0_c01069{font-size:77.333333pt;}
.y0_c01069{bottom:0.000000pt;}
.y1e_c01069{bottom:2.760000pt;}
.y1d_c01069{bottom:6.425206pt;}
.y1c_c01069{bottom:62.426667pt;}
.y1b_c01069{bottom:78.560000pt;}
.y1a_c01069{bottom:101.360000pt;}
.y19_c01069{bottom:124.160000pt;}
.y18_c01069{bottom:145.493333pt;}
.y17_c01069{bottom:167.760000pt;}
.y16_c01069{bottom:189.360000pt;}
.y15_c01069{bottom:212.160000pt;}
.y14_c01069{bottom:234.693333pt;}
.y13_c01069{bottom:256.160000pt;}
.y12_c01069{bottom:278.160000pt;}
.y11_c01069{bottom:300.560000pt;}
.y10_c01069{bottom:320.960000pt;}
.yf_c01069{bottom:342.293333pt;}
.ye_c01069{bottom:363.360000pt;}
.yd_c01069{bottom:384.026667pt;}
.yc_c01069{bottom:404.693333pt;}
.yb_c01069{bottom:426.693333pt;}
.ya_c01069{bottom:448.826667pt;}
.y9_c01069{bottom:471.093333pt;}
.y8_c01069{bottom:492.293333pt;}
.y7_c01069{bottom:513.893333pt;}
.y6_c01069{bottom:535.493333pt;}
.y5_c01069{bottom:558.960000pt;}
.y4_c01069{bottom:581.360000pt;}
.y3_c01069{bottom:603.093333pt;}
.y2_c01069{bottom:624.960000pt;}
.y1_c01069{bottom:647.493333pt;}
.h4_c01069{height:11.733399pt;}
.h5_c01069{height:38.937500pt;}
.h3_c01069{height:81.031250pt;}
.h2_c01069{height:97.912760pt;}
.h0_c01069{height:693.866667pt;}
.h1_c01069{height:694.000000pt;}
.w2_c01069{width:93.222667pt;}
.w0_c01069{width:451.200000pt;}
.w1_c01069{width:451.333333pt;}
.x0_c01069{left:0.000000pt;}
.x5_c01069{left:15.866667pt;}
.x4_c01069{left:16.800000pt;}
.xb_c01069{left:80.800000pt;}
.xc_c01069{left:82.266667pt;}
.x9_c01069{left:83.200000pt;}
.xa_c01069{left:84.266667pt;}
.x8_c01069{left:85.600000pt;}
.x7_c01069{left:87.066667pt;}
.x6_c01069{left:88.000000pt;}
.x3_c01069{left:90.266667pt;}
.x2_c01069{left:92.133333pt;}
.xd_c01069{left:182.768229pt;}
.x1_c01069{left:206.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2c41396ba95abb68a921bb2d.woff2')format("woff");}.ff1_c01070{font-family:ff1_c01070;line-height:1.480469;font-style:normal;font-weight:normal;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_2c0aebe02e94b20c0d45438f.woff2')format("woff");}.ff2_c01070{font-family:ff2_c01070;line-height:1.568848;font-style:normal;font-weight:normal;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_5e9b584b90be97fd4361c8c5.woff2')format("woff");}.ff3_c01070{font-family:ff3_c01070;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01070;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01070{font-family:ff4_c01070;line-height:1.219238;font-style: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;}
.ls0_c01070{letter-spacing:0.000000px;}
.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;}
._8_c01070{margin-left:-17.136000px;}
._7_c01070{margin-left:-13.176000px;}
._16_c01070{margin-left:-8.190000px;}
._15_c01070{margin-left:-6.819000px;}
._b_c01070{margin-left:-4.320000px;}
._13_c01070{margin-left:-3.240000px;}
._1_c01070{margin-left:-2.016000px;}
._19_c01070{margin-left:-1.002000px;}
._4_c01070{width:1.800000px;}
._2_c01070{width:2.880000px;}
._c_c01070{width:4.050000px;}
._3_c01070{width:5.544000px;}
._9_c01070{width:7.416000px;}
._6_c01070{width:8.640000px;}
._0_c01070{width:10.512000px;}
._12_c01070{width:12.132000px;}
._5_c01070{width:13.176000px;}
._18_c01070{width:14.292000px;}
._d_c01070{width:15.579000px;}
._f_c01070{width:18.441000px;}
._17_c01070{width:19.638000px;}
._10_c01070{width:21.276000px;}
._e_c01070{width:24.120000px;}
._1b_c01070{width:26.352000px;}
._11_c01070{width:27.378000px;}
._1a_c01070{width:29.988000px;}
._14_c01070{width:33.336000px;}
._1c_c01070{width:248.940000px;}
._a_c01070{width:302.664000px;}
.fc2_c01070{color:transparent;}
.fc1_c01070{color:rgb(128,128,128);}
.fc0_c01070{color:rgb(0,0,0);}
.fs2_c01070{font-size:48.000000px;}
.fs0_c01070{font-size:72.000000px;}
.fs1_c01070{font-size:75.000000px;}
.y0_c01070{bottom:0.000000px;}
.y1f_c01070{bottom:3.105000px;}
.y1e_c01070{bottom:7.228355px;}
.y1d_c01070{bottom:50.835000px;}
.y1c_c01070{bottom:78.585000px;}
.y1b_c01070{bottom:104.985000px;}
.y1a_c01070{bottom:130.185000px;}
.y19_c01070{bottom:156.135000px;}
.y18_c01070{bottom:179.835000px;}
.y17_c01070{bottom:204.135000px;}
.y16_c01070{bottom:228.735000px;}
.y15_c01070{bottom:254.385000px;}
.y14_c01070{bottom:279.735000px;}
.y13_c01070{bottom:304.785000px;}
.y12_c01070{bottom:326.685000px;}
.y11_c01070{bottom:351.585000px;}
.y10_c01070{bottom:375.285000px;}
.yf_c01070{bottom:399.285000px;}
.ye_c01070{bottom:424.485000px;}
.yd_c01070{bottom:447.435000px;}
.yc_c01070{bottom:473.385000px;}
.yb_c01070{bottom:497.835000px;}
.ya_c01070{bottom:521.385000px;}
.y9_c01070{bottom:545.385000px;}
.y8_c01070{bottom:570.735000px;}
.y7_c01070{bottom:595.035000px;}
.y6_c01070{bottom:619.335000px;}
.y5_c01070{bottom:643.935000px;}
.y4_c01070{bottom:667.935000px;}
.y3_c01070{bottom:693.435000px;}
.y2_c01070{bottom:718.485000px;}
.y1_c01070{bottom:742.785000px;}
.h3_c01070{height:13.200074px;}
.h4_c01070{height:43.804688px;}
.h2_c01070{height:91.160156px;}
.h0_c01070{height:784.875000px;}
.h1_c01070{height:785.250000px;}
.w2_c01070{width:104.875500px;}
.w1_c01070{width:520.500000px;}
.w0_c01070{width:520.575000px;}
.x0_c01070{left:0.000000px;}
.x9_c01070{left:25.650000px;}
.x2_c01070{left:27.000000px;}
.x3_c01070{left:28.350000px;}
.x4_c01070{left:29.400000px;}
.x5_c01070{left:30.750000px;}
.x7_c01070{left:32.100000px;}
.x6_c01070{left:33.300000px;}
.x8_c01070{left:55.050000px;}
.xa_c01070{left:143.100000px;}
.x1_c01070{left:161.700000px;}
.xc_c01070{left:212.101730px;}
.xb_c01070{left:235.950000px;}
@media print{
.v0_c01070{vertical-align:0.000000pt;}
.ls0_c01070{letter-spacing:0.000000pt;}
.ws0_c01070{word-spacing:0.000000pt;}
._8_c01070{margin-left:-15.232000pt;}
._7_c01070{margin-left:-11.712000pt;}
._16_c01070{margin-left:-7.280000pt;}
._15_c01070{margin-left:-6.061333pt;}
._b_c01070{margin-left:-3.840000pt;}
._13_c01070{margin-left:-2.880000pt;}
._1_c01070{margin-left:-1.792000pt;}
._19_c01070{margin-left:-0.890667pt;}
._4_c01070{width:1.600000pt;}
._2_c01070{width:2.560000pt;}
._c_c01070{width:3.600000pt;}
._3_c01070{width:4.928000pt;}
._9_c01070{width:6.592000pt;}
._6_c01070{width:7.680000pt;}
._0_c01070{width:9.344000pt;}
._12_c01070{width:10.784000pt;}
._5_c01070{width:11.712000pt;}
._18_c01070{width:12.704000pt;}
._d_c01070{width:13.848000pt;}
._f_c01070{width:16.392000pt;}
._17_c01070{width:17.456000pt;}
._10_c01070{width:18.912000pt;}
._e_c01070{width:21.440000pt;}
._1b_c01070{width:23.424000pt;}
._11_c01070{width:24.336000pt;}
._1a_c01070{width:26.656000pt;}
._14_c01070{width:29.632000pt;}
._1c_c01070{width:221.280000pt;}
._a_c01070{width:269.034667pt;}
.fs2_c01070{font-size:42.666667pt;}
.fs0_c01070{font-size:64.000000pt;}
.fs1_c01070{font-size:66.666667pt;}
.y0_c01070{bottom:0.000000pt;}
.y1f_c01070{bottom:2.760000pt;}
.y1e_c01070{bottom:6.425204pt;}
.y1d_c01070{bottom:45.186667pt;}
.y1c_c01070{bottom:69.853333pt;}
.y1b_c01070{bottom:93.320000pt;}
.y1a_c01070{bottom:115.720000pt;}
.y19_c01070{bottom:138.786667pt;}
.y18_c01070{bottom:159.853333pt;}
.y17_c01070{bottom:181.453333pt;}
.y16_c01070{bottom:203.320000pt;}
.y15_c01070{bottom:226.120000pt;}
.y14_c01070{bottom:248.653333pt;}
.y13_c01070{bottom:270.920000pt;}
.y12_c01070{bottom:290.386667pt;}
.y11_c01070{bottom:312.520000pt;}
.y10_c01070{bottom:333.586667pt;}
.yf_c01070{bottom:354.920000pt;}
.ye_c01070{bottom:377.320000pt;}
.yd_c01070{bottom:397.720000pt;}
.yc_c01070{bottom:420.786667pt;}
.yb_c01070{bottom:442.520000pt;}
.ya_c01070{bottom:463.453333pt;}
.y9_c01070{bottom:484.786667pt;}
.y8_c01070{bottom:507.320000pt;}
.y7_c01070{bottom:528.920000pt;}
.y6_c01070{bottom:550.520000pt;}
.y5_c01070{bottom:572.386667pt;}
.y4_c01070{bottom:593.720000pt;}
.y3_c01070{bottom:616.386667pt;}
.y2_c01070{bottom:638.653333pt;}
.y1_c01070{bottom:660.253333pt;}
.h3_c01070{height:11.733399pt;}
.h4_c01070{height:38.937500pt;}
.h2_c01070{height:81.031250pt;}
.h0_c01070{height:697.666667pt;}
.h1_c01070{height:698.000000pt;}
.w2_c01070{width:93.222667pt;}
.w1_c01070{width:462.666667pt;}
.w0_c01070{width:462.733333pt;}
.x0_c01070{left:0.000000pt;}
.x9_c01070{left:22.800000pt;}
.x2_c01070{left:24.000000pt;}
.x3_c01070{left:25.200000pt;}
.x4_c01070{left:26.133333pt;}
.x5_c01070{left:27.333333pt;}
.x7_c01070{left:28.533333pt;}
.x6_c01070{left:29.600000pt;}
.x8_c01070{left:48.933333pt;}
.xa_c01070{left:127.200000pt;}
.x1_c01070{left:143.733333pt;}
.xc_c01070{left:188.534871pt;}
.xb_c01070{left:209.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eb1630978f2a49da4864bad5.woff2')format("woff");}.ff1_c01071{font-family:ff1_c01071;line-height:1.568848;font-style:normal;font-weight:normal;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_d47a69d57ed366e966fc421c.woff2')format("woff");}.ff2_c01071{font-family:ff2_c01071;line-height:1.480469;font-style:normal;font-weight:normal;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_858dadb14abc4d8515fc2e93.woff2')format("woff");}.ff3_c01071{font-family:ff3_c01071;line-height:1.284668;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01071{font-family:ff4_c01071;line-height:1.219238;font-style: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);}
.v0_c01071{vertical-align:0.000000px;}
.ls1_c01071{letter-spacing:0.000000px;}
.ls0_c01071{letter-spacing:3.000000px;}
.ls2_c01071{letter-spacing:6.000000px;}
.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:-33.192000px;}
.ws1_c01071{word-spacing:0.000000px;}
._16_c01071{margin-left:-17.694000px;}
._17_c01071{margin-left:-13.212000px;}
._2_c01071{margin-left:-11.520000px;}
._19_c01071{margin-left:-7.728000px;}
._11_c01071{margin-left:-6.408000px;}
._f_c01071{margin-left:-5.112000px;}
._12_c01071{margin-left:-4.104000px;}
._10_c01071{margin-left:-2.880000px;}
._e_c01071{margin-left:-1.656000px;}
._15_c01071{width:1.062000px;}
._9_c01071{width:2.070000px;}
._0_c01071{width:3.366000px;}
._5_c01071{width:5.112000px;}
._8_c01071{width:6.264000px;}
._7_c01071{width:7.758000px;}
._6_c01071{width:8.874000px;}
._4_c01071{width:10.872000px;}
._14_c01071{width:11.880000px;}
._b_c01071{width:12.924000px;}
._a_c01071{width:14.328000px;}
._c_c01071{width:15.858000px;}
._18_c01071{width:18.738000px;}
._d_c01071{width:20.034000px;}
._13_c01071{width:32.652000px;}
._1_c01071{width:64.662000px;}
._3_c01071{width:342.672000px;}
.fc2_c01071{color:transparent;}
.fc1_c01071{color:rgb(128,128,128);}
.fc0_c01071{color:rgb(0,0,0);}
.fs0_c01071{font-size:33.000000px;}
.fs5_c01071{font-size:48.000000px;}
.fs3_c01071{font-size:54.000000px;}
.fs2_c01071{font-size:57.000000px;}
.fs4_c01071{font-size:66.000000px;}
.fs1_c01071{font-size:72.000000px;}
.y0_c01071{bottom:0.000000px;}
.y1e_c01071{bottom:3.105000px;}
.y1d_c01071{bottom:7.228371px;}
.y1c_c01071{bottom:76.365000px;}
.y1b_c01071{bottom:101.565000px;}
.y1a_c01071{bottom:127.365000px;}
.y19_c01071{bottom:152.565000px;}
.y18_c01071{bottom:176.265000px;}
.y17_c01071{bottom:200.865000px;}
.y16_c01071{bottom:226.815000px;}
.y15_c01071{bottom:251.565000px;}
.y14_c01071{bottom:275.865000px;}
.y13_c01071{bottom:301.515000px;}
.y12_c01071{bottom:324.765000px;}
.y11_c01071{bottom:349.365000px;}
.y10_c01071{bottom:373.065000px;}
.yf_c01071{bottom:397.365000px;}
.ye_c01071{bottom:420.615000px;}
.yd_c01071{bottom:443.865000px;}
.yc_c01071{bottom:467.415000px;}
.yb_c01071{bottom:491.865000px;}
.ya_c01071{bottom:517.065000px;}
.y9_c01071{bottom:541.365000px;}
.y8_c01071{bottom:565.665000px;}
.y7_c01071{bottom:590.415000px;}
.y6_c01071{bottom:615.915000px;}
.y5_c01071{bottom:639.615000px;}
.y4_c01071{bottom:664.665000px;}
.y3_c01071{bottom:689.265000px;}
.y2_c01071{bottom:712.815000px;}
.y1_c01071{bottom:739.215000px;}
.h3_c01071{height:13.200074px;}
.h4_c01071{height:43.804688px;}
.h2_c01071{height:91.160156px;}
.h1_c01071{height:782.250000px;}
.h0_c01071{height:782.475000px;}
.w2_c01071{width:104.875500px;}
.w1_c01071{width:464.250000px;}
.w0_c01071{width:464.400000px;}
.x0_c01071{left:0.000000px;}
.x6_c01071{left:50.400000px;}
.x5_c01071{left:53.100000px;}
.x4_c01071{left:54.300000px;}
.x3_c01071{left:55.350000px;}
.x2_c01071{left:57.000000px;}
.x1_c01071{left:67.050000px;}
.x7_c01071{left:184.014267px;}
@media print{
.v0_c01071{vertical-align:0.000000pt;}
.ls1_c01071{letter-spacing:0.000000pt;}
.ls0_c01071{letter-spacing:2.666667pt;}
.ls2_c01071{letter-spacing:5.333333pt;}
.ws0_c01071{word-spacing:-29.504000pt;}
.ws1_c01071{word-spacing:0.000000pt;}
._16_c01071{margin-left:-15.728000pt;}
._17_c01071{margin-left:-11.744000pt;}
._2_c01071{margin-left:-10.240000pt;}
._19_c01071{margin-left:-6.869333pt;}
._11_c01071{margin-left:-5.696000pt;}
._f_c01071{margin-left:-4.544000pt;}
._12_c01071{margin-left:-3.648000pt;}
._10_c01071{margin-left:-2.560000pt;}
._e_c01071{margin-left:-1.472000pt;}
._15_c01071{width:0.944000pt;}
._9_c01071{width:1.840000pt;}
._0_c01071{width:2.992000pt;}
._5_c01071{width:4.544000pt;}
._8_c01071{width:5.568000pt;}
._7_c01071{width:6.896000pt;}
._6_c01071{width:7.888000pt;}
._4_c01071{width:9.664000pt;}
._14_c01071{width:10.560000pt;}
._b_c01071{width:11.488000pt;}
._a_c01071{width:12.736000pt;}
._c_c01071{width:14.096000pt;}
._18_c01071{width:16.656000pt;}
._d_c01071{width:17.808000pt;}
._13_c01071{width:29.024000pt;}
._1_c01071{width:57.477333pt;}
._3_c01071{width:304.597333pt;}
.fs0_c01071{font-size:29.333333pt;}
.fs5_c01071{font-size:42.666667pt;}
.fs3_c01071{font-size:48.000000pt;}
.fs2_c01071{font-size:50.666667pt;}
.fs4_c01071{font-size:58.666667pt;}
.fs1_c01071{font-size:64.000000pt;}
.y0_c01071{bottom:0.000000pt;}
.y1e_c01071{bottom:2.760000pt;}
.y1d_c01071{bottom:6.425219pt;}
.y1c_c01071{bottom:67.880000pt;}
.y1b_c01071{bottom:90.280000pt;}
.y1a_c01071{bottom:113.213333pt;}
.y19_c01071{bottom:135.613333pt;}
.y18_c01071{bottom:156.680000pt;}
.y17_c01071{bottom:178.546667pt;}
.y16_c01071{bottom:201.613333pt;}
.y15_c01071{bottom:223.613333pt;}
.y14_c01071{bottom:245.213333pt;}
.y13_c01071{bottom:268.013333pt;}
.y12_c01071{bottom:288.680000pt;}
.y11_c01071{bottom:310.546667pt;}
.y10_c01071{bottom:331.613333pt;}
.yf_c01071{bottom:353.213333pt;}
.ye_c01071{bottom:373.880000pt;}
.yd_c01071{bottom:394.546667pt;}
.yc_c01071{bottom:415.480000pt;}
.yb_c01071{bottom:437.213333pt;}
.ya_c01071{bottom:459.613333pt;}
.y9_c01071{bottom:481.213333pt;}
.y8_c01071{bottom:502.813333pt;}
.y7_c01071{bottom:524.813333pt;}
.y6_c01071{bottom:547.480000pt;}
.y5_c01071{bottom:568.546667pt;}
.y4_c01071{bottom:590.813333pt;}
.y3_c01071{bottom:612.680000pt;}
.y2_c01071{bottom:633.613333pt;}
.y1_c01071{bottom:657.080000pt;}
.h3_c01071{height:11.733399pt;}
.h4_c01071{height:38.937500pt;}
.h2_c01071{height:81.031250pt;}
.h1_c01071{height:695.333333pt;}
.h0_c01071{height:695.533333pt;}
.w2_c01071{width:93.222667pt;}
.w1_c01071{width:412.666667pt;}
.w0_c01071{width:412.800000pt;}
.x0_c01071{left:0.000000pt;}
.x6_c01071{left:44.800000pt;}
.x5_c01071{left:47.200000pt;}
.x4_c01071{left:48.266667pt;}
.x3_c01071{left:49.200000pt;}
.x2_c01071{left:50.666667pt;}
.x1_c01071{left:59.600000pt;}
.x7_c01071{left:163.568237pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f61969b112d875caca353069.woff2')format("woff");}.ff1_c01072{font-family:ff1_c01072;line-height:1.284180;font-style:normal;font-weight:normal;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_634bfe97e1a2a55394b91765.woff2')format("woff");}.ff2_c01072{font-family:ff2_c01072;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01072;src:url('chunks/assets/font_6d0f66b82371748ea3e81891.woff2')format("woff");}.ff3_c01072{font-family:ff3_c01072;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01072;src:url('chunks/assets/font_9ec2d81dea04ad42145c68c3.woff2')format("woff");}.ff4_c01072{font-family:ff4_c01072;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01072;src:url('chunks/assets/font_37e230d15d5505d0397e3349.woff2')format("woff");}.ff5_c01072{font-family:ff5_c01072;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01072;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01072{font-family:ff6_c01072;line-height:1.219238;font-style: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;}
.ls2_c01072{letter-spacing:-9.000000px;}
.ls1_c01072{letter-spacing:0.000000px;}
.ls0_c01072{letter-spacing:28.800000px;}
.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:-42.000000px;}
.ws1_c01072{word-spacing:-33.192000px;}
.ws2_c01072{word-spacing:-21.051000px;}
.ws3_c01072{word-spacing:0.000000px;}
._15_c01072{margin-left:-13.356000px;}
._16_c01072{margin-left:-11.196000px;}
._14_c01072{margin-left:-10.164000px;}
._17_c01072{margin-left:-9.066000px;}
._f_c01072{margin-left:-7.800000px;}
._10_c01072{margin-left:-6.792000px;}
._7_c01072{margin-left:-5.760000px;}
._8_c01072{margin-left:-4.152000px;}
._a_c01072{margin-left:-2.952000px;}
._b_c01072{margin-left:-1.152000px;}
._9_c01072{width:1.224000px;}
._c_c01072{width:2.448000px;}
._3_c01072{width:4.116000px;}
._4_c01072{width:5.880000px;}
._e_c01072{width:6.912000px;}
._1_c01072{width:7.980000px;}
._2_c01072{width:9.660000px;}
._d_c01072{width:11.016000px;}
._0_c01072{width:12.852000px;}
._13_c01072{width:13.944000px;}
._12_c01072{width:15.960000px;}
._6_c01072{width:18.078000px;}
._11_c01072{width:19.188000px;}
._18_c01072{width:34.584000px;}
._5_c01072{width:360.303000px;}
._19_c01072{width:399.312000px;}
.fc2_c01072{color:transparent;}
.fc1_c01072{color:rgb(128,128,128);}
.fc0_c01072{color:rgb(0,0,0);}
.fs6_c01072{font-size:48.000000px;}
.fs2_c01072{font-size:60.000000px;}
.fs4_c01072{font-size:63.000000px;}
.fs5_c01072{font-size:69.000000px;}
.fs3_c01072{font-size:72.000000px;}
.fs1_c01072{font-size:81.000000px;}
.fs0_c01072{font-size:84.000000px;}
.y0_c01072{bottom:0.000000px;}
.y1f_c01072{bottom:3.105000px;}
.y1e_c01072{bottom:7.228371px;}
.y1d_c01072{bottom:25.365000px;}
.y1c_c01072{bottom:51.615000px;}
.y1b_c01072{bottom:76.965000px;}
.y1a_c01072{bottom:102.615000px;}
.y19_c01072{bottom:128.715000px;}
.y18_c01072{bottom:153.015000px;}
.y17_c01072{bottom:176.865000px;}
.y16_c01072{bottom:202.215000px;}
.y15_c01072{bottom:227.115000px;}
.y14_c01072{bottom:251.115000px;}
.y13_c01072{bottom:276.765000px;}
.y12_c01072{bottom:300.465000px;}
.y11_c01072{bottom:324.765000px;}
.y10_c01072{bottom:349.065000px;}
.yf_c01072{bottom:372.915000px;}
.ye_c01072{bottom:397.365000px;}
.yd_c01072{bottom:421.215000px;}
.yc_c01072{bottom:445.515000px;}
.yb_c01072{bottom:469.815000px;}
.ya_c01072{bottom:494.565000px;}
.y9_c01072{bottom:518.865000px;}
.y8_c01072{bottom:542.715000px;}
.y7_c01072{bottom:567.315000px;}
.y6_c01072{bottom:591.315000px;}
.y5_c01072{bottom:616.365000px;}
.y4_c01072{bottom:640.365000px;}
.y3_c01072{bottom:664.665000px;}
.y2_c01072{bottom:690.165000px;}
.y1_c01072{bottom:714.165000px;}
.h6_c01072{height:13.200074px;}
.h7_c01072{height:43.804688px;}
.h2_c01072{height:82.400391px;}
.h5_c01072{height:87.361816px;}
.h3_c01072{height:91.160156px;}
.h4_c01072{height:102.555176px;}
.h1_c01072{height:768.750000px;}
.h0_c01072{height:768.975000px;}
.w2_c01072{width:104.875500px;}
.w1_c01072{width:507.000000px;}
.w0_c01072{width:507.300000px;}
.x0_c01072{left:0.000000px;}
.x2_c01072{left:27.000000px;}
.x6_c01072{left:28.350000px;}
.x3_c01072{left:29.400000px;}
.x4_c01072{left:30.600000px;}
.x5_c01072{left:31.950000px;}
.x8_c01072{left:125.250000px;}
.x1_c01072{left:140.850000px;}
.x7_c01072{left:154.650000px;}
.x9_c01072{left:193.500000px;}
.xa_c01072{left:205.464249px;}
@media print{
.v0_c01072{vertical-align:0.000000pt;}
.ls2_c01072{letter-spacing:-8.000000pt;}
.ls1_c01072{letter-spacing:0.000000pt;}
.ls0_c01072{letter-spacing:25.600000pt;}
.ws0_c01072{word-spacing:-37.333333pt;}
.ws1_c01072{word-spacing:-29.504000pt;}
.ws2_c01072{word-spacing:-18.712000pt;}
.ws3_c01072{word-spacing:0.000000pt;}
._15_c01072{margin-left:-11.872000pt;}
._16_c01072{margin-left:-9.952000pt;}
._14_c01072{margin-left:-9.034667pt;}
._17_c01072{margin-left:-8.058667pt;}
._f_c01072{margin-left:-6.933333pt;}
._10_c01072{margin-left:-6.037333pt;}
._7_c01072{margin-left:-5.120000pt;}
._8_c01072{margin-left:-3.690667pt;}
._a_c01072{margin-left:-2.624000pt;}
._b_c01072{margin-left:-1.024000pt;}
._9_c01072{width:1.088000pt;}
._c_c01072{width:2.176000pt;}
._3_c01072{width:3.658667pt;}
._4_c01072{width:5.226667pt;}
._e_c01072{width:6.144000pt;}
._1_c01072{width:7.093333pt;}
._2_c01072{width:8.586667pt;}
._d_c01072{width:9.792000pt;}
._0_c01072{width:11.424000pt;}
._13_c01072{width:12.394667pt;}
._12_c01072{width:14.186667pt;}
._6_c01072{width:16.069333pt;}
._11_c01072{width:17.056000pt;}
._18_c01072{width:30.741333pt;}
._5_c01072{width:320.269333pt;}
._19_c01072{width:354.944000pt;}
.fs6_c01072{font-size:42.666667pt;}
.fs2_c01072{font-size:53.333333pt;}
.fs4_c01072{font-size:56.000000pt;}
.fs5_c01072{font-size:61.333333pt;}
.fs3_c01072{font-size:64.000000pt;}
.fs1_c01072{font-size:72.000000pt;}
.fs0_c01072{font-size:74.666667pt;}
.y0_c01072{bottom:0.000000pt;}
.y1f_c01072{bottom:2.760000pt;}
.y1e_c01072{bottom:6.425219pt;}
.y1d_c01072{bottom:22.546667pt;}
.y1c_c01072{bottom:45.880000pt;}
.y1b_c01072{bottom:68.413333pt;}
.y1a_c01072{bottom:91.213333pt;}
.y19_c01072{bottom:114.413333pt;}
.y18_c01072{bottom:136.013333pt;}
.y17_c01072{bottom:157.213333pt;}
.y16_c01072{bottom:179.746667pt;}
.y15_c01072{bottom:201.880000pt;}
.y14_c01072{bottom:223.213333pt;}
.y13_c01072{bottom:246.013333pt;}
.y12_c01072{bottom:267.080000pt;}
.y11_c01072{bottom:288.680000pt;}
.y10_c01072{bottom:310.280000pt;}
.yf_c01072{bottom:331.480000pt;}
.ye_c01072{bottom:353.213333pt;}
.yd_c01072{bottom:374.413333pt;}
.yc_c01072{bottom:396.013333pt;}
.yb_c01072{bottom:417.613333pt;}
.ya_c01072{bottom:439.613333pt;}
.y9_c01072{bottom:461.213333pt;}
.y8_c01072{bottom:482.413333pt;}
.y7_c01072{bottom:504.280000pt;}
.y6_c01072{bottom:525.613333pt;}
.y5_c01072{bottom:547.880000pt;}
.y4_c01072{bottom:569.213333pt;}
.y3_c01072{bottom:590.813333pt;}
.y2_c01072{bottom:613.480000pt;}
.y1_c01072{bottom:634.813333pt;}
.h6_c01072{height:11.733399pt;}
.h7_c01072{height:38.937500pt;}
.h2_c01072{height:73.244792pt;}
.h5_c01072{height:77.654948pt;}
.h3_c01072{height:81.031250pt;}
.h4_c01072{height:91.160156pt;}
.h1_c01072{height:683.333333pt;}
.h0_c01072{height:683.533333pt;}
.w2_c01072{width:93.222667pt;}
.w1_c01072{width:450.666667pt;}
.w0_c01072{width:450.933333pt;}
.x0_c01072{left:0.000000pt;}
.x2_c01072{left:24.000000pt;}
.x6_c01072{left:25.200000pt;}
.x3_c01072{left:26.133333pt;}
.x4_c01072{left:27.200000pt;}
.x5_c01072{left:28.400000pt;}
.x8_c01072{left:111.333333pt;}
.x1_c01072{left:125.200000pt;}
.x7_c01072{left:137.466667pt;}
.x9_c01072{left:172.000000pt;}
.xa_c01072{left:182.634888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45ddf5c28b832e60729fcd31.woff2')format("woff");}.ff1_c01073{font-family:ff1_c01073;line-height:1.568848;font-style:normal;font-weight:normal;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_bf2da2189c996f5b5f163ed5.woff2')format("woff");}.ff2_c01073{font-family:ff2_c01073;line-height:1.480469;font-style:normal;font-weight:normal;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_014016f88a8ee3082a9116f1.woff2')format("woff");}.ff3_c01073{font-family:ff3_c01073;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01073;src:url('chunks/assets/font_b01bf5bef0b10c01e1ba5a9b.woff2')format("woff");}.ff4_c01073{font-family:ff4_c01073;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01073;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01073{font-family:ff5_c01073;line-height:1.219238;font-style: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;}
.ls3_c01073{letter-spacing:-9.000000px;}
.ls2_c01073{letter-spacing:0.000000px;}
.ls5_c01073{letter-spacing:3.000000px;}
.ls4_c01073{letter-spacing:6.000000px;}
.ls1_c01073{letter-spacing:12.882000px;}
.ls0_c01073{letter-spacing:28.248000px;}
.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;}
}
.ws3_c01073{word-spacing:-39.882000px;}
.ws0_c01073{word-spacing:-21.051000px;}
.ws1_c01073{word-spacing:-17.352000px;}
.ws2_c01073{word-spacing:-1.953000px;}
.ws5_c01073{word-spacing:0.000000px;}
.ws4_c01073{word-spacing:8.307000px;}
._20_c01073{margin-left:-32.256000px;}
._1e_c01073{margin-left:-24.624000px;}
._18_c01073{margin-left:-19.944000px;}
._26_c01073{margin-left:-15.984000px;}
._24_c01073{margin-left:-14.976000px;}
._17_c01073{margin-left:-13.392000px;}
._f_c01073{margin-left:-11.115000px;}
._0_c01073{margin-left:-9.396000px;}
._1_c01073{margin-left:-7.569000px;}
._15_c01073{margin-left:-5.934000px;}
._c_c01073{margin-left:-4.536000px;}
._d_c01073{margin-left:-3.312000px;}
._10_c01073{margin-left:-2.037000px;}
._8_c01073{width:1.512000px;}
._6_c01073{width:2.820000px;}
._9_c01073{width:3.960000px;}
._a_c01073{width:5.112000px;}
._b_c01073{width:6.684000px;}
._e_c01073{width:8.316000px;}
._4_c01073{width:9.480000px;}
._7_c01073{width:11.220000px;}
._13_c01073{width:12.291000px;}
._11_c01073{width:14.013000px;}
._12_c01073{width:15.156000px;}
._5_c01073{width:16.320000px;}
._3_c01073{width:17.400000px;}
._14_c01073{width:19.827000px;}
._1a_c01073{width:23.181000px;}
._16_c01073{width:26.010000px;}
._19_c01073{width:27.840000px;}
._1c_c01073{width:30.450000px;}
._23_c01073{width:53.496000px;}
._21_c01073{width:62.784000px;}
._1b_c01073{width:116.364000px;}
._1f_c01073{width:131.760000px;}
._25_c01073{width:140.184000px;}
._1d_c01073{width:212.595000px;}
._22_c01073{width:256.620000px;}
._2_c01073{width:485.769000px;}
._27_c01073{width:629.496000px;}
.fc2_c01073{color:transparent;}
.fc1_c01073{color:rgb(128,128,128);}
.fc0_c01073{color:rgb(0,0,0);}
.fs7_c01073{font-size:48.000000px;}
.fs5_c01073{font-size:51.000000px;}
.fs6_c01073{font-size:54.000000px;}
.fs4_c01073{font-size:57.000000px;}
.fs1_c01073{font-size:60.000000px;}
.fs3_c01073{font-size:63.000000px;}
.fs2_c01073{font-size:72.000000px;}
.fs0_c01073{font-size:87.000000px;}
.y0_c01073{bottom:0.000000px;}
.y1f_c01073{bottom:3.105000px;}
.y1e_c01073{bottom:7.228371px;}
.y1d_c01073{bottom:38.565000px;}
.y1c_c01073{bottom:57.165000px;}
.y1b_c01073{bottom:82.365000px;}
.y1a_c01073{bottom:108.315000px;}
.y19_c01073{bottom:133.965000px;}
.y18_c01073{bottom:158.265000px;}
.y17_c01073{bottom:183.915000px;}
.y16_c01073{bottom:208.215000px;}
.y15_c01073{bottom:233.565000px;}
.y14_c01073{bottom:257.265000px;}
.y13_c01073{bottom:283.215000px;}
.y12_c01073{bottom:306.465000px;}
.y11_c01073{bottom:332.565000px;}
.y10_c01073{bottom:357.465000px;}
.yf_c01073{bottom:380.715000px;}
.ye_c01073{bottom:404.715000px;}
.yd_c01073{bottom:429.615000px;}
.yc_c01073{bottom:451.665000px;}
.yb_c01073{bottom:475.365000px;}
.ya_c01073{bottom:499.815000px;}
.y9_c01073{bottom:524.265000px;}
.y8_c01073{bottom:548.865000px;}
.y7_c01073{bottom:572.865000px;}
.y6_c01073{bottom:597.765000px;}
.y5_c01073{bottom:621.765000px;}
.y4_c01073{bottom:647.415000px;}
.y3_c01073{bottom:671.265000px;}
.y2_c01073{bottom:696.315000px;}
.y1_c01073{bottom:722.265000px;}
.h4_c01073{height:13.200074px;}
.h5_c01073{height:43.804688px;}
.h3_c01073{height:91.160156px;}
.h2_c01073{height:110.151855px;}
.h1_c01073{height:795.750000px;}
.h0_c01073{height:795.975000px;}
.w2_c01073{width:104.875500px;}
.w1_c01073{width:518.250000px;}
.w0_c01073{width:518.400000px;}
.x0_c01073{left:0.000000px;}
.x4_c01073{left:13.500000px;}
.x6_c01073{left:17.250000px;}
.x5_c01073{left:18.450000px;}
.xb_c01073{left:90.000000px;}
.x1_c01073{left:96.900000px;}
.x2_c01073{left:98.250000px;}
.x7_c01073{left:99.600000px;}
.x8_c01073{left:100.800000px;}
.x9_c01073{left:102.300000px;}
.xa_c01073{left:103.950000px;}
.x3_c01073{left:148.200000px;}
.xc_c01073{left:211.014267px;}
@media print{
.v0_c01073{vertical-align:0.000000pt;}
.ls3_c01073{letter-spacing:-8.000000pt;}
.ls2_c01073{letter-spacing:0.000000pt;}
.ls5_c01073{letter-spacing:2.666667pt;}
.ls4_c01073{letter-spacing:5.333333pt;}
.ls1_c01073{letter-spacing:11.450667pt;}
.ls0_c01073{letter-spacing:25.109333pt;}
.ws3_c01073{word-spacing:-35.450667pt;}
.ws0_c01073{word-spacing:-18.712000pt;}
.ws1_c01073{word-spacing:-15.424000pt;}
.ws2_c01073{word-spacing:-1.736000pt;}
.ws5_c01073{word-spacing:0.000000pt;}
.ws4_c01073{word-spacing:7.384000pt;}
._20_c01073{margin-left:-28.672000pt;}
._1e_c01073{margin-left:-21.888000pt;}
._18_c01073{margin-left:-17.728000pt;}
._26_c01073{margin-left:-14.208000pt;}
._24_c01073{margin-left:-13.312000pt;}
._17_c01073{margin-left:-11.904000pt;}
._f_c01073{margin-left:-9.880000pt;}
._0_c01073{margin-left:-8.352000pt;}
._1_c01073{margin-left:-6.728000pt;}
._15_c01073{margin-left:-5.274667pt;}
._c_c01073{margin-left:-4.032000pt;}
._d_c01073{margin-left:-2.944000pt;}
._10_c01073{margin-left:-1.810667pt;}
._8_c01073{width:1.344000pt;}
._6_c01073{width:2.506667pt;}
._9_c01073{width:3.520000pt;}
._a_c01073{width:4.544000pt;}
._b_c01073{width:5.941333pt;}
._e_c01073{width:7.392000pt;}
._4_c01073{width:8.426667pt;}
._7_c01073{width:9.973333pt;}
._13_c01073{width:10.925333pt;}
._11_c01073{width:12.456000pt;}
._12_c01073{width:13.472000pt;}
._5_c01073{width:14.506667pt;}
._3_c01073{width:15.466667pt;}
._14_c01073{width:17.624000pt;}
._1a_c01073{width:20.605333pt;}
._16_c01073{width:23.120000pt;}
._19_c01073{width:24.746667pt;}
._1c_c01073{width:27.066667pt;}
._23_c01073{width:47.552000pt;}
._21_c01073{width:55.808000pt;}
._1b_c01073{width:103.434667pt;}
._1f_c01073{width:117.120000pt;}
._25_c01073{width:124.608000pt;}
._1d_c01073{width:188.973333pt;}
._22_c01073{width:228.106667pt;}
._2_c01073{width:431.794667pt;}
._27_c01073{width:559.552000pt;}
.fs7_c01073{font-size:42.666667pt;}
.fs5_c01073{font-size:45.333333pt;}
.fs6_c01073{font-size:48.000000pt;}
.fs4_c01073{font-size:50.666667pt;}
.fs1_c01073{font-size:53.333333pt;}
.fs3_c01073{font-size:56.000000pt;}
.fs2_c01073{font-size:64.000000pt;}
.fs0_c01073{font-size:77.333333pt;}
.y0_c01073{bottom:0.000000pt;}
.y1f_c01073{bottom:2.760000pt;}
.y1e_c01073{bottom:6.425219pt;}
.y1d_c01073{bottom:34.280000pt;}
.y1c_c01073{bottom:50.813333pt;}
.y1b_c01073{bottom:73.213333pt;}
.y1a_c01073{bottom:96.280000pt;}
.y19_c01073{bottom:119.080000pt;}
.y18_c01073{bottom:140.680000pt;}
.y17_c01073{bottom:163.480000pt;}
.y16_c01073{bottom:185.080000pt;}
.y15_c01073{bottom:207.613333pt;}
.y14_c01073{bottom:228.680000pt;}
.y13_c01073{bottom:251.746667pt;}
.y12_c01073{bottom:272.413333pt;}
.y11_c01073{bottom:295.613333pt;}
.y10_c01073{bottom:317.746667pt;}
.yf_c01073{bottom:338.413333pt;}
.ye_c01073{bottom:359.746667pt;}
.yd_c01073{bottom:381.880000pt;}
.yc_c01073{bottom:401.480000pt;}
.yb_c01073{bottom:422.546667pt;}
.ya_c01073{bottom:444.280000pt;}
.y9_c01073{bottom:466.013333pt;}
.y8_c01073{bottom:487.880000pt;}
.y7_c01073{bottom:509.213333pt;}
.y6_c01073{bottom:531.346667pt;}
.y5_c01073{bottom:552.680000pt;}
.y4_c01073{bottom:575.480000pt;}
.y3_c01073{bottom:596.680000pt;}
.y2_c01073{bottom:618.946667pt;}
.y1_c01073{bottom:642.013333pt;}
.h4_c01073{height:11.733399pt;}
.h5_c01073{height:38.937500pt;}
.h3_c01073{height:81.031250pt;}
.h2_c01073{height:97.912760pt;}
.h1_c01073{height:707.333333pt;}
.h0_c01073{height:707.533333pt;}
.w2_c01073{width:93.222667pt;}
.w1_c01073{width:460.666667pt;}
.w0_c01073{width:460.800000pt;}
.x0_c01073{left:0.000000pt;}
.x4_c01073{left:12.000000pt;}
.x6_c01073{left:15.333333pt;}
.x5_c01073{left:16.400000pt;}
.xb_c01073{left:80.000000pt;}
.x1_c01073{left:86.133333pt;}
.x2_c01073{left:87.333333pt;}
.x7_c01073{left:88.533333pt;}
.x8_c01073{left:89.600000pt;}
.x9_c01073{left:90.933333pt;}
.xa_c01073{left:92.400000pt;}
.x3_c01073{left:131.733333pt;}
.xc_c01073{left:187.568237pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e31c322722d47f8c133a61a9.woff2')format("woff");}.ff1_c01074{font-family:ff1_c01074;line-height:1.568848;font-style:normal;font-weight:normal;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_83b916df32cf20a2999e4d17.woff2')format("woff");}.ff2_c01074{font-family:ff2_c01074;line-height:1.480469;font-style:normal;font-weight:normal;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_bddaeacb1b2b592ead377442.woff2')format("woff");}.ff3_c01074{font-family:ff3_c01074;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01074{font-family:ff4_c01074;line-height:1.219238;font-style: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);}
.v0_c01074{vertical-align:0.000000px;}
.ls1_c01074{letter-spacing:0.000000px;}
.ls0_c01074{letter-spacing:17.988000px;}
.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:-33.192000px;}
.ws1_c01074{word-spacing:0.000000px;}
._8_c01074{margin-left:-19.296000px;}
._f_c01074{margin-left:-13.248000px;}
._15_c01074{margin-left:-11.448000px;}
._7_c01074{margin-left:-7.488000px;}
._10_c01074{margin-left:-6.264000px;}
._11_c01074{margin-left:-4.824000px;}
._16_c01074{margin-left:-3.372000px;}
._0_c01074{margin-left:-2.304000px;}
._14_c01074{margin-left:-1.080000px;}
._4_c01074{width:1.152000px;}
._2_c01074{width:2.520000px;}
._1_c01074{width:3.528000px;}
._3_c01074{width:4.680000px;}
._5_c01074{width:5.760000px;}
._c_c01074{width:6.840000px;}
._13_c01074{width:8.040000px;}
._b_c01074{width:9.432000px;}
._d_c01074{width:11.160000px;}
._17_c01074{width:12.528000px;}
._9_c01074{width:13.704000px;}
._6_c01074{width:15.264000px;}
._18_c01074{width:16.320000px;}
._12_c01074{width:18.360000px;}
._a_c01074{width:37.752000px;}
._e_c01074{width:49.608000px;}
._19_c01074{width:207.000000px;}
.fc2_c01074{color:transparent;}
.fc1_c01074{color:rgb(128,128,128);}
.fc0_c01074{color:rgb(0,0,0);}
.fs4_c01074{font-size:48.000000px;}
.fs2_c01074{font-size:60.000000px;}
.fs3_c01074{font-size:63.000000px;}
.fs1_c01074{font-size:66.000000px;}
.fs0_c01074{font-size:72.000000px;}
.y0_c01074{bottom:0.000000px;}
.y1e_c01074{bottom:3.105000px;}
.y1d_c01074{bottom:7.228371px;}
.y1c_c01074{bottom:52.065000px;}
.y1b_c01074{bottom:79.365000px;}
.y1a_c01074{bottom:104.415000px;}
.y19_c01074{bottom:127.215000px;}
.y18_c01074{bottom:154.965000px;}
.y17_c01074{bottom:178.215000px;}
.y16_c01074{bottom:201.465000px;}
.y15_c01074{bottom:229.515000px;}
.y14_c01074{bottom:252.165000px;}
.y13_c01074{bottom:277.065000px;}
.y12_c01074{bottom:301.815000px;}
.y11_c01074{bottom:328.815000px;}
.y10_c01074{bottom:351.465000px;}
.yf_c01074{bottom:377.115000px;}
.ye_c01074{bottom:401.715000px;}
.yd_c01074{bottom:425.265000px;}
.yc_c01074{bottom:449.565000px;}
.yb_c01074{bottom:474.315000px;}
.ya_c01074{bottom:498.465000px;}
.y9_c01074{bottom:522.465000px;}
.y8_c01074{bottom:545.865000px;}
.y7_c01074{bottom:571.365000px;}
.y6_c01074{bottom:595.815000px;}
.y5_c01074{bottom:620.415000px;}
.y4_c01074{bottom:645.015000px;}
.y3_c01074{bottom:668.715000px;}
.y2_c01074{bottom:693.615000px;}
.y1_c01074{bottom:719.265000px;}
.h3_c01074{height:13.200074px;}
.h4_c01074{height:43.804688px;}
.h2_c01074{height:91.160156px;}
.h0_c01074{height:785.175000px;}
.h1_c01074{height:785.250000px;}
.w2_c01074{width:104.875500px;}
.w0_c01074{width:518.100000px;}
.w1_c01074{width:518.250000px;}
.x0_c01074{left:0.000000px;}
.x1_c01074{left:26.250000px;}
.x2_c01074{left:27.450000px;}
.x3_c01074{left:29.100000px;}
.x4_c01074{left:30.450000px;}
.x6_c01074{left:31.800000px;}
.x5_c01074{left:32.850000px;}
.x8_c01074{left:210.864258px;}
.x7_c01074{left:270.450000px;}
@media print{
.v0_c01074{vertical-align:0.000000pt;}
.ls1_c01074{letter-spacing:0.000000pt;}
.ls0_c01074{letter-spacing:15.989333pt;}
.ws0_c01074{word-spacing:-29.504000pt;}
.ws1_c01074{word-spacing:0.000000pt;}
._8_c01074{margin-left:-17.152000pt;}
._f_c01074{margin-left:-11.776000pt;}
._15_c01074{margin-left:-10.176000pt;}
._7_c01074{margin-left:-6.656000pt;}
._10_c01074{margin-left:-5.568000pt;}
._11_c01074{margin-left:-4.288000pt;}
._16_c01074{margin-left:-2.997333pt;}
._0_c01074{margin-left:-2.048000pt;}
._14_c01074{margin-left:-0.960000pt;}
._4_c01074{width:1.024000pt;}
._2_c01074{width:2.240000pt;}
._1_c01074{width:3.136000pt;}
._3_c01074{width:4.160000pt;}
._5_c01074{width:5.120000pt;}
._c_c01074{width:6.080000pt;}
._13_c01074{width:7.146667pt;}
._b_c01074{width:8.384000pt;}
._d_c01074{width:9.920000pt;}
._17_c01074{width:11.136000pt;}
._9_c01074{width:12.181333pt;}
._6_c01074{width:13.568000pt;}
._18_c01074{width:14.506667pt;}
._12_c01074{width:16.320000pt;}
._a_c01074{width:33.557333pt;}
._e_c01074{width:44.096000pt;}
._19_c01074{width:184.000000pt;}
.fs4_c01074{font-size:42.666667pt;}
.fs2_c01074{font-size:53.333333pt;}
.fs3_c01074{font-size:56.000000pt;}
.fs1_c01074{font-size:58.666667pt;}
.fs0_c01074{font-size:64.000000pt;}
.y0_c01074{bottom:0.000000pt;}
.y1e_c01074{bottom:2.760000pt;}
.y1d_c01074{bottom:6.425219pt;}
.y1c_c01074{bottom:46.280000pt;}
.y1b_c01074{bottom:70.546667pt;}
.y1a_c01074{bottom:92.813333pt;}
.y19_c01074{bottom:113.080000pt;}
.y18_c01074{bottom:137.746667pt;}
.y17_c01074{bottom:158.413333pt;}
.y16_c01074{bottom:179.080000pt;}
.y15_c01074{bottom:204.013333pt;}
.y14_c01074{bottom:224.146667pt;}
.y13_c01074{bottom:246.280000pt;}
.y12_c01074{bottom:268.280000pt;}
.y11_c01074{bottom:292.280000pt;}
.y10_c01074{bottom:312.413333pt;}
.yf_c01074{bottom:335.213333pt;}
.ye_c01074{bottom:357.080000pt;}
.yd_c01074{bottom:378.013333pt;}
.yc_c01074{bottom:399.613333pt;}
.yb_c01074{bottom:421.613333pt;}
.ya_c01074{bottom:443.080000pt;}
.y9_c01074{bottom:464.413333pt;}
.y8_c01074{bottom:485.213333pt;}
.y7_c01074{bottom:507.880000pt;}
.y6_c01074{bottom:529.613333pt;}
.y5_c01074{bottom:551.480000pt;}
.y4_c01074{bottom:573.346667pt;}
.y3_c01074{bottom:594.413333pt;}
.y2_c01074{bottom:616.546667pt;}
.y1_c01074{bottom:639.346667pt;}
.h3_c01074{height:11.733399pt;}
.h4_c01074{height:38.937500pt;}
.h2_c01074{height:81.031250pt;}
.h0_c01074{height:697.933333pt;}
.h1_c01074{height:698.000000pt;}
.w2_c01074{width:93.222667pt;}
.w0_c01074{width:460.533333pt;}
.w1_c01074{width:460.666667pt;}
.x0_c01074{left:0.000000pt;}
.x1_c01074{left:23.333333pt;}
.x2_c01074{left:24.400000pt;}
.x3_c01074{left:25.866667pt;}
.x4_c01074{left:27.066667pt;}
.x6_c01074{left:28.266667pt;}
.x5_c01074{left:29.200000pt;}
.x8_c01074{left:187.434896pt;}
.x7_c01074{left:240.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f5d02b397ca2c9298ca6b56c.woff2')format("woff");}.ff1_c01075{font-family:ff1_c01075;line-height:1.480469;font-style:normal;font-weight:normal;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_f9929f91509fb80591d39c10.woff2')format("woff");}.ff2_c01075{font-family:ff2_c01075;line-height:1.568848;font-style:normal;font-weight:normal;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_7ae5622c6833bb833a007fee.woff2')format("woff");}.ff3_c01075{font-family:ff3_c01075;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01075;src:url('chunks/assets/font_09e12fdfd45079e6f108136c.woff2')format("woff");}.ff4_c01075{font-family:ff4_c01075;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01075;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01075{font-family:ff5_c01075;line-height:1.219238;font-style: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;}
.ls7_c01075{letter-spacing:-9.000000px;}
.ls5_c01075{letter-spacing:0.000000px;}
.ls4_c01075{letter-spacing:1.248000px;}
.ls3_c01075{letter-spacing:2.568000px;}
.ls1_c01075{letter-spacing:3.000000px;}
.ls6_c01075{letter-spacing:6.000000px;}
.ls2_c01075{letter-spacing:10.788000px;}
.ls0_c01075{letter-spacing:14.094000px;}
.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:-21.906000px;}
.ws1_c01075{word-spacing:-17.352000px;}
.ws2_c01075{word-spacing:-9.963000px;}
.ws4_c01075{word-spacing:0.000000px;}
.ws3_c01075{word-spacing:2.160000px;}
._16_c01075{margin-left:-26.529000px;}
._d_c01075{margin-left:-6.258000px;}
._b_c01075{margin-left:-4.878000px;}
._4_c01075{margin-left:-2.808000px;}
._9_c01075{margin-left:-1.665000px;}
._5_c01075{width:1.122000px;}
._6_c01075{width:2.706000px;}
._2_c01075{width:4.464000px;}
._0_c01075{width:6.408000px;}
._3_c01075{width:8.208000px;}
._7_c01075{width:9.255000px;}
._1_c01075{width:10.584000px;}
._8_c01075{width:11.655000px;}
._c_c01075{width:12.834000px;}
._e_c01075{width:13.896000px;}
._18_c01075{width:15.192000px;}
._a_c01075{width:17.100000px;}
._f_c01075{width:19.374000px;}
._15_c01075{width:20.526000px;}
._19_c01075{width:22.359000px;}
._11_c01075{width:23.580000px;}
._14_c01075{width:25.506000px;}
._13_c01075{width:27.102000px;}
._12_c01075{width:29.265000px;}
._17_c01075{width:30.537000px;}
._1a_c01075{width:34.560000px;}
._10_c01075{width:142.740000px;}
._1b_c01075{width:1593.936000px;}
.fc2_c01075{color:transparent;}
.fc1_c01075{color:rgb(128,128,128);}
.fc0_c01075{color:rgb(0,0,0);}
.fs4_c01075{font-size:48.000000px;}
.fs2_c01075{font-size:63.000000px;}
.fs1_c01075{font-size:66.000000px;}
.fs0_c01075{font-size:72.000000px;}
.fs3_c01075{font-size:84.000000px;}
.y0_c01075{bottom:0.000000px;}
.y1f_c01075{bottom:3.105000px;}
.y1e_c01075{bottom:7.228363px;}
.y1d_c01075{bottom:48.600000px;}
.y1c_c01075{bottom:72.300000px;}
.y1b_c01075{bottom:97.200000px;}
.y1a_c01075{bottom:122.550000px;}
.y19_c01075{bottom:147.450000px;}
.y18_c01075{bottom:171.900000px;}
.y17_c01075{bottom:197.400000px;}
.y16_c01075{bottom:221.700000px;}
.y15_c01075{bottom:246.750000px;}
.y14_c01075{bottom:271.800000px;}
.y13_c01075{bottom:297.900000px;}
.y12_c01075{bottom:322.650000px;}
.y11_c01075{bottom:346.950000px;}
.y10_c01075{bottom:370.950000px;}
.yf_c01075{bottom:394.500000px;}
.ye_c01075{bottom:418.200000px;}
.yd_c01075{bottom:443.250000px;}
.yc_c01075{bottom:465.750000px;}
.yb_c01075{bottom:493.050000px;}
.ya_c01075{bottom:517.050000px;}
.y9_c01075{bottom:540.450000px;}
.y8_c01075{bottom:566.100000px;}
.y7_c01075{bottom:590.700000px;}
.y6_c01075{bottom:615.300000px;}
.y5_c01075{bottom:639.300000px;}
.y4_c01075{bottom:664.650000px;}
.y3_c01075{bottom:688.950000px;}
.y2_c01075{bottom:714.450000px;}
.y1_c01075{bottom:738.900000px;}
.h5_c01075{height:13.200074px;}
.h6_c01075{height:43.804688px;}
.h4_c01075{height:79.765137px;}
.h3_c01075{height:83.563477px;}
.h2_c01075{height:91.160156px;}
.h1_c01075{height:781.500000px;}
.h0_c01075{height:781.650000px;}
.w2_c01075{width:104.875500px;}
.w0_c01075{width:500.850000px;}
.w1_c01075{width:501.000000px;}
.x0_c01075{left:0.000000px;}
.x9_c01075{left:8.400000px;}
.x8_c01075{left:10.050000px;}
.xd_c01075{left:39.450000px;}
.xc_c01075{left:85.050000px;}
.xb_c01075{left:87.450000px;}
.xa_c01075{left:89.100000px;}
.x7_c01075{left:90.150000px;}
.x6_c01075{left:91.500000px;}
.x5_c01075{left:93.150000px;}
.x4_c01075{left:94.500000px;}
.x3_c01075{left:96.450000px;}
.x2_c01075{left:97.800000px;}
.xe_c01075{left:202.239258px;}
.x1_c01075{left:216.600000px;}
@media print{
.v0_c01075{vertical-align:0.000000pt;}
.ls7_c01075{letter-spacing:-8.000000pt;}
.ls5_c01075{letter-spacing:0.000000pt;}
.ls4_c01075{letter-spacing:1.109333pt;}
.ls3_c01075{letter-spacing:2.282667pt;}
.ls1_c01075{letter-spacing:2.666667pt;}
.ls6_c01075{letter-spacing:5.333333pt;}
.ls2_c01075{letter-spacing:9.589333pt;}
.ls0_c01075{letter-spacing:12.528000pt;}
.ws0_c01075{word-spacing:-19.472000pt;}
.ws1_c01075{word-spacing:-15.424000pt;}
.ws2_c01075{word-spacing:-8.856000pt;}
.ws4_c01075{word-spacing:0.000000pt;}
.ws3_c01075{word-spacing:1.920000pt;}
._16_c01075{margin-left:-23.581333pt;}
._d_c01075{margin-left:-5.562667pt;}
._b_c01075{margin-left:-4.336000pt;}
._4_c01075{margin-left:-2.496000pt;}
._9_c01075{margin-left:-1.480000pt;}
._5_c01075{width:0.997333pt;}
._6_c01075{width:2.405333pt;}
._2_c01075{width:3.968000pt;}
._0_c01075{width:5.696000pt;}
._3_c01075{width:7.296000pt;}
._7_c01075{width:8.226667pt;}
._1_c01075{width:9.408000pt;}
._8_c01075{width:10.360000pt;}
._c_c01075{width:11.408000pt;}
._e_c01075{width:12.352000pt;}
._18_c01075{width:13.504000pt;}
._a_c01075{width:15.200000pt;}
._f_c01075{width:17.221333pt;}
._15_c01075{width:18.245333pt;}
._19_c01075{width:19.874667pt;}
._11_c01075{width:20.960000pt;}
._14_c01075{width:22.672000pt;}
._13_c01075{width:24.090667pt;}
._12_c01075{width:26.013333pt;}
._17_c01075{width:27.144000pt;}
._1a_c01075{width:30.720000pt;}
._10_c01075{width:126.880000pt;}
._1b_c01075{width:1416.832000pt;}
.fs4_c01075{font-size:42.666667pt;}
.fs2_c01075{font-size:56.000000pt;}
.fs1_c01075{font-size:58.666667pt;}
.fs0_c01075{font-size:64.000000pt;}
.fs3_c01075{font-size:74.666667pt;}
.y0_c01075{bottom:0.000000pt;}
.y1f_c01075{bottom:2.760000pt;}
.y1e_c01075{bottom:6.425212pt;}
.y1d_c01075{bottom:43.200000pt;}
.y1c_c01075{bottom:64.266667pt;}
.y1b_c01075{bottom:86.400000pt;}
.y1a_c01075{bottom:108.933333pt;}
.y19_c01075{bottom:131.066667pt;}
.y18_c01075{bottom:152.800000pt;}
.y17_c01075{bottom:175.466667pt;}
.y16_c01075{bottom:197.066667pt;}
.y15_c01075{bottom:219.333333pt;}
.y14_c01075{bottom:241.600000pt;}
.y13_c01075{bottom:264.800000pt;}
.y12_c01075{bottom:286.800000pt;}
.y11_c01075{bottom:308.400000pt;}
.y10_c01075{bottom:329.733333pt;}
.yf_c01075{bottom:350.666667pt;}
.ye_c01075{bottom:371.733333pt;}
.yd_c01075{bottom:394.000000pt;}
.yc_c01075{bottom:414.000000pt;}
.yb_c01075{bottom:438.266667pt;}
.ya_c01075{bottom:459.600000pt;}
.y9_c01075{bottom:480.400000pt;}
.y8_c01075{bottom:503.200000pt;}
.y7_c01075{bottom:525.066667pt;}
.y6_c01075{bottom:546.933333pt;}
.y5_c01075{bottom:568.266667pt;}
.y4_c01075{bottom:590.800000pt;}
.y3_c01075{bottom:612.400000pt;}
.y2_c01075{bottom:635.066667pt;}
.y1_c01075{bottom:656.800000pt;}
.h5_c01075{height:11.733399pt;}
.h6_c01075{height:38.937500pt;}
.h4_c01075{height:70.902344pt;}
.h3_c01075{height:74.278646pt;}
.h2_c01075{height:81.031250pt;}
.h1_c01075{height:694.666667pt;}
.h0_c01075{height:694.800000pt;}
.w2_c01075{width:93.222667pt;}
.w0_c01075{width:445.200000pt;}
.w1_c01075{width:445.333333pt;}
.x0_c01075{left:0.000000pt;}
.x9_c01075{left:7.466667pt;}
.x8_c01075{left:8.933333pt;}
.xd_c01075{left:35.066667pt;}
.xc_c01075{left:75.600000pt;}
.xb_c01075{left:77.733333pt;}
.xa_c01075{left:79.200000pt;}
.x7_c01075{left:80.133333pt;}
.x6_c01075{left:81.333333pt;}
.x5_c01075{left:82.800000pt;}
.x4_c01075{left:84.000000pt;}
.x3_c01075{left:85.733333pt;}
.x2_c01075{left:86.933333pt;}
.xe_c01075{left:179.768229pt;}
.x1_c01075{left:192.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c40d1e452b7d80c92b9e0d1c.woff2')format("woff");}.ff1_c01076{font-family:ff1_c01076;line-height:1.480469;font-style:normal;font-weight:normal;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_57233a5ab6655d388e5b4123.woff2')format("woff");}.ff2_c01076{font-family:ff2_c01076;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01076;src:url('chunks/assets/font_61042d72512d8097febd52fc.woff2')format("woff");}.ff3_c01076{font-family:ff3_c01076;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01076;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01076{font-family:ff4_c01076;line-height:1.219238;font-style: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;}
.ls1_c01076{letter-spacing:-3.000000px;}
.ls2_c01076{letter-spacing:0.000000px;}
.ls0_c01076{letter-spacing:10.800000px;}
.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;}
}
.ws2_c01076{word-spacing:-20.250000px;}
.ws0_c01076{word-spacing:-17.352000px;}
.ws1_c01076{word-spacing:-14.460000px;}
.ws3_c01076{word-spacing:0.000000px;}
._13_c01076{margin-left:-9.612000px;}
._5_c01076{margin-left:-7.830000px;}
._d_c01076{margin-left:-5.145000px;}
._b_c01076{margin-left:-3.771000px;}
._c_c01076{margin-left:-2.517000px;}
._8_c01076{margin-left:-1.425000px;}
._0_c01076{width:1.044000px;}
._2_c01076{width:2.697000px;}
._1_c01076{width:4.002000px;}
._6_c01076{width:5.112000px;}
._7_c01076{width:6.846000px;}
._11_c01076{width:8.232000px;}
._4_c01076{width:9.483000px;}
._10_c01076{width:10.890000px;}
._a_c01076{width:12.240000px;}
._f_c01076{width:13.302000px;}
._9_c01076{width:15.009000px;}
._15_c01076{width:16.200000px;}
._14_c01076{width:18.747000px;}
._e_c01076{width:20.190000px;}
._12_c01076{width:22.374000px;}
._3_c01076{width:335.679000px;}
._16_c01076{width:344.175000px;}
.fc2_c01076{color:transparent;}
.fc1_c01076{color:rgb(128,128,128);}
.fc0_c01076{color:rgb(0,0,0);}
.fs5_c01076{font-size:48.000000px;}
.fs3_c01076{font-size:60.000000px;}
.fs2_c01076{font-size:63.000000px;}
.fs1_c01076{font-size:72.000000px;}
.fs4_c01076{font-size:81.000000px;}
.fs0_c01076{font-size:87.000000px;}
.y0_c01076{bottom:0.000000px;}
.y1f_c01076{bottom:3.105000px;}
.y1e_c01076{bottom:7.228355px;}
.y1d_c01076{bottom:42.435000px;}
.y1c_c01076{bottom:69.135000px;}
.y1b_c01076{bottom:96.435000px;}
.y1a_c01076{bottom:119.835000px;}
.y19_c01076{bottom:145.035000px;}
.y18_c01076{bottom:168.435000px;}
.y17_c01076{bottom:194.985000px;}
.y16_c01076{bottom:220.635000px;}
.y15_c01076{bottom:244.935000px;}
.y14_c01076{bottom:269.985000px;}
.y13_c01076{bottom:294.885000px;}
.y12_c01076{bottom:318.885000px;}
.y11_c01076{bottom:342.135000px;}
.y10_c01076{bottom:365.835000px;}
.yf_c01076{bottom:392.385000px;}
.ye_c01076{bottom:415.785000px;}
.yd_c01076{bottom:439.785000px;}
.yc_c01076{bottom:464.685000px;}
.yb_c01076{bottom:488.835000px;}
.ya_c01076{bottom:512.685000px;}
.y9_c01076{bottom:536.535000px;}
.y8_c01076{bottom:561.135000px;}
.y7_c01076{bottom:585.435000px;}
.y6_c01076{bottom:609.885000px;}
.y5_c01076{bottom:634.485000px;}
.y4_c01076{bottom:658.335000px;}
.y3_c01076{bottom:683.685000px;}
.y2_c01076{bottom:707.985000px;}
.y1_c01076{bottom:733.335000px;}
.h6_c01076{height:13.200074px;}
.h7_c01076{height:43.804688px;}
.h5_c01076{height:79.497070px;}
.h4_c01076{height:79.765137px;}
.h3_c01076{height:91.160156px;}
.h2_c01076{height:110.151855px;}
.h1_c01076{height:786.000000px;}
.h0_c01076{height:786.225000px;}
.w1_c01076{width:104.875500px;}
.w0_c01076{width:519.750000px;}
.x0_c01076{left:0.000000px;}
.x4_c01076{left:30.450000px;}
.x2_c01076{left:35.100000px;}
.x3_c01076{left:36.750000px;}
.x1_c01076{left:190.950000px;}
.x6_c01076{left:211.689240px;}
.x5_c01076{left:214.350000px;}
@media print{
.v0_c01076{vertical-align:0.000000pt;}
.ls1_c01076{letter-spacing:-2.666667pt;}
.ls2_c01076{letter-spacing:0.000000pt;}
.ls0_c01076{letter-spacing:9.600000pt;}
.ws2_c01076{word-spacing:-18.000000pt;}
.ws0_c01076{word-spacing:-15.424000pt;}
.ws1_c01076{word-spacing:-12.853333pt;}
.ws3_c01076{word-spacing:0.000000pt;}
._13_c01076{margin-left:-8.544000pt;}
._5_c01076{margin-left:-6.960000pt;}
._d_c01076{margin-left:-4.573333pt;}
._b_c01076{margin-left:-3.352000pt;}
._c_c01076{margin-left:-2.237333pt;}
._8_c01076{margin-left:-1.266667pt;}
._0_c01076{width:0.928000pt;}
._2_c01076{width:2.397333pt;}
._1_c01076{width:3.557333pt;}
._6_c01076{width:4.544000pt;}
._7_c01076{width:6.085333pt;}
._11_c01076{width:7.317333pt;}
._4_c01076{width:8.429333pt;}
._10_c01076{width:9.680000pt;}
._a_c01076{width:10.880000pt;}
._f_c01076{width:11.824000pt;}
._9_c01076{width:13.341333pt;}
._15_c01076{width:14.400000pt;}
._14_c01076{width:16.664000pt;}
._e_c01076{width:17.946667pt;}
._12_c01076{width:19.888000pt;}
._3_c01076{width:298.381333pt;}
._16_c01076{width:305.933333pt;}
.fs5_c01076{font-size:42.666667pt;}
.fs3_c01076{font-size:53.333333pt;}
.fs2_c01076{font-size:56.000000pt;}
.fs1_c01076{font-size:64.000000pt;}
.fs4_c01076{font-size:72.000000pt;}
.fs0_c01076{font-size:77.333333pt;}
.y0_c01076{bottom:0.000000pt;}
.y1f_c01076{bottom:2.760000pt;}
.y1e_c01076{bottom:6.425204pt;}
.y1d_c01076{bottom:37.720000pt;}
.y1c_c01076{bottom:61.453333pt;}
.y1b_c01076{bottom:85.720000pt;}
.y1a_c01076{bottom:106.520000pt;}
.y19_c01076{bottom:128.920000pt;}
.y18_c01076{bottom:149.720000pt;}
.y17_c01076{bottom:173.320000pt;}
.y16_c01076{bottom:196.120000pt;}
.y15_c01076{bottom:217.720000pt;}
.y14_c01076{bottom:239.986667pt;}
.y13_c01076{bottom:262.120000pt;}
.y12_c01076{bottom:283.453333pt;}
.y11_c01076{bottom:304.120000pt;}
.y10_c01076{bottom:325.186667pt;}
.yf_c01076{bottom:348.786667pt;}
.ye_c01076{bottom:369.586667pt;}
.yd_c01076{bottom:390.920000pt;}
.yc_c01076{bottom:413.053333pt;}
.yb_c01076{bottom:434.520000pt;}
.ya_c01076{bottom:455.720000pt;}
.y9_c01076{bottom:476.920000pt;}
.y8_c01076{bottom:498.786667pt;}
.y7_c01076{bottom:520.386667pt;}
.y6_c01076{bottom:542.120000pt;}
.y5_c01076{bottom:563.986667pt;}
.y4_c01076{bottom:585.186667pt;}
.y3_c01076{bottom:607.720000pt;}
.y2_c01076{bottom:629.320000pt;}
.y1_c01076{bottom:651.853333pt;}
.h6_c01076{height:11.733399pt;}
.h7_c01076{height:38.937500pt;}
.h5_c01076{height:70.664062pt;}
.h4_c01076{height:70.902344pt;}
.h3_c01076{height:81.031250pt;}
.h2_c01076{height:97.912760pt;}
.h1_c01076{height:698.666667pt;}
.h0_c01076{height:698.866667pt;}
.w1_c01076{width:93.222667pt;}
.w0_c01076{width:462.000000pt;}
.x0_c01076{left:0.000000pt;}
.x4_c01076{left:27.066667pt;}
.x2_c01076{left:31.200000pt;}
.x3_c01076{left:32.666667pt;}
.x1_c01076{left:169.733333pt;}
.x6_c01076{left:188.168213pt;}
.x5_c01076{left:190.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3cfae45890a76e605f7ad549.woff2')format("woff");}.ff1_c01077{font-family:ff1_c01077;line-height:1.568848;font-style:normal;font-weight:normal;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_89f02623ef22b86fd7cff08a.woff2')format("woff");}.ff2_c01077{font-family:ff2_c01077;line-height:1.480469;font-style:normal;font-weight:normal;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_e753a1c0bff7ff7e6c52be38.woff2')format("woff");}.ff3_c01077{font-family:ff3_c01077;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01077{font-family:ff4_c01077;line-height:1.219238;font-style: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);}
.v0_c01077{vertical-align:0.000000px;}
.ls2_c01077{letter-spacing:-3.000000px;}
.ls1_c01077{letter-spacing:0.000000px;}
.ls0_c01077{letter-spacing:3.000000px;}
.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;}
}
.ws1_c01077{word-spacing:-30.843000px;}
.ws0_c01077{word-spacing:-20.352000px;}
.ws2_c01077{word-spacing:-18.075000px;}
.ws3_c01077{word-spacing:0.000000px;}
._16_c01077{margin-left:-36.360000px;}
._15_c01077{margin-left:-13.428000px;}
._18_c01077{margin-left:-10.656000px;}
._13_c01077{margin-left:-8.508000px;}
._12_c01077{margin-left:-6.996000px;}
._e_c01077{margin-left:-4.968000px;}
._b_c01077{margin-left:-3.816000px;}
._d_c01077{margin-left:-2.208000px;}
._0_c01077{margin-left:-1.044000px;}
._c_c01077{width:1.392000px;}
._a_c01077{width:2.448000px;}
._8_c01077{width:3.888000px;}
._9_c01077{width:4.992000px;}
._6_c01077{width:6.360000px;}
._5_c01077{width:7.680000px;}
._f_c01077{width:9.456000px;}
._10_c01077{width:10.872000px;}
._7_c01077{width:12.261000px;}
._2_c01077{width:13.659000px;}
._4_c01077{width:15.780000px;}
._11_c01077{width:22.464000px;}
._17_c01077{width:33.948000px;}
._14_c01077{width:36.117000px;}
._1_c01077{width:66.381000px;}
._3_c01077{width:373.260000px;}
.fc2_c01077{color:transparent;}
.fc1_c01077{color:rgb(128,128,128);}
.fc0_c01077{color:rgb(0,0,0);}
.fs5_c01077{font-size:48.000000px;}
.fs1_c01077{font-size:60.000000px;}
.fs2_c01077{font-size:72.000000px;}
.fs4_c01077{font-size:75.000000px;}
.fs3_c01077{font-size:78.000000px;}
.fs0_c01077{font-size:87.000000px;}
.y0_c01077{bottom:0.000000px;}
.y1f_c01077{bottom:3.105000px;}
.y1e_c01077{bottom:7.228363px;}
.y1d_c01077{bottom:21.150000px;}
.y1c_c01077{bottom:61.800000px;}
.y1b_c01077{bottom:82.800000px;}
.y1a_c01077{bottom:107.400000px;}
.y19_c01077{bottom:132.000000px;}
.y18_c01077{bottom:157.500000px;}
.y17_c01077{bottom:181.500000px;}
.y16_c01077{bottom:206.550000px;}
.y15_c01077{bottom:231.750000px;}
.y14_c01077{bottom:257.400000px;}
.y13_c01077{bottom:281.850000px;}
.y12_c01077{bottom:306.900000px;}
.y11_c01077{bottom:330.150000px;}
.y10_c01077{bottom:354.750000px;}
.yf_c01077{bottom:378.000000px;}
.ye_c01077{bottom:402.000000px;}
.yd_c01077{bottom:426.300000px;}
.yc_c01077{bottom:450.000000px;}
.yb_c01077{bottom:474.750000px;}
.ya_c01077{bottom:498.900000px;}
.y9_c01077{bottom:523.500000px;}
.y8_c01077{bottom:547.800000px;}
.y7_c01077{bottom:572.850000px;}
.y6_c01077{bottom:597.450000px;}
.y5_c01077{bottom:622.050000px;}
.y4_c01077{bottom:646.350000px;}
.y3_c01077{bottom:670.950000px;}
.y2_c01077{bottom:693.900000px;}
.y1_c01077{bottom:721.650000px;}
.h7_c01077{height:13.200074px;}
.h8_c01077{height:43.804688px;}
.h3_c01077{height:91.160156px;}
.h5_c01077{height:92.829000px;}
.h6_c01077{height:94.958496px;}
.h4_c01077{height:98.756836px;}
.h2_c01077{height:110.151855px;}
.h1_c01077{height:774.750000px;}
.h0_c01077{height:774.900000px;}
.w2_c01077{width:104.875500px;}
.w1_c01077{width:493.500000px;}
.w0_c01077{width:493.800000px;}
.x0_c01077{left:0.000000px;}
.x4_c01077{left:75.600000px;}
.x3_c01077{left:76.650000px;}
.x2_c01077{left:77.700000px;}
.x1_c01077{left:78.750000px;}
.x6_c01077{left:198.714249px;}
.x5_c01077{left:220.350000px;}
@media print{
.v0_c01077{vertical-align:0.000000pt;}
.ls2_c01077{letter-spacing:-2.666667pt;}
.ls1_c01077{letter-spacing:0.000000pt;}
.ls0_c01077{letter-spacing:2.666667pt;}
.ws1_c01077{word-spacing:-27.416000pt;}
.ws0_c01077{word-spacing:-18.090667pt;}
.ws2_c01077{word-spacing:-16.066667pt;}
.ws3_c01077{word-spacing:0.000000pt;}
._16_c01077{margin-left:-32.320000pt;}
._15_c01077{margin-left:-11.936000pt;}
._18_c01077{margin-left:-9.472000pt;}
._13_c01077{margin-left:-7.562667pt;}
._12_c01077{margin-left:-6.218667pt;}
._e_c01077{margin-left:-4.416000pt;}
._b_c01077{margin-left:-3.392000pt;}
._d_c01077{margin-left:-1.962667pt;}
._0_c01077{margin-left:-0.928000pt;}
._c_c01077{width:1.237333pt;}
._a_c01077{width:2.176000pt;}
._8_c01077{width:3.456000pt;}
._9_c01077{width:4.437333pt;}
._6_c01077{width:5.653333pt;}
._5_c01077{width:6.826667pt;}
._f_c01077{width:8.405333pt;}
._10_c01077{width:9.664000pt;}
._7_c01077{width:10.898667pt;}
._2_c01077{width:12.141333pt;}
._4_c01077{width:14.026667pt;}
._11_c01077{width:19.968000pt;}
._17_c01077{width:30.176000pt;}
._14_c01077{width:32.104000pt;}
._1_c01077{width:59.005333pt;}
._3_c01077{width:331.786667pt;}
.fs5_c01077{font-size:42.666667pt;}
.fs1_c01077{font-size:53.333333pt;}
.fs2_c01077{font-size:64.000000pt;}
.fs4_c01077{font-size:66.666667pt;}
.fs3_c01077{font-size:69.333333pt;}
.fs0_c01077{font-size:77.333333pt;}
.y0_c01077{bottom:0.000000pt;}
.y1f_c01077{bottom:2.760000pt;}
.y1e_c01077{bottom:6.425212pt;}
.y1d_c01077{bottom:18.800000pt;}
.y1c_c01077{bottom:54.933333pt;}
.y1b_c01077{bottom:73.600000pt;}
.y1a_c01077{bottom:95.466667pt;}
.y19_c01077{bottom:117.333333pt;}
.y18_c01077{bottom:140.000000pt;}
.y17_c01077{bottom:161.333333pt;}
.y16_c01077{bottom:183.600000pt;}
.y15_c01077{bottom:206.000000pt;}
.y14_c01077{bottom:228.800000pt;}
.y13_c01077{bottom:250.533333pt;}
.y12_c01077{bottom:272.800000pt;}
.y11_c01077{bottom:293.466667pt;}
.y10_c01077{bottom:315.333333pt;}
.yf_c01077{bottom:336.000000pt;}
.ye_c01077{bottom:357.333333pt;}
.yd_c01077{bottom:378.933333pt;}
.yc_c01077{bottom:400.000000pt;}
.yb_c01077{bottom:422.000000pt;}
.ya_c01077{bottom:443.466667pt;}
.y9_c01077{bottom:465.333333pt;}
.y8_c01077{bottom:486.933333pt;}
.y7_c01077{bottom:509.200000pt;}
.y6_c01077{bottom:531.066667pt;}
.y5_c01077{bottom:552.933333pt;}
.y4_c01077{bottom:574.533333pt;}
.y3_c01077{bottom:596.400000pt;}
.y2_c01077{bottom:616.800000pt;}
.y1_c01077{bottom:641.466667pt;}
.h7_c01077{height:11.733399pt;}
.h8_c01077{height:38.937500pt;}
.h3_c01077{height:81.031250pt;}
.h5_c01077{height:82.514667pt;}
.h6_c01077{height:84.407552pt;}
.h4_c01077{height:87.783854pt;}
.h2_c01077{height:97.912760pt;}
.h1_c01077{height:688.666667pt;}
.h0_c01077{height:688.800000pt;}
.w2_c01077{width:93.222667pt;}
.w1_c01077{width:438.666667pt;}
.w0_c01077{width:438.933333pt;}
.x0_c01077{left:0.000000pt;}
.x4_c01077{left:67.200000pt;}
.x3_c01077{left:68.133333pt;}
.x2_c01077{left:69.066667pt;}
.x1_c01077{left:70.000000pt;}
.x6_c01077{left:176.634888pt;}
.x5_c01077{left:195.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6cc489435b0d445b3d5ea8ab.woff2')format("woff");}.ff1_c01078{font-family:ff1_c01078;line-height:1.480469;font-style:normal;font-weight:normal;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_4c0bab56035bfed350b231e8.woff2')format("woff");}.ff2_c01078{font-family:ff2_c01078;line-height:1.284180;font-style:normal;font-weight:normal;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_5799ec6416159f4eb5bfb0f9.woff2')format("woff");}.ff3_c01078{font-family:ff3_c01078;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01078;src:url('chunks/assets/font_f4a126c4a17653038869323a.woff2')format("woff");}.ff4_c01078{font-family:ff4_c01078;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01078;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01078{font-family:ff5_c01078;line-height:1.219238;font-style: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;}
.ls0_c01078{letter-spacing:9.600000px;}
.ls1_c01078{letter-spacing:41.388000px;}
.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:-17.352000px;}
.ws1_c01078{word-spacing:0.000000px;}
._1a_c01078{margin-left:-30.936000px;}
._15_c01078{margin-left:-17.496000px;}
._12_c01078{margin-left:-11.088000px;}
._10_c01078{margin-left:-8.784000px;}
._11_c01078{margin-left:-6.624000px;}
._9_c01078{margin-left:-5.112000px;}
._13_c01078{margin-left:-4.104000px;}
._a_c01078{margin-left:-3.096000px;}
._b_c01078{margin-left:-1.080000px;}
._c_c01078{width:1.080000px;}
._8_c01078{width:2.088000px;}
._2_c01078{width:3.456000px;}
._d_c01078{width:4.464000px;}
._1_c01078{width:5.904000px;}
._6_c01078{width:7.488000px;}
._17_c01078{width:8.712000px;}
._3_c01078{width:10.008000px;}
._16_c01078{width:11.664000px;}
._0_c01078{width:12.960000px;}
._5_c01078{width:14.400000px;}
._4_c01078{width:15.480000px;}
._e_c01078{width:20.592000px;}
._19_c01078{width:22.320000px;}
._14_c01078{width:23.664000px;}
._18_c01078{width:30.672000px;}
._f_c01078{width:251.424000px;}
._1b_c01078{width:254.160000px;}
._7_c01078{width:341.784000px;}
.fc2_c01078{color:transparent;}
.fc1_c01078{color:rgb(128,128,128);}
.fc0_c01078{color:rgb(0,0,0);}
.fs3_c01078{font-size:48.000000px;}
.fs2_c01078{font-size:63.000000px;}
.fs0_c01078{font-size:72.000000px;}
.fs1_c01078{font-size:78.000000px;}
.y0_c01078{bottom:0.000000px;}
.y1f_c01078{bottom:3.105000px;}
.y1e_c01078{bottom:7.228363px;}
.y1d_c01078{bottom:38.850000px;}
.y1c_c01078{bottom:65.850000px;}
.y1b_c01078{bottom:91.800000px;}
.y1a_c01078{bottom:115.050000px;}
.y19_c01078{bottom:140.700000px;}
.y18_c01078{bottom:165.450000px;}
.y17_c01078{bottom:188.100000px;}
.y16_c01078{bottom:214.950000px;}
.y15_c01078{bottom:239.250000px;}
.y14_c01078{bottom:262.650000px;}
.y13_c01078{bottom:289.650000px;}
.y12_c01078{bottom:313.650000px;}
.y11_c01078{bottom:337.200000px;}
.y10_c01078{bottom:362.250000px;}
.yf_c01078{bottom:385.500000px;}
.ye_c01078{bottom:410.700000px;}
.yd_c01078{bottom:434.700000px;}
.yc_c01078{bottom:459.450000px;}
.yb_c01078{bottom:483.750000px;}
.ya_c01078{bottom:508.050000px;}
.y9_c01078{bottom:531.600000px;}
.y8_c01078{bottom:555.600000px;}
.y7_c01078{bottom:580.800000px;}
.y6_c01078{bottom:604.800000px;}
.y5_c01078{bottom:629.550000px;}
.y4_c01078{bottom:654.750000px;}
.y3_c01078{bottom:679.350000px;}
.y2_c01078{bottom:703.800000px;}
.y1_c01078{bottom:728.400000px;}
.h3_c01078{height:13.200074px;}
.h4_c01078{height:43.804688px;}
.h1_c01078{height:84.269531px;}
.h2_c01078{height:91.160156px;}
.h0_c01078{height:783.000000px;}
.w2_c01078{width:104.875500px;}
.w0_c01078{width:530.850000px;}
.w1_c01078{width:531.000000px;}
.x0_c01078{left:0.000000px;}
.x7_c01078{left:32.100000px;}
.x6_c01078{left:34.500000px;}
.x5_c01078{left:35.550000px;}
.x2_c01078{left:36.750000px;}
.x3_c01078{left:38.100000px;}
.x4_c01078{left:40.050000px;}
.x1_c01078{left:158.550000px;}
.x9_c01078{left:217.239258px;}
.x8_c01078{left:252.750000px;}
@media print{
.v0_c01078{vertical-align:0.000000pt;}
.ls2_c01078{letter-spacing:0.000000pt;}
.ls0_c01078{letter-spacing:8.533333pt;}
.ls1_c01078{letter-spacing:36.789333pt;}
.ws0_c01078{word-spacing:-15.424000pt;}
.ws1_c01078{word-spacing:0.000000pt;}
._1a_c01078{margin-left:-27.498667pt;}
._15_c01078{margin-left:-15.552000pt;}
._12_c01078{margin-left:-9.856000pt;}
._10_c01078{margin-left:-7.808000pt;}
._11_c01078{margin-left:-5.888000pt;}
._9_c01078{margin-left:-4.544000pt;}
._13_c01078{margin-left:-3.648000pt;}
._a_c01078{margin-left:-2.752000pt;}
._b_c01078{margin-left:-0.960000pt;}
._c_c01078{width:0.960000pt;}
._8_c01078{width:1.856000pt;}
._2_c01078{width:3.072000pt;}
._d_c01078{width:3.968000pt;}
._1_c01078{width:5.248000pt;}
._6_c01078{width:6.656000pt;}
._17_c01078{width:7.744000pt;}
._3_c01078{width:8.896000pt;}
._16_c01078{width:10.368000pt;}
._0_c01078{width:11.520000pt;}
._5_c01078{width:12.800000pt;}
._4_c01078{width:13.760000pt;}
._e_c01078{width:18.304000pt;}
._19_c01078{width:19.840000pt;}
._14_c01078{width:21.034667pt;}
._18_c01078{width:27.264000pt;}
._f_c01078{width:223.488000pt;}
._1b_c01078{width:225.920000pt;}
._7_c01078{width:303.808000pt;}
.fs3_c01078{font-size:42.666667pt;}
.fs2_c01078{font-size:56.000000pt;}
.fs0_c01078{font-size:64.000000pt;}
.fs1_c01078{font-size:69.333333pt;}
.y0_c01078{bottom:0.000000pt;}
.y1f_c01078{bottom:2.760000pt;}
.y1e_c01078{bottom:6.425212pt;}
.y1d_c01078{bottom:34.533333pt;}
.y1c_c01078{bottom:58.533333pt;}
.y1b_c01078{bottom:81.600000pt;}
.y1a_c01078{bottom:102.266667pt;}
.y19_c01078{bottom:125.066667pt;}
.y18_c01078{bottom:147.066667pt;}
.y17_c01078{bottom:167.200000pt;}
.y16_c01078{bottom:191.066667pt;}
.y15_c01078{bottom:212.666667pt;}
.y14_c01078{bottom:233.466667pt;}
.y13_c01078{bottom:257.466667pt;}
.y12_c01078{bottom:278.800000pt;}
.y11_c01078{bottom:299.733333pt;}
.y10_c01078{bottom:322.000000pt;}
.yf_c01078{bottom:342.666667pt;}
.ye_c01078{bottom:365.066667pt;}
.yd_c01078{bottom:386.400000pt;}
.yc_c01078{bottom:408.400000pt;}
.yb_c01078{bottom:430.000000pt;}
.ya_c01078{bottom:451.600000pt;}
.y9_c01078{bottom:472.533333pt;}
.y8_c01078{bottom:493.866667pt;}
.y7_c01078{bottom:516.266667pt;}
.y6_c01078{bottom:537.600000pt;}
.y5_c01078{bottom:559.600000pt;}
.y4_c01078{bottom:582.000000pt;}
.y3_c01078{bottom:603.866667pt;}
.y2_c01078{bottom:625.600000pt;}
.y1_c01078{bottom:647.466667pt;}
.h3_c01078{height:11.733399pt;}
.h4_c01078{height:38.937500pt;}
.h1_c01078{height:74.906250pt;}
.h2_c01078{height:81.031250pt;}
.h0_c01078{height:696.000000pt;}
.w2_c01078{width:93.222667pt;}
.w0_c01078{width:471.866667pt;}
.w1_c01078{width:472.000000pt;}
.x0_c01078{left:0.000000pt;}
.x7_c01078{left:28.533333pt;}
.x6_c01078{left:30.666667pt;}
.x5_c01078{left:31.600000pt;}
.x2_c01078{left:32.666667pt;}
.x3_c01078{left:33.866667pt;}
.x4_c01078{left:35.600000pt;}
.x1_c01078{left:140.933333pt;}
.x9_c01078{left:193.101563pt;}
.x8_c01078{left:224.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_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_c2f4e639cc793af2fa207448.woff2')format("woff");}.ff1_c01079{font-family:ff1_c01079;line-height:1.480469;font-style:normal;font-weight:normal;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_f5f7bf2ce6d941c41dea1630.woff2')format("woff");}.ff2_c01079{font-family:ff2_c01079;line-height:1.568848;font-style:normal;font-weight:normal;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_dac2cce8f58ec1774e382482.woff2')format("woff");}.ff3_c01079{font-family:ff3_c01079;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01079;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01079{font-family:ff4_c01079;line-height:1.219238;font-style: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;}
.ls0_c01079{letter-spacing:0.000000px;}
.sc__c01079{text-shadow:none;}
.sc0_c01079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01079{-webkit-text-stroke:0px transparent;}
.sc0_c01079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01079{word-spacing:-17.352000px;}
.ws1_c01079{word-spacing:0.000000px;}
._11_c01079{margin-left:-13.176000px;}
._1_c01079{margin-left:-11.520000px;}
._0_c01079{margin-left:-10.296000px;}
._1c_c01079{margin-left:-8.856000px;}
._14_c01079{margin-left:-7.200000px;}
._1b_c01079{margin-left:-6.120000px;}
._7_c01079{margin-left:-4.464000px;}
._e_c01079{margin-left:-2.952000px;}
._d_c01079{margin-left:-1.008000px;}
._8_c01079{width:1.008000px;}
._6_c01079{width:2.520000px;}
._5_c01079{width:3.528000px;}
._4_c01079{width:5.112000px;}
._9_c01079{width:6.264000px;}
._c_c01079{width:8.136000px;}
._12_c01079{width:9.252000px;}
._2_c01079{width:10.512000px;}
._b_c01079{width:12.456000px;}
._a_c01079{width:13.896000px;}
._19_c01079{width:15.804000px;}
._f_c01079{width:18.576000px;}
._16_c01079{width:21.192000px;}
._1a_c01079{width:23.028000px;}
._10_c01079{width:25.488000px;}
._3_c01079{width:26.712000px;}
._18_c01079{width:38.412000px;}
._17_c01079{width:145.440000px;}
._13_c01079{width:278.856000px;}
._1d_c01079{width:416.664000px;}
._15_c01079{width:573.798000px;}
._1e_c01079{width:833.328000px;}
.fc2_c01079{color:transparent;}
.fc1_c01079{color:rgb(128,128,128);}
.fc0_c01079{color:rgb(0,0,0);}
.fs4_c01079{font-size:48.000000px;}
.fs2_c01079{font-size:57.000000px;}
.fs3_c01079{font-size:60.000000px;}
.fs1_c01079{font-size:66.000000px;}
.fs0_c01079{font-size:72.000000px;}
.y0_c01079{bottom:0.000000px;}
.y1f_c01079{bottom:3.105000px;}
.y1e_c01079{bottom:7.228363px;}
.y1d_c01079{bottom:44.100000px;}
.y1c_c01079{bottom:64.350000px;}
.y1b_c01079{bottom:89.850000px;}
.y1a_c01079{bottom:115.350000px;}
.y19_c01079{bottom:140.850000px;}
.y18_c01079{bottom:166.050000px;}
.y17_c01079{bottom:189.300000px;}
.y16_c01079{bottom:214.350000px;}
.y15_c01079{bottom:240.600000px;}
.y14_c01079{bottom:264.600000px;}
.y13_c01079{bottom:288.300000px;}
.y12_c01079{bottom:313.500000px;}
.y11_c01079{bottom:338.550000px;}
.y10_c01079{bottom:362.250000px;}
.yf_c01079{bottom:386.100000px;}
.ye_c01079{bottom:409.950000px;}
.yd_c01079{bottom:436.050000px;}
.yc_c01079{bottom:462.000000px;}
.yb_c01079{bottom:483.900000px;}
.ya_c01079{bottom:508.650000px;}
.y9_c01079{bottom:533.550000px;}
.y8_c01079{bottom:557.100000px;}
.y7_c01079{bottom:581.850000px;}
.y6_c01079{bottom:606.900000px;}
.y5_c01079{bottom:631.350000px;}
.y4_c01079{bottom:655.500000px;}
.y3_c01079{bottom:680.700000px;}
.y2_c01079{bottom:705.000000px;}
.y1_c01079{bottom:730.950000px;}
.h4_c01079{height:13.200074px;}
.h5_c01079{height:43.804688px;}
.h2_c01079{height:84.269531px;}
.h3_c01079{height:91.160156px;}
.h0_c01079{height:791.100000px;}
.h1_c01079{height:791.250000px;}
.w2_c01079{width:104.875500px;}
.w1_c01079{width:510.750000px;}
.w0_c01079{width:510.825000px;}
.x0_c01079{left:0.000000px;}
.x9_c01079{left:11.850000px;}
.x7_c01079{left:13.200000px;}
.x5_c01079{left:84.750000px;}
.xc_c01079{left:88.050000px;}
.xb_c01079{left:89.100000px;}
.xa_c01079{left:91.050000px;}
.x6_c01079{left:92.400000px;}
.x4_c01079{left:94.050000px;}
.x3_c01079{left:95.550000px;}
.x2_c01079{left:98.250000px;}
.x8_c01079{left:197.400000px;}
.xd_c01079{left:207.226730px;}
.x1_c01079{left:290.550000px;}
@media print{
.v0_c01079{vertical-align:0.000000pt;}
.ls0_c01079{letter-spacing:0.000000pt;}
.ws0_c01079{word-spacing:-15.424000pt;}
.ws1_c01079{word-spacing:0.000000pt;}
._11_c01079{margin-left:-11.712000pt;}
._1_c01079{margin-left:-10.240000pt;}
._0_c01079{margin-left:-9.152000pt;}
._1c_c01079{margin-left:-7.872000pt;}
._14_c01079{margin-left:-6.400000pt;}
._1b_c01079{margin-left:-5.440000pt;}
._7_c01079{margin-left:-3.968000pt;}
._e_c01079{margin-left:-2.624000pt;}
._d_c01079{margin-left:-0.896000pt;}
._8_c01079{width:0.896000pt;}
._6_c01079{width:2.240000pt;}
._5_c01079{width:3.136000pt;}
._4_c01079{width:4.544000pt;}
._9_c01079{width:5.568000pt;}
._c_c01079{width:7.232000pt;}
._12_c01079{width:8.224000pt;}
._2_c01079{width:9.344000pt;}
._b_c01079{width:11.072000pt;}
._a_c01079{width:12.352000pt;}
._19_c01079{width:14.048000pt;}
._f_c01079{width:16.512000pt;}
._16_c01079{width:18.837333pt;}
._1a_c01079{width:20.469333pt;}
._10_c01079{width:22.656000pt;}
._3_c01079{width:23.744000pt;}
._18_c01079{width:34.144000pt;}
._17_c01079{width:129.280000pt;}
._13_c01079{width:247.872000pt;}
._1d_c01079{width:370.368000pt;}
._15_c01079{width:510.042667pt;}
._1e_c01079{width:740.736000pt;}
.fs4_c01079{font-size:42.666667pt;}
.fs2_c01079{font-size:50.666667pt;}
.fs3_c01079{font-size:53.333333pt;}
.fs1_c01079{font-size:58.666667pt;}
.fs0_c01079{font-size:64.000000pt;}
.y0_c01079{bottom:0.000000pt;}
.y1f_c01079{bottom:2.760000pt;}
.y1e_c01079{bottom:6.425212pt;}
.y1d_c01079{bottom:39.200000pt;}
.y1c_c01079{bottom:57.200000pt;}
.y1b_c01079{bottom:79.866667pt;}
.y1a_c01079{bottom:102.533333pt;}
.y19_c01079{bottom:125.200000pt;}
.y18_c01079{bottom:147.600000pt;}
.y17_c01079{bottom:168.266667pt;}
.y16_c01079{bottom:190.533333pt;}
.y15_c01079{bottom:213.866667pt;}
.y14_c01079{bottom:235.200000pt;}
.y13_c01079{bottom:256.266667pt;}
.y12_c01079{bottom:278.666667pt;}
.y11_c01079{bottom:300.933333pt;}
.y10_c01079{bottom:322.000000pt;}
.yf_c01079{bottom:343.200000pt;}
.ye_c01079{bottom:364.400000pt;}
.yd_c01079{bottom:387.600000pt;}
.yc_c01079{bottom:410.666667pt;}
.yb_c01079{bottom:430.133333pt;}
.ya_c01079{bottom:452.133333pt;}
.y9_c01079{bottom:474.266667pt;}
.y8_c01079{bottom:495.200000pt;}
.y7_c01079{bottom:517.200000pt;}
.y6_c01079{bottom:539.466667pt;}
.y5_c01079{bottom:561.200000pt;}
.y4_c01079{bottom:582.666667pt;}
.y3_c01079{bottom:605.066667pt;}
.y2_c01079{bottom:626.666667pt;}
.y1_c01079{bottom:649.733333pt;}
.h4_c01079{height:11.733399pt;}
.h5_c01079{height:38.937500pt;}
.h2_c01079{height:74.906250pt;}
.h3_c01079{height:81.031250pt;}
.h0_c01079{height:703.200000pt;}
.h1_c01079{height:703.333333pt;}
.w2_c01079{width:93.222667pt;}
.w1_c01079{width:454.000000pt;}
.w0_c01079{width:454.066667pt;}
.x0_c01079{left:0.000000pt;}
.x9_c01079{left:10.533333pt;}
.x7_c01079{left:11.733333pt;}
.x5_c01079{left:75.333333pt;}
.xc_c01079{left:78.266667pt;}
.xb_c01079{left:79.200000pt;}
.xa_c01079{left:80.933333pt;}
.x6_c01079{left:82.133333pt;}
.x4_c01079{left:83.600000pt;}
.x3_c01079{left:84.933333pt;}
.x2_c01079{left:87.333333pt;}
.x8_c01079{left:175.466667pt;}
.xd_c01079{left:184.201538pt;}
.x1_c01079{left:258.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_554afeb165241930aabdc612.woff2')format("woff");}.ff1_c01080{font-family:ff1_c01080;line-height:1.480469;font-style:normal;font-weight:normal;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_915ecf6f1ce4adb3072c9973.woff2')format("woff");}.ff2_c01080{font-family:ff2_c01080;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01080{font-family:ff3_c01080;line-height:1.219238;font-style: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;}
.ls0_c01080{letter-spacing:0.000000px;}
.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:-17.352000px;}
.ws1_c01080{word-spacing:0.000000px;}
._1a_c01080{margin-left:-5.904000px;}
._11_c01080{margin-left:-4.752000px;}
._12_c01080{margin-left:-3.168000px;}
._f_c01080{margin-left:-2.016000px;}
._10_c01080{margin-left:-1.008000px;}
._c_c01080{width:1.656000px;}
._a_c01080{width:3.096000px;}
._7_c01080{width:4.320000px;}
._9_c01080{width:5.472000px;}
._3_c01080{width:6.552000px;}
._d_c01080{width:7.632000px;}
._2_c01080{width:8.928000px;}
._8_c01080{width:9.936000px;}
._1_c01080{width:10.944000px;}
._e_c01080{width:12.024000px;}
._0_c01080{width:13.176000px;}
._b_c01080{width:14.688000px;}
._19_c01080{width:16.200000px;}
._17_c01080{width:19.152000px;}
._15_c01080{width:22.392000px;}
._5_c01080{width:23.616000px;}
._13_c01080{width:26.496000px;}
._14_c01080{width:28.728000px;}
._18_c01080{width:37.080000px;}
._6_c01080{width:38.592000px;}
._16_c01080{width:41.256000px;}
._4_c01080{width:307.440000px;}
.fc2_c01080{color:transparent;}
.fc1_c01080{color:rgb(128,128,128);}
.fc0_c01080{color:rgb(0,0,0);}
.fs1_c01080{font-size:48.000000px;}
.fs0_c01080{font-size:72.000000px;}
.y0_c01080{bottom:0.000000px;}
.y1f_c01080{bottom:3.105000px;}
.y1e_c01080{bottom:7.228355px;}
.y1d_c01080{bottom:53.685000px;}
.y1c_c01080{bottom:83.385000px;}
.y1b_c01080{bottom:107.685000px;}
.y1a_c01080{bottom:133.335000px;}
.y19_c01080{bottom:158.835000px;}
.y18_c01080{bottom:182.235000px;}
.y17_c01080{bottom:208.485000px;}
.y16_c01080{bottom:233.085000px;}
.y15_c01080{bottom:257.535000px;}
.y14_c01080{bottom:283.185000px;}
.y13_c01080{bottom:307.785000px;}
.y12_c01080{bottom:331.785000px;}
.y11_c01080{bottom:356.085000px;}
.y10_c01080{bottom:379.335000px;}
.yf_c01080{bottom:405.585000px;}
.ye_c01080{bottom:428.985000px;}
.yd_c01080{bottom:453.585000px;}
.yc_c01080{bottom:477.585000px;}
.yb_c01080{bottom:501.885000px;}
.ya_c01080{bottom:526.485000px;}
.y9_c01080{bottom:550.035000px;}
.y8_c01080{bottom:575.085000px;}
.y7_c01080{bottom:599.685000px;}
.y6_c01080{bottom:624.585000px;}
.y5_c01080{bottom:649.035000px;}
.y4_c01080{bottom:674.235000px;}
.y3_c01080{bottom:698.535000px;}
.y2_c01080{bottom:723.135000px;}
.y1_c01080{bottom:748.485000px;}
.h4_c01080{height:13.200074px;}
.h5_c01080{height:43.804688px;}
.h2_c01080{height:84.269531px;}
.h3_c01080{height:91.160156px;}
.h0_c01080{height:784.875000px;}
.h1_c01080{height:785.250000px;}
.w2_c01080{width:104.875500px;}
.w0_c01080{width:496.275000px;}
.w1_c01080{width:496.500000px;}
.x0_c01080{left:0.000000px;}
.x8_c01080{left:20.850000px;}
.x3_c01080{left:22.500000px;}
.x2_c01080{left:24.300000px;}
.x4_c01080{left:25.650000px;}
.x5_c01080{left:26.700000px;}
.x6_c01080{left:28.350000px;}
.x7_c01080{left:49.200000px;}
.x1_c01080{left:150.150000px;}
.xa_c01080{left:199.951767px;}
.x9_c01080{left:361.050000px;}
@media print{
.v0_c01080{vertical-align:0.000000pt;}
.ls0_c01080{letter-spacing:0.000000pt;}
.ws0_c01080{word-spacing:-15.424000pt;}
.ws1_c01080{word-spacing:0.000000pt;}
._1a_c01080{margin-left:-5.248000pt;}
._11_c01080{margin-left:-4.224000pt;}
._12_c01080{margin-left:-2.816000pt;}
._f_c01080{margin-left:-1.792000pt;}
._10_c01080{margin-left:-0.896000pt;}
._c_c01080{width:1.472000pt;}
._a_c01080{width:2.752000pt;}
._7_c01080{width:3.840000pt;}
._9_c01080{width:4.864000pt;}
._3_c01080{width:5.824000pt;}
._d_c01080{width:6.784000pt;}
._2_c01080{width:7.936000pt;}
._8_c01080{width:8.832000pt;}
._1_c01080{width:9.728000pt;}
._e_c01080{width:10.688000pt;}
._0_c01080{width:11.712000pt;}
._b_c01080{width:13.056000pt;}
._19_c01080{width:14.400000pt;}
._17_c01080{width:17.024000pt;}
._15_c01080{width:19.904000pt;}
._5_c01080{width:20.992000pt;}
._13_c01080{width:23.552000pt;}
._14_c01080{width:25.536000pt;}
._18_c01080{width:32.960000pt;}
._6_c01080{width:34.304000pt;}
._16_c01080{width:36.672000pt;}
._4_c01080{width:273.280000pt;}
.fs1_c01080{font-size:42.666667pt;}
.fs0_c01080{font-size:64.000000pt;}
.y0_c01080{bottom:0.000000pt;}
.y1f_c01080{bottom:2.760000pt;}
.y1e_c01080{bottom:6.425204pt;}
.y1d_c01080{bottom:47.720000pt;}
.y1c_c01080{bottom:74.120000pt;}
.y1b_c01080{bottom:95.720000pt;}
.y1a_c01080{bottom:118.520000pt;}
.y19_c01080{bottom:141.186667pt;}
.y18_c01080{bottom:161.986667pt;}
.y17_c01080{bottom:185.320000pt;}
.y16_c01080{bottom:207.186667pt;}
.y15_c01080{bottom:228.920000pt;}
.y14_c01080{bottom:251.720000pt;}
.y13_c01080{bottom:273.586667pt;}
.y12_c01080{bottom:294.920000pt;}
.y11_c01080{bottom:316.520000pt;}
.y10_c01080{bottom:337.186667pt;}
.yf_c01080{bottom:360.520000pt;}
.ye_c01080{bottom:381.320000pt;}
.yd_c01080{bottom:403.186667pt;}
.yc_c01080{bottom:424.520000pt;}
.yb_c01080{bottom:446.120000pt;}
.ya_c01080{bottom:467.986667pt;}
.y9_c01080{bottom:488.920000pt;}
.y8_c01080{bottom:511.186667pt;}
.y7_c01080{bottom:533.053333pt;}
.y6_c01080{bottom:555.186667pt;}
.y5_c01080{bottom:576.920000pt;}
.y4_c01080{bottom:599.320000pt;}
.y3_c01080{bottom:620.920000pt;}
.y2_c01080{bottom:642.786667pt;}
.y1_c01080{bottom:665.320000pt;}
.h4_c01080{height:11.733399pt;}
.h5_c01080{height:38.937500pt;}
.h2_c01080{height:74.906250pt;}
.h3_c01080{height:81.031250pt;}
.h0_c01080{height:697.666667pt;}
.h1_c01080{height:698.000000pt;}
.w2_c01080{width:93.222667pt;}
.w0_c01080{width:441.133333pt;}
.w1_c01080{width:441.333333pt;}
.x0_c01080{left:0.000000pt;}
.x8_c01080{left:18.533333pt;}
.x3_c01080{left:20.000000pt;}
.x2_c01080{left:21.600000pt;}
.x4_c01080{left:22.800000pt;}
.x5_c01080{left:23.733333pt;}
.x6_c01080{left:25.200000pt;}
.x7_c01080{left:43.733333pt;}
.x1_c01080{left:133.466667pt;}
.xa_c01080{left:177.734904pt;}
.x9_c01080{left:320.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_111418b96ea4dac0f03b54cb.woff2')format("woff");}.ff1_c01081{font-family:ff1_c01081;line-height:1.480469;font-style:normal;font-weight:normal;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_d02a86f374ff32a00e94d2ad.woff2')format("woff");}.ff2_c01081{font-family:ff2_c01081;line-height:1.568848;font-style:normal;font-weight:normal;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_4f15afadcc01144a750ed527.woff2')format("woff");}.ff3_c01081{font-family:ff3_c01081;line-height:1.568848;font-style:normal;font-weight:normal;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_a62266ef8d6f8125313a5835.woff2')format("woff");}.ff4_c01081{font-family:ff4_c01081;line-height:1.284180;font-style:normal;font-weight:normal;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_b88f50a5ea17cd5dce54d430.woff2')format("woff");}.ff5_c01081{font-family:ff5_c01081;line-height:1.284668;font-style:normal;font-weight:normal;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_cac081835e604f55f65de959.woff2')format("woff");}.ff6_c01081{font-family:ff6_c01081;line-height:1.575000;font-style:normal;font-weight: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_c01081;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c01081{font-family:ff7_c01081;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01081{vertical-align:0.000000px;}
.ls6_c01081{letter-spacing:-6.000000px;}
.ls5_c01081{letter-spacing:-3.000000px;}
.ls2_c01081{letter-spacing:0.000000px;}
.ls4_c01081{letter-spacing:3.000000px;}
.ls3_c01081{letter-spacing:6.000000px;}
.ls1_c01081{letter-spacing:29.112000px;}
.ls0_c01081{letter-spacing:30.750000px;}
.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:-28.500000px;}
.ws2_c01081{word-spacing:-17.352000px;}
.ws1_c01081{word-spacing:-15.906000px;}
.ws5_c01081{word-spacing:0.000000px;}
.ws3_c01081{word-spacing:1.872000px;}
.ws4_c01081{word-spacing:9.630000px;}
._14_c01081{margin-left:-16.302000px;}
._17_c01081{margin-left:-14.931000px;}
._0_c01081{margin-left:-13.104000px;}
._1a_c01081{margin-left:-10.353000px;}
._18_c01081{margin-left:-9.300000px;}
._a_c01081{margin-left:-7.875000px;}
._15_c01081{margin-left:-6.432000px;}
._9_c01081{margin-left:-5.355000px;}
._10_c01081{margin-left:-3.414000px;}
._d_c01081{margin-left:-2.016000px;}
._b_c01081{width:1.386000px;}
._6_c01081{width:2.583000px;}
._e_c01081{width:3.609000px;}
._7_c01081{width:5.166000px;}
._c_c01081{width:6.552000px;}
._3_c01081{width:7.848000px;}
._11_c01081{width:9.177000px;}
._f_c01081{width:10.785000px;}
._1e_c01081{width:12.231000px;}
._2_c01081{width:13.680000px;}
._5_c01081{width:15.192000px;}
._21_c01081{width:16.272000px;}
._8_c01081{width:19.152000px;}
._25_c01081{width:20.868000px;}
._4_c01081{width:22.968000px;}
._24_c01081{width:38.616000px;}
._20_c01081{width:89.553000px;}
._16_c01081{width:95.925000px;}
._1_c01081{width:101.520000px;}
._1f_c01081{width:104.760000px;}
._23_c01081{width:117.525000px;}
._1b_c01081{width:155.034000px;}
._1c_c01081{width:238.575000px;}
._22_c01081{width:281.079000px;}
._13_c01081{width:282.948000px;}
._1d_c01081{width:301.272000px;}
._19_c01081{width:437.349000px;}
._12_c01081{width:578.388000px;}
.fc2_c01081{color:transparent;}
.fc1_c01081{color:rgb(128,128,128);}
.fc0_c01081{color:rgb(0,0,0);}
.fs6_c01081{font-size:48.000000px;}
.fs2_c01081{font-size:57.000000px;}
.fs4_c01081{font-size:60.000000px;}
.fs1_c01081{font-size:63.000000px;}
.fs3_c01081{font-size:66.000000px;}
.fs0_c01081{font-size:72.000000px;}
.fs5_c01081{font-size:87.000000px;}
.y0_c01081{bottom:0.000000px;}
.y1f_c01081{bottom:3.105000px;}
.y1e_c01081{bottom:7.228357px;}
.y1d_c01081{bottom:73.230000px;}
.y1c_c01081{bottom:97.830000px;}
.y1b_c01081{bottom:126.330000px;}
.y1a_c01081{bottom:149.580000px;}
.y19_c01081{bottom:173.430000px;}
.y18_c01081{bottom:199.530000px;}
.y17_c01081{bottom:224.130000px;}
.y16_c01081{bottom:250.080000px;}
.y15_c01081{bottom:274.080000px;}
.y14_c01081{bottom:298.980000px;}
.y13_c01081{bottom:323.730000px;}
.y12_c01081{bottom:348.630000px;}
.y11_c01081{bottom:372.930000px;}
.y10_c01081{bottom:397.230000px;}
.yf_c01081{bottom:420.630000px;}
.ye_c01081{bottom:444.180000px;}
.yd_c01081{bottom:468.180000px;}
.yc_c01081{bottom:492.780000px;}
.yb_c01081{bottom:517.680000px;}
.ya_c01081{bottom:543.330000px;}
.y9_c01081{bottom:567.330000px;}
.y8_c01081{bottom:591.930000px;}
.y7_c01081{bottom:616.230000px;}
.y6_c01081{bottom:639.330000px;}
.y5_c01081{bottom:652.380000px;}
.y4_c01081{bottom:668.880000px;}
.y3_c01081{bottom:691.980000px;}
.y2_c01081{bottom:715.230000px;}
.y1_c01081{bottom:740.430000px;}
.h6_c01081{height:13.200074px;}
.h7_c01081{height:43.804688px;}
.h3_c01081{height:79.765137px;}
.h4_c01081{height:83.563477px;}
.h2_c01081{height:91.160156px;}
.h5_c01081{height:92.829000px;}
.h1_c01081{height:784.500000px;}
.h0_c01081{height:784.650000px;}
.w2_c01081{width:104.875500px;}
.w1_c01081{width:530.250000px;}
.w0_c01081{width:530.550000px;}
.x0_c01081{left:0.000000px;}
.x3_c01081{left:31.050000px;}
.x4_c01081{left:32.400000px;}
.x9_c01081{left:37.050000px;}
.x5_c01081{left:108.000000px;}
.x7_c01081{left:109.950000px;}
.x6_c01081{left:112.350000px;}
.x8_c01081{left:114.300000px;}
.xa_c01081{left:115.800000px;}
.xc_c01081{left:117.000000px;}
.xb_c01081{left:118.800000px;}
.xd_c01081{left:121.500000px;}
.xe_c01081{left:217.089249px;}
.x1_c01081{left:231.900000px;}
.x2_c01081{left:257.250000px;}
@media print{
.v0_c01081{vertical-align:0.000000pt;}
.ls6_c01081{letter-spacing:-5.333333pt;}
.ls5_c01081{letter-spacing:-2.666667pt;}
.ls2_c01081{letter-spacing:0.000000pt;}
.ls4_c01081{letter-spacing:2.666667pt;}
.ls3_c01081{letter-spacing:5.333333pt;}
.ls1_c01081{letter-spacing:25.877333pt;}
.ls0_c01081{letter-spacing:27.333333pt;}
.ws0_c01081{word-spacing:-25.333333pt;}
.ws2_c01081{word-spacing:-15.424000pt;}
.ws1_c01081{word-spacing:-14.138667pt;}
.ws5_c01081{word-spacing:0.000000pt;}
.ws3_c01081{word-spacing:1.664000pt;}
.ws4_c01081{word-spacing:8.560000pt;}
._14_c01081{margin-left:-14.490667pt;}
._17_c01081{margin-left:-13.272000pt;}
._0_c01081{margin-left:-11.648000pt;}
._1a_c01081{margin-left:-9.202667pt;}
._18_c01081{margin-left:-8.266667pt;}
._a_c01081{margin-left:-7.000000pt;}
._15_c01081{margin-left:-5.717333pt;}
._9_c01081{margin-left:-4.760000pt;}
._10_c01081{margin-left:-3.034667pt;}
._d_c01081{margin-left:-1.792000pt;}
._b_c01081{width:1.232000pt;}
._6_c01081{width:2.296000pt;}
._e_c01081{width:3.208000pt;}
._7_c01081{width:4.592000pt;}
._c_c01081{width:5.824000pt;}
._3_c01081{width:6.976000pt;}
._11_c01081{width:8.157333pt;}
._f_c01081{width:9.586667pt;}
._1e_c01081{width:10.872000pt;}
._2_c01081{width:12.160000pt;}
._5_c01081{width:13.504000pt;}
._21_c01081{width:14.464000pt;}
._8_c01081{width:17.024000pt;}
._25_c01081{width:18.549333pt;}
._4_c01081{width:20.416000pt;}
._24_c01081{width:34.325333pt;}
._20_c01081{width:79.602667pt;}
._16_c01081{width:85.266667pt;}
._1_c01081{width:90.240000pt;}
._1f_c01081{width:93.120000pt;}
._23_c01081{width:104.466667pt;}
._1b_c01081{width:137.808000pt;}
._1c_c01081{width:212.066667pt;}
._22_c01081{width:249.848000pt;}
._13_c01081{width:251.509333pt;}
._1d_c01081{width:267.797333pt;}
._19_c01081{width:388.754667pt;}
._12_c01081{width:514.122667pt;}
.fs6_c01081{font-size:42.666667pt;}
.fs2_c01081{font-size:50.666667pt;}
.fs4_c01081{font-size:53.333333pt;}
.fs1_c01081{font-size:56.000000pt;}
.fs3_c01081{font-size:58.666667pt;}
.fs0_c01081{font-size:64.000000pt;}
.fs5_c01081{font-size:77.333333pt;}
.y0_c01081{bottom:0.000000pt;}
.y1f_c01081{bottom:2.760000pt;}
.y1e_c01081{bottom:6.425206pt;}
.y1d_c01081{bottom:65.093333pt;}
.y1c_c01081{bottom:86.960000pt;}
.y1b_c01081{bottom:112.293333pt;}
.y1a_c01081{bottom:132.960000pt;}
.y19_c01081{bottom:154.160000pt;}
.y18_c01081{bottom:177.360000pt;}
.y17_c01081{bottom:199.226667pt;}
.y16_c01081{bottom:222.293333pt;}
.y15_c01081{bottom:243.626667pt;}
.y14_c01081{bottom:265.760000pt;}
.y13_c01081{bottom:287.760000pt;}
.y12_c01081{bottom:309.893333pt;}
.y11_c01081{bottom:331.493333pt;}
.y10_c01081{bottom:353.093333pt;}
.yf_c01081{bottom:373.893333pt;}
.ye_c01081{bottom:394.826667pt;}
.yd_c01081{bottom:416.160000pt;}
.yc_c01081{bottom:438.026667pt;}
.yb_c01081{bottom:460.160000pt;}
.ya_c01081{bottom:482.960000pt;}
.y9_c01081{bottom:504.293333pt;}
.y8_c01081{bottom:526.160000pt;}
.y7_c01081{bottom:547.760000pt;}
.y6_c01081{bottom:568.293333pt;}
.y5_c01081{bottom:579.893333pt;}
.y4_c01081{bottom:594.560000pt;}
.y3_c01081{bottom:615.093333pt;}
.y2_c01081{bottom:635.760000pt;}
.y1_c01081{bottom:658.160000pt;}
.h6_c01081{height:11.733399pt;}
.h7_c01081{height:38.937500pt;}
.h3_c01081{height:70.902344pt;}
.h4_c01081{height:74.278646pt;}
.h2_c01081{height:81.031250pt;}
.h5_c01081{height:82.514667pt;}
.h1_c01081{height:697.333333pt;}
.h0_c01081{height:697.466667pt;}
.w2_c01081{width:93.222667pt;}
.w1_c01081{width:471.333333pt;}
.w0_c01081{width:471.600000pt;}
.x0_c01081{left:0.000000pt;}
.x3_c01081{left:27.600000pt;}
.x4_c01081{left:28.800000pt;}
.x9_c01081{left:32.933333pt;}
.x5_c01081{left:96.000000pt;}
.x7_c01081{left:97.733333pt;}
.x6_c01081{left:99.866667pt;}
.x8_c01081{left:101.600000pt;}
.xa_c01081{left:102.933333pt;}
.xc_c01081{left:104.000000pt;}
.xb_c01081{left:105.600000pt;}
.xd_c01081{left:108.000000pt;}
.xe_c01081{left:192.968221pt;}
.x1_c01081{left:206.133333pt;}
.x2_c01081{left:228.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_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_9bee063c08531b30a166779c.woff2')format("woff");}.ff1_c01082{font-family:ff1_c01082;line-height:1.480469;font-style:normal;font-weight:normal;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_b09aaef8977d13148d06817a.woff2')format("woff");}.ff2_c01082{font-family:ff2_c01082;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01082{font-family:ff3_c01082;line-height:1.219238;font-style: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);}
.v1_c01082{vertical-align:-6.000000px;}
.v0_c01082{vertical-align:0.000000px;}
.ls2_c01082{letter-spacing:0.000000px;}
.ls3_c01082{letter-spacing:6.000000px;}
.ls1_c01082{letter-spacing:16.020000px;}
.ls0_c01082{letter-spacing:21.312000px;}
.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:-17.352000px;}
.ws1_c01082{word-spacing:0.000000px;}
._13_c01082{margin-left:-11.466000px;}
._17_c01082{margin-left:-9.648000px;}
._11_c01082{margin-left:-7.803000px;}
._d_c01082{margin-left:-5.760000px;}
._f_c01082{margin-left:-4.305000px;}
._10_c01082{margin-left:-2.718000px;}
._b_c01082{margin-left:-1.440000px;}
._8_c01082{width:1.176000px;}
._7_c01082{width:2.664000px;}
._2_c01082{width:4.608000px;}
._1_c01082{width:6.264000px;}
._3_c01082{width:8.136000px;}
._4_c01082{width:9.576000px;}
._0_c01082{width:10.656000px;}
._c_c01082{width:12.360000px;}
._14_c01082{width:13.608000px;}
._9_c01082{width:14.712000px;}
._5_c01082{width:15.768000px;}
._e_c01082{width:17.964000px;}
._15_c01082{width:21.168000px;}
._16_c01082{width:22.182000px;}
._18_c01082{width:23.994000px;}
._a_c01082{width:28.776000px;}
._19_c01082{width:50.904000px;}
._12_c01082{width:166.680000px;}
._6_c01082{width:358.416000px;}
.fc2_c01082{color:transparent;}
.fc1_c01082{color:rgb(128,128,128);}
.fc0_c01082{color:rgb(0,0,0);}
.fs2_c01082{font-size:36.000000px;}
.fs6_c01082{font-size:48.000000px;}
.fs5_c01082{font-size:60.000000px;}
.fs4_c01082{font-size:63.000000px;}
.fs3_c01082{font-size:66.000000px;}
.fs1_c01082{font-size:69.000000px;}
.fs0_c01082{font-size:72.000000px;}
.y0_c01082{bottom:0.000000px;}
.y1e_c01082{bottom:3.105000px;}
.y1d_c01082{bottom:7.228363px;}
.y1c_c01082{bottom:53.250000px;}
.y1b_c01082{bottom:78.600000px;}
.y1a_c01082{bottom:103.950000px;}
.y19_c01082{bottom:127.800000px;}
.y18_c01082{bottom:154.200000px;}
.y17_c01082{bottom:177.450000px;}
.y16_c01082{bottom:203.850000px;}
.y15_c01082{bottom:228.450000px;}
.y14_c01082{bottom:253.500000px;}
.y13_c01082{bottom:278.400000px;}
.y12_c01082{bottom:302.100000px;}
.y11_c01082{bottom:327.750000px;}
.y10_c01082{bottom:352.050000px;}
.yf_c01082{bottom:375.900000px;}
.ye_c01082{bottom:401.250000px;}
.yd_c01082{bottom:428.250000px;}
.yc_c01082{bottom:449.250000px;}
.yb_c01082{bottom:474.150000px;}
.ya_c01082{bottom:498.450000px;}
.y9_c01082{bottom:522.150000px;}
.y8_c01082{bottom:547.050000px;}
.y7_c01082{bottom:573.300000px;}
.y6_c01082{bottom:596.700000px;}
.y5_c01082{bottom:621.000000px;}
.y4_c01082{bottom:644.250000px;}
.y3_c01082{bottom:668.850000px;}
.y2_c01082{bottom:694.500000px;}
.y1_c01082{bottom:719.250000px;}
.h6_c01082{height:13.200074px;}
.h7_c01082{height:43.804688px;}
.h4_c01082{height:79.765137px;}
.h2_c01082{height:84.269531px;}
.h5_c01082{height:85.160156px;}
.h3_c01082{height:91.160156px;}
.h0_c01082{height:777.600000px;}
.h1_c01082{height:777.750000px;}
.w2_c01082{width:104.875500px;}
.w0_c01082{width:520.275000px;}
.w1_c01082{width:520.500000px;}
.x0_c01082{left:0.000000px;}
.x2_c01082{left:20.250000px;}
.x3_c01082{left:21.300000px;}
.x4_c01082{left:22.500000px;}
.x5_c01082{left:24.600000px;}
.x6_c01082{left:26.250000px;}
.x7_c01082{left:27.750000px;}
.x8_c01082{left:40.800000px;}
.x1_c01082{left:138.600000px;}
.x9_c01082{left:211.951767px;}
@media print{
.v1_c01082{vertical-align:-5.333333pt;}
.v0_c01082{vertical-align:0.000000pt;}
.ls2_c01082{letter-spacing:0.000000pt;}
.ls3_c01082{letter-spacing:5.333333pt;}
.ls1_c01082{letter-spacing:14.240000pt;}
.ls0_c01082{letter-spacing:18.944000pt;}
.ws0_c01082{word-spacing:-15.424000pt;}
.ws1_c01082{word-spacing:0.000000pt;}
._13_c01082{margin-left:-10.192000pt;}
._17_c01082{margin-left:-8.576000pt;}
._11_c01082{margin-left:-6.936000pt;}
._d_c01082{margin-left:-5.120000pt;}
._f_c01082{margin-left:-3.826667pt;}
._10_c01082{margin-left:-2.416000pt;}
._b_c01082{margin-left:-1.280000pt;}
._8_c01082{width:1.045333pt;}
._7_c01082{width:2.368000pt;}
._2_c01082{width:4.096000pt;}
._1_c01082{width:5.568000pt;}
._3_c01082{width:7.232000pt;}
._4_c01082{width:8.512000pt;}
._0_c01082{width:9.472000pt;}
._c_c01082{width:10.986667pt;}
._14_c01082{width:12.096000pt;}
._9_c01082{width:13.077333pt;}
._5_c01082{width:14.016000pt;}
._e_c01082{width:15.968000pt;}
._15_c01082{width:18.816000pt;}
._16_c01082{width:19.717333pt;}
._18_c01082{width:21.328000pt;}
._a_c01082{width:25.578667pt;}
._19_c01082{width:45.248000pt;}
._12_c01082{width:148.160000pt;}
._6_c01082{width:318.592000pt;}
.fs2_c01082{font-size:32.000000pt;}
.fs6_c01082{font-size:42.666667pt;}
.fs5_c01082{font-size:53.333333pt;}
.fs4_c01082{font-size:56.000000pt;}
.fs3_c01082{font-size:58.666667pt;}
.fs1_c01082{font-size:61.333333pt;}
.fs0_c01082{font-size:64.000000pt;}
.y0_c01082{bottom:0.000000pt;}
.y1e_c01082{bottom:2.760000pt;}
.y1d_c01082{bottom:6.425212pt;}
.y1c_c01082{bottom:47.333333pt;}
.y1b_c01082{bottom:69.866667pt;}
.y1a_c01082{bottom:92.400000pt;}
.y19_c01082{bottom:113.600000pt;}
.y18_c01082{bottom:137.066667pt;}
.y17_c01082{bottom:157.733333pt;}
.y16_c01082{bottom:181.200000pt;}
.y15_c01082{bottom:203.066667pt;}
.y14_c01082{bottom:225.333333pt;}
.y13_c01082{bottom:247.466667pt;}
.y12_c01082{bottom:268.533333pt;}
.y11_c01082{bottom:291.333333pt;}
.y10_c01082{bottom:312.933333pt;}
.yf_c01082{bottom:334.133333pt;}
.ye_c01082{bottom:356.666667pt;}
.yd_c01082{bottom:380.666667pt;}
.yc_c01082{bottom:399.333333pt;}
.yb_c01082{bottom:421.466667pt;}
.ya_c01082{bottom:443.066667pt;}
.y9_c01082{bottom:464.133333pt;}
.y8_c01082{bottom:486.266667pt;}
.y7_c01082{bottom:509.600000pt;}
.y6_c01082{bottom:530.400000pt;}
.y5_c01082{bottom:552.000000pt;}
.y4_c01082{bottom:572.666667pt;}
.y3_c01082{bottom:594.533333pt;}
.y2_c01082{bottom:617.333333pt;}
.y1_c01082{bottom:639.333333pt;}
.h6_c01082{height:11.733399pt;}
.h7_c01082{height:38.937500pt;}
.h4_c01082{height:70.902344pt;}
.h2_c01082{height:74.906250pt;}
.h5_c01082{height:75.697917pt;}
.h3_c01082{height:81.031250pt;}
.h0_c01082{height:691.200000pt;}
.h1_c01082{height:691.333333pt;}
.w2_c01082{width:93.222667pt;}
.w0_c01082{width:462.466667pt;}
.w1_c01082{width:462.666667pt;}
.x0_c01082{left:0.000000pt;}
.x2_c01082{left:18.000000pt;}
.x3_c01082{left:18.933333pt;}
.x4_c01082{left:20.000000pt;}
.x5_c01082{left:21.866667pt;}
.x6_c01082{left:23.333333pt;}
.x7_c01082{left:24.666667pt;}
.x8_c01082{left:36.266667pt;}
.x1_c01082{left:123.200000pt;}
.x9_c01082{left:188.401571pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2355293b355ff41973f9eff7.woff2')format("woff");}.ff1_c01083{font-family:ff1_c01083;line-height:1.568848;font-style:normal;font-weight:normal;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_0b32aadeae82cfa37ce5d623.woff2')format("woff");}.ff2_c01083{font-family:ff2_c01083;line-height:1.480469;font-style:normal;font-weight:normal;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_6d4817ffb8bcc939d1b5177f.woff2')format("woff");}.ff3_c01083{font-family:ff3_c01083;line-height:1.575000;font-style:normal;font-weight:normal;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_a97d49255c9785325d78d3cd.woff2')format("woff");}.ff4_c01083{font-family:ff4_c01083;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01083;src:url('chunks/assets/font_032134cfbaed3221d40eed54.woff2')format("woff");}.ff5_c01083{font-family:ff5_c01083;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01083;src:url('chunks/assets/font_eef5800bcc995d225ecc72ba.woff2')format("woff");}.ff6_c01083{font-family:ff6_c01083;line-height:1.575000;font-style:normal;font-weight: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_c01083;src:url('chunks/assets/font_1b0ad34b26837902c299fa89.woff2')format("woff");}.ff7_c01083{font-family:ff7_c01083;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01083;src:url('chunks/assets/font_4a724f93c9cef7b93de26c39.woff2')format("woff");}.ff8_c01083{font-family:ff8_c01083;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01083;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff9_c01083{font-family:ff9_c01083;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01083{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0_c01083{vertical-align:0.000000px;}
.ls7_c01083{letter-spacing:-12.000000px;}
.ls5_c01083{letter-spacing:-9.000000px;}
.ls8_c01083{letter-spacing:-3.000000px;}
.ls4_c01083{letter-spacing:0.000000px;}
.ls3_c01083{letter-spacing:2.472000px;}
.ls1_c01083{letter-spacing:7.812000px;}
.ls6_c01083{letter-spacing:9.000000px;}
.ls0_c01083{letter-spacing:10.188000px;}
.ls2_c01083{letter-spacing:21.237000px;}
.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;}
}
.ws2_c01083{word-spacing:-30.528000px;}
.ws4_c01083{word-spacing:-18.750000px;}
.ws0_c01083{word-spacing:-17.352000px;}
.ws5_c01083{word-spacing:-16.629000px;}
.ws3_c01083{word-spacing:-3.900000px;}
.ws1_c01083{word-spacing:-1.152000px;}
.ws6_c01083{word-spacing:0.000000px;}
._20_c01083{margin-left:-22.062000px;}
._17_c01083{margin-left:-19.567200px;}
._6_c01083{margin-left:-12.600000px;}
._23_c01083{margin-left:-10.344000px;}
._24_c01083{margin-left:-8.880000px;}
._15_c01083{margin-left:-7.200000px;}
._16_c01083{margin-left:-5.616000px;}
._13_c01083{margin-left:-4.464000px;}
._11_c01083{margin-left:-2.880000px;}
._0_c01083{margin-left:-1.152000px;}
._a_c01083{width:1.368000px;}
._b_c01083{width:2.880000px;}
._9_c01083{width:3.960000px;}
._8_c01083{width:5.400000px;}
._2_c01083{width:6.408000px;}
._f_c01083{width:7.416000px;}
._c_c01083{width:8.496000px;}
._10_c01083{width:9.576000px;}
._7_c01083{width:10.656000px;}
._e_c01083{width:12.168000px;}
._1a_c01083{width:13.308000px;}
._d_c01083{width:14.400000px;}
._12_c01083{width:15.480000px;}
._21_c01083{width:16.578000px;}
._3_c01083{width:18.216000px;}
._19_c01083{width:20.184000px;}
._4_c01083{width:21.816000px;}
._14_c01083{width:23.256000px;}
._1b_c01083{width:42.042000px;}
._1e_c01083{width:44.652000px;}
._1c_c01083{width:53.130000px;}
._1d_c01083{width:54.846000px;}
._1f_c01083{width:116.304000px;}
._18_c01083{width:147.798000px;}
._5_c01083{width:202.824000px;}
._1_c01083{width:207.288000px;}
._25_c01083{width:246.960000px;}
._22_c01083{width:278.073000px;}
.fc2_c01083{color:transparent;}
.fc1_c01083{color:rgb(128,128,128);}
.fc0_c01083{color:rgb(0,0,0);}
.fs8_c01083{font-size:48.000000px;}
.fs2_c01083{font-size:55.200000px;}
.fs1_c01083{font-size:63.000000px;}
.fs4_c01083{font-size:66.000000px;}
.fs3_c01083{font-size:69.000000px;}
.fs0_c01083{font-size:72.000000px;}
.fs5_c01083{font-size:75.000000px;}
.fs7_c01083{font-size:81.000000px;}
.fs6_c01083{font-size:87.000000px;}
.y0_c01083{bottom:0.000000px;}
.y1e_c01083{bottom:3.105000px;}
.y1d_c01083{bottom:7.228355px;}
.y1c_c01083{bottom:66.735000px;}
.y1b_c01083{bottom:88.785000px;}
.y1a_c01083{bottom:113.385000px;}
.y19_c01083{bottom:140.085000px;}
.y18_c01083{bottom:167.685000px;}
.y17_c01083{bottom:188.685000px;}
.y16_c01083{bottom:218.235000px;}
.y15_c01083{bottom:242.985000px;}
.y14_c01083{bottom:269.535000px;}
.y13_c01083{bottom:290.835000px;}
.y12_c01083{bottom:314.235000px;}
.y11_c01083{bottom:338.385000px;}
.y10_c01083{bottom:365.085000px;}
.yf_c01083{bottom:391.035000px;}
.ye_c01083{bottom:412.785000px;}
.yd_c01083{bottom:436.635000px;}
.yc_c01083{bottom:457.935000px;}
.yb_c01083{bottom:482.235000px;}
.ya_c01083{bottom:507.585000px;}
.y9_c01083{bottom:531.885000px;}
.y8_c01083{bottom:556.785000px;}
.y7_c01083{bottom:582.135000px;}
.y6_c01083{bottom:606.135000px;}
.y5_c01083{bottom:631.035000px;}
.y4_c01083{bottom:655.635000px;}
.y3_c01083{bottom:680.385000px;}
.y2_c01083{bottom:704.385000px;}
.y1_c01083{bottom:729.885000px;}
.h8_c01083{height:13.200074px;}
.h9_c01083{height:43.804688px;}
.h6_c01083{height:73.608398px;}
.h5_c01083{height:77.247070px;}
.h3_c01083{height:84.269531px;}
.h4_c01083{height:87.361816px;}
.h2_c01083{height:91.160156px;}
.h7_c01083{height:92.829000px;}
.h1_c01083{height:786.000000px;}
.h0_c01083{height:786.225000px;}
.w2_c01083{width:104.875500px;}
.w1_c01083{width:529.500000px;}
.w0_c01083{width:529.725000px;}
.x0_c01083{left:0.000000px;}
.x9_c01083{left:37.800000px;}
.x4_c01083{left:43.200000px;}
.x8_c01083{left:114.300000px;}
.x1_c01083{left:115.800000px;}
.x7_c01083{left:117.450000px;}
.x6_c01083{left:119.100000px;}
.x5_c01083{left:121.050000px;}
.xa_c01083{left:122.850000px;}
.x2_c01083{left:203.850000px;}
.xb_c01083{left:216.676758px;}
.x3_c01083{left:251.100000px;}
@media print{
.v0_c01083{vertical-align:0.000000pt;}
.ls7_c01083{letter-spacing:-10.666667pt;}
.ls5_c01083{letter-spacing:-8.000000pt;}
.ls8_c01083{letter-spacing:-2.666667pt;}
.ls4_c01083{letter-spacing:0.000000pt;}
.ls3_c01083{letter-spacing:2.197333pt;}
.ls1_c01083{letter-spacing:6.944000pt;}
.ls6_c01083{letter-spacing:8.000000pt;}
.ls0_c01083{letter-spacing:9.056000pt;}
.ls2_c01083{letter-spacing:18.877333pt;}
.ws2_c01083{word-spacing:-27.136000pt;}
.ws4_c01083{word-spacing:-16.666667pt;}
.ws0_c01083{word-spacing:-15.424000pt;}
.ws5_c01083{word-spacing:-14.781333pt;}
.ws3_c01083{word-spacing:-3.466667pt;}
.ws1_c01083{word-spacing:-1.024000pt;}
.ws6_c01083{word-spacing:0.000000pt;}
._20_c01083{margin-left:-19.610667pt;}
._17_c01083{margin-left:-17.393067pt;}
._6_c01083{margin-left:-11.200000pt;}
._23_c01083{margin-left:-9.194667pt;}
._24_c01083{margin-left:-7.893333pt;}
._15_c01083{margin-left:-6.400000pt;}
._16_c01083{margin-left:-4.992000pt;}
._13_c01083{margin-left:-3.968000pt;}
._11_c01083{margin-left:-2.560000pt;}
._0_c01083{margin-left:-1.024000pt;}
._a_c01083{width:1.216000pt;}
._b_c01083{width:2.560000pt;}
._9_c01083{width:3.520000pt;}
._8_c01083{width:4.800000pt;}
._2_c01083{width:5.696000pt;}
._f_c01083{width:6.592000pt;}
._c_c01083{width:7.552000pt;}
._10_c01083{width:8.512000pt;}
._7_c01083{width:9.472000pt;}
._e_c01083{width:10.816000pt;}
._1a_c01083{width:11.829333pt;}
._d_c01083{width:12.800000pt;}
._12_c01083{width:13.760000pt;}
._21_c01083{width:14.736000pt;}
._3_c01083{width:16.192000pt;}
._19_c01083{width:17.941333pt;}
._4_c01083{width:19.392000pt;}
._14_c01083{width:20.672000pt;}
._1b_c01083{width:37.370667pt;}
._1e_c01083{width:39.690667pt;}
._1c_c01083{width:47.226667pt;}
._1d_c01083{width:48.752000pt;}
._1f_c01083{width:103.381333pt;}
._18_c01083{width:131.376000pt;}
._5_c01083{width:180.288000pt;}
._1_c01083{width:184.256000pt;}
._25_c01083{width:219.520000pt;}
._22_c01083{width:247.176000pt;}
.fs8_c01083{font-size:42.666667pt;}
.fs2_c01083{font-size:49.066667pt;}
.fs1_c01083{font-size:56.000000pt;}
.fs4_c01083{font-size:58.666667pt;}
.fs3_c01083{font-size:61.333333pt;}
.fs0_c01083{font-size:64.000000pt;}
.fs5_c01083{font-size:66.666667pt;}
.fs7_c01083{font-size:72.000000pt;}
.fs6_c01083{font-size:77.333333pt;}
.y0_c01083{bottom:0.000000pt;}
.y1e_c01083{bottom:2.760000pt;}
.y1d_c01083{bottom:6.425204pt;}
.y1c_c01083{bottom:59.320000pt;}
.y1b_c01083{bottom:78.920000pt;}
.y1a_c01083{bottom:100.786667pt;}
.y19_c01083{bottom:124.520000pt;}
.y18_c01083{bottom:149.053333pt;}
.y17_c01083{bottom:167.720000pt;}
.y16_c01083{bottom:193.986667pt;}
.y15_c01083{bottom:215.986667pt;}
.y14_c01083{bottom:239.586667pt;}
.y13_c01083{bottom:258.520000pt;}
.y12_c01083{bottom:279.320000pt;}
.y11_c01083{bottom:300.786667pt;}
.y10_c01083{bottom:324.520000pt;}
.yf_c01083{bottom:347.586667pt;}
.ye_c01083{bottom:366.920000pt;}
.yd_c01083{bottom:388.120000pt;}
.yc_c01083{bottom:407.053333pt;}
.yb_c01083{bottom:428.653333pt;}
.ya_c01083{bottom:451.186667pt;}
.y9_c01083{bottom:472.786667pt;}
.y8_c01083{bottom:494.920000pt;}
.y7_c01083{bottom:517.453333pt;}
.y6_c01083{bottom:538.786667pt;}
.y5_c01083{bottom:560.920000pt;}
.y4_c01083{bottom:582.786667pt;}
.y3_c01083{bottom:604.786667pt;}
.y2_c01083{bottom:626.120000pt;}
.y1_c01083{bottom:648.786667pt;}
.h8_c01083{height:11.733399pt;}
.h9_c01083{height:38.937500pt;}
.h6_c01083{height:65.429688pt;}
.h5_c01083{height:68.664062pt;}
.h3_c01083{height:74.906250pt;}
.h4_c01083{height:77.654948pt;}
.h2_c01083{height:81.031250pt;}
.h7_c01083{height:82.514667pt;}
.h1_c01083{height:698.666667pt;}
.h0_c01083{height:698.866667pt;}
.w2_c01083{width:93.222667pt;}
.w1_c01083{width:470.666667pt;}
.w0_c01083{width:470.866667pt;}
.x0_c01083{left:0.000000pt;}
.x9_c01083{left:33.600000pt;}
.x4_c01083{left:38.400000pt;}
.x8_c01083{left:101.600000pt;}
.x1_c01083{left:102.933333pt;}
.x7_c01083{left:104.400000pt;}
.x6_c01083{left:105.866667pt;}
.x5_c01083{left:107.600000pt;}
.xa_c01083{left:109.200000pt;}
.x2_c01083{left:181.200000pt;}
.xb_c01083{left:192.601563pt;}
.x3_c01083{left:223.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_75d2fdb2ed77605d22fd507a.woff2')format("woff");}.ff1_c01084{font-family:ff1_c01084;line-height:1.480469;font-style:normal;font-weight:normal;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_54fb15dcb9bccbe929c87e97.woff2')format("woff");}.ff2_c01084{font-family:ff2_c01084;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01084;src:url('chunks/assets/font_aca2ad0ad0e668922409fcde.woff2')format("woff");}.ff3_c01084{font-family:ff3_c01084;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01084;src:url('chunks/assets/font_61568792828cb92989c47126.woff2')format("woff");}.ff4_c01084{font-family:ff4_c01084;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01084;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01084{font-family:ff5_c01084;line-height:1.219238;font-style: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;}
.ls2_c01084{letter-spacing:-9.000000px;}
.ls1_c01084{letter-spacing:0.000000px;}
.ls0_c01084{letter-spacing:0.294000px;}
.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;}
}
.ws2_c01084{word-spacing:-21.051000px;}
.ws3_c01084{word-spacing:-17.352000px;}
.ws0_c01084{word-spacing:-15.906000px;}
.ws1_c01084{word-spacing:-12.724800px;}
.ws4_c01084{word-spacing:0.000000px;}
._1d_c01084{margin-left:-19.224000px;}
._1e_c01084{margin-left:-12.666000px;}
._17_c01084{margin-left:-7.992000px;}
._16_c01084{margin-left:-6.750000px;}
._b_c01084{margin-left:-4.608000px;}
._19_c01084{margin-left:-3.600000px;}
._c_c01084{margin-left:-2.448000px;}
._4_c01084{margin-left:-1.152000px;}
._e_c01084{width:1.296000px;}
._7_c01084{width:2.664000px;}
._6_c01084{width:4.392000px;}
._8_c01084{width:5.760000px;}
._12_c01084{width:6.762000px;}
._a_c01084{width:7.848000px;}
._5_c01084{width:9.000000px;}
._11_c01084{width:10.440000px;}
._2_c01084{width:11.592000px;}
._14_c01084{width:12.672000px;}
._10_c01084{width:13.680000px;}
._d_c01084{width:14.688000px;}
._f_c01084{width:15.696000px;}
._13_c01084{width:16.908000px;}
._1_c01084{width:19.728000px;}
._1a_c01084{width:21.600000px;}
._3_c01084{width:23.256000px;}
._1b_c01084{width:24.630000px;}
._0_c01084{width:25.704000px;}
._1c_c01084{width:29.736000px;}
._15_c01084{width:31.536000px;}
._1f_c01084{width:35.208000px;}
._18_c01084{width:111.318000px;}
._9_c01084{width:294.936000px;}
.fc2_c01084{color:transparent;}
.fc1_c01084{color:rgb(128,128,128);}
.fc0_c01084{color:rgb(0,0,0);}
.fs4_c01084{font-size:48.000000px;}
.fs2_c01084{font-size:52.800000px;}
.fs3_c01084{font-size:63.000000px;}
.fs1_c01084{font-size:66.000000px;}
.fs0_c01084{font-size:72.000000px;}
.y0_c01084{bottom:0.000000px;}
.y1f_c01084{bottom:3.105000px;}
.y1e_c01084{bottom:7.228369px;}
.y1d_c01084{bottom:56.670000px;}
.y1c_c01084{bottom:82.920000px;}
.y1b_c01084{bottom:110.670000px;}
.y1a_c01084{bottom:135.720000px;}
.y19_c01084{bottom:161.220000px;}
.y18_c01084{bottom:185.970000px;}
.y17_c01084{bottom:209.970000px;}
.y16_c01084{bottom:234.270000px;}
.y15_c01084{bottom:259.920000px;}
.y14_c01084{bottom:282.420000px;}
.y13_c01084{bottom:308.520000px;}
.y12_c01084{bottom:332.370000px;}
.y11_c01084{bottom:355.770000px;}
.y10_c01084{bottom:380.670000px;}
.yf_c01084{bottom:404.670000px;}
.ye_c01084{bottom:429.270000px;}
.yd_c01084{bottom:452.970000px;}
.yc_c01084{bottom:477.570000px;}
.yb_c01084{bottom:502.770000px;}
.ya_c01084{bottom:525.420000px;}
.y9_c01084{bottom:549.720000px;}
.y8_c01084{bottom:574.020000px;}
.y7_c01084{bottom:598.620000px;}
.y6_c01084{bottom:623.370000px;}
.y5_c01084{bottom:647.670000px;}
.y4_c01084{bottom:672.270000px;}
.y3_c01084{bottom:696.270000px;}
.y2_c01084{bottom:721.470000px;}
.y1_c01084{bottom:746.820000px;}
.h2_c01084{height:13.200073px;}
.h3_c01084{height:43.804688px;}
.h1_c01084{height:91.160156px;}
.h0_c01084{height:780.000000px;}
.w2_c01084{width:104.875500px;}
.w1_c01084{width:513.750000px;}
.w0_c01084{width:514.050000px;}
.x0_c01084{left:0.000000px;}
.x7_c01084{left:18.900000px;}
.x2_c01084{left:22.950000px;}
.x4_c01084{left:25.200000px;}
.x3_c01084{left:27.000000px;}
.x5_c01084{left:28.950000px;}
.x6_c01084{left:30.750000px;}
.x1_c01084{left:135.300000px;}
.x8_c01084{left:197.400000px;}
.xa_c01084{left:208.839249px;}
.x9_c01084{left:359.400000px;}
@media print{
.v0_c01084{vertical-align:0.000000pt;}
.ls2_c01084{letter-spacing:-8.000000pt;}
.ls1_c01084{letter-spacing:0.000000pt;}
.ls0_c01084{letter-spacing:0.261333pt;}
.ws2_c01084{word-spacing:-18.712000pt;}
.ws3_c01084{word-spacing:-15.424000pt;}
.ws0_c01084{word-spacing:-14.138667pt;}
.ws1_c01084{word-spacing:-11.310933pt;}
.ws4_c01084{word-spacing:0.000000pt;}
._1d_c01084{margin-left:-17.088000pt;}
._1e_c01084{margin-left:-11.258667pt;}
._17_c01084{margin-left:-7.104000pt;}
._16_c01084{margin-left:-6.000000pt;}
._b_c01084{margin-left:-4.096000pt;}
._19_c01084{margin-left:-3.200000pt;}
._c_c01084{margin-left:-2.176000pt;}
._4_c01084{margin-left:-1.024000pt;}
._e_c01084{width:1.152000pt;}
._7_c01084{width:2.368000pt;}
._6_c01084{width:3.904000pt;}
._8_c01084{width:5.120000pt;}
._12_c01084{width:6.010667pt;}
._a_c01084{width:6.976000pt;}
._5_c01084{width:8.000000pt;}
._11_c01084{width:9.280000pt;}
._2_c01084{width:10.304000pt;}
._14_c01084{width:11.264000pt;}
._10_c01084{width:12.160000pt;}
._d_c01084{width:13.056000pt;}
._f_c01084{width:13.952000pt;}
._13_c01084{width:15.029333pt;}
._1_c01084{width:17.536000pt;}
._1a_c01084{width:19.200000pt;}
._3_c01084{width:20.672000pt;}
._1b_c01084{width:21.893333pt;}
._0_c01084{width:22.848000pt;}
._1c_c01084{width:26.432000pt;}
._15_c01084{width:28.032000pt;}
._1f_c01084{width:31.296000pt;}
._18_c01084{width:98.949333pt;}
._9_c01084{width:262.165333pt;}
.fs4_c01084{font-size:42.666667pt;}
.fs2_c01084{font-size:46.933333pt;}
.fs3_c01084{font-size:56.000000pt;}
.fs1_c01084{font-size:58.666667pt;}
.fs0_c01084{font-size:64.000000pt;}
.y0_c01084{bottom:0.000000pt;}
.y1f_c01084{bottom:2.760000pt;}
.y1e_c01084{bottom:6.425217pt;}
.y1d_c01084{bottom:50.373333pt;}
.y1c_c01084{bottom:73.706667pt;}
.y1b_c01084{bottom:98.373333pt;}
.y1a_c01084{bottom:120.640000pt;}
.y19_c01084{bottom:143.306667pt;}
.y18_c01084{bottom:165.306667pt;}
.y17_c01084{bottom:186.640000pt;}
.y16_c01084{bottom:208.240000pt;}
.y15_c01084{bottom:231.040000pt;}
.y14_c01084{bottom:251.040000pt;}
.y13_c01084{bottom:274.240000pt;}
.y12_c01084{bottom:295.440000pt;}
.y11_c01084{bottom:316.240000pt;}
.y10_c01084{bottom:338.373333pt;}
.yf_c01084{bottom:359.706667pt;}
.ye_c01084{bottom:381.573333pt;}
.yd_c01084{bottom:402.640000pt;}
.yc_c01084{bottom:424.506667pt;}
.yb_c01084{bottom:446.906667pt;}
.ya_c01084{bottom:467.040000pt;}
.y9_c01084{bottom:488.640000pt;}
.y8_c01084{bottom:510.240000pt;}
.y7_c01084{bottom:532.106667pt;}
.y6_c01084{bottom:554.106667pt;}
.y5_c01084{bottom:575.706667pt;}
.y4_c01084{bottom:597.573333pt;}
.y3_c01084{bottom:618.906667pt;}
.y2_c01084{bottom:641.306667pt;}
.y1_c01084{bottom:663.840000pt;}
.h2_c01084{height:11.733399pt;}
.h3_c01084{height:38.937500pt;}
.h1_c01084{height:81.031250pt;}
.h0_c01084{height:693.333333pt;}
.w2_c01084{width:93.222667pt;}
.w1_c01084{width:456.666667pt;}
.w0_c01084{width:456.933333pt;}
.x0_c01084{left:0.000000pt;}
.x7_c01084{left:16.800000pt;}
.x2_c01084{left:20.400000pt;}
.x4_c01084{left:22.400000pt;}
.x3_c01084{left:24.000000pt;}
.x5_c01084{left:25.733333pt;}
.x6_c01084{left:27.333333pt;}
.x1_c01084{left:120.266667pt;}
.x8_c01084{left:175.466667pt;}
.xa_c01084{left:185.634888pt;}
.x9_c01084{left:319.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2b55c0b2cdcfdb30085f5311.woff2')format("woff");}.ff1_c01085{font-family:ff1_c01085;line-height:1.480469;font-style:normal;font-weight:normal;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_2f0e89a6f68fc9f0663c0e5f.woff2')format("woff");}.ff2_c01085{font-family:ff2_c01085;line-height:1.568848;font-style:normal;font-weight:normal;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_79dcebbb2101e41394e7d4aa.woff2')format("woff");}.ff3_c01085{font-family:ff3_c01085;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01085;src:url('chunks/assets/font_2f326e9caf47599d6a224a32.woff2')format("woff");}.ff4_c01085{font-family:ff4_c01085;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01085;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01085{font-family:ff5_c01085;line-height:1.219238;font-style: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);}
.v1_c01085{vertical-align:-80.400000px;}
.v0_c01085{vertical-align:0.000000px;}
.ls0_c01085{letter-spacing:-6.000000px;}
.ls1_c01085{letter-spacing:0.000000px;}
.ls2_c01085{letter-spacing:3.000000px;}
.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:-17.352000px;}
.ws2_c01085{word-spacing:0.000000px;}
.ws1_c01085{word-spacing:0.288000px;}
._1c_c01085{margin-left:-25.479000px;}
._e_c01085{margin-left:-8.730000px;}
._f_c01085{margin-left:-7.182000px;}
._11_c01085{margin-left:-5.760000px;}
._10_c01085{margin-left:-3.960000px;}
._12_c01085{margin-left:-2.556000px;}
._4_c01085{margin-left:-1.332000px;}
._1_c01085{width:1.296000px;}
._2_c01085{width:2.673000px;}
._0_c01085{width:3.807000px;}
._d_c01085{width:4.824000px;}
._3_c01085{width:5.832000px;}
._5_c01085{width:6.930000px;}
._7_c01085{width:8.280000px;}
._b_c01085{width:9.312000px;}
._a_c01085{width:10.377000px;}
._8_c01085{width:11.592000px;}
._9_c01085{width:12.918000px;}
._c_c01085{width:14.409000px;}
._1b_c01085{width:15.981000px;}
._19_c01085{width:18.381000px;}
._6_c01085{width:19.926000px;}
._18_c01085{width:21.315000px;}
._1a_c01085{width:25.440000px;}
._14_c01085{width:35.850000px;}
._1d_c01085{width:64.284000px;}
._16_c01085{width:70.776000px;}
._17_c01085{width:131.967000px;}
._1e_c01085{width:206.709000px;}
._13_c01085{width:273.390000px;}
._15_c01085{width:348.006000px;}
.fc2_c01085{color:transparent;}
.fc1_c01085{color:rgb(128,128,128);}
.fc0_c01085{color:rgb(0,0,0);}
.fs3_c01085{font-size:48.000000px;}
.fs2_c01085{font-size:57.000000px;}
.fs1_c01085{font-size:72.000000px;}
.fs0_c01085{font-size:81.000000px;}
.y0_c01085{bottom:0.000000px;}
.y1e_c01085{bottom:3.105000px;}
.y1d_c01085{bottom:7.228363px;}
.y1c_c01085{bottom:80.550000px;}
.y1b_c01085{bottom:106.200000px;}
.y1a_c01085{bottom:130.950000px;}
.y19_c01085{bottom:156.300000px;}
.y18_c01085{bottom:181.200000px;}
.y17_c01085{bottom:206.550000px;}
.y16_c01085{bottom:230.850000px;}
.y15_c01085{bottom:256.200000px;}
.y14_c01085{bottom:281.100000px;}
.y13_c01085{bottom:305.700000px;}
.y12_c01085{bottom:330.300000px;}
.y11_c01085{bottom:353.700000px;}
.y10_c01085{bottom:378.600000px;}
.yf_c01085{bottom:402.000000px;}
.ye_c01085{bottom:426.900000px;}
.yd_c01085{bottom:451.200000px;}
.yc_c01085{bottom:474.750000px;}
.yb_c01085{bottom:498.750000px;}
.ya_c01085{bottom:523.500000px;}
.y9_c01085{bottom:546.750000px;}
.y8_c01085{bottom:570.750000px;}
.y7_c01085{bottom:596.400000px;}
.y6_c01085{bottom:622.050000px;}
.y5_c01085{bottom:646.950000px;}
.y4_c01085{bottom:671.400000px;}
.y3_c01085{bottom:696.000000px;}
.y2_c01085{bottom:721.500000px;}
.y1_c01085{bottom:746.250000px;}
.h4_c01085{height:13.200074px;}
.h5_c01085{height:43.804688px;}
.h3_c01085{height:91.160156px;}
.h2_c01085{height:102.555176px;}
.h1_c01085{height:781.500000px;}
.h0_c01085{height:781.650000px;}
.w2_c01085{width:104.875500px;}
.w1_c01085{width:513.000000px;}
.w0_c01085{width:513.300000px;}
.x0_c01085{left:0.000000px;}
.x4_c01085{left:25.200000px;}
.x6_c01085{left:28.650000px;}
.x5_c01085{left:40.200000px;}
.x7_c01085{left:61.800000px;}
.x3_c01085{left:103.200000px;}
.x2_c01085{left:104.250000px;}
.x8_c01085{left:106.350000px;}
.x9_c01085{left:108.300000px;}
.xa_c01085{left:208.464249px;}
.x1_c01085{left:237.600000px;}
@media print{
.v1_c01085{vertical-align:-71.466667pt;}
.v0_c01085{vertical-align:0.000000pt;}
.ls0_c01085{letter-spacing:-5.333333pt;}
.ls1_c01085{letter-spacing:0.000000pt;}
.ls2_c01085{letter-spacing:2.666667pt;}
.ws0_c01085{word-spacing:-15.424000pt;}
.ws2_c01085{word-spacing:0.000000pt;}
.ws1_c01085{word-spacing:0.256000pt;}
._1c_c01085{margin-left:-22.648000pt;}
._e_c01085{margin-left:-7.760000pt;}
._f_c01085{margin-left:-6.384000pt;}
._11_c01085{margin-left:-5.120000pt;}
._10_c01085{margin-left:-3.520000pt;}
._12_c01085{margin-left:-2.272000pt;}
._4_c01085{margin-left:-1.184000pt;}
._1_c01085{width:1.152000pt;}
._2_c01085{width:2.376000pt;}
._0_c01085{width:3.384000pt;}
._d_c01085{width:4.288000pt;}
._3_c01085{width:5.184000pt;}
._5_c01085{width:6.160000pt;}
._7_c01085{width:7.360000pt;}
._b_c01085{width:8.277333pt;}
._a_c01085{width:9.224000pt;}
._8_c01085{width:10.304000pt;}
._9_c01085{width:11.482667pt;}
._c_c01085{width:12.808000pt;}
._1b_c01085{width:14.205333pt;}
._19_c01085{width:16.338667pt;}
._6_c01085{width:17.712000pt;}
._18_c01085{width:18.946667pt;}
._1a_c01085{width:22.613333pt;}
._14_c01085{width:31.866667pt;}
._1d_c01085{width:57.141333pt;}
._16_c01085{width:62.912000pt;}
._17_c01085{width:117.304000pt;}
._1e_c01085{width:183.741333pt;}
._13_c01085{width:243.013333pt;}
._15_c01085{width:309.338667pt;}
.fs3_c01085{font-size:42.666667pt;}
.fs2_c01085{font-size:50.666667pt;}
.fs1_c01085{font-size:64.000000pt;}
.fs0_c01085{font-size:72.000000pt;}
.y0_c01085{bottom:0.000000pt;}
.y1e_c01085{bottom:2.760000pt;}
.y1d_c01085{bottom:6.425212pt;}
.y1c_c01085{bottom:71.600000pt;}
.y1b_c01085{bottom:94.400000pt;}
.y1a_c01085{bottom:116.400000pt;}
.y19_c01085{bottom:138.933333pt;}
.y18_c01085{bottom:161.066667pt;}
.y17_c01085{bottom:183.600000pt;}
.y16_c01085{bottom:205.200000pt;}
.y15_c01085{bottom:227.733333pt;}
.y14_c01085{bottom:249.866667pt;}
.y13_c01085{bottom:271.733333pt;}
.y12_c01085{bottom:293.600000pt;}
.y11_c01085{bottom:314.400000pt;}
.y10_c01085{bottom:336.533333pt;}
.yf_c01085{bottom:357.333333pt;}
.ye_c01085{bottom:379.466667pt;}
.yd_c01085{bottom:401.066667pt;}
.yc_c01085{bottom:422.000000pt;}
.yb_c01085{bottom:443.333333pt;}
.ya_c01085{bottom:465.333333pt;}
.y9_c01085{bottom:486.000000pt;}
.y8_c01085{bottom:507.333333pt;}
.y7_c01085{bottom:530.133333pt;}
.y6_c01085{bottom:552.933333pt;}
.y5_c01085{bottom:575.066667pt;}
.y4_c01085{bottom:596.800000pt;}
.y3_c01085{bottom:618.666667pt;}
.y2_c01085{bottom:641.333333pt;}
.y1_c01085{bottom:663.333333pt;}
.h4_c01085{height:11.733399pt;}
.h5_c01085{height:38.937500pt;}
.h3_c01085{height:81.031250pt;}
.h2_c01085{height:91.160156pt;}
.h1_c01085{height:694.666667pt;}
.h0_c01085{height:694.800000pt;}
.w2_c01085{width:93.222667pt;}
.w1_c01085{width:456.000000pt;}
.w0_c01085{width:456.266667pt;}
.x0_c01085{left:0.000000pt;}
.x4_c01085{left:22.400000pt;}
.x6_c01085{left:25.466667pt;}
.x5_c01085{left:35.733333pt;}
.x7_c01085{left:54.933333pt;}
.x3_c01085{left:91.733333pt;}
.x2_c01085{left:92.666667pt;}
.x8_c01085{left:94.533333pt;}
.x9_c01085{left:96.266667pt;}
.xa_c01085{left:185.301554pt;}
.x1_c01085{left:211.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2e46afec7e15370ea91c6c9d.woff2')format("woff");}.ff1_c01086{font-family:ff1_c01086;line-height:1.568848;font-style:normal;font-weight:normal;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_a6748294be945c5c6577ce25.woff2')format("woff");}.ff2_c01086{font-family:ff2_c01086;line-height:1.480469;font-style:normal;font-weight:normal;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_6a2c8cdc0d4493e8840e3547.woff2')format("woff");}.ff3_c01086{font-family:ff3_c01086;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01086;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01086{font-family:ff4_c01086;line-height:1.219238;font-style: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;}
.ls2_c01086{letter-spacing:3.000000px;}
.ls0_c01086{letter-spacing:4.971000px;}
.ls3_c01086{letter-spacing:9.000000px;}
.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:-25.629000px;}
.ws1_c01086{word-spacing:-17.352000px;}
.ws2_c01086{word-spacing:0.000000px;}
._1_c01086{margin-left:-13.176000px;}
._10_c01086{margin-left:-7.848000px;}
._11_c01086{margin-left:-6.624000px;}
._17_c01086{margin-left:-5.544000px;}
._18_c01086{margin-left:-4.536000px;}
._2_c01086{margin-left:-3.240000px;}
._e_c01086{margin-left:-1.440000px;}
._3_c01086{width:1.080000px;}
._6_c01086{width:2.880000px;}
._5_c01086{width:3.888000px;}
._4_c01086{width:4.896000px;}
._b_c01086{width:6.192000px;}
._a_c01086{width:8.064000px;}
._9_c01086{width:9.792000px;}
._12_c01086{width:10.800000px;}
._16_c01086{width:12.096000px;}
._c_c01086{width:13.248000px;}
._d_c01086{width:14.688000px;}
._14_c01086{width:15.984000px;}
._f_c01086{width:18.792000px;}
._15_c01086{width:23.184000px;}
._8_c01086{width:24.408000px;}
._13_c01086{width:33.768000px;}
._0_c01086{width:43.488000px;}
._19_c01086{width:311.328000px;}
._7_c01086{width:314.928000px;}
.fc2_c01086{color:transparent;}
.fc1_c01086{color:rgb(128,128,128);}
.fc0_c01086{color:rgb(0,0,0);}
.fs4_c01086{font-size:48.000000px;}
.fs1_c01086{font-size:57.000000px;}
.fs2_c01086{font-size:69.000000px;}
.fs0_c01086{font-size:72.000000px;}
.fs3_c01086{font-size:87.000000px;}
.y0_c01086{bottom:0.000000px;}
.y1f_c01086{bottom:3.105000px;}
.y1e_c01086{bottom:7.228357px;}
.y1d_c01086{bottom:33.030000px;}
.y1c_c01086{bottom:61.380000px;}
.y1b_c01086{bottom:85.380000px;}
.y1a_c01086{bottom:111.030000px;}
.y19_c01086{bottom:136.080000px;}
.y18_c01086{bottom:160.680000px;}
.y17_c01086{bottom:185.580000px;}
.y16_c01086{bottom:209.880000px;}
.y15_c01086{bottom:234.630000px;}
.y14_c01086{bottom:258.930000px;}
.y13_c01086{bottom:283.830000px;}
.y12_c01086{bottom:306.780000px;}
.y11_c01086{bottom:331.380000px;}
.y10_c01086{bottom:355.830000px;}
.yf_c01086{bottom:380.430000px;}
.ye_c01086{bottom:405.330000px;}
.yd_c01086{bottom:429.330000px;}
.yc_c01086{bottom:453.630000px;}
.yb_c01086{bottom:477.630000px;}
.ya_c01086{bottom:501.630000px;}
.y9_c01086{bottom:525.930000px;}
.y8_c01086{bottom:549.780000px;}
.y7_c01086{bottom:574.830000px;}
.y6_c01086{bottom:598.830000px;}
.y5_c01086{bottom:623.130000px;}
.y4_c01086{bottom:648.030000px;}
.y3_c01086{bottom:672.030000px;}
.y2_c01086{bottom:696.930000px;}
.y1_c01086{bottom:721.530000px;}
.h3_c01086{height:13.200074px;}
.h4_c01086{height:43.804688px;}
.h1_c01086{height:91.160156px;}
.h2_c01086{height:110.151855px;}
.h0_c01086{height:772.500000px;}
.w2_c01086{width:104.875500px;}
.w0_c01086{width:521.925000px;}
.w1_c01086{width:522.000000px;}
.x0_c01086{left:0.000000px;}
.x8_c01086{left:29.250000px;}
.x5_c01086{left:31.350000px;}
.x7_c01086{left:32.400000px;}
.x2_c01086{left:34.200000px;}
.x4_c01086{left:35.400000px;}
.x6_c01086{left:37.050000px;}
.x3_c01086{left:38.100000px;}
.x9_c01086{left:119.100000px;}
.x1_c01086{left:154.650000px;}
.xb_c01086{left:212.776749px;}
.xa_c01086{left:272.100000px;}
@media print{
.v0_c01086{vertical-align:0.000000pt;}
.ls1_c01086{letter-spacing:0.000000pt;}
.ls2_c01086{letter-spacing:2.666667pt;}
.ls0_c01086{letter-spacing:4.418667pt;}
.ls3_c01086{letter-spacing:8.000000pt;}
.ws0_c01086{word-spacing:-22.781333pt;}
.ws1_c01086{word-spacing:-15.424000pt;}
.ws2_c01086{word-spacing:0.000000pt;}
._1_c01086{margin-left:-11.712000pt;}
._10_c01086{margin-left:-6.976000pt;}
._11_c01086{margin-left:-5.888000pt;}
._17_c01086{margin-left:-4.928000pt;}
._18_c01086{margin-left:-4.032000pt;}
._2_c01086{margin-left:-2.880000pt;}
._e_c01086{margin-left:-1.280000pt;}
._3_c01086{width:0.960000pt;}
._6_c01086{width:2.560000pt;}
._5_c01086{width:3.456000pt;}
._4_c01086{width:4.352000pt;}
._b_c01086{width:5.504000pt;}
._a_c01086{width:7.168000pt;}
._9_c01086{width:8.704000pt;}
._12_c01086{width:9.600000pt;}
._16_c01086{width:10.752000pt;}
._c_c01086{width:11.776000pt;}
._d_c01086{width:13.056000pt;}
._14_c01086{width:14.208000pt;}
._f_c01086{width:16.704000pt;}
._15_c01086{width:20.608000pt;}
._8_c01086{width:21.696000pt;}
._13_c01086{width:30.016000pt;}
._0_c01086{width:38.656000pt;}
._19_c01086{width:276.736000pt;}
._7_c01086{width:279.936000pt;}
.fs4_c01086{font-size:42.666667pt;}
.fs1_c01086{font-size:50.666667pt;}
.fs2_c01086{font-size:61.333333pt;}
.fs0_c01086{font-size:64.000000pt;}
.fs3_c01086{font-size:77.333333pt;}
.y0_c01086{bottom:0.000000pt;}
.y1f_c01086{bottom:2.760000pt;}
.y1e_c01086{bottom:6.425206pt;}
.y1d_c01086{bottom:29.360000pt;}
.y1c_c01086{bottom:54.560000pt;}
.y1b_c01086{bottom:75.893333pt;}
.y1a_c01086{bottom:98.693333pt;}
.y19_c01086{bottom:120.960000pt;}
.y18_c01086{bottom:142.826667pt;}
.y17_c01086{bottom:164.960000pt;}
.y16_c01086{bottom:186.560000pt;}
.y15_c01086{bottom:208.560000pt;}
.y14_c01086{bottom:230.160000pt;}
.y13_c01086{bottom:252.293333pt;}
.y12_c01086{bottom:272.693333pt;}
.y11_c01086{bottom:294.560000pt;}
.y10_c01086{bottom:316.293333pt;}
.yf_c01086{bottom:338.160000pt;}
.ye_c01086{bottom:360.293333pt;}
.yd_c01086{bottom:381.626667pt;}
.yc_c01086{bottom:403.226667pt;}
.yb_c01086{bottom:424.560000pt;}
.ya_c01086{bottom:445.893333pt;}
.y9_c01086{bottom:467.493333pt;}
.y8_c01086{bottom:488.693333pt;}
.y7_c01086{bottom:510.960000pt;}
.y6_c01086{bottom:532.293333pt;}
.y5_c01086{bottom:553.893333pt;}
.y4_c01086{bottom:576.026667pt;}
.y3_c01086{bottom:597.360000pt;}
.y2_c01086{bottom:619.493333pt;}
.y1_c01086{bottom:641.360000pt;}
.h3_c01086{height:11.733399pt;}
.h4_c01086{height:38.937500pt;}
.h1_c01086{height:81.031250pt;}
.h2_c01086{height:97.912760pt;}
.h0_c01086{height:686.666667pt;}
.w2_c01086{width:93.222667pt;}
.w0_c01086{width:463.933333pt;}
.w1_c01086{width:464.000000pt;}
.x0_c01086{left:0.000000pt;}
.x8_c01086{left:26.000000pt;}
.x5_c01086{left:27.866667pt;}
.x7_c01086{left:28.800000pt;}
.x2_c01086{left:30.400000pt;}
.x4_c01086{left:31.466667pt;}
.x6_c01086{left:32.933333pt;}
.x3_c01086{left:33.866667pt;}
.x9_c01086{left:105.866667pt;}
.x1_c01086{left:137.466667pt;}
.xb_c01086{left:189.134888pt;}
.xa_c01086{left:241.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c0e04641f78e489583980848.woff2')format("woff");}.ff1_c01087{font-family:ff1_c01087;line-height:1.480469;font-style:normal;font-weight:normal;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_6296f1704fefdc61297963db.woff2')format("woff");}.ff2_c01087{font-family:ff2_c01087;line-height:1.568848;font-style:normal;font-weight:normal;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_882c19e699b5f2dc8eff9aab.woff2')format("woff");}.ff3_c01087{font-family:ff3_c01087;line-height:1.284668;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01087{font-family:ff4_c01087;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c01087{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,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);}
.m2_c01087{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.v0_c01087{vertical-align:0.000000px;}
.ls0_c01087{letter-spacing:0.000000px;}
.ls1_c01087{letter-spacing:3.000000px;}
.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;}
}
.ws1_c01087{word-spacing:-20.967000px;}
.ws0_c01087{word-spacing:-17.352000px;}
.ws2_c01087{word-spacing:0.000000px;}
._e_c01087{margin-left:-20.472000px;}
._f_c01087{margin-left:-9.048000px;}
._15_c01087{margin-left:-7.656000px;}
._10_c01087{margin-left:-6.120000px;}
._d_c01087{margin-left:-4.008000px;}
._9_c01087{margin-left:-2.952000px;}
._c_c01087{margin-left:-1.176000px;}
._6_c01087{width:1.944000px;}
._4_c01087{width:3.024000px;}
._a_c01087{width:4.176000px;}
._8_c01087{width:5.400000px;}
._7_c01087{width:6.768000px;}
._2_c01087{width:8.520000px;}
._1_c01087{width:10.080000px;}
._5_c01087{width:11.808000px;}
._11_c01087{width:13.752000px;}
._12_c01087{width:14.952000px;}
._3_c01087{width:17.880000px;}
._0_c01087{width:19.200000px;}
._b_c01087{width:21.048000px;}
._13_c01087{width:34.626000px;}
._16_c01087{width:147.948000px;}
._14_c01087{width:176.436000px;}
.fc2_c01087{color:transparent;}
.fc1_c01087{color:rgb(128,128,128);}
.fc0_c01087{color:rgb(0,0,0);}
.fs3_c01087{font-size:33.000000px;}
.fs5_c01087{font-size:48.000000px;}
.fs2_c01087{font-size:57.000000px;}
.fs0_c01087{font-size:60.000000px;}
.fs1_c01087{font-size:72.000000px;}
.fs4_c01087{font-size:87.000000px;}
.y0_c01087{bottom:0.000000px;}
.y1f_c01087{bottom:3.105000px;}
.y1e_c01087{bottom:7.228355px;}
.y1d_c01087{bottom:54.585000px;}
.y1c_c01087{bottom:68.535000px;}
.y1b_c01087{bottom:94.035000px;}
.y1a_c01087{bottom:118.335000px;}
.y19_c01087{bottom:142.785000px;}
.y18_c01087{bottom:169.035000px;}
.y17_c01087{bottom:192.585000px;}
.y16_c01087{bottom:217.635000px;}
.y15_c01087{bottom:242.535000px;}
.y14_c01087{bottom:266.835000px;}
.y13_c01087{bottom:290.835000px;}
.y12_c01087{bottom:316.485000px;}
.y11_c01087{bottom:338.535000px;}
.y10_c01087{bottom:364.035000px;}
.yf_c01087{bottom:388.785000px;}
.ye_c01087{bottom:413.085000px;}
.yd_c01087{bottom:437.085000px;}
.yc_c01087{bottom:461.985000px;}
.yb_c01087{bottom:485.535000px;}
.ya_c01087{bottom:509.835000px;}
.y9_c01087{bottom:534.285000px;}
.y8_c01087{bottom:559.185000px;}
.y7_c01087{bottom:583.185000px;}
.y6_c01087{bottom:608.085000px;}
.y5_c01087{bottom:631.785000px;}
.y4_c01087{bottom:657.435000px;}
.y3_c01087{bottom:681.735000px;}
.y2_c01087{bottom:706.335000px;}
.y1_c01087{bottom:731.685000px;}
.h5_c01087{height:13.200074px;}
.h6_c01087{height:43.804688px;}
.h2_c01087{height:75.966797px;}
.h3_c01087{height:91.160156px;}
.h4_c01087{height:110.151855px;}
.h0_c01087{height:784.875000px;}
.h1_c01087{height:785.250000px;}
.w2_c01087{width:104.875500px;}
.w0_c01087{width:532.425000px;}
.w1_c01087{width:532.500000px;}
.x0_c01087{left:0.000000px;}
.x2_c01087{left:108.000000px;}
.x3_c01087{left:110.100000px;}
.x4_c01087{left:113.100000px;}
.x5_c01087{left:114.750000px;}
.x6_c01087{left:116.400000px;}
.x7_c01087{left:118.350000px;}
.x8_c01087{left:119.850000px;}
.x9_c01087{left:121.050000px;}
.xa_c01087{left:150.150000px;}
.xe_c01087{left:218.026749px;}
.x1_c01087{left:242.700000px;}
.xb_c01087{left:273.300000px;}
.xc_c01087{left:279.450000px;}
.xd_c01087{left:340.200000px;}
@media print{
.v0_c01087{vertical-align:0.000000pt;}
.ls0_c01087{letter-spacing:0.000000pt;}
.ls1_c01087{letter-spacing:2.666667pt;}
.ws1_c01087{word-spacing:-18.637333pt;}
.ws0_c01087{word-spacing:-15.424000pt;}
.ws2_c01087{word-spacing:0.000000pt;}
._e_c01087{margin-left:-18.197333pt;}
._f_c01087{margin-left:-8.042667pt;}
._15_c01087{margin-left:-6.805333pt;}
._10_c01087{margin-left:-5.440000pt;}
._d_c01087{margin-left:-3.562667pt;}
._9_c01087{margin-left:-2.624000pt;}
._c_c01087{margin-left:-1.045333pt;}
._6_c01087{width:1.728000pt;}
._4_c01087{width:2.688000pt;}
._a_c01087{width:3.712000pt;}
._8_c01087{width:4.800000pt;}
._7_c01087{width:6.016000pt;}
._2_c01087{width:7.573333pt;}
._1_c01087{width:8.960000pt;}
._5_c01087{width:10.496000pt;}
._11_c01087{width:12.224000pt;}
._12_c01087{width:13.290667pt;}
._3_c01087{width:15.893333pt;}
._0_c01087{width:17.066667pt;}
._b_c01087{width:18.709333pt;}
._13_c01087{width:30.778667pt;}
._16_c01087{width:131.509333pt;}
._14_c01087{width:156.832000pt;}
.fs3_c01087{font-size:29.333333pt;}
.fs5_c01087{font-size:42.666667pt;}
.fs2_c01087{font-size:50.666667pt;}
.fs0_c01087{font-size:53.333333pt;}
.fs1_c01087{font-size:64.000000pt;}
.fs4_c01087{font-size:77.333333pt;}
.y0_c01087{bottom:0.000000pt;}
.y1f_c01087{bottom:2.760000pt;}
.y1e_c01087{bottom:6.425204pt;}
.y1d_c01087{bottom:48.520000pt;}
.y1c_c01087{bottom:60.920000pt;}
.y1b_c01087{bottom:83.586667pt;}
.y1a_c01087{bottom:105.186667pt;}
.y19_c01087{bottom:126.920000pt;}
.y18_c01087{bottom:150.253333pt;}
.y17_c01087{bottom:171.186667pt;}
.y16_c01087{bottom:193.453333pt;}
.y15_c01087{bottom:215.586667pt;}
.y14_c01087{bottom:237.186667pt;}
.y13_c01087{bottom:258.520000pt;}
.y12_c01087{bottom:281.320000pt;}
.y11_c01087{bottom:300.920000pt;}
.y10_c01087{bottom:323.586667pt;}
.yf_c01087{bottom:345.586667pt;}
.ye_c01087{bottom:367.186667pt;}
.yd_c01087{bottom:388.520000pt;}
.yc_c01087{bottom:410.653333pt;}
.yb_c01087{bottom:431.586667pt;}
.ya_c01087{bottom:453.186667pt;}
.y9_c01087{bottom:474.920000pt;}
.y8_c01087{bottom:497.053333pt;}
.y7_c01087{bottom:518.386667pt;}
.y6_c01087{bottom:540.520000pt;}
.y5_c01087{bottom:561.586667pt;}
.y4_c01087{bottom:584.386667pt;}
.y3_c01087{bottom:605.986667pt;}
.y2_c01087{bottom:627.853333pt;}
.y1_c01087{bottom:650.386667pt;}
.h5_c01087{height:11.733399pt;}
.h6_c01087{height:38.937500pt;}
.h2_c01087{height:67.526042pt;}
.h3_c01087{height:81.031250pt;}
.h4_c01087{height:97.912760pt;}
.h0_c01087{height:697.666667pt;}
.h1_c01087{height:698.000000pt;}
.w2_c01087{width:93.222667pt;}
.w0_c01087{width:473.266667pt;}
.w1_c01087{width:473.333333pt;}
.x0_c01087{left:0.000000pt;}
.x2_c01087{left:96.000000pt;}
.x3_c01087{left:97.866667pt;}
.x4_c01087{left:100.533333pt;}
.x5_c01087{left:102.000000pt;}
.x6_c01087{left:103.466667pt;}
.x7_c01087{left:105.200000pt;}
.x8_c01087{left:106.533333pt;}
.x9_c01087{left:107.600000pt;}
.xa_c01087{left:133.466667pt;}
.xe_c01087{left:193.801554pt;}
.x1_c01087{left:215.733333pt;}
.xb_c01087{left:242.933333pt;}
.xc_c01087{left:248.400000pt;}
.xd_c01087{left:302.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_013fc2073e68e053854a1f95.woff2')format("woff");}.ff1_c01088{font-family:ff1_c01088;line-height:1.480469;font-style:normal;font-weight:normal;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_bef886beca7f24a36ee5403a.woff2')format("woff");}.ff2_c01088{font-family:ff2_c01088;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01088{font-family:ff3_c01088;line-height:1.219238;font-style: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;}
.ls0_c01088{letter-spacing:0.000000px;}
.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.000000px;}
._10_c01088{margin-left:-5.616000px;}
._a_c01088{margin-left:-4.536000px;}
._f_c01088{margin-left:-3.528000px;}
._c_c01088{margin-left:-2.520000px;}
._9_c01088{margin-left:-1.224000px;}
._b_c01088{width:1.008000px;}
._2_c01088{width:2.304000px;}
._5_c01088{width:3.888000px;}
._3_c01088{width:4.968000px;}
._4_c01088{width:6.552000px;}
._d_c01088{width:7.704000px;}
._6_c01088{width:9.072000px;}
._e_c01088{width:10.800000px;}
._13_c01088{width:12.168000px;}
._8_c01088{width:13.176000px;}
._1_c01088{width:15.264000px;}
._15_c01088{width:21.357000px;}
._0_c01088{width:24.048000px;}
._12_c01088{width:28.080000px;}
._14_c01088{width:32.382000px;}
._16_c01088{width:35.532000px;}
._11_c01088{width:44.280000px;}
._17_c01088{width:186.867000px;}
._7_c01088{width:318.096000px;}
.fc2_c01088{color:transparent;}
.fc1_c01088{color:rgb(128,128,128);}
.fc0_c01088{color:rgb(0,0,0);}
.fs2_c01088{font-size:48.000000px;}
.fs1_c01088{font-size:63.000000px;}
.fs0_c01088{font-size:72.000000px;}
.y0_c01088{bottom:0.000000px;}
.y1f_c01088{bottom:3.105000px;}
.y1e_c01088{bottom:7.228371px;}
.y1d_c01088{bottom:32.115000px;}
.y1c_c01088{bottom:59.415000px;}
.y1b_c01088{bottom:85.065000px;}
.y1a_c01088{bottom:109.365000px;}
.y19_c01088{bottom:134.415000px;}
.y18_c01088{bottom:156.615000px;}
.y17_c01088{bottom:183.015000px;}
.y16_c01088{bottom:208.665000px;}
.y15_c01088{bottom:232.665000px;}
.y14_c01088{bottom:256.215000px;}
.y13_c01088{bottom:281.865000px;}
.y12_c01088{bottom:306.765000px;}
.y11_c01088{bottom:330.765000px;}
.y10_c01088{bottom:354.765000px;}
.yf_c01088{bottom:379.665000px;}
.ye_c01088{bottom:403.065000px;}
.yd_c01088{bottom:427.965000px;}
.yc_c01088{bottom:451.665000px;}
.yb_c01088{bottom:476.265000px;}
.ya_c01088{bottom:500.265000px;}
.y9_c01088{bottom:524.265000px;}
.y8_c01088{bottom:548.565000px;}
.y7_c01088{bottom:573.165000px;}
.y6_c01088{bottom:597.765000px;}
.y5_c01088{bottom:622.065000px;}
.y4_c01088{bottom:647.115000px;}
.y3_c01088{bottom:670.665000px;}
.y2_c01088{bottom:695.715000px;}
.y1_c01088{bottom:720.615000px;}
.h5_c01088{height:13.200074px;}
.h6_c01088{height:43.804688px;}
.h4_c01088{height:79.765137px;}
.h2_c01088{height:84.269531px;}
.h3_c01088{height:91.160156px;}
.h0_c01088{height:767.625000px;}
.h1_c01088{height:768.000000px;}
.w1_c01088{width:104.875500px;}
.w0_c01088{width:526.500000px;}
.x0_c01088{left:0.000000px;}
.x6_c01088{left:17.250000px;}
.x2_c01088{left:21.600000px;}
.x3_c01088{left:22.650000px;}
.x4_c01088{left:24.000000px;}
.x5_c01088{left:25.650000px;}
.x1_c01088{left:127.800000px;}
.x8_c01088{left:215.064240px;}
.x7_c01088{left:250.050000px;}
@media print{
.v0_c01088{vertical-align:0.000000pt;}
.ls0_c01088{letter-spacing:0.000000pt;}
.ws0_c01088{word-spacing:0.000000pt;}
._10_c01088{margin-left:-4.992000pt;}
._a_c01088{margin-left:-4.032000pt;}
._f_c01088{margin-left:-3.136000pt;}
._c_c01088{margin-left:-2.240000pt;}
._9_c01088{margin-left:-1.088000pt;}
._b_c01088{width:0.896000pt;}
._2_c01088{width:2.048000pt;}
._5_c01088{width:3.456000pt;}
._3_c01088{width:4.416000pt;}
._4_c01088{width:5.824000pt;}
._d_c01088{width:6.848000pt;}
._6_c01088{width:8.064000pt;}
._e_c01088{width:9.600000pt;}
._13_c01088{width:10.816000pt;}
._8_c01088{width:11.712000pt;}
._1_c01088{width:13.568000pt;}
._15_c01088{width:18.984000pt;}
._0_c01088{width:21.376000pt;}
._12_c01088{width:24.960000pt;}
._14_c01088{width:28.784000pt;}
._16_c01088{width:31.584000pt;}
._11_c01088{width:39.360000pt;}
._17_c01088{width:166.104000pt;}
._7_c01088{width:282.752000pt;}
.fs2_c01088{font-size:42.666667pt;}
.fs1_c01088{font-size:56.000000pt;}
.fs0_c01088{font-size:64.000000pt;}
.y0_c01088{bottom:0.000000pt;}
.y1f_c01088{bottom:2.760000pt;}
.y1e_c01088{bottom:6.425219pt;}
.y1d_c01088{bottom:28.546667pt;}
.y1c_c01088{bottom:52.813333pt;}
.y1b_c01088{bottom:75.613333pt;}
.y1a_c01088{bottom:97.213333pt;}
.y19_c01088{bottom:119.480000pt;}
.y18_c01088{bottom:139.213333pt;}
.y17_c01088{bottom:162.680000pt;}
.y16_c01088{bottom:185.480000pt;}
.y15_c01088{bottom:206.813333pt;}
.y14_c01088{bottom:227.746667pt;}
.y13_c01088{bottom:250.546667pt;}
.y12_c01088{bottom:272.680000pt;}
.y11_c01088{bottom:294.013333pt;}
.y10_c01088{bottom:315.346667pt;}
.yf_c01088{bottom:337.480000pt;}
.ye_c01088{bottom:358.280000pt;}
.yd_c01088{bottom:380.413333pt;}
.yc_c01088{bottom:401.480000pt;}
.yb_c01088{bottom:423.346667pt;}
.ya_c01088{bottom:444.680000pt;}
.y9_c01088{bottom:466.013333pt;}
.y8_c01088{bottom:487.613333pt;}
.y7_c01088{bottom:509.480000pt;}
.y6_c01088{bottom:531.346667pt;}
.y5_c01088{bottom:552.946667pt;}
.y4_c01088{bottom:575.213333pt;}
.y3_c01088{bottom:596.146667pt;}
.y2_c01088{bottom:618.413333pt;}
.y1_c01088{bottom:640.546667pt;}
.h5_c01088{height:11.733399pt;}
.h6_c01088{height:38.937500pt;}
.h4_c01088{height:70.902344pt;}
.h2_c01088{height:74.906250pt;}
.h3_c01088{height:81.031250pt;}
.h0_c01088{height:682.333333pt;}
.h1_c01088{height:682.666667pt;}
.w1_c01088{width:93.222667pt;}
.w0_c01088{width:468.000000pt;}
.x0_c01088{left:0.000000pt;}
.x6_c01088{left:15.333333pt;}
.x2_c01088{left:19.200000pt;}
.x3_c01088{left:20.133333pt;}
.x4_c01088{left:21.333333pt;}
.x5_c01088{left:22.800000pt;}
.x1_c01088{left:113.600000pt;}
.x8_c01088{left:191.168213pt;}
.x7_c01088{left:222.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_458acae88607c56552e80fb6.woff2')format("woff");}.ff1_c01089{font-family:ff1_c01089;line-height:1.480469;font-style:normal;font-weight:normal;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_0438d6d5786759f65f50f8a7.woff2')format("woff");}.ff2_c01089{font-family:ff2_c01089;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01089{font-family:ff3_c01089;line-height:1.219238;font-style: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;}
.ls1_c01089{letter-spacing:0.000000px;}
.ls2_c01089{letter-spacing:3.000000px;}
.ls0_c01089{letter-spacing:26.664000px;}
.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;}
}
.ws1_c01089{word-spacing:-17.352000px;}
.ws2_c01089{word-spacing:0.000000px;}
.ws0_c01089{word-spacing:1.872000px;}
._13_c01089{margin-left:-21.384000px;}
._c_c01089{margin-left:-14.472000px;}
._10_c01089{margin-left:-7.272000px;}
._11_c01089{margin-left:-5.544000px;}
._9_c01089{margin-left:-3.528000px;}
._8_c01089{margin-left:-1.776000px;}
._6_c01089{width:1.476000px;}
._7_c01089{width:2.772000px;}
._4_c01089{width:4.740000px;}
._a_c01089{width:5.772000px;}
._3_c01089{width:6.900000px;}
._1_c01089{width:8.700000px;}
._5_c01089{width:10.200000px;}
._0_c01089{width:11.580000px;}
._2_c01089{width:13.260000px;}
._b_c01089{width:14.424000px;}
._f_c01089{width:16.224000px;}
._d_c01089{width:18.624000px;}
._e_c01089{width:19.824000px;}
._12_c01089{width:25.764000px;}
._15_c01089{width:50.544000px;}
._14_c01089{width:1366.272000px;}
.fc2_c01089{color:transparent;}
.fc1_c01089{color:rgb(128,128,128);}
.fc0_c01089{color:rgb(0,0,0);}
.fs3_c01089{font-size:48.000000px;}
.fs0_c01089{font-size:60.000000px;}
.fs2_c01089{font-size:69.000000px;}
.fs1_c01089{font-size:72.000000px;}
.y0_c01089{bottom:0.000000px;}
.y1f_c01089{bottom:3.105000px;}
.y1e_c01089{bottom:7.228357px;}
.y1d_c01089{bottom:31.080000px;}
.y1c_c01089{bottom:58.830000px;}
.y1b_c01089{bottom:83.730000px;}
.y1a_c01089{bottom:110.430000px;}
.y19_c01089{bottom:134.730000px;}
.y18_c01089{bottom:160.080000px;}
.y17_c01089{bottom:184.680000px;}
.y16_c01089{bottom:210.330000px;}
.y15_c01089{bottom:234.630000px;}
.y14_c01089{bottom:259.530000px;}
.y13_c01089{bottom:284.280000px;}
.y12_c01089{bottom:309.180000px;}
.y11_c01089{bottom:332.730000px;}
.y10_c01089{bottom:356.730000px;}
.yf_c01089{bottom:382.080000px;}
.ye_c01089{bottom:405.630000px;}
.yd_c01089{bottom:430.380000px;}
.yc_c01089{bottom:453.030000px;}
.yb_c01089{bottom:476.880000px;}
.ya_c01089{bottom:501.630000px;}
.y9_c01089{bottom:525.930000px;}
.y8_c01089{bottom:550.530000px;}
.y7_c01089{bottom:575.430000px;}
.y6_c01089{bottom:599.730000px;}
.y5_c01089{bottom:625.080000px;}
.y4_c01089{bottom:649.080000px;}
.y3_c01089{bottom:673.680000px;}
.y2_c01089{bottom:698.730000px;}
.y1_c01089{bottom:724.380000px;}
.h4_c01089{height:13.200074px;}
.h5_c01089{height:43.804688px;}
.h2_c01089{height:75.966797px;}
.h3_c01089{height:91.160156px;}
.h0_c01089{height:773.850000px;}
.h1_c01089{height:774.000000px;}
.w2_c01089{width:104.875500px;}
.w0_c01089{width:525.450000px;}
.w1_c01089{width:525.750000px;}
.x0_c01089{left:0.000000px;}
.x4_c01089{left:101.250000px;}
.xa_c01089{left:108.600000px;}
.x2_c01089{left:114.150000px;}
.x3_c01089{left:115.200000px;}
.x5_c01089{left:117.750000px;}
.x6_c01089{left:118.800000px;}
.x7_c01089{left:120.450000px;}
.x8_c01089{left:121.500000px;}
.x9_c01089{left:122.550000px;}
.xb_c01089{left:214.539230px;}
.x1_c01089{left:244.050000px;}
@media print{
.v0_c01089{vertical-align:0.000000pt;}
.ls1_c01089{letter-spacing:0.000000pt;}
.ls2_c01089{letter-spacing:2.666667pt;}
.ls0_c01089{letter-spacing:23.701333pt;}
.ws1_c01089{word-spacing:-15.424000pt;}
.ws2_c01089{word-spacing:0.000000pt;}
.ws0_c01089{word-spacing:1.664000pt;}
._13_c01089{margin-left:-19.008000pt;}
._c_c01089{margin-left:-12.864000pt;}
._10_c01089{margin-left:-6.464000pt;}
._11_c01089{margin-left:-4.928000pt;}
._9_c01089{margin-left:-3.136000pt;}
._8_c01089{margin-left:-1.578667pt;}
._6_c01089{width:1.312000pt;}
._7_c01089{width:2.464000pt;}
._4_c01089{width:4.213333pt;}
._a_c01089{width:5.130667pt;}
._3_c01089{width:6.133333pt;}
._1_c01089{width:7.733333pt;}
._5_c01089{width:9.066667pt;}
._0_c01089{width:10.293333pt;}
._2_c01089{width:11.786667pt;}
._b_c01089{width:12.821333pt;}
._f_c01089{width:14.421333pt;}
._d_c01089{width:16.554667pt;}
._e_c01089{width:17.621333pt;}
._12_c01089{width:22.901333pt;}
._15_c01089{width:44.928000pt;}
._14_c01089{width:1214.464000pt;}
.fs3_c01089{font-size:42.666667pt;}
.fs0_c01089{font-size:53.333333pt;}
.fs2_c01089{font-size:61.333333pt;}
.fs1_c01089{font-size:64.000000pt;}
.y0_c01089{bottom:0.000000pt;}
.y1f_c01089{bottom:2.760000pt;}
.y1e_c01089{bottom:6.425206pt;}
.y1d_c01089{bottom:27.626667pt;}
.y1c_c01089{bottom:52.293333pt;}
.y1b_c01089{bottom:74.426667pt;}
.y1a_c01089{bottom:98.160000pt;}
.y19_c01089{bottom:119.760000pt;}
.y18_c01089{bottom:142.293333pt;}
.y17_c01089{bottom:164.160000pt;}
.y16_c01089{bottom:186.960000pt;}
.y15_c01089{bottom:208.560000pt;}
.y14_c01089{bottom:230.693333pt;}
.y13_c01089{bottom:252.693333pt;}
.y12_c01089{bottom:274.826667pt;}
.y11_c01089{bottom:295.760000pt;}
.y10_c01089{bottom:317.093333pt;}
.yf_c01089{bottom:339.626667pt;}
.ye_c01089{bottom:360.560000pt;}
.yd_c01089{bottom:382.560000pt;}
.yc_c01089{bottom:402.693333pt;}
.yb_c01089{bottom:423.893333pt;}
.ya_c01089{bottom:445.893333pt;}
.y9_c01089{bottom:467.493333pt;}
.y8_c01089{bottom:489.360000pt;}
.y7_c01089{bottom:511.493333pt;}
.y6_c01089{bottom:533.093333pt;}
.y5_c01089{bottom:555.626667pt;}
.y4_c01089{bottom:576.960000pt;}
.y3_c01089{bottom:598.826667pt;}
.y2_c01089{bottom:621.093333pt;}
.y1_c01089{bottom:643.893333pt;}
.h4_c01089{height:11.733399pt;}
.h5_c01089{height:38.937500pt;}
.h2_c01089{height:67.526042pt;}
.h3_c01089{height:81.031250pt;}
.h0_c01089{height:687.866667pt;}
.h1_c01089{height:688.000000pt;}
.w2_c01089{width:93.222667pt;}
.w0_c01089{width:467.066667pt;}
.w1_c01089{width:467.333333pt;}
.x0_c01089{left:0.000000pt;}
.x4_c01089{left:90.000000pt;}
.xa_c01089{left:96.533333pt;}
.x2_c01089{left:101.466667pt;}
.x3_c01089{left:102.400000pt;}
.x5_c01089{left:104.666667pt;}
.x6_c01089{left:105.600000pt;}
.x7_c01089{left:107.066667pt;}
.x8_c01089{left:108.000000pt;}
.x9_c01089{left:108.933333pt;}
.xb_c01089{left:190.701538pt;}
.x1_c01089{left:216.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c03a131f0f10646e155bb831.woff2')format("woff");}.ff1_c01090{font-family:ff1_c01090;line-height:1.575000;font-style:normal;font-weight:normal;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_c2ef6b1bccc3306d4a991878.woff2')format("woff");}.ff2_c01090{font-family:ff2_c01090;line-height:1.480469;font-style:normal;font-weight:normal;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_44a874edda899c12666d059a.woff2')format("woff");}.ff3_c01090{font-family:ff3_c01090;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01090;src:url('chunks/assets/font_a101332ea7e2bb3fe6086b1b.woff2')format("woff");}.ff4_c01090{font-family:ff4_c01090;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01090;src:url('chunks/assets/font_783e87f6d230799b3415be95.woff2')format("woff");}.ff5_c01090{font-family:ff5_c01090;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01090;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01090{font-family:ff6_c01090;line-height:1.219238;font-style: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:-6.000000px;}
.ls1_c01090{letter-spacing:-3.000000px;}
.ls3_c01090{letter-spacing:0.000000px;}
.ls0_c01090{letter-spacing:39.588000px;}
.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:-53.595000px;}
.ws2_c01090{word-spacing:-30.051000px;}
.ws1_c01090{word-spacing:-17.352000px;}
.ws3_c01090{word-spacing:0.000000px;}
._15_c01090{margin-left:-20.478000px;}
._1c_c01090{margin-left:-16.530000px;}
._3_c01090{margin-left:-13.992000px;}
._1d_c01090{margin-left:-11.352000px;}
._17_c01090{margin-left:-9.900000px;}
._1b_c01090{margin-left:-8.169000px;}
._16_c01090{margin-left:-6.879000px;}
._1a_c01090{margin-left:-5.388000px;}
._e_c01090{margin-left:-4.362000px;}
._d_c01090{margin-left:-2.574000px;}
._8_c01090{margin-left:-1.386000px;}
._5_c01090{width:1.437000px;}
._6_c01090{width:2.697000px;}
._9_c01090{width:4.176000px;}
._2_c01090{width:5.412000px;}
._c_c01090{width:6.432000px;}
._a_c01090{width:7.470000px;}
._0_c01090{width:8.910000px;}
._13_c01090{width:9.966000px;}
._1_c01090{width:11.550000px;}
._10_c01090{width:12.672000px;}
._b_c01090{width:13.884000px;}
._f_c01090{width:15.624000px;}
._18_c01090{width:18.708000px;}
._4_c01090{width:20.130000px;}
._1e_c01090{width:21.456000px;}
._14_c01090{width:25.485000px;}
._11_c01090{width:27.285000px;}
._12_c01090{width:30.819000px;}
._19_c01090{width:36.489000px;}
._1f_c01090{width:359.046000px;}
._7_c01090{width:368.820000px;}
.fc2_c01090{color:transparent;}
.fc1_c01090{color:rgb(128,128,128);}
.fc0_c01090{color:rgb(0,0,0);}
.fs5_c01090{font-size:48.000000px;}
.fs4_c01090{font-size:63.000000px;}
.fs0_c01090{font-size:66.000000px;}
.fs2_c01090{font-size:72.000000px;}
.fs3_c01090{font-size:81.000000px;}
.fs1_c01090{font-size:87.000000px;}
.y0_c01090{bottom:0.000000px;}
.y1f_c01090{bottom:3.105000px;}
.y1e_c01090{bottom:7.228357px;}
.y1d_c01090{bottom:41.130000px;}
.y1c_c01090{bottom:67.530000px;}
.y1b_c01090{bottom:93.480000px;}
.y1a_c01090{bottom:117.180000px;}
.y19_c01090{bottom:142.530000px;}
.y18_c01090{bottom:168.480000px;}
.y17_c01090{bottom:193.080000px;}
.y16_c01090{bottom:217.080000px;}
.y15_c01090{bottom:242.280000px;}
.y14_c01090{bottom:267.030000px;}
.y13_c01090{bottom:290.880000px;}
.y12_c01090{bottom:315.630000px;}
.y11_c01090{bottom:339.930000px;}
.y10_c01090{bottom:363.930000px;}
.yf_c01090{bottom:389.580000px;}
.ye_c01090{bottom:412.830000px;}
.yd_c01090{bottom:438.030000px;}
.yc_c01090{bottom:462.480000px;}
.yb_c01090{bottom:487.380000px;}
.ya_c01090{bottom:511.080000px;}
.y9_c01090{bottom:534.630000px;}
.y8_c01090{bottom:559.680000px;}
.y7_c01090{bottom:583.980000px;}
.y6_c01090{bottom:608.880000px;}
.y5_c01090{bottom:632.430000px;}
.y4_c01090{bottom:657.780000px;}
.y3_c01090{bottom:681.780000px;}
.y2_c01090{bottom:707.130000px;}
.y1_c01090{bottom:732.030000px;}
.h5_c01090{height:13.200074px;}
.h6_c01090{height:43.804688px;}
.h3_c01090{height:91.160156px;}
.h2_c01090{height:101.825684px;}
.h4_c01090{height:102.555176px;}
.h1_c01090{height:789.750000px;}
.h0_c01090{height:790.050000px;}
.w2_c01090{width:104.875500px;}
.w1_c01090{width:514.500000px;}
.w0_c01090{width:514.650000px;}
.x0_c01090{left:0.000000px;}
.x8_c01090{left:21.900000px;}
.x9_c01090{left:22.950000px;}
.x2_c01090{left:24.000000px;}
.x3_c01090{left:25.050000px;}
.x4_c01090{left:26.400000px;}
.x7_c01090{left:27.450000px;}
.x5_c01090{left:28.650000px;}
.x6_c01090{left:29.700000px;}
.x1_c01090{left:148.800000px;}
.xb_c01090{left:209.139267px;}
.xa_c01090{left:230.100000px;}
@media print{
.v0_c01090{vertical-align:0.000000pt;}
.ls2_c01090{letter-spacing:-5.333333pt;}
.ls1_c01090{letter-spacing:-2.666667pt;}
.ls3_c01090{letter-spacing:0.000000pt;}
.ls0_c01090{letter-spacing:35.189333pt;}
.ws0_c01090{word-spacing:-47.640000pt;}
.ws2_c01090{word-spacing:-26.712000pt;}
.ws1_c01090{word-spacing:-15.424000pt;}
.ws3_c01090{word-spacing:0.000000pt;}
._15_c01090{margin-left:-18.202667pt;}
._1c_c01090{margin-left:-14.693333pt;}
._3_c01090{margin-left:-12.437333pt;}
._1d_c01090{margin-left:-10.090667pt;}
._17_c01090{margin-left:-8.800000pt;}
._1b_c01090{margin-left:-7.261333pt;}
._16_c01090{margin-left:-6.114667pt;}
._1a_c01090{margin-left:-4.789333pt;}
._e_c01090{margin-left:-3.877333pt;}
._d_c01090{margin-left:-2.288000pt;}
._8_c01090{margin-left:-1.232000pt;}
._5_c01090{width:1.277333pt;}
._6_c01090{width:2.397333pt;}
._9_c01090{width:3.712000pt;}
._2_c01090{width:4.810667pt;}
._c_c01090{width:5.717333pt;}
._a_c01090{width:6.640000pt;}
._0_c01090{width:7.920000pt;}
._13_c01090{width:8.858667pt;}
._1_c01090{width:10.266667pt;}
._10_c01090{width:11.264000pt;}
._b_c01090{width:12.341333pt;}
._f_c01090{width:13.888000pt;}
._18_c01090{width:16.629333pt;}
._4_c01090{width:17.893333pt;}
._1e_c01090{width:19.072000pt;}
._14_c01090{width:22.653333pt;}
._11_c01090{width:24.253333pt;}
._12_c01090{width:27.394667pt;}
._19_c01090{width:32.434667pt;}
._1f_c01090{width:319.152000pt;}
._7_c01090{width:327.840000pt;}
.fs5_c01090{font-size:42.666667pt;}
.fs4_c01090{font-size:56.000000pt;}
.fs0_c01090{font-size:58.666667pt;}
.fs2_c01090{font-size:64.000000pt;}
.fs3_c01090{font-size:72.000000pt;}
.fs1_c01090{font-size:77.333333pt;}
.y0_c01090{bottom:0.000000pt;}
.y1f_c01090{bottom:2.760000pt;}
.y1e_c01090{bottom:6.425206pt;}
.y1d_c01090{bottom:36.560000pt;}
.y1c_c01090{bottom:60.026667pt;}
.y1b_c01090{bottom:83.093333pt;}
.y1a_c01090{bottom:104.160000pt;}
.y19_c01090{bottom:126.693333pt;}
.y18_c01090{bottom:149.760000pt;}
.y17_c01090{bottom:171.626667pt;}
.y16_c01090{bottom:192.960000pt;}
.y15_c01090{bottom:215.360000pt;}
.y14_c01090{bottom:237.360000pt;}
.y13_c01090{bottom:258.560000pt;}
.y12_c01090{bottom:280.560000pt;}
.y11_c01090{bottom:302.160000pt;}
.y10_c01090{bottom:323.493333pt;}
.yf_c01090{bottom:346.293333pt;}
.ye_c01090{bottom:366.960000pt;}
.yd_c01090{bottom:389.360000pt;}
.yc_c01090{bottom:411.093333pt;}
.yb_c01090{bottom:433.226667pt;}
.ya_c01090{bottom:454.293333pt;}
.y9_c01090{bottom:475.226667pt;}
.y8_c01090{bottom:497.493333pt;}
.y7_c01090{bottom:519.093333pt;}
.y6_c01090{bottom:541.226667pt;}
.y5_c01090{bottom:562.160000pt;}
.y4_c01090{bottom:584.693333pt;}
.y3_c01090{bottom:606.026667pt;}
.y2_c01090{bottom:628.560000pt;}
.y1_c01090{bottom:650.693333pt;}
.h5_c01090{height:11.733399pt;}
.h6_c01090{height:38.937500pt;}
.h3_c01090{height:81.031250pt;}
.h2_c01090{height:90.511719pt;}
.h4_c01090{height:91.160156pt;}
.h1_c01090{height:702.000000pt;}
.h0_c01090{height:702.266667pt;}
.w2_c01090{width:93.222667pt;}
.w1_c01090{width:457.333333pt;}
.w0_c01090{width:457.466667pt;}
.x0_c01090{left:0.000000pt;}
.x8_c01090{left:19.466667pt;}
.x9_c01090{left:20.400000pt;}
.x2_c01090{left:21.333333pt;}
.x3_c01090{left:22.266667pt;}
.x4_c01090{left:23.466667pt;}
.x7_c01090{left:24.400000pt;}
.x5_c01090{left:25.466667pt;}
.x6_c01090{left:26.400000pt;}
.x1_c01090{left:132.266667pt;}
.xb_c01090{left:185.901571pt;}
.xa_c01090{left:204.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_efe9de45a57ebf98f5ed34d0.woff2')format("woff");}.ff1_c01091{font-family:ff1_c01091;line-height:1.568848;font-style:normal;font-weight:normal;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_4f4d849110ae85be7b796638.woff2')format("woff");}.ff2_c01091{font-family:ff2_c01091;line-height:1.592000;font-style:normal;font-weight:normal;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_1a329c2f94b3bfeaa542a1da.woff2')format("woff");}.ff3_c01091{font-family:ff3_c01091;line-height:1.480469;font-style:normal;font-weight:normal;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_a37a08583214ea4c075222de.woff2')format("woff");}.ff4_c01091{font-family:ff4_c01091;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01091;src:url('chunks/assets/font_9e024fddada0b542cd20009d.woff2')format("woff");}.ff5_c01091{font-family:ff5_c01091;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01091;src:url('chunks/assets/font_fb1639c49ff41d7ba5f83665.woff2')format("woff");}.ff6_c01091{font-family:ff6_c01091;line-height:1.575000;font-style:normal;font-weight: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_c01091;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c01091{font-family:ff7_c01091;line-height:1.219238;font-style: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;}
.ls2_c01091{letter-spacing:-6.000000px;}
.ls1_c01091{letter-spacing:0.000000px;}
.ls3_c01091{letter-spacing:3.000000px;}
.ls0_c01091{letter-spacing:4.392000px;}
.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;}
}
.ws1_c01091{word-spacing:-33.192000px;}
.ws2_c01091{word-spacing:-26.487000px;}
.ws0_c01091{word-spacing:-4.260000px;}
.ws3_c01091{word-spacing:0.000000px;}
._1f_c01091{margin-left:-24.393000px;}
._0_c01091{margin-left:-17.388000px;}
._20_c01091{margin-left:-13.896000px;}
._23_c01091{margin-left:-11.352000px;}
._12_c01091{margin-left:-9.936000px;}
._18_c01091{margin-left:-8.160000px;}
._11_c01091{margin-left:-6.840000px;}
._15_c01091{margin-left:-4.536000px;}
._1d_c01091{margin-left:-3.024000px;}
._f_c01091{margin-left:-1.884000px;}
._c_c01091{width:1.728000px;}
._9_c01091{width:2.952000px;}
._8_c01091{width:4.248000px;}
._6_c01091{width:5.256000px;}
._e_c01091{width:6.552000px;}
._3_c01091{width:7.860000px;}
._16_c01091{width:9.447000px;}
._b_c01091{width:10.944000px;}
._1c_c01091{width:11.952000px;}
._7_c01091{width:12.960000px;}
._d_c01091{width:14.760000px;}
._a_c01091{width:15.984000px;}
._1e_c01091{width:18.447000px;}
._13_c01091{width:19.536000px;}
._19_c01091{width:21.081000px;}
._17_c01091{width:22.737000px;}
._14_c01091{width:23.880000px;}
._10_c01091{width:24.984000px;}
._4_c01091{width:27.600000px;}
._5_c01091{width:28.620000px;}
._2_c01091{width:29.820000px;}
._1b_c01091{width:31.626000px;}
._21_c01091{width:34.632000px;}
._1a_c01091{width:39.291000px;}
._22_c01091{width:186.624000px;}
._1_c01091{width:338.592000px;}
._24_c01091{width:708.906000px;}
.fc2_c01091{color:transparent;}
.fc1_c01091{color:rgb(128,128,128);}
.fc0_c01091{color:rgb(0,0,0);}
.fs6_c01091{font-size:48.000000px;}
.fs1_c01091{font-size:60.000000px;}
.fs3_c01091{font-size:63.000000px;}
.fs4_c01091{font-size:66.000000px;}
.fs0_c01091{font-size:69.000000px;}
.fs2_c01091{font-size:72.000000px;}
.fs5_c01091{font-size:81.000000px;}
.y0_c01091{bottom:0.000000px;}
.y1f_c01091{bottom:3.105000px;}
.y1e_c01091{bottom:7.228357px;}
.y1d_c01091{bottom:39.480000px;}
.y1c_c01091{bottom:62.730000px;}
.y1b_c01091{bottom:87.180000px;}
.y1a_c01091{bottom:110.430000px;}
.y19_c01091{bottom:136.230000px;}
.y18_c01091{bottom:161.430000px;}
.y17_c01091{bottom:186.630000px;}
.y16_c01091{bottom:211.680000px;}
.y15_c01091{bottom:237.330000px;}
.y14_c01091{bottom:262.230000px;}
.y13_c01091{bottom:286.830000px;}
.y12_c01091{bottom:311.880000px;}
.y11_c01091{bottom:336.480000px;}
.y10_c01091{bottom:359.880000px;}
.yf_c01091{bottom:384.480000px;}
.ye_c01091{bottom:408.480000px;}
.yd_c01091{bottom:432.780000px;}
.yc_c01091{bottom:457.080000px;}
.yb_c01091{bottom:480.930000px;}
.ya_c01091{bottom:505.530000px;}
.y9_c01091{bottom:529.980000px;}
.y8_c01091{bottom:554.880000px;}
.y7_c01091{bottom:579.780000px;}
.y6_c01091{bottom:604.080000px;}
.y5_c01091{bottom:628.530000px;}
.y4_c01091{bottom:653.430000px;}
.y3_c01091{bottom:678.330000px;}
.y2_c01091{bottom:702.780000px;}
.y1_c01091{bottom:728.430000px;}
.h3_c01091{height:13.200074px;}
.h4_c01091{height:43.804688px;}
.h1_c01091{height:87.361816px;}
.h2_c01091{height:91.160156px;}
.h0_c01091{height:792.750000px;}
.w1_c01091{width:104.875500px;}
.w0_c01091{width:529.500000px;}
.x0_c01091{left:0.000000px;}
.x6_c01091{left:116.100000px;}
.x7_c01091{left:117.900000px;}
.x5_c01091{left:119.100000px;}
.x4_c01091{left:120.150000px;}
.x3_c01091{left:121.500000px;}
.x2_c01091{left:123.300000px;}
.x1_c01091{left:157.950000px;}
.xa_c01091{left:216.564240px;}
.x8_c01091{left:233.850000px;}
.x9_c01091{left:238.650000px;}
@media print{
.v0_c01091{vertical-align:0.000000pt;}
.ls2_c01091{letter-spacing:-5.333333pt;}
.ls1_c01091{letter-spacing:0.000000pt;}
.ls3_c01091{letter-spacing:2.666667pt;}
.ls0_c01091{letter-spacing:3.904000pt;}
.ws1_c01091{word-spacing:-29.504000pt;}
.ws2_c01091{word-spacing:-23.544000pt;}
.ws0_c01091{word-spacing:-3.786667pt;}
.ws3_c01091{word-spacing:0.000000pt;}
._1f_c01091{margin-left:-21.682667pt;}
._0_c01091{margin-left:-15.456000pt;}
._20_c01091{margin-left:-12.352000pt;}
._23_c01091{margin-left:-10.090667pt;}
._12_c01091{margin-left:-8.832000pt;}
._18_c01091{margin-left:-7.253333pt;}
._11_c01091{margin-left:-6.080000pt;}
._15_c01091{margin-left:-4.032000pt;}
._1d_c01091{margin-left:-2.688000pt;}
._f_c01091{margin-left:-1.674667pt;}
._c_c01091{width:1.536000pt;}
._9_c01091{width:2.624000pt;}
._8_c01091{width:3.776000pt;}
._6_c01091{width:4.672000pt;}
._e_c01091{width:5.824000pt;}
._3_c01091{width:6.986667pt;}
._16_c01091{width:8.397333pt;}
._b_c01091{width:9.728000pt;}
._1c_c01091{width:10.624000pt;}
._7_c01091{width:11.520000pt;}
._d_c01091{width:13.120000pt;}
._a_c01091{width:14.208000pt;}
._1e_c01091{width:16.397333pt;}
._13_c01091{width:17.365333pt;}
._19_c01091{width:18.738667pt;}
._17_c01091{width:20.210667pt;}
._14_c01091{width:21.226667pt;}
._10_c01091{width:22.208000pt;}
._4_c01091{width:24.533333pt;}
._5_c01091{width:25.440000pt;}
._2_c01091{width:26.506667pt;}
._1b_c01091{width:28.112000pt;}
._21_c01091{width:30.784000pt;}
._1a_c01091{width:34.925333pt;}
._22_c01091{width:165.888000pt;}
._1_c01091{width:300.970667pt;}
._24_c01091{width:630.138667pt;}
.fs6_c01091{font-size:42.666667pt;}
.fs1_c01091{font-size:53.333333pt;}
.fs3_c01091{font-size:56.000000pt;}
.fs4_c01091{font-size:58.666667pt;}
.fs0_c01091{font-size:61.333333pt;}
.fs2_c01091{font-size:64.000000pt;}
.fs5_c01091{font-size:72.000000pt;}
.y0_c01091{bottom:0.000000pt;}
.y1f_c01091{bottom:2.760000pt;}
.y1e_c01091{bottom:6.425206pt;}
.y1d_c01091{bottom:35.093333pt;}
.y1c_c01091{bottom:55.760000pt;}
.y1b_c01091{bottom:77.493333pt;}
.y1a_c01091{bottom:98.160000pt;}
.y19_c01091{bottom:121.093333pt;}
.y18_c01091{bottom:143.493333pt;}
.y17_c01091{bottom:165.893333pt;}
.y16_c01091{bottom:188.160000pt;}
.y15_c01091{bottom:210.960000pt;}
.y14_c01091{bottom:233.093333pt;}
.y13_c01091{bottom:254.960000pt;}
.y12_c01091{bottom:277.226667pt;}
.y11_c01091{bottom:299.093333pt;}
.y10_c01091{bottom:319.893333pt;}
.yf_c01091{bottom:341.760000pt;}
.ye_c01091{bottom:363.093333pt;}
.yd_c01091{bottom:384.693333pt;}
.yc_c01091{bottom:406.293333pt;}
.yb_c01091{bottom:427.493333pt;}
.ya_c01091{bottom:449.360000pt;}
.y9_c01091{bottom:471.093333pt;}
.y8_c01091{bottom:493.226667pt;}
.y7_c01091{bottom:515.360000pt;}
.y6_c01091{bottom:536.960000pt;}
.y5_c01091{bottom:558.693333pt;}
.y4_c01091{bottom:580.826667pt;}
.y3_c01091{bottom:602.960000pt;}
.y2_c01091{bottom:624.693333pt;}
.y1_c01091{bottom:647.493333pt;}
.h3_c01091{height:11.733399pt;}
.h4_c01091{height:38.937500pt;}
.h1_c01091{height:77.654948pt;}
.h2_c01091{height:81.031250pt;}
.h0_c01091{height:704.666667pt;}
.w1_c01091{width:93.222667pt;}
.w0_c01091{width:470.666667pt;}
.x0_c01091{left:0.000000pt;}
.x6_c01091{left:103.200000pt;}
.x7_c01091{left:104.800000pt;}
.x5_c01091{left:105.866667pt;}
.x4_c01091{left:106.800000pt;}
.x3_c01091{left:108.000000pt;}
.x2_c01091{left:109.600000pt;}
.x1_c01091{left:140.400000pt;}
.xa_c01091{left:192.501546pt;}
.x8_c01091{left:207.866667pt;}
.x9_c01091{left:212.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a85aa5b1526ee96fd0a24eb4.woff2')format("woff");}.ff1_c01092{font-family:ff1_c01092;line-height:1.480469;font-style:normal;font-weight:normal;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_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff2_c01092{font-family:ff2_c01092;line-height:1.284180;font-style:normal;font-weight:normal;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_da768023ffdeffbc95d51c85.woff2')format("woff");}.ff3_c01092{font-family:ff3_c01092;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01092;src:url('chunks/assets/font_10f8068b3ebfa8b53a2f9008.woff2')format("woff");}.ff4_c01092{font-family:ff4_c01092;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01092;src:url('chunks/assets/font_1c6908ed759c122a98b6cf8b.woff2')format("woff");}.ff5_c01092{font-family:ff5_c01092;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01092;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01092{font-family:ff6_c01092;line-height:1.219238;font-style: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;}
.ls4_c01092{letter-spacing:-3.000000px;}
.ls1_c01092{letter-spacing:0.000000px;}
.ls0_c01092{letter-spacing:2.568000px;}
.ls2_c01092{letter-spacing:3.000000px;}
.ls3_c01092{letter-spacing:6.000000px;}
.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:-52.500000px;}
.ws3_c01092{word-spacing:-33.192000px;}
.ws1_c01092{word-spacing:-30.051000px;}
.ws2_c01092{word-spacing:-21.336000px;}
.ws5_c01092{word-spacing:-17.352000px;}
.ws4_c01092{word-spacing:-16.002000px;}
.ws6_c01092{word-spacing:0.000000px;}
._27_c01092{margin-left:-32.184000px;}
._a_c01092{margin-left:-20.400000px;}
._7_c01092{margin-left:-14.952000px;}
._5_c01092{margin-left:-13.944000px;}
._2_c01092{margin-left:-12.180000px;}
._b_c01092{margin-left:-11.100000px;}
._1_c01092{margin-left:-9.492000px;}
._6_c01092{margin-left:-8.232000px;}
._3_c01092{margin-left:-6.972000px;}
._0_c01092{margin-left:-5.796000px;}
._1e_c01092{margin-left:-4.101000px;}
._4_c01092{margin-left:-2.436000px;}
._9_c01092{margin-left:-1.428000px;}
._c_c01092{width:1.296000px;}
._1d_c01092{width:2.304000px;}
._f_c01092{width:3.312000px;}
._e_c01092{width:4.392000px;}
._19_c01092{width:5.400000px;}
._1a_c01092{width:6.408000px;}
._1b_c01092{width:7.524000px;}
._17_c01092{width:9.162000px;}
._14_c01092{width:10.803000px;}
._1c_c01092{width:12.072000px;}
._12_c01092{width:13.572000px;}
._16_c01092{width:14.745000px;}
._1f_c01092{width:16.227000px;}
._18_c01092{width:17.601000px;}
._13_c01092{width:18.837000px;}
._11_c01092{width:20.592000px;}
._20_c01092{width:22.437000px;}
._22_c01092{width:23.571000px;}
._21_c01092{width:24.885000px;}
._10_c01092{width:26.640000px;}
._24_c01092{width:27.948000px;}
._23_c01092{width:29.304000px;}
._15_c01092{width:30.771000px;}
._d_c01092{width:32.112000px;}
._26_c01092{width:33.405000px;}
._25_c01092{width:43.260000px;}
._29_c01092{width:319.536000px;}
._8_c01092{width:325.836000px;}
._28_c01092{width:1003.248000px;}
.fc2_c01092{color:transparent;}
.fc1_c01092{color:rgb(128,128,128);}
.fc0_c01092{color:rgb(0,0,0);}
.fs5_c01092{font-size:24.000000px;}
.fs3_c01092{font-size:39.000000px;}
.fs7_c01092{font-size:48.000000px;}
.fs4_c01092{font-size:63.000000px;}
.fs6_c01092{font-size:69.000000px;}
.fs2_c01092{font-size:72.000000px;}
.fs0_c01092{font-size:84.000000px;}
.fs1_c01092{font-size:105.000000px;}
.y0_c01092{bottom:0.000000px;}
.y1f_c01092{bottom:3.105000px;}
.y1e_c01092{bottom:7.228369px;}
.y1d_c01092{bottom:41.520000px;}
.y1c_c01092{bottom:69.120000px;}
.y1b_c01092{bottom:94.170000px;}
.y1a_c01092{bottom:119.520000px;}
.y19_c01092{bottom:144.720000px;}
.y18_c01092{bottom:169.770000px;}
.y17_c01092{bottom:193.620000px;}
.y16_c01092{bottom:218.970000px;}
.y15_c01092{bottom:243.720000px;}
.y14_c01092{bottom:268.320000px;}
.y13_c01092{bottom:293.670000px;}
.y12_c01092{bottom:317.970000px;}
.y11_c01092{bottom:341.820000px;}
.y10_c01092{bottom:366.570000px;}
.yf_c01092{bottom:390.720000px;}
.ye_c01092{bottom:415.470000px;}
.yd_c01092{bottom:440.370000px;}
.yc_c01092{bottom:463.770000px;}
.yb_c01092{bottom:488.970000px;}
.ya_c01092{bottom:511.320000px;}
.y9_c01092{bottom:536.520000px;}
.y8_c01092{bottom:562.170000px;}
.y7_c01092{bottom:586.470000px;}
.y6_c01092{bottom:611.520000px;}
.y5_c01092{bottom:635.220000px;}
.y4_c01092{bottom:661.170000px;}
.y3_c01092{bottom:685.020000px;}
.y2_c01092{bottom:710.670000px;}
.y1_c01092{bottom:733.770000px;}
.h5_c01092{height:13.200073px;}
.h6_c01092{height:43.804688px;}
.h3_c01092{height:91.160156px;}
.h2_c01092{height:103.000488px;}
.h4_c01092{height:106.353516px;}
.h1_c01092{height:778.500000px;}
.h0_c01092{height:778.650000px;}
.w2_c01092{width:104.875500px;}
.w1_c01092{width:533.250000px;}
.w0_c01092{width:533.550000px;}
.x0_c01092{left:0.000000px;}
.x3_c01092{left:29.400000px;}
.x4_c01092{left:31.650000px;}
.x5_c01092{left:33.000000px;}
.x6_c01092{left:34.800000px;}
.x7_c01092{left:36.150000px;}
.x8_c01092{left:37.350000px;}
.x2_c01092{left:68.400000px;}
.x1_c01092{left:148.050000px;}
.x9_c01092{left:218.589249px;}
@media print{
.v0_c01092{vertical-align:0.000000pt;}
.ls4_c01092{letter-spacing:-2.666667pt;}
.ls1_c01092{letter-spacing:0.000000pt;}
.ls0_c01092{letter-spacing:2.282667pt;}
.ls2_c01092{letter-spacing:2.666667pt;}
.ls3_c01092{letter-spacing:5.333333pt;}
.ws0_c01092{word-spacing:-46.666667pt;}
.ws3_c01092{word-spacing:-29.504000pt;}
.ws1_c01092{word-spacing:-26.712000pt;}
.ws2_c01092{word-spacing:-18.965333pt;}
.ws5_c01092{word-spacing:-15.424000pt;}
.ws4_c01092{word-spacing:-14.224000pt;}
.ws6_c01092{word-spacing:0.000000pt;}
._27_c01092{margin-left:-28.608000pt;}
._a_c01092{margin-left:-18.133333pt;}
._7_c01092{margin-left:-13.290667pt;}
._5_c01092{margin-left:-12.394667pt;}
._2_c01092{margin-left:-10.826667pt;}
._b_c01092{margin-left:-9.866667pt;}
._1_c01092{margin-left:-8.437333pt;}
._6_c01092{margin-left:-7.317333pt;}
._3_c01092{margin-left:-6.197333pt;}
._0_c01092{margin-left:-5.152000pt;}
._1e_c01092{margin-left:-3.645333pt;}
._4_c01092{margin-left:-2.165333pt;}
._9_c01092{margin-left:-1.269333pt;}
._c_c01092{width:1.152000pt;}
._1d_c01092{width:2.048000pt;}
._f_c01092{width:2.944000pt;}
._e_c01092{width:3.904000pt;}
._19_c01092{width:4.800000pt;}
._1a_c01092{width:5.696000pt;}
._1b_c01092{width:6.688000pt;}
._17_c01092{width:8.144000pt;}
._14_c01092{width:9.602667pt;}
._1c_c01092{width:10.730667pt;}
._12_c01092{width:12.064000pt;}
._16_c01092{width:13.106667pt;}
._1f_c01092{width:14.424000pt;}
._18_c01092{width:15.645333pt;}
._13_c01092{width:16.744000pt;}
._11_c01092{width:18.304000pt;}
._20_c01092{width:19.944000pt;}
._22_c01092{width:20.952000pt;}
._21_c01092{width:22.120000pt;}
._10_c01092{width:23.680000pt;}
._24_c01092{width:24.842667pt;}
._23_c01092{width:26.048000pt;}
._15_c01092{width:27.352000pt;}
._d_c01092{width:28.544000pt;}
._26_c01092{width:29.693333pt;}
._25_c01092{width:38.453333pt;}
._29_c01092{width:284.032000pt;}
._8_c01092{width:289.632000pt;}
._28_c01092{width:891.776000pt;}
.fs5_c01092{font-size:21.333333pt;}
.fs3_c01092{font-size:34.666667pt;}
.fs7_c01092{font-size:42.666667pt;}
.fs4_c01092{font-size:56.000000pt;}
.fs6_c01092{font-size:61.333333pt;}
.fs2_c01092{font-size:64.000000pt;}
.fs0_c01092{font-size:74.666667pt;}
.fs1_c01092{font-size:93.333333pt;}
.y0_c01092{bottom:0.000000pt;}
.y1f_c01092{bottom:2.760000pt;}
.y1e_c01092{bottom:6.425217pt;}
.y1d_c01092{bottom:36.906667pt;}
.y1c_c01092{bottom:61.440000pt;}
.y1b_c01092{bottom:83.706667pt;}
.y1a_c01092{bottom:106.240000pt;}
.y19_c01092{bottom:128.640000pt;}
.y18_c01092{bottom:150.906667pt;}
.y17_c01092{bottom:172.106667pt;}
.y16_c01092{bottom:194.640000pt;}
.y15_c01092{bottom:216.640000pt;}
.y14_c01092{bottom:238.506667pt;}
.y13_c01092{bottom:261.040000pt;}
.y12_c01092{bottom:282.640000pt;}
.y11_c01092{bottom:303.840000pt;}
.y10_c01092{bottom:325.840000pt;}
.yf_c01092{bottom:347.306667pt;}
.ye_c01092{bottom:369.306667pt;}
.yd_c01092{bottom:391.440000pt;}
.yc_c01092{bottom:412.240000pt;}
.yb_c01092{bottom:434.640000pt;}
.ya_c01092{bottom:454.506667pt;}
.y9_c01092{bottom:476.906667pt;}
.y8_c01092{bottom:499.706667pt;}
.y7_c01092{bottom:521.306667pt;}
.y6_c01092{bottom:543.573333pt;}
.y5_c01092{bottom:564.640000pt;}
.y4_c01092{bottom:587.706667pt;}
.y3_c01092{bottom:608.906667pt;}
.y2_c01092{bottom:631.706667pt;}
.y1_c01092{bottom:652.240000pt;}
.h5_c01092{height:11.733399pt;}
.h6_c01092{height:38.937500pt;}
.h3_c01092{height:81.031250pt;}
.h2_c01092{height:91.555990pt;}
.h4_c01092{height:94.536458pt;}
.h1_c01092{height:692.000000pt;}
.h0_c01092{height:692.133333pt;}
.w2_c01092{width:93.222667pt;}
.w1_c01092{width:474.000000pt;}
.w0_c01092{width:474.266667pt;}
.x0_c01092{left:0.000000pt;}
.x3_c01092{left:26.133333pt;}
.x4_c01092{left:28.133333pt;}
.x5_c01092{left:29.333333pt;}
.x6_c01092{left:30.933333pt;}
.x7_c01092{left:32.133333pt;}
.x8_c01092{left:33.200000pt;}
.x2_c01092{left:60.800000pt;}
.x1_c01092{left:131.600000pt;}
.x9_c01092{left:194.301554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5a27b05872b4d18ceaabc147.woff2')format("woff");}.ff1_c01093{font-family:ff1_c01093;line-height:1.480469;font-style:normal;font-weight:normal;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_880043c6878330a95849031f.woff2')format("woff");}.ff2_c01093{font-family:ff2_c01093;line-height:1.568848;font-style:normal;font-weight:normal;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_718b06552d1dff5cc4743c83.woff2')format("woff");}.ff3_c01093{font-family:ff3_c01093;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01093{font-family:ff4_c01093;line-height:1.219238;font-style: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;}
.ls2_c01093{letter-spacing:0.000000px;}
.ls3_c01093{letter-spacing:6.000000px;}
.ls0_c01093{letter-spacing:6.648000px;}
.ls1_c01093{letter-spacing:18.249000px;}
.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;}
}
.ws1_c01093{word-spacing:-37.341000px;}
.ws0_c01093{word-spacing:-33.192000px;}
.ws2_c01093{word-spacing:-15.183000px;}
.ws3_c01093{word-spacing:0.000000px;}
._18_c01093{margin-left:-18.297000px;}
._13_c01093{margin-left:-14.904000px;}
._17_c01093{margin-left:-13.284000px;}
._14_c01093{margin-left:-11.988000px;}
._15_c01093{margin-left:-10.692000px;}
._12_c01093{margin-left:-7.695000px;}
._16_c01093{margin-left:-6.642000px;}
._1a_c01093{margin-left:-5.184000px;}
._c_c01093{margin-left:-4.131000px;}
._b_c01093{margin-left:-2.835000px;}
._a_c01093{margin-left:-1.782000px;}
._4_c01093{width:1.089000px;}
._f_c01093{width:2.934000px;}
._1_c01093{width:4.392000px;}
._3_c01093{width:5.490000px;}
._8_c01093{width:6.642000px;}
._2_c01093{width:7.920000px;}
._0_c01093{width:8.928000px;}
._6_c01093{width:10.737000px;}
._5_c01093{width:11.988000px;}
._7_c01093{width:13.500000px;}
._e_c01093{width:16.587000px;}
._11_c01093{width:17.739000px;}
._9_c01093{width:19.161000px;}
._1b_c01093{width:20.718000px;}
._d_c01093{width:22.458000px;}
._20_c01093{width:24.228000px;}
._19_c01093{width:25.641000px;}
._1f_c01093{width:27.756000px;}
._1e_c01093{width:34.344000px;}
._1c_c01093{width:90.720000px;}
._1d_c01093{width:185.490000px;}
._10_c01093{width:350.208000px;}
.fc2_c01093{color:transparent;}
.fc1_c01093{color:rgb(128,128,128);}
.fc0_c01093{color:rgb(0,0,0);}
.fs5_c01093{font-size:24.000000px;}
.fs1_c01093{font-size:39.000000px;}
.fs6_c01093{font-size:48.000000px;}
.fs4_c01093{font-size:60.000000px;}
.fs2_c01093{font-size:63.000000px;}
.fs0_c01093{font-size:72.000000px;}
.fs3_c01093{font-size:81.000000px;}
.y0_c01093{bottom:0.000000px;}
.y1f_c01093{bottom:3.105000px;}
.y1e_c01093{bottom:7.228371px;}
.y1d_c01093{bottom:40.515000px;}
.y1c_c01093{bottom:60.165000px;}
.y1b_c01093{bottom:85.065000px;}
.y1a_c01093{bottom:109.965000px;}
.y19_c01093{bottom:135.015000px;}
.y18_c01093{bottom:160.065000px;}
.y17_c01093{bottom:184.965000px;}
.y16_c01093{bottom:209.715000px;}
.y15_c01093{bottom:234.915000px;}
.y14_c01093{bottom:259.665000px;}
.y13_c01093{bottom:285.315000px;}
.y12_c01093{bottom:309.465000px;}
.y11_c01093{bottom:335.115000px;}
.y10_c01093{bottom:357.165000px;}
.yf_c01093{bottom:382.365000px;}
.ye_c01093{bottom:405.765000px;}
.yd_c01093{bottom:429.315000px;}
.yc_c01093{bottom:453.765000px;}
.yb_c01093{bottom:478.215000px;}
.ya_c01093{bottom:502.665000px;}
.y9_c01093{bottom:526.815000px;}
.y8_c01093{bottom:551.265000px;}
.y7_c01093{bottom:576.165000px;}
.y6_c01093{bottom:600.165000px;}
.y5_c01093{bottom:625.365000px;}
.y4_c01093{bottom:649.815000px;}
.y3_c01093{bottom:674.115000px;}
.y2_c01093{bottom:699.015000px;}
.y1_c01093{bottom:724.965000px;}
.h5_c01093{height:13.200074px;}
.h6_c01093{height:43.804688px;}
.h3_c01093{height:79.765137px;}
.h2_c01093{height:91.160156px;}
.h4_c01093{height:94.803223px;}
.h0_c01093{height:779.775000px;}
.h1_c01093{height:780.000000px;}
.w2_c01093{width:104.875500px;}
.w1_c01093{width:522.750000px;}
.w0_c01093{width:522.975000px;}
.x0_c01093{left:0.000000px;}
.x5_c01093{left:22.350000px;}
.x6_c01093{left:57.750000px;}
.x7_c01093{left:101.550000px;}
.x4_c01093{left:103.050000px;}
.x2_c01093{left:104.250000px;}
.x3_c01093{left:106.050000px;}
.x9_c01093{left:213.301758px;}
.x1_c01093{left:231.450000px;}
.x8_c01093{left:447.900000px;}
@media print{
.v0_c01093{vertical-align:0.000000pt;}
.ls2_c01093{letter-spacing:0.000000pt;}
.ls3_c01093{letter-spacing:5.333333pt;}
.ls0_c01093{letter-spacing:5.909333pt;}
.ls1_c01093{letter-spacing:16.221333pt;}
.ws1_c01093{word-spacing:-33.192000pt;}
.ws0_c01093{word-spacing:-29.504000pt;}
.ws2_c01093{word-spacing:-13.496000pt;}
.ws3_c01093{word-spacing:0.000000pt;}
._18_c01093{margin-left:-16.264000pt;}
._13_c01093{margin-left:-13.248000pt;}
._17_c01093{margin-left:-11.808000pt;}
._14_c01093{margin-left:-10.656000pt;}
._15_c01093{margin-left:-9.504000pt;}
._12_c01093{margin-left:-6.840000pt;}
._16_c01093{margin-left:-5.904000pt;}
._1a_c01093{margin-left:-4.608000pt;}
._c_c01093{margin-left:-3.672000pt;}
._b_c01093{margin-left:-2.520000pt;}
._a_c01093{margin-left:-1.584000pt;}
._4_c01093{width:0.968000pt;}
._f_c01093{width:2.608000pt;}
._1_c01093{width:3.904000pt;}
._3_c01093{width:4.880000pt;}
._8_c01093{width:5.904000pt;}
._2_c01093{width:7.040000pt;}
._0_c01093{width:7.936000pt;}
._6_c01093{width:9.544000pt;}
._5_c01093{width:10.656000pt;}
._7_c01093{width:12.000000pt;}
._e_c01093{width:14.744000pt;}
._11_c01093{width:15.768000pt;}
._9_c01093{width:17.032000pt;}
._1b_c01093{width:18.416000pt;}
._d_c01093{width:19.962667pt;}
._20_c01093{width:21.536000pt;}
._19_c01093{width:22.792000pt;}
._1f_c01093{width:24.672000pt;}
._1e_c01093{width:30.528000pt;}
._1c_c01093{width:80.640000pt;}
._1d_c01093{width:164.880000pt;}
._10_c01093{width:311.296000pt;}
.fs5_c01093{font-size:21.333333pt;}
.fs1_c01093{font-size:34.666667pt;}
.fs6_c01093{font-size:42.666667pt;}
.fs4_c01093{font-size:53.333333pt;}
.fs2_c01093{font-size:56.000000pt;}
.fs0_c01093{font-size:64.000000pt;}
.fs3_c01093{font-size:72.000000pt;}
.y0_c01093{bottom:0.000000pt;}
.y1f_c01093{bottom:2.760000pt;}
.y1e_c01093{bottom:6.425219pt;}
.y1d_c01093{bottom:36.013333pt;}
.y1c_c01093{bottom:53.480000pt;}
.y1b_c01093{bottom:75.613333pt;}
.y1a_c01093{bottom:97.746667pt;}
.y19_c01093{bottom:120.013333pt;}
.y18_c01093{bottom:142.280000pt;}
.y17_c01093{bottom:164.413333pt;}
.y16_c01093{bottom:186.413333pt;}
.y15_c01093{bottom:208.813333pt;}
.y14_c01093{bottom:230.813333pt;}
.y13_c01093{bottom:253.613333pt;}
.y12_c01093{bottom:275.080000pt;}
.y11_c01093{bottom:297.880000pt;}
.y10_c01093{bottom:317.480000pt;}
.yf_c01093{bottom:339.880000pt;}
.ye_c01093{bottom:360.680000pt;}
.yd_c01093{bottom:381.613333pt;}
.yc_c01093{bottom:403.346667pt;}
.yb_c01093{bottom:425.080000pt;}
.ya_c01093{bottom:446.813333pt;}
.y9_c01093{bottom:468.280000pt;}
.y8_c01093{bottom:490.013333pt;}
.y7_c01093{bottom:512.146667pt;}
.y6_c01093{bottom:533.480000pt;}
.y5_c01093{bottom:555.880000pt;}
.y4_c01093{bottom:577.613333pt;}
.y3_c01093{bottom:599.213333pt;}
.y2_c01093{bottom:621.346667pt;}
.y1_c01093{bottom:644.413333pt;}
.h5_c01093{height:11.733399pt;}
.h6_c01093{height:38.937500pt;}
.h3_c01093{height:70.902344pt;}
.h2_c01093{height:81.031250pt;}
.h4_c01093{height:84.269531pt;}
.h0_c01093{height:693.133333pt;}
.h1_c01093{height:693.333333pt;}
.w2_c01093{width:93.222667pt;}
.w1_c01093{width:464.666667pt;}
.w0_c01093{width:464.866667pt;}
.x0_c01093{left:0.000000pt;}
.x5_c01093{left:19.866667pt;}
.x6_c01093{left:51.333333pt;}
.x7_c01093{left:90.266667pt;}
.x4_c01093{left:91.600000pt;}
.x2_c01093{left:92.666667pt;}
.x3_c01093{left:94.266667pt;}
.x9_c01093{left:189.601563pt;}
.x1_c01093{left:205.733333pt;}
.x8_c01093{left:398.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0d97b13d20511d87843f51f2.woff2')format("woff");}.ff1_c01094{font-family:ff1_c01094;line-height:1.480469;font-style:normal;font-weight:normal;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_c4eaa0459784f60b93f85ad1.woff2')format("woff");}.ff2_c01094{font-family:ff2_c01094;line-height:1.568848;font-style:normal;font-weight:normal;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_28917a6a358cbc75b25f94e4.woff2')format("woff");}.ff3_c01094{font-family:ff3_c01094;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01094;src:url('chunks/assets/font_f0bf55fcb26e1a8dcbde886e.woff2')format("woff");}.ff4_c01094{font-family:ff4_c01094;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01094;src:url('chunks/assets/font_5f264ab3b16ba57cc08c4917.woff2')format("woff");}.ff5_c01094{font-family:ff5_c01094;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01094;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01094{font-family:ff6_c01094;line-height:1.219238;font-style: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;}
.ls3_c01094{letter-spacing:-6.000000px;}
.ls1_c01094{letter-spacing:-3.000000px;}
.ls2_c01094{letter-spacing:0.000000px;}
.ls0_c01094{letter-spacing:16.188000px;}
.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:-53.595000px;}
.ws1_c01094{word-spacing:0.000000px;}
._6_c01094{margin-left:-12.006000px;}
._15_c01094{margin-left:-8.268000px;}
._2_c01094{margin-left:-7.134000px;}
._7_c01094{margin-left:-5.916000px;}
._19_c01094{margin-left:-4.914000px;}
._11_c01094{margin-left:-3.900000px;}
._12_c01094{margin-left:-2.616000px;}
._13_c01094{margin-left:-1.488000px;}
._3_c01094{width:1.566000px;}
._4_c01094{width:3.306000px;}
._a_c01094{width:4.314000px;}
._8_c01094{width:5.484000px;}
._1_c01094{width:6.612000px;}
._d_c01094{width:8.136000px;}
._9_c01094{width:9.702000px;}
._0_c01094{width:11.049000px;}
._c_c01094{width:12.456000px;}
._18_c01094{width:13.494000px;}
._f_c01094{width:14.724000px;}
._e_c01094{width:16.248000px;}
._10_c01094{width:18.555000px;}
._b_c01094{width:20.022000px;}
._17_c01094{width:21.030000px;}
._1b_c01094{width:22.680000px;}
._16_c01094{width:29.835000px;}
._14_c01094{width:42.462000px;}
._1a_c01094{width:114.714000px;}
._1c_c01094{width:318.849000px;}
._5_c01094{width:423.696000px;}
.fc2_c01094{color:transparent;}
.fc1_c01094{color:rgb(128,128,128);}
.fc0_c01094{color:rgb(0,0,0);}
.fs5_c01094{font-size:48.000000px;}
.fs4_c01094{font-size:60.000000px;}
.fs2_c01094{font-size:63.000000px;}
.fs3_c01094{font-size:66.000000px;}
.fs1_c01094{font-size:72.000000px;}
.fs0_c01094{font-size:87.000000px;}
.y0_c01094{bottom:0.000000px;}
.y1f_c01094{bottom:3.105000px;}
.y1e_c01094{bottom:7.228363px;}
.y1d_c01094{bottom:53.700000px;}
.y1c_c01094{bottom:79.350000px;}
.y1b_c01094{bottom:101.700000px;}
.y1a_c01094{bottom:131.550000px;}
.y19_c01094{bottom:155.550000px;}
.y18_c01094{bottom:181.950000px;}
.y17_c01094{bottom:205.950000px;}
.y16_c01094{bottom:226.800000px;}
.y15_c01094{bottom:251.850000px;}
.y14_c01094{bottom:276.750000px;}
.y13_c01094{bottom:305.400000px;}
.y12_c01094{bottom:329.100000px;}
.y11_c01094{bottom:351.750000px;}
.y10_c01094{bottom:376.950000px;}
.yf_c01094{bottom:402.300000px;}
.ye_c01094{bottom:425.250000px;}
.yd_c01094{bottom:448.500000px;}
.yc_c01094{bottom:474.150000px;}
.yb_c01094{bottom:498.150000px;}
.ya_c01094{bottom:522.150000px;}
.y9_c01094{bottom:545.700000px;}
.y8_c01094{bottom:570.450000px;}
.y7_c01094{bottom:594.300000px;}
.y6_c01094{bottom:619.050000px;}
.y5_c01094{bottom:643.500000px;}
.y4_c01094{bottom:668.250000px;}
.y3_c01094{bottom:692.550000px;}
.y2_c01094{bottom:717.150000px;}
.y1_c01094{bottom:742.500000px;}
.h7_c01094{height:13.200074px;}
.h8_c01094{height:43.804688px;}
.h5_c01094{height:75.966797px;}
.h6_c01094{height:79.765137px;}
.h3_c01094{height:91.160156px;}
.h4_c01094{height:101.825684px;}
.h2_c01094{height:110.151855px;}
.h1_c01094{height:793.500000px;}
.h0_c01094{height:793.800000px;}
.w2_c01094{width:104.875500px;}
.w0_c01094{width:530.025000px;}
.w1_c01094{width:530.250000px;}
.x0_c01094{left:0.000000px;}
.x8_c01094{left:25.350000px;}
.x7_c01094{left:26.550000px;}
.x6_c01094{left:28.350000px;}
.x5_c01094{left:29.400000px;}
.x4_c01094{left:31.950000px;}
.x2_c01094{left:33.750000px;}
.x3_c01094{left:35.100000px;}
.x1_c01094{left:145.500000px;}
.x9_c01094{left:150.450000px;}
.xa_c01094{left:213.300000px;}
.xb_c01094{left:216.826767px;}
@media print{
.v0_c01094{vertical-align:0.000000pt;}
.ls3_c01094{letter-spacing:-5.333333pt;}
.ls1_c01094{letter-spacing:-2.666667pt;}
.ls2_c01094{letter-spacing:0.000000pt;}
.ls0_c01094{letter-spacing:14.389333pt;}
.ws0_c01094{word-spacing:-47.640000pt;}
.ws1_c01094{word-spacing:0.000000pt;}
._6_c01094{margin-left:-10.672000pt;}
._15_c01094{margin-left:-7.349333pt;}
._2_c01094{margin-left:-6.341333pt;}
._7_c01094{margin-left:-5.258667pt;}
._19_c01094{margin-left:-4.368000pt;}
._11_c01094{margin-left:-3.466667pt;}
._12_c01094{margin-left:-2.325333pt;}
._13_c01094{margin-left:-1.322667pt;}
._3_c01094{width:1.392000pt;}
._4_c01094{width:2.938667pt;}
._a_c01094{width:3.834667pt;}
._8_c01094{width:4.874667pt;}
._1_c01094{width:5.877333pt;}
._d_c01094{width:7.232000pt;}
._9_c01094{width:8.624000pt;}
._0_c01094{width:9.821333pt;}
._c_c01094{width:11.072000pt;}
._18_c01094{width:11.994667pt;}
._f_c01094{width:13.088000pt;}
._e_c01094{width:14.442667pt;}
._10_c01094{width:16.493333pt;}
._b_c01094{width:17.797333pt;}
._17_c01094{width:18.693333pt;}
._1b_c01094{width:20.160000pt;}
._16_c01094{width:26.520000pt;}
._14_c01094{width:37.744000pt;}
._1a_c01094{width:101.968000pt;}
._1c_c01094{width:283.421333pt;}
._5_c01094{width:376.618667pt;}
.fs5_c01094{font-size:42.666667pt;}
.fs4_c01094{font-size:53.333333pt;}
.fs2_c01094{font-size:56.000000pt;}
.fs3_c01094{font-size:58.666667pt;}
.fs1_c01094{font-size:64.000000pt;}
.fs0_c01094{font-size:77.333333pt;}
.y0_c01094{bottom:0.000000pt;}
.y1f_c01094{bottom:2.760000pt;}
.y1e_c01094{bottom:6.425212pt;}
.y1d_c01094{bottom:47.733333pt;}
.y1c_c01094{bottom:70.533333pt;}
.y1b_c01094{bottom:90.400000pt;}
.y1a_c01094{bottom:116.933333pt;}
.y19_c01094{bottom:138.266667pt;}
.y18_c01094{bottom:161.733333pt;}
.y17_c01094{bottom:183.066667pt;}
.y16_c01094{bottom:201.600000pt;}
.y15_c01094{bottom:223.866667pt;}
.y14_c01094{bottom:246.000000pt;}
.y13_c01094{bottom:271.466667pt;}
.y12_c01094{bottom:292.533333pt;}
.y11_c01094{bottom:312.666667pt;}
.y10_c01094{bottom:335.066667pt;}
.yf_c01094{bottom:357.600000pt;}
.ye_c01094{bottom:378.000000pt;}
.yd_c01094{bottom:398.666667pt;}
.yc_c01094{bottom:421.466667pt;}
.yb_c01094{bottom:442.800000pt;}
.ya_c01094{bottom:464.133333pt;}
.y9_c01094{bottom:485.066667pt;}
.y8_c01094{bottom:507.066667pt;}
.y7_c01094{bottom:528.266667pt;}
.y6_c01094{bottom:550.266667pt;}
.y5_c01094{bottom:572.000000pt;}
.y4_c01094{bottom:594.000000pt;}
.y3_c01094{bottom:615.600000pt;}
.y2_c01094{bottom:637.466667pt;}
.y1_c01094{bottom:660.000000pt;}
.h7_c01094{height:11.733399pt;}
.h8_c01094{height:38.937500pt;}
.h5_c01094{height:67.526042pt;}
.h6_c01094{height:70.902344pt;}
.h3_c01094{height:81.031250pt;}
.h4_c01094{height:90.511719pt;}
.h2_c01094{height:97.912760pt;}
.h1_c01094{height:705.333333pt;}
.h0_c01094{height:705.600000pt;}
.w2_c01094{width:93.222667pt;}
.w0_c01094{width:471.133333pt;}
.w1_c01094{width:471.333333pt;}
.x0_c01094{left:0.000000pt;}
.x8_c01094{left:22.533333pt;}
.x7_c01094{left:23.600000pt;}
.x6_c01094{left:25.200000pt;}
.x5_c01094{left:26.133333pt;}
.x4_c01094{left:28.400000pt;}
.x2_c01094{left:30.000000pt;}
.x3_c01094{left:31.200000pt;}
.x1_c01094{left:129.333333pt;}
.x9_c01094{left:133.733333pt;}
.xa_c01094{left:189.600000pt;}
.xb_c01094{left:192.734904pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d1df34ba1965b820e8bac593.woff2')format("woff");}.ff1_c01095{font-family:ff1_c01095;line-height:1.568848;font-style:normal;font-weight:normal;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_cfe1607d963c2d1b6c791da7.woff2')format("woff");}.ff2_c01095{font-family:ff2_c01095;line-height:1.480469;font-style:normal;font-weight:normal;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_dbf2096baf08ca77b32a5ea8.woff2')format("woff");}.ff3_c01095{font-family:ff3_c01095;line-height:1.575000;font-style:normal;font-weight:normal;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_abf30ac4f26b276d5c8d4853.woff2')format("woff");}.ff4_c01095{font-family:ff4_c01095;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01095;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01095{font-family:ff5_c01095;line-height:1.219238;font-style: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;}
.ls3_c01095{letter-spacing:0.000000px;}
.ls1_c01095{letter-spacing:3.000000px;}
.ls4_c01095{letter-spacing:6.000000px;}
.ls0_c01095{letter-spacing:20.988000px;}
.ls2_c01095{letter-spacing:34.584000px;}
.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:-17.352000px;}
.ws1_c01095{word-spacing:0.000000px;}
._13_c01095{margin-left:-17.784000px;}
._10_c01095{margin-left:-15.912000px;}
._12_c01095{margin-left:-14.910000px;}
._f_c01095{margin-left:-12.888000px;}
._d_c01095{margin-left:-8.136000px;}
._20_c01095{margin-left:-6.624000px;}
._e_c01095{margin-left:-5.616000px;}
._1_c01095{margin-left:-3.816000px;}
._c_c01095{margin-left:-2.304000px;}
._b_c01095{margin-left:-1.224000px;}
._7_c01095{width:1.152000px;}
._8_c01095{width:2.304000px;}
._6_c01095{width:3.312000px;}
._9_c01095{width:4.320000px;}
._3_c01095{width:5.472000px;}
._11_c01095{width:6.483000px;}
._5_c01095{width:7.488000px;}
._a_c01095{width:9.072000px;}
._16_c01095{width:10.080000px;}
._0_c01095{width:11.304000px;}
._4_c01095{width:12.384000px;}
._15_c01095{width:13.890000px;}
._14_c01095{width:15.180000px;}
._17_c01095{width:16.257000px;}
._1a_c01095{width:18.360000px;}
._18_c01095{width:19.761000px;}
._1d_c01095{width:21.162000px;}
._1b_c01095{width:22.464000px;}
._1c_c01095{width:24.939000px;}
._19_c01095{width:25.980000px;}
._1e_c01095{width:98.709000px;}
._2_c01095{width:348.648000px;}
._1f_c01095{width:1321.704000px;}
.fc2_c01095{color:transparent;}
.fc1_c01095{color:rgb(128,128,128);}
.fc0_c01095{color:rgb(0,0,0);}
.fs4_c01095{font-size:24.000000px;}
.fs3_c01095{font-size:39.000000px;}
.fs5_c01095{font-size:48.000000px;}
.fs2_c01095{font-size:63.000000px;}
.fs1_c01095{font-size:69.000000px;}
.fs0_c01095{font-size:72.000000px;}
.y0_c01095{bottom:0.000000px;}
.y1f_c01095{bottom:3.105000px;}
.y1e_c01095{bottom:7.228363px;}
.y1d_c01095{bottom:49.350000px;}
.y1c_c01095{bottom:67.950000px;}
.y1b_c01095{bottom:93.900000px;}
.y1a_c01095{bottom:119.250000px;}
.y19_c01095{bottom:144.750000px;}
.y18_c01095{bottom:170.550000px;}
.y17_c01095{bottom:198.150000px;}
.y16_c01095{bottom:221.100000px;}
.y15_c01095{bottom:245.100000px;}
.y14_c01095{bottom:269.700000px;}
.y13_c01095{bottom:295.050000px;}
.y12_c01095{bottom:319.050000px;}
.y11_c01095{bottom:343.350000px;}
.y10_c01095{bottom:368.250000px;}
.yf_c01095{bottom:391.950000px;}
.ye_c01095{bottom:415.800000px;}
.yd_c01095{bottom:440.850000px;}
.yc_c01095{bottom:463.050000px;}
.yb_c01095{bottom:488.700000px;}
.ya_c01095{bottom:513.450000px;}
.y9_c01095{bottom:538.650000px;}
.y8_c01095{bottom:562.950000px;}
.y7_c01095{bottom:587.700000px;}
.y6_c01095{bottom:612.600000px;}
.y5_c01095{bottom:637.200000px;}
.y4_c01095{bottom:660.900000px;}
.y3_c01095{bottom:686.550000px;}
.y2_c01095{bottom:711.900000px;}
.y1_c01095{bottom:735.750000px;}
.h2_c01095{height:13.200074px;}
.h3_c01095{height:43.804688px;}
.h1_c01095{height:91.160156px;}
.h0_c01095{height:789.750000px;}
.w2_c01095{width:104.875500px;}
.w1_c01095{width:468.750000px;}
.w0_c01095{width:468.975000px;}
.x0_c01095{left:0.000000px;}
.x4_c01095{left:59.700000px;}
.x3_c01095{left:61.200000px;}
.x2_c01095{left:62.550000px;}
.x1_c01095{left:68.850000px;}
.x5_c01095{left:70.950000px;}
.x6_c01095{left:186.301758px;}
@media print{
.v0_c01095{vertical-align:0.000000pt;}
.ls3_c01095{letter-spacing:0.000000pt;}
.ls1_c01095{letter-spacing:2.666667pt;}
.ls4_c01095{letter-spacing:5.333333pt;}
.ls0_c01095{letter-spacing:18.656000pt;}
.ls2_c01095{letter-spacing:30.741333pt;}
.ws0_c01095{word-spacing:-15.424000pt;}
.ws1_c01095{word-spacing:0.000000pt;}
._13_c01095{margin-left:-15.808000pt;}
._10_c01095{margin-left:-14.144000pt;}
._12_c01095{margin-left:-13.253333pt;}
._f_c01095{margin-left:-11.456000pt;}
._d_c01095{margin-left:-7.232000pt;}
._20_c01095{margin-left:-5.888000pt;}
._e_c01095{margin-left:-4.992000pt;}
._1_c01095{margin-left:-3.392000pt;}
._c_c01095{margin-left:-2.048000pt;}
._b_c01095{margin-left:-1.088000pt;}
._7_c01095{width:1.024000pt;}
._8_c01095{width:2.048000pt;}
._6_c01095{width:2.944000pt;}
._9_c01095{width:3.840000pt;}
._3_c01095{width:4.864000pt;}
._11_c01095{width:5.762667pt;}
._5_c01095{width:6.656000pt;}
._a_c01095{width:8.064000pt;}
._16_c01095{width:8.960000pt;}
._0_c01095{width:10.048000pt;}
._4_c01095{width:11.008000pt;}
._15_c01095{width:12.346667pt;}
._14_c01095{width:13.493333pt;}
._17_c01095{width:14.450667pt;}
._1a_c01095{width:16.320000pt;}
._18_c01095{width:17.565333pt;}
._1d_c01095{width:18.810667pt;}
._1b_c01095{width:19.968000pt;}
._1c_c01095{width:22.168000pt;}
._19_c01095{width:23.093333pt;}
._1e_c01095{width:87.741333pt;}
._2_c01095{width:309.909333pt;}
._1f_c01095{width:1174.848000pt;}
.fs4_c01095{font-size:21.333333pt;}
.fs3_c01095{font-size:34.666667pt;}
.fs5_c01095{font-size:42.666667pt;}
.fs2_c01095{font-size:56.000000pt;}
.fs1_c01095{font-size:61.333333pt;}
.fs0_c01095{font-size:64.000000pt;}
.y0_c01095{bottom:0.000000pt;}
.y1f_c01095{bottom:2.760000pt;}
.y1e_c01095{bottom:6.425212pt;}
.y1d_c01095{bottom:43.866667pt;}
.y1c_c01095{bottom:60.400000pt;}
.y1b_c01095{bottom:83.466667pt;}
.y1a_c01095{bottom:106.000000pt;}
.y19_c01095{bottom:128.666667pt;}
.y18_c01095{bottom:151.600000pt;}
.y17_c01095{bottom:176.133333pt;}
.y16_c01095{bottom:196.533333pt;}
.y15_c01095{bottom:217.866667pt;}
.y14_c01095{bottom:239.733333pt;}
.y13_c01095{bottom:262.266667pt;}
.y12_c01095{bottom:283.600000pt;}
.y11_c01095{bottom:305.200000pt;}
.y10_c01095{bottom:327.333333pt;}
.yf_c01095{bottom:348.400000pt;}
.ye_c01095{bottom:369.600000pt;}
.yd_c01095{bottom:391.866667pt;}
.yc_c01095{bottom:411.600000pt;}
.yb_c01095{bottom:434.400000pt;}
.ya_c01095{bottom:456.400000pt;}
.y9_c01095{bottom:478.800000pt;}
.y8_c01095{bottom:500.400000pt;}
.y7_c01095{bottom:522.400000pt;}
.y6_c01095{bottom:544.533333pt;}
.y5_c01095{bottom:566.400000pt;}
.y4_c01095{bottom:587.466667pt;}
.y3_c01095{bottom:610.266667pt;}
.y2_c01095{bottom:632.800000pt;}
.y1_c01095{bottom:654.000000pt;}
.h2_c01095{height:11.733399pt;}
.h3_c01095{height:38.937500pt;}
.h1_c01095{height:81.031250pt;}
.h0_c01095{height:702.000000pt;}
.w2_c01095{width:93.222667pt;}
.w1_c01095{width:416.666667pt;}
.w0_c01095{width:416.866667pt;}
.x0_c01095{left:0.000000pt;}
.x4_c01095{left:53.066667pt;}
.x3_c01095{left:54.400000pt;}
.x2_c01095{left:55.600000pt;}
.x1_c01095{left:61.200000pt;}
.x5_c01095{left:63.066667pt;}
.x6_c01095{left:165.601563pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f9f314321fc4b42ca6b2d574.woff2')format("woff");}.ff1_c01096{font-family:ff1_c01096;line-height:1.480469;font-style:normal;font-weight:normal;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_0fc37545fc240da47599d0e0.woff2')format("woff");}.ff2_c01096{font-family:ff2_c01096;line-height:1.568848;font-style:normal;font-weight:normal;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_b94596b7d327f9cd647e55d1.woff2')format("woff");}.ff3_c01096{font-family:ff3_c01096;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01096;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01096{font-family:ff4_c01096;line-height:1.219238;font-style: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;}
.ls0_c01096{letter-spacing:0.000000px;}
.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:-22.977000px;}
.ws1_c01096{word-spacing:-16.629000px;}
.ws2_c01096{word-spacing:0.000000px;}
._16_c01096{margin-left:-13.680000px;}
._15_c01096{margin-left:-10.152000px;}
._18_c01096{margin-left:-9.129000px;}
._e_c01096{margin-left:-7.704000px;}
._10_c01096{margin-left:-6.048000px;}
._c_c01096{margin-left:-5.040000px;}
._f_c01096{margin-left:-3.456000px;}
._b_c01096{margin-left:-2.376000px;}
._d_c01096{margin-left:-1.080000px;}
._6_c01096{width:1.584000px;}
._7_c01096{width:3.384000px;}
._8_c01096{width:4.464000px;}
._9_c01096{width:5.472000px;}
._a_c01096{width:6.552000px;}
._2_c01096{width:7.704000px;}
._4_c01096{width:9.216000px;}
._0_c01096{width:10.296000px;}
._14_c01096{width:11.376000px;}
._3_c01096{width:12.600000px;}
._1b_c01096{width:13.770000px;}
._1_c01096{width:14.976000px;}
._5_c01096{width:15.984000px;}
._11_c01096{width:18.360000px;}
._1a_c01096{width:20.304000px;}
._13_c01096{width:21.312000px;}
._12_c01096{width:26.496000px;}
._19_c01096{width:134.082000px;}
._17_c01096{width:344.046000px;}
._1c_c01096{width:354.195000px;}
._1d_c01096{width:426.540000px;}
.fc2_c01096{color:transparent;}
.fc1_c01096{color:rgb(128,128,128);}
.fc0_c01096{color:rgb(0,0,0);}
.fs2_c01096{font-size:48.000000px;}
.fs1_c01096{font-size:69.000000px;}
.fs0_c01096{font-size:72.000000px;}
.y0_c01096{bottom:0.000000px;}
.y1e_c01096{bottom:3.105000px;}
.y1d_c01096{bottom:7.228363px;}
.y1c_c01096{bottom:43.650000px;}
.y1b_c01096{bottom:70.200000px;}
.y1a_c01096{bottom:97.200000px;}
.y19_c01096{bottom:122.550000px;}
.y18_c01096{bottom:146.850000px;}
.y17_c01096{bottom:172.500000px;}
.y16_c01096{bottom:197.550000px;}
.y15_c01096{bottom:223.050000px;}
.y14_c01096{bottom:247.800000px;}
.y13_c01096{bottom:271.800000px;}
.y12_c01096{bottom:297.000000px;}
.y11_c01096{bottom:321.750000px;}
.y10_c01096{bottom:345.600000px;}
.yf_c01096{bottom:369.300000px;}
.ye_c01096{bottom:393.900000px;}
.yd_c01096{bottom:443.250000px;}
.yc_c01096{bottom:468.900000px;}
.yb_c01096{bottom:492.750000px;}
.ya_c01096{bottom:517.050000px;}
.y9_c01096{bottom:540.750000px;}
.y8_c01096{bottom:565.050000px;}
.y7_c01096{bottom:589.950000px;}
.y6_c01096{bottom:613.650000px;}
.y5_c01096{bottom:639.000000px;}
.y4_c01096{bottom:664.200000px;}
.y3_c01096{bottom:688.800000px;}
.y2_c01096{bottom:714.450000px;}
.y1_c01096{bottom:738.450000px;}
.h5_c01096{height:13.200074px;}
.h6_c01096{height:43.804688px;}
.h2_c01096{height:84.269531px;}
.h4_c01096{height:87.361816px;}
.h3_c01096{height:91.160156px;}
.h0_c01096{height:797.850000px;}
.h1_c01096{height:798.000000px;}
.w2_c01096{width:104.875500px;}
.w0_c01096{width:525.450000px;}
.w1_c01096{width:525.750000px;}
.x0_c01096{left:0.000000px;}
.x9_c01096{left:29.700000px;}
.x2_c01096{left:31.350000px;}
.x3_c01096{left:33.450000px;}
.x7_c01096{left:35.100000px;}
.x4_c01096{left:36.150000px;}
.x8_c01096{left:37.200000px;}
.x5_c01096{left:38.550000px;}
.x6_c01096{left:39.600000px;}
.xa_c01096{left:144.900000px;}
.x1_c01096{left:150.900000px;}
.xc_c01096{left:214.539230px;}
.xb_c01096{left:393.600000px;}
@media print{
.v0_c01096{vertical-align:0.000000pt;}
.ls0_c01096{letter-spacing:0.000000pt;}
.ws0_c01096{word-spacing:-20.424000pt;}
.ws1_c01096{word-spacing:-14.781333pt;}
.ws2_c01096{word-spacing:0.000000pt;}
._16_c01096{margin-left:-12.160000pt;}
._15_c01096{margin-left:-9.024000pt;}
._18_c01096{margin-left:-8.114667pt;}
._e_c01096{margin-left:-6.848000pt;}
._10_c01096{margin-left:-5.376000pt;}
._c_c01096{margin-left:-4.480000pt;}
._f_c01096{margin-left:-3.072000pt;}
._b_c01096{margin-left:-2.112000pt;}
._d_c01096{margin-left:-0.960000pt;}
._6_c01096{width:1.408000pt;}
._7_c01096{width:3.008000pt;}
._8_c01096{width:3.968000pt;}
._9_c01096{width:4.864000pt;}
._a_c01096{width:5.824000pt;}
._2_c01096{width:6.848000pt;}
._4_c01096{width:8.192000pt;}
._0_c01096{width:9.152000pt;}
._14_c01096{width:10.112000pt;}
._3_c01096{width:11.200000pt;}
._1b_c01096{width:12.240000pt;}
._1_c01096{width:13.312000pt;}
._5_c01096{width:14.208000pt;}
._11_c01096{width:16.320000pt;}
._1a_c01096{width:18.048000pt;}
._13_c01096{width:18.944000pt;}
._12_c01096{width:23.552000pt;}
._19_c01096{width:119.184000pt;}
._17_c01096{width:305.818667pt;}
._1c_c01096{width:314.840000pt;}
._1d_c01096{width:379.146667pt;}
.fs2_c01096{font-size:42.666667pt;}
.fs1_c01096{font-size:61.333333pt;}
.fs0_c01096{font-size:64.000000pt;}
.y0_c01096{bottom:0.000000pt;}
.y1e_c01096{bottom:2.760000pt;}
.y1d_c01096{bottom:6.425212pt;}
.y1c_c01096{bottom:38.800000pt;}
.y1b_c01096{bottom:62.400000pt;}
.y1a_c01096{bottom:86.400000pt;}
.y19_c01096{bottom:108.933333pt;}
.y18_c01096{bottom:130.533333pt;}
.y17_c01096{bottom:153.333333pt;}
.y16_c01096{bottom:175.600000pt;}
.y15_c01096{bottom:198.266667pt;}
.y14_c01096{bottom:220.266667pt;}
.y13_c01096{bottom:241.600000pt;}
.y12_c01096{bottom:264.000000pt;}
.y11_c01096{bottom:286.000000pt;}
.y10_c01096{bottom:307.200000pt;}
.yf_c01096{bottom:328.266667pt;}
.ye_c01096{bottom:350.133333pt;}
.yd_c01096{bottom:394.000000pt;}
.yc_c01096{bottom:416.800000pt;}
.yb_c01096{bottom:438.000000pt;}
.ya_c01096{bottom:459.600000pt;}
.y9_c01096{bottom:480.666667pt;}
.y8_c01096{bottom:502.266667pt;}
.y7_c01096{bottom:524.400000pt;}
.y6_c01096{bottom:545.466667pt;}
.y5_c01096{bottom:568.000000pt;}
.y4_c01096{bottom:590.400000pt;}
.y3_c01096{bottom:612.266667pt;}
.y2_c01096{bottom:635.066667pt;}
.y1_c01096{bottom:656.400000pt;}
.h5_c01096{height:11.733399pt;}
.h6_c01096{height:38.937500pt;}
.h2_c01096{height:74.906250pt;}
.h4_c01096{height:77.654948pt;}
.h3_c01096{height:81.031250pt;}
.h0_c01096{height:709.200000pt;}
.h1_c01096{height:709.333333pt;}
.w2_c01096{width:93.222667pt;}
.w0_c01096{width:467.066667pt;}
.w1_c01096{width:467.333333pt;}
.x0_c01096{left:0.000000pt;}
.x9_c01096{left:26.400000pt;}
.x2_c01096{left:27.866667pt;}
.x3_c01096{left:29.733333pt;}
.x7_c01096{left:31.200000pt;}
.x4_c01096{left:32.133333pt;}
.x8_c01096{left:33.066667pt;}
.x5_c01096{left:34.266667pt;}
.x6_c01096{left:35.200000pt;}
.xa_c01096{left:128.800000pt;}
.x1_c01096{left:134.133333pt;}
.xc_c01096{left:190.701538pt;}
.xb_c01096{left:349.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_931a4a5498a3c0cdb86d95c9.woff2')format("woff");}.ff1_c01097{font-family:ff1_c01097;line-height:1.480469;font-style:normal;font-weight:normal;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_f87d1b9da68849bf623c9732.woff2')format("woff");}.ff2_c01097{font-family:ff2_c01097;line-height:1.568848;font-style:normal;font-weight:normal;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_038ab7a3419d38e01e77554c.woff2')format("woff");}.ff3_c01097{font-family:ff3_c01097;line-height:1.284668;font-style:normal;font-weight:normal;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_e3d1ae630c08585650b30fdb.woff2')format("woff");}.ff4_c01097{font-family:ff4_c01097;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01097;src:url('chunks/assets/font_a1e6e9d468a4b2d6ae117c89.woff2')format("woff");}.ff5_c01097{font-family:ff5_c01097;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01097;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01097{font-family:ff6_c01097;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c01097{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,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;}
.ls1_c01097{letter-spacing:0.000000px;}
.ls0_c01097{letter-spacing:11.448000px;}
.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;}
}
.ws2_c01097{word-spacing:-44.256000px;}
.ws1_c01097{word-spacing:-42.000000px;}
.ws0_c01097{word-spacing:-16.920000px;}
.ws3_c01097{word-spacing:0.000000px;}
._14_c01097{margin-left:-18.606000px;}
._1c_c01097{margin-left:-16.452000px;}
._1a_c01097{margin-left:-14.592000px;}
._19_c01097{margin-left:-13.500000px;}
._1b_c01097{margin-left:-12.240000px;}
._f_c01097{margin-left:-11.154000px;}
._13_c01097{margin-left:-8.991000px;}
._10_c01097{margin-left:-7.221000px;}
._e_c01097{margin-left:-5.898000px;}
._8_c01097{margin-left:-4.788000px;}
._a_c01097{margin-left:-3.159000px;}
._9_c01097{margin-left:-1.944000px;}
._6_c01097{width:1.242000px;}
._5_c01097{width:2.898000px;}
._4_c01097{width:4.692000px;}
._c_c01097{width:5.988000px;}
._b_c01097{width:7.176000px;}
._2_c01097{width:8.280000px;}
._0_c01097{width:9.504000px;}
._11_c01097{width:10.692000px;}
._7_c01097{width:11.862000px;}
._17_c01097{width:13.236000px;}
._15_c01097{width:14.970000px;}
._16_c01097{width:16.659000px;}
._1_c01097{width:20.304000px;}
._18_c01097{width:22.785000px;}
._3_c01097{width:25.272000px;}
._12_c01097{width:137.172000px;}
._1d_c01097{width:151.191000px;}
._d_c01097{width:316.104000px;}
.fc2_c01097{color:transparent;}
.fc1_c01097{color:rgb(128,128,128);}
.fc0_c01097{color:rgb(0,0,0);}
.fs8_c01097{font-size:48.000000px;}
.fs1_c01097{font-size:69.000000px;}
.fs0_c01097{font-size:72.000000px;}
.fs4_c01097{font-size:75.000000px;}
.fs7_c01097{font-size:78.000000px;}
.fs2_c01097{font-size:81.000000px;}
.fs3_c01097{font-size:84.000000px;}
.fs6_c01097{font-size:90.000000px;}
.fs5_c01097{font-size:96.000000px;}
.y0_c01097{bottom:0.000000px;}
.y1a_c01097{bottom:3.105000px;}
.y19_c01097{bottom:7.228357px;}
.y18_c01097{bottom:105.330000px;}
.y17_c01097{bottom:158.280000px;}
.y16_c01097{bottom:183.330000px;}
.y15_c01097{bottom:207.930000px;}
.y14_c01097{bottom:234.180000px;}
.y13_c01097{bottom:258.930000px;}
.y12_c01097{bottom:283.230000px;}
.y11_c01097{bottom:308.130000px;}
.y10_c01097{bottom:333.780000px;}
.yf_c01097{bottom:357.780000px;}
.ye_c01097{bottom:381.330000px;}
.yd_c01097{bottom:430.380000px;}
.yc_c01097{bottom:455.580000px;}
.yb_c01097{bottom:477.330000px;}
.ya_c01097{bottom:503.880000px;}
.y9_c01097{bottom:527.280000px;}
.y8_c01097{bottom:552.480000px;}
.y7_c01097{bottom:577.080000px;}
.y6_c01097{bottom:601.830000px;}
.y5_c01097{bottom:625.380000px;}
.y4_c01097{bottom:652.080000px;}
.y3_c01097{bottom:676.080000px;}
.y2_c01097{bottom:700.080000px;}
.y1_c01097{bottom:725.580000px;}
.ha_c01097{height:13.200074px;}
.hb_c01097{height:43.804688px;}
.h6_c01097{height:73.608398px;}
.h4_c01097{height:79.497070px;}
.h5_c01097{height:82.400391px;}
.h2_c01097{height:84.269531px;}
.h3_c01097{height:87.361816px;}
.h9_c01097{height:98.756836px;}
.h7_c01097{height:112.359375px;}
.h8_c01097{height:113.950195px;}
.h0_c01097{height:780.600000px;}
.h1_c01097{height:780.750000px;}
.w2_c01097{width:104.875500px;}
.w0_c01097{width:490.875000px;}
.w1_c01097{width:491.250000px;}
.x0_c01097{left:0.000000px;}
.x2_c01097{left:68.850000px;}
.x3_c01097{left:70.650000px;}
.x4_c01097{left:71.850000px;}
.x7_c01097{left:73.800000px;}
.x8_c01097{left:197.251740px;}
.x1_c01097{left:200.850000px;}
.x5_c01097{left:377.250000px;}
.x6_c01097{left:386.400000px;}
@media print{
.v0_c01097{vertical-align:0.000000pt;}
.ls1_c01097{letter-spacing:0.000000pt;}
.ls0_c01097{letter-spacing:10.176000pt;}
.ws2_c01097{word-spacing:-39.338667pt;}
.ws1_c01097{word-spacing:-37.333333pt;}
.ws0_c01097{word-spacing:-15.040000pt;}
.ws3_c01097{word-spacing:0.000000pt;}
._14_c01097{margin-left:-16.538667pt;}
._1c_c01097{margin-left:-14.624000pt;}
._1a_c01097{margin-left:-12.970667pt;}
._19_c01097{margin-left:-12.000000pt;}
._1b_c01097{margin-left:-10.880000pt;}
._f_c01097{margin-left:-9.914667pt;}
._13_c01097{margin-left:-7.992000pt;}
._10_c01097{margin-left:-6.418667pt;}
._e_c01097{margin-left:-5.242667pt;}
._8_c01097{margin-left:-4.256000pt;}
._a_c01097{margin-left:-2.808000pt;}
._9_c01097{margin-left:-1.728000pt;}
._6_c01097{width:1.104000pt;}
._5_c01097{width:2.576000pt;}
._4_c01097{width:4.170667pt;}
._c_c01097{width:5.322667pt;}
._b_c01097{width:6.378667pt;}
._2_c01097{width:7.360000pt;}
._0_c01097{width:8.448000pt;}
._11_c01097{width:9.504000pt;}
._7_c01097{width:10.544000pt;}
._17_c01097{width:11.765333pt;}
._15_c01097{width:13.306667pt;}
._16_c01097{width:14.808000pt;}
._1_c01097{width:18.048000pt;}
._18_c01097{width:20.253333pt;}
._3_c01097{width:22.464000pt;}
._12_c01097{width:121.930667pt;}
._1d_c01097{width:134.392000pt;}
._d_c01097{width:280.981333pt;}
.fs8_c01097{font-size:42.666667pt;}
.fs1_c01097{font-size:61.333333pt;}
.fs0_c01097{font-size:64.000000pt;}
.fs4_c01097{font-size:66.666667pt;}
.fs7_c01097{font-size:69.333333pt;}
.fs2_c01097{font-size:72.000000pt;}
.fs3_c01097{font-size:74.666667pt;}
.fs6_c01097{font-size:80.000000pt;}
.fs5_c01097{font-size:85.333333pt;}
.y0_c01097{bottom:0.000000pt;}
.y1a_c01097{bottom:2.760000pt;}
.y19_c01097{bottom:6.425206pt;}
.y18_c01097{bottom:93.626667pt;}
.y17_c01097{bottom:140.693333pt;}
.y16_c01097{bottom:162.960000pt;}
.y15_c01097{bottom:184.826667pt;}
.y14_c01097{bottom:208.160000pt;}
.y13_c01097{bottom:230.160000pt;}
.y12_c01097{bottom:251.760000pt;}
.y11_c01097{bottom:273.893333pt;}
.y10_c01097{bottom:296.693333pt;}
.yf_c01097{bottom:318.026667pt;}
.ye_c01097{bottom:338.960000pt;}
.yd_c01097{bottom:382.560000pt;}
.yc_c01097{bottom:404.960000pt;}
.yb_c01097{bottom:424.293333pt;}
.ya_c01097{bottom:447.893333pt;}
.y9_c01097{bottom:468.693333pt;}
.y8_c01097{bottom:491.093333pt;}
.y7_c01097{bottom:512.960000pt;}
.y6_c01097{bottom:534.960000pt;}
.y5_c01097{bottom:555.893333pt;}
.y4_c01097{bottom:579.626667pt;}
.y3_c01097{bottom:600.960000pt;}
.y2_c01097{bottom:622.293333pt;}
.y1_c01097{bottom:644.960000pt;}
.ha_c01097{height:11.733399pt;}
.hb_c01097{height:38.937500pt;}
.h6_c01097{height:65.429688pt;}
.h4_c01097{height:70.664062pt;}
.h5_c01097{height:73.244792pt;}
.h2_c01097{height:74.906250pt;}
.h3_c01097{height:77.654948pt;}
.h9_c01097{height:87.783854pt;}
.h7_c01097{height:99.875000pt;}
.h8_c01097{height:101.289062pt;}
.h0_c01097{height:693.866667pt;}
.h1_c01097{height:694.000000pt;}
.w2_c01097{width:93.222667pt;}
.w0_c01097{width:436.333333pt;}
.w1_c01097{width:436.666667pt;}
.x0_c01097{left:0.000000pt;}
.x2_c01097{left:61.200000pt;}
.x3_c01097{left:62.800000pt;}
.x4_c01097{left:63.866667pt;}
.x7_c01097{left:65.600000pt;}
.x8_c01097{left:175.334880pt;}
.x1_c01097{left:178.533333pt;}
.x5_c01097{left:335.333333pt;}
.x6_c01097{left:343.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_38d38e0c089de27eb2b0b053.woff2')format("woff");}.ff1_c01098{font-family:ff1_c01098;line-height:1.480469;font-style:normal;font-weight:normal;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_f7a4196f5fa5ed6b7ec93c84.woff2')format("woff");}.ff2_c01098{font-family:ff2_c01098;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01098{font-family:ff3_c01098;line-height:1.219238;font-style: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;}
.ls1_c01098{letter-spacing:0.000000px;}
.ls2_c01098{letter-spacing:3.000000px;}
.ls0_c01098{letter-spacing:6.663000px;}
.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;}
}
.ws3_c01098{word-spacing:-19.629000px;}
.ws0_c01098{word-spacing:-17.352000px;}
.ws1_c01098{word-spacing:-16.629000px;}
.ws2_c01098{word-spacing:-14.460000px;}
.ws4_c01098{word-spacing:0.000000px;}
._9_c01098{margin-left:-8.640000px;}
._12_c01098{margin-left:-6.876000px;}
._a_c01098{margin-left:-4.200000px;}
._b_c01098{margin-left:-2.760000px;}
._13_c01098{margin-left:-1.143000px;}
._2_c01098{width:1.740000px;}
._11_c01098{width:2.823000px;}
._5_c01098{width:3.840000px;}
._3_c01098{width:5.400000px;}
._6_c01098{width:7.260000px;}
._d_c01098{width:8.421000px;}
._10_c01098{width:10.077000px;}
._4_c01098{width:11.220000px;}
._7_c01098{width:12.480000px;}
._f_c01098{width:13.683000px;}
._e_c01098{width:15.009000px;}
._c_c01098{width:17.520000px;}
._14_c01098{width:18.807000px;}
._1_c01098{width:20.280000px;}
._16_c01098{width:21.831000px;}
._0_c01098{width:32.760000px;}
._15_c01098{width:34.155000px;}
._8_c01098{width:339.060000px;}
.fc2_c01098{color:transparent;}
.fc1_c01098{color:rgb(128,128,128);}
.fc0_c01098{color:rgb(0,0,0);}
.fs4_c01098{font-size:48.000000px;}
.fs3_c01098{font-size:57.000000px;}
.fs0_c01098{font-size:60.000000px;}
.fs1_c01098{font-size:69.000000px;}
.fs2_c01098{font-size:72.000000px;}
.y0_c01098{bottom:0.000000px;}
.y1f_c01098{bottom:3.105000px;}
.y1e_c01098{bottom:7.228371px;}
.y1d_c01098{bottom:48.915000px;}
.y1c_c01098{bottom:72.615000px;}
.y1b_c01098{bottom:101.715000px;}
.y1a_c01098{bottom:125.265000px;}
.y19_c01098{bottom:150.615000px;}
.y18_c01098{bottom:176.865000px;}
.y17_c01098{bottom:202.215000px;}
.y16_c01098{bottom:225.465000px;}
.y15_c01098{bottom:248.715000px;}
.y14_c01098{bottom:275.865000px;}
.y13_c01098{bottom:300.765000px;}
.y12_c01098{bottom:324.315000px;}
.y11_c01098{bottom:348.315000px;}
.y10_c01098{bottom:373.365000px;}
.yf_c01098{bottom:397.365000px;}
.ye_c01098{bottom:421.515000px;}
.yd_c01098{bottom:445.215000px;}
.yc_c01098{bottom:469.815000px;}
.yb_c01098{bottom:493.815000px;}
.ya_c01098{bottom:518.715000px;}
.y9_c01098{bottom:541.815000px;}
.y8_c01098{bottom:567.465000px;}
.y7_c01098{bottom:592.365000px;}
.y6_c01098{bottom:616.965000px;}
.y5_c01098{bottom:640.965000px;}
.y4_c01098{bottom:665.265000px;}
.y3_c01098{bottom:689.865000px;}
.y2_c01098{bottom:715.515000px;}
.y1_c01098{bottom:739.815000px;}
.h5_c01098{height:13.200074px;}
.h6_c01098{height:43.804688px;}
.h2_c01098{height:70.224609px;}
.h4_c01098{height:87.361816px;}
.h3_c01098{height:91.160156px;}
.h1_c01098{height:782.250000px;}
.h0_c01098{height:782.475000px;}
.w2_c01098{width:104.875500px;}
.w1_c01098{width:518.250000px;}
.w0_c01098{width:518.400000px;}
.x0_c01098{left:0.000000px;}
.x3_c01098{left:34.800000px;}
.x4_c01098{left:36.000000px;}
.x2_c01098{left:38.250000px;}
.x5_c01098{left:40.200000px;}
.x6_c01098{left:41.850000px;}
.x7_c01098{left:43.200000px;}
.x8_c01098{left:45.150000px;}
.x1_c01098{left:159.900000px;}
.xb_c01098{left:211.014267px;}
.x9_c01098{left:294.000000px;}
.xa_c01098{left:389.400000px;}
@media print{
.v0_c01098{vertical-align:0.000000pt;}
.ls1_c01098{letter-spacing:0.000000pt;}
.ls2_c01098{letter-spacing:2.666667pt;}
.ls0_c01098{letter-spacing:5.922667pt;}
.ws3_c01098{word-spacing:-17.448000pt;}
.ws0_c01098{word-spacing:-15.424000pt;}
.ws1_c01098{word-spacing:-14.781333pt;}
.ws2_c01098{word-spacing:-12.853333pt;}
.ws4_c01098{word-spacing:0.000000pt;}
._9_c01098{margin-left:-7.680000pt;}
._12_c01098{margin-left:-6.112000pt;}
._a_c01098{margin-left:-3.733333pt;}
._b_c01098{margin-left:-2.453333pt;}
._13_c01098{margin-left:-1.016000pt;}
._2_c01098{width:1.546667pt;}
._11_c01098{width:2.509333pt;}
._5_c01098{width:3.413333pt;}
._3_c01098{width:4.800000pt;}
._6_c01098{width:6.453333pt;}
._d_c01098{width:7.485333pt;}
._10_c01098{width:8.957333pt;}
._4_c01098{width:9.973333pt;}
._7_c01098{width:11.093333pt;}
._f_c01098{width:12.162667pt;}
._e_c01098{width:13.341333pt;}
._c_c01098{width:15.573333pt;}
._14_c01098{width:16.717333pt;}
._1_c01098{width:18.026667pt;}
._16_c01098{width:19.405333pt;}
._0_c01098{width:29.120000pt;}
._15_c01098{width:30.360000pt;}
._8_c01098{width:301.386667pt;}
.fs4_c01098{font-size:42.666667pt;}
.fs3_c01098{font-size:50.666667pt;}
.fs0_c01098{font-size:53.333333pt;}
.fs1_c01098{font-size:61.333333pt;}
.fs2_c01098{font-size:64.000000pt;}
.y0_c01098{bottom:0.000000pt;}
.y1f_c01098{bottom:2.760000pt;}
.y1e_c01098{bottom:6.425219pt;}
.y1d_c01098{bottom:43.480000pt;}
.y1c_c01098{bottom:64.546667pt;}
.y1b_c01098{bottom:90.413333pt;}
.y1a_c01098{bottom:111.346667pt;}
.y19_c01098{bottom:133.880000pt;}
.y18_c01098{bottom:157.213333pt;}
.y17_c01098{bottom:179.746667pt;}
.y16_c01098{bottom:200.413333pt;}
.y15_c01098{bottom:221.080000pt;}
.y14_c01098{bottom:245.213333pt;}
.y13_c01098{bottom:267.346667pt;}
.y12_c01098{bottom:288.280000pt;}
.y11_c01098{bottom:309.613333pt;}
.y10_c01098{bottom:331.880000pt;}
.yf_c01098{bottom:353.213333pt;}
.ye_c01098{bottom:374.680000pt;}
.yd_c01098{bottom:395.746667pt;}
.yc_c01098{bottom:417.613333pt;}
.yb_c01098{bottom:438.946667pt;}
.ya_c01098{bottom:461.080000pt;}
.y9_c01098{bottom:481.613333pt;}
.y8_c01098{bottom:504.413333pt;}
.y7_c01098{bottom:526.546667pt;}
.y6_c01098{bottom:548.413333pt;}
.y5_c01098{bottom:569.746667pt;}
.y4_c01098{bottom:591.346667pt;}
.y3_c01098{bottom:613.213333pt;}
.y2_c01098{bottom:636.013333pt;}
.y1_c01098{bottom:657.613333pt;}
.h5_c01098{height:11.733399pt;}
.h6_c01098{height:38.937500pt;}
.h2_c01098{height:62.421875pt;}
.h4_c01098{height:77.654948pt;}
.h3_c01098{height:81.031250pt;}
.h1_c01098{height:695.333333pt;}
.h0_c01098{height:695.533333pt;}
.w2_c01098{width:93.222667pt;}
.w1_c01098{width:460.666667pt;}
.w0_c01098{width:460.800000pt;}
.x0_c01098{left:0.000000pt;}
.x3_c01098{left:30.933333pt;}
.x4_c01098{left:32.000000pt;}
.x2_c01098{left:34.000000pt;}
.x5_c01098{left:35.733333pt;}
.x6_c01098{left:37.200000pt;}
.x7_c01098{left:38.400000pt;}
.x8_c01098{left:40.133333pt;}
.x1_c01098{left:142.133333pt;}
.xb_c01098{left:187.568237pt;}
.x9_c01098{left:261.333333pt;}
.xa_c01098{left:346.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_346222af876c036fcffa584d.woff2')format("woff");}.ff1_c01099{font-family:ff1_c01099;line-height:1.480469;font-style:normal;font-weight:normal;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_70469d5b6540c500fc046547.woff2')format("woff");}.ff2_c01099{font-family:ff2_c01099;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01099{font-family:ff3_c01099;line-height:1.219238;font-style: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;}
.ls0_c01099{letter-spacing:1.512000px;}
.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:-33.192000px;}
.ws1_c01099{word-spacing:-18.864000px;}
.ws2_c01099{word-spacing:0.000000px;}
._f_c01099{margin-left:-16.488000px;}
._c_c01099{margin-left:-5.904000px;}
._e_c01099{margin-left:-4.392000px;}
._a_c01099{margin-left:-2.736000px;}
._7_c01099{margin-left:-1.656000px;}
._8_c01099{width:1.440000px;}
._4_c01099{width:2.520000px;}
._2_c01099{width:4.464000px;}
._1_c01099{width:5.616000px;}
._5_c01099{width:7.128000px;}
._6_c01099{width:8.352000px;}
._3_c01099{width:9.936000px;}
._0_c01099{width:10.944000px;}
._9_c01099{width:12.600000px;}
._14_c01099{width:13.968000px;}
._b_c01099{width:15.408000px;}
._13_c01099{width:19.296000px;}
._10_c01099{width:20.736000px;}
._11_c01099{width:26.208000px;}
._d_c01099{width:27.504000px;}
._12_c01099{width:29.664000px;}
.fc2_c01099{color:transparent;}
.fc1_c01099{color:rgb(128,128,128);}
.fc0_c01099{color:rgb(0,0,0);}
.fs2_c01099{font-size:48.000000px;}
.fs1_c01099{font-size:57.000000px;}
.fs0_c01099{font-size:72.000000px;}
.y0_c01099{bottom:0.000000px;}
.y1f_c01099{bottom:3.105000px;}
.y1e_c01099{bottom:7.228363px;}
.y1d_c01099{bottom:48.000000px;}
.y1c_c01099{bottom:68.400000px;}
.y1b_c01099{bottom:93.600000px;}
.y1a_c01099{bottom:118.800000px;}
.y19_c01099{bottom:144.450000px;}
.y18_c01099{bottom:169.500000px;}
.y17_c01099{bottom:194.700000px;}
.y16_c01099{bottom:220.050000px;}
.y15_c01099{bottom:244.650000px;}
.y14_c01099{bottom:269.700000px;}
.y13_c01099{bottom:293.700000px;}
.y12_c01099{bottom:318.600000px;}
.y11_c01099{bottom:343.950000px;}
.y10_c01099{bottom:367.500000px;}
.yf_c01099{bottom:391.500000px;}
.ye_c01099{bottom:416.550000px;}
.yd_c01099{bottom:441.150000px;}
.yc_c01099{bottom:465.450000px;}
.yb_c01099{bottom:489.450000px;}
.ya_c01099{bottom:514.650000px;}
.y9_c01099{bottom:538.350000px;}
.y8_c01099{bottom:563.250000px;}
.y7_c01099{bottom:587.250000px;}
.y6_c01099{bottom:612.300000px;}
.y5_c01099{bottom:637.650000px;}
.y4_c01099{bottom:662.100000px;}
.y3_c01099{bottom:686.250000px;}
.y2_c01099{bottom:711.750000px;}
.y1_c01099{bottom:738.150000px;}
.h3_c01099{height:13.200074px;}
.h4_c01099{height:43.804688px;}
.h2_c01099{height:91.160156px;}
.h0_c01099{height:778.950000px;}
.h1_c01099{height:779.250000px;}
.w2_c01099{width:104.875500px;}
.w0_c01099{width:511.950000px;}
.w1_c01099{width:512.250000px;}
.x0_c01099{left:0.000000px;}
.x3_c01099{left:86.100000px;}
.x2_c01099{left:87.150000px;}
.x4_c01099{left:88.350000px;}
.x6_c01099{left:207.789230px;}
.x1_c01099{left:224.700000px;}
.x5_c01099{left:430.050000px;}
@media print{
.v0_c01099{vertical-align:0.000000pt;}
.ls1_c01099{letter-spacing:0.000000pt;}
.ls0_c01099{letter-spacing:1.344000pt;}
.ws0_c01099{word-spacing:-29.504000pt;}
.ws1_c01099{word-spacing:-16.768000pt;}
.ws2_c01099{word-spacing:0.000000pt;}
._f_c01099{margin-left:-14.656000pt;}
._c_c01099{margin-left:-5.248000pt;}
._e_c01099{margin-left:-3.904000pt;}
._a_c01099{margin-left:-2.432000pt;}
._7_c01099{margin-left:-1.472000pt;}
._8_c01099{width:1.280000pt;}
._4_c01099{width:2.240000pt;}
._2_c01099{width:3.968000pt;}
._1_c01099{width:4.992000pt;}
._5_c01099{width:6.336000pt;}
._6_c01099{width:7.424000pt;}
._3_c01099{width:8.832000pt;}
._0_c01099{width:9.728000pt;}
._9_c01099{width:11.200000pt;}
._14_c01099{width:12.416000pt;}
._b_c01099{width:13.696000pt;}
._13_c01099{width:17.152000pt;}
._10_c01099{width:18.432000pt;}
._11_c01099{width:23.296000pt;}
._d_c01099{width:24.448000pt;}
._12_c01099{width:26.368000pt;}
.fs2_c01099{font-size:42.666667pt;}
.fs1_c01099{font-size:50.666667pt;}
.fs0_c01099{font-size:64.000000pt;}
.y0_c01099{bottom:0.000000pt;}
.y1f_c01099{bottom:2.760000pt;}
.y1e_c01099{bottom:6.425212pt;}
.y1d_c01099{bottom:42.666667pt;}
.y1c_c01099{bottom:60.800000pt;}
.y1b_c01099{bottom:83.200000pt;}
.y1a_c01099{bottom:105.600000pt;}
.y19_c01099{bottom:128.400000pt;}
.y18_c01099{bottom:150.666667pt;}
.y17_c01099{bottom:173.066667pt;}
.y16_c01099{bottom:195.600000pt;}
.y15_c01099{bottom:217.466667pt;}
.y14_c01099{bottom:239.733333pt;}
.y13_c01099{bottom:261.066667pt;}
.y12_c01099{bottom:283.200000pt;}
.y11_c01099{bottom:305.733333pt;}
.y10_c01099{bottom:326.666667pt;}
.yf_c01099{bottom:348.000000pt;}
.ye_c01099{bottom:370.266667pt;}
.yd_c01099{bottom:392.133333pt;}
.yc_c01099{bottom:413.733333pt;}
.yb_c01099{bottom:435.066667pt;}
.ya_c01099{bottom:457.466667pt;}
.y9_c01099{bottom:478.533333pt;}
.y8_c01099{bottom:500.666667pt;}
.y7_c01099{bottom:522.000000pt;}
.y6_c01099{bottom:544.266667pt;}
.y5_c01099{bottom:566.800000pt;}
.y4_c01099{bottom:588.533333pt;}
.y3_c01099{bottom:610.000000pt;}
.y2_c01099{bottom:632.666667pt;}
.y1_c01099{bottom:656.133333pt;}
.h3_c01099{height:11.733399pt;}
.h4_c01099{height:38.937500pt;}
.h2_c01099{height:81.031250pt;}
.h0_c01099{height:692.400000pt;}
.h1_c01099{height:692.666667pt;}
.w2_c01099{width:93.222667pt;}
.w0_c01099{width:455.066667pt;}
.w1_c01099{width:455.333333pt;}
.x0_c01099{left:0.000000pt;}
.x3_c01099{left:76.533333pt;}
.x2_c01099{left:77.466667pt;}
.x4_c01099{left:78.533333pt;}
.x6_c01099{left:184.701538pt;}
.x1_c01099{left:199.733333pt;}
.x5_c01099{left:382.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7153a0f879e1196fed2abbf4.woff2')format("woff");}.ff1_c01100{font-family:ff1_c01100;line-height:1.284180;font-style:normal;font-weight:normal;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_478044af5e21e0135a6934c9.woff2')format("woff");}.ff2_c01100{font-family:ff2_c01100;line-height:1.284668;font-style:normal;font-weight:normal;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_ba394d06f4e2860b2649d297.woff2')format("woff");}.ff3_c01100{font-family:ff3_c01100;line-height:1.568848;font-style:normal;font-weight:normal;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_93f64ecab25d7ad456e7b951.woff2')format("woff");}.ff4_c01100{font-family:ff4_c01100;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01100;src:url('chunks/assets/font_c12ed2155381c40fe7686ae5.woff2')format("woff");}.ff5_c01100{font-family:ff5_c01100;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01100;src:url('chunks/assets/font_0c7a7a305a0ea4e2a7c31091.woff2')format("woff");}.ff6_c01100{font-family:ff6_c01100;line-height:1.575000;font-style:normal;font-weight: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_c01100;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c01100{font-family:ff7_c01100;line-height:1.219238;font-style: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;}
.ls2_c01100{letter-spacing:0.000000px;}
.ls0_c01100{letter-spacing:6.000000px;}
.ls1_c01100{letter-spacing:17.988000px;}
.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:-33.192000px;}
.ws2_c01100{word-spacing:-17.352000px;}
.ws1_c01100{word-spacing:-16.629000px;}
.ws3_c01100{word-spacing:0.000000px;}
._15_c01100{margin-left:-34.929000px;}
._17_c01100{margin-left:-16.740000px;}
._7_c01100{margin-left:-13.527000px;}
._12_c01100{margin-left:-11.241000px;}
._13_c01100{margin-left:-9.168000px;}
._1c_c01100{margin-left:-5.934000px;}
._9_c01100{margin-left:-4.725000px;}
._8_c01100{margin-left:-3.717000px;}
._16_c01100{margin-left:-2.607000px;}
._2_c01100{margin-left:-1.428000px;}
._3_c01100{width:1.176000px;}
._14_c01100{width:2.187000px;}
._1_c01100{width:3.192000px;}
._b_c01100{width:4.599000px;}
._0_c01100{width:5.628000px;}
._a_c01100{width:6.975000px;}
._4_c01100{width:7.980000px;}
._d_c01100{width:9.819000px;}
._c_c01100{width:11.562000px;}
._6_c01100{width:12.879000px;}
._11_c01100{width:14.367000px;}
._f_c01100{width:15.720000px;}
._1a_c01100{width:16.761000px;}
._e_c01100{width:17.928000px;}
._10_c01100{width:19.527000px;}
._1b_c01100{width:20.709000px;}
._19_c01100{width:21.759000px;}
._18_c01100{width:24.492000px;}
._1e_c01100{width:26.445000px;}
._1d_c01100{width:28.356000px;}
._5_c01100{width:303.135000px;}
.fc2_c01100{color:transparent;}
.fc1_c01100{color:rgb(128,128,128);}
.fc0_c01100{color:rgb(0,0,0);}
.fs4_c01100{font-size:24.000000px;}
.fs7_c01100{font-size:48.000000px;}
.fs2_c01100{font-size:63.000000px;}
.fs5_c01100{font-size:69.000000px;}
.fs3_c01100{font-size:72.000000px;}
.fs1_c01100{font-size:81.000000px;}
.fs0_c01100{font-size:84.000000px;}
.fs6_c01100{font-size:93.000000px;}
.y0_c01100{bottom:0.000000px;}
.y1f_c01100{bottom:3.105000px;}
.y1e_c01100{bottom:7.228369px;}
.y1d_c01100{bottom:49.320000px;}
.y1c_c01100{bottom:77.670000px;}
.y1b_c01100{bottom:103.170000px;}
.y1a_c01100{bottom:124.770000px;}
.y19_c01100{bottom:153.120000px;}
.y18_c01100{bottom:177.420000px;}
.y17_c01100{bottom:201.120000px;}
.y16_c01100{bottom:227.370000px;}
.y15_c01100{bottom:252.720000px;}
.y14_c01100{bottom:276.720000px;}
.y13_c01100{bottom:301.620000px;}
.y12_c01100{bottom:326.670000px;}
.y11_c01100{bottom:351.270000px;}
.y10_c01100{bottom:373.320000px;}
.yf_c01100{bottom:398.220000px;}
.ye_c01100{bottom:422.520000px;}
.yd_c01100{bottom:447.120000px;}
.yc_c01100{bottom:472.770000px;}
.yb_c01100{bottom:496.170000px;}
.ya_c01100{bottom:520.470000px;}
.y9_c01100{bottom:544.620000px;}
.y8_c01100{bottom:569.670000px;}
.y7_c01100{bottom:594.270000px;}
.y6_c01100{bottom:618.870000px;}
.y5_c01100{bottom:643.920000px;}
.y4_c01100{bottom:668.520000px;}
.y3_c01100{bottom:694.170000px;}
.y2_c01100{bottom:717.570000px;}
.y1_c01100{bottom:743.520000px;}
.h7_c01100{height:13.200073px;}
.h8_c01100{height:43.804688px;}
.h4_c01100{height:79.765137px;}
.h2_c01100{height:82.400391px;}
.h5_c01100{height:87.361816px;}
.h3_c01100{height:91.160156px;}
.h6_c01100{height:93.726562px;}
.h1_c01100{height:792.000000px;}
.h0_c01100{height:792.150000px;}
.w2_c01100{width:104.875500px;}
.w0_c01100{width:532.425000px;}
.w1_c01100{width:532.500000px;}
.x0_c01100{left:0.000000px;}
.x3_c01100{left:29.400000px;}
.x2_c01100{left:31.050000px;}
.x4_c01100{left:33.300000px;}
.x8_c01100{left:35.100000px;}
.x5_c01100{left:36.150000px;}
.x6_c01100{left:37.500000px;}
.x7_c01100{left:39.150000px;}
.x1_c01100{left:148.800000px;}
.xa_c01100{left:218.026749px;}
.x9_c01100{left:379.350000px;}
@media print{
.v0_c01100{vertical-align:0.000000pt;}
.ls2_c01100{letter-spacing:0.000000pt;}
.ls0_c01100{letter-spacing:5.333333pt;}
.ls1_c01100{letter-spacing:15.989333pt;}
.ws0_c01100{word-spacing:-29.504000pt;}
.ws2_c01100{word-spacing:-15.424000pt;}
.ws1_c01100{word-spacing:-14.781333pt;}
.ws3_c01100{word-spacing:0.000000pt;}
._15_c01100{margin-left:-31.048000pt;}
._17_c01100{margin-left:-14.880000pt;}
._7_c01100{margin-left:-12.024000pt;}
._12_c01100{margin-left:-9.992000pt;}
._13_c01100{margin-left:-8.149333pt;}
._1c_c01100{margin-left:-5.274667pt;}
._9_c01100{margin-left:-4.200000pt;}
._8_c01100{margin-left:-3.304000pt;}
._16_c01100{margin-left:-2.317333pt;}
._2_c01100{margin-left:-1.269333pt;}
._3_c01100{width:1.045333pt;}
._14_c01100{width:1.944000pt;}
._1_c01100{width:2.837333pt;}
._b_c01100{width:4.088000pt;}
._0_c01100{width:5.002667pt;}
._a_c01100{width:6.200000pt;}
._4_c01100{width:7.093333pt;}
._d_c01100{width:8.728000pt;}
._c_c01100{width:10.277333pt;}
._6_c01100{width:11.448000pt;}
._11_c01100{width:12.770667pt;}
._f_c01100{width:13.973333pt;}
._1a_c01100{width:14.898667pt;}
._e_c01100{width:15.936000pt;}
._10_c01100{width:17.357333pt;}
._1b_c01100{width:18.408000pt;}
._19_c01100{width:19.341333pt;}
._18_c01100{width:21.770667pt;}
._1e_c01100{width:23.506667pt;}
._1d_c01100{width:25.205333pt;}
._5_c01100{width:269.453333pt;}
.fs4_c01100{font-size:21.333333pt;}
.fs7_c01100{font-size:42.666667pt;}
.fs2_c01100{font-size:56.000000pt;}
.fs5_c01100{font-size:61.333333pt;}
.fs3_c01100{font-size:64.000000pt;}
.fs1_c01100{font-size:72.000000pt;}
.fs0_c01100{font-size:74.666667pt;}
.fs6_c01100{font-size:82.666667pt;}
.y0_c01100{bottom:0.000000pt;}
.y1f_c01100{bottom:2.760000pt;}
.y1e_c01100{bottom:6.425217pt;}
.y1d_c01100{bottom:43.840000pt;}
.y1c_c01100{bottom:69.040000pt;}
.y1b_c01100{bottom:91.706667pt;}
.y1a_c01100{bottom:110.906667pt;}
.y19_c01100{bottom:136.106667pt;}
.y18_c01100{bottom:157.706667pt;}
.y17_c01100{bottom:178.773333pt;}
.y16_c01100{bottom:202.106667pt;}
.y15_c01100{bottom:224.640000pt;}
.y14_c01100{bottom:245.973333pt;}
.y13_c01100{bottom:268.106667pt;}
.y12_c01100{bottom:290.373333pt;}
.y11_c01100{bottom:312.240000pt;}
.y10_c01100{bottom:331.840000pt;}
.yf_c01100{bottom:353.973333pt;}
.ye_c01100{bottom:375.573333pt;}
.yd_c01100{bottom:397.440000pt;}
.yc_c01100{bottom:420.240000pt;}
.yb_c01100{bottom:441.040000pt;}
.ya_c01100{bottom:462.640000pt;}
.y9_c01100{bottom:484.106667pt;}
.y8_c01100{bottom:506.373333pt;}
.y7_c01100{bottom:528.240000pt;}
.y6_c01100{bottom:550.106667pt;}
.y5_c01100{bottom:572.373333pt;}
.y4_c01100{bottom:594.240000pt;}
.y3_c01100{bottom:617.040000pt;}
.y2_c01100{bottom:637.840000pt;}
.y1_c01100{bottom:660.906667pt;}
.h7_c01100{height:11.733399pt;}
.h8_c01100{height:38.937500pt;}
.h4_c01100{height:70.902344pt;}
.h2_c01100{height:73.244792pt;}
.h5_c01100{height:77.654948pt;}
.h3_c01100{height:81.031250pt;}
.h6_c01100{height:83.312500pt;}
.h1_c01100{height:704.000000pt;}
.h0_c01100{height:704.133333pt;}
.w2_c01100{width:93.222667pt;}
.w0_c01100{width:473.266667pt;}
.w1_c01100{width:473.333333pt;}
.x0_c01100{left:0.000000pt;}
.x3_c01100{left:26.133333pt;}
.x2_c01100{left:27.600000pt;}
.x4_c01100{left:29.600000pt;}
.x8_c01100{left:31.200000pt;}
.x5_c01100{left:32.133333pt;}
.x6_c01100{left:33.333333pt;}
.x7_c01100{left:34.800000pt;}
.x1_c01100{left:132.266667pt;}
.xa_c01100{left:193.801554pt;}
.x9_c01100{left:337.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fe105a72045503aa27de78c0.woff2')format("woff");}.ff1_c01101{font-family:ff1_c01101;line-height:1.480469;font-style:normal;font-weight:normal;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_3e7c34e9e0be664e51399ec6.woff2')format("woff");}.ff2_c01101{font-family:ff2_c01101;line-height:1.568848;font-style:normal;font-weight:normal;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_0810e83ad8572bf025181c58.woff2')format("woff");}.ff3_c01101{font-family:ff3_c01101;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01101;src:url('chunks/assets/font_8925eb1699fa81e6ca3ed3f7.woff2')format("woff");}.ff4_c01101{font-family:ff4_c01101;line-height:1.284668;font-style:normal;font-weight:normal;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_e9ffa2a569052656b1cdf940.woff2')format("woff");}.ff5_c01101{font-family:ff5_c01101;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01101{font-family:ff6_c01101;line-height:1.219238;font-style: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);}
.v0_c01101{vertical-align:0.000000px;}
.v1_c01101{vertical-align:18.600000px;}
.ls1_c01101{letter-spacing:0.000000px;}
.ls2_c01101{letter-spacing:3.000000px;}
.ls0_c01101{letter-spacing:5.988000px;}
.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:-17.352000px;}
.ws1_c01101{word-spacing:0.000000px;}
._23_c01101{margin-left:-18.576000px;}
._1b_c01101{margin-left:-15.120000px;}
._20_c01101{margin-left:-12.888000px;}
._1a_c01101{margin-left:-10.800000px;}
._19_c01101{margin-left:-9.432000px;}
._e_c01101{margin-left:-7.560000px;}
._12_c01101{margin-left:-5.544000px;}
._7_c01101{margin-left:-4.176000px;}
._8_c01101{margin-left:-2.520000px;}
._f_c01101{margin-left:-1.512000px;}
._3_c01101{width:1.296000px;}
._4_c01101{width:3.096000px;}
._9_c01101{width:4.896000px;}
._1_c01101{width:5.904000px;}
._a_c01101{width:6.984000px;}
._5_c01101{width:8.712000px;}
._2_c01101{width:10.296000px;}
._0_c01101{width:11.736000px;}
._6_c01101{width:13.464000px;}
._10_c01101{width:14.832000px;}
._b_c01101{width:15.912000px;}
._d_c01101{width:18.432000px;}
._1d_c01101{width:20.784000px;}
._c_c01101{width:22.104000px;}
._15_c01101{width:23.112000px;}
._14_c01101{width:24.816000px;}
._1e_c01101{width:26.136000px;}
._1f_c01101{width:27.288000px;}
._18_c01101{width:29.592000px;}
._11_c01101{width:32.760000px;}
._13_c01101{width:76.968000px;}
._22_c01101{width:79.488000px;}
._21_c01101{width:91.560000px;}
._17_c01101{width:169.200000px;}
._16_c01101{width:174.048000px;}
._1c_c01101{width:516.672000px;}
.fc2_c01101{color:transparent;}
.fc1_c01101{color:rgb(128,128,128);}
.fc0_c01101{color:rgb(0,0,0);}
.fs1_c01101{font-size:24.000000px;}
.fs5_c01101{font-size:48.000000px;}
.fs4_c01101{font-size:63.000000px;}
.fs0_c01101{font-size:72.000000px;}
.fs2_c01101{font-size:81.000000px;}
.fs3_c01101{font-size:93.000000px;}
.y0_c01101{bottom:0.000000px;}
.y1e_c01101{bottom:3.105000px;}
.y1d_c01101{bottom:7.228363px;}
.y1c_c01101{bottom:66.900000px;}
.y1b_c01101{bottom:91.500000px;}
.y1a_c01101{bottom:119.700000px;}
.y19_c01101{bottom:143.100000px;}
.y18_c01101{bottom:167.700000px;}
.y17_c01101{bottom:191.700000px;}
.y16_c01101{bottom:217.800000px;}
.y15_c01101{bottom:242.700000px;}
.y14_c01101{bottom:266.700000px;}
.y13_c01101{bottom:292.350000px;}
.y12_c01101{bottom:316.950000px;}
.y11_c01101{bottom:341.250000px;}
.y10_c01101{bottom:365.250000px;}
.yf_c01101{bottom:386.550000px;}
.ye_c01101{bottom:412.200000px;}
.yd_c01101{bottom:433.350000px;}
.yc_c01101{bottom:461.100000px;}
.yb_c01101{bottom:486.750000px;}
.ya_c01101{bottom:511.350000px;}
.y9_c01101{bottom:534.900000px;}
.y8_c01101{bottom:561.000000px;}
.y7_c01101{bottom:586.200000px;}
.y6_c01101{bottom:610.650000px;}
.y5_c01101{bottom:635.250000px;}
.y4_c01101{bottom:659.850000px;}
.y3_c01101{bottom:684.450000px;}
.y2_c01101{bottom:709.350000px;}
.y1_c01101{bottom:734.700000px;}
.h5_c01101{height:13.200074px;}
.h6_c01101{height:43.804688px;}
.h2_c01101{height:91.160156px;}
.h4_c01101{height:93.726562px;}
.h3_c01101{height:109.760156px;}
.h0_c01101{height:792.450000px;}
.h1_c01101{height:792.750000px;}
.w2_c01101{width:104.875500px;}
.w0_c01101{width:516.525000px;}
.w1_c01101{width:516.750000px;}
.x0_c01101{left:0.000000px;}
.xa_c01101{left:24.300000px;}
.x9_c01101{left:32.700000px;}
.x6_c01101{left:43.950000px;}
.xc_c01101{left:102.900000px;}
.xb_c01101{left:104.400000px;}
.x8_c01101{left:105.750000px;}
.x7_c01101{left:107.400000px;}
.x5_c01101{left:109.050000px;}
.x4_c01101{left:110.700000px;}
.x3_c01101{left:112.500000px;}
.x2_c01101{left:113.850000px;}
.xd_c01101{left:210.076767px;}
.x1_c01101{left:247.050000px;}
@media print{
.v0_c01101{vertical-align:0.000000pt;}
.v1_c01101{vertical-align:16.533333pt;}
.ls1_c01101{letter-spacing:0.000000pt;}
.ls2_c01101{letter-spacing:2.666667pt;}
.ls0_c01101{letter-spacing:5.322667pt;}
.ws0_c01101{word-spacing:-15.424000pt;}
.ws1_c01101{word-spacing:0.000000pt;}
._23_c01101{margin-left:-16.512000pt;}
._1b_c01101{margin-left:-13.440000pt;}
._20_c01101{margin-left:-11.456000pt;}
._1a_c01101{margin-left:-9.600000pt;}
._19_c01101{margin-left:-8.384000pt;}
._e_c01101{margin-left:-6.720000pt;}
._12_c01101{margin-left:-4.928000pt;}
._7_c01101{margin-left:-3.712000pt;}
._8_c01101{margin-left:-2.240000pt;}
._f_c01101{margin-left:-1.344000pt;}
._3_c01101{width:1.152000pt;}
._4_c01101{width:2.752000pt;}
._9_c01101{width:4.352000pt;}
._1_c01101{width:5.248000pt;}
._a_c01101{width:6.208000pt;}
._5_c01101{width:7.744000pt;}
._2_c01101{width:9.152000pt;}
._0_c01101{width:10.432000pt;}
._6_c01101{width:11.968000pt;}
._10_c01101{width:13.184000pt;}
._b_c01101{width:14.144000pt;}
._d_c01101{width:16.384000pt;}
._1d_c01101{width:18.474667pt;}
._c_c01101{width:19.648000pt;}
._15_c01101{width:20.544000pt;}
._14_c01101{width:22.058667pt;}
._1e_c01101{width:23.232000pt;}
._1f_c01101{width:24.256000pt;}
._18_c01101{width:26.304000pt;}
._11_c01101{width:29.120000pt;}
._13_c01101{width:68.416000pt;}
._22_c01101{width:70.656000pt;}
._21_c01101{width:81.386667pt;}
._17_c01101{width:150.400000pt;}
._16_c01101{width:154.709333pt;}
._1c_c01101{width:459.264000pt;}
.fs1_c01101{font-size:21.333333pt;}
.fs5_c01101{font-size:42.666667pt;}
.fs4_c01101{font-size:56.000000pt;}
.fs0_c01101{font-size:64.000000pt;}
.fs2_c01101{font-size:72.000000pt;}
.fs3_c01101{font-size:82.666667pt;}
.y0_c01101{bottom:0.000000pt;}
.y1e_c01101{bottom:2.760000pt;}
.y1d_c01101{bottom:6.425212pt;}
.y1c_c01101{bottom:59.466667pt;}
.y1b_c01101{bottom:81.333333pt;}
.y1a_c01101{bottom:106.400000pt;}
.y19_c01101{bottom:127.200000pt;}
.y18_c01101{bottom:149.066667pt;}
.y17_c01101{bottom:170.400000pt;}
.y16_c01101{bottom:193.600000pt;}
.y15_c01101{bottom:215.733333pt;}
.y14_c01101{bottom:237.066667pt;}
.y13_c01101{bottom:259.866667pt;}
.y12_c01101{bottom:281.733333pt;}
.y11_c01101{bottom:303.333333pt;}
.y10_c01101{bottom:324.666667pt;}
.yf_c01101{bottom:343.600000pt;}
.ye_c01101{bottom:366.400000pt;}
.yd_c01101{bottom:385.200000pt;}
.yc_c01101{bottom:409.866667pt;}
.yb_c01101{bottom:432.666667pt;}
.ya_c01101{bottom:454.533333pt;}
.y9_c01101{bottom:475.466667pt;}
.y8_c01101{bottom:498.666667pt;}
.y7_c01101{bottom:521.066667pt;}
.y6_c01101{bottom:542.800000pt;}
.y5_c01101{bottom:564.666667pt;}
.y4_c01101{bottom:586.533333pt;}
.y3_c01101{bottom:608.400000pt;}
.y2_c01101{bottom:630.533333pt;}
.y1_c01101{bottom:653.066667pt;}
.h5_c01101{height:11.733399pt;}
.h6_c01101{height:38.937500pt;}
.h2_c01101{height:81.031250pt;}
.h4_c01101{height:83.312500pt;}
.h3_c01101{height:97.564583pt;}
.h0_c01101{height:704.400000pt;}
.h1_c01101{height:704.666667pt;}
.w2_c01101{width:93.222667pt;}
.w0_c01101{width:459.133333pt;}
.w1_c01101{width:459.333333pt;}
.x0_c01101{left:0.000000pt;}
.xa_c01101{left:21.600000pt;}
.x9_c01101{left:29.066667pt;}
.x6_c01101{left:39.066667pt;}
.xc_c01101{left:91.466667pt;}
.xb_c01101{left:92.800000pt;}
.x8_c01101{left:94.000000pt;}
.x7_c01101{left:95.466667pt;}
.x5_c01101{left:96.933333pt;}
.x4_c01101{left:98.400000pt;}
.x3_c01101{left:100.000000pt;}
.x2_c01101{left:101.200000pt;}
.xd_c01101{left:186.734904pt;}
.x1_c01101{left:219.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_636a163d98986889d7d33d9e.woff2')format("woff");}.ff1_c01102{font-family:ff1_c01102;line-height:1.480469;font-style:normal;font-weight:normal;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_6598dd64e101b76c152a9b47.woff2')format("woff");}.ff2_c01102{font-family:ff2_c01102;line-height:1.568848;font-style:normal;font-weight:normal;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_ddcdfb1ffdd34373dd8a7700.woff2')format("woff");}.ff3_c01102{font-family:ff3_c01102;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01102;src:url('chunks/assets/font_b8a8daa6c44e51c6fc61803d.woff2')format("woff");}.ff4_c01102{font-family:ff4_c01102;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01102;src:url('chunks/assets/font_78314a803a1234662672f72e.woff2')format("woff");}.ff5_c01102{font-family:ff5_c01102;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01102;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01102{font-family:ff6_c01102;line-height:1.219238;font-style: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;}
.ls2_c01102{letter-spacing:-6.000000px;}
.ls0_c01102{letter-spacing:-3.000000px;}
.ls1_c01102{letter-spacing:0.000000px;}
.ls3_c01102{letter-spacing:3.000000px;}
.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:-36.000000px;}
.ws1_c01102{word-spacing:-20.352000px;}
.ws3_c01102{word-spacing:-20.250000px;}
.ws4_c01102{word-spacing:0.000000px;}
.ws2_c01102{word-spacing:1.767000px;}
._11_c01102{margin-left:-11.619000px;}
._10_c01102{margin-left:-9.909000px;}
._12_c01102{margin-left:-8.478000px;}
._9_c01102{margin-left:-7.056000px;}
._1_c01102{margin-left:-4.830000px;}
._3_c01102{margin-left:-3.096000px;}
._4_c01102{margin-left:-2.088000px;}
._d_c01102{margin-left:-1.080000px;}
._2_c01102{width:1.566000px;}
._5_c01102{width:3.168000px;}
._6_c01102{width:4.680000px;}
._7_c01102{width:6.408000px;}
._8_c01102{width:8.298000px;}
._b_c01102{width:9.864000px;}
._0_c01102{width:11.700000px;}
._a_c01102{width:13.266000px;}
._e_c01102{width:15.642000px;}
._f_c01102{width:26.700000px;}
._c_c01102{width:67.788000px;}
._13_c01102{width:215.334000px;}
._14_c01102{width:310.833000px;}
.fc2_c01102{color:transparent;}
.fc1_c01102{color:rgb(128,128,128);}
.fc0_c01102{color:rgb(0,0,0);}
.fs5_c01102{font-size:48.000000px;}
.fs4_c01102{font-size:57.000000px;}
.fs1_c01102{font-size:72.000000px;}
.fs2_c01102{font-size:81.000000px;}
.fs3_c01102{font-size:84.000000px;}
.fs0_c01102{font-size:87.000000px;}
.y0_c01102{bottom:0.000000px;}
.y1f_c01102{bottom:3.105000px;}
.y1e_c01102{bottom:7.228357px;}
.y1d_c01102{bottom:61.380000px;}
.y1c_c01102{bottom:87.780000px;}
.y1b_c01102{bottom:111.030000px;}
.y1a_c01102{bottom:140.130000px;}
.y19_c01102{bottom:161.430000px;}
.y18_c01102{bottom:189.780000px;}
.y17_c01102{bottom:212.280000px;}
.y16_c01102{bottom:238.380000px;}
.y15_c01102{bottom:262.530000px;}
.y14_c01102{bottom:288.180000px;}
.y13_c01102{bottom:314.280000px;}
.y12_c01102{bottom:338.580000px;}
.y11_c01102{bottom:363.180000px;}
.y10_c01102{bottom:387.480000px;}
.yf_c01102{bottom:413.130000px;}
.ye_c01102{bottom:436.680000px;}
.yd_c01102{bottom:462.030000px;}
.yc_c01102{bottom:486.330000px;}
.yb_c01102{bottom:511.080000px;}
.ya_c01102{bottom:534.930000px;}
.y9_c01102{bottom:558.630000px;}
.y8_c01102{bottom:583.980000px;}
.y7_c01102{bottom:608.280000px;}
.y6_c01102{bottom:633.180000px;}
.y5_c01102{bottom:657.780000px;}
.y4_c01102{bottom:683.730000px;}
.y3_c01102{bottom:708.180000px;}
.y2_c01102{bottom:732.780000px;}
.y1_c01102{bottom:757.680000px;}
.h6_c01102{height:13.200074px;}
.h7_c01102{height:43.804688px;}
.h4_c01102{height:79.497070px;}
.h5_c01102{height:81.632812px;}
.h3_c01102{height:91.160156px;}
.h2_c01102{height:101.825684px;}
.h0_c01102{height:794.100000px;}
.h1_c01102{height:794.250000px;}
.w2_c01102{width:104.875500px;}
.w1_c01102{width:543.000000px;}
.w0_c01102{width:543.225000px;}
.x0_c01102{left:0.000000px;}
.x9_c01102{left:22.500000px;}
.x8_c01102{left:26.100000px;}
.x7_c01102{left:27.450000px;}
.x2_c01102{left:29.400000px;}
.x3_c01102{left:31.500000px;}
.x5_c01102{left:32.700000px;}
.x4_c01102{left:34.050000px;}
.x6_c01102{left:56.700000px;}
.x1_c01102{left:142.200000px;}
.xb_c01102{left:223.426758px;}
.xa_c01102{left:238.650000px;}
@media print{
.v0_c01102{vertical-align:0.000000pt;}
.ls2_c01102{letter-spacing:-5.333333pt;}
.ls0_c01102{letter-spacing:-2.666667pt;}
.ls1_c01102{letter-spacing:0.000000pt;}
.ls3_c01102{letter-spacing:2.666667pt;}
.ws0_c01102{word-spacing:-32.000000pt;}
.ws1_c01102{word-spacing:-18.090667pt;}
.ws3_c01102{word-spacing:-18.000000pt;}
.ws4_c01102{word-spacing:0.000000pt;}
.ws2_c01102{word-spacing:1.570667pt;}
._11_c01102{margin-left:-10.328000pt;}
._10_c01102{margin-left:-8.808000pt;}
._12_c01102{margin-left:-7.536000pt;}
._9_c01102{margin-left:-6.272000pt;}
._1_c01102{margin-left:-4.293333pt;}
._3_c01102{margin-left:-2.752000pt;}
._4_c01102{margin-left:-1.856000pt;}
._d_c01102{margin-left:-0.960000pt;}
._2_c01102{width:1.392000pt;}
._5_c01102{width:2.816000pt;}
._6_c01102{width:4.160000pt;}
._7_c01102{width:5.696000pt;}
._8_c01102{width:7.376000pt;}
._b_c01102{width:8.768000pt;}
._0_c01102{width:10.400000pt;}
._a_c01102{width:11.792000pt;}
._e_c01102{width:13.904000pt;}
._f_c01102{width:23.733333pt;}
._c_c01102{width:60.256000pt;}
._13_c01102{width:191.408000pt;}
._14_c01102{width:276.296000pt;}
.fs5_c01102{font-size:42.666667pt;}
.fs4_c01102{font-size:50.666667pt;}
.fs1_c01102{font-size:64.000000pt;}
.fs2_c01102{font-size:72.000000pt;}
.fs3_c01102{font-size:74.666667pt;}
.fs0_c01102{font-size:77.333333pt;}
.y0_c01102{bottom:0.000000pt;}
.y1f_c01102{bottom:2.760000pt;}
.y1e_c01102{bottom:6.425206pt;}
.y1d_c01102{bottom:54.560000pt;}
.y1c_c01102{bottom:78.026667pt;}
.y1b_c01102{bottom:98.693333pt;}
.y1a_c01102{bottom:124.560000pt;}
.y19_c01102{bottom:143.493333pt;}
.y18_c01102{bottom:168.693333pt;}
.y17_c01102{bottom:188.693333pt;}
.y16_c01102{bottom:211.893333pt;}
.y15_c01102{bottom:233.360000pt;}
.y14_c01102{bottom:256.160000pt;}
.y13_c01102{bottom:279.360000pt;}
.y12_c01102{bottom:300.960000pt;}
.y11_c01102{bottom:322.826667pt;}
.y10_c01102{bottom:344.426667pt;}
.yf_c01102{bottom:367.226667pt;}
.ye_c01102{bottom:388.160000pt;}
.yd_c01102{bottom:410.693333pt;}
.yc_c01102{bottom:432.293333pt;}
.yb_c01102{bottom:454.293333pt;}
.ya_c01102{bottom:475.493333pt;}
.y9_c01102{bottom:496.560000pt;}
.y8_c01102{bottom:519.093333pt;}
.y7_c01102{bottom:540.693333pt;}
.y6_c01102{bottom:562.826667pt;}
.y5_c01102{bottom:584.693333pt;}
.y4_c01102{bottom:607.760000pt;}
.y3_c01102{bottom:629.493333pt;}
.y2_c01102{bottom:651.360000pt;}
.y1_c01102{bottom:673.493333pt;}
.h6_c01102{height:11.733399pt;}
.h7_c01102{height:38.937500pt;}
.h4_c01102{height:70.664062pt;}
.h5_c01102{height:72.562500pt;}
.h3_c01102{height:81.031250pt;}
.h2_c01102{height:90.511719pt;}
.h0_c01102{height:705.866667pt;}
.h1_c01102{height:706.000000pt;}
.w2_c01102{width:93.222667pt;}
.w1_c01102{width:482.666667pt;}
.w0_c01102{width:482.866667pt;}
.x0_c01102{left:0.000000pt;}
.x9_c01102{left:20.000000pt;}
.x8_c01102{left:23.200000pt;}
.x7_c01102{left:24.400000pt;}
.x2_c01102{left:26.133333pt;}
.x3_c01102{left:28.000000pt;}
.x5_c01102{left:29.066667pt;}
.x4_c01102{left:30.266667pt;}
.x6_c01102{left:50.400000pt;}
.x1_c01102{left:126.400000pt;}
.xb_c01102{left:198.601563pt;}
.xa_c01102{left:212.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4da8793a3139b4433e40a741.woff2')format("woff");}.ff1_c01103{font-family:ff1_c01103;line-height:1.568848;font-style:normal;font-weight:normal;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_4f5d2d66e4ff0e3fef6e595f.woff2')format("woff");}.ff2_c01103{font-family:ff2_c01103;line-height:1.480469;font-style:normal;font-weight:normal;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_eab87aa7c1d718a70372b7fe.woff2')format("woff");}.ff3_c01103{font-family:ff3_c01103;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01103{font-family:ff4_c01103;line-height:1.219238;font-style: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:6.000000px;}
.ls0_c01103{letter-spacing:7.788000px;}
.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:-33.192000px;}
.ws1_c01103{word-spacing:-30.051000px;}
.ws3_c01103{word-spacing:-17.352000px;}
.ws4_c01103{word-spacing:0.000000px;}
.ws2_c01103{word-spacing:3.048000px;}
._16_c01103{margin-left:-32.136000px;}
._f_c01103{margin-left:-19.224000px;}
._13_c01103{margin-left:-11.112000px;}
._9_c01103{margin-left:-9.360000px;}
._8_c01103{margin-left:-8.208000px;}
._a_c01103{margin-left:-6.264000px;}
._c_c01103{margin-left:-5.040000px;}
._15_c01103{margin-left:-3.528000px;}
._b_c01103{margin-left:-2.304000px;}
._14_c01103{margin-left:-1.080000px;}
._0_c01103{width:1.080000px;}
._2_c01103{width:2.952000px;}
._1_c01103{width:3.960000px;}
._3_c01103{width:5.112000px;}
._5_c01103{width:6.264000px;}
._4_c01103{width:7.560000px;}
._d_c01103{width:9.288000px;}
._6_c01103{width:10.440000px;}
._7_c01103{width:11.808000px;}
._e_c01103{width:13.296000px;}
._10_c01103{width:14.352000px;}
._11_c01103{width:15.912000px;}
._12_c01103{width:22.968000px;}
.fc2_c01103{color:transparent;}
.fc1_c01103{color:rgb(128,128,128);}
.fc0_c01103{color:rgb(0,0,0);}
.fs2_c01103{font-size:48.000000px;}
.fs1_c01103{font-size:63.000000px;}
.fs0_c01103{font-size:72.000000px;}
.y0_c01103{bottom:0.000000px;}
.y1b_c01103{bottom:3.105000px;}
.y1a_c01103{bottom:7.228355px;}
.y19_c01103{bottom:137.685000px;}
.y18_c01103{bottom:164.685000px;}
.y17_c01103{bottom:189.285000px;}
.y16_c01103{bottom:214.335000px;}
.y15_c01103{bottom:239.835000px;}
.y14_c01103{bottom:265.185000px;}
.y13_c01103{bottom:290.235000px;}
.y12_c01103{bottom:316.785000px;}
.y11_c01103{bottom:341.085000px;}
.y10_c01103{bottom:365.085000px;}
.yf_c01103{bottom:388.485000px;}
.ye_c01103{bottom:413.085000px;}
.yd_c01103{bottom:437.085000px;}
.yc_c01103{bottom:460.335000px;}
.yb_c01103{bottom:484.185000px;}
.ya_c01103{bottom:511.185000px;}
.y9_c01103{bottom:534.585000px;}
.y8_c01103{bottom:559.935000px;}
.y7_c01103{bottom:585.135000px;}
.y6_c01103{bottom:609.885000px;}
.y5_c01103{bottom:635.085000px;}
.y4_c01103{bottom:660.135000px;}
.y3_c01103{bottom:685.335000px;}
.y2_c01103{bottom:710.085000px;}
.y1_c01103{bottom:735.285000px;}
.h3_c01103{height:13.200074px;}
.h4_c01103{height:43.804688px;}
.h2_c01103{height:91.160156px;}
.h0_c01103{height:802.425000px;}
.h1_c01103{height:802.500000px;}
.w2_c01103{width:104.875500px;}
.w1_c01103{width:520.500000px;}
.w0_c01103{width:520.800000px;}
.x0_c01103{left:0.000000px;}
.x1_c01103{left:106.200000px;}
.x2_c01103{left:107.700000px;}
.x3_c01103{left:131.850000px;}
.x4_c01103{left:200.700000px;}
.x6_c01103{left:212.214249px;}
.x5_c01103{left:275.700000px;}
@media print{
.v0_c01103{vertical-align:0.000000pt;}
.ls1_c01103{letter-spacing:0.000000pt;}
.ls2_c01103{letter-spacing:5.333333pt;}
.ls0_c01103{letter-spacing:6.922667pt;}
.ws0_c01103{word-spacing:-29.504000pt;}
.ws1_c01103{word-spacing:-26.712000pt;}
.ws3_c01103{word-spacing:-15.424000pt;}
.ws4_c01103{word-spacing:0.000000pt;}
.ws2_c01103{word-spacing:2.709333pt;}
._16_c01103{margin-left:-28.565333pt;}
._f_c01103{margin-left:-17.088000pt;}
._13_c01103{margin-left:-9.877333pt;}
._9_c01103{margin-left:-8.320000pt;}
._8_c01103{margin-left:-7.296000pt;}
._a_c01103{margin-left:-5.568000pt;}
._c_c01103{margin-left:-4.480000pt;}
._15_c01103{margin-left:-3.136000pt;}
._b_c01103{margin-left:-2.048000pt;}
._14_c01103{margin-left:-0.960000pt;}
._0_c01103{width:0.960000pt;}
._2_c01103{width:2.624000pt;}
._1_c01103{width:3.520000pt;}
._3_c01103{width:4.544000pt;}
._5_c01103{width:5.568000pt;}
._4_c01103{width:6.720000pt;}
._d_c01103{width:8.256000pt;}
._6_c01103{width:9.280000pt;}
._7_c01103{width:10.496000pt;}
._e_c01103{width:11.818667pt;}
._10_c01103{width:12.757333pt;}
._11_c01103{width:14.144000pt;}
._12_c01103{width:20.416000pt;}
.fs2_c01103{font-size:42.666667pt;}
.fs1_c01103{font-size:56.000000pt;}
.fs0_c01103{font-size:64.000000pt;}
.y0_c01103{bottom:0.000000pt;}
.y1b_c01103{bottom:2.760000pt;}
.y1a_c01103{bottom:6.425204pt;}
.y19_c01103{bottom:122.386667pt;}
.y18_c01103{bottom:146.386667pt;}
.y17_c01103{bottom:168.253333pt;}
.y16_c01103{bottom:190.520000pt;}
.y15_c01103{bottom:213.186667pt;}
.y14_c01103{bottom:235.720000pt;}
.y13_c01103{bottom:257.986667pt;}
.y12_c01103{bottom:281.586667pt;}
.y11_c01103{bottom:303.186667pt;}
.y10_c01103{bottom:324.520000pt;}
.yf_c01103{bottom:345.320000pt;}
.ye_c01103{bottom:367.186667pt;}
.yd_c01103{bottom:388.520000pt;}
.yc_c01103{bottom:409.186667pt;}
.yb_c01103{bottom:430.386667pt;}
.ya_c01103{bottom:454.386667pt;}
.y9_c01103{bottom:475.186667pt;}
.y8_c01103{bottom:497.720000pt;}
.y7_c01103{bottom:520.120000pt;}
.y6_c01103{bottom:542.120000pt;}
.y5_c01103{bottom:564.520000pt;}
.y4_c01103{bottom:586.786667pt;}
.y3_c01103{bottom:609.186667pt;}
.y2_c01103{bottom:631.186667pt;}
.y1_c01103{bottom:653.586667pt;}
.h3_c01103{height:11.733399pt;}
.h4_c01103{height:38.937500pt;}
.h2_c01103{height:81.031250pt;}
.h0_c01103{height:713.266667pt;}
.h1_c01103{height:713.333333pt;}
.w2_c01103{width:93.222667pt;}
.w1_c01103{width:462.666667pt;}
.w0_c01103{width:462.933333pt;}
.x0_c01103{left:0.000000pt;}
.x1_c01103{left:94.400000pt;}
.x2_c01103{left:95.733333pt;}
.x3_c01103{left:117.200000pt;}
.x4_c01103{left:178.400000pt;}
.x6_c01103{left:188.634888pt;}
.x5_c01103{left:245.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6d103bbacead7c622053530e.woff2')format("woff");}.ff1_c01104{font-family:ff1_c01104;line-height:1.480469;font-style:normal;font-weight:normal;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_b2165fb549cf681fd6f124b8.woff2')format("woff");}.ff2_c01104{font-family:ff2_c01104;line-height:1.568848;font-style:normal;font-weight:normal;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_82b13177b6fa0d750729d7e1.woff2')format("woff");}.ff3_c01104{font-family:ff3_c01104;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01104{font-family:ff4_c01104;line-height:1.219238;font-style: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;}
.ls3_c01104{letter-spacing:-3.000000px;}
.ls2_c01104{letter-spacing:0.000000px;}
.ls4_c01104{letter-spacing:3.000000px;}
.ls0_c01104{letter-spacing:6.000000px;}
.ls1_c01104{letter-spacing:30.000000px;}
.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;}
}
.ws1_c01104{word-spacing:-31.296000px;}
.ws0_c01104{word-spacing:-22.629000px;}
.ws2_c01104{word-spacing:-17.352000px;}
.ws3_c01104{word-spacing:0.000000px;}
._1e_c01104{margin-left:-18.975000px;}
._1b_c01104{margin-left:-13.668000px;}
._14_c01104{margin-left:-11.907000px;}
._1c_c01104{margin-left:-10.512000px;}
._18_c01104{margin-left:-8.961000px;}
._15_c01104{margin-left:-7.920000px;}
._e_c01104{margin-left:-6.288000px;}
._13_c01104{margin-left:-4.350000px;}
._11_c01104{margin-left:-2.607000px;}
._10_c01104{margin-left:-1.395000px;}
._f_c01104{width:1.002000px;}
._0_c01104{width:2.070000px;}
._5_c01104{width:3.330000px;}
._16_c01104{width:4.560000px;}
._d_c01104{width:5.568000px;}
._c_c01104{width:7.047000px;}
._17_c01104{width:9.048000px;}
._19_c01104{width:11.166000px;}
._1a_c01104{width:12.336000px;}
._6_c01104{width:13.824000px;}
._12_c01104{width:15.831000px;}
._3_c01104{width:20.664000px;}
._2_c01104{width:21.888000px;}
._1_c01104{width:23.760000px;}
._9_c01104{width:34.056000px;}
._a_c01104{width:36.288000px;}
._7_c01104{width:51.192000px;}
._8_c01104{width:57.528000px;}
._b_c01104{width:64.800000px;}
._4_c01104{width:67.680000px;}
._1d_c01104{width:302.511000px;}
.fc2_c01104{color:transparent;}
.fc1_c01104{color:rgb(128,128,128);}
.fc0_c01104{color:rgb(0,0,0);}
.fs6_c01104{font-size:48.000000px;}
.fs5_c01104{font-size:63.000000px;}
.fs3_c01104{font-size:66.000000px;}
.fs0_c01104{font-size:69.000000px;}
.fs1_c01104{font-size:72.000000px;}
.fs2_c01104{font-size:87.000000px;}
.fs4_c01104{font-size:93.000000px;}
.y0_c01104{bottom:0.000000px;}
.y1d_c01104{bottom:3.105000px;}
.y1c_c01104{bottom:7.228355px;}
.y1b_c01104{bottom:45.135000px;}
.y1a_c01104{bottom:71.085000px;}
.y19_c01104{bottom:93.135000px;}
.y18_c01104{bottom:122.085000px;}
.y17_c01104{bottom:146.835000px;}
.y16_c01104{bottom:170.685000px;}
.y15_c01104{bottom:196.785000px;}
.y14_c01104{bottom:221.385000px;}
.y13_c01104{bottom:246.585000px;}
.y12_c01104{bottom:270.885000px;}
.y11_c01104{bottom:296.535000px;}
.y10_c01104{bottom:320.985000px;}
.yf_c01104{bottom:345.285000px;}
.ye_c01104{bottom:368.535000px;}
.yd_c01104{bottom:393.135000px;}
.yc_c01104{bottom:417.735000px;}
.yb_c01104{bottom:442.485000px;}
.ya_c01104{bottom:467.085000px;}
.y9_c01104{bottom:490.935000px;}
.y8_c01104{bottom:530.835000px;}
.y7_c01104{bottom:568.035000px;}
.y6_c01104{bottom:596.235000px;}
.y5_c01104{bottom:623.685000px;}
.y4_c01104{bottom:651.585000px;}
.y3_c01104{bottom:679.935000px;}
.y2_c01104{bottom:707.685000px;}
.y1_c01104{bottom:735.435000px;}
.h9_c01104{height:13.200074px;}
.ha_c01104{height:43.804688px;}
.h2_c01104{height:80.758301px;}
.h7_c01104{height:83.563477px;}
.h3_c01104{height:84.269531px;}
.h6_c01104{height:91.160156px;}
.h5_c01104{height:101.825684px;}
.h8_c01104{height:108.848145px;}
.h4_c01104{height:110.151855px;}
.h0_c01104{height:783.525000px;}
.h1_c01104{height:783.750000px;}
.w2_c01104{width:104.875500px;}
.w1_c01104{width:513.750000px;}
.w0_c01104{width:513.825000px;}
.x0_c01104{left:0.000000px;}
.xd_c01104{left:31.350000px;}
.xa_c01104{left:32.700000px;}
.x3_c01104{left:34.350000px;}
.xc_c01104{left:35.550000px;}
.xb_c01104{left:37.200000px;}
.x2_c01104{left:45.000000px;}
.x4_c01104{left:83.400000px;}
.x7_c01104{left:150.900000px;}
.x8_c01104{left:152.250000px;}
.x9_c01104{left:153.300000px;}
.x5_c01104{left:156.900000px;}
.x6_c01104{left:197.100000px;}
.xf_c01104{left:208.726730px;}
.xe_c01104{left:228.750000px;}
.x1_c01104{left:379.950000px;}
@media print{
.v0_c01104{vertical-align:0.000000pt;}
.ls3_c01104{letter-spacing:-2.666667pt;}
.ls2_c01104{letter-spacing:0.000000pt;}
.ls4_c01104{letter-spacing:2.666667pt;}
.ls0_c01104{letter-spacing:5.333333pt;}
.ls1_c01104{letter-spacing:26.666667pt;}
.ws1_c01104{word-spacing:-27.818667pt;}
.ws0_c01104{word-spacing:-20.114667pt;}
.ws2_c01104{word-spacing:-15.424000pt;}
.ws3_c01104{word-spacing:0.000000pt;}
._1e_c01104{margin-left:-16.866667pt;}
._1b_c01104{margin-left:-12.149333pt;}
._14_c01104{margin-left:-10.584000pt;}
._1c_c01104{margin-left:-9.344000pt;}
._18_c01104{margin-left:-7.965333pt;}
._15_c01104{margin-left:-7.040000pt;}
._e_c01104{margin-left:-5.589333pt;}
._13_c01104{margin-left:-3.866667pt;}
._11_c01104{margin-left:-2.317333pt;}
._10_c01104{margin-left:-1.240000pt;}
._f_c01104{width:0.890667pt;}
._0_c01104{width:1.840000pt;}
._5_c01104{width:2.960000pt;}
._16_c01104{width:4.053333pt;}
._d_c01104{width:4.949333pt;}
._c_c01104{width:6.264000pt;}
._17_c01104{width:8.042667pt;}
._19_c01104{width:9.925333pt;}
._1a_c01104{width:10.965333pt;}
._6_c01104{width:12.288000pt;}
._12_c01104{width:14.072000pt;}
._3_c01104{width:18.368000pt;}
._2_c01104{width:19.456000pt;}
._1_c01104{width:21.120000pt;}
._9_c01104{width:30.272000pt;}
._a_c01104{width:32.256000pt;}
._7_c01104{width:45.504000pt;}
._8_c01104{width:51.136000pt;}
._b_c01104{width:57.600000pt;}
._4_c01104{width:60.160000pt;}
._1d_c01104{width:268.898667pt;}
.fs6_c01104{font-size:42.666667pt;}
.fs5_c01104{font-size:56.000000pt;}
.fs3_c01104{font-size:58.666667pt;}
.fs0_c01104{font-size:61.333333pt;}
.fs1_c01104{font-size:64.000000pt;}
.fs2_c01104{font-size:77.333333pt;}
.fs4_c01104{font-size:82.666667pt;}
.y0_c01104{bottom:0.000000pt;}
.y1d_c01104{bottom:2.760000pt;}
.y1c_c01104{bottom:6.425204pt;}
.y1b_c01104{bottom:40.120000pt;}
.y1a_c01104{bottom:63.186667pt;}
.y19_c01104{bottom:82.786667pt;}
.y18_c01104{bottom:108.520000pt;}
.y17_c01104{bottom:130.520000pt;}
.y16_c01104{bottom:151.720000pt;}
.y15_c01104{bottom:174.920000pt;}
.y14_c01104{bottom:196.786667pt;}
.y13_c01104{bottom:219.186667pt;}
.y12_c01104{bottom:240.786667pt;}
.y11_c01104{bottom:263.586667pt;}
.y10_c01104{bottom:285.320000pt;}
.yf_c01104{bottom:306.920000pt;}
.ye_c01104{bottom:327.586667pt;}
.yd_c01104{bottom:349.453333pt;}
.yc_c01104{bottom:371.320000pt;}
.yb_c01104{bottom:393.320000pt;}
.ya_c01104{bottom:415.186667pt;}
.y9_c01104{bottom:436.386667pt;}
.y8_c01104{bottom:471.853333pt;}
.y7_c01104{bottom:504.920000pt;}
.y6_c01104{bottom:529.986667pt;}
.y5_c01104{bottom:554.386667pt;}
.y4_c01104{bottom:579.186667pt;}
.y3_c01104{bottom:604.386667pt;}
.y2_c01104{bottom:629.053333pt;}
.y1_c01104{bottom:653.720000pt;}
.h9_c01104{height:11.733399pt;}
.ha_c01104{height:38.937500pt;}
.h2_c01104{height:71.785156pt;}
.h7_c01104{height:74.278646pt;}
.h3_c01104{height:74.906250pt;}
.h6_c01104{height:81.031250pt;}
.h5_c01104{height:90.511719pt;}
.h8_c01104{height:96.753906pt;}
.h4_c01104{height:97.912760pt;}
.h0_c01104{height:696.466667pt;}
.h1_c01104{height:696.666667pt;}
.w2_c01104{width:93.222667pt;}
.w1_c01104{width:456.666667pt;}
.w0_c01104{width:456.733333pt;}
.x0_c01104{left:0.000000pt;}
.xd_c01104{left:27.866667pt;}
.xa_c01104{left:29.066667pt;}
.x3_c01104{left:30.533333pt;}
.xc_c01104{left:31.600000pt;}
.xb_c01104{left:33.066667pt;}
.x2_c01104{left:40.000000pt;}
.x4_c01104{left:74.133333pt;}
.x7_c01104{left:134.133333pt;}
.x8_c01104{left:135.333333pt;}
.x9_c01104{left:136.266667pt;}
.x5_c01104{left:139.466667pt;}
.x6_c01104{left:175.200000pt;}
.xf_c01104{left:185.534871pt;}
.xe_c01104{left:203.333333pt;}
.x1_c01104{left:337.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2e0aee0f350f15aae51d3d57.woff2')format("woff");}.ff1_c01105{font-family:ff1_c01105;line-height:1.284180;font-style:normal;font-weight:normal;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_ed8f7b03d29be2f2ea64ee28.woff2')format("woff");}.ff2_c01105{font-family:ff2_c01105;line-height:1.568848;font-style:normal;font-weight:normal;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_4805a7aa1f76a255c69648ac.woff2')format("woff");}.ff3_c01105{font-family:ff3_c01105;line-height:1.480469;font-style:normal;font-weight:normal;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_60036453ca8076df8a47c136.woff2')format("woff");}.ff4_c01105{font-family:ff4_c01105;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01105;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01105{font-family:ff5_c01105;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01105{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01105{vertical-align:0.000000px;}
.ls3_c01105{letter-spacing:-3.000000px;}
.ls1_c01105{letter-spacing:0.000000px;}
.ls0_c01105{letter-spacing:2.988000px;}
.ls2_c01105{letter-spacing:3.000000px;}
.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:-17.352000px;}
.ws2_c01105{word-spacing:0.000000px;}
.ws1_c01105{word-spacing:5.460000px;}
._b_c01105{margin-left:-18.348000px;}
._c_c01105{margin-left:-15.864000px;}
._f_c01105{margin-left:-12.873000px;}
._1c_c01105{margin-left:-10.650000px;}
._11_c01105{margin-left:-9.579000px;}
._a_c01105{margin-left:-8.358000px;}
._e_c01105{margin-left:-7.197000px;}
._6_c01105{margin-left:-5.952000px;}
._10_c01105{margin-left:-4.308000px;}
._2_c01105{margin-left:-3.024000px;}
._d_c01105{margin-left:-1.152000px;}
._1_c01105{width:1.848000px;}
._1b_c01105{width:2.859000px;}
._0_c01105{width:3.864000px;}
._3_c01105{width:4.914000px;}
._8_c01105{width:6.072000px;}
._9_c01105{width:7.728000px;}
._5_c01105{width:9.177000px;}
._17_c01105{width:10.383000px;}
._4_c01105{width:11.505000px;}
._13_c01105{width:13.140000px;}
._19_c01105{width:14.427000px;}
._14_c01105{width:18.600000px;}
._1d_c01105{width:19.668000px;}
._18_c01105{width:21.603000px;}
._1a_c01105{width:23.235000px;}
._15_c01105{width:27.180000px;}
._16_c01105{width:86.631000px;}
._12_c01105{width:112.122000px;}
._7_c01105{width:241.887000px;}
.fc2_c01105{color:transparent;}
.fc1_c01105{color:rgb(128,128,128);}
.fc0_c01105{color:rgb(0,0,0);}
.fs8_c01105{font-size:48.000000px;}
.fs4_c01105{font-size:51.000000px;}
.fs5_c01105{font-size:60.000000px;}
.fs7_c01105{font-size:63.000000px;}
.fs2_c01105{font-size:66.000000px;}
.fs1_c01105{font-size:69.000000px;}
.fs3_c01105{font-size:72.000000px;}
.fs6_c01105{font-size:78.000000px;}
.fs0_c01105{font-size:84.000000px;}
.y0_c01105{bottom:0.000000px;}
.y1e_c01105{bottom:3.105000px;}
.y1d_c01105{bottom:7.228357px;}
.y1c_c01105{bottom:79.380000px;}
.y1b_c01105{bottom:109.080000px;}
.y1a_c01105{bottom:132.030000px;}
.y19_c01105{bottom:156.630000px;}
.y18_c01105{bottom:182.280000px;}
.y17_c01105{bottom:206.280000px;}
.y16_c01105{bottom:231.630000px;}
.y15_c01105{bottom:257.280000px;}
.y14_c01105{bottom:281.580000px;}
.y13_c01105{bottom:307.080000px;}
.y12_c01105{bottom:331.380000px;}
.y11_c01105{bottom:355.680000px;}
.y10_c01105{bottom:379.680000px;}
.yf_c01105{bottom:404.280000px;}
.ye_c01105{bottom:427.380000px;}
.yd_c01105{bottom:451.530000px;}
.yc_c01105{bottom:474.480000px;}
.yb_c01105{bottom:499.230000px;}
.ya_c01105{bottom:523.830000px;}
.y9_c01105{bottom:550.080000px;}
.y8_c01105{bottom:575.130000px;}
.y7_c01105{bottom:599.730000px;}
.y6_c01105{bottom:624.030000px;}
.y5_c01105{bottom:649.680000px;}
.y4_c01105{bottom:672.030000px;}
.y3_c01105{bottom:698.730000px;}
.y2_c01105{bottom:723.630000px;}
.y1_c01105{bottom:749.580000px;}
.h6_c01105{height:13.200074px;}
.h7_c01105{height:43.804688px;}
.h1_c01105{height:82.400391px;}
.h3_c01105{height:83.563477px;}
.h2_c01105{height:87.361816px;}
.h4_c01105{height:91.160156px;}
.h5_c01105{height:98.756836px;}
.h0_c01105{height:799.500000px;}
.w2_c01105{width:104.875500px;}
.w1_c01105{width:521.250000px;}
.w0_c01105{width:521.400000px;}
.x0_c01105{left:0.000000px;}
.x6_c01105{left:26.700000px;}
.x5_c01105{left:28.950000px;}
.x4_c01105{left:42.750000px;}
.x2_c01105{left:108.900000px;}
.x3_c01105{left:110.250000px;}
.x7_c01105{left:212.514267px;}
.x1_c01105{left:226.500000px;}
@media print{
.v0_c01105{vertical-align:0.000000pt;}
.ls3_c01105{letter-spacing:-2.666667pt;}
.ls1_c01105{letter-spacing:0.000000pt;}
.ls0_c01105{letter-spacing:2.656000pt;}
.ls2_c01105{letter-spacing:2.666667pt;}
.ws0_c01105{word-spacing:-15.424000pt;}
.ws2_c01105{word-spacing:0.000000pt;}
.ws1_c01105{word-spacing:4.853333pt;}
._b_c01105{margin-left:-16.309333pt;}
._c_c01105{margin-left:-14.101333pt;}
._f_c01105{margin-left:-11.442667pt;}
._1c_c01105{margin-left:-9.466667pt;}
._11_c01105{margin-left:-8.514667pt;}
._a_c01105{margin-left:-7.429333pt;}
._e_c01105{margin-left:-6.397333pt;}
._6_c01105{margin-left:-5.290667pt;}
._10_c01105{margin-left:-3.829333pt;}
._2_c01105{margin-left:-2.688000pt;}
._d_c01105{margin-left:-1.024000pt;}
._1_c01105{width:1.642667pt;}
._1b_c01105{width:2.541333pt;}
._0_c01105{width:3.434667pt;}
._3_c01105{width:4.368000pt;}
._8_c01105{width:5.397333pt;}
._9_c01105{width:6.869333pt;}
._5_c01105{width:8.157333pt;}
._17_c01105{width:9.229333pt;}
._4_c01105{width:10.226667pt;}
._13_c01105{width:11.680000pt;}
._19_c01105{width:12.824000pt;}
._14_c01105{width:16.533333pt;}
._1d_c01105{width:17.482667pt;}
._18_c01105{width:19.202667pt;}
._1a_c01105{width:20.653333pt;}
._15_c01105{width:24.160000pt;}
._16_c01105{width:77.005333pt;}
._12_c01105{width:99.664000pt;}
._7_c01105{width:215.010667pt;}
.fs8_c01105{font-size:42.666667pt;}
.fs4_c01105{font-size:45.333333pt;}
.fs5_c01105{font-size:53.333333pt;}
.fs7_c01105{font-size:56.000000pt;}
.fs2_c01105{font-size:58.666667pt;}
.fs1_c01105{font-size:61.333333pt;}
.fs3_c01105{font-size:64.000000pt;}
.fs6_c01105{font-size:69.333333pt;}
.fs0_c01105{font-size:74.666667pt;}
.y0_c01105{bottom:0.000000pt;}
.y1e_c01105{bottom:2.760000pt;}
.y1d_c01105{bottom:6.425206pt;}
.y1c_c01105{bottom:70.560000pt;}
.y1b_c01105{bottom:96.960000pt;}
.y1a_c01105{bottom:117.360000pt;}
.y19_c01105{bottom:139.226667pt;}
.y18_c01105{bottom:162.026667pt;}
.y17_c01105{bottom:183.360000pt;}
.y16_c01105{bottom:205.893333pt;}
.y15_c01105{bottom:228.693333pt;}
.y14_c01105{bottom:250.293333pt;}
.y13_c01105{bottom:272.960000pt;}
.y12_c01105{bottom:294.560000pt;}
.y11_c01105{bottom:316.160000pt;}
.y10_c01105{bottom:337.493333pt;}
.yf_c01105{bottom:359.360000pt;}
.ye_c01105{bottom:379.893333pt;}
.yd_c01105{bottom:401.360000pt;}
.yc_c01105{bottom:421.760000pt;}
.yb_c01105{bottom:443.760000pt;}
.ya_c01105{bottom:465.626667pt;}
.y9_c01105{bottom:488.960000pt;}
.y8_c01105{bottom:511.226667pt;}
.y7_c01105{bottom:533.093333pt;}
.y6_c01105{bottom:554.693333pt;}
.y5_c01105{bottom:577.493333pt;}
.y4_c01105{bottom:597.360000pt;}
.y3_c01105{bottom:621.093333pt;}
.y2_c01105{bottom:643.226667pt;}
.y1_c01105{bottom:666.293333pt;}
.h6_c01105{height:11.733399pt;}
.h7_c01105{height:38.937500pt;}
.h1_c01105{height:73.244792pt;}
.h3_c01105{height:74.278646pt;}
.h2_c01105{height:77.654948pt;}
.h4_c01105{height:81.031250pt;}
.h5_c01105{height:87.783854pt;}
.h0_c01105{height:710.666667pt;}
.w2_c01105{width:93.222667pt;}
.w1_c01105{width:463.333333pt;}
.w0_c01105{width:463.466667pt;}
.x0_c01105{left:0.000000pt;}
.x6_c01105{left:23.733333pt;}
.x5_c01105{left:25.733333pt;}
.x4_c01105{left:38.000000pt;}
.x2_c01105{left:96.800000pt;}
.x3_c01105{left:98.000000pt;}
.x7_c01105{left:188.901571pt;}
.x1_c01105{left:201.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_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_38d49f04d518f1da68ad8f81.woff2')format("woff");}.ff1_c01106{font-family:ff1_c01106;line-height:1.480469;font-style:normal;font-weight:normal;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_9f773690aabcbece33ee606c.woff2')format("woff");}.ff2_c01106{font-family:ff2_c01106;line-height:1.568848;font-style:normal;font-weight:normal;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_a3b32877eaa159e84ebfdc0d.woff2')format("woff");}.ff3_c01106{font-family:ff3_c01106;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01106;src:url('chunks/assets/font_ce815b592ff26ccf1c3ddee0.woff2')format("woff");}.ff4_c01106{font-family:ff4_c01106;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01106;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01106{font-family:ff5_c01106;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c01106{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,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;}
.ls0_c01106{letter-spacing:-3.000000px;}
.ls1_c01106{letter-spacing:0.000000px;}
.ls2_c01106{letter-spacing:3.000000px;}
.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;}
}
.ws2_c01106{word-spacing:-25.146000px;}
.ws1_c01106{word-spacing:-22.413000px;}
.ws3_c01106{word-spacing:0.000000px;}
.ws0_c01106{word-spacing:0.798000px;}
._15_c01106{margin-left:-30.504000px;}
._16_c01106{margin-left:-19.632000px;}
._14_c01106{margin-left:-14.646000px;}
._13_c01106{margin-left:-12.444000px;}
._7_c01106{margin-left:-9.570000px;}
._12_c01106{margin-left:-7.971000px;}
._11_c01106{margin-left:-6.876000px;}
._5_c01106{margin-left:-5.133000px;}
._c_c01106{margin-left:-3.825000px;}
._2_c01106{margin-left:-2.610000px;}
._b_c01106{margin-left:-1.287000px;}
._3_c01106{width:1.305000px;}
._4_c01106{width:2.349000px;}
._a_c01106{width:3.654000px;}
._d_c01106{width:4.893000px;}
._9_c01106{width:5.988000px;}
._1_c01106{width:7.482000px;}
._f_c01106{width:8.913000px;}
._10_c01106{width:10.518000px;}
._0_c01106{width:12.267000px;}
._e_c01106{width:14.760000px;}
._8_c01106{width:16.008000px;}
._6_c01106{width:286.491000px;}
._17_c01106{width:322.950000px;}
.fc2_c01106{color:transparent;}
.fc1_c01106{color:rgb(128,128,128);}
.fc0_c01106{color:rgb(0,0,0);}
.fs9_c01106{font-size:48.000000px;}
.fs1_c01106{font-size:57.000000px;}
.fs2_c01106{font-size:69.000000px;}
.fs6_c01106{font-size:72.000000px;}
.fs7_c01106{font-size:75.000000px;}
.fs8_c01106{font-size:78.000000px;}
.fs5_c01106{font-size:84.000000px;}
.fs0_c01106{font-size:87.000000px;}
.fs3_c01106{font-size:93.000000px;}
.fs4_c01106{font-size:99.000000px;}
.y0_c01106{bottom:0.000000px;}
.y1d_c01106{bottom:3.105000px;}
.y1c_c01106{bottom:7.228357px;}
.y1b_c01106{bottom:68.130000px;}
.y1a_c01106{bottom:95.280000px;}
.y19_c01106{bottom:118.830000px;}
.y18_c01106{bottom:145.530000px;}
.y17_c01106{bottom:170.430000px;}
.y16_c01106{bottom:195.030000px;}
.y15_c01106{bottom:218.430000px;}
.y14_c01106{bottom:293.280000px;}
.y13_c01106{bottom:316.980000px;}
.y12_c01106{bottom:341.880000px;}
.y11_c01106{bottom:365.580000px;}
.y10_c01106{bottom:390.180000px;}
.yf_c01106{bottom:412.830000px;}
.ye_c01106{bottom:437.730000px;}
.yd_c01106{bottom:462.780000px;}
.yc_c01106{bottom:486.780000px;}
.yb_c01106{bottom:510.630000px;}
.ya_c01106{bottom:535.230000px;}
.y9_c01106{bottom:558.630000px;}
.y8_c01106{bottom:583.230000px;}
.y7_c01106{bottom:608.130000px;}
.y6_c01106{bottom:632.580000px;}
.y5_c01106{bottom:658.230000px;}
.y4_c01106{bottom:682.380000px;}
.y3_c01106{bottom:707.130000px;}
.y2_c01106{bottom:732.330000px;}
.y1_c01106{bottom:757.380000px;}
.ha_c01106{height:13.200074px;}
.hb_c01106{height:43.804688px;}
.h8_c01106{height:73.608398px;}
.h3_c01106{height:87.361816px;}
.h7_c01106{height:91.160156px;}
.h6_c01106{height:98.314453px;}
.h9_c01106{height:98.756836px;}
.h4_c01106{height:108.848145px;}
.h2_c01106{height:110.151855px;}
.h5_c01106{height:115.870605px;}
.h0_c01106{height:795.450000px;}
.h1_c01106{height:795.750000px;}
.w2_c01106{width:104.875500px;}
.w0_c01106{width:534.600000px;}
.w1_c01106{width:534.750000px;}
.x0_c01106{left:0.000000px;}
.x8_c01106{left:28.050000px;}
.x5_c01106{left:30.150000px;}
.x6_c01106{left:31.350000px;}
.x2_c01106{left:32.400000px;}
.x3_c01106{left:34.050000px;}
.x4_c01106{left:35.850000px;}
.x7_c01106{left:37.200000px;}
.x1_c01106{left:150.600000px;}
.xc_c01106{left:219.114258px;}
.x9_c01106{left:236.700000px;}
.xa_c01106{left:279.300000px;}
.xb_c01106{left:286.350000px;}
@media print{
.v0_c01106{vertical-align:0.000000pt;}
.ls0_c01106{letter-spacing:-2.666667pt;}
.ls1_c01106{letter-spacing:0.000000pt;}
.ls2_c01106{letter-spacing:2.666667pt;}
.ws2_c01106{word-spacing:-22.352000pt;}
.ws1_c01106{word-spacing:-19.922667pt;}
.ws3_c01106{word-spacing:0.000000pt;}
.ws0_c01106{word-spacing:0.709333pt;}
._15_c01106{margin-left:-27.114667pt;}
._16_c01106{margin-left:-17.450667pt;}
._14_c01106{margin-left:-13.018667pt;}
._13_c01106{margin-left:-11.061333pt;}
._7_c01106{margin-left:-8.506667pt;}
._12_c01106{margin-left:-7.085333pt;}
._11_c01106{margin-left:-6.112000pt;}
._5_c01106{margin-left:-4.562667pt;}
._c_c01106{margin-left:-3.400000pt;}
._2_c01106{margin-left:-2.320000pt;}
._b_c01106{margin-left:-1.144000pt;}
._3_c01106{width:1.160000pt;}
._4_c01106{width:2.088000pt;}
._a_c01106{width:3.248000pt;}
._d_c01106{width:4.349333pt;}
._9_c01106{width:5.322667pt;}
._1_c01106{width:6.650667pt;}
._f_c01106{width:7.922667pt;}
._10_c01106{width:9.349333pt;}
._0_c01106{width:10.904000pt;}
._e_c01106{width:13.120000pt;}
._8_c01106{width:14.229333pt;}
._6_c01106{width:254.658667pt;}
._17_c01106{width:287.066667pt;}
.fs9_c01106{font-size:42.666667pt;}
.fs1_c01106{font-size:50.666667pt;}
.fs2_c01106{font-size:61.333333pt;}
.fs6_c01106{font-size:64.000000pt;}
.fs7_c01106{font-size:66.666667pt;}
.fs8_c01106{font-size:69.333333pt;}
.fs5_c01106{font-size:74.666667pt;}
.fs0_c01106{font-size:77.333333pt;}
.fs3_c01106{font-size:82.666667pt;}
.fs4_c01106{font-size:88.000000pt;}
.y0_c01106{bottom:0.000000pt;}
.y1d_c01106{bottom:2.760000pt;}
.y1c_c01106{bottom:6.425206pt;}
.y1b_c01106{bottom:60.560000pt;}
.y1a_c01106{bottom:84.693333pt;}
.y19_c01106{bottom:105.626667pt;}
.y18_c01106{bottom:129.360000pt;}
.y17_c01106{bottom:151.493333pt;}
.y16_c01106{bottom:173.360000pt;}
.y15_c01106{bottom:194.160000pt;}
.y14_c01106{bottom:260.693333pt;}
.y13_c01106{bottom:281.760000pt;}
.y12_c01106{bottom:303.893333pt;}
.y11_c01106{bottom:324.960000pt;}
.y10_c01106{bottom:346.826667pt;}
.yf_c01106{bottom:366.960000pt;}
.ye_c01106{bottom:389.093333pt;}
.yd_c01106{bottom:411.360000pt;}
.yc_c01106{bottom:432.693333pt;}
.yb_c01106{bottom:453.893333pt;}
.ya_c01106{bottom:475.760000pt;}
.y9_c01106{bottom:496.560000pt;}
.y8_c01106{bottom:518.426667pt;}
.y7_c01106{bottom:540.560000pt;}
.y6_c01106{bottom:562.293333pt;}
.y5_c01106{bottom:585.093333pt;}
.y4_c01106{bottom:606.560000pt;}
.y3_c01106{bottom:628.560000pt;}
.y2_c01106{bottom:650.960000pt;}
.y1_c01106{bottom:673.226667pt;}
.ha_c01106{height:11.733399pt;}
.hb_c01106{height:38.937500pt;}
.h8_c01106{height:65.429688pt;}
.h3_c01106{height:77.654948pt;}
.h7_c01106{height:81.031250pt;}
.h6_c01106{height:87.390625pt;}
.h9_c01106{height:87.783854pt;}
.h4_c01106{height:96.753906pt;}
.h2_c01106{height:97.912760pt;}
.h5_c01106{height:102.996094pt;}
.h0_c01106{height:707.066667pt;}
.h1_c01106{height:707.333333pt;}
.w2_c01106{width:93.222667pt;}
.w0_c01106{width:475.200000pt;}
.w1_c01106{width:475.333333pt;}
.x0_c01106{left:0.000000pt;}
.x8_c01106{left:24.933333pt;}
.x5_c01106{left:26.800000pt;}
.x6_c01106{left:27.866667pt;}
.x2_c01106{left:28.800000pt;}
.x3_c01106{left:30.266667pt;}
.x4_c01106{left:31.866667pt;}
.x7_c01106{left:33.066667pt;}
.x1_c01106{left:133.866667pt;}
.xc_c01106{left:194.768229pt;}
.x9_c01106{left:210.400000pt;}
.xa_c01106{left:248.266667pt;}
.xb_c01106{left:254.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_930d7bb257db9b689dbe461f.woff2')format("woff");}.ff1_c01107{font-family:ff1_c01107;line-height:1.480469;font-style:normal;font-weight:normal;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_1d3ec14f1ae0186586b755f0.woff2')format("woff");}.ff2_c01107{font-family:ff2_c01107;line-height:1.568848;font-style:normal;font-weight:normal;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_f41d5a116db268c6b8f29913.woff2')format("woff");}.ff3_c01107{font-family:ff3_c01107;line-height:1.568848;font-style:normal;font-weight:normal;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_b7e87ebf885f4c68459ce8da.woff2')format("woff");}.ff4_c01107{font-family:ff4_c01107;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01107;src:url('chunks/assets/font_935bcf8f1e98ac2ee0f7e4b1.woff2')format("woff");}.ff5_c01107{font-family:ff5_c01107;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01107;src:url('chunks/assets/font_ce3091ba797c5ad9045d6578.woff2')format("woff");}.ff6_c01107{font-family:ff6_c01107;line-height:1.575000;font-style:normal;font-weight: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_c01107;src:url('chunks/assets/font_9873ca2e8c67d2e657df33d3.woff2')format("woff");}.ff7_c01107{font-family:ff7_c01107;line-height:1.284668;font-style:normal;font-weight: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_c01107;src:url('chunks/assets/font_c94a486852eb94ab5a49d48c.woff2')format("woff");}.ff8_c01107{font-family:ff8_c01107;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01107;src:url('chunks/assets/font_59edbcf880c9509536a5d96b.woff2')format("woff");}.ff9_c01107{font-family:ff9_c01107;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01107;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ffa_c01107{font-family:ffa_c01107;line-height:1.219238;font-style: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;}
.ls5_c01107{letter-spacing:-12.000000px;}
.ls1_c01107{letter-spacing:-3.000000px;}
.ls3_c01107{letter-spacing:0.000000px;}
.ls2_c01107{letter-spacing:3.000000px;}
.ls4_c01107{letter-spacing:6.000000px;}
.ls0_c01107{letter-spacing:8.586000px;}
.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:-105.204000px;}
.ws5_c01107{word-spacing:-28.080000px;}
.ws4_c01107{word-spacing:-22.464000px;}
.ws3_c01107{word-spacing:-17.352000px;}
.ws2_c01107{word-spacing:-17.118000px;}
.ws1_c01107{word-spacing:-16.411200px;}
.ws7_c01107{word-spacing:-8.658000px;}
.ws6_c01107{word-spacing:-8.409600px;}
.ws8_c01107{word-spacing:0.000000px;}
._10_c01107{margin-left:-51.432000px;}
._13_c01107{margin-left:-36.864000px;}
._20_c01107{margin-left:-30.096000px;}
._12_c01107{margin-left:-23.232000px;}
._21_c01107{margin-left:-17.277000px;}
._f_c01107{margin-left:-16.242000px;}
._1f_c01107{margin-left:-13.398000px;}
._11_c01107{margin-left:-12.276000px;}
._18_c01107{margin-left:-11.085000px;}
._15_c01107{margin-left:-10.080000px;}
._14_c01107{margin-left:-8.919000px;}
._e_c01107{margin-left:-7.536000px;}
._9_c01107{margin-left:-5.235000px;}
._5_c01107{margin-left:-4.176000px;}
._4_c01107{margin-left:-2.175000px;}
._16_c01107{margin-left:-1.164000px;}
._7_c01107{width:1.965000px;}
._6_c01107{width:3.168000px;}
._1_c01107{width:4.437000px;}
._a_c01107{width:5.676000px;}
._8_c01107{width:6.915000px;}
._3_c01107{width:8.787000px;}
._2_c01107{width:9.918000px;}
._d_c01107{width:11.340000px;}
._0_c01107{width:12.528000px;}
._c_c01107{width:13.956000px;}
._b_c01107{width:15.780000px;}
._17_c01107{width:16.812000px;}
._1b_c01107{width:18.552000px;}
._1e_c01107{width:19.668000px;}
._19_c01107{width:20.928000px;}
._1d_c01107{width:22.344000px;}
._1a_c01107{width:24.708000px;}
._1c_c01107{width:34.290000px;}
._22_c01107{width:831.372000px;}
.fc2_c01107{color:transparent;}
.fc1_c01107{color:rgb(128,128,128);}
.fc0_c01107{color:rgb(0,0,0);}
.fs8_c01107{font-size:24.000000px;}
.fsb_c01107{font-size:36.000000px;}
.fs9_c01107{font-size:39.000000px;}
.fs3_c01107{font-size:43.200000px;}
.fse_c01107{font-size:48.000000px;}
.fs5_c01107{font-size:51.000000px;}
.fs4_c01107{font-size:54.000000px;}
.fsc_c01107{font-size:57.600000px;}
.fs1_c01107{font-size:66.000000px;}
.fs7_c01107{font-size:72.000000px;}
.fsa_c01107{font-size:75.000000px;}
.fs6_c01107{font-size:78.000000px;}
.fsd_c01107{font-size:81.000000px;}
.fs0_c01107{font-size:87.000000px;}
.fs2_c01107{font-size:132.000000px;}
.y0_c01107{bottom:0.000000px;}
.y1f_c01107{bottom:3.105000px;}
.y1e_c01107{bottom:7.228363px;}
.y1d_c01107{bottom:74.700000px;}
.y1c_c01107{bottom:92.550000px;}
.y1b_c01107{bottom:116.400000px;}
.y1a_c01107{bottom:141.450000px;}
.y19_c01107{bottom:169.050000px;}
.y18_c01107{bottom:193.050000px;}
.y17_c01107{bottom:219.000000px;}
.y16_c01107{bottom:243.450000px;}
.y15_c01107{bottom:267.300000px;}
.y14_c01107{bottom:291.900000px;}
.y13_c01107{bottom:316.350000px;}
.y12_c01107{bottom:341.250000px;}
.y11_c01107{bottom:365.850000px;}
.y10_c01107{bottom:389.850000px;}
.yf_c01107{bottom:414.750000px;}
.ye_c01107{bottom:438.450000px;}
.yd_c01107{bottom:465.150000px;}
.yc_c01107{bottom:485.100000px;}
.yb_c01107{bottom:510.000000px;}
.ya_c01107{bottom:533.850000px;}
.y9_c01107{bottom:558.450000px;}
.y8_c01107{bottom:583.200000px;}
.y7_c01107{bottom:608.100000px;}
.y6_c01107{bottom:632.250000px;}
.y5_c01107{bottom:657.450000px;}
.y4_c01107{bottom:681.450000px;}
.y3_c01107{bottom:706.350000px;}
.y2_c01107{bottom:731.250000px;}
.y1_c01107{bottom:756.750000px;}
.hb_c01107{height:13.200074px;}
.h7_c01107{height:30.386719px;}
.hc_c01107{height:43.804688px;}
.ha_c01107{height:70.422000px;}
.h8_c01107{height:73.608398px;}
.h9_c01107{height:79.497070px;}
.h3_c01107{height:83.563477px;}
.h6_c01107{height:91.160156px;}
.h5_c01107{height:98.756836px;}
.h2_c01107{height:110.151855px;}
.h4_c01107{height:167.126953px;}
.h0_c01107{height:799.200000px;}
.h1_c01107{height:799.500000px;}
.w2_c01107{width:104.875500px;}
.w1_c01107{width:513.000000px;}
.w0_c01107{width:513.300000px;}
.x0_c01107{left:0.000000px;}
.x6_c01107{left:93.750000px;}
.x4_c01107{left:103.500000px;}
.x5_c01107{left:105.000000px;}
.x2_c01107{left:106.350000px;}
.x3_c01107{left:107.700000px;}
.x7_c01107{left:130.050000px;}
.x9_c01107{left:208.464249px;}
.x1_c01107{left:224.400000px;}
.x8_c01107{left:227.400000px;}
@media print{
.v0_c01107{vertical-align:0.000000pt;}
.ls5_c01107{letter-spacing:-10.666667pt;}
.ls1_c01107{letter-spacing:-2.666667pt;}
.ls3_c01107{letter-spacing:0.000000pt;}
.ls2_c01107{letter-spacing:2.666667pt;}
.ls4_c01107{letter-spacing:5.333333pt;}
.ls0_c01107{letter-spacing:7.632000pt;}
.ws0_c01107{word-spacing:-93.514667pt;}
.ws5_c01107{word-spacing:-24.960000pt;}
.ws4_c01107{word-spacing:-19.968000pt;}
.ws3_c01107{word-spacing:-15.424000pt;}
.ws2_c01107{word-spacing:-15.216000pt;}
.ws1_c01107{word-spacing:-14.587733pt;}
.ws7_c01107{word-spacing:-7.696000pt;}
.ws6_c01107{word-spacing:-7.475200pt;}
.ws8_c01107{word-spacing:0.000000pt;}
._10_c01107{margin-left:-45.717333pt;}
._13_c01107{margin-left:-32.768000pt;}
._20_c01107{margin-left:-26.752000pt;}
._12_c01107{margin-left:-20.650667pt;}
._21_c01107{margin-left:-15.357333pt;}
._f_c01107{margin-left:-14.437333pt;}
._1f_c01107{margin-left:-11.909333pt;}
._11_c01107{margin-left:-10.912000pt;}
._18_c01107{margin-left:-9.853333pt;}
._15_c01107{margin-left:-8.960000pt;}
._14_c01107{margin-left:-7.928000pt;}
._e_c01107{margin-left:-6.698667pt;}
._9_c01107{margin-left:-4.653333pt;}
._5_c01107{margin-left:-3.712000pt;}
._4_c01107{margin-left:-1.933333pt;}
._16_c01107{margin-left:-1.034667pt;}
._7_c01107{width:1.746667pt;}
._6_c01107{width:2.816000pt;}
._1_c01107{width:3.944000pt;}
._a_c01107{width:5.045333pt;}
._8_c01107{width:6.146667pt;}
._3_c01107{width:7.810667pt;}
._2_c01107{width:8.816000pt;}
._d_c01107{width:10.080000pt;}
._0_c01107{width:11.136000pt;}
._c_c01107{width:12.405333pt;}
._b_c01107{width:14.026667pt;}
._17_c01107{width:14.944000pt;}
._1b_c01107{width:16.490667pt;}
._1e_c01107{width:17.482667pt;}
._19_c01107{width:18.602667pt;}
._1d_c01107{width:19.861333pt;}
._1a_c01107{width:21.962667pt;}
._1c_c01107{width:30.480000pt;}
._22_c01107{width:738.997333pt;}
.fs8_c01107{font-size:21.333333pt;}
.fsb_c01107{font-size:32.000000pt;}
.fs9_c01107{font-size:34.666667pt;}
.fs3_c01107{font-size:38.400000pt;}
.fse_c01107{font-size:42.666667pt;}
.fs5_c01107{font-size:45.333333pt;}
.fs4_c01107{font-size:48.000000pt;}
.fsc_c01107{font-size:51.200000pt;}
.fs1_c01107{font-size:58.666667pt;}
.fs7_c01107{font-size:64.000000pt;}
.fsa_c01107{font-size:66.666667pt;}
.fs6_c01107{font-size:69.333333pt;}
.fsd_c01107{font-size:72.000000pt;}
.fs0_c01107{font-size:77.333333pt;}
.fs2_c01107{font-size:117.333333pt;}
.y0_c01107{bottom:0.000000pt;}
.y1f_c01107{bottom:2.760000pt;}
.y1e_c01107{bottom:6.425212pt;}
.y1d_c01107{bottom:66.400000pt;}
.y1c_c01107{bottom:82.266667pt;}
.y1b_c01107{bottom:103.466667pt;}
.y1a_c01107{bottom:125.733333pt;}
.y19_c01107{bottom:150.266667pt;}
.y18_c01107{bottom:171.600000pt;}
.y17_c01107{bottom:194.666667pt;}
.y16_c01107{bottom:216.400000pt;}
.y15_c01107{bottom:237.600000pt;}
.y14_c01107{bottom:259.466667pt;}
.y13_c01107{bottom:281.200000pt;}
.y12_c01107{bottom:303.333333pt;}
.y11_c01107{bottom:325.200000pt;}
.y10_c01107{bottom:346.533333pt;}
.yf_c01107{bottom:368.666667pt;}
.ye_c01107{bottom:389.733333pt;}
.yd_c01107{bottom:413.466667pt;}
.yc_c01107{bottom:431.200000pt;}
.yb_c01107{bottom:453.333333pt;}
.ya_c01107{bottom:474.533333pt;}
.y9_c01107{bottom:496.400000pt;}
.y8_c01107{bottom:518.400000pt;}
.y7_c01107{bottom:540.533333pt;}
.y6_c01107{bottom:562.000000pt;}
.y5_c01107{bottom:584.400000pt;}
.y4_c01107{bottom:605.733333pt;}
.y3_c01107{bottom:627.866667pt;}
.y2_c01107{bottom:650.000000pt;}
.y1_c01107{bottom:672.666667pt;}
.hb_c01107{height:11.733399pt;}
.h7_c01107{height:27.010417pt;}
.hc_c01107{height:38.937500pt;}
.ha_c01107{height:62.597333pt;}
.h8_c01107{height:65.429688pt;}
.h9_c01107{height:70.664062pt;}
.h3_c01107{height:74.278646pt;}
.h6_c01107{height:81.031250pt;}
.h5_c01107{height:87.783854pt;}
.h2_c01107{height:97.912760pt;}
.h4_c01107{height:148.557292pt;}
.h0_c01107{height:710.400000pt;}
.h1_c01107{height:710.666667pt;}
.w2_c01107{width:93.222667pt;}
.w1_c01107{width:456.000000pt;}
.w0_c01107{width:456.266667pt;}
.x0_c01107{left:0.000000pt;}
.x6_c01107{left:83.333333pt;}
.x4_c01107{left:92.000000pt;}
.x5_c01107{left:93.333333pt;}
.x2_c01107{left:94.533333pt;}
.x3_c01107{left:95.733333pt;}
.x7_c01107{left:115.600000pt;}
.x9_c01107{left:185.301554pt;}
.x1_c01107{left:199.466667pt;}
.x8_c01107{left:202.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d669fdcefe50c59c07b3aaea.woff2')format("woff");}.ff1_c01108{font-family:ff1_c01108;line-height:1.284180;font-style:normal;font-weight:normal;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_0e9c09d0b9e8ad9be18b6da3.woff2')format("woff");}.ff2_c01108{font-family:ff2_c01108;line-height:1.480469;font-style:normal;font-weight:normal;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_14caebd0ed6e6d192e8e1a0a.woff2')format("woff");}.ff3_c01108{font-family:ff3_c01108;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01108;src:url('chunks/assets/font_17bc7daf0e271ab88f6a8e2a.woff2')format("woff");}.ff4_c01108{font-family:ff4_c01108;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01108;src:url('chunks/assets/font_f305aef2016d6f842b692e03.woff2')format("woff");}.ff5_c01108{font-family:ff5_c01108;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01108;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01108{font-family:ff6_c01108;line-height:1.219238;font-style: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;}
.ls1_c01108{letter-spacing:0.000000px;}
.ls0_c01108{letter-spacing:1.215000px;}
.ls3_c01108{letter-spacing:3.000000px;}
.ls2_c01108{letter-spacing:6.000000px;}
.sc__c01108{text-shadow:none;}
.sc0_c01108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01108{-webkit-text-stroke:0px transparent;}
.sc0_c01108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01108{word-spacing:-30.051000px;}
.ws0_c01108{word-spacing:-17.352000px;}
.ws2_c01108{word-spacing:0.000000px;}
._c_c01108{margin-left:-19.470000px;}
._16_c01108{margin-left:-16.560000px;}
._17_c01108{margin-left:-15.288000px;}
._f_c01108{margin-left:-13.968000px;}
._19_c01108{margin-left:-12.756000px;}
._18_c01108{margin-left:-11.520000px;}
._14_c01108{margin-left:-10.056000px;}
._15_c01108{margin-left:-8.928000px;}
._8_c01108{margin-left:-7.224000px;}
._4_c01108{margin-left:-6.048000px;}
._12_c01108{margin-left:-4.944000px;}
._a_c01108{margin-left:-3.744000px;}
._d_c01108{margin-left:-2.412000px;}
._10_c01108{margin-left:-1.314000px;}
._2_c01108{width:1.848000px;}
._3_c01108{width:3.024000px;}
._6_c01108{width:4.536000px;}
._e_c01108{width:5.538000px;}
._5_c01108{width:6.804000px;}
._1_c01108{width:8.232000px;}
._b_c01108{width:9.240000px;}
._1d_c01108{width:10.512000px;}
._11_c01108{width:11.700000px;}
._0_c01108{width:13.188000px;}
._1f_c01108{width:14.430000px;}
._9_c01108{width:15.624000px;}
._1e_c01108{width:18.504000px;}
._1a_c01108{width:20.856000px;}
._1b_c01108{width:26.280000px;}
._21_c01108{width:30.324000px;}
._20_c01108{width:35.886000px;}
._13_c01108{width:37.392000px;}
._1c_c01108{width:50.646000px;}
._22_c01108{width:313.566000px;}
._7_c01108{width:366.156000px;}
.fc2_c01108{color:transparent;}
.fc1_c01108{color:rgb(128,128,128);}
.fc0_c01108{color:rgb(0,0,0);}
.fs6_c01108{font-size:48.000000px;}
.fs5_c01108{font-size:63.000000px;}
.fs2_c01108{font-size:66.000000px;}
.fs3_c01108{font-size:69.000000px;}
.fs1_c01108{font-size:72.000000px;}
.fs4_c01108{font-size:81.000000px;}
.fs0_c01108{font-size:84.000000px;}
.y0_c01108{bottom:0.000000px;}
.y1f_c01108{bottom:3.105000px;}
.y1e_c01108{bottom:7.228355px;}
.y1d_c01108{bottom:59.685000px;}
.y1c_c01108{bottom:85.035000px;}
.y1b_c01108{bottom:110.985000px;}
.y1a_c01108{bottom:135.885000px;}
.y19_c01108{bottom:161.535000px;}
.y18_c01108{bottom:185.985000px;}
.y17_c01108{bottom:211.485000px;}
.y16_c01108{bottom:234.435000px;}
.y15_c01108{bottom:261.135000px;}
.y14_c01108{bottom:285.885000px;}
.y13_c01108{bottom:308.685000px;}
.y12_c01108{bottom:334.335000px;}
.y11_c01108{bottom:358.035000px;}
.y10_c01108{bottom:382.035000px;}
.yf_c01108{bottom:406.635000px;}
.ye_c01108{bottom:429.885000px;}
.yd_c01108{bottom:454.635000px;}
.yc_c01108{bottom:480.585000px;}
.yb_c01108{bottom:504.135000px;}
.ya_c01108{bottom:527.085000px;}
.y9_c01108{bottom:551.835000px;}
.y8_c01108{bottom:577.485000px;}
.y7_c01108{bottom:602.985000px;}
.y6_c01108{bottom:625.335000px;}
.y5_c01108{bottom:650.235000px;}
.y4_c01108{bottom:677.235000px;}
.y3_c01108{bottom:699.285000px;}
.y2_c01108{bottom:723.885000px;}
.y1_c01108{bottom:749.235000px;}
.h4_c01108{height:13.200074px;}
.h5_c01108{height:43.804688px;}
.h2_c01108{height:82.400391px;}
.h3_c01108{height:91.160156px;}
.h1_c01108{height:794.250000px;}
.h0_c01108{height:794.325000px;}
.w2_c01108{width:104.875500px;}
.w0_c01108{width:547.275000px;}
.w1_c01108{width:547.500000px;}
.x0_c01108{left:0.000000px;}
.x7_c01108{left:15.750000px;}
.x3_c01108{left:19.800000px;}
.x2_c01108{left:21.150000px;}
.x8_c01108{left:24.600000px;}
.x5_c01108{left:26.250000px;}
.x6_c01108{left:27.600000px;}
.x4_c01108{left:31.950000px;}
.x1_c01108{left:135.900000px;}
.xa_c01108{left:225.451767px;}
.x9_c01108{left:249.300000px;}
@media print{
.v0_c01108{vertical-align:0.000000pt;}
.ls1_c01108{letter-spacing:0.000000pt;}
.ls0_c01108{letter-spacing:1.080000pt;}
.ls3_c01108{letter-spacing:2.666667pt;}
.ls2_c01108{letter-spacing:5.333333pt;}
.ws1_c01108{word-spacing:-26.712000pt;}
.ws0_c01108{word-spacing:-15.424000pt;}
.ws2_c01108{word-spacing:0.000000pt;}
._c_c01108{margin-left:-17.306667pt;}
._16_c01108{margin-left:-14.720000pt;}
._17_c01108{margin-left:-13.589333pt;}
._f_c01108{margin-left:-12.416000pt;}
._19_c01108{margin-left:-11.338667pt;}
._18_c01108{margin-left:-10.240000pt;}
._14_c01108{margin-left:-8.938667pt;}
._15_c01108{margin-left:-7.936000pt;}
._8_c01108{margin-left:-6.421333pt;}
._4_c01108{margin-left:-5.376000pt;}
._12_c01108{margin-left:-4.394667pt;}
._a_c01108{margin-left:-3.328000pt;}
._d_c01108{margin-left:-2.144000pt;}
._10_c01108{margin-left:-1.168000pt;}
._2_c01108{width:1.642667pt;}
._3_c01108{width:2.688000pt;}
._6_c01108{width:4.032000pt;}
._e_c01108{width:4.922667pt;}
._5_c01108{width:6.048000pt;}
._1_c01108{width:7.317333pt;}
._b_c01108{width:8.213333pt;}
._1d_c01108{width:9.344000pt;}
._11_c01108{width:10.400000pt;}
._0_c01108{width:11.722667pt;}
._1f_c01108{width:12.826667pt;}
._9_c01108{width:13.888000pt;}
._1e_c01108{width:16.448000pt;}
._1a_c01108{width:18.538667pt;}
._1b_c01108{width:23.360000pt;}
._21_c01108{width:26.954667pt;}
._20_c01108{width:31.898667pt;}
._13_c01108{width:33.237333pt;}
._1c_c01108{width:45.018667pt;}
._22_c01108{width:278.725333pt;}
._7_c01108{width:325.472000pt;}
.fs6_c01108{font-size:42.666667pt;}
.fs5_c01108{font-size:56.000000pt;}
.fs2_c01108{font-size:58.666667pt;}
.fs3_c01108{font-size:61.333333pt;}
.fs1_c01108{font-size:64.000000pt;}
.fs4_c01108{font-size:72.000000pt;}
.fs0_c01108{font-size:74.666667pt;}
.y0_c01108{bottom:0.000000pt;}
.y1f_c01108{bottom:2.760000pt;}
.y1e_c01108{bottom:6.425204pt;}
.y1d_c01108{bottom:53.053333pt;}
.y1c_c01108{bottom:75.586667pt;}
.y1b_c01108{bottom:98.653333pt;}
.y1a_c01108{bottom:120.786667pt;}
.y19_c01108{bottom:143.586667pt;}
.y18_c01108{bottom:165.320000pt;}
.y17_c01108{bottom:187.986667pt;}
.y16_c01108{bottom:208.386667pt;}
.y15_c01108{bottom:232.120000pt;}
.y14_c01108{bottom:254.120000pt;}
.y13_c01108{bottom:274.386667pt;}
.y12_c01108{bottom:297.186667pt;}
.y11_c01108{bottom:318.253333pt;}
.y10_c01108{bottom:339.586667pt;}
.yf_c01108{bottom:361.453333pt;}
.ye_c01108{bottom:382.120000pt;}
.yd_c01108{bottom:404.120000pt;}
.yc_c01108{bottom:427.186667pt;}
.yb_c01108{bottom:448.120000pt;}
.ya_c01108{bottom:468.520000pt;}
.y9_c01108{bottom:490.520000pt;}
.y8_c01108{bottom:513.320000pt;}
.y7_c01108{bottom:535.986667pt;}
.y6_c01108{bottom:555.853333pt;}
.y5_c01108{bottom:577.986667pt;}
.y4_c01108{bottom:601.986667pt;}
.y3_c01108{bottom:621.586667pt;}
.y2_c01108{bottom:643.453333pt;}
.y1_c01108{bottom:665.986667pt;}
.h4_c01108{height:11.733399pt;}
.h5_c01108{height:38.937500pt;}
.h2_c01108{height:73.244792pt;}
.h3_c01108{height:81.031250pt;}
.h1_c01108{height:706.000000pt;}
.h0_c01108{height:706.066667pt;}
.w2_c01108{width:93.222667pt;}
.w0_c01108{width:486.466667pt;}
.w1_c01108{width:486.666667pt;}
.x0_c01108{left:0.000000pt;}
.x7_c01108{left:14.000000pt;}
.x3_c01108{left:17.600000pt;}
.x2_c01108{left:18.800000pt;}
.x8_c01108{left:21.866667pt;}
.x5_c01108{left:23.333333pt;}
.x6_c01108{left:24.533333pt;}
.x4_c01108{left:28.400000pt;}
.x1_c01108{left:120.800000pt;}
.xa_c01108{left:200.401571pt;}
.x9_c01108{left:221.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_32349a6ad06bcfcea0def9d4.woff2')format("woff");}.ff1_c01109{font-family:ff1_c01109;line-height:1.568848;font-style:normal;font-weight:normal;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_64a3f86bc8b113d9a0f7b9b9.woff2')format("woff");}.ff2_c01109{font-family:ff2_c01109;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01109{font-family:ff3_c01109;line-height:1.219238;font-style: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;}
.ls0_c01109{letter-spacing:6.000000px;}
.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:-30.051000px;}
.ws1_c01109{word-spacing:-20.967000px;}
.ws2_c01109{word-spacing:0.000000px;}
._19_c01109{margin-left:-37.512000px;}
._17_c01109{margin-left:-22.464000px;}
._1a_c01109{margin-left:-14.256000px;}
._18_c01109{margin-left:-8.208000px;}
._8_c01109{margin-left:-6.120000px;}
._15_c01109{margin-left:-5.112000px;}
._14_c01109{margin-left:-4.032000px;}
._5_c01109{margin-left:-3.024000px;}
._6_c01109{margin-left:-1.080000px;}
._3_c01109{width:1.008000px;}
._0_c01109{width:2.160000px;}
._1_c01109{width:3.312000px;}
._2_c01109{width:4.608000px;}
._4_c01109{width:6.264000px;}
._a_c01109{width:7.560000px;}
._7_c01109{width:8.712000px;}
._9_c01109{width:10.080000px;}
._11_c01109{width:11.376000px;}
._c_c01109{width:12.600000px;}
._13_c01109{width:13.896000px;}
._b_c01109{width:14.976000px;}
._10_c01109{width:18.504000px;}
._12_c01109{width:20.232000px;}
._e_c01109{width:21.600000px;}
._d_c01109{width:23.760000px;}
._16_c01109{width:24.816000px;}
._f_c01109{width:28.368000px;}
.fc2_c01109{color:transparent;}
.fc1_c01109{color:rgb(128,128,128);}
.fc0_c01109{color:rgb(0,0,0);}
.fs2_c01109{font-size:24.000000px;}
.fs5_c01109{font-size:48.000000px;}
.fs3_c01109{font-size:63.000000px;}
.fs1_c01109{font-size:66.000000px;}
.fs0_c01109{font-size:72.000000px;}
.fs4_c01109{font-size:87.000000px;}
.y0_c01109{bottom:0.000000px;}
.y1e_c01109{bottom:3.105000px;}
.y1d_c01109{bottom:7.228355px;}
.y1c_c01109{bottom:62.685000px;}
.y1b_c01109{bottom:83.235000px;}
.y1a_c01109{bottom:108.585000px;}
.y19_c01109{bottom:133.935000px;}
.y18_c01109{bottom:159.285000px;}
.y17_c01109{bottom:183.285000px;}
.y16_c01109{bottom:209.235000px;}
.y15_c01109{bottom:232.785000px;}
.y14_c01109{bottom:258.435000px;}
.y13_c01109{bottom:283.485000px;}
.y12_c01109{bottom:307.335000px;}
.y11_c01109{bottom:333.135000px;}
.y10_c01109{bottom:356.085000px;}
.yf_c01109{bottom:380.235000px;}
.ye_c01109{bottom:403.335000px;}
.yd_c01109{bottom:428.235000px;}
.yc_c01109{bottom:450.885000px;}
.yb_c01109{bottom:475.485000px;}
.ya_c01109{bottom:500.535000px;}
.y9_c01109{bottom:525.135000px;}
.y8_c01109{bottom:549.885000px;}
.y7_c01109{bottom:574.785000px;}
.y6_c01109{bottom:599.685000px;}
.y5_c01109{bottom:624.585000px;}
.y4_c01109{bottom:649.935000px;}
.y3_c01109{bottom:674.685000px;}
.y2_c01109{bottom:699.585000px;}
.y1_c01109{bottom:724.485000px;}
.h4_c01109{height:13.200074px;}
.h5_c01109{height:43.804688px;}
.h2_c01109{height:91.160156px;}
.h3_c01109{height:110.151855px;}
.h0_c01109{height:791.625000px;}
.h1_c01109{height:792.000000px;}
.w2_c01109{width:104.875500px;}
.w0_c01109{width:500.850000px;}
.w1_c01109{width:501.000000px;}
.x0_c01109{left:0.000000px;}
.x1_c01109{left:84.300000px;}
.x2_c01109{left:85.350000px;}
.x3_c01109{left:87.300000px;}
.x4_c01109{left:88.500000px;}
.x5_c01109{left:89.550000px;}
.x6_c01109{left:90.750000px;}
.x7_c01109{left:92.250000px;}
.x8_c01109{left:93.450000px;}
.xa_c01109{left:202.239258px;}
.x9_c01109{left:421.650000px;}
@media print{
.v0_c01109{vertical-align:0.000000pt;}
.ls1_c01109{letter-spacing:0.000000pt;}
.ls0_c01109{letter-spacing:5.333333pt;}
.ws0_c01109{word-spacing:-26.712000pt;}
.ws1_c01109{word-spacing:-18.637333pt;}
.ws2_c01109{word-spacing:0.000000pt;}
._19_c01109{margin-left:-33.344000pt;}
._17_c01109{margin-left:-19.968000pt;}
._1a_c01109{margin-left:-12.672000pt;}
._18_c01109{margin-left:-7.296000pt;}
._8_c01109{margin-left:-5.440000pt;}
._15_c01109{margin-left:-4.544000pt;}
._14_c01109{margin-left:-3.584000pt;}
._5_c01109{margin-left:-2.688000pt;}
._6_c01109{margin-left:-0.960000pt;}
._3_c01109{width:0.896000pt;}
._0_c01109{width:1.920000pt;}
._1_c01109{width:2.944000pt;}
._2_c01109{width:4.096000pt;}
._4_c01109{width:5.568000pt;}
._a_c01109{width:6.720000pt;}
._7_c01109{width:7.744000pt;}
._9_c01109{width:8.960000pt;}
._11_c01109{width:10.112000pt;}
._c_c01109{width:11.200000pt;}
._13_c01109{width:12.352000pt;}
._b_c01109{width:13.312000pt;}
._10_c01109{width:16.448000pt;}
._12_c01109{width:17.984000pt;}
._e_c01109{width:19.200000pt;}
._d_c01109{width:21.120000pt;}
._16_c01109{width:22.058667pt;}
._f_c01109{width:25.216000pt;}
.fs2_c01109{font-size:21.333333pt;}
.fs5_c01109{font-size:42.666667pt;}
.fs3_c01109{font-size:56.000000pt;}
.fs1_c01109{font-size:58.666667pt;}
.fs0_c01109{font-size:64.000000pt;}
.fs4_c01109{font-size:77.333333pt;}
.y0_c01109{bottom:0.000000pt;}
.y1e_c01109{bottom:2.760000pt;}
.y1d_c01109{bottom:6.425204pt;}
.y1c_c01109{bottom:55.720000pt;}
.y1b_c01109{bottom:73.986667pt;}
.y1a_c01109{bottom:96.520000pt;}
.y19_c01109{bottom:119.053333pt;}
.y18_c01109{bottom:141.586667pt;}
.y17_c01109{bottom:162.920000pt;}
.y16_c01109{bottom:185.986667pt;}
.y15_c01109{bottom:206.920000pt;}
.y14_c01109{bottom:229.720000pt;}
.y13_c01109{bottom:251.986667pt;}
.y12_c01109{bottom:273.186667pt;}
.y11_c01109{bottom:296.120000pt;}
.y10_c01109{bottom:316.520000pt;}
.yf_c01109{bottom:337.986667pt;}
.ye_c01109{bottom:358.520000pt;}
.yd_c01109{bottom:380.653333pt;}
.yc_c01109{bottom:400.786667pt;}
.yb_c01109{bottom:422.653333pt;}
.ya_c01109{bottom:444.920000pt;}
.y9_c01109{bottom:466.786667pt;}
.y8_c01109{bottom:488.786667pt;}
.y7_c01109{bottom:510.920000pt;}
.y6_c01109{bottom:533.053333pt;}
.y5_c01109{bottom:555.186667pt;}
.y4_c01109{bottom:577.720000pt;}
.y3_c01109{bottom:599.720000pt;}
.y2_c01109{bottom:621.853333pt;}
.y1_c01109{bottom:643.986667pt;}
.h4_c01109{height:11.733399pt;}
.h5_c01109{height:38.937500pt;}
.h2_c01109{height:81.031250pt;}
.h3_c01109{height:97.912760pt;}
.h0_c01109{height:703.666667pt;}
.h1_c01109{height:704.000000pt;}
.w2_c01109{width:93.222667pt;}
.w0_c01109{width:445.200000pt;}
.w1_c01109{width:445.333333pt;}
.x0_c01109{left:0.000000pt;}
.x1_c01109{left:74.933333pt;}
.x2_c01109{left:75.866667pt;}
.x3_c01109{left:77.600000pt;}
.x4_c01109{left:78.666667pt;}
.x5_c01109{left:79.600000pt;}
.x6_c01109{left:80.666667pt;}
.x7_c01109{left:82.000000pt;}
.x8_c01109{left:83.066667pt;}
.xa_c01109{left:179.768229pt;}
.x9_c01109{left:374.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c83a4ce27768571736a6722a.woff2')format("woff");}.ff1_c01110{font-family:ff1_c01110;line-height:1.480469;font-style:normal;font-weight:normal;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_c8d9856fe2c8a70e3c106d98.woff2')format("woff");}.ff2_c01110{font-family:ff2_c01110;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01110{font-family:ff3_c01110;line-height:1.219238;font-style: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;}
.v1_c01110{vertical-align:65.400000px;}
.ls0_c01110{letter-spacing:0.000000px;}
.ls1_c01110{letter-spacing:3.000000px;}
.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:-36.873000px;}
.ws1_c01110{word-spacing:-16.629000px;}
.ws2_c01110{word-spacing:0.000000px;}
._1c_c01110{margin-left:-25.461000px;}
._1b_c01110{margin-left:-20.838000px;}
._18_c01110{margin-left:-8.070000px;}
._12_c01110{margin-left:-5.436000px;}
._d_c01110{margin-left:-2.601000px;}
._10_c01110{margin-left:-1.587000px;}
._c_c01110{width:1.653000px;}
._7_c01110{width:2.967000px;}
._a_c01110{width:4.116000px;}
._2_c01110{width:5.256000px;}
._11_c01110{width:6.297000px;}
._8_c01110{width:7.365000px;}
._1_c01110{width:9.216000px;}
._b_c01110{width:10.254000px;}
._3_c01110{width:11.304000px;}
._9_c01110{width:12.627000px;}
._16_c01110{width:13.668000px;}
._0_c01110{width:14.760000px;}
._14_c01110{width:18.066000px;}
._17_c01110{width:19.113000px;}
._e_c01110{width:20.733000px;}
._6_c01110{width:22.176000px;}
._f_c01110{width:23.475000px;}
._13_c01110{width:25.353000px;}
._5_c01110{width:27.000000px;}
._15_c01110{width:28.401000px;}
._19_c01110{width:35.514000px;}
._1a_c01110{width:42.525000px;}
._1d_c01110{width:259.095000px;}
._4_c01110{width:297.216000px;}
.fc2_c01110{color:transparent;}
.fc1_c01110{color:rgb(128,128,128);}
.fc0_c01110{color:rgb(0,0,0);}
.fs5_c01110{font-size:48.000000px;}
.fs4_c01110{font-size:60.000000px;}
.fs3_c01110{font-size:66.000000px;}
.fs1_c01110{font-size:69.000000px;}
.fs0_c01110{font-size:72.000000px;}
.fs2_c01110{font-size:153.000000px;}
.y0_c01110{bottom:0.000000px;}
.y1f_c01110{bottom:3.105000px;}
.y1e_c01110{bottom:7.228355px;}
.y1d_c01110{bottom:62.385000px;}
.y1c_c01110{bottom:88.035000px;}
.y1b_c01110{bottom:114.435000px;}
.y1a_c01110{bottom:138.735000px;}
.y19_c01110{bottom:163.935000px;}
.y18_c01110{bottom:186.585000px;}
.y17_c01110{bottom:213.285000px;}
.y16_c01110{bottom:238.935000px;}
.y15_c01110{bottom:263.535000px;}
.y14_c01110{bottom:288.585000px;}
.y13_c01110{bottom:312.885000px;}
.y12_c01110{bottom:337.785000px;}
.y11_c01110{bottom:361.035000px;}
.y10_c01110{bottom:385.335000px;}
.yf_c01110{bottom:393.585000px;}
.ye_c01110{bottom:433.935000px;}
.yd_c01110{bottom:458.985000px;}
.yc_c01110{bottom:482.235000px;}
.yb_c01110{bottom:508.485000px;}
.ya_c01110{bottom:531.585000px;}
.y9_c01110{bottom:556.185000px;}
.y8_c01110{bottom:580.485000px;}
.y7_c01110{bottom:604.785000px;}
.y6_c01110{bottom:629.685000px;}
.y5_c01110{bottom:655.035000px;}
.y4_c01110{bottom:679.335000px;}
.y3_c01110{bottom:704.385000px;}
.y2_c01110{bottom:729.285000px;}
.y1_c01110{bottom:754.935000px;}
.h5_c01110{height:13.200074px;}
.h6_c01110{height:43.804688px;}
.h2_c01110{height:84.269531px;}
.h3_c01110{height:87.361816px;}
.h4_c01110{height:193.715332px;}
.h1_c01110{height:794.250000px;}
.h0_c01110{height:794.325000px;}
.w2_c01110{width:104.875500px;}
.w0_c01110{width:539.175000px;}
.w1_c01110{width:539.250000px;}
.x0_c01110{left:0.000000px;}
.x2_c01110{left:39.600000px;}
.x3_c01110{left:41.850000px;}
.x4_c01110{left:43.650000px;}
.x5_c01110{left:45.000000px;}
.x6_c01110{left:46.950000px;}
.x7_c01110{left:59.700000px;}
.x1_c01110{left:154.500000px;}
.x9_c01110{left:221.401749px;}
.x8_c01110{left:281.550000px;}
@media print{
.v0_c01110{vertical-align:0.000000pt;}
.v1_c01110{vertical-align:58.133333pt;}
.ls0_c01110{letter-spacing:0.000000pt;}
.ls1_c01110{letter-spacing:2.666667pt;}
.ws0_c01110{word-spacing:-32.776000pt;}
.ws1_c01110{word-spacing:-14.781333pt;}
.ws2_c01110{word-spacing:0.000000pt;}
._1c_c01110{margin-left:-22.632000pt;}
._1b_c01110{margin-left:-18.522667pt;}
._18_c01110{margin-left:-7.173333pt;}
._12_c01110{margin-left:-4.832000pt;}
._d_c01110{margin-left:-2.312000pt;}
._10_c01110{margin-left:-1.410667pt;}
._c_c01110{width:1.469333pt;}
._7_c01110{width:2.637333pt;}
._a_c01110{width:3.658667pt;}
._2_c01110{width:4.672000pt;}
._11_c01110{width:5.597333pt;}
._8_c01110{width:6.546667pt;}
._1_c01110{width:8.192000pt;}
._b_c01110{width:9.114667pt;}
._3_c01110{width:10.048000pt;}
._9_c01110{width:11.224000pt;}
._16_c01110{width:12.149333pt;}
._0_c01110{width:13.120000pt;}
._14_c01110{width:16.058667pt;}
._17_c01110{width:16.989333pt;}
._e_c01110{width:18.429333pt;}
._6_c01110{width:19.712000pt;}
._f_c01110{width:20.866667pt;}
._13_c01110{width:22.536000pt;}
._5_c01110{width:24.000000pt;}
._15_c01110{width:25.245333pt;}
._19_c01110{width:31.568000pt;}
._1a_c01110{width:37.800000pt;}
._1d_c01110{width:230.306667pt;}
._4_c01110{width:264.192000pt;}
.fs5_c01110{font-size:42.666667pt;}
.fs4_c01110{font-size:53.333333pt;}
.fs3_c01110{font-size:58.666667pt;}
.fs1_c01110{font-size:61.333333pt;}
.fs0_c01110{font-size:64.000000pt;}
.fs2_c01110{font-size:136.000000pt;}
.y0_c01110{bottom:0.000000pt;}
.y1f_c01110{bottom:2.760000pt;}
.y1e_c01110{bottom:6.425204pt;}
.y1d_c01110{bottom:55.453333pt;}
.y1c_c01110{bottom:78.253333pt;}
.y1b_c01110{bottom:101.720000pt;}
.y1a_c01110{bottom:123.320000pt;}
.y19_c01110{bottom:145.720000pt;}
.y18_c01110{bottom:165.853333pt;}
.y17_c01110{bottom:189.586667pt;}
.y16_c01110{bottom:212.386667pt;}
.y15_c01110{bottom:234.253333pt;}
.y14_c01110{bottom:256.520000pt;}
.y13_c01110{bottom:278.120000pt;}
.y12_c01110{bottom:300.253333pt;}
.y11_c01110{bottom:320.920000pt;}
.y10_c01110{bottom:342.520000pt;}
.yf_c01110{bottom:349.853333pt;}
.ye_c01110{bottom:385.720000pt;}
.yd_c01110{bottom:407.986667pt;}
.yc_c01110{bottom:428.653333pt;}
.yb_c01110{bottom:451.986667pt;}
.ya_c01110{bottom:472.520000pt;}
.y9_c01110{bottom:494.386667pt;}
.y8_c01110{bottom:515.986667pt;}
.y7_c01110{bottom:537.586667pt;}
.y6_c01110{bottom:559.720000pt;}
.y5_c01110{bottom:582.253333pt;}
.y4_c01110{bottom:603.853333pt;}
.y3_c01110{bottom:626.120000pt;}
.y2_c01110{bottom:648.253333pt;}
.y1_c01110{bottom:671.053333pt;}
.h5_c01110{height:11.733399pt;}
.h6_c01110{height:38.937500pt;}
.h2_c01110{height:74.906250pt;}
.h3_c01110{height:77.654948pt;}
.h4_c01110{height:172.191406pt;}
.h1_c01110{height:706.000000pt;}
.h0_c01110{height:706.066667pt;}
.w2_c01110{width:93.222667pt;}
.w0_c01110{width:479.266667pt;}
.w1_c01110{width:479.333333pt;}
.x0_c01110{left:0.000000pt;}
.x2_c01110{left:35.200000pt;}
.x3_c01110{left:37.200000pt;}
.x4_c01110{left:38.800000pt;}
.x5_c01110{left:40.000000pt;}
.x6_c01110{left:41.733333pt;}
.x7_c01110{left:53.066667pt;}
.x1_c01110{left:137.333333pt;}
.x9_c01110{left:196.801554pt;}
.x8_c01110{left:250.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_68cd7b628ffa0d32338e9ac7.woff2')format("woff");}.ff1_c01111{font-family:ff1_c01111;line-height:1.480469;font-style:normal;font-weight:normal;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_e56d206fbadd320672b47a12.woff2')format("woff");}.ff2_c01111{font-family:ff2_c01111;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01111{font-family:ff3_c01111;line-height:1.219238;font-style: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;}
.v1_c01111{vertical-align:2.400000px;}
.ls1_c01111{letter-spacing:-3.000000px;}
.ls2_c01111{letter-spacing:0.000000px;}
.ls3_c01111{letter-spacing:3.000000px;}
.ls4_c01111{letter-spacing:6.000000px;}
.ls0_c01111{letter-spacing:53.400000px;}
.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:-17.352000px;}
.ws1_c01111{word-spacing:0.000000px;}
._15_c01111{margin-left:-22.248000px;}
._12_c01111{margin-left:-10.635000px;}
._11_c01111{margin-left:-9.135000px;}
._3_c01111{margin-left:-7.569000px;}
._10_c01111{margin-left:-5.796000px;}
._1_c01111{margin-left:-4.611000px;}
._2_c01111{margin-left:-3.132000px;}
._0_c01111{margin-left:-2.088000px;}
._6_c01111{width:2.016000px;}
._7_c01111{width:3.024000px;}
._5_c01111{width:4.140000px;}
._4_c01111{width:5.256000px;}
._c_c01111{width:6.408000px;}
._b_c01111{width:8.064000px;}
._8_c01111{width:9.864000px;}
._9_c01111{width:11.376000px;}
._e_c01111{width:13.248000px;}
._a_c01111{width:14.760000px;}
._19_c01111{width:15.840000px;}
._1a_c01111{width:17.508000px;}
._16_c01111{width:18.960000px;}
._17_c01111{width:21.312000px;}
._14_c01111{width:22.320000px;}
._18_c01111{width:23.352000px;}
._13_c01111{width:25.392000px;}
._d_c01111{width:46.224000px;}
._f_c01111{width:163.728000px;}
.fc2_c01111{color:transparent;}
.fc1_c01111{color:rgb(128,128,128);}
.fc0_c01111{color:rgb(0,0,0);}
.fs3_c01111{font-size:24.000000px;}
.fs4_c01111{font-size:48.000000px;}
.fs2_c01111{font-size:60.000000px;}
.fs1_c01111{font-size:72.000000px;}
.fs0_c01111{font-size:87.000000px;}
.y0_c01111{bottom:0.000000px;}
.y1c_c01111{bottom:3.105000px;}
.y1b_c01111{bottom:7.228355px;}
.y1a_c01111{bottom:76.635000px;}
.y19_c01111{bottom:103.485000px;}
.y18_c01111{bottom:126.135000px;}
.y17_c01111{bottom:151.785000px;}
.y16_c01111{bottom:176.385000px;}
.y15_c01111{bottom:200.685000px;}
.y14_c01111{bottom:227.685000px;}
.y13_c01111{bottom:253.485000px;}
.y12_c01111{bottom:276.285000px;}
.y11_c01111{bottom:301.335000px;}
.y10_c01111{bottom:326.385000px;}
.yf_c01111{bottom:349.635000px;}
.ye_c01111{bottom:376.185000px;}
.yd_c01111{bottom:398.535000px;}
.yc_c01111{bottom:420.735000px;}
.yb_c01111{bottom:444.435000px;}
.ya_c01111{bottom:471.735000px;}
.y9_c01111{bottom:496.035000px;}
.y8_c01111{bottom:519.735000px;}
.y7_c01111{bottom:563.535000px;}
.y6_c01111{bottom:615.885000px;}
.y5_c01111{bottom:640.935000px;}
.y4_c01111{bottom:666.135000px;}
.y3_c01111{bottom:690.435000px;}
.y2_c01111{bottom:714.735000px;}
.y1_c01111{bottom:740.685000px;}
.h6_c01111{height:13.200074px;}
.h7_c01111{height:43.804688px;}
.h3_c01111{height:91.160156px;}
.h5_c01111{height:93.560156px;}
.h4_c01111{height:101.825684px;}
.h2_c01111{height:110.151855px;}
.h1_c01111{height:786.000000px;}
.h0_c01111{height:786.225000px;}
.w2_c01111{width:104.875500px;}
.w1_c01111{width:510.000000px;}
.w0_c01111{width:510.300000px;}
.x0_c01111{left:0.000000px;}
.x4_c01111{left:71.550000px;}
.x6_c01111{left:74.250000px;}
.x2_c01111{left:77.850000px;}
.x3_c01111{left:78.900000px;}
.x8_c01111{left:81.000000px;}
.x9_c01111{left:82.350000px;}
.xb_c01111{left:83.700000px;}
.xa_c01111{left:85.050000px;}
.x7_c01111{left:121.050000px;}
.x1_c01111{left:202.200000px;}
.xc_c01111{left:206.964249px;}
.x5_c01111{left:228.150000px;}
@media print{
.v0_c01111{vertical-align:0.000000pt;}
.v1_c01111{vertical-align:2.133333pt;}
.ls1_c01111{letter-spacing:-2.666667pt;}
.ls2_c01111{letter-spacing:0.000000pt;}
.ls3_c01111{letter-spacing:2.666667pt;}
.ls4_c01111{letter-spacing:5.333333pt;}
.ls0_c01111{letter-spacing:47.466667pt;}
.ws0_c01111{word-spacing:-15.424000pt;}
.ws1_c01111{word-spacing:0.000000pt;}
._15_c01111{margin-left:-19.776000pt;}
._12_c01111{margin-left:-9.453333pt;}
._11_c01111{margin-left:-8.120000pt;}
._3_c01111{margin-left:-6.728000pt;}
._10_c01111{margin-left:-5.152000pt;}
._1_c01111{margin-left:-4.098667pt;}
._2_c01111{margin-left:-2.784000pt;}
._0_c01111{margin-left:-1.856000pt;}
._6_c01111{width:1.792000pt;}
._7_c01111{width:2.688000pt;}
._5_c01111{width:3.680000pt;}
._4_c01111{width:4.672000pt;}
._c_c01111{width:5.696000pt;}
._b_c01111{width:7.168000pt;}
._8_c01111{width:8.768000pt;}
._9_c01111{width:10.112000pt;}
._e_c01111{width:11.776000pt;}
._a_c01111{width:13.120000pt;}
._19_c01111{width:14.080000pt;}
._1a_c01111{width:15.562667pt;}
._16_c01111{width:16.853333pt;}
._17_c01111{width:18.944000pt;}
._14_c01111{width:19.840000pt;}
._18_c01111{width:20.757333pt;}
._13_c01111{width:22.570667pt;}
._d_c01111{width:41.088000pt;}
._f_c01111{width:145.536000pt;}
.fs3_c01111{font-size:21.333333pt;}
.fs4_c01111{font-size:42.666667pt;}
.fs2_c01111{font-size:53.333333pt;}
.fs1_c01111{font-size:64.000000pt;}
.fs0_c01111{font-size:77.333333pt;}
.y0_c01111{bottom:0.000000pt;}
.y1c_c01111{bottom:2.760000pt;}
.y1b_c01111{bottom:6.425204pt;}
.y1a_c01111{bottom:68.120000pt;}
.y19_c01111{bottom:91.986667pt;}
.y18_c01111{bottom:112.120000pt;}
.y17_c01111{bottom:134.920000pt;}
.y16_c01111{bottom:156.786667pt;}
.y15_c01111{bottom:178.386667pt;}
.y14_c01111{bottom:202.386667pt;}
.y13_c01111{bottom:225.320000pt;}
.y12_c01111{bottom:245.586667pt;}
.y11_c01111{bottom:267.853333pt;}
.y10_c01111{bottom:290.120000pt;}
.yf_c01111{bottom:310.786667pt;}
.ye_c01111{bottom:334.386667pt;}
.yd_c01111{bottom:354.253333pt;}
.yc_c01111{bottom:373.986667pt;}
.yb_c01111{bottom:395.053333pt;}
.ya_c01111{bottom:419.320000pt;}
.y9_c01111{bottom:440.920000pt;}
.y8_c01111{bottom:461.986667pt;}
.y7_c01111{bottom:500.920000pt;}
.y6_c01111{bottom:547.453333pt;}
.y5_c01111{bottom:569.720000pt;}
.y4_c01111{bottom:592.120000pt;}
.y3_c01111{bottom:613.720000pt;}
.y2_c01111{bottom:635.320000pt;}
.y1_c01111{bottom:658.386667pt;}
.h6_c01111{height:11.733399pt;}
.h7_c01111{height:38.937500pt;}
.h3_c01111{height:81.031250pt;}
.h5_c01111{height:83.164583pt;}
.h4_c01111{height:90.511719pt;}
.h2_c01111{height:97.912760pt;}
.h1_c01111{height:698.666667pt;}
.h0_c01111{height:698.866667pt;}
.w2_c01111{width:93.222667pt;}
.w1_c01111{width:453.333333pt;}
.w0_c01111{width:453.600000pt;}
.x0_c01111{left:0.000000pt;}
.x4_c01111{left:63.600000pt;}
.x6_c01111{left:66.000000pt;}
.x2_c01111{left:69.200000pt;}
.x3_c01111{left:70.133333pt;}
.x8_c01111{left:72.000000pt;}
.x9_c01111{left:73.200000pt;}
.xb_c01111{left:74.400000pt;}
.xa_c01111{left:75.600000pt;}
.x7_c01111{left:107.600000pt;}
.x1_c01111{left:179.733333pt;}
.xc_c01111{left:183.968221pt;}
.x5_c01111{left:202.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f4a83f52017764a51d0b5aad.woff2')format("woff");}.ff1_c01112{font-family:ff1_c01112;line-height:1.284180;font-style:normal;font-weight:normal;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_3a35064d91123058d80c2353.woff2')format("woff");}.ff2_c01112{font-family:ff2_c01112;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01112;src:url('chunks/assets/font_e5c36c107272bceffc383705.woff2')format("woff");}.ff3_c01112{font-family:ff3_c01112;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01112;src:url('chunks/assets/font_700f4c07bd81ddb21510cf74.woff2')format("woff");}.ff4_c01112{font-family:ff4_c01112;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01112;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01112{font-family:ff5_c01112;line-height:1.219238;font-style: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;}
.ls2_c01112{letter-spacing:0.000000px;}
.ls0_c01112{letter-spacing:1.512000px;}
.ls3_c01112{letter-spacing:6.000000px;}
.ls1_c01112{letter-spacing:12.750000px;}
.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:-31.809000px;}
.ws2_c01112{word-spacing:-22.512000px;}
.ws1_c01112{word-spacing:-21.000000px;}
.ws3_c01112{word-spacing:-20.250000px;}
.ws4_c01112{word-spacing:0.000000px;}
._1c_c01112{margin-left:-37.554000px;}
._13_c01112{margin-left:-33.777000px;}
._17_c01112{margin-left:-31.269000px;}
._f_c01112{margin-left:-14.817000px;}
._11_c01112{margin-left:-13.521000px;}
._15_c01112{margin-left:-11.931000px;}
._2_c01112{margin-left:-10.164000px;}
._12_c01112{margin-left:-8.823000px;}
._6_c01112{margin-left:-7.224000px;}
._14_c01112{margin-left:-5.517000px;}
._a_c01112{margin-left:-4.308000px;}
._b_c01112{margin-left:-2.625000px;}
._c_c01112{margin-left:-1.056000px;}
._3_c01112{width:1.848000px;}
._4_c01112{width:3.612000px;}
._9_c01112{width:5.022000px;}
._8_c01112{width:6.027000px;}
._1_c01112{width:7.980000px;}
._10_c01112{width:9.261000px;}
._e_c01112{width:11.178000px;}
._0_c01112{width:12.852000px;}
._1b_c01112{width:14.472000px;}
._19_c01112{width:15.912000px;}
._1a_c01112{width:18.414000px;}
._18_c01112{width:20.223000px;}
._d_c01112{width:23.502000px;}
._7_c01112{width:27.888000px;}
._16_c01112{width:49.740000px;}
._1d_c01112{width:262.584000px;}
._5_c01112{width:334.404000px;}
.fc2_c01112{color:transparent;}
.fc1_c01112{color:rgb(128,128,128);}
.fc0_c01112{color:rgb(0,0,0);}
.fs5_c01112{font-size:48.000000px;}
.fs3_c01112{font-size:66.000000px;}
.fs2_c01112{font-size:69.000000px;}
.fs4_c01112{font-size:72.000000px;}
.fs1_c01112{font-size:81.000000px;}
.fs0_c01112{font-size:84.000000px;}
.y0_c01112{bottom:0.000000px;}
.y1f_c01112{bottom:3.105000px;}
.y1e_c01112{bottom:7.228371px;}
.y1d_c01112{bottom:46.965000px;}
.y1c_c01112{bottom:75.015000px;}
.y1b_c01112{bottom:102.615000px;}
.y1a_c01112{bottom:126.315000px;}
.y19_c01112{bottom:148.215000px;}
.y18_c01112{bottom:174.165000px;}
.y17_c01112{bottom:198.165000px;}
.y16_c01112{bottom:224.415000px;}
.y15_c01112{bottom:248.715000px;}
.y14_c01112{bottom:273.465000px;}
.y13_c01112{bottom:299.115000px;}
.y12_c01112{bottom:324.465000px;}
.y11_c01112{bottom:348.315000px;}
.y10_c01112{bottom:373.065000px;}
.yf_c01112{bottom:397.215000px;}
.ye_c01112{bottom:421.665000px;}
.yd_c01112{bottom:445.965000px;}
.yc_c01112{bottom:470.565000px;}
.yb_c01112{bottom:494.865000px;}
.ya_c01112{bottom:518.715000px;}
.y9_c01112{bottom:543.015000px;}
.y8_c01112{bottom:567.465000px;}
.y7_c01112{bottom:591.615000px;}
.y6_c01112{bottom:617.265000px;}
.y5_c01112{bottom:641.715000px;}
.y4_c01112{bottom:667.215000px;}
.y3_c01112{bottom:691.665000px;}
.y2_c01112{bottom:715.815000px;}
.y1_c01112{bottom:740.265000px;}
.h7_c01112{height:13.200074px;}
.h8_c01112{height:43.804688px;}
.h4_c01112{height:79.497070px;}
.h2_c01112{height:82.400391px;}
.h5_c01112{height:82.441406px;}
.h3_c01112{height:87.361816px;}
.h6_c01112{height:91.160156px;}
.h1_c01112{height:783.750000px;}
.h0_c01112{height:783.825000px;}
.w2_c01112{width:104.875500px;}
.w0_c01112{width:530.025000px;}
.w1_c01112{width:530.250000px;}
.x0_c01112{left:0.000000px;}
.x8_c01112{left:32.850000px;}
.x7_c01112{left:34.050000px;}
.x6_c01112{left:35.550000px;}
.x2_c01112{left:37.050000px;}
.x4_c01112{left:38.100000px;}
.x3_c01112{left:39.450000px;}
.x5_c01112{left:40.500000px;}
.x1_c01112{left:158.250000px;}
.xa_c01112{left:216.826767px;}
.x9_c01112{left:355.350000px;}
@media print{
.v0_c01112{vertical-align:0.000000pt;}
.ls2_c01112{letter-spacing:0.000000pt;}
.ls0_c01112{letter-spacing:1.344000pt;}
.ls3_c01112{letter-spacing:5.333333pt;}
.ls1_c01112{letter-spacing:11.333333pt;}
.ws0_c01112{word-spacing:-28.274667pt;}
.ws2_c01112{word-spacing:-20.010667pt;}
.ws1_c01112{word-spacing:-18.666667pt;}
.ws3_c01112{word-spacing:-18.000000pt;}
.ws4_c01112{word-spacing:0.000000pt;}
._1c_c01112{margin-left:-33.381333pt;}
._13_c01112{margin-left:-30.024000pt;}
._17_c01112{margin-left:-27.794667pt;}
._f_c01112{margin-left:-13.170667pt;}
._11_c01112{margin-left:-12.018667pt;}
._15_c01112{margin-left:-10.605333pt;}
._2_c01112{margin-left:-9.034667pt;}
._12_c01112{margin-left:-7.842667pt;}
._6_c01112{margin-left:-6.421333pt;}
._14_c01112{margin-left:-4.904000pt;}
._a_c01112{margin-left:-3.829333pt;}
._b_c01112{margin-left:-2.333333pt;}
._c_c01112{margin-left:-0.938667pt;}
._3_c01112{width:1.642667pt;}
._4_c01112{width:3.210667pt;}
._9_c01112{width:4.464000pt;}
._8_c01112{width:5.357333pt;}
._1_c01112{width:7.093333pt;}
._10_c01112{width:8.232000pt;}
._e_c01112{width:9.936000pt;}
._0_c01112{width:11.424000pt;}
._1b_c01112{width:12.864000pt;}
._19_c01112{width:14.144000pt;}
._1a_c01112{width:16.368000pt;}
._18_c01112{width:17.976000pt;}
._d_c01112{width:20.890667pt;}
._7_c01112{width:24.789333pt;}
._16_c01112{width:44.213333pt;}
._1d_c01112{width:233.408000pt;}
._5_c01112{width:297.248000pt;}
.fs5_c01112{font-size:42.666667pt;}
.fs3_c01112{font-size:58.666667pt;}
.fs2_c01112{font-size:61.333333pt;}
.fs4_c01112{font-size:64.000000pt;}
.fs1_c01112{font-size:72.000000pt;}
.fs0_c01112{font-size:74.666667pt;}
.y0_c01112{bottom:0.000000pt;}
.y1f_c01112{bottom:2.760000pt;}
.y1e_c01112{bottom:6.425219pt;}
.y1d_c01112{bottom:41.746667pt;}
.y1c_c01112{bottom:66.680000pt;}
.y1b_c01112{bottom:91.213333pt;}
.y1a_c01112{bottom:112.280000pt;}
.y19_c01112{bottom:131.746667pt;}
.y18_c01112{bottom:154.813333pt;}
.y17_c01112{bottom:176.146667pt;}
.y16_c01112{bottom:199.480000pt;}
.y15_c01112{bottom:221.080000pt;}
.y14_c01112{bottom:243.080000pt;}
.y13_c01112{bottom:265.880000pt;}
.y12_c01112{bottom:288.413333pt;}
.y11_c01112{bottom:309.613333pt;}
.y10_c01112{bottom:331.613333pt;}
.yf_c01112{bottom:353.080000pt;}
.ye_c01112{bottom:374.813333pt;}
.yd_c01112{bottom:396.413333pt;}
.yc_c01112{bottom:418.280000pt;}
.yb_c01112{bottom:439.880000pt;}
.ya_c01112{bottom:461.080000pt;}
.y9_c01112{bottom:482.680000pt;}
.y8_c01112{bottom:504.413333pt;}
.y7_c01112{bottom:525.880000pt;}
.y6_c01112{bottom:548.680000pt;}
.y5_c01112{bottom:570.413333pt;}
.y4_c01112{bottom:593.080000pt;}
.y3_c01112{bottom:614.813333pt;}
.y2_c01112{bottom:636.280000pt;}
.y1_c01112{bottom:658.013333pt;}
.h7_c01112{height:11.733399pt;}
.h8_c01112{height:38.937500pt;}
.h4_c01112{height:70.664062pt;}
.h2_c01112{height:73.244792pt;}
.h5_c01112{height:73.281250pt;}
.h3_c01112{height:77.654948pt;}
.h6_c01112{height:81.031250pt;}
.h1_c01112{height:696.666667pt;}
.h0_c01112{height:696.733333pt;}
.w2_c01112{width:93.222667pt;}
.w0_c01112{width:471.133333pt;}
.w1_c01112{width:471.333333pt;}
.x0_c01112{left:0.000000pt;}
.x8_c01112{left:29.200000pt;}
.x7_c01112{left:30.266667pt;}
.x6_c01112{left:31.600000pt;}
.x2_c01112{left:32.933333pt;}
.x4_c01112{left:33.866667pt;}
.x3_c01112{left:35.066667pt;}
.x5_c01112{left:36.000000pt;}
.x1_c01112{left:140.666667pt;}
.xa_c01112{left:192.734904pt;}
.x9_c01112{left:315.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_10cf073b9457ec448c1b31c2.woff2')format("woff");}.ff1_c01113{font-family:ff1_c01113;line-height:1.480469;font-style:normal;font-weight:normal;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_fe6af05f9fb59e08c595cc8b.woff2')format("woff");}.ff2_c01113{font-family:ff2_c01113;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01113{font-family:ff3_c01113;line-height:1.219238;font-style: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);}
.v0_c01113{vertical-align:0.000000px;}
.v1_c01113{vertical-align:212.400000px;}
.ls1_c01113{letter-spacing:-3.000000px;}
.ls2_c01113{letter-spacing:0.000000px;}
.ls3_c01113{letter-spacing:3.000000px;}
.ls4_c01113{letter-spacing:6.000000px;}
.ls0_c01113{letter-spacing:418.335000px;}
.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;}
}
.ws0_c01113{word-spacing:-17.967000px;}
.ws1_c01113{word-spacing:-17.352000px;}
.ws2_c01113{word-spacing:0.000000px;}
._c_c01113{margin-left:-5.184000px;}
._9_c01113{margin-left:-3.708000px;}
._3_c01113{margin-left:-2.001000px;}
._6_c01113{width:1.080000px;}
._2_c01113{width:2.088000px;}
._1_c01113{width:3.132000px;}
._8_c01113{width:4.140000px;}
._0_c01113{width:5.220000px;}
._4_c01113{width:6.840000px;}
._b_c01113{width:8.019000px;}
._7_c01113{width:9.252000px;}
._5_c01113{width:10.620000px;}
._e_c01113{width:11.793000px;}
._a_c01113{width:12.822000px;}
._d_c01113{width:14.928000px;}
.fc2_c01113{color:transparent;}
.fc1_c01113{color:rgb(128,128,128);}
.fc0_c01113{color:rgb(0,0,0);}
.fs5_c01113{font-size:48.000000px;}
.fs3_c01113{font-size:54.000000px;}
.fs2_c01113{font-size:69.000000px;}
.fs1_c01113{font-size:72.000000px;}
.fs0_c01113{font-size:87.000000px;}
.fs4_c01113{font-size:231.000000px;}
.y0_c01113{bottom:0.000000px;}
.y1d_c01113{bottom:3.105000px;}
.y1c_c01113{bottom:7.228357px;}
.y19_c01113{bottom:65.430000px;}
.y1b_c01113{bottom:68.130000px;}
.y1a_c01113{bottom:93.930000px;}
.y18_c01113{bottom:165.780000px;}
.y17_c01113{bottom:194.130000px;}
.y16_c01113{bottom:216.780000px;}
.y15_c01113{bottom:242.430000px;}
.y14_c01113{bottom:267.330000px;}
.y13_c01113{bottom:292.380000px;}
.y12_c01113{bottom:316.980000px;}
.y11_c01113{bottom:340.980000px;}
.y10_c01113{bottom:364.530000px;}
.yf_c01113{bottom:390.180000px;}
.ye_c01113{bottom:413.730000px;}
.yd_c01113{bottom:436.830000px;}
.yc_c01113{bottom:461.430000px;}
.yb_c01113{bottom:486.030000px;}
.ya_c01113{bottom:510.630000px;}
.y9_c01113{bottom:535.380000px;}
.y8_c01113{bottom:559.980000px;}
.y7_c01113{bottom:584.880000px;}
.y6_c01113{bottom:610.230000px;}
.y5_c01113{bottom:634.230000px;}
.y4_c01113{bottom:659.430000px;}
.y3_c01113{bottom:682.830000px;}
.y2_c01113{bottom:708.780000px;}
.y1_c01113{bottom:734.430000px;}
.h5_c01113{height:13.200074px;}
.h6_c01113{height:43.804688px;}
.h3_c01113{height:91.160156px;}
.h2_c01113{height:101.825684px;}
.h4_c01113{height:314.225684px;}
.h0_c01113{height:773.850000px;}
.h1_c01113{height:774.000000px;}
.w1_c01113{width:104.875500px;}
.w0_c01113{width:495.750000px;}
.x0_c01113{left:0.000000px;}
.x5_c01113{left:72.150000px;}
.x4_c01113{left:73.950000px;}
.x3_c01113{left:75.000000px;}
.x2_c01113{left:76.050000px;}
.x6_c01113{left:121.800000px;}
.x1_c01113{left:193.950000px;}
.x7_c01113{left:199.689240px;}
@media print{
.v0_c01113{vertical-align:0.000000pt;}
.v1_c01113{vertical-align:188.800000pt;}
.ls1_c01113{letter-spacing:-2.666667pt;}
.ls2_c01113{letter-spacing:0.000000pt;}
.ls3_c01113{letter-spacing:2.666667pt;}
.ls4_c01113{letter-spacing:5.333333pt;}
.ls0_c01113{letter-spacing:371.853333pt;}
.ws0_c01113{word-spacing:-15.970667pt;}
.ws1_c01113{word-spacing:-15.424000pt;}
.ws2_c01113{word-spacing:0.000000pt;}
._c_c01113{margin-left:-4.608000pt;}
._9_c01113{margin-left:-3.296000pt;}
._3_c01113{margin-left:-1.778667pt;}
._6_c01113{width:0.960000pt;}
._2_c01113{width:1.856000pt;}
._1_c01113{width:2.784000pt;}
._8_c01113{width:3.680000pt;}
._0_c01113{width:4.640000pt;}
._4_c01113{width:6.080000pt;}
._b_c01113{width:7.128000pt;}
._7_c01113{width:8.224000pt;}
._5_c01113{width:9.440000pt;}
._e_c01113{width:10.482667pt;}
._a_c01113{width:11.397333pt;}
._d_c01113{width:13.269333pt;}
.fs5_c01113{font-size:42.666667pt;}
.fs3_c01113{font-size:48.000000pt;}
.fs2_c01113{font-size:61.333333pt;}
.fs1_c01113{font-size:64.000000pt;}
.fs0_c01113{font-size:77.333333pt;}
.fs4_c01113{font-size:205.333333pt;}
.y0_c01113{bottom:0.000000pt;}
.y1d_c01113{bottom:2.760000pt;}
.y1c_c01113{bottom:6.425206pt;}
.y19_c01113{bottom:58.160000pt;}
.y1b_c01113{bottom:60.560000pt;}
.y1a_c01113{bottom:83.493333pt;}
.y18_c01113{bottom:147.360000pt;}
.y17_c01113{bottom:172.560000pt;}
.y16_c01113{bottom:192.693333pt;}
.y15_c01113{bottom:215.493333pt;}
.y14_c01113{bottom:237.626667pt;}
.y13_c01113{bottom:259.893333pt;}
.y12_c01113{bottom:281.760000pt;}
.y11_c01113{bottom:303.093333pt;}
.y10_c01113{bottom:324.026667pt;}
.yf_c01113{bottom:346.826667pt;}
.ye_c01113{bottom:367.760000pt;}
.yd_c01113{bottom:388.293333pt;}
.yc_c01113{bottom:410.160000pt;}
.yb_c01113{bottom:432.026667pt;}
.ya_c01113{bottom:453.893333pt;}
.y9_c01113{bottom:475.893333pt;}
.y8_c01113{bottom:497.760000pt;}
.y7_c01113{bottom:519.893333pt;}
.y6_c01113{bottom:542.426667pt;}
.y5_c01113{bottom:563.760000pt;}
.y4_c01113{bottom:586.160000pt;}
.y3_c01113{bottom:606.960000pt;}
.y2_c01113{bottom:630.026667pt;}
.y1_c01113{bottom:652.826667pt;}
.h5_c01113{height:11.733399pt;}
.h6_c01113{height:38.937500pt;}
.h3_c01113{height:81.031250pt;}
.h2_c01113{height:90.511719pt;}
.h4_c01113{height:279.311719pt;}
.h0_c01113{height:687.866667pt;}
.h1_c01113{height:688.000000pt;}
.w1_c01113{width:93.222667pt;}
.w0_c01113{width:440.666667pt;}
.x0_c01113{left:0.000000pt;}
.x5_c01113{left:64.133333pt;}
.x4_c01113{left:65.733333pt;}
.x3_c01113{left:66.666667pt;}
.x2_c01113{left:67.600000pt;}
.x6_c01113{left:108.266667pt;}
.x1_c01113{left:172.400000pt;}
.x7_c01113{left:177.501546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3be806f5799483ba0c95e4f9.woff2')format("woff");}.ff1_c01114{font-family:ff1_c01114;line-height:1.480469;font-style:normal;font-weight:normal;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_22e5613558338abb396337fc.woff2')format("woff");}.ff2_c01114{font-family:ff2_c01114;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01114{font-family:ff3_c01114;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01114{vertical-align:0.000000px;}
.ls0_c01114{letter-spacing:0.000000px;}
.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:-17.352000px;}
.ws2_c01114{word-spacing:0.000000px;}
.ws1_c01114{word-spacing:3.060000px;}
._13_c01114{margin-left:-11.376000px;}
._15_c01114{margin-left:-9.576000px;}
._12_c01114{margin-left:-8.424000px;}
._e_c01114{margin-left:-6.408000px;}
._f_c01114{margin-left:-4.464000px;}
._d_c01114{margin-left:-3.240000px;}
._11_c01114{margin-left:-2.088000px;}
._b_c01114{margin-left:-1.080000px;}
._a_c01114{width:1.728000px;}
._9_c01114{width:3.096000px;}
._8_c01114{width:4.176000px;}
._3_c01114{width:5.904000px;}
._2_c01114{width:7.056000px;}
._c_c01114{width:8.136000px;}
._10_c01114{width:9.144000px;}
._0_c01114{width:10.656000px;}
._1_c01114{width:12.600000px;}
._4_c01114{width:14.328000px;}
._16_c01114{width:15.768000px;}
._14_c01114{width:19.728000px;}
._6_c01114{width:24.408000px;}
._7_c01114{width:30.744000px;}
._5_c01114{width:304.704000px;}
.fc2_c01114{color:transparent;}
.fc1_c01114{color:rgb(128,128,128);}
.fc0_c01114{color:rgb(0,0,0);}
.fs2_c01114{font-size:48.000000px;}
.fs1_c01114{font-size:60.000000px;}
.fs0_c01114{font-size:72.000000px;}
.y0_c01114{bottom:0.000000px;}
.y1f_c01114{bottom:3.105000px;}
.y1e_c01114{bottom:7.228369px;}
.y1d_c01114{bottom:39.720000px;}
.y1c_c01114{bottom:69.570000px;}
.y1b_c01114{bottom:95.520000px;}
.y1a_c01114{bottom:120.120000px;}
.y19_c01114{bottom:142.020000px;}
.y18_c01114{bottom:169.020000px;}
.y17_c01114{bottom:191.070000px;}
.y16_c01114{bottom:221.070000px;}
.y15_c01114{bottom:245.970000px;}
.y14_c01114{bottom:269.970000px;}
.y13_c01114{bottom:291.570000px;}
.y12_c01114{bottom:318.870000px;}
.y11_c01114{bottom:343.620000px;}
.y10_c01114{bottom:365.820000px;}
.yf_c01114{bottom:392.220000px;}
.ye_c01114{bottom:416.370000px;}
.yd_c01114{bottom:442.170000px;}
.yc_c01114{bottom:466.470000px;}
.yb_c01114{bottom:491.370000px;}
.ya_c01114{bottom:514.920000px;}
.y9_c01114{bottom:539.220000px;}
.y8_c01114{bottom:564.570000px;}
.y7_c01114{bottom:589.170000px;}
.y6_c01114{bottom:612.870000px;}
.y5_c01114{bottom:638.820000px;}
.y4_c01114{bottom:663.420000px;}
.y3_c01114{bottom:688.470000px;}
.y2_c01114{bottom:713.070000px;}
.y1_c01114{bottom:738.420000px;}
.h4_c01114{height:13.200073px;}
.h5_c01114{height:43.804688px;}
.h3_c01114{height:75.966797px;}
.h1_c01114{height:84.269531px;}
.h2_c01114{height:91.160156px;}
.h0_c01114{height:793.500000px;}
.w2_c01114{width:104.875500px;}
.w1_c01114{width:531.000000px;}
.w0_c01114{width:531.075000px;}
.x0_c01114{left:0.000000px;}
.x6_c01114{left:22.200000px;}
.x5_c01114{left:23.550000px;}
.x2_c01114{left:24.750000px;}
.x4_c01114{left:26.400000px;}
.x3_c01114{left:27.600000px;}
.x1_c01114{left:137.100000px;}
.x8_c01114{left:217.351730px;}
.x7_c01114{left:374.250000px;}
@media print{
.v0_c01114{vertical-align:0.000000pt;}
.ls0_c01114{letter-spacing:0.000000pt;}
.ws0_c01114{word-spacing:-15.424000pt;}
.ws2_c01114{word-spacing:0.000000pt;}
.ws1_c01114{word-spacing:2.720000pt;}
._13_c01114{margin-left:-10.112000pt;}
._15_c01114{margin-left:-8.512000pt;}
._12_c01114{margin-left:-7.488000pt;}
._e_c01114{margin-left:-5.696000pt;}
._f_c01114{margin-left:-3.968000pt;}
._d_c01114{margin-left:-2.880000pt;}
._11_c01114{margin-left:-1.856000pt;}
._b_c01114{margin-left:-0.960000pt;}
._a_c01114{width:1.536000pt;}
._9_c01114{width:2.752000pt;}
._8_c01114{width:3.712000pt;}
._3_c01114{width:5.248000pt;}
._2_c01114{width:6.272000pt;}
._c_c01114{width:7.232000pt;}
._10_c01114{width:8.128000pt;}
._0_c01114{width:9.472000pt;}
._1_c01114{width:11.200000pt;}
._4_c01114{width:12.736000pt;}
._16_c01114{width:14.016000pt;}
._14_c01114{width:17.536000pt;}
._6_c01114{width:21.696000pt;}
._7_c01114{width:27.328000pt;}
._5_c01114{width:270.848000pt;}
.fs2_c01114{font-size:42.666667pt;}
.fs1_c01114{font-size:53.333333pt;}
.fs0_c01114{font-size:64.000000pt;}
.y0_c01114{bottom:0.000000pt;}
.y1f_c01114{bottom:2.760000pt;}
.y1e_c01114{bottom:6.425217pt;}
.y1d_c01114{bottom:35.306667pt;}
.y1c_c01114{bottom:61.840000pt;}
.y1b_c01114{bottom:84.906667pt;}
.y1a_c01114{bottom:106.773333pt;}
.y19_c01114{bottom:126.240000pt;}
.y18_c01114{bottom:150.240000pt;}
.y17_c01114{bottom:169.840000pt;}
.y16_c01114{bottom:196.506667pt;}
.y15_c01114{bottom:218.640000pt;}
.y14_c01114{bottom:239.973333pt;}
.y13_c01114{bottom:259.173333pt;}
.y12_c01114{bottom:283.440000pt;}
.y11_c01114{bottom:305.440000pt;}
.y10_c01114{bottom:325.173333pt;}
.yf_c01114{bottom:348.640000pt;}
.ye_c01114{bottom:370.106667pt;}
.yd_c01114{bottom:393.040000pt;}
.yc_c01114{bottom:414.640000pt;}
.yb_c01114{bottom:436.773333pt;}
.ya_c01114{bottom:457.706667pt;}
.y9_c01114{bottom:479.306667pt;}
.y8_c01114{bottom:501.840000pt;}
.y7_c01114{bottom:523.706667pt;}
.y6_c01114{bottom:544.773333pt;}
.y5_c01114{bottom:567.840000pt;}
.y4_c01114{bottom:589.706667pt;}
.y3_c01114{bottom:611.973333pt;}
.y2_c01114{bottom:633.840000pt;}
.y1_c01114{bottom:656.373333pt;}
.h4_c01114{height:11.733399pt;}
.h5_c01114{height:38.937500pt;}
.h3_c01114{height:67.526042pt;}
.h1_c01114{height:74.906250pt;}
.h2_c01114{height:81.031250pt;}
.h0_c01114{height:705.333333pt;}
.w2_c01114{width:93.222667pt;}
.w1_c01114{width:472.000000pt;}
.w0_c01114{width:472.066667pt;}
.x0_c01114{left:0.000000pt;}
.x6_c01114{left:19.733333pt;}
.x5_c01114{left:20.933333pt;}
.x2_c01114{left:22.000000pt;}
.x4_c01114{left:23.466667pt;}
.x3_c01114{left:24.533333pt;}
.x1_c01114{left:121.866667pt;}
.x8_c01114{left:193.201538pt;}
.x7_c01114{left:332.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_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_c02440927ff19a25632c4cf2.woff2')format("woff");}.ff1_c01115{font-family:ff1_c01115;line-height:1.480469;font-style:normal;font-weight:normal;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_f51e9f1ea567041bb81680c8.woff2')format("woff");}.ff2_c01115{font-family:ff2_c01115;line-height:1.568848;font-style:normal;font-weight:normal;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_07c051c48601b49563f1d748.woff2')format("woff");}.ff3_c01115{font-family:ff3_c01115;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01115{font-family:ff4_c01115;line-height:1.219238;font-style: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);}
.v0_c01115{vertical-align:0.000000px;}
.ls0_c01115{letter-spacing:-3.000000px;}
.ls1_c01115{letter-spacing:0.000000px;}
.ls3_c01115{letter-spacing:3.000000px;}
.ls2_c01115{letter-spacing:6.000000px;}
.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:-17.658000px;}
.ws1_c01115{word-spacing:0.000000px;}
._d_c01115{margin-left:-5.475000px;}
._2_c01115{margin-left:-4.002000px;}
._e_c01115{margin-left:-2.811000px;}
._3_c01115{margin-left:-1.653000px;}
._0_c01115{width:1.740000px;}
._1_c01115{width:2.871000px;}
._4_c01115{width:3.960000px;}
._5_c01115{width:5.400000px;}
._6_c01115{width:6.408000px;}
._9_c01115{width:7.848000px;}
._c_c01115{width:9.045000px;}
._7_c01115{width:10.134000px;}
._8_c01115{width:11.676000px;}
._b_c01115{width:13.086000px;}
._a_c01115{width:14.160000px;}
._f_c01115{width:15.168000px;}
.fc2_c01115{color:transparent;}
.fc1_c01115{color:rgb(128,128,128);}
.fc0_c01115{color:rgb(0,0,0);}
.fs5_c01115{font-size:48.000000px;}
.fs2_c01115{font-size:63.000000px;}
.fs4_c01115{font-size:66.000000px;}
.fs3_c01115{font-size:69.000000px;}
.fs1_c01115{font-size:72.000000px;}
.fs0_c01115{font-size:87.000000px;}
.y0_c01115{bottom:0.000000px;}
.y1f_c01115{bottom:3.105000px;}
.y1e_c01115{bottom:7.228371px;}
.y1d_c01115{bottom:50.265000px;}
.y1c_c01115{bottom:72.015000px;}
.y1b_c01115{bottom:97.515000px;}
.y1a_c01115{bottom:122.865000px;}
.y19_c01115{bottom:146.565000px;}
.y18_c01115{bottom:171.915000px;}
.y17_c01115{bottom:197.865000px;}
.y16_c01115{bottom:221.715000px;}
.y15_c01115{bottom:246.465000px;}
.y14_c01115{bottom:271.365000px;}
.y13_c01115{bottom:297.465000px;}
.y12_c01115{bottom:324.315000px;}
.y11_c01115{bottom:346.365000px;}
.y10_c01115{bottom:370.665000px;}
.yf_c01115{bottom:394.665000px;}
.ye_c01115{bottom:419.565000px;}
.yd_c01115{bottom:443.115000px;}
.yc_c01115{bottom:466.515000px;}
.yb_c01115{bottom:491.715000px;}
.ya_c01115{bottom:516.765000px;}
.y9_c01115{bottom:541.815000px;}
.y8_c01115{bottom:566.415000px;}
.y7_c01115{bottom:590.715000px;}
.y6_c01115{bottom:616.665000px;}
.y5_c01115{bottom:641.565000px;}
.y4_c01115{bottom:666.315000px;}
.y3_c01115{bottom:691.515000px;}
.y2_c01115{bottom:715.815000px;}
.y1_c01115{bottom:741.915000px;}
.h5_c01115{height:13.200074px;}
.h6_c01115{height:43.804688px;}
.h4_c01115{height:70.422000px;}
.h3_c01115{height:91.160156px;}
.h2_c01115{height:110.151855px;}
.h0_c01115{height:791.925000px;}
.h1_c01115{height:792.000000px;}
.w2_c01115{width:104.875500px;}
.w1_c01115{width:495.750000px;}
.w0_c01115{width:495.975000px;}
.x0_c01115{left:0.000000px;}
.x7_c01115{left:76.350000px;}
.x8_c01115{left:79.050000px;}
.x5_c01115{left:80.700000px;}
.x6_c01115{left:82.050000px;}
.x3_c01115{left:83.250000px;}
.x4_c01115{left:84.300000px;}
.x2_c01115{left:85.350000px;}
.xa_c01115{left:199.801758px;}
.x1_c01115{left:209.850000px;}
.x9_c01115{left:427.950000px;}
@media print{
.v0_c01115{vertical-align:0.000000pt;}
.ls0_c01115{letter-spacing:-2.666667pt;}
.ls1_c01115{letter-spacing:0.000000pt;}
.ls3_c01115{letter-spacing:2.666667pt;}
.ls2_c01115{letter-spacing:5.333333pt;}
.ws0_c01115{word-spacing:-15.696000pt;}
.ws1_c01115{word-spacing:0.000000pt;}
._d_c01115{margin-left:-4.866667pt;}
._2_c01115{margin-left:-3.557333pt;}
._e_c01115{margin-left:-2.498667pt;}
._3_c01115{margin-left:-1.469333pt;}
._0_c01115{width:1.546667pt;}
._1_c01115{width:2.552000pt;}
._4_c01115{width:3.520000pt;}
._5_c01115{width:4.800000pt;}
._6_c01115{width:5.696000pt;}
._9_c01115{width:6.976000pt;}
._c_c01115{width:8.040000pt;}
._7_c01115{width:9.008000pt;}
._8_c01115{width:10.378667pt;}
._b_c01115{width:11.632000pt;}
._a_c01115{width:12.586667pt;}
._f_c01115{width:13.482667pt;}
.fs5_c01115{font-size:42.666667pt;}
.fs2_c01115{font-size:56.000000pt;}
.fs4_c01115{font-size:58.666667pt;}
.fs3_c01115{font-size:61.333333pt;}
.fs1_c01115{font-size:64.000000pt;}
.fs0_c01115{font-size:77.333333pt;}
.y0_c01115{bottom:0.000000pt;}
.y1f_c01115{bottom:2.760000pt;}
.y1e_c01115{bottom:6.425219pt;}
.y1d_c01115{bottom:44.680000pt;}
.y1c_c01115{bottom:64.013333pt;}
.y1b_c01115{bottom:86.680000pt;}
.y1a_c01115{bottom:109.213333pt;}
.y19_c01115{bottom:130.280000pt;}
.y18_c01115{bottom:152.813333pt;}
.y17_c01115{bottom:175.880000pt;}
.y16_c01115{bottom:197.080000pt;}
.y15_c01115{bottom:219.080000pt;}
.y14_c01115{bottom:241.213333pt;}
.y13_c01115{bottom:264.413333pt;}
.y12_c01115{bottom:288.280000pt;}
.y11_c01115{bottom:307.880000pt;}
.y10_c01115{bottom:329.480000pt;}
.yf_c01115{bottom:350.813333pt;}
.ye_c01115{bottom:372.946667pt;}
.yd_c01115{bottom:393.880000pt;}
.yc_c01115{bottom:414.680000pt;}
.yb_c01115{bottom:437.080000pt;}
.ya_c01115{bottom:459.346667pt;}
.y9_c01115{bottom:481.613333pt;}
.y8_c01115{bottom:503.480000pt;}
.y7_c01115{bottom:525.080000pt;}
.y6_c01115{bottom:548.146667pt;}
.y5_c01115{bottom:570.280000pt;}
.y4_c01115{bottom:592.280000pt;}
.y3_c01115{bottom:614.680000pt;}
.y2_c01115{bottom:636.280000pt;}
.y1_c01115{bottom:659.480000pt;}
.h5_c01115{height:11.733399pt;}
.h6_c01115{height:38.937500pt;}
.h4_c01115{height:62.597333pt;}
.h3_c01115{height:81.031250pt;}
.h2_c01115{height:97.912760pt;}
.h0_c01115{height:703.933333pt;}
.h1_c01115{height:704.000000pt;}
.w2_c01115{width:93.222667pt;}
.w1_c01115{width:440.666667pt;}
.w0_c01115{width:440.866667pt;}
.x0_c01115{left:0.000000pt;}
.x7_c01115{left:67.866667pt;}
.x8_c01115{left:70.266667pt;}
.x5_c01115{left:71.733333pt;}
.x6_c01115{left:72.933333pt;}
.x3_c01115{left:74.000000pt;}
.x4_c01115{left:74.933333pt;}
.x2_c01115{left:75.866667pt;}
.xa_c01115{left:177.601563pt;}
.x1_c01115{left:186.533333pt;}
.x9_c01115{left:380.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8e1622e913da1eb52f46cd9d.woff2')format("woff");}.ff1_c01116{font-family:ff1_c01116;line-height:1.480469;font-style:normal;font-weight:normal;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_78a64fead7aa60b12c08d8de.woff2')format("woff");}.ff2_c01116{font-family:ff2_c01116;line-height:1.568848;font-style:normal;font-weight:normal;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_c2a50a497f1c54178b4515ae.woff2')format("woff");}.ff3_c01116{font-family:ff3_c01116;line-height:1.284668;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01116{font-family:ff4_c01116;line-height:1.219238;font-style: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;}
.ls1_c01116{letter-spacing:0.000000px;}
.ls2_c01116{letter-spacing:3.000000px;}
.ls3_c01116{letter-spacing:6.000000px;}
.ls0_c01116{letter-spacing:6.300000px;}
.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;}
}
.ws0_c01116{word-spacing:-21.750000px;}
.ws2_c01116{word-spacing:-21.000000px;}
.ws3_c01116{word-spacing:-17.352000px;}
.ws1_c01116{word-spacing:-16.014000px;}
.ws4_c01116{word-spacing:0.000000px;}
._14_c01116{margin-left:-38.745000px;}
._d_c01116{margin-left:-9.324000px;}
._15_c01116{margin-left:-7.731000px;}
._12_c01116{margin-left:-6.345000px;}
._3_c01116{margin-left:-4.536000px;}
._8_c01116{margin-left:-2.547000px;}
._a_c01116{margin-left:-1.152000px;}
._4_c01116{width:1.296000px;}
._5_c01116{width:2.808000px;}
._6_c01116{width:4.023000px;}
._7_c01116{width:5.616000px;}
._9_c01116{width:6.660000px;}
._b_c01116{width:7.956000px;}
._c_c01116{width:9.153000px;}
._11_c01116{width:10.269000px;}
._f_c01116{width:11.916000px;}
._e_c01116{width:14.022000px;}
._13_c01116{width:15.129000px;}
._1_c01116{width:17.334000px;}
._0_c01116{width:23.490000px;}
._10_c01116{width:25.038000px;}
._2_c01116{width:27.864000px;}
._16_c01116{width:299.520000px;}
.fc2_c01116{color:transparent;}
.fc1_c01116{color:rgb(128,128,128);}
.fc0_c01116{color:rgb(0,0,0);}
.fs7_c01116{font-size:48.000000px;}
.fs4_c01116{font-size:54.000000px;}
.fs6_c01116{font-size:60.000000px;}
.fs3_c01116{font-size:63.000000px;}
.fs2_c01116{font-size:72.000000px;}
.fs1_c01116{font-size:75.000000px;}
.fs0_c01116{font-size:81.000000px;}
.fs5_c01116{font-size:84.000000px;}
.y0_c01116{bottom:0.000000px;}
.y1f_c01116{bottom:3.105000px;}
.y1e_c01116{bottom:7.228369px;}
.y1d_c01116{bottom:59.970000px;}
.y1c_c01116{bottom:88.770000px;}
.y1b_c01116{bottom:116.370000px;}
.y1a_c01116{bottom:137.670000px;}
.y19_c01116{bottom:164.970000px;}
.y18_c01116{bottom:190.920000px;}
.y17_c01116{bottom:215.670000px;}
.y16_c01116{bottom:241.920000px;}
.y15_c01116{bottom:267.570000px;}
.y14_c01116{bottom:292.620000px;}
.y13_c01116{bottom:314.820000px;}
.y12_c01116{bottom:342.120000px;}
.y11_c01116{bottom:365.070000px;}
.y10_c01116{bottom:391.170000px;}
.yf_c01116{bottom:414.720000px;}
.ye_c01116{bottom:439.020000px;}
.yd_c01116{bottom:464.070000px;}
.yc_c01116{bottom:488.670000px;}
.yb_c01116{bottom:513.570000px;}
.ya_c01116{bottom:537.570000px;}
.y9_c01116{bottom:562.170000px;}
.y8_c01116{bottom:587.520000px;}
.y7_c01116{bottom:612.270000px;}
.y6_c01116{bottom:637.170000px;}
.y5_c01116{bottom:662.520000px;}
.y4_c01116{bottom:688.170000px;}
.y3_c01116{bottom:712.020000px;}
.y2_c01116{bottom:736.770000px;}
.y1_c01116{bottom:761.670000px;}
.h5_c01116{height:13.200073px;}
.h6_c01116{height:43.804688px;}
.h4_c01116{height:75.966797px;}
.h3_c01116{height:82.441406px;}
.h2_c01116{height:91.160156px;}
.h1_c01116{height:102.555176px;}
.h0_c01116{height:800.250000px;}
.w2_c01116{width:104.875500px;}
.w1_c01116{width:564.750000px;}
.w0_c01116{width:564.825000px;}
.x0_c01116{left:0.000000px;}
.xa_c01116{left:25.050000px;}
.x9_c01116{left:26.400000px;}
.x8_c01116{left:27.900000px;}
.x7_c01116{left:29.250000px;}
.x6_c01116{left:30.750000px;}
.x5_c01116{left:31.950000px;}
.x2_c01116{left:33.000000px;}
.x3_c01116{left:34.500000px;}
.x4_c01116{left:35.700000px;}
.x1_c01116{left:139.350000px;}
.xc_c01116{left:234.226730px;}
.xb_c01116{left:379.950000px;}
@media print{
.v0_c01116{vertical-align:0.000000pt;}
.ls1_c01116{letter-spacing:0.000000pt;}
.ls2_c01116{letter-spacing:2.666667pt;}
.ls3_c01116{letter-spacing:5.333333pt;}
.ls0_c01116{letter-spacing:5.600000pt;}
.ws0_c01116{word-spacing:-19.333333pt;}
.ws2_c01116{word-spacing:-18.666667pt;}
.ws3_c01116{word-spacing:-15.424000pt;}
.ws1_c01116{word-spacing:-14.234667pt;}
.ws4_c01116{word-spacing:0.000000pt;}
._14_c01116{margin-left:-34.440000pt;}
._d_c01116{margin-left:-8.288000pt;}
._15_c01116{margin-left:-6.872000pt;}
._12_c01116{margin-left:-5.640000pt;}
._3_c01116{margin-left:-4.032000pt;}
._8_c01116{margin-left:-2.264000pt;}
._a_c01116{margin-left:-1.024000pt;}
._4_c01116{width:1.152000pt;}
._5_c01116{width:2.496000pt;}
._6_c01116{width:3.576000pt;}
._7_c01116{width:4.992000pt;}
._9_c01116{width:5.920000pt;}
._b_c01116{width:7.072000pt;}
._c_c01116{width:8.136000pt;}
._11_c01116{width:9.128000pt;}
._f_c01116{width:10.592000pt;}
._e_c01116{width:12.464000pt;}
._13_c01116{width:13.448000pt;}
._1_c01116{width:15.408000pt;}
._0_c01116{width:20.880000pt;}
._10_c01116{width:22.256000pt;}
._2_c01116{width:24.768000pt;}
._16_c01116{width:266.240000pt;}
.fs7_c01116{font-size:42.666667pt;}
.fs4_c01116{font-size:48.000000pt;}
.fs6_c01116{font-size:53.333333pt;}
.fs3_c01116{font-size:56.000000pt;}
.fs2_c01116{font-size:64.000000pt;}
.fs1_c01116{font-size:66.666667pt;}
.fs0_c01116{font-size:72.000000pt;}
.fs5_c01116{font-size:74.666667pt;}
.y0_c01116{bottom:0.000000pt;}
.y1f_c01116{bottom:2.760000pt;}
.y1e_c01116{bottom:6.425217pt;}
.y1d_c01116{bottom:53.306667pt;}
.y1c_c01116{bottom:78.906667pt;}
.y1b_c01116{bottom:103.440000pt;}
.y1a_c01116{bottom:122.373333pt;}
.y19_c01116{bottom:146.640000pt;}
.y18_c01116{bottom:169.706667pt;}
.y17_c01116{bottom:191.706667pt;}
.y16_c01116{bottom:215.040000pt;}
.y15_c01116{bottom:237.840000pt;}
.y14_c01116{bottom:260.106667pt;}
.y13_c01116{bottom:279.840000pt;}
.y12_c01116{bottom:304.106667pt;}
.y11_c01116{bottom:324.506667pt;}
.y10_c01116{bottom:347.706667pt;}
.yf_c01116{bottom:368.640000pt;}
.ye_c01116{bottom:390.240000pt;}
.yd_c01116{bottom:412.506667pt;}
.yc_c01116{bottom:434.373333pt;}
.yb_c01116{bottom:456.506667pt;}
.ya_c01116{bottom:477.840000pt;}
.y9_c01116{bottom:499.706667pt;}
.y8_c01116{bottom:522.240000pt;}
.y7_c01116{bottom:544.240000pt;}
.y6_c01116{bottom:566.373333pt;}
.y5_c01116{bottom:588.906667pt;}
.y4_c01116{bottom:611.706667pt;}
.y3_c01116{bottom:632.906667pt;}
.y2_c01116{bottom:654.906667pt;}
.y1_c01116{bottom:677.040000pt;}
.h5_c01116{height:11.733399pt;}
.h6_c01116{height:38.937500pt;}
.h4_c01116{height:67.526042pt;}
.h3_c01116{height:73.281250pt;}
.h2_c01116{height:81.031250pt;}
.h1_c01116{height:91.160156pt;}
.h0_c01116{height:711.333333pt;}
.w2_c01116{width:93.222667pt;}
.w1_c01116{width:502.000000pt;}
.w0_c01116{width:502.066667pt;}
.x0_c01116{left:0.000000pt;}
.xa_c01116{left:22.266667pt;}
.x9_c01116{left:23.466667pt;}
.x8_c01116{left:24.800000pt;}
.x7_c01116{left:26.000000pt;}
.x6_c01116{left:27.333333pt;}
.x5_c01116{left:28.400000pt;}
.x2_c01116{left:29.333333pt;}
.x3_c01116{left:30.666667pt;}
.x4_c01116{left:31.733333pt;}
.x1_c01116{left:123.866667pt;}
.xc_c01116{left:208.201538pt;}
.xb_c01116{left:337.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_853fd4bd43094c54bfb0a6fb.woff2')format("woff");}.ff1_c01117{font-family:ff1_c01117;line-height:1.480469;font-style:normal;font-weight:normal;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_e8d2484dead0af60e26fbf99.woff2')format("woff");}.ff2_c01117{font-family:ff2_c01117;line-height:1.568848;font-style:normal;font-weight:normal;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_67c5efc29f31163b9c7a6345.woff2')format("woff");}.ff3_c01117{font-family:ff3_c01117;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01117{font-family:ff4_c01117;line-height:1.219238;font-style: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:-3.000000px;}
.ls2_c01117{letter-spacing:0.000000px;}
.ls0_c01117{letter-spacing:19.554000px;}
.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;}
}
.ws2_c01117{word-spacing:-38.052000px;}
.ws1_c01117{word-spacing:-30.441600px;}
.ws3_c01117{word-spacing:-20.967000px;}
.ws4_c01117{word-spacing:0.000000px;}
.ws0_c01117{word-spacing:0.756000px;}
._16_c01117{margin-left:-10.055400px;}
._f_c01117{margin-left:-4.182000px;}
._4_c01117{margin-left:-2.958000px;}
._5_c01117{margin-left:-1.131000px;}
._e_c01117{width:1.047000px;}
._8_c01117{width:2.253000px;}
._1_c01117{width:3.567000px;}
._9_c01117{width:5.196000px;}
._3_c01117{width:6.264000px;}
._2_c01117{width:7.482000px;}
._0_c01117{width:9.222000px;}
._b_c01117{width:10.647000px;}
._7_c01117{width:12.048000px;}
._a_c01117{width:13.563000px;}
._d_c01117{width:16.752000px;}
._6_c01117{width:18.348000px;}
._12_c01117{width:19.536000px;}
._10_c01117{width:21.660000px;}
._11_c01117{width:22.665000px;}
._13_c01117{width:23.724000px;}
._15_c01117{width:25.200000px;}
._14_c01117{width:27.594000px;}
._c_c01117{width:36.837000px;}
.fc2_c01117{color:transparent;}
.fc1_c01117{color:rgb(128,128,128);}
.fc0_c01117{color:rgb(0,0,0);}
.fs3_c01117{font-size:48.000000px;}
.fs2_c01117{font-size:50.400000px;}
.fs1_c01117{font-size:63.000000px;}
.fs0_c01117{font-size:87.000000px;}
.y0_c01117{bottom:0.000000px;}
.y1f_c01117{bottom:3.105000px;}
.y1e_c01117{bottom:7.228355px;}
.y1d_c01117{bottom:54.285000px;}
.y1c_c01117{bottom:75.885000px;}
.y1b_c01117{bottom:102.135000px;}
.y1a_c01117{bottom:127.935000px;}
.y19_c01117{bottom:152.835000px;}
.y18_c01117{bottom:177.135000px;}
.y17_c01117{bottom:202.035000px;}
.y16_c01117{bottom:226.335000px;}
.y15_c01117{bottom:251.385000px;}
.y14_c01117{bottom:276.285000px;}
.y13_c01117{bottom:302.385000px;}
.y12_c01117{bottom:326.385000px;}
.y11_c01117{bottom:350.235000px;}
.y10_c01117{bottom:376.335000px;}
.yf_c01117{bottom:399.885000px;}
.ye_c01117{bottom:422.835000px;}
.yd_c01117{bottom:448.185000px;}
.yc_c01117{bottom:470.685000px;}
.yb_c01117{bottom:496.035000px;}
.ya_c01117{bottom:520.785000px;}
.y9_c01117{bottom:545.085000px;}
.y8_c01117{bottom:570.285000px;}
.y7_c01117{bottom:596.235000px;}
.y6_c01117{bottom:620.985000px;}
.y5_c01117{bottom:645.585000px;}
.y4_c01117{bottom:670.935000px;}
.y3_c01117{bottom:695.835000px;}
.y2_c01117{bottom:720.585000px;}
.y1_c01117{bottom:746.535000px;}
.h4_c01117{height:13.200074px;}
.h5_c01117{height:43.804688px;}
.h3_c01117{height:79.765137px;}
.h2_c01117{height:110.151855px;}
.h0_c01117{height:782.175000px;}
.h1_c01117{height:782.250000px;}
.w2_c01117{width:104.875500px;}
.w1_c01117{width:506.250000px;}
.w0_c01117{width:506.550000px;}
.x0_c01117{left:0.000000px;}
.x7_c01117{left:90.450000px;}
.x8_c01117{left:91.500000px;}
.x6_c01117{left:93.150000px;}
.x5_c01117{left:94.800000px;}
.x4_c01117{left:95.850000px;}
.x3_c01117{left:97.200000px;}
.x2_c01117{left:98.850000px;}
.xa_c01117{left:205.089249px;}
.x1_c01117{left:227.100000px;}
.x9_c01117{left:453.300000px;}
@media print{
.v0_c01117{vertical-align:0.000000pt;}
.ls1_c01117{letter-spacing:-2.666667pt;}
.ls2_c01117{letter-spacing:0.000000pt;}
.ls0_c01117{letter-spacing:17.381333pt;}
.ws2_c01117{word-spacing:-33.824000pt;}
.ws1_c01117{word-spacing:-27.059200pt;}
.ws3_c01117{word-spacing:-18.637333pt;}
.ws4_c01117{word-spacing:0.000000pt;}
.ws0_c01117{word-spacing:0.672000pt;}
._16_c01117{margin-left:-8.938133pt;}
._f_c01117{margin-left:-3.717333pt;}
._4_c01117{margin-left:-2.629333pt;}
._5_c01117{margin-left:-1.005333pt;}
._e_c01117{width:0.930667pt;}
._8_c01117{width:2.002667pt;}
._1_c01117{width:3.170667pt;}
._9_c01117{width:4.618667pt;}
._3_c01117{width:5.568000pt;}
._2_c01117{width:6.650667pt;}
._0_c01117{width:8.197333pt;}
._b_c01117{width:9.464000pt;}
._7_c01117{width:10.709333pt;}
._a_c01117{width:12.056000pt;}
._d_c01117{width:14.890667pt;}
._6_c01117{width:16.309333pt;}
._12_c01117{width:17.365333pt;}
._10_c01117{width:19.253333pt;}
._11_c01117{width:20.146667pt;}
._13_c01117{width:21.088000pt;}
._15_c01117{width:22.400000pt;}
._14_c01117{width:24.528000pt;}
._c_c01117{width:32.744000pt;}
.fs3_c01117{font-size:42.666667pt;}
.fs2_c01117{font-size:44.800000pt;}
.fs1_c01117{font-size:56.000000pt;}
.fs0_c01117{font-size:77.333333pt;}
.y0_c01117{bottom:0.000000pt;}
.y1f_c01117{bottom:2.760000pt;}
.y1e_c01117{bottom:6.425204pt;}
.y1d_c01117{bottom:48.253333pt;}
.y1c_c01117{bottom:67.453333pt;}
.y1b_c01117{bottom:90.786667pt;}
.y1a_c01117{bottom:113.720000pt;}
.y19_c01117{bottom:135.853333pt;}
.y18_c01117{bottom:157.453333pt;}
.y17_c01117{bottom:179.586667pt;}
.y16_c01117{bottom:201.186667pt;}
.y15_c01117{bottom:223.453333pt;}
.y14_c01117{bottom:245.586667pt;}
.y13_c01117{bottom:268.786667pt;}
.y12_c01117{bottom:290.120000pt;}
.y11_c01117{bottom:311.320000pt;}
.y10_c01117{bottom:334.520000pt;}
.yf_c01117{bottom:355.453333pt;}
.ye_c01117{bottom:375.853333pt;}
.yd_c01117{bottom:398.386667pt;}
.yc_c01117{bottom:418.386667pt;}
.yb_c01117{bottom:440.920000pt;}
.ya_c01117{bottom:462.920000pt;}
.y9_c01117{bottom:484.520000pt;}
.y8_c01117{bottom:506.920000pt;}
.y7_c01117{bottom:529.986667pt;}
.y6_c01117{bottom:551.986667pt;}
.y5_c01117{bottom:573.853333pt;}
.y4_c01117{bottom:596.386667pt;}
.y3_c01117{bottom:618.520000pt;}
.y2_c01117{bottom:640.520000pt;}
.y1_c01117{bottom:663.586667pt;}
.h4_c01117{height:11.733399pt;}
.h5_c01117{height:38.937500pt;}
.h3_c01117{height:70.902344pt;}
.h2_c01117{height:97.912760pt;}
.h0_c01117{height:695.266667pt;}
.h1_c01117{height:695.333333pt;}
.w2_c01117{width:93.222667pt;}
.w1_c01117{width:450.000000pt;}
.w0_c01117{width:450.266667pt;}
.x0_c01117{left:0.000000pt;}
.x7_c01117{left:80.400000pt;}
.x8_c01117{left:81.333333pt;}
.x6_c01117{left:82.800000pt;}
.x5_c01117{left:84.266667pt;}
.x4_c01117{left:85.200000pt;}
.x3_c01117{left:86.400000pt;}
.x2_c01117{left:87.866667pt;}
.xa_c01117{left:182.301554pt;}
.x1_c01117{left:201.866667pt;}
.x9_c01117{left:402.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9f7618468124e7e27d88b49e.woff2')format("woff");}.ff1_c01118{font-family:ff1_c01118;line-height:1.284180;font-style:normal;font-weight:normal;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_0befa2dd78eabf07cf59feb4.woff2')format("woff");}.ff2_c01118{font-family:ff2_c01118;line-height:1.284668;font-style:normal;font-weight:normal;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_eb5c2c46848fe1c456a231ba.woff2')format("woff");}.ff3_c01118{font-family:ff3_c01118;line-height:1.480469;font-style:normal;font-weight:normal;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_bba79e7562e80712386dadff.woff2')format("woff");}.ff4_c01118{font-family:ff4_c01118;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01118;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01118{font-family:ff5_c01118;line-height:1.219238;font-style: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;}
.ls1_c01118{letter-spacing:0.000000px;}
.ls0_c01118{letter-spacing:1.200000px;}
.ls2_c01118{letter-spacing:3.000000px;}
.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;}
}
.ws0_c01118{word-spacing:-33.192000px;}
.ws1_c01118{word-spacing:0.000000px;}
._8_c01118{margin-left:-10.056000px;}
._11_c01118{margin-left:-8.076000px;}
._5_c01118{margin-left:-6.888000px;}
._2_c01118{margin-left:-4.788000px;}
._c_c01118{margin-left:-3.684000px;}
._a_c01118{margin-left:-2.016000px;}
._13_c01118{width:1.068000px;}
._3_c01118{width:2.100000px;}
._4_c01118{width:3.612000px;}
._6_c01118{width:5.124000px;}
._1_c01118{width:6.468000px;}
._b_c01118{width:7.776000px;}
._d_c01118{width:9.216000px;}
._0_c01118{width:11.088000px;}
._9_c01118{width:12.840000px;}
._e_c01118{width:14.532000px;}
._12_c01118{width:17.880000px;}
._f_c01118{width:21.099000px;}
._10_c01118{width:25.104000px;}
._7_c01118{width:289.932000px;}
._14_c01118{width:317.019000px;}
.fc2_c01118{color:transparent;}
.fc1_c01118{color:rgb(128,128,128);}
.fc0_c01118{color:rgb(0,0,0);}
.fs3_c01118{font-size:39.000000px;}
.fs6_c01118{font-size:48.000000px;}
.fs4_c01118{font-size:66.000000px;}
.fs5_c01118{font-size:69.000000px;}
.fs2_c01118{font-size:72.000000px;}
.fs1_c01118{font-size:81.000000px;}
.fs0_c01118{font-size:84.000000px;}
.y0_c01118{bottom:0.000000px;}
.y1f_c01118{bottom:3.105000px;}
.y1e_c01118{bottom:7.228369px;}
.y1d_c01118{bottom:53.970000px;}
.y1c_c01118{bottom:82.920000px;}
.y1b_c01118{bottom:107.220000px;}
.y1a_c01118{bottom:131.520000px;}
.y19_c01118{bottom:153.570000px;}
.y18_c01118{bottom:182.820000px;}
.y17_c01118{bottom:207.120000px;}
.y16_c01118{bottom:231.570000px;}
.y15_c01118{bottom:256.770000px;}
.y14_c01118{bottom:281.520000px;}
.y13_c01118{bottom:303.720000px;}
.y12_c01118{bottom:330.120000px;}
.y11_c01118{bottom:352.920000px;}
.y10_c01118{bottom:378.570000px;}
.yf_c01118{bottom:402.870000px;}
.ye_c01118{bottom:425.970000px;}
.yd_c01118{bottom:450.120000px;}
.yc_c01118{bottom:474.570000px;}
.yb_c01118{bottom:499.170000px;}
.ya_c01118{bottom:523.020000px;}
.y9_c01118{bottom:546.120000px;}
.y8_c01118{bottom:571.020000px;}
.y7_c01118{bottom:595.920000px;}
.y6_c01118{bottom:621.720000px;}
.y5_c01118{bottom:644.670000px;}
.y4_c01118{bottom:669.570000px;}
.y3_c01118{bottom:694.170000px;}
.y2_c01118{bottom:718.470000px;}
.y1_c01118{bottom:744.120000px;}
.h4_c01118{height:13.200073px;}
.h5_c01118{height:43.804688px;}
.h1_c01118{height:82.400391px;}
.h3_c01118{height:87.361816px;}
.h2_c01118{height:91.160156px;}
.h0_c01118{height:780.000000px;}
.w2_c01118{width:104.875500px;}
.w0_c01118{width:548.100000px;}
.w1_c01118{width:548.250000px;}
.x0_c01118{left:0.000000px;}
.x8_c01118{left:23.400000px;}
.x3_c01118{left:24.750000px;}
.x2_c01118{left:25.950000px;}
.x4_c01118{left:27.000000px;}
.x5_c01118{left:28.650000px;}
.x6_c01118{left:30.000000px;}
.x7_c01118{left:31.500000px;}
.x1_c01118{left:142.050000px;}
.xa_c01118{left:225.864258px;}
.x9_c01118{left:260.850000px;}
@media print{
.v0_c01118{vertical-align:0.000000pt;}
.ls1_c01118{letter-spacing:0.000000pt;}
.ls0_c01118{letter-spacing:1.066667pt;}
.ls2_c01118{letter-spacing:2.666667pt;}
.ws0_c01118{word-spacing:-29.504000pt;}
.ws1_c01118{word-spacing:0.000000pt;}
._8_c01118{margin-left:-8.938667pt;}
._11_c01118{margin-left:-7.178667pt;}
._5_c01118{margin-left:-6.122667pt;}
._2_c01118{margin-left:-4.256000pt;}
._c_c01118{margin-left:-3.274667pt;}
._a_c01118{margin-left:-1.792000pt;}
._13_c01118{width:0.949333pt;}
._3_c01118{width:1.866667pt;}
._4_c01118{width:3.210667pt;}
._6_c01118{width:4.554667pt;}
._1_c01118{width:5.749333pt;}
._b_c01118{width:6.912000pt;}
._d_c01118{width:8.192000pt;}
._0_c01118{width:9.856000pt;}
._9_c01118{width:11.413333pt;}
._e_c01118{width:12.917333pt;}
._12_c01118{width:15.893333pt;}
._f_c01118{width:18.754667pt;}
._10_c01118{width:22.314667pt;}
._7_c01118{width:257.717333pt;}
._14_c01118{width:281.794667pt;}
.fs3_c01118{font-size:34.666667pt;}
.fs6_c01118{font-size:42.666667pt;}
.fs4_c01118{font-size:58.666667pt;}
.fs5_c01118{font-size:61.333333pt;}
.fs2_c01118{font-size:64.000000pt;}
.fs1_c01118{font-size:72.000000pt;}
.fs0_c01118{font-size:74.666667pt;}
.y0_c01118{bottom:0.000000pt;}
.y1f_c01118{bottom:2.760000pt;}
.y1e_c01118{bottom:6.425217pt;}
.y1d_c01118{bottom:47.973333pt;}
.y1c_c01118{bottom:73.706667pt;}
.y1b_c01118{bottom:95.306667pt;}
.y1a_c01118{bottom:116.906667pt;}
.y19_c01118{bottom:136.506667pt;}
.y18_c01118{bottom:162.506667pt;}
.y17_c01118{bottom:184.106667pt;}
.y16_c01118{bottom:205.840000pt;}
.y15_c01118{bottom:228.240000pt;}
.y14_c01118{bottom:250.240000pt;}
.y13_c01118{bottom:269.973333pt;}
.y12_c01118{bottom:293.440000pt;}
.y11_c01118{bottom:313.706667pt;}
.y10_c01118{bottom:336.506667pt;}
.yf_c01118{bottom:358.106667pt;}
.ye_c01118{bottom:378.640000pt;}
.yd_c01118{bottom:400.106667pt;}
.yc_c01118{bottom:421.840000pt;}
.yb_c01118{bottom:443.706667pt;}
.ya_c01118{bottom:464.906667pt;}
.y9_c01118{bottom:485.440000pt;}
.y8_c01118{bottom:507.573333pt;}
.y7_c01118{bottom:529.706667pt;}
.y6_c01118{bottom:552.640000pt;}
.y5_c01118{bottom:573.040000pt;}
.y4_c01118{bottom:595.173333pt;}
.y3_c01118{bottom:617.040000pt;}
.y2_c01118{bottom:638.640000pt;}
.y1_c01118{bottom:661.440000pt;}
.h4_c01118{height:11.733399pt;}
.h5_c01118{height:38.937500pt;}
.h1_c01118{height:73.244792pt;}
.h3_c01118{height:77.654948pt;}
.h2_c01118{height:81.031250pt;}
.h0_c01118{height:693.333333pt;}
.w2_c01118{width:93.222667pt;}
.w0_c01118{width:487.200000pt;}
.w1_c01118{width:487.333333pt;}
.x0_c01118{left:0.000000pt;}
.x8_c01118{left:20.800000pt;}
.x3_c01118{left:22.000000pt;}
.x2_c01118{left:23.066667pt;}
.x4_c01118{left:24.000000pt;}
.x5_c01118{left:25.466667pt;}
.x6_c01118{left:26.666667pt;}
.x7_c01118{left:28.000000pt;}
.x1_c01118{left:126.266667pt;}
.xa_c01118{left:200.768229pt;}
.x9_c01118{left:231.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bf2dbdd82d9461e1b49fa840.woff2')format("woff");}.ff1_c01119{font-family:ff1_c01119;line-height:1.480469;font-style:normal;font-weight:normal;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_066a3b56a0226e5c5ba3b2f8.woff2')format("woff");}.ff2_c01119{font-family:ff2_c01119;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01119{font-family:ff3_c01119;line-height:1.219238;font-style: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;}
.ls0_c01119{letter-spacing:-3.000000px;}
.ls1_c01119{letter-spacing:0.000000px;}
.ls2_c01119{letter-spacing:3.000000px;}
.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:-17.352000px;}
.ws0_c01119{word-spacing:-1.416000px;}
.ws2_c01119{word-spacing:0.000000px;}
._d_c01119{margin-left:-20.277000px;}
._2_c01119{margin-left:-8.064000px;}
._3_c01119{margin-left:-5.976000px;}
._e_c01119{margin-left:-4.959000px;}
._4_c01119{margin-left:-3.240000px;}
._10_c01119{margin-left:-2.187000px;}
._1_c01119{margin-left:-1.044000px;}
._0_c01119{width:1.305000px;}
._8_c01119{width:2.664000px;}
._6_c01119{width:3.888000px;}
._7_c01119{width:5.256000px;}
._5_c01119{width:6.624000px;}
._b_c01119{width:8.532000px;}
._a_c01119{width:9.936000px;}
._17_c01119{width:11.079000px;}
._9_c01119{width:12.159000px;}
._13_c01119{width:13.248000px;}
._f_c01119{width:14.679000px;}
._12_c01119{width:15.993000px;}
._14_c01119{width:17.118000px;}
._16_c01119{width:19.224000px;}
._15_c01119{width:21.096000px;}
._c_c01119{width:22.896000px;}
._19_c01119{width:25.920000px;}
._1a_c01119{width:28.626000px;}
._18_c01119{width:35.928000px;}
._11_c01119{width:37.701000px;}
.fc2_c01119{color:transparent;}
.fc1_c01119{color:rgb(128,128,128);}
.fc0_c01119{color:rgb(0,0,0);}
.fs3_c01119{font-size:48.000000px;}
.fs2_c01119{font-size:66.000000px;}
.fs1_c01119{font-size:72.000000px;}
.fs0_c01119{font-size:87.000000px;}
.y0_c01119{bottom:0.000000px;}
.y1e_c01119{bottom:3.105000px;}
.y1d_c01119{bottom:7.228369px;}
.y1c_c01119{bottom:87.120000px;}
.y1b_c01119{bottom:113.070000px;}
.y1a_c01119{bottom:136.920000px;}
.y19_c01119{bottom:162.270000px;}
.y18_c01119{bottom:187.020000px;}
.y17_c01119{bottom:211.620000px;}
.y16_c01119{bottom:236.970000px;}
.y15_c01119{bottom:262.470000px;}
.y14_c01119{bottom:286.920000px;}
.y13_c01119{bottom:311.520000px;}
.y12_c01119{bottom:336.120000px;}
.y11_c01119{bottom:359.670000px;}
.y10_c01119{bottom:383.670000px;}
.yf_c01119{bottom:407.970000px;}
.ye_c01119{bottom:431.670000px;}
.yd_c01119{bottom:454.920000px;}
.yc_c01119{bottom:478.620000px;}
.yb_c01119{bottom:503.820000px;}
.ya_c01119{bottom:528.120000px;}
.y9_c01119{bottom:552.720000px;}
.y8_c01119{bottom:576.120000px;}
.y7_c01119{bottom:602.370000px;}
.y6_c01119{bottom:625.020000px;}
.y5_c01119{bottom:651.420000px;}
.y4_c01119{bottom:674.970000px;}
.y3_c01119{bottom:700.020000px;}
.y2_c01119{bottom:724.920000px;}
.y1_c01119{bottom:750.870000px;}
.h3_c01119{height:13.200073px;}
.h4_c01119{height:43.804688px;}
.h2_c01119{height:91.160156px;}
.h1_c01119{height:110.151855px;}
.h0_c01119{height:793.500000px;}
.w2_c01119{width:104.875500px;}
.w0_c01119{width:502.200000px;}
.w1_c01119{width:502.500000px;}
.x0_c01119{left:0.000000px;}
.x2_c01119{left:85.650000px;}
.x3_c01119{left:87.300000px;}
.x4_c01119{left:88.650000px;}
.x5_c01119{left:90.150000px;}
.x6_c01119{left:92.100000px;}
.x7_c01119{left:93.150000px;}
.x1_c01119{left:203.100000px;}
@media print{
.v0_c01119{vertical-align:0.000000pt;}
.ls0_c01119{letter-spacing:-2.666667pt;}
.ls1_c01119{letter-spacing:0.000000pt;}
.ls2_c01119{letter-spacing:2.666667pt;}
.ws1_c01119{word-spacing:-15.424000pt;}
.ws0_c01119{word-spacing:-1.258667pt;}
.ws2_c01119{word-spacing:0.000000pt;}
._d_c01119{margin-left:-18.024000pt;}
._2_c01119{margin-left:-7.168000pt;}
._3_c01119{margin-left:-5.312000pt;}
._e_c01119{margin-left:-4.408000pt;}
._4_c01119{margin-left:-2.880000pt;}
._10_c01119{margin-left:-1.944000pt;}
._1_c01119{margin-left:-0.928000pt;}
._0_c01119{width:1.160000pt;}
._8_c01119{width:2.368000pt;}
._6_c01119{width:3.456000pt;}
._7_c01119{width:4.672000pt;}
._5_c01119{width:5.888000pt;}
._b_c01119{width:7.584000pt;}
._a_c01119{width:8.832000pt;}
._17_c01119{width:9.848000pt;}
._9_c01119{width:10.808000pt;}
._13_c01119{width:11.776000pt;}
._f_c01119{width:13.048000pt;}
._12_c01119{width:14.216000pt;}
._14_c01119{width:15.216000pt;}
._16_c01119{width:17.088000pt;}
._15_c01119{width:18.752000pt;}
._c_c01119{width:20.352000pt;}
._19_c01119{width:23.040000pt;}
._1a_c01119{width:25.445333pt;}
._18_c01119{width:31.936000pt;}
._11_c01119{width:33.512000pt;}
.fs3_c01119{font-size:42.666667pt;}
.fs2_c01119{font-size:58.666667pt;}
.fs1_c01119{font-size:64.000000pt;}
.fs0_c01119{font-size:77.333333pt;}
.y0_c01119{bottom:0.000000pt;}
.y1e_c01119{bottom:2.760000pt;}
.y1d_c01119{bottom:6.425217pt;}
.y1c_c01119{bottom:77.440000pt;}
.y1b_c01119{bottom:100.506667pt;}
.y1a_c01119{bottom:121.706667pt;}
.y19_c01119{bottom:144.240000pt;}
.y18_c01119{bottom:166.240000pt;}
.y17_c01119{bottom:188.106667pt;}
.y16_c01119{bottom:210.640000pt;}
.y15_c01119{bottom:233.306667pt;}
.y14_c01119{bottom:255.040000pt;}
.y13_c01119{bottom:276.906667pt;}
.y12_c01119{bottom:298.773333pt;}
.y11_c01119{bottom:319.706667pt;}
.y10_c01119{bottom:341.040000pt;}
.yf_c01119{bottom:362.640000pt;}
.ye_c01119{bottom:383.706667pt;}
.yd_c01119{bottom:404.373333pt;}
.yc_c01119{bottom:425.440000pt;}
.yb_c01119{bottom:447.840000pt;}
.ya_c01119{bottom:469.440000pt;}
.y9_c01119{bottom:491.306667pt;}
.y8_c01119{bottom:512.106667pt;}
.y7_c01119{bottom:535.440000pt;}
.y6_c01119{bottom:555.573333pt;}
.y5_c01119{bottom:579.040000pt;}
.y4_c01119{bottom:599.973333pt;}
.y3_c01119{bottom:622.240000pt;}
.y2_c01119{bottom:644.373333pt;}
.y1_c01119{bottom:667.440000pt;}
.h3_c01119{height:11.733399pt;}
.h4_c01119{height:38.937500pt;}
.h2_c01119{height:81.031250pt;}
.h1_c01119{height:97.912760pt;}
.h0_c01119{height:705.333333pt;}
.w2_c01119{width:93.222667pt;}
.w0_c01119{width:446.400000pt;}
.w1_c01119{width:446.666667pt;}
.x0_c01119{left:0.000000pt;}
.x2_c01119{left:76.133333pt;}
.x3_c01119{left:77.600000pt;}
.x4_c01119{left:78.800000pt;}
.x5_c01119{left:80.133333pt;}
.x6_c01119{left:81.866667pt;}
.x7_c01119{left:82.800000pt;}
.x1_c01119{left:180.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7f918871e06dfb026527a8a8.woff2')format("woff");}.ff1_c01120{font-family:ff1_c01120;line-height:1.480469;font-style:normal;font-weight:normal;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_5733208349e2f3b849ae5ab7.woff2')format("woff");}.ff2_c01120{font-family:ff2_c01120;line-height:1.284668;font-style:normal;font-weight:normal;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_bbb08d719049cd111f7c7edf.woff2')format("woff");}.ff3_c01120{font-family:ff3_c01120;line-height:1.568848;font-style:normal;font-weight:normal;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_ecc299549095dcc6463e8690.woff2')format("woff");}.ff4_c01120{font-family:ff4_c01120;line-height:1.402354;font-style:normal;font-weight:normal;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_d68eb773292d39aeb1e53f19.woff2')format("woff");}.ff5_c01120{font-family:ff5_c01120;line-height:1.284180;font-style:normal;font-weight:normal;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_6ae37f6a562fa0e9997ce7a2.woff2')format("woff");}.ff6_c01120{font-family:ff6_c01120;line-height:1.575000;font-style:normal;font-weight: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_c01120;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c01120{font-family:ff7_c01120;line-height:1.219238;font-style: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);}
.v0_c01120{vertical-align:0.000000px;}
.v1_c01120{vertical-align:132.000000px;}
.ls2_c01120{letter-spacing:-6.000000px;}
.ls6_c01120{letter-spacing:-3.000000px;}
.ls4_c01120{letter-spacing:0.000000px;}
.ls1_c01120{letter-spacing:1.428000px;}
.ls3_c01120{letter-spacing:6.000000px;}
.ls0_c01120{letter-spacing:12.000000px;}
.ls5_c01120{letter-spacing:21.000000px;}
.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;}
}
.ws5_c01120{word-spacing:-76.998000px;}
.ws2_c01120{word-spacing:-42.000000px;}
.ws3_c01120{word-spacing:-41.250000px;}
.ws1_c01120{word-spacing:-37.341000px;}
.ws6_c01120{word-spacing:-37.107000px;}
.ws4_c01120{word-spacing:-34.107000px;}
.ws0_c01120{word-spacing:-12.183000px;}
.ws7_c01120{word-spacing:0.000000px;}
._17_c01120{margin-left:-17.658000px;}
._1b_c01120{margin-left:-13.770000px;}
._10_c01120{margin-left:-11.868000px;}
._12_c01120{margin-left:-10.368000px;}
._18_c01120{margin-left:-8.667000px;}
._13_c01120{margin-left:-6.906000px;}
._15_c01120{margin-left:-4.515000px;}
._11_c01120{margin-left:-2.733000px;}
._19_c01120{margin-left:-1.407000px;}
._5_c01120{width:1.305000px;}
._e_c01120{width:2.415000px;}
._6_c01120{width:4.032000px;}
._7_c01120{width:5.382000px;}
._2_c01120{width:6.525000px;}
._a_c01120{width:8.229000px;}
._8_c01120{width:9.477000px;}
._1_c01120{width:10.875000px;}
._9_c01120{width:12.141000px;}
._3_c01120{width:13.485000px;}
._0_c01120{width:15.747000px;}
._d_c01120{width:17.934000px;}
._f_c01120{width:19.020000px;}
._14_c01120{width:20.550000px;}
._1c_c01120{width:24.996000px;}
._b_c01120{width:26.301000px;}
._16_c01120{width:28.605000px;}
._c_c01120{width:30.324000px;}
._1e_c01120{width:31.755000px;}
._1d_c01120{width:40.788000px;}
._1a_c01120{width:138.549000px;}
._4_c01120{width:311.397000px;}
._1f_c01120{width:313.887000px;}
.fc2_c01120{color:transparent;}
.fc1_c01120{color:rgb(128,128,128);}
.fc0_c01120{color:rgb(0,0,0);}
.fs6_c01120{font-size:48.000000px;}
.fs1_c01120{font-size:63.000000px;}
.fs2_c01120{font-size:81.000000px;}
.fs4_c01120{font-size:84.000000px;}
.fs0_c01120{font-size:87.000000px;}
.fs3_c01120{font-size:174.000000px;}
.fs5_c01120{font-size:246.000000px;}
.y0_c01120{bottom:0.000000px;}
.y1c_c01120{bottom:3.105000px;}
.y1b_c01120{bottom:7.228357px;}
.y1a_c01120{bottom:31.680000px;}
.y18_c01120{bottom:59.880000px;}
.y19_c01120{bottom:65.130000px;}
.y17_c01120{bottom:166.680000px;}
.y16_c01120{bottom:244.380000px;}
.y15_c01120{bottom:270.030000px;}
.y14_c01120{bottom:294.630000px;}
.y13_c01120{bottom:318.630000px;}
.y12_c01120{bottom:342.330000px;}
.y11_c01120{bottom:366.630000px;}
.y10_c01120{bottom:390.930000px;}
.yf_c01120{bottom:414.780000px;}
.ye_c01120{bottom:439.830000px;}
.yd_c01120{bottom:463.680000px;}
.yc_c01120{bottom:488.130000px;}
.ya_c01120{bottom:489.930000px;}
.yb_c01120{bottom:511.980000px;}
.y9_c01120{bottom:535.980000px;}
.y8_c01120{bottom:560.280000px;}
.y7_c01120{bottom:584.880000px;}
.y6_c01120{bottom:609.480000px;}
.y5_c01120{bottom:633.930000px;}
.y4_c01120{bottom:659.430000px;}
.y3_c01120{bottom:683.430000px;}
.y2_c01120{bottom:708.480000px;}
.y1_c01120{bottom:733.680000px;}
.ha_c01120{height:13.200074px;}
.hb_c01120{height:43.804688px;}
.h6_c01120{height:79.497070px;}
.h3_c01120{height:79.765137px;}
.h7_c01120{height:82.400391px;}
.h4_c01120{height:94.803223px;}
.h2_c01120{height:101.825684px;}
.h9_c01120{height:110.151855px;}
.h5_c01120{height:178.844581px;}
.h8_c01120{height:262.482000px;}
.h1_c01120{height:783.000000px;}
.h0_c01120{height:783.300000px;}
.w2_c01120{width:104.875500px;}
.w1_c01120{width:528.000000px;}
.w0_c01120{width:528.150000px;}
.x0_c01120{left:0.000000px;}
.xd_c01120{left:19.200000px;}
.xc_c01120{left:22.950000px;}
.xa_c01120{left:28.050000px;}
.x8_c01120{left:33.300000px;}
.x2_c01120{left:37.500000px;}
.x4_c01120{left:39.150000px;}
.x3_c01120{left:40.500000px;}
.x5_c01120{left:42.750000px;}
.x9_c01120{left:43.800000px;}
.x7_c01120{left:51.000000px;}
.x6_c01120{left:68.100000px;}
.xb_c01120{left:78.300000px;}
.xf_c01120{left:82.350000px;}
.x1_c01120{left:142.050000px;}
.xe_c01120{left:190.950000px;}
.x11_c01120{left:215.889267px;}
.x10_c01120{left:244.950000px;}
@media print{
.v0_c01120{vertical-align:0.000000pt;}
.v1_c01120{vertical-align:117.333333pt;}
.ls2_c01120{letter-spacing:-5.333333pt;}
.ls6_c01120{letter-spacing:-2.666667pt;}
.ls4_c01120{letter-spacing:0.000000pt;}
.ls1_c01120{letter-spacing:1.269333pt;}
.ls3_c01120{letter-spacing:5.333333pt;}
.ls0_c01120{letter-spacing:10.666667pt;}
.ls5_c01120{letter-spacing:18.666667pt;}
.ws5_c01120{word-spacing:-68.442667pt;}
.ws2_c01120{word-spacing:-37.333333pt;}
.ws3_c01120{word-spacing:-36.666667pt;}
.ws1_c01120{word-spacing:-33.192000pt;}
.ws6_c01120{word-spacing:-32.984000pt;}
.ws4_c01120{word-spacing:-30.317333pt;}
.ws0_c01120{word-spacing:-10.829333pt;}
.ws7_c01120{word-spacing:0.000000pt;}
._17_c01120{margin-left:-15.696000pt;}
._1b_c01120{margin-left:-12.240000pt;}
._10_c01120{margin-left:-10.549333pt;}
._12_c01120{margin-left:-9.216000pt;}
._18_c01120{margin-left:-7.704000pt;}
._13_c01120{margin-left:-6.138667pt;}
._15_c01120{margin-left:-4.013333pt;}
._11_c01120{margin-left:-2.429333pt;}
._19_c01120{margin-left:-1.250667pt;}
._5_c01120{width:1.160000pt;}
._e_c01120{width:2.146667pt;}
._6_c01120{width:3.584000pt;}
._7_c01120{width:4.784000pt;}
._2_c01120{width:5.800000pt;}
._a_c01120{width:7.314667pt;}
._8_c01120{width:8.424000pt;}
._1_c01120{width:9.666667pt;}
._9_c01120{width:10.792000pt;}
._3_c01120{width:11.986667pt;}
._0_c01120{width:13.997333pt;}
._d_c01120{width:15.941333pt;}
._f_c01120{width:16.906667pt;}
._14_c01120{width:18.266667pt;}
._1c_c01120{width:22.218667pt;}
._b_c01120{width:23.378667pt;}
._16_c01120{width:25.426667pt;}
._c_c01120{width:26.954667pt;}
._1e_c01120{width:28.226667pt;}
._1d_c01120{width:36.256000pt;}
._1a_c01120{width:123.154667pt;}
._4_c01120{width:276.797333pt;}
._1f_c01120{width:279.010667pt;}
.fs6_c01120{font-size:42.666667pt;}
.fs1_c01120{font-size:56.000000pt;}
.fs2_c01120{font-size:72.000000pt;}
.fs4_c01120{font-size:74.666667pt;}
.fs0_c01120{font-size:77.333333pt;}
.fs3_c01120{font-size:154.666667pt;}
.fs5_c01120{font-size:218.666667pt;}
.y0_c01120{bottom:0.000000pt;}
.y1c_c01120{bottom:2.760000pt;}
.y1b_c01120{bottom:6.425206pt;}
.y1a_c01120{bottom:28.160000pt;}
.y18_c01120{bottom:53.226667pt;}
.y19_c01120{bottom:57.893333pt;}
.y17_c01120{bottom:148.160000pt;}
.y16_c01120{bottom:217.226667pt;}
.y15_c01120{bottom:240.026667pt;}
.y14_c01120{bottom:261.893333pt;}
.y13_c01120{bottom:283.226667pt;}
.y12_c01120{bottom:304.293333pt;}
.y11_c01120{bottom:325.893333pt;}
.y10_c01120{bottom:347.493333pt;}
.yf_c01120{bottom:368.693333pt;}
.ye_c01120{bottom:390.960000pt;}
.yd_c01120{bottom:412.160000pt;}
.yc_c01120{bottom:433.893333pt;}
.ya_c01120{bottom:435.493333pt;}
.yb_c01120{bottom:455.093333pt;}
.y9_c01120{bottom:476.426667pt;}
.y8_c01120{bottom:498.026667pt;}
.y7_c01120{bottom:519.893333pt;}
.y6_c01120{bottom:541.760000pt;}
.y5_c01120{bottom:563.493333pt;}
.y4_c01120{bottom:586.160000pt;}
.y3_c01120{bottom:607.493333pt;}
.y2_c01120{bottom:629.760000pt;}
.y1_c01120{bottom:652.160000pt;}
.ha_c01120{height:11.733399pt;}
.hb_c01120{height:38.937500pt;}
.h6_c01120{height:70.664062pt;}
.h3_c01120{height:70.902344pt;}
.h7_c01120{height:73.244792pt;}
.h4_c01120{height:84.269531pt;}
.h2_c01120{height:90.511719pt;}
.h9_c01120{height:97.912760pt;}
.h5_c01120{height:158.972961pt;}
.h8_c01120{height:233.317333pt;}
.h1_c01120{height:696.000000pt;}
.h0_c01120{height:696.266667pt;}
.w2_c01120{width:93.222667pt;}
.w1_c01120{width:469.333333pt;}
.w0_c01120{width:469.466667pt;}
.x0_c01120{left:0.000000pt;}
.xd_c01120{left:17.066667pt;}
.xc_c01120{left:20.400000pt;}
.xa_c01120{left:24.933333pt;}
.x8_c01120{left:29.600000pt;}
.x2_c01120{left:33.333333pt;}
.x4_c01120{left:34.800000pt;}
.x3_c01120{left:36.000000pt;}
.x5_c01120{left:38.000000pt;}
.x9_c01120{left:38.933333pt;}
.x7_c01120{left:45.333333pt;}
.x6_c01120{left:60.533333pt;}
.xb_c01120{left:69.600000pt;}
.xf_c01120{left:73.200000pt;}
.x1_c01120{left:126.266667pt;}
.xe_c01120{left:169.733333pt;}
.x11_c01120{left:191.901571pt;}
.x10_c01120{left:217.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f637bc53530120b30a928189.woff2')format("woff");}.ff1_c01121{font-family:ff1_c01121;line-height:1.568848;font-style:normal;font-weight:normal;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_9c24ddb7eb56cd3e5199d2a6.woff2')format("woff");}.ff2_c01121{font-family:ff2_c01121;line-height:1.480469;font-style:normal;font-weight:normal;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_eca805a8251eaf0ab8d04a3b.woff2')format("woff");}.ff3_c01121{font-family:ff3_c01121;line-height:1.284668;font-style:normal;font-weight:normal;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_df4358d940830be0560a3491.woff2')format("woff");}.ff4_c01121{font-family:ff4_c01121;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01121{font-family:ff5_c01121;line-height:1.219238;font-style: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);}
.v0_c01121{vertical-align:0.000000px;}
.ls2_c01121{letter-spacing:0.000000px;}
.ls3_c01121{letter-spacing:3.000000px;}
.ls0_c01121{letter-spacing:5.988000px;}
.ls1_c01121{letter-spacing:13.212000px;}
.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:-17.352000px;}
.ws1_c01121{word-spacing:0.000000px;}
._2_c01121{margin-left:-30.096000px;}
._16_c01121{margin-left:-26.343000px;}
._1b_c01121{margin-left:-21.078000px;}
._1a_c01121{margin-left:-17.235000px;}
._1d_c01121{margin-left:-12.744000px;}
._1c_c01121{margin-left:-11.016000px;}
._0_c01121{margin-left:-9.864000px;}
._19_c01121{margin-left:-8.082000px;}
._18_c01121{margin-left:-7.056000px;}
._15_c01121{margin-left:-5.463000px;}
._7_c01121{margin-left:-4.176000px;}
._14_c01121{margin-left:-2.385000px;}
._12_c01121{margin-left:-1.215000px;}
._13_c01121{width:1.008000px;}
._9_c01121{width:2.088000px;}
._5_c01121{width:3.240000px;}
._a_c01121{width:4.320000px;}
._8_c01121{width:5.400000px;}
._6_c01121{width:6.408000px;}
._c_c01121{width:7.848000px;}
._4_c01121{width:9.072000px;}
._d_c01121{width:10.872000px;}
._10_c01121{width:11.880000px;}
._e_c01121{width:13.536000px;}
._17_c01121{width:14.688000px;}
._f_c01121{width:15.768000px;}
._b_c01121{width:19.152000px;}
._11_c01121{width:21.672000px;}
._1_c01121{width:22.896000px;}
._1e_c01121{width:32.472000px;}
._20_c01121{width:217.854000px;}
._1f_c01121{width:264.456000px;}
._3_c01121{width:313.824000px;}
.fc2_c01121{color:transparent;}
.fc1_c01121{color:rgb(128,128,128);}
.fc0_c01121{color:rgb(0,0,0);}
.fs4_c01121{font-size:48.000000px;}
.fs3_c01121{font-size:51.000000px;}
.fs2_c01121{font-size:63.000000px;}
.fs0_c01121{font-size:72.000000px;}
.fs1_c01121{font-size:75.000000px;}
.y0_c01121{bottom:0.000000px;}
.y1f_c01121{bottom:3.105000px;}
.y1e_c01121{bottom:7.228357px;}
.y1d_c01121{bottom:52.980000px;}
.y1c_c01121{bottom:74.880000px;}
.y1b_c01121{bottom:100.230000px;}
.y1a_c01121{bottom:125.280000px;}
.y19_c01121{bottom:149.880000px;}
.y18_c01121{bottom:174.180000px;}
.y17_c01121{bottom:199.230000px;}
.y16_c01121{bottom:223.830000px;}
.y15_c01121{bottom:248.430000px;}
.y14_c01121{bottom:273.030000px;}
.y13_c01121{bottom:298.080000px;}
.y12_c01121{bottom:316.530000px;}
.y11_c01121{bottom:346.380000px;}
.y10_c01121{bottom:370.980000px;}
.yf_c01121{bottom:394.230000px;}
.ye_c01121{bottom:417.930000px;}
.yd_c01121{bottom:441.180000px;}
.yc_c01121{bottom:465.030000px;}
.yb_c01121{bottom:489.330000px;}
.ya_c01121{bottom:513.630000px;}
.y9_c01121{bottom:537.930000px;}
.y8_c01121{bottom:562.680000px;}
.y7_c01121{bottom:586.980000px;}
.y6_c01121{bottom:612.330000px;}
.y5_c01121{bottom:636.930000px;}
.y4_c01121{bottom:661.230000px;}
.y3_c01121{bottom:685.830000px;}
.y2_c01121{bottom:710.130000px;}
.y1_c01121{bottom:735.480000px;}
.h3_c01121{height:13.200074px;}
.h4_c01121{height:43.804688px;}
.h2_c01121{height:91.160156px;}
.h1_c01121{height:783.000000px;}
.h0_c01121{height:783.300000px;}
.w2_c01121{width:104.875500px;}
.w0_c01121{width:504.375000px;}
.w1_c01121{width:504.750000px;}
.x0_c01121{left:0.000000px;}
.x4_c01121{left:90.900000px;}
.x2_c01121{left:92.100000px;}
.x3_c01121{left:93.450000px;}
.x1_c01121{left:116.100000px;}
.x6_c01121{left:204.001740px;}
.x5_c01121{left:416.850000px;}
@media print{
.v0_c01121{vertical-align:0.000000pt;}
.ls2_c01121{letter-spacing:0.000000pt;}
.ls3_c01121{letter-spacing:2.666667pt;}
.ls0_c01121{letter-spacing:5.322667pt;}
.ls1_c01121{letter-spacing:11.744000pt;}
.ws0_c01121{word-spacing:-15.424000pt;}
.ws1_c01121{word-spacing:0.000000pt;}
._2_c01121{margin-left:-26.752000pt;}
._16_c01121{margin-left:-23.416000pt;}
._1b_c01121{margin-left:-18.736000pt;}
._1a_c01121{margin-left:-15.320000pt;}
._1d_c01121{margin-left:-11.328000pt;}
._1c_c01121{margin-left:-9.792000pt;}
._0_c01121{margin-left:-8.768000pt;}
._19_c01121{margin-left:-7.184000pt;}
._18_c01121{margin-left:-6.272000pt;}
._15_c01121{margin-left:-4.856000pt;}
._7_c01121{margin-left:-3.712000pt;}
._14_c01121{margin-left:-2.120000pt;}
._12_c01121{margin-left:-1.080000pt;}
._13_c01121{width:0.896000pt;}
._9_c01121{width:1.856000pt;}
._5_c01121{width:2.880000pt;}
._a_c01121{width:3.840000pt;}
._8_c01121{width:4.800000pt;}
._6_c01121{width:5.696000pt;}
._c_c01121{width:6.976000pt;}
._4_c01121{width:8.064000pt;}
._d_c01121{width:9.664000pt;}
._10_c01121{width:10.560000pt;}
._e_c01121{width:12.032000pt;}
._17_c01121{width:13.056000pt;}
._f_c01121{width:14.016000pt;}
._b_c01121{width:17.024000pt;}
._11_c01121{width:19.264000pt;}
._1_c01121{width:20.352000pt;}
._1e_c01121{width:28.864000pt;}
._20_c01121{width:193.648000pt;}
._1f_c01121{width:235.072000pt;}
._3_c01121{width:278.954667pt;}
.fs4_c01121{font-size:42.666667pt;}
.fs3_c01121{font-size:45.333333pt;}
.fs2_c01121{font-size:56.000000pt;}
.fs0_c01121{font-size:64.000000pt;}
.fs1_c01121{font-size:66.666667pt;}
.y0_c01121{bottom:0.000000pt;}
.y1f_c01121{bottom:2.760000pt;}
.y1e_c01121{bottom:6.425206pt;}
.y1d_c01121{bottom:47.093333pt;}
.y1c_c01121{bottom:66.560000pt;}
.y1b_c01121{bottom:89.093333pt;}
.y1a_c01121{bottom:111.360000pt;}
.y19_c01121{bottom:133.226667pt;}
.y18_c01121{bottom:154.826667pt;}
.y17_c01121{bottom:177.093333pt;}
.y16_c01121{bottom:198.960000pt;}
.y15_c01121{bottom:220.826667pt;}
.y14_c01121{bottom:242.693333pt;}
.y13_c01121{bottom:264.960000pt;}
.y12_c01121{bottom:281.360000pt;}
.y11_c01121{bottom:307.893333pt;}
.y10_c01121{bottom:329.760000pt;}
.yf_c01121{bottom:350.426667pt;}
.ye_c01121{bottom:371.493333pt;}
.yd_c01121{bottom:392.160000pt;}
.yc_c01121{bottom:413.360000pt;}
.yb_c01121{bottom:434.960000pt;}
.ya_c01121{bottom:456.560000pt;}
.y9_c01121{bottom:478.160000pt;}
.y8_c01121{bottom:500.160000pt;}
.y7_c01121{bottom:521.760000pt;}
.y6_c01121{bottom:544.293333pt;}
.y5_c01121{bottom:566.160000pt;}
.y4_c01121{bottom:587.760000pt;}
.y3_c01121{bottom:609.626667pt;}
.y2_c01121{bottom:631.226667pt;}
.y1_c01121{bottom:653.760000pt;}
.h3_c01121{height:11.733399pt;}
.h4_c01121{height:38.937500pt;}
.h2_c01121{height:81.031250pt;}
.h1_c01121{height:696.000000pt;}
.h0_c01121{height:696.266667pt;}
.w2_c01121{width:93.222667pt;}
.w0_c01121{width:448.333333pt;}
.w1_c01121{width:448.666667pt;}
.x0_c01121{left:0.000000pt;}
.x4_c01121{left:80.800000pt;}
.x2_c01121{left:81.866667pt;}
.x3_c01121{left:83.066667pt;}
.x1_c01121{left:103.200000pt;}
.x6_c01121{left:181.334880pt;}
.x5_c01121{left:370.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bdee42c7a79042060019002c.woff2')format("woff");}.ff1_c01122{font-family:ff1_c01122;line-height:1.480469;font-style:normal;font-weight:normal;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_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff2_c01122{font-family:ff2_c01122;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01122;src:url('chunks/assets/font_2856e5e086a9a30d189a59c1.woff2')format("woff");}.ff3_c01122{font-family:ff3_c01122;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01122;src:url('chunks/assets/font_38b5738355612b8a2dc69960.woff2')format("woff");}.ff4_c01122{font-family:ff4_c01122;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01122;src:url('chunks/assets/font_73b14101fb785076a9906257.woff2')format("woff");}.ff5_c01122{font-family:ff5_c01122;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01122;src:url('chunks/assets/font_7cb2a0751e10bdb7f08a87d6.woff2')format("woff");}.ff6_c01122{font-family:ff6_c01122;line-height:1.568848;font-style:normal;font-weight: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_c01122;src:url('chunks/assets/font_0a7a88ca0bb53d9ff4dfef32.woff2')format("woff");}.ff7_c01122{font-family:ff7_c01122;line-height:1.592000;font-style:normal;font-weight: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_c01122;src:url('chunks/assets/font_fba91e135be20b30307fa275.woff2')format("woff");}.ff8_c01122{font-family:ff8_c01122;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01122;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff9_c01122{font-family:ff9_c01122;line-height:1.219238;font-style: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;}
.ls7_c01122{letter-spacing:-12.000000px;}
.ls6_c01122{letter-spacing:-9.000000px;}
.ls5_c01122{letter-spacing:0.000000px;}
.ls2_c01122{letter-spacing:0.588000px;}
.ls3_c01122{letter-spacing:3.000000px;}
.ls1_c01122{letter-spacing:4.248000px;}
.ls4_c01122{letter-spacing:7.680000px;}
.ls0_c01122{letter-spacing:12.000000px;}
.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;}
}
.ws5_c01122{word-spacing:-26.973000px;}
.ws3_c01122{word-spacing:-20.967000px;}
.ws0_c01122{word-spacing:-17.352000px;}
.ws4_c01122{word-spacing:-15.906000px;}
.ws1_c01122{word-spacing:-8.352000px;}
.ws6_c01122{word-spacing:0.000000px;}
.ws2_c01122{word-spacing:37.740000px;}
._17_c01122{margin-left:-34.272000px;}
._d_c01122{margin-left:-26.856000px;}
._14_c01122{margin-left:-21.024000px;}
._22_c01122{margin-left:-19.656000px;}
._20_c01122{margin-left:-18.168000px;}
._24_c01122{margin-left:-16.770000px;}
._1e_c01122{margin-left:-15.726000px;}
._16_c01122{margin-left:-13.224000px;}
._15_c01122{margin-left:-11.376000px;}
._9_c01122{margin-left:-9.504000px;}
._11_c01122{margin-left:-7.512000px;}
._1d_c01122{margin-left:-6.471000px;}
._4_c01122{margin-left:-5.352000px;}
._10_c01122{margin-left:-3.360000px;}
._e_c01122{margin-left:-2.160000px;}
._12_c01122{margin-left:-1.080000px;}
._f_c01122{width:1.080000px;}
._6_c01122{width:2.088000px;}
._7_c01122{width:3.312000px;}
._5_c01122{width:4.392000px;}
._a_c01122{width:5.904000px;}
._0_c01122{width:7.704000px;}
._8_c01122{width:9.000000px;}
._b_c01122{width:10.296000px;}
._19_c01122{width:11.304000px;}
._2_c01122{width:12.456000px;}
._1c_c01122{width:13.968000px;}
._1_c01122{width:15.192000px;}
._21_c01122{width:16.200000px;}
._18_c01122{width:19.224000px;}
._3_c01122{width:20.592000px;}
._1b_c01122{width:26.310000px;}
._27_c01122{width:30.942000px;}
._23_c01122{width:34.002000px;}
._1f_c01122{width:85.851000px;}
._c_c01122{width:179.280000px;}
._13_c01122{width:192.456000px;}
._25_c01122{width:283.170000px;}
._1a_c01122{width:327.576000px;}
._28_c01122{width:355.572000px;}
._26_c01122{width:636.732000px;}
.fc2_c01122{color:transparent;}
.fc1_c01122{color:rgb(128,128,128);}
.fc0_c01122{color:rgb(0,0,0);}
.fs8_c01122{font-size:48.000000px;}
.fs3_c01122{font-size:57.000000px;}
.fs2_c01122{font-size:63.000000px;}
.fs4_c01122{font-size:66.000000px;}
.fs0_c01122{font-size:72.000000px;}
.fs5_c01122{font-size:75.000000px;}
.fs1_c01122{font-size:78.000000px;}
.fs7_c01122{font-size:81.000000px;}
.fs6_c01122{font-size:87.000000px;}
.y0_c01122{bottom:0.000000px;}
.y1f_c01122{bottom:3.105000px;}
.y1e_c01122{bottom:7.228363px;}
.y1d_c01122{bottom:54.000000px;}
.y1c_c01122{bottom:81.300000px;}
.y1b_c01122{bottom:106.950000px;}
.y1a_c01122{bottom:133.650000px;}
.y19_c01122{bottom:158.850000px;}
.y18_c01122{bottom:180.900000px;}
.y17_c01122{bottom:208.500000px;}
.y16_c01122{bottom:234.150000px;}
.y15_c01122{bottom:258.450000px;}
.y14_c01122{bottom:281.850000px;}
.y13_c01122{bottom:308.100000px;}
.y12_c01122{bottom:332.100000px;}
.y11_c01122{bottom:355.650000px;}
.y10_c01122{bottom:379.650000px;}
.yf_c01122{bottom:404.550000px;}
.ye_c01122{bottom:429.600000px;}
.yd_c01122{bottom:453.300000px;}
.yc_c01122{bottom:478.200000px;}
.yb_c01122{bottom:501.450000px;}
.ya_c01122{bottom:524.850000px;}
.y9_c01122{bottom:549.450000px;}
.y8_c01122{bottom:574.050000px;}
.y7_c01122{bottom:599.700000px;}
.y6_c01122{bottom:623.400000px;}
.y5_c01122{bottom:647.700000px;}
.y4_c01122{bottom:672.600000px;}
.y3_c01122{bottom:697.500000px;}
.y2_c01122{bottom:722.550000px;}
.y1_c01122{bottom:747.450000px;}
.h8_c01122{height:13.200074px;}
.h9_c01122{height:43.804688px;}
.h3_c01122{height:73.608398px;}
.h5_c01122{height:76.552734px;}
.h7_c01122{height:83.563477px;}
.h4_c01122{height:84.552000px;}
.h2_c01122{height:91.160156px;}
.h6_c01122{height:110.151855px;}
.h0_c01122{height:778.950000px;}
.h1_c01122{height:779.250000px;}
.w2_c01122{width:104.875500px;}
.w1_c01122{width:527.250000px;}
.w0_c01122{width:527.325000px;}
.x0_c01122{left:0.000000px;}
.xc_c01122{left:11.550000px;}
.xb_c01122{left:14.400000px;}
.x5_c01122{left:17.250000px;}
.xd_c01122{left:20.550000px;}
.x8_c01122{left:21.900000px;}
.xa_c01122{left:24.000000px;}
.x7_c01122{left:25.350000px;}
.x2_c01122{left:27.300000px;}
.x3_c01122{left:28.350000px;}
.x6_c01122{left:29.400000px;}
.x4_c01122{left:30.600000px;}
.x9_c01122{left:51.900000px;}
.xe_c01122{left:55.800000px;}
.x1_c01122{left:142.800000px;}
.xf_c01122{left:215.476730px;}
@media print{
.v0_c01122{vertical-align:0.000000pt;}
.ls7_c01122{letter-spacing:-10.666667pt;}
.ls6_c01122{letter-spacing:-8.000000pt;}
.ls5_c01122{letter-spacing:0.000000pt;}
.ls2_c01122{letter-spacing:0.522667pt;}
.ls3_c01122{letter-spacing:2.666667pt;}
.ls1_c01122{letter-spacing:3.776000pt;}
.ls4_c01122{letter-spacing:6.826667pt;}
.ls0_c01122{letter-spacing:10.666667pt;}
.ws5_c01122{word-spacing:-23.976000pt;}
.ws3_c01122{word-spacing:-18.637333pt;}
.ws0_c01122{word-spacing:-15.424000pt;}
.ws4_c01122{word-spacing:-14.138667pt;}
.ws1_c01122{word-spacing:-7.424000pt;}
.ws6_c01122{word-spacing:0.000000pt;}
.ws2_c01122{word-spacing:33.546667pt;}
._17_c01122{margin-left:-30.464000pt;}
._d_c01122{margin-left:-23.872000pt;}
._14_c01122{margin-left:-18.688000pt;}
._22_c01122{margin-left:-17.472000pt;}
._20_c01122{margin-left:-16.149333pt;}
._24_c01122{margin-left:-14.906667pt;}
._1e_c01122{margin-left:-13.978667pt;}
._16_c01122{margin-left:-11.754667pt;}
._15_c01122{margin-left:-10.112000pt;}
._9_c01122{margin-left:-8.448000pt;}
._11_c01122{margin-left:-6.677333pt;}
._1d_c01122{margin-left:-5.752000pt;}
._4_c01122{margin-left:-4.757333pt;}
._10_c01122{margin-left:-2.986667pt;}
._e_c01122{margin-left:-1.920000pt;}
._12_c01122{margin-left:-0.960000pt;}
._f_c01122{width:0.960000pt;}
._6_c01122{width:1.856000pt;}
._7_c01122{width:2.944000pt;}
._5_c01122{width:3.904000pt;}
._a_c01122{width:5.248000pt;}
._0_c01122{width:6.848000pt;}
._8_c01122{width:8.000000pt;}
._b_c01122{width:9.152000pt;}
._19_c01122{width:10.048000pt;}
._2_c01122{width:11.072000pt;}
._1c_c01122{width:12.416000pt;}
._1_c01122{width:13.504000pt;}
._21_c01122{width:14.400000pt;}
._18_c01122{width:17.088000pt;}
._3_c01122{width:18.304000pt;}
._1b_c01122{width:23.386667pt;}
._27_c01122{width:27.504000pt;}
._23_c01122{width:30.224000pt;}
._1f_c01122{width:76.312000pt;}
._c_c01122{width:159.360000pt;}
._13_c01122{width:171.072000pt;}
._25_c01122{width:251.706667pt;}
._1a_c01122{width:291.178667pt;}
._28_c01122{width:316.064000pt;}
._26_c01122{width:565.984000pt;}
.fs8_c01122{font-size:42.666667pt;}
.fs3_c01122{font-size:50.666667pt;}
.fs2_c01122{font-size:56.000000pt;}
.fs4_c01122{font-size:58.666667pt;}
.fs0_c01122{font-size:64.000000pt;}
.fs5_c01122{font-size:66.666667pt;}
.fs1_c01122{font-size:69.333333pt;}
.fs7_c01122{font-size:72.000000pt;}
.fs6_c01122{font-size:77.333333pt;}
.y0_c01122{bottom:0.000000pt;}
.y1f_c01122{bottom:2.760000pt;}
.y1e_c01122{bottom:6.425212pt;}
.y1d_c01122{bottom:48.000000pt;}
.y1c_c01122{bottom:72.266667pt;}
.y1b_c01122{bottom:95.066667pt;}
.y1a_c01122{bottom:118.800000pt;}
.y19_c01122{bottom:141.200000pt;}
.y18_c01122{bottom:160.800000pt;}
.y17_c01122{bottom:185.333333pt;}
.y16_c01122{bottom:208.133333pt;}
.y15_c01122{bottom:229.733333pt;}
.y14_c01122{bottom:250.533333pt;}
.y13_c01122{bottom:273.866667pt;}
.y12_c01122{bottom:295.200000pt;}
.y11_c01122{bottom:316.133333pt;}
.y10_c01122{bottom:337.466667pt;}
.yf_c01122{bottom:359.600000pt;}
.ye_c01122{bottom:381.866667pt;}
.yd_c01122{bottom:402.933333pt;}
.yc_c01122{bottom:425.066667pt;}
.yb_c01122{bottom:445.733333pt;}
.ya_c01122{bottom:466.533333pt;}
.y9_c01122{bottom:488.400000pt;}
.y8_c01122{bottom:510.266667pt;}
.y7_c01122{bottom:533.066667pt;}
.y6_c01122{bottom:554.133333pt;}
.y5_c01122{bottom:575.733333pt;}
.y4_c01122{bottom:597.866667pt;}
.y3_c01122{bottom:620.000000pt;}
.y2_c01122{bottom:642.266667pt;}
.y1_c01122{bottom:664.400000pt;}
.h8_c01122{height:11.733399pt;}
.h9_c01122{height:38.937500pt;}
.h3_c01122{height:65.429688pt;}
.h5_c01122{height:68.046875pt;}
.h7_c01122{height:74.278646pt;}
.h4_c01122{height:75.157333pt;}
.h2_c01122{height:81.031250pt;}
.h6_c01122{height:97.912760pt;}
.h0_c01122{height:692.400000pt;}
.h1_c01122{height:692.666667pt;}
.w2_c01122{width:93.222667pt;}
.w1_c01122{width:468.666667pt;}
.w0_c01122{width:468.733333pt;}
.x0_c01122{left:0.000000pt;}
.xc_c01122{left:10.266667pt;}
.xb_c01122{left:12.800000pt;}
.x5_c01122{left:15.333333pt;}
.xd_c01122{left:18.266667pt;}
.x8_c01122{left:19.466667pt;}
.xa_c01122{left:21.333333pt;}
.x7_c01122{left:22.533333pt;}
.x2_c01122{left:24.266667pt;}
.x3_c01122{left:25.200000pt;}
.x6_c01122{left:26.133333pt;}
.x4_c01122{left:27.200000pt;}
.x9_c01122{left:46.133333pt;}
.xe_c01122{left:49.600000pt;}
.x1_c01122{left:126.933333pt;}
.xf_c01122{left:191.534871pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98ac9da54a1abfc6788d45e2.woff2')format("woff");}.ff1_c01123{font-family:ff1_c01123;line-height:1.480469;font-style:normal;font-weight:normal;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_b49f42a25811a1cfbcc38f63.woff2')format("woff");}.ff2_c01123{font-family:ff2_c01123;line-height:1.568848;font-style:normal;font-weight:normal;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_2be2dd6413e1a52e13140072.woff2')format("woff");}.ff3_c01123{font-family:ff3_c01123;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01123{font-family:ff4_c01123;line-height:1.219238;font-style: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);}
.v0_c01123{vertical-align:0.000000px;}
.ls3_c01123{letter-spacing:-3.000000px;}
.ls4_c01123{letter-spacing:0.000000px;}
.ls0_c01123{letter-spacing:11.388000px;}
.ls2_c01123{letter-spacing:14.388000px;}
.ls1_c01123{letter-spacing:17.388000px;}
.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;}
}
.ws0_c01123{word-spacing:-17.352000px;}
.ws1_c01123{word-spacing:0.000000px;}
._1b_c01123{margin-left:-26.712000px;}
._24_c01123{margin-left:-21.960000px;}
._19_c01123{margin-left:-17.388000px;}
._16_c01123{margin-left:-14.469000px;}
._6_c01123{margin-left:-8.700000px;}
._e_c01123{margin-left:-6.879000px;}
._3_c01123{margin-left:-5.655000px;}
._4_c01123{margin-left:-4.437000px;}
._2_c01123{margin-left:-3.132000px;}
._5_c01123{margin-left:-1.740000px;}
._b_c01123{width:1.440000px;}
._1_c01123{width:2.958000px;}
._8_c01123{width:4.287000px;}
._0_c01123{width:6.090000px;}
._a_c01123{width:7.302000px;}
._c_c01123{width:8.388000px;}
._d_c01123{width:9.603000px;}
._7_c01123{width:10.860000px;}
._f_c01123{width:11.952000px;}
._15_c01123{width:13.041000px;}
._10_c01123{width:14.157000px;}
._13_c01123{width:15.588000px;}
._1d_c01123{width:16.776000px;}
._14_c01123{width:19.740000px;}
._17_c01123{width:22.404000px;}
._1c_c01123{width:23.814000px;}
._12_c01123{width:27.474000px;}
._1e_c01123{width:34.839000px;}
._25_c01123{width:55.728000px;}
._22_c01123{width:62.469000px;}
._1f_c01123{width:67.575000px;}
._20_c01123{width:132.432000px;}
._21_c01123{width:240.996000px;}
._18_c01123{width:247.062000px;}
._9_c01123{width:265.194000px;}
._11_c01123{width:315.768000px;}
._23_c01123{width:370.419000px;}
._1a_c01123{width:434.277000px;}
.fc2_c01123{color:transparent;}
.fc1_c01123{color:rgb(128,128,128);}
.fc0_c01123{color:rgb(0,0,0);}
.fs4_c01123{font-size:24.000000px;}
.fs5_c01123{font-size:48.000000px;}
.fs3_c01123{font-size:63.000000px;}
.fs2_c01123{font-size:69.000000px;}
.fs1_c01123{font-size:72.000000px;}
.fs0_c01123{font-size:87.000000px;}
.y0_c01123{bottom:0.000000px;}
.y1d_c01123{bottom:3.105000px;}
.y1c_c01123{bottom:7.228355px;}
.y1b_c01123{bottom:67.185000px;}
.y1a_c01123{bottom:71.835000px;}
.y19_c01123{bottom:102.585000px;}
.y18_c01123{bottom:130.185000px;}
.y17_c01123{bottom:152.235000px;}
.y16_c01123{bottom:177.735000px;}
.y15_c01123{bottom:203.385000px;}
.y14_c01123{bottom:229.485000px;}
.y13_c01123{bottom:254.085000px;}
.y12_c01123{bottom:279.435000px;}
.y11_c01123{bottom:302.385000px;}
.y10_c01123{bottom:328.335000px;}
.yf_c01123{bottom:351.585000px;}
.ye_c01123{bottom:420.885000px;}
.yd_c01123{bottom:468.435000px;}
.yc_c01123{bottom:493.635000px;}
.yb_c01123{bottom:518.085000px;}
.ya_c01123{bottom:542.685000px;}
.y9_c01123{bottom:564.585000px;}
.y8_c01123{bottom:589.935000px;}
.y7_c01123{bottom:614.535000px;}
.y6_c01123{bottom:640.935000px;}
.y5_c01123{bottom:665.235000px;}
.y4_c01123{bottom:689.835000px;}
.y3_c01123{bottom:715.185000px;}
.y2_c01123{bottom:739.785000px;}
.y1_c01123{bottom:764.685000px;}
.h7_c01123{height:13.200074px;}
.h8_c01123{height:43.804688px;}
.h5_c01123{height:79.765137px;}
.h4_c01123{height:84.269531px;}
.h3_c01123{height:91.160156px;}
.h2_c01123{height:101.825684px;}
.h6_c01123{height:110.151855px;}
.h0_c01123{height:797.025000px;}
.h1_c01123{height:797.250000px;}
.w2_c01123{width:104.875500px;}
.w0_c01123{width:524.850000px;}
.w1_c01123{width:525.000000px;}
.x0_c01123{left:0.000000px;}
.x2_c01123{left:90.150000px;}
.x3_c01123{left:91.200000px;}
.x4_c01123{left:92.250000px;}
.x5_c01123{left:93.900000px;}
.x6_c01123{left:95.850000px;}
.xc_c01123{left:97.500000px;}
.x7_c01123{left:98.850000px;}
.xb_c01123{left:100.650000px;}
.xa_c01123{left:101.700000px;}
.xd_c01123{left:104.400000px;}
.xe_c01123{left:105.600000px;}
.x9_c01123{left:138.750000px;}
.x10_c01123{left:214.239258px;}
.xf_c01123{left:215.400000px;}
.x1_c01123{left:221.400000px;}
.x8_c01123{left:229.200000px;}
@media print{
.v0_c01123{vertical-align:0.000000pt;}
.ls3_c01123{letter-spacing:-2.666667pt;}
.ls4_c01123{letter-spacing:0.000000pt;}
.ls0_c01123{letter-spacing:10.122667pt;}
.ls2_c01123{letter-spacing:12.789333pt;}
.ls1_c01123{letter-spacing:15.456000pt;}
.ws0_c01123{word-spacing:-15.424000pt;}
.ws1_c01123{word-spacing:0.000000pt;}
._1b_c01123{margin-left:-23.744000pt;}
._24_c01123{margin-left:-19.520000pt;}
._19_c01123{margin-left:-15.456000pt;}
._16_c01123{margin-left:-12.861333pt;}
._6_c01123{margin-left:-7.733333pt;}
._e_c01123{margin-left:-6.114667pt;}
._3_c01123{margin-left:-5.026667pt;}
._4_c01123{margin-left:-3.944000pt;}
._2_c01123{margin-left:-2.784000pt;}
._5_c01123{margin-left:-1.546667pt;}
._b_c01123{width:1.280000pt;}
._1_c01123{width:2.629333pt;}
._8_c01123{width:3.810667pt;}
._0_c01123{width:5.413333pt;}
._a_c01123{width:6.490667pt;}
._c_c01123{width:7.456000pt;}
._d_c01123{width:8.536000pt;}
._7_c01123{width:9.653333pt;}
._f_c01123{width:10.624000pt;}
._15_c01123{width:11.592000pt;}
._10_c01123{width:12.584000pt;}
._13_c01123{width:13.856000pt;}
._1d_c01123{width:14.912000pt;}
._14_c01123{width:17.546667pt;}
._17_c01123{width:19.914667pt;}
._1c_c01123{width:21.168000pt;}
._12_c01123{width:24.421333pt;}
._1e_c01123{width:30.968000pt;}
._25_c01123{width:49.536000pt;}
._22_c01123{width:55.528000pt;}
._1f_c01123{width:60.066667pt;}
._20_c01123{width:117.717333pt;}
._21_c01123{width:214.218667pt;}
._18_c01123{width:219.610667pt;}
._9_c01123{width:235.728000pt;}
._11_c01123{width:280.682667pt;}
._23_c01123{width:329.261333pt;}
._1a_c01123{width:386.024000pt;}
.fs4_c01123{font-size:21.333333pt;}
.fs5_c01123{font-size:42.666667pt;}
.fs3_c01123{font-size:56.000000pt;}
.fs2_c01123{font-size:61.333333pt;}
.fs1_c01123{font-size:64.000000pt;}
.fs0_c01123{font-size:77.333333pt;}
.y0_c01123{bottom:0.000000pt;}
.y1d_c01123{bottom:2.760000pt;}
.y1c_c01123{bottom:6.425204pt;}
.y1b_c01123{bottom:59.720000pt;}
.y1a_c01123{bottom:63.853333pt;}
.y19_c01123{bottom:91.186667pt;}
.y18_c01123{bottom:115.720000pt;}
.y17_c01123{bottom:135.320000pt;}
.y16_c01123{bottom:157.986667pt;}
.y15_c01123{bottom:180.786667pt;}
.y14_c01123{bottom:203.986667pt;}
.y13_c01123{bottom:225.853333pt;}
.y12_c01123{bottom:248.386667pt;}
.y11_c01123{bottom:268.786667pt;}
.y10_c01123{bottom:291.853333pt;}
.yf_c01123{bottom:312.520000pt;}
.ye_c01123{bottom:374.120000pt;}
.yd_c01123{bottom:416.386667pt;}
.yc_c01123{bottom:438.786667pt;}
.yb_c01123{bottom:460.520000pt;}
.ya_c01123{bottom:482.386667pt;}
.y9_c01123{bottom:501.853333pt;}
.y8_c01123{bottom:524.386667pt;}
.y7_c01123{bottom:546.253333pt;}
.y6_c01123{bottom:569.720000pt;}
.y5_c01123{bottom:591.320000pt;}
.y4_c01123{bottom:613.186667pt;}
.y3_c01123{bottom:635.720000pt;}
.y2_c01123{bottom:657.586667pt;}
.y1_c01123{bottom:679.720000pt;}
.h7_c01123{height:11.733399pt;}
.h8_c01123{height:38.937500pt;}
.h5_c01123{height:70.902344pt;}
.h4_c01123{height:74.906250pt;}
.h3_c01123{height:81.031250pt;}
.h2_c01123{height:90.511719pt;}
.h6_c01123{height:97.912760pt;}
.h0_c01123{height:708.466667pt;}
.h1_c01123{height:708.666667pt;}
.w2_c01123{width:93.222667pt;}
.w0_c01123{width:466.533333pt;}
.w1_c01123{width:466.666667pt;}
.x0_c01123{left:0.000000pt;}
.x2_c01123{left:80.133333pt;}
.x3_c01123{left:81.066667pt;}
.x4_c01123{left:82.000000pt;}
.x5_c01123{left:83.466667pt;}
.x6_c01123{left:85.200000pt;}
.xc_c01123{left:86.666667pt;}
.x7_c01123{left:87.866667pt;}
.xb_c01123{left:89.466667pt;}
.xa_c01123{left:90.400000pt;}
.xd_c01123{left:92.800000pt;}
.xe_c01123{left:93.866667pt;}
.x9_c01123{left:123.333333pt;}
.x10_c01123{left:190.434896pt;}
.xf_c01123{left:191.466667pt;}
.x1_c01123{left:196.800000pt;}
.x8_c01123{left:203.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5b10a2df17b6c1a0911b682b.woff2')format("woff");}.ff1_c01124{font-family:ff1_c01124;line-height:1.480469;font-style:normal;font-weight:normal;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_6e961ab15e68efb3d65176e0.woff2')format("woff");}.ff2_c01124{font-family:ff2_c01124;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01124;src:url('chunks/assets/font_8e5fc60528c2e512a81a9545.woff2')format("woff");}.ff3_c01124{font-family:ff3_c01124;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01124;src:url('chunks/assets/font_dd9789eaf38c675518a3fab1.woff2')format("woff");}.ff4_c01124{font-family:ff4_c01124;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01124;src:url('chunks/assets/font_b94596b7d327f9cd647e55d1.woff2')format("woff");}.ff5_c01124{font-family:ff5_c01124;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01124;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01124{font-family:ff6_c01124;line-height:1.219238;font-style: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;}
.ls2_c01124{letter-spacing:-3.000000px;}
.ls4_c01124{letter-spacing:0.000000px;}
.ls0_c01124{letter-spacing:4.788000px;}
.ls1_c01124{letter-spacing:5.100000px;}
.ls3_c01124{letter-spacing:6.000000px;}
.sc__c01124{text-shadow:none;}
.sc0_c01124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01124{-webkit-text-stroke:0px transparent;}
.sc0_c01124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01124{word-spacing:-30.051000px;}
.ws0_c01124{word-spacing:-25.812000px;}
.ws2_c01124{word-spacing:0.000000px;}
._1c_c01124{margin-left:-38.520000px;}
._19_c01124{margin-left:-34.764000px;}
._18_c01124{margin-left:-18.936000px;}
._1b_c01124{margin-left:-13.320000px;}
._12_c01124{margin-left:-12.270000px;}
._17_c01124{margin-left:-11.016000px;}
._10_c01124{margin-left:-9.576000px;}
._11_c01124{margin-left:-8.532000px;}
._14_c01124{margin-left:-7.446000px;}
._16_c01124{margin-left:-6.018000px;}
._8_c01124{margin-left:-4.992000px;}
._7_c01124{margin-left:-3.354000px;}
._f_c01124{margin-left:-2.088000px;}
._15_c01124{margin-left:-1.056000px;}
._c_c01124{width:1.152000px;}
._5_c01124{width:2.340000px;}
._b_c01124{width:3.384000px;}
._4_c01124{width:4.680000px;}
._a_c01124{width:5.874000px;}
._9_c01124{width:6.960000px;}
._d_c01124{width:8.670000px;}
._e_c01124{width:10.488000px;}
._1_c01124{width:11.778000px;}
._1a_c01124{width:12.864000px;}
._2_c01124{width:14.508000px;}
._3_c01124{width:15.600000px;}
._0_c01124{width:18.330000px;}
._13_c01124{width:19.656000px;}
._1d_c01124{width:30.258000px;}
._6_c01124{width:216.078000px;}
._1e_c01124{width:303.369000px;}
.fc2_c01124{color:transparent;}
.fc1_c01124{color:rgb(128,128,128);}
.fc0_c01124{color:rgb(0,0,0);}
.fs1_c01124{font-size:30.000000px;}
.fs6_c01124{font-size:48.000000px;}
.fs3_c01124{font-size:63.000000px;}
.fs2_c01124{font-size:72.000000px;}
.fs0_c01124{font-size:78.000000px;}
.fs5_c01124{font-size:81.000000px;}
.fs4_c01124{font-size:87.000000px;}
.y0_c01124{bottom:0.000000px;}
.y1f_c01124{bottom:3.105000px;}
.y1e_c01124{bottom:7.228357px;}
.y1d_c01124{bottom:42.930000px;}
.y1c_c01124{bottom:69.180000px;}
.y1b_c01124{bottom:94.830000px;}
.y1a_c01124{bottom:121.230000px;}
.y19_c01124{bottom:143.880000px;}
.y18_c01124{bottom:171.180000px;}
.y17_c01124{bottom:196.080000px;}
.y16_c01124{bottom:218.730000px;}
.y15_c01124{bottom:246.480000px;}
.y14_c01124{bottom:270.330000px;}
.y13_c01124{bottom:293.730000px;}
.y12_c01124{bottom:320.280000px;}
.y11_c01124{bottom:344.280000px;}
.y10_c01124{bottom:367.230000px;}
.yf_c01124{bottom:392.280000px;}
.ye_c01124{bottom:416.430000px;}
.yd_c01124{bottom:440.730000px;}
.yc_c01124{bottom:465.180000px;}
.yb_c01124{bottom:489.780000px;}
.ya_c01124{bottom:513.780000px;}
.y9_c01124{bottom:537.630000px;}
.y8_c01124{bottom:561.030000px;}
.y7_c01124{bottom:585.930000px;}
.y6_c01124{bottom:611.280000px;}
.y5_c01124{bottom:634.230000px;}
.y4_c01124{bottom:659.430000px;}
.y3_c01124{bottom:683.430000px;}
.y2_c01124{bottom:709.830000px;}
.y1_c01124{bottom:733.680000px;}
.h5_c01124{height:13.200074px;}
.h6_c01124{height:43.804688px;}
.h3_c01124{height:91.160156px;}
.h2_c01124{height:91.291992px;}
.h4_c01124{height:110.151855px;}
.h0_c01124{height:788.700000px;}
.h1_c01124{height:789.000000px;}
.w2_c01124{width:104.875500px;}
.w0_c01124{width:524.625000px;}
.w1_c01124{width:525.000000px;}
.x0_c01124{left:0.000000px;}
.xb_c01124{left:12.900000px;}
.x7_c01124{left:14.550000px;}
.x2_c01124{left:16.200000px;}
.x8_c01124{left:17.250000px;}
.x5_c01124{left:18.300000px;}
.x9_c01124{left:19.650000px;}
.x4_c01124{left:21.300000px;}
.x3_c01124{left:22.650000px;}
.x6_c01124{left:23.700000px;}
.xa_c01124{left:39.150000px;}
.x1_c01124{left:127.350000px;}
.xd_c01124{left:214.126740px;}
.xc_c01124{left:227.250000px;}
@media print{
.v0_c01124{vertical-align:0.000000pt;}
.ls2_c01124{letter-spacing:-2.666667pt;}
.ls4_c01124{letter-spacing:0.000000pt;}
.ls0_c01124{letter-spacing:4.256000pt;}
.ls1_c01124{letter-spacing:4.533333pt;}
.ls3_c01124{letter-spacing:5.333333pt;}
.ws1_c01124{word-spacing:-26.712000pt;}
.ws0_c01124{word-spacing:-22.944000pt;}
.ws2_c01124{word-spacing:0.000000pt;}
._1c_c01124{margin-left:-34.240000pt;}
._19_c01124{margin-left:-30.901333pt;}
._18_c01124{margin-left:-16.832000pt;}
._1b_c01124{margin-left:-11.840000pt;}
._12_c01124{margin-left:-10.906667pt;}
._17_c01124{margin-left:-9.792000pt;}
._10_c01124{margin-left:-8.512000pt;}
._11_c01124{margin-left:-7.584000pt;}
._14_c01124{margin-left:-6.618667pt;}
._16_c01124{margin-left:-5.349333pt;}
._8_c01124{margin-left:-4.437333pt;}
._7_c01124{margin-left:-2.981333pt;}
._f_c01124{margin-left:-1.856000pt;}
._15_c01124{margin-left:-0.938667pt;}
._c_c01124{width:1.024000pt;}
._5_c01124{width:2.080000pt;}
._b_c01124{width:3.008000pt;}
._4_c01124{width:4.160000pt;}
._a_c01124{width:5.221333pt;}
._9_c01124{width:6.186667pt;}
._d_c01124{width:7.706667pt;}
._e_c01124{width:9.322667pt;}
._1_c01124{width:10.469333pt;}
._1a_c01124{width:11.434667pt;}
._2_c01124{width:12.896000pt;}
._3_c01124{width:13.866667pt;}
._0_c01124{width:16.293333pt;}
._13_c01124{width:17.472000pt;}
._1d_c01124{width:26.896000pt;}
._6_c01124{width:192.069333pt;}
._1e_c01124{width:269.661333pt;}
.fs1_c01124{font-size:26.666667pt;}
.fs6_c01124{font-size:42.666667pt;}
.fs3_c01124{font-size:56.000000pt;}
.fs2_c01124{font-size:64.000000pt;}
.fs0_c01124{font-size:69.333333pt;}
.fs5_c01124{font-size:72.000000pt;}
.fs4_c01124{font-size:77.333333pt;}
.y0_c01124{bottom:0.000000pt;}
.y1f_c01124{bottom:2.760000pt;}
.y1e_c01124{bottom:6.425206pt;}
.y1d_c01124{bottom:38.160000pt;}
.y1c_c01124{bottom:61.493333pt;}
.y1b_c01124{bottom:84.293333pt;}
.y1a_c01124{bottom:107.760000pt;}
.y19_c01124{bottom:127.893333pt;}
.y18_c01124{bottom:152.160000pt;}
.y17_c01124{bottom:174.293333pt;}
.y16_c01124{bottom:194.426667pt;}
.y15_c01124{bottom:219.093333pt;}
.y14_c01124{bottom:240.293333pt;}
.y13_c01124{bottom:261.093333pt;}
.y12_c01124{bottom:284.693333pt;}
.y11_c01124{bottom:306.026667pt;}
.y10_c01124{bottom:326.426667pt;}
.yf_c01124{bottom:348.693333pt;}
.ye_c01124{bottom:370.160000pt;}
.yd_c01124{bottom:391.760000pt;}
.yc_c01124{bottom:413.493333pt;}
.yb_c01124{bottom:435.360000pt;}
.ya_c01124{bottom:456.693333pt;}
.y9_c01124{bottom:477.893333pt;}
.y8_c01124{bottom:498.693333pt;}
.y7_c01124{bottom:520.826667pt;}
.y6_c01124{bottom:543.360000pt;}
.y5_c01124{bottom:563.760000pt;}
.y4_c01124{bottom:586.160000pt;}
.y3_c01124{bottom:607.493333pt;}
.y2_c01124{bottom:630.960000pt;}
.y1_c01124{bottom:652.160000pt;}
.h5_c01124{height:11.733399pt;}
.h6_c01124{height:38.937500pt;}
.h3_c01124{height:81.031250pt;}
.h2_c01124{height:81.148438pt;}
.h4_c01124{height:97.912760pt;}
.h0_c01124{height:701.066667pt;}
.h1_c01124{height:701.333333pt;}
.w2_c01124{width:93.222667pt;}
.w0_c01124{width:466.333333pt;}
.w1_c01124{width:466.666667pt;}
.x0_c01124{left:0.000000pt;}
.xb_c01124{left:11.466667pt;}
.x7_c01124{left:12.933333pt;}
.x2_c01124{left:14.400000pt;}
.x8_c01124{left:15.333333pt;}
.x5_c01124{left:16.266667pt;}
.x9_c01124{left:17.466667pt;}
.x4_c01124{left:18.933333pt;}
.x3_c01124{left:20.133333pt;}
.x6_c01124{left:21.066667pt;}
.xa_c01124{left:34.800000pt;}
.x1_c01124{left:113.200000pt;}
.xd_c01124{left:190.334880pt;}
.xc_c01124{left:202.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_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_8a6e02fae81bdceb0e07bfbf.woff2')format("woff");}.ff1_c01125{font-family:ff1_c01125;line-height:1.568848;font-style:normal;font-weight:normal;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_eccf5b984d2e9962a881c9a1.woff2')format("woff");}.ff2_c01125{font-family:ff2_c01125;line-height:1.480469;font-style:normal;font-weight:normal;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_7e932bbbf102a82fca7b604d.woff2')format("woff");}.ff3_c01125{font-family:ff3_c01125;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01125{font-family:ff4_c01125;line-height:1.219238;font-style: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);}
.v1_c01125{vertical-align:-9.600000px;}
.v0_c01125{vertical-align:0.000000px;}
.ls2_c01125{letter-spacing:0.000000px;}
.ls0_c01125{letter-spacing:3.063000px;}
.ls1_c01125{letter-spacing:132.960000px;}
.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;}
}
.ws2_c01125{word-spacing:-30.051000px;}
.ws1_c01125{word-spacing:-17.352000px;}
.ws0_c01125{word-spacing:-14.460000px;}
.ws3_c01125{word-spacing:-12.291000px;}
.ws4_c01125{word-spacing:0.000000px;}
._1c_c01125{margin-left:-20.952000px;}
._19_c01125{margin-left:-17.940000px;}
._11_c01125{margin-left:-14.616000px;}
._13_c01125{margin-left:-12.240000px;}
._12_c01125{margin-left:-10.620000px;}
._10_c01125{margin-left:-8.856000px;}
._0_c01125{margin-left:-7.488000px;}
._2_c01125{margin-left:-5.328000px;}
._1a_c01125{margin-left:-4.056000px;}
._14_c01125{margin-left:-2.952000px;}
._c_c01125{margin-left:-1.860000px;}
._f_c01125{width:1.728000px;}
._e_c01125{width:3.024000px;}
._17_c01125{width:4.248000px;}
._d_c01125{width:5.256000px;}
._8_c01125{width:6.912000px;}
._16_c01125{width:7.920000px;}
._9_c01125{width:9.288000px;}
._1b_c01125{width:10.296000px;}
._6_c01125{width:11.592000px;}
._5_c01125{width:12.672000px;}
._a_c01125{width:14.256000px;}
._b_c01125{width:17.280000px;}
._7_c01125{width:19.728000px;}
._4_c01125{width:22.608000px;}
._1d_c01125{width:31.896000px;}
._1f_c01125{width:41.748000px;}
._1e_c01125{width:67.248000px;}
._18_c01125{width:87.552000px;}
._1_c01125{width:141.696000px;}
._3_c01125{width:260.424000px;}
._15_c01125{width:265.824000px;}
.fc2_c01125{color:transparent;}
.fc1_c01125{color:rgb(128,128,128);}
.fc0_c01125{color:rgb(0,0,0);}
.fs5_c01125{font-size:48.000000px;}
.fs4_c01125{font-size:51.000000px;}
.fs2_c01125{font-size:57.000000px;}
.fs1_c01125{font-size:60.000000px;}
.fs3_c01125{font-size:63.000000px;}
.fs0_c01125{font-size:72.000000px;}
.y0_c01125{bottom:0.000000px;}
.y1e_c01125{bottom:3.105000px;}
.y1d_c01125{bottom:7.228369px;}
.y1c_c01125{bottom:49.620000px;}
.y1b_c01125{bottom:55.920000px;}
.y1a_c01125{bottom:78.870000px;}
.y19_c01125{bottom:102.270000px;}
.y18_c01125{bottom:127.620000px;}
.y17_c01125{bottom:155.670000px;}
.y16_c01125{bottom:223.470000px;}
.y15_c01125{bottom:250.320000px;}
.y14_c01125{bottom:276.120000px;}
.y13_c01125{bottom:301.020000px;}
.y12_c01125{bottom:325.320000px;}
.y11_c01125{bottom:349.320000px;}
.y10_c01125{bottom:373.170000px;}
.yf_c01125{bottom:398.520000px;}
.ye_c01125{bottom:420.870000px;}
.yd_c01125{bottom:446.520000px;}
.yc_c01125{bottom:469.020000px;}
.yb_c01125{bottom:490.020000px;}
.ya_c01125{bottom:518.070000px;}
.y9_c01125{bottom:542.070000px;}
.y8_c01125{bottom:567.270000px;}
.y7_c01125{bottom:591.270000px;}
.y6_c01125{bottom:616.320000px;}
.y5_c01125{bottom:641.970000px;}
.y4_c01125{bottom:664.920000px;}
.y3_c01125{bottom:689.820000px;}
.y2_c01125{bottom:714.720000px;}
.y1_c01125{bottom:740.520000px;}
.h5_c01125{height:13.200073px;}
.h6_c01125{height:43.804688px;}
.h4_c01125{height:64.571777px;}
.h3_c01125{height:81.560156px;}
.h2_c01125{height:91.160156px;}
.h1_c01125{height:790.500000px;}
.h0_c01125{height:790.800000px;}
.w2_c01125{width:104.875500px;}
.w1_c01125{width:516.000000px;}
.w0_c01125{width:516.225000px;}
.x0_c01125{left:0.000000px;}
.x1_c01125{left:83.250000px;}
.x2_c01125{left:88.500000px;}
.x3_c01125{left:89.550000px;}
.x5_c01125{left:92.250000px;}
.x6_c01125{left:93.600000px;}
.x7_c01125{left:96.150000px;}
.x8_c01125{left:98.550000px;}
.x9_c01125{left:99.900000px;}
.xa_c01125{left:101.550000px;}
.xb_c01125{left:103.050000px;}
.xc_c01125{left:107.100000px;}
.xe_c01125{left:108.450000px;}
.x4_c01125{left:123.300000px;}
.xd_c01125{left:153.600000px;}
.x11_c01125{left:209.926758px;}
.xf_c01125{left:447.150000px;}
.x10_c01125{left:466.800000px;}
@media print{
.v1_c01125{vertical-align:-8.533333pt;}
.v0_c01125{vertical-align:0.000000pt;}
.ls2_c01125{letter-spacing:0.000000pt;}
.ls0_c01125{letter-spacing:2.722667pt;}
.ls1_c01125{letter-spacing:118.186667pt;}
.ws2_c01125{word-spacing:-26.712000pt;}
.ws1_c01125{word-spacing:-15.424000pt;}
.ws0_c01125{word-spacing:-12.853333pt;}
.ws3_c01125{word-spacing:-10.925333pt;}
.ws4_c01125{word-spacing:0.000000pt;}
._1c_c01125{margin-left:-18.624000pt;}
._19_c01125{margin-left:-15.946667pt;}
._11_c01125{margin-left:-12.992000pt;}
._13_c01125{margin-left:-10.880000pt;}
._12_c01125{margin-left:-9.440000pt;}
._10_c01125{margin-left:-7.872000pt;}
._0_c01125{margin-left:-6.656000pt;}
._2_c01125{margin-left:-4.736000pt;}
._1a_c01125{margin-left:-3.605333pt;}
._14_c01125{margin-left:-2.624000pt;}
._c_c01125{margin-left:-1.653333pt;}
._f_c01125{width:1.536000pt;}
._e_c01125{width:2.688000pt;}
._17_c01125{width:3.776000pt;}
._d_c01125{width:4.672000pt;}
._8_c01125{width:6.144000pt;}
._16_c01125{width:7.040000pt;}
._9_c01125{width:8.256000pt;}
._1b_c01125{width:9.152000pt;}
._6_c01125{width:10.304000pt;}
._5_c01125{width:11.264000pt;}
._a_c01125{width:12.672000pt;}
._b_c01125{width:15.360000pt;}
._7_c01125{width:17.536000pt;}
._4_c01125{width:20.096000pt;}
._1d_c01125{width:28.352000pt;}
._1f_c01125{width:37.109333pt;}
._1e_c01125{width:59.776000pt;}
._18_c01125{width:77.824000pt;}
._1_c01125{width:125.952000pt;}
._3_c01125{width:231.488000pt;}
._15_c01125{width:236.288000pt;}
.fs5_c01125{font-size:42.666667pt;}
.fs4_c01125{font-size:45.333333pt;}
.fs2_c01125{font-size:50.666667pt;}
.fs1_c01125{font-size:53.333333pt;}
.fs3_c01125{font-size:56.000000pt;}
.fs0_c01125{font-size:64.000000pt;}
.y0_c01125{bottom:0.000000pt;}
.y1e_c01125{bottom:2.760000pt;}
.y1d_c01125{bottom:6.425217pt;}
.y1c_c01125{bottom:44.106667pt;}
.y1b_c01125{bottom:49.706667pt;}
.y1a_c01125{bottom:70.106667pt;}
.y19_c01125{bottom:90.906667pt;}
.y18_c01125{bottom:113.440000pt;}
.y17_c01125{bottom:138.373333pt;}
.y16_c01125{bottom:198.640000pt;}
.y15_c01125{bottom:222.506667pt;}
.y14_c01125{bottom:245.440000pt;}
.y13_c01125{bottom:267.573333pt;}
.y12_c01125{bottom:289.173333pt;}
.y11_c01125{bottom:310.506667pt;}
.y10_c01125{bottom:331.706667pt;}
.yf_c01125{bottom:354.240000pt;}
.ye_c01125{bottom:374.106667pt;}
.yd_c01125{bottom:396.906667pt;}
.yc_c01125{bottom:416.906667pt;}
.yb_c01125{bottom:435.573333pt;}
.ya_c01125{bottom:460.506667pt;}
.y9_c01125{bottom:481.840000pt;}
.y8_c01125{bottom:504.240000pt;}
.y7_c01125{bottom:525.573333pt;}
.y6_c01125{bottom:547.840000pt;}
.y5_c01125{bottom:570.640000pt;}
.y4_c01125{bottom:591.040000pt;}
.y3_c01125{bottom:613.173333pt;}
.y2_c01125{bottom:635.306667pt;}
.y1_c01125{bottom:658.240000pt;}
.h5_c01125{height:11.733399pt;}
.h6_c01125{height:38.937500pt;}
.h4_c01125{height:57.397135pt;}
.h3_c01125{height:72.497917pt;}
.h2_c01125{height:81.031250pt;}
.h1_c01125{height:702.666667pt;}
.h0_c01125{height:702.933333pt;}
.w2_c01125{width:93.222667pt;}
.w1_c01125{width:458.666667pt;}
.w0_c01125{width:458.866667pt;}
.x0_c01125{left:0.000000pt;}
.x1_c01125{left:74.000000pt;}
.x2_c01125{left:78.666667pt;}
.x3_c01125{left:79.600000pt;}
.x5_c01125{left:82.000000pt;}
.x6_c01125{left:83.200000pt;}
.x7_c01125{left:85.466667pt;}
.x8_c01125{left:87.600000pt;}
.x9_c01125{left:88.800000pt;}
.xa_c01125{left:90.266667pt;}
.xb_c01125{left:91.600000pt;}
.xc_c01125{left:95.200000pt;}
.xe_c01125{left:96.400000pt;}
.x4_c01125{left:109.600000pt;}
.xd_c01125{left:136.533333pt;}
.x11_c01125{left:186.601563pt;}
.xf_c01125{left:397.466667pt;}
.x10_c01125{left:414.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_17be33554e5e013bd8cee20a.woff2')format("woff");}.ff1_c01126{font-family:ff1_c01126;line-height:1.284180;font-style:normal;font-weight:normal;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_3c51df77bb77cd58d25967ff.woff2')format("woff");}.ff2_c01126{font-family:ff2_c01126;line-height:1.284668;font-style:normal;font-weight:normal;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_347e039af7af5da549ec26a1.woff2')format("woff");}.ff3_c01126{font-family:ff3_c01126;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01126;src:url('chunks/assets/font_51b4144d642fe8051b430f32.woff2')format("woff");}.ff4_c01126{font-family:ff4_c01126;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01126;src:url('chunks/assets/font_ad893e86dac3fcbdad0eaf4a.woff2')format("woff");}.ff5_c01126{font-family:ff5_c01126;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01126;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01126{font-family:ff6_c01126;line-height:1.219238;font-style: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;}
.ls1_c01126{letter-spacing:0.000000px;}
.ls0_c01126{letter-spacing:20.388000px;}
.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:-21.672000px;}
.ws1_c01126{word-spacing:-17.352000px;}
.ws2_c01126{word-spacing:0.000000px;}
._17_c01126{margin-left:-17.352000px;}
._f_c01126{margin-left:-12.672000px;}
._10_c01126{margin-left:-10.728000px;}
._14_c01126{margin-left:-9.696000px;}
._15_c01126{margin-left:-8.424000px;}
._16_c01126{margin-left:-7.296000px;}
._c_c01126{margin-left:-5.976000px;}
._d_c01126{margin-left:-4.032000px;}
._b_c01126{margin-left:-3.024000px;}
._a_c01126{margin-left:-2.016000px;}
._9_c01126{margin-left:-1.008000px;}
._12_c01126{width:1.248000px;}
._7_c01126{width:2.304000px;}
._e_c01126{width:3.312000px;}
._8_c01126{width:4.680000px;}
._11_c01126{width:5.904000px;}
._5_c01126{width:7.392000px;}
._2_c01126{width:8.484000px;}
._13_c01126{width:9.624000px;}
._4_c01126{width:11.088000px;}
._1_c01126{width:12.180000px;}
._3_c01126{width:14.448000px;}
._0_c01126{width:15.708000px;}
._1c_c01126{width:17.628000px;}
._19_c01126{width:18.780000px;}
._1b_c01126{width:25.824000px;}
._18_c01126{width:29.160000px;}
._1a_c01126{width:35.388000px;}
._6_c01126{width:287.550000px;}
.fc2_c01126{color:transparent;}
.fc1_c01126{color:rgb(128,128,128);}
.fc0_c01126{color:rgb(0,0,0);}
.fs5_c01126{font-size:48.000000px;}
.fs4_c01126{font-size:63.000000px;}
.fs2_c01126{font-size:72.000000px;}
.fs3_c01126{font-size:78.000000px;}
.fs1_c01126{font-size:81.000000px;}
.fs0_c01126{font-size:84.000000px;}
.y0_c01126{bottom:0.000000px;}
.y1f_c01126{bottom:3.105000px;}
.y1e_c01126{bottom:7.228355px;}
.y1d_c01126{bottom:32.385000px;}
.y1c_c01126{bottom:66.735000px;}
.y1b_c01126{bottom:91.785000px;}
.y1a_c01126{bottom:117.135000px;}
.y19_c01126{bottom:142.035000px;}
.y18_c01126{bottom:166.635000px;}
.y17_c01126{bottom:191.685000px;}
.y16_c01126{bottom:217.035000px;}
.y15_c01126{bottom:239.235000px;}
.y14_c01126{bottom:266.535000px;}
.y13_c01126{bottom:289.485000px;}
.y12_c01126{bottom:316.185000px;}
.y11_c01126{bottom:340.485000px;}
.y10_c01126{bottom:364.485000px;}
.yf_c01126{bottom:388.335000px;}
.ye_c01126{bottom:413.385000px;}
.yd_c01126{bottom:437.385000px;}
.yc_c01126{bottom:461.685000px;}
.yb_c01126{bottom:486.285000px;}
.ya_c01126{bottom:510.585000px;}
.y9_c01126{bottom:534.285000px;}
.y8_c01126{bottom:559.185000px;}
.y7_c01126{bottom:584.835000px;}
.y6_c01126{bottom:609.435000px;}
.y5_c01126{bottom:632.835000px;}
.y4_c01126{bottom:658.485000px;}
.y3_c01126{bottom:683.985000px;}
.y2_c01126{bottom:707.985000px;}
.y1_c01126{bottom:733.935000px;}
.h5_c01126{height:13.200074px;}
.h6_c01126{height:43.804688px;}
.h2_c01126{height:82.400391px;}
.h3_c01126{height:91.160156px;}
.h4_c01126{height:98.756836px;}
.h0_c01126{height:782.175000px;}
.h1_c01126{height:782.250000px;}
.w1_c01126{width:104.875500px;}
.w0_c01126{width:540.000000px;}
.x0_c01126{left:0.000000px;}
.x9_c01126{left:27.300000px;}
.x2_c01126{left:31.350000px;}
.x4_c01126{left:34.650000px;}
.x5_c01126{left:36.150000px;}
.x6_c01126{left:39.150000px;}
.x7_c01126{left:40.800000px;}
.x8_c01126{left:41.850000px;}
.xa_c01126{left:43.800000px;}
.xb_c01126{left:45.600000px;}
.xc_c01126{left:47.250000px;}
.xd_c01126{left:48.300000px;}
.x3_c01126{left:102.600000px;}
.x1_c01126{left:150.150000px;}
.xf_c01126{left:221.814240px;}
.xe_c01126{left:258.450000px;}
@media print{
.v0_c01126{vertical-align:0.000000pt;}
.ls1_c01126{letter-spacing:0.000000pt;}
.ls0_c01126{letter-spacing:18.122667pt;}
.ws0_c01126{word-spacing:-19.264000pt;}
.ws1_c01126{word-spacing:-15.424000pt;}
.ws2_c01126{word-spacing:0.000000pt;}
._17_c01126{margin-left:-15.424000pt;}
._f_c01126{margin-left:-11.264000pt;}
._10_c01126{margin-left:-9.536000pt;}
._14_c01126{margin-left:-8.618667pt;}
._15_c01126{margin-left:-7.488000pt;}
._16_c01126{margin-left:-6.485333pt;}
._c_c01126{margin-left:-5.312000pt;}
._d_c01126{margin-left:-3.584000pt;}
._b_c01126{margin-left:-2.688000pt;}
._a_c01126{margin-left:-1.792000pt;}
._9_c01126{margin-left:-0.896000pt;}
._12_c01126{width:1.109333pt;}
._7_c01126{width:2.048000pt;}
._e_c01126{width:2.944000pt;}
._8_c01126{width:4.160000pt;}
._11_c01126{width:5.248000pt;}
._5_c01126{width:6.570667pt;}
._2_c01126{width:7.541333pt;}
._13_c01126{width:8.554667pt;}
._4_c01126{width:9.856000pt;}
._1_c01126{width:10.826667pt;}
._3_c01126{width:12.842667pt;}
._0_c01126{width:13.962667pt;}
._1c_c01126{width:15.669333pt;}
._19_c01126{width:16.693333pt;}
._1b_c01126{width:22.954667pt;}
._18_c01126{width:25.920000pt;}
._1a_c01126{width:31.456000pt;}
._6_c01126{width:255.600000pt;}
.fs5_c01126{font-size:42.666667pt;}
.fs4_c01126{font-size:56.000000pt;}
.fs2_c01126{font-size:64.000000pt;}
.fs3_c01126{font-size:69.333333pt;}
.fs1_c01126{font-size:72.000000pt;}
.fs0_c01126{font-size:74.666667pt;}
.y0_c01126{bottom:0.000000pt;}
.y1f_c01126{bottom:2.760000pt;}
.y1e_c01126{bottom:6.425204pt;}
.y1d_c01126{bottom:28.786667pt;}
.y1c_c01126{bottom:59.320000pt;}
.y1b_c01126{bottom:81.586667pt;}
.y1a_c01126{bottom:104.120000pt;}
.y19_c01126{bottom:126.253333pt;}
.y18_c01126{bottom:148.120000pt;}
.y17_c01126{bottom:170.386667pt;}
.y16_c01126{bottom:192.920000pt;}
.y15_c01126{bottom:212.653333pt;}
.y14_c01126{bottom:236.920000pt;}
.y13_c01126{bottom:257.320000pt;}
.y12_c01126{bottom:281.053333pt;}
.y11_c01126{bottom:302.653333pt;}
.y10_c01126{bottom:323.986667pt;}
.yf_c01126{bottom:345.186667pt;}
.ye_c01126{bottom:367.453333pt;}
.yd_c01126{bottom:388.786667pt;}
.yc_c01126{bottom:410.386667pt;}
.yb_c01126{bottom:432.253333pt;}
.ya_c01126{bottom:453.853333pt;}
.y9_c01126{bottom:474.920000pt;}
.y8_c01126{bottom:497.053333pt;}
.y7_c01126{bottom:519.853333pt;}
.y6_c01126{bottom:541.720000pt;}
.y5_c01126{bottom:562.520000pt;}
.y4_c01126{bottom:585.320000pt;}
.y3_c01126{bottom:607.986667pt;}
.y2_c01126{bottom:629.320000pt;}
.y1_c01126{bottom:652.386667pt;}
.h5_c01126{height:11.733399pt;}
.h6_c01126{height:38.937500pt;}
.h2_c01126{height:73.244792pt;}
.h3_c01126{height:81.031250pt;}
.h4_c01126{height:87.783854pt;}
.h0_c01126{height:695.266667pt;}
.h1_c01126{height:695.333333pt;}
.w1_c01126{width:93.222667pt;}
.w0_c01126{width:480.000000pt;}
.x0_c01126{left:0.000000pt;}
.x9_c01126{left:24.266667pt;}
.x2_c01126{left:27.866667pt;}
.x4_c01126{left:30.800000pt;}
.x5_c01126{left:32.133333pt;}
.x6_c01126{left:34.800000pt;}
.x7_c01126{left:36.266667pt;}
.x8_c01126{left:37.200000pt;}
.xa_c01126{left:38.933333pt;}
.xb_c01126{left:40.533333pt;}
.xc_c01126{left:42.000000pt;}
.xd_c01126{left:42.933333pt;}
.x3_c01126{left:91.200000pt;}
.x1_c01126{left:133.466667pt;}
.xf_c01126{left:197.168213pt;}
.xe_c01126{left:229.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f142de6c4bcc9fb8077eee13.woff2')format("woff");}.ff1_c01127{font-family:ff1_c01127;line-height:1.480469;font-style:normal;font-weight:normal;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_ea57d36c785900db180550a9.woff2')format("woff");}.ff2_c01127{font-family:ff2_c01127;line-height:1.568848;font-style:normal;font-weight:normal;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_50d6ef563aac8988c71e7f1f.woff2')format("woff");}.ff3_c01127{font-family:ff3_c01127;line-height:1.575000;font-style:normal;font-weight:normal;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_4cb7f0760e3b058fa8b3cf47.woff2')format("woff");}.ff4_c01127{font-family:ff4_c01127;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01127;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01127{font-family:ff5_c01127;line-height:1.219238;font-style: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;}
.ls0_c01127{letter-spacing:-3.000000px;}
.ls1_c01127{letter-spacing:0.000000px;}
.ls2_c01127{letter-spacing:3.000000px;}
.ls3_c01127{letter-spacing:6.000000px;}
.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:-37.107000px;}
.ws1_c01127{word-spacing:-33.192000px;}
.ws2_c01127{word-spacing:0.000000px;}
._1c_c01127{margin-left:-23.832000px;}
._1a_c01127{margin-left:-18.072000px;}
._7_c01127{margin-left:-15.078000px;}
._18_c01127{margin-left:-13.989000px;}
._8_c01127{margin-left:-11.664000px;}
._11_c01127{margin-left:-8.847000px;}
._f_c01127{margin-left:-7.641000px;}
._c_c01127{margin-left:-6.615000px;}
._4_c01127{margin-left:-5.256000px;}
._3_c01127{margin-left:-3.240000px;}
._b_c01127{margin-left:-1.458000px;}
._0_c01127{width:1.131000px;}
._5_c01127{width:2.736000px;}
._6_c01127{width:4.392000px;}
._2_c01127{width:5.616000px;}
._a_c01127{width:7.200000px;}
._1_c01127{width:9.144000px;}
._d_c01127{width:10.368000px;}
._9_c01127{width:12.129000px;}
._15_c01127{width:13.584000px;}
._17_c01127{width:14.706000px;}
._16_c01127{width:16.083000px;}
._14_c01127{width:18.774000px;}
._12_c01127{width:20.172000px;}
._19_c01127{width:26.754000px;}
._10_c01127{width:32.640000px;}
._e_c01127{width:93.708000px;}
._1b_c01127{width:110.160000px;}
._13_c01127{width:312.759000px;}
._1d_c01127{width:546.336000px;}
.fc2_c01127{color:transparent;}
.fc1_c01127{color:rgb(128,128,128);}
.fc0_c01127{color:rgb(0,0,0);}
.fs5_c01127{font-size:48.000000px;}
.fs4_c01127{font-size:57.000000px;}
.fs3_c01127{font-size:60.000000px;}
.fs2_c01127{font-size:63.000000px;}
.fs1_c01127{font-size:72.000000px;}
.fs0_c01127{font-size:87.000000px;}
.y0_c01127{bottom:0.000000px;}
.y1d_c01127{bottom:3.105000px;}
.y1c_c01127{bottom:7.228357px;}
.y1b_c01127{bottom:53.280000px;}
.y1a_c01127{bottom:74.580000px;}
.y19_c01127{bottom:98.280000px;}
.y18_c01127{bottom:123.930000px;}
.y17_c01127{bottom:147.930000px;}
.y16_c01127{bottom:173.130000px;}
.y15_c01127{bottom:198.480000px;}
.y14_c01127{bottom:223.530000px;}
.y13_c01127{bottom:247.830000px;}
.y12_c01127{bottom:273.330000px;}
.y11_c01127{bottom:297.630000px;}
.y10_c01127{bottom:323.430000px;}
.yf_c01127{bottom:346.680000px;}
.ye_c01127{bottom:391.230000px;}
.yd_c01127{bottom:443.430000px;}
.yc_c01127{bottom:466.380000px;}
.yb_c01127{bottom:490.380000px;}
.ya_c01127{bottom:515.430000px;}
.y9_c01127{bottom:540.030000px;}
.y8_c01127{bottom:562.680000px;}
.y7_c01127{bottom:587.580000px;}
.y6_c01127{bottom:611.880000px;}
.y5_c01127{bottom:636.930000px;}
.y4_c01127{bottom:661.230000px;}
.y3_c01127{bottom:685.830000px;}
.y2_c01127{bottom:710.730000px;}
.y1_c01127{bottom:735.030000px;}
.h4_c01127{height:13.200074px;}
.h5_c01127{height:43.804688px;}
.h3_c01127{height:91.160156px;}
.h2_c01127{height:101.825684px;}
.h1_c01127{height:783.000000px;}
.h0_c01127{height:783.300000px;}
.w2_c01127{width:104.875500px;}
.w0_c01127{width:519.450000px;}
.w1_c01127{width:519.750000px;}
.x0_c01127{left:0.000000px;}
.x7_c01127{left:11.100000px;}
.x6_c01127{left:16.650000px;}
.x5_c01127{left:18.600000px;}
.x4_c01127{left:28.800000px;}
.x8_c01127{left:90.750000px;}
.xb_c01127{left:92.100000px;}
.xa_c01127{left:93.150000px;}
.xc_c01127{left:94.200000px;}
.x2_c01127{left:96.300000px;}
.x3_c01127{left:98.250000px;}
.xe_c01127{left:211.539230px;}
.x1_c01127{left:214.200000px;}
.x9_c01127{left:243.300000px;}
.xd_c01127{left:246.750000px;}
@media print{
.v0_c01127{vertical-align:0.000000pt;}
.ls0_c01127{letter-spacing:-2.666667pt;}
.ls1_c01127{letter-spacing:0.000000pt;}
.ls2_c01127{letter-spacing:2.666667pt;}
.ls3_c01127{letter-spacing:5.333333pt;}
.ws0_c01127{word-spacing:-32.984000pt;}
.ws1_c01127{word-spacing:-29.504000pt;}
.ws2_c01127{word-spacing:0.000000pt;}
._1c_c01127{margin-left:-21.184000pt;}
._1a_c01127{margin-left:-16.064000pt;}
._7_c01127{margin-left:-13.402667pt;}
._18_c01127{margin-left:-12.434667pt;}
._8_c01127{margin-left:-10.368000pt;}
._11_c01127{margin-left:-7.864000pt;}
._f_c01127{margin-left:-6.792000pt;}
._c_c01127{margin-left:-5.880000pt;}
._4_c01127{margin-left:-4.672000pt;}
._3_c01127{margin-left:-2.880000pt;}
._b_c01127{margin-left:-1.296000pt;}
._0_c01127{width:1.005333pt;}
._5_c01127{width:2.432000pt;}
._6_c01127{width:3.904000pt;}
._2_c01127{width:4.992000pt;}
._a_c01127{width:6.400000pt;}
._1_c01127{width:8.128000pt;}
._d_c01127{width:9.216000pt;}
._9_c01127{width:10.781333pt;}
._15_c01127{width:12.074667pt;}
._17_c01127{width:13.072000pt;}
._16_c01127{width:14.296000pt;}
._14_c01127{width:16.688000pt;}
._12_c01127{width:17.930667pt;}
._19_c01127{width:23.781333pt;}
._10_c01127{width:29.013333pt;}
._e_c01127{width:83.296000pt;}
._1b_c01127{width:97.920000pt;}
._13_c01127{width:278.008000pt;}
._1d_c01127{width:485.632000pt;}
.fs5_c01127{font-size:42.666667pt;}
.fs4_c01127{font-size:50.666667pt;}
.fs3_c01127{font-size:53.333333pt;}
.fs2_c01127{font-size:56.000000pt;}
.fs1_c01127{font-size:64.000000pt;}
.fs0_c01127{font-size:77.333333pt;}
.y0_c01127{bottom:0.000000pt;}
.y1d_c01127{bottom:2.760000pt;}
.y1c_c01127{bottom:6.425206pt;}
.y1b_c01127{bottom:47.360000pt;}
.y1a_c01127{bottom:66.293333pt;}
.y19_c01127{bottom:87.360000pt;}
.y18_c01127{bottom:110.160000pt;}
.y17_c01127{bottom:131.493333pt;}
.y16_c01127{bottom:153.893333pt;}
.y15_c01127{bottom:176.426667pt;}
.y14_c01127{bottom:198.693333pt;}
.y13_c01127{bottom:220.293333pt;}
.y12_c01127{bottom:242.960000pt;}
.y11_c01127{bottom:264.560000pt;}
.y10_c01127{bottom:287.493333pt;}
.yf_c01127{bottom:308.160000pt;}
.ye_c01127{bottom:347.760000pt;}
.yd_c01127{bottom:394.160000pt;}
.yc_c01127{bottom:414.560000pt;}
.yb_c01127{bottom:435.893333pt;}
.ya_c01127{bottom:458.160000pt;}
.y9_c01127{bottom:480.026667pt;}
.y8_c01127{bottom:500.160000pt;}
.y7_c01127{bottom:522.293333pt;}
.y6_c01127{bottom:543.893333pt;}
.y5_c01127{bottom:566.160000pt;}
.y4_c01127{bottom:587.760000pt;}
.y3_c01127{bottom:609.626667pt;}
.y2_c01127{bottom:631.760000pt;}
.y1_c01127{bottom:653.360000pt;}
.h4_c01127{height:11.733399pt;}
.h5_c01127{height:38.937500pt;}
.h3_c01127{height:81.031250pt;}
.h2_c01127{height:90.511719pt;}
.h1_c01127{height:696.000000pt;}
.h0_c01127{height:696.266667pt;}
.w2_c01127{width:93.222667pt;}
.w0_c01127{width:461.733333pt;}
.w1_c01127{width:462.000000pt;}
.x0_c01127{left:0.000000pt;}
.x7_c01127{left:9.866667pt;}
.x6_c01127{left:14.800000pt;}
.x5_c01127{left:16.533333pt;}
.x4_c01127{left:25.600000pt;}
.x8_c01127{left:80.666667pt;}
.xb_c01127{left:81.866667pt;}
.xa_c01127{left:82.800000pt;}
.xc_c01127{left:83.733333pt;}
.x2_c01127{left:85.600000pt;}
.x3_c01127{left:87.333333pt;}
.xe_c01127{left:188.034871pt;}
.x1_c01127{left:190.400000pt;}
.x9_c01127{left:216.266667pt;}
.xd_c01127{left:219.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_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_ad0bc34beb36133848ee79e9.woff2')format("woff");}.ff1_c01128{font-family:ff1_c01128;line-height:1.480469;font-style:normal;font-weight:normal;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_c9407715600bade69c25fae7.woff2')format("woff");}.ff2_c01128{font-family:ff2_c01128;line-height:1.568848;font-style:normal;font-weight:normal;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_410a1284dd3d8af83e432bf8.woff2')format("woff");}.ff3_c01128{font-family:ff3_c01128;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01128;src:url('chunks/assets/font_562a9e33418ce379e6539002.woff2')format("woff");}.ff4_c01128{font-family:ff4_c01128;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01128;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01128{font-family:ff5_c01128;line-height:1.219238;font-style: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;}
.ls2_c01128{letter-spacing:0.000000px;}
.ls3_c01128{letter-spacing:3.000000px;}
.ls0_c01128{letter-spacing:5.988000px;}
.ls1_c01128{letter-spacing:14.388000px;}
.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;}
}
.ws1_c01128{word-spacing:-17.352000px;}
.ws2_c01128{word-spacing:-15.183000px;}
.ws0_c01128{word-spacing:-9.660000px;}
.ws3_c01128{word-spacing:0.000000px;}
._11_c01128{margin-left:-30.516000px;}
._1c_c01128{margin-left:-25.260000px;}
._19_c01128{margin-left:-19.872000px;}
._17_c01128{margin-left:-17.544000px;}
._1a_c01128{margin-left:-15.864000px;}
._13_c01128{margin-left:-11.160000px;}
._e_c01128{margin-left:-9.864000px;}
._6_c01128{margin-left:-8.184000px;}
._1b_c01128{margin-left:-7.176000px;}
._12_c01128{margin-left:-6.120000px;}
._c_c01128{margin-left:-4.680000px;}
._15_c01128{margin-left:-3.528000px;}
._d_c01128{margin-left:-2.376000px;}
._14_c01128{margin-left:-1.224000px;}
._8_c01128{width:1.728000px;}
._7_c01128{width:2.736000px;}
._9_c01128{width:3.888000px;}
._a_c01128{width:5.040000px;}
._b_c01128{width:6.408000px;}
._10_c01128{width:7.836000px;}
._2_c01128{width:9.000000px;}
._16_c01128{width:10.044000px;}
._3_c01128{width:11.220000px;}
._18_c01128{width:12.996000px;}
._1_c01128{width:14.580000px;}
._4_c01128{width:16.680000px;}
._0_c01128{width:23.460000px;}
._f_c01128{width:24.480000px;}
._5_c01128{width:327.771000px;}
.fc2_c01128{color:transparent;}
.fc1_c01128{color:rgb(128,128,128);}
.fc0_c01128{color:rgb(0,0,0);}
.fs6_c01128{font-size:48.000000px;}
.fs0_c01128{font-size:60.000000px;}
.fs3_c01128{font-size:63.000000px;}
.fs2_c01128{font-size:72.000000px;}
.fs5_c01128{font-size:75.000000px;}
.fs4_c01128{font-size:84.000000px;}
.fs1_c01128{font-size:93.000000px;}
.y0_c01128{bottom:0.000000px;}
.y1f_c01128{bottom:3.105000px;}
.y1e_c01128{bottom:7.228371px;}
.y1d_c01128{bottom:58.815000px;}
.y1c_c01128{bottom:87.165000px;}
.y1b_c01128{bottom:108.765000px;}
.y1a_c01128{bottom:137.415000px;}
.y19_c01128{bottom:160.965000px;}
.y18_c01128{bottom:183.915000px;}
.y17_c01128{bottom:208.965000px;}
.y16_c01128{bottom:232.515000px;}
.y15_c01128{bottom:262.215000px;}
.y14_c01128{bottom:286.215000px;}
.y13_c01128{bottom:310.515000px;}
.y12_c01128{bottom:333.465000px;}
.y11_c01128{bottom:358.515000px;}
.y10_c01128{bottom:381.765000px;}
.yf_c01128{bottom:407.715000px;}
.ye_c01128{bottom:431.715000px;}
.yd_c01128{bottom:456.315000px;}
.yc_c01128{bottom:479.565000px;}
.yb_c01128{bottom:503.865000px;}
.ya_c01128{bottom:526.515000px;}
.y9_c01128{bottom:552.465000px;}
.y8_c01128{bottom:575.865000px;}
.y7_c01128{bottom:601.515000px;}
.y6_c01128{bottom:625.815000px;}
.y5_c01128{bottom:649.365000px;}
.y4_c01128{bottom:674.715000px;}
.y3_c01128{bottom:699.615000px;}
.y2_c01128{bottom:723.315000px;}
.y1_c01128{bottom:749.265000px;}
.h7_c01128{height:13.200074px;}
.h8_c01128{height:43.804688px;}
.h5_c01128{height:73.608398px;}
.h6_c01128{height:79.765137px;}
.h4_c01128{height:82.441406px;}
.h3_c01128{height:91.160156px;}
.h2_c01128{height:117.748535px;}
.h1_c01128{height:783.750000px;}
.h0_c01128{height:783.825000px;}
.w2_c01128{width:104.875500px;}
.w1_c01128{width:531.750000px;}
.w0_c01128{width:531.900000px;}
.x0_c01128{left:0.000000px;}
.x2_c01128{left:19.350000px;}
.xb_c01128{left:21.300000px;}
.x3_c01128{left:22.350000px;}
.x4_c01128{left:23.700000px;}
.x5_c01128{left:25.200000px;}
.x6_c01128{left:26.550000px;}
.x7_c01128{left:28.950000px;}
.x8_c01128{left:30.300000px;}
.x9_c01128{left:31.650000px;}
.xa_c01128{left:33.450000px;}
.x1_c01128{left:129.150000px;}
.xd_c01128{left:217.764267px;}
.xc_c01128{left:389.700000px;}
@media print{
.v0_c01128{vertical-align:0.000000pt;}
.ls2_c01128{letter-spacing:0.000000pt;}
.ls3_c01128{letter-spacing:2.666667pt;}
.ls0_c01128{letter-spacing:5.322667pt;}
.ls1_c01128{letter-spacing:12.789333pt;}
.ws1_c01128{word-spacing:-15.424000pt;}
.ws2_c01128{word-spacing:-13.496000pt;}
.ws0_c01128{word-spacing:-8.586667pt;}
.ws3_c01128{word-spacing:0.000000pt;}
._11_c01128{margin-left:-27.125333pt;}
._1c_c01128{margin-left:-22.453333pt;}
._19_c01128{margin-left:-17.664000pt;}
._17_c01128{margin-left:-15.594667pt;}
._1a_c01128{margin-left:-14.101333pt;}
._13_c01128{margin-left:-9.920000pt;}
._e_c01128{margin-left:-8.768000pt;}
._6_c01128{margin-left:-7.274667pt;}
._1b_c01128{margin-left:-6.378667pt;}
._12_c01128{margin-left:-5.440000pt;}
._c_c01128{margin-left:-4.160000pt;}
._15_c01128{margin-left:-3.136000pt;}
._d_c01128{margin-left:-2.112000pt;}
._14_c01128{margin-left:-1.088000pt;}
._8_c01128{width:1.536000pt;}
._7_c01128{width:2.432000pt;}
._9_c01128{width:3.456000pt;}
._a_c01128{width:4.480000pt;}
._b_c01128{width:5.696000pt;}
._10_c01128{width:6.965333pt;}
._2_c01128{width:8.000000pt;}
._16_c01128{width:8.928000pt;}
._3_c01128{width:9.973333pt;}
._18_c01128{width:11.552000pt;}
._1_c01128{width:12.960000pt;}
._4_c01128{width:14.826667pt;}
._0_c01128{width:20.853333pt;}
._f_c01128{width:21.760000pt;}
._5_c01128{width:291.352000pt;}
.fs6_c01128{font-size:42.666667pt;}
.fs0_c01128{font-size:53.333333pt;}
.fs3_c01128{font-size:56.000000pt;}
.fs2_c01128{font-size:64.000000pt;}
.fs5_c01128{font-size:66.666667pt;}
.fs4_c01128{font-size:74.666667pt;}
.fs1_c01128{font-size:82.666667pt;}
.y0_c01128{bottom:0.000000pt;}
.y1f_c01128{bottom:2.760000pt;}
.y1e_c01128{bottom:6.425219pt;}
.y1d_c01128{bottom:52.280000pt;}
.y1c_c01128{bottom:77.480000pt;}
.y1b_c01128{bottom:96.680000pt;}
.y1a_c01128{bottom:122.146667pt;}
.y19_c01128{bottom:143.080000pt;}
.y18_c01128{bottom:163.480000pt;}
.y17_c01128{bottom:185.746667pt;}
.y16_c01128{bottom:206.680000pt;}
.y15_c01128{bottom:233.080000pt;}
.y14_c01128{bottom:254.413333pt;}
.y13_c01128{bottom:276.013333pt;}
.y12_c01128{bottom:296.413333pt;}
.y11_c01128{bottom:318.680000pt;}
.y10_c01128{bottom:339.346667pt;}
.yf_c01128{bottom:362.413333pt;}
.ye_c01128{bottom:383.746667pt;}
.yd_c01128{bottom:405.613333pt;}
.yc_c01128{bottom:426.280000pt;}
.yb_c01128{bottom:447.880000pt;}
.ya_c01128{bottom:468.013333pt;}
.y9_c01128{bottom:491.080000pt;}
.y8_c01128{bottom:511.880000pt;}
.y7_c01128{bottom:534.680000pt;}
.y6_c01128{bottom:556.280000pt;}
.y5_c01128{bottom:577.213333pt;}
.y4_c01128{bottom:599.746667pt;}
.y3_c01128{bottom:621.880000pt;}
.y2_c01128{bottom:642.946667pt;}
.y1_c01128{bottom:666.013333pt;}
.h7_c01128{height:11.733399pt;}
.h8_c01128{height:38.937500pt;}
.h5_c01128{height:65.429688pt;}
.h6_c01128{height:70.902344pt;}
.h4_c01128{height:73.281250pt;}
.h3_c01128{height:81.031250pt;}
.h2_c01128{height:104.665365pt;}
.h1_c01128{height:696.666667pt;}
.h0_c01128{height:696.733333pt;}
.w2_c01128{width:93.222667pt;}
.w1_c01128{width:472.666667pt;}
.w0_c01128{width:472.800000pt;}
.x0_c01128{left:0.000000pt;}
.x2_c01128{left:17.200000pt;}
.xb_c01128{left:18.933333pt;}
.x3_c01128{left:19.866667pt;}
.x4_c01128{left:21.066667pt;}
.x5_c01128{left:22.400000pt;}
.x6_c01128{left:23.600000pt;}
.x7_c01128{left:25.733333pt;}
.x8_c01128{left:26.933333pt;}
.x9_c01128{left:28.133333pt;}
.xa_c01128{left:29.733333pt;}
.x1_c01128{left:114.800000pt;}
.xd_c01128{left:193.568237pt;}
.xc_c01128{left:346.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fd04fb2c103dd60ecf11a632.woff2')format("woff");}.ff1_c01129{font-family:ff1_c01129;line-height:1.480469;font-style:normal;font-weight:normal;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_c051ea2b2ab190110b984fd7.woff2')format("woff");}.ff2_c01129{font-family:ff2_c01129;line-height:1.568848;font-style:normal;font-weight:normal;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_b4344208b53cd3047a29b9b7.woff2')format("woff");}.ff3_c01129{font-family:ff3_c01129;line-height:1.568848;font-style:normal;font-weight:normal;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_5fe6fd3821ee01e9271953da.woff2')format("woff");}.ff4_c01129{font-family:ff4_c01129;line-height:1.575000;font-style:normal;font-weight:normal;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_61c73475d432b45bd17e50b0.woff2')format("woff");}.ff5_c01129{font-family:ff5_c01129;line-height:1.284668;font-style:normal;font-weight:normal;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_b9f6390e08d6e0b437bc2cb1.woff2')format("woff");}.ff6_c01129{font-family:ff6_c01129;line-height:1.284180;font-style:normal;font-weight: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_c01129;src:url('chunks/assets/font_b45b74fe4ae9902bfef0e3f7.woff2')format("woff");}.ff7_c01129{font-family:ff7_c01129;line-height:1.575000;font-style:normal;font-weight: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_c01129;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff8_c01129{font-family:ff8_c01129;line-height:1.219238;font-style: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);}
.v1_c01129{vertical-align:-61.200000px;}
.v0_c01129{vertical-align:0.000000px;}
.ls2_c01129{letter-spacing:0.000000px;}
.ls3_c01129{letter-spacing:3.000000px;}
.ls4_c01129{letter-spacing:6.000000px;}
.ls0_c01129{letter-spacing:6.945600px;}
.ls1_c01129{letter-spacing:24.900000px;}
.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:-43.488000px;}
.ws1_c01129{word-spacing:-34.790400px;}
.ws3_c01129{word-spacing:-23.760000px;}
.ws5_c01129{word-spacing:-17.352000px;}
.ws6_c01129{word-spacing:-16.629000px;}
.ws4_c01129{word-spacing:-15.183000px;}
.ws2_c01129{word-spacing:-14.460000px;}
.ws7_c01129{word-spacing:0.000000px;}
._a_c01129{margin-left:-13.704000px;}
._c_c01129{margin-left:-10.800000px;}
._12_c01129{margin-left:-7.824000px;}
._b_c01129{margin-left:-6.192000px;}
._11_c01129{margin-left:-4.044000px;}
._e_c01129{margin-left:-2.496000px;}
._10_c01129{margin-left:-1.116000px;}
._4_c01129{width:1.560000px;}
._8_c01129{width:2.688000px;}
._9_c01129{width:3.792000px;}
._5_c01129{width:5.460000px;}
._d_c01129{width:6.672000px;}
._2_c01129{width:7.680000px;}
._3_c01129{width:8.880000px;}
._1_c01129{width:9.900000px;}
._7_c01129{width:11.532000px;}
._f_c01129{width:13.596000px;}
._16_c01129{width:15.372000px;}
._0_c01129{width:16.860000px;}
._15_c01129{width:22.584000px;}
._17_c01129{width:24.252000px;}
._6_c01129{width:126.966000px;}
._13_c01129{width:150.138000px;}
._18_c01129{width:258.024000px;}
._14_c01129{width:514.974000px;}
.fc2_c01129{color:transparent;}
.fc1_c01129{color:rgb(128,128,128);}
.fc0_c01129{color:rgb(0,0,0);}
.fs6_c01129{font-size:45.000000px;}
.fsa_c01129{font-size:48.000000px;}
.fs5_c01129{font-size:57.000000px;}
.fs4_c01129{font-size:57.600000px;}
.fs0_c01129{font-size:60.000000px;}
.fs3_c01129{font-size:63.000000px;}
.fs7_c01129{font-size:66.000000px;}
.fs9_c01129{font-size:69.000000px;}
.fs2_c01129{font-size:72.000000px;}
.fs8_c01129{font-size:75.000000px;}
.fs1_c01129{font-size:93.000000px;}
.y0_c01129{bottom:0.000000px;}
.y1e_c01129{bottom:3.105000px;}
.y1d_c01129{bottom:7.228355px;}
.y1c_c01129{bottom:94.485000px;}
.y1b_c01129{bottom:121.035000px;}
.y1a_c01129{bottom:147.135000px;}
.y19_c01129{bottom:176.085000px;}
.y18_c01129{bottom:197.085000px;}
.y17_c01129{bottom:221.385000px;}
.y16_c01129{bottom:246.285000px;}
.y15_c01129{bottom:273.585000px;}
.y14_c01129{bottom:295.635000px;}
.y13_c01129{bottom:320.835000px;}
.y12_c01129{bottom:345.135000px;}
.y11_c01129{bottom:368.835000px;}
.y10_c01129{bottom:392.835000px;}
.yf_c01129{bottom:417.435000px;}
.ye_c01129{bottom:444.735000px;}
.yd_c01129{bottom:466.785000px;}
.yc_c01129{bottom:492.435000px;}
.yb_c01129{bottom:515.985000px;}
.ya_c01129{bottom:540.285000px;}
.y9_c01129{bottom:565.185000px;}
.y8_c01129{bottom:588.585000px;}
.y7_c01129{bottom:615.285000px;}
.y6_c01129{bottom:637.485000px;}
.y5_c01129{bottom:662.535000px;}
.y4_c01129{bottom:686.835000px;}
.y3_c01129{bottom:711.435000px;}
.y2_c01129{bottom:735.735000px;}
.y1_c01129{bottom:761.385000px;}
.h7_c01129{height:13.200074px;}
.h8_c01129{height:43.804688px;}
.h4_c01129{height:72.168457px;}
.h5_c01129{height:77.247070px;}
.h6_c01129{height:79.765137px;}
.h3_c01129{height:91.160156px;}
.h2_c01129{height:117.748535px;}
.h0_c01129{height:802.425000px;}
.h1_c01129{height:802.500000px;}
.w2_c01129{width:104.875500px;}
.w1_c01129{width:517.500000px;}
.w0_c01129{width:517.575000px;}
.x0_c01129{left:0.000000px;}
.x3_c01129{left:25.200000px;}
.x4_c01129{left:98.100000px;}
.x5_c01129{left:100.800000px;}
.x2_c01129{left:102.300000px;}
.x6_c01129{left:210.601730px;}
.x1_c01129{left:229.800000px;}
@media print{
.v1_c01129{vertical-align:-54.400000pt;}
.v0_c01129{vertical-align:0.000000pt;}
.ls2_c01129{letter-spacing:0.000000pt;}
.ls3_c01129{letter-spacing:2.666667pt;}
.ls4_c01129{letter-spacing:5.333333pt;}
.ls0_c01129{letter-spacing:6.173867pt;}
.ls1_c01129{letter-spacing:22.133333pt;}
.ws0_c01129{word-spacing:-38.656000pt;}
.ws1_c01129{word-spacing:-30.924800pt;}
.ws3_c01129{word-spacing:-21.120000pt;}
.ws5_c01129{word-spacing:-15.424000pt;}
.ws6_c01129{word-spacing:-14.781333pt;}
.ws4_c01129{word-spacing:-13.496000pt;}
.ws2_c01129{word-spacing:-12.853333pt;}
.ws7_c01129{word-spacing:0.000000pt;}
._a_c01129{margin-left:-12.181333pt;}
._c_c01129{margin-left:-9.600000pt;}
._12_c01129{margin-left:-6.954667pt;}
._b_c01129{margin-left:-5.504000pt;}
._11_c01129{margin-left:-3.594667pt;}
._e_c01129{margin-left:-2.218667pt;}
._10_c01129{margin-left:-0.992000pt;}
._4_c01129{width:1.386667pt;}
._8_c01129{width:2.389333pt;}
._9_c01129{width:3.370667pt;}
._5_c01129{width:4.853333pt;}
._d_c01129{width:5.930667pt;}
._2_c01129{width:6.826667pt;}
._3_c01129{width:7.893333pt;}
._1_c01129{width:8.800000pt;}
._7_c01129{width:10.250667pt;}
._f_c01129{width:12.085333pt;}
._16_c01129{width:13.664000pt;}
._0_c01129{width:14.986667pt;}
._15_c01129{width:20.074667pt;}
._17_c01129{width:21.557333pt;}
._6_c01129{width:112.858667pt;}
._13_c01129{width:133.456000pt;}
._18_c01129{width:229.354667pt;}
._14_c01129{width:457.754667pt;}
.fs6_c01129{font-size:40.000000pt;}
.fsa_c01129{font-size:42.666667pt;}
.fs5_c01129{font-size:50.666667pt;}
.fs4_c01129{font-size:51.200000pt;}
.fs0_c01129{font-size:53.333333pt;}
.fs3_c01129{font-size:56.000000pt;}
.fs7_c01129{font-size:58.666667pt;}
.fs9_c01129{font-size:61.333333pt;}
.fs2_c01129{font-size:64.000000pt;}
.fs8_c01129{font-size:66.666667pt;}
.fs1_c01129{font-size:82.666667pt;}
.y0_c01129{bottom:0.000000pt;}
.y1e_c01129{bottom:2.760000pt;}
.y1d_c01129{bottom:6.425204pt;}
.y1c_c01129{bottom:83.986667pt;}
.y1b_c01129{bottom:107.586667pt;}
.y1a_c01129{bottom:130.786667pt;}
.y19_c01129{bottom:156.520000pt;}
.y18_c01129{bottom:175.186667pt;}
.y17_c01129{bottom:196.786667pt;}
.y16_c01129{bottom:218.920000pt;}
.y15_c01129{bottom:243.186667pt;}
.y14_c01129{bottom:262.786667pt;}
.y13_c01129{bottom:285.186667pt;}
.y12_c01129{bottom:306.786667pt;}
.y11_c01129{bottom:327.853333pt;}
.y10_c01129{bottom:349.186667pt;}
.yf_c01129{bottom:371.053333pt;}
.ye_c01129{bottom:395.320000pt;}
.yd_c01129{bottom:414.920000pt;}
.yc_c01129{bottom:437.720000pt;}
.yb_c01129{bottom:458.653333pt;}
.ya_c01129{bottom:480.253333pt;}
.y9_c01129{bottom:502.386667pt;}
.y8_c01129{bottom:523.186667pt;}
.y7_c01129{bottom:546.920000pt;}
.y6_c01129{bottom:566.653333pt;}
.y5_c01129{bottom:588.920000pt;}
.y4_c01129{bottom:610.520000pt;}
.y3_c01129{bottom:632.386667pt;}
.y2_c01129{bottom:653.986667pt;}
.y1_c01129{bottom:676.786667pt;}
.h7_c01129{height:11.733399pt;}
.h8_c01129{height:38.937500pt;}
.h4_c01129{height:64.149740pt;}
.h5_c01129{height:68.664062pt;}
.h6_c01129{height:70.902344pt;}
.h3_c01129{height:81.031250pt;}
.h2_c01129{height:104.665365pt;}
.h0_c01129{height:713.266667pt;}
.h1_c01129{height:713.333333pt;}
.w2_c01129{width:93.222667pt;}
.w1_c01129{width:460.000000pt;}
.w0_c01129{width:460.066667pt;}
.x0_c01129{left:0.000000pt;}
.x3_c01129{left:22.400000pt;}
.x4_c01129{left:87.200000pt;}
.x5_c01129{left:89.600000pt;}
.x2_c01129{left:90.933333pt;}
.x6_c01129{left:187.201538pt;}
.x1_c01129{left:204.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f92cc0b3decd4129edf52008.woff2')format("woff");}.ff1_c01130{font-family:ff1_c01130;line-height:1.480469;font-style:normal;font-weight:normal;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_11e4e6047e237089e7256437.woff2')format("woff");}.ff2_c01130{font-family:ff2_c01130;line-height:1.568848;font-style:normal;font-weight:normal;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_70d4c8b43efd6fd240dac4fa.woff2')format("woff");}.ff3_c01130{font-family:ff3_c01130;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01130{font-family:ff4_c01130;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01130{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01130{vertical-align:0.000000px;}
.ls1_c01130{letter-spacing:-3.000000px;}
.ls3_c01130{letter-spacing:0.000000px;}
.ls2_c01130{letter-spacing:6.000000px;}
.ls0_c01130{letter-spacing:25.188000px;}
.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:-17.352000px;}
.ws1_c01130{word-spacing:-14.460000px;}
.ws2_c01130{word-spacing:0.000000px;}
._9_c01130{margin-left:-12.579000px;}
._10_c01130{margin-left:-10.818000px;}
._13_c01130{margin-left:-9.315000px;}
._12_c01130{margin-left:-7.845000px;}
._11_c01130{margin-left:-5.184000px;}
._7_c01130{margin-left:-3.384000px;}
._8_c01130{margin-left:-2.376000px;}
._d_c01130{margin-left:-1.134000px;}
._4_c01130{width:1.869000px;}
._b_c01130{width:2.889000px;}
._2_c01130{width:4.002000px;}
._a_c01130{width:5.346000px;}
._1_c01130{width:6.960000px;}
._3_c01130{width:8.613000px;}
._6_c01130{width:9.918000px;}
._0_c01130{width:11.049000px;}
._14_c01130{width:12.087000px;}
._f_c01130{width:13.476000px;}
._c_c01130{width:15.012000px;}
._e_c01130{width:16.278000px;}
._5_c01130{width:304.287000px;}
.fc2_c01130{color:transparent;}
.fc1_c01130{color:rgb(128,128,128);}
.fc0_c01130{color:rgb(0,0,0);}
.fs4_c01130{font-size:48.000000px;}
.fs3_c01130{font-size:60.000000px;}
.fs2_c01130{font-size:63.000000px;}
.fs1_c01130{font-size:72.000000px;}
.fs0_c01130{font-size:87.000000px;}
.y0_c01130{bottom:0.000000px;}
.y1f_c01130{bottom:3.105000px;}
.y1e_c01130{bottom:7.228371px;}
.y1d_c01130{bottom:33.765000px;}
.y1c_c01130{bottom:62.415000px;}
.y1b_c01130{bottom:86.865000px;}
.y1a_c01130{bottom:111.765000px;}
.y19_c01130{bottom:135.465000px;}
.y18_c01130{bottom:158.265000px;}
.y17_c01130{bottom:186.015000px;}
.y16_c01130{bottom:211.065000px;}
.y15_c01130{bottom:235.665000px;}
.y14_c01130{bottom:261.015000px;}
.y13_c01130{bottom:284.865000px;}
.y12_c01130{bottom:306.465000px;}
.y11_c01130{bottom:332.865000px;}
.y10_c01130{bottom:356.415000px;}
.yf_c01130{bottom:381.765000px;}
.ye_c01130{bottom:405.765000px;}
.yd_c01130{bottom:429.765000px;}
.yc_c01130{bottom:453.915000px;}
.yb_c01130{bottom:477.915000px;}
.ya_c01130{bottom:501.615000px;}
.y9_c01130{bottom:525.615000px;}
.y8_c01130{bottom:550.815000px;}
.y7_c01130{bottom:575.415000px;}
.y6_c01130{bottom:599.415000px;}
.y5_c01130{bottom:624.465000px;}
.y4_c01130{bottom:649.365000px;}
.y3_c01130{bottom:673.665000px;}
.y2_c01130{bottom:697.365000px;}
.y1_c01130{bottom:722.565000px;}
.h5_c01130{height:13.200074px;}
.h6_c01130{height:43.804688px;}
.h4_c01130{height:75.966797px;}
.h3_c01130{height:91.160156px;}
.h2_c01130{height:101.825684px;}
.h1_c01130{height:770.250000px;}
.h0_c01130{height:770.325000px;}
.w2_c01130{width:104.875500px;}
.w0_c01130{width:531.600000px;}
.w1_c01130{width:531.750000px;}
.x0_c01130{left:0.000000px;}
.x2_c01130{left:29.100000px;}
.x3_c01130{left:31.050000px;}
.x4_c01130{left:33.000000px;}
.x5_c01130{left:34.050000px;}
.x7_c01130{left:36.000000px;}
.x6_c01130{left:59.400000px;}
.x1_c01130{left:133.200000px;}
.x9_c01130{left:217.614258px;}
.x8_c01130{left:354.600000px;}
@media print{
.v0_c01130{vertical-align:0.000000pt;}
.ls1_c01130{letter-spacing:-2.666667pt;}
.ls3_c01130{letter-spacing:0.000000pt;}
.ls2_c01130{letter-spacing:5.333333pt;}
.ls0_c01130{letter-spacing:22.389333pt;}
.ws0_c01130{word-spacing:-15.424000pt;}
.ws1_c01130{word-spacing:-12.853333pt;}
.ws2_c01130{word-spacing:0.000000pt;}
._9_c01130{margin-left:-11.181333pt;}
._10_c01130{margin-left:-9.616000pt;}
._13_c01130{margin-left:-8.280000pt;}
._12_c01130{margin-left:-6.973333pt;}
._11_c01130{margin-left:-4.608000pt;}
._7_c01130{margin-left:-3.008000pt;}
._8_c01130{margin-left:-2.112000pt;}
._d_c01130{margin-left:-1.008000pt;}
._4_c01130{width:1.661333pt;}
._b_c01130{width:2.568000pt;}
._2_c01130{width:3.557333pt;}
._a_c01130{width:4.752000pt;}
._1_c01130{width:6.186667pt;}
._3_c01130{width:7.656000pt;}
._6_c01130{width:8.816000pt;}
._0_c01130{width:9.821333pt;}
._14_c01130{width:10.744000pt;}
._f_c01130{width:11.978667pt;}
._c_c01130{width:13.344000pt;}
._e_c01130{width:14.469333pt;}
._5_c01130{width:270.477333pt;}
.fs4_c01130{font-size:42.666667pt;}
.fs3_c01130{font-size:53.333333pt;}
.fs2_c01130{font-size:56.000000pt;}
.fs1_c01130{font-size:64.000000pt;}
.fs0_c01130{font-size:77.333333pt;}
.y0_c01130{bottom:0.000000pt;}
.y1f_c01130{bottom:2.760000pt;}
.y1e_c01130{bottom:6.425219pt;}
.y1d_c01130{bottom:30.013333pt;}
.y1c_c01130{bottom:55.480000pt;}
.y1b_c01130{bottom:77.213333pt;}
.y1a_c01130{bottom:99.346667pt;}
.y19_c01130{bottom:120.413333pt;}
.y18_c01130{bottom:140.680000pt;}
.y17_c01130{bottom:165.346667pt;}
.y16_c01130{bottom:187.613333pt;}
.y15_c01130{bottom:209.480000pt;}
.y14_c01130{bottom:232.013333pt;}
.y13_c01130{bottom:253.213333pt;}
.y12_c01130{bottom:272.413333pt;}
.y11_c01130{bottom:295.880000pt;}
.y10_c01130{bottom:316.813333pt;}
.yf_c01130{bottom:339.346667pt;}
.ye_c01130{bottom:360.680000pt;}
.yd_c01130{bottom:382.013333pt;}
.yc_c01130{bottom:403.480000pt;}
.yb_c01130{bottom:424.813333pt;}
.ya_c01130{bottom:445.880000pt;}
.y9_c01130{bottom:467.213333pt;}
.y8_c01130{bottom:489.613333pt;}
.y7_c01130{bottom:511.480000pt;}
.y6_c01130{bottom:532.813333pt;}
.y5_c01130{bottom:555.080000pt;}
.y4_c01130{bottom:577.213333pt;}
.y3_c01130{bottom:598.813333pt;}
.y2_c01130{bottom:619.880000pt;}
.y1_c01130{bottom:642.280000pt;}
.h5_c01130{height:11.733399pt;}
.h6_c01130{height:38.937500pt;}
.h4_c01130{height:67.526042pt;}
.h3_c01130{height:81.031250pt;}
.h2_c01130{height:90.511719pt;}
.h1_c01130{height:684.666667pt;}
.h0_c01130{height:684.733333pt;}
.w2_c01130{width:93.222667pt;}
.w0_c01130{width:472.533333pt;}
.w1_c01130{width:472.666667pt;}
.x0_c01130{left:0.000000pt;}
.x2_c01130{left:25.866667pt;}
.x3_c01130{left:27.600000pt;}
.x4_c01130{left:29.333333pt;}
.x5_c01130{left:30.266667pt;}
.x7_c01130{left:32.000000pt;}
.x6_c01130{left:52.800000pt;}
.x1_c01130{left:118.400000pt;}
.x9_c01130{left:193.434896pt;}
.x8_c01130{left:315.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_180ee6734aa30c53cb8fb7af.woff2')format("woff");}.ff1_c01131{font-family:ff1_c01131;line-height:1.480469;font-style:normal;font-weight:normal;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_a2c4ee4e7530615b6007f278.woff2')format("woff");}.ff2_c01131{font-family:ff2_c01131;line-height:1.568848;font-style:normal;font-weight:normal;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_0711d658630a6fdec47a1721.woff2')format("woff");}.ff3_c01131{font-family:ff3_c01131;line-height:1.284668;font-style:normal;font-weight:normal;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_761659903bd784326db97e69.woff2')format("woff");}.ff4_c01131{font-family:ff4_c01131;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01131;src:url('chunks/assets/font_a894672debc79f95298ab724.woff2')format("woff");}.ff5_c01131{font-family:ff5_c01131;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01131;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01131{font-family:ff6_c01131;line-height:1.219238;font-style: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);}
.v0_c01131{vertical-align:0.000000px;}
.ls1_c01131{letter-spacing:0.000000px;}
.ls0_c01131{letter-spacing:1.800000px;}
.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;}
}
.ws0_c01131{word-spacing:-42.000000px;}
.ws1_c01131{word-spacing:0.000000px;}
._a_c01131{margin-left:-15.687000px;}
._f_c01131{margin-left:-13.203000px;}
._10_c01131{margin-left:-11.871000px;}
._8_c01131{margin-left:-10.665000px;}
._d_c01131{margin-left:-7.740000px;}
._6_c01131{margin-left:-6.723000px;}
._b_c01131{margin-left:-5.301000px;}
._7_c01131{margin-left:-3.591000px;}
._9_c01131{margin-left:-1.881000px;}
._3_c01131{width:1.368000px;}
._2_c01131{width:2.808000px;}
._4_c01131{width:3.888000px;}
._1_c01131{width:5.616000px;}
._5_c01131{width:6.831000px;}
._15_c01131{width:7.884000px;}
._e_c01131{width:8.991000px;}
._0_c01131{width:10.800000px;}
._c_c01131{width:11.961000px;}
._11_c01131{width:13.581000px;}
._12_c01131{width:16.128000px;}
._13_c01131{width:21.465000px;}
._14_c01131{width:22.518000px;}
._16_c01131{width:28.278000px;}
._17_c01131{width:48.177000px;}
.fc2_c01131{color:transparent;}
.fc1_c01131{color:rgb(128,128,128);}
.fc0_c01131{color:rgb(0,0,0);}
.fs5_c01131{font-size:48.000000px;}
.fs2_c01131{font-size:57.000000px;}
.fs3_c01131{font-size:63.000000px;}
.fs0_c01131{font-size:72.000000px;}
.fs1_c01131{font-size:81.000000px;}
.fs4_c01131{font-size:84.000000px;}
.y0_c01131{bottom:0.000000px;}
.y1e_c01131{bottom:3.105000px;}
.y1d_c01131{bottom:7.228369px;}
.y1c_c01131{bottom:70.170000px;}
.y1b_c01131{bottom:94.470000px;}
.y1a_c01131{bottom:119.370000px;}
.y19_c01131{bottom:144.120000px;}
.y18_c01131{bottom:170.070000px;}
.y17_c01131{bottom:194.070000px;}
.y16_c01131{bottom:219.270000px;}
.y15_c01131{bottom:243.720000px;}
.y14_c01131{bottom:268.320000px;}
.y13_c01131{bottom:293.220000px;}
.y12_c01131{bottom:317.820000px;}
.y11_c01131{bottom:342.570000px;}
.y10_c01131{bottom:366.420000px;}
.yf_c01131{bottom:390.720000px;}
.ye_c01131{bottom:413.070000px;}
.yd_c01131{bottom:437.070000px;}
.yc_c01131{bottom:460.920000px;}
.yb_c01131{bottom:485.220000px;}
.ya_c01131{bottom:510.570000px;}
.y9_c01131{bottom:534.270000px;}
.y8_c01131{bottom:558.120000px;}
.y7_c01131{bottom:584.220000px;}
.y6_c01131{bottom:609.420000px;}
.y5_c01131{bottom:633.720000px;}
.y4_c01131{bottom:658.020000px;}
.y3_c01131{bottom:680.970000px;}
.y2_c01131{bottom:706.620000px;}
.y1_c01131{bottom:733.020000px;}
.h7_c01131{height:13.200073px;}
.h8_c01131{height:43.804688px;}
.h3_c01131{height:79.497070px;}
.h4_c01131{height:79.765137px;}
.h5_c01131{height:82.400391px;}
.h6_c01131{height:82.441406px;}
.h2_c01131{height:91.160156px;}
.h1_c01131{height:790.500000px;}
.h0_c01131{height:790.800000px;}
.w2_c01131{width:104.875500px;}
.w0_c01131{width:517.875000px;}
.w1_c01131{width:518.250000px;}
.x0_c01131{left:0.000000px;}
.x6_c01131{left:93.150000px;}
.x7_c01131{left:97.200000px;}
.x5_c01131{left:101.550000px;}
.x4_c01131{left:102.900000px;}
.x3_c01131{left:103.950000px;}
.x2_c01131{left:105.900000px;}
.x8_c01131{left:210.751740px;}
.x1_c01131{left:233.250000px;}
@media print{
.v0_c01131{vertical-align:0.000000pt;}
.ls1_c01131{letter-spacing:0.000000pt;}
.ls0_c01131{letter-spacing:1.600000pt;}
.ws0_c01131{word-spacing:-37.333333pt;}
.ws1_c01131{word-spacing:0.000000pt;}
._a_c01131{margin-left:-13.944000pt;}
._f_c01131{margin-left:-11.736000pt;}
._10_c01131{margin-left:-10.552000pt;}
._8_c01131{margin-left:-9.480000pt;}
._d_c01131{margin-left:-6.880000pt;}
._6_c01131{margin-left:-5.976000pt;}
._b_c01131{margin-left:-4.712000pt;}
._7_c01131{margin-left:-3.192000pt;}
._9_c01131{margin-left:-1.672000pt;}
._3_c01131{width:1.216000pt;}
._2_c01131{width:2.496000pt;}
._4_c01131{width:3.456000pt;}
._1_c01131{width:4.992000pt;}
._5_c01131{width:6.072000pt;}
._15_c01131{width:7.008000pt;}
._e_c01131{width:7.992000pt;}
._0_c01131{width:9.600000pt;}
._c_c01131{width:10.632000pt;}
._11_c01131{width:12.072000pt;}
._12_c01131{width:14.336000pt;}
._13_c01131{width:19.080000pt;}
._14_c01131{width:20.016000pt;}
._16_c01131{width:25.136000pt;}
._17_c01131{width:42.824000pt;}
.fs5_c01131{font-size:42.666667pt;}
.fs2_c01131{font-size:50.666667pt;}
.fs3_c01131{font-size:56.000000pt;}
.fs0_c01131{font-size:64.000000pt;}
.fs1_c01131{font-size:72.000000pt;}
.fs4_c01131{font-size:74.666667pt;}
.y0_c01131{bottom:0.000000pt;}
.y1e_c01131{bottom:2.760000pt;}
.y1d_c01131{bottom:6.425217pt;}
.y1c_c01131{bottom:62.373333pt;}
.y1b_c01131{bottom:83.973333pt;}
.y1a_c01131{bottom:106.106667pt;}
.y19_c01131{bottom:128.106667pt;}
.y18_c01131{bottom:151.173333pt;}
.y17_c01131{bottom:172.506667pt;}
.y16_c01131{bottom:194.906667pt;}
.y15_c01131{bottom:216.640000pt;}
.y14_c01131{bottom:238.506667pt;}
.y13_c01131{bottom:260.640000pt;}
.y12_c01131{bottom:282.506667pt;}
.y11_c01131{bottom:304.506667pt;}
.y10_c01131{bottom:325.706667pt;}
.yf_c01131{bottom:347.306667pt;}
.ye_c01131{bottom:367.173333pt;}
.yd_c01131{bottom:388.506667pt;}
.yc_c01131{bottom:409.706667pt;}
.yb_c01131{bottom:431.306667pt;}
.ya_c01131{bottom:453.840000pt;}
.y9_c01131{bottom:474.906667pt;}
.y8_c01131{bottom:496.106667pt;}
.y7_c01131{bottom:519.306667pt;}
.y6_c01131{bottom:541.706667pt;}
.y5_c01131{bottom:563.306667pt;}
.y4_c01131{bottom:584.906667pt;}
.y3_c01131{bottom:605.306667pt;}
.y2_c01131{bottom:628.106667pt;}
.y1_c01131{bottom:651.573333pt;}
.h7_c01131{height:11.733399pt;}
.h8_c01131{height:38.937500pt;}
.h3_c01131{height:70.664062pt;}
.h4_c01131{height:70.902344pt;}
.h5_c01131{height:73.244792pt;}
.h6_c01131{height:73.281250pt;}
.h2_c01131{height:81.031250pt;}
.h1_c01131{height:702.666667pt;}
.h0_c01131{height:702.933333pt;}
.w2_c01131{width:93.222667pt;}
.w0_c01131{width:460.333333pt;}
.w1_c01131{width:460.666667pt;}
.x0_c01131{left:0.000000pt;}
.x6_c01131{left:82.800000pt;}
.x7_c01131{left:86.400000pt;}
.x5_c01131{left:90.266667pt;}
.x4_c01131{left:91.466667pt;}
.x3_c01131{left:92.400000pt;}
.x2_c01131{left:94.133333pt;}
.x8_c01131{left:187.334880pt;}
.x1_c01131{left:207.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_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_559c2ef51e0336a2385415ac.woff2')format("woff");}.ff1_c01132{font-family:ff1_c01132;line-height:1.480469;font-style:normal;font-weight:normal;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_c92814c6029d04df02cd3bf8.woff2')format("woff");}.ff2_c01132{font-family:ff2_c01132;line-height:1.568848;font-style:normal;font-weight:normal;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_b2e28010a7935de49e1917d3.woff2')format("woff");}.ff3_c01132{font-family:ff3_c01132;line-height:1.284668;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01132{font-family:ff4_c01132;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01132{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01132{vertical-align:0.000000px;}
.ls3_c01132{letter-spacing:-6.000000px;}
.ls1_c01132{letter-spacing:-3.000000px;}
.ls2_c01132{letter-spacing:0.000000px;}
.ls0_c01132{letter-spacing:93.960000px;}
.sc__c01132{text-shadow:none;}
.sc0_c01132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01132{-webkit-text-stroke:0px transparent;}
.sc0_c01132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01132{word-spacing:-17.967000px;}
.ws0_c01132{word-spacing:-17.352000px;}
.ws3_c01132{word-spacing:0.000000px;}
.ws2_c01132{word-spacing:8.838000px;}
._17_c01132{margin-left:-22.584000px;}
._1e_c01132{margin-left:-20.232000px;}
._1d_c01132{margin-left:-18.831000px;}
._b_c01132{margin-left:-16.692000px;}
._11_c01132{margin-left:-11.754000px;}
._e_c01132{margin-left:-6.606000px;}
._4_c01132{margin-left:-5.481000px;}
._2_c01132{margin-left:-3.828000px;}
._10_c01132{margin-left:-2.490000px;}
._3_c01132{margin-left:-1.131000px;}
._5_c01132{width:1.566000px;}
._a_c01132{width:3.456000px;}
._9_c01132{width:4.536000px;}
._c_c01132{width:5.562000px;}
._15_c01132{width:6.696000px;}
._1_c01132{width:7.830000px;}
._14_c01132{width:8.961000px;}
._7_c01132{width:10.005000px;}
._16_c01132{width:11.088000px;}
._0_c01132{width:12.528000px;}
._d_c01132{width:14.832000px;}
._12_c01132{width:16.344000px;}
._8_c01132{width:18.531000px;}
._1f_c01132{width:19.878000px;}
._18_c01132{width:21.978000px;}
._f_c01132{width:28.224000px;}
._1a_c01132{width:29.466000px;}
._19_c01132{width:30.744000px;}
._1b_c01132{width:33.666000px;}
._13_c01132{width:36.759000px;}
._1c_c01132{width:42.087000px;}
._6_c01132{width:324.354000px;}
.fc2_c01132{color:transparent;}
.fc1_c01132{color:rgb(128,128,128);}
.fc0_c01132{color:rgb(0,0,0);}
.fs5_c01132{font-size:48.000000px;}
.fs2_c01132{font-size:60.000000px;}
.fs4_c01132{font-size:66.000000px;}
.fs1_c01132{font-size:72.000000px;}
.fs3_c01132{font-size:75.000000px;}
.fs0_c01132{font-size:87.000000px;}
.y0_c01132{bottom:0.000000px;}
.y1c_c01132{bottom:3.105000px;}
.y1b_c01132{bottom:7.228363px;}
.y1a_c01132{bottom:57.000000px;}
.y19_c01132{bottom:84.600000px;}
.y18_c01132{bottom:108.900000px;}
.y17_c01132{bottom:136.050000px;}
.y16_c01132{bottom:157.500000px;}
.y15_c01132{bottom:185.250000px;}
.y14_c01132{bottom:210.300000px;}
.y13_c01132{bottom:234.150000px;}
.y12_c01132{bottom:261.150000px;}
.y11_c01132{bottom:285.900000px;}
.y10_c01132{bottom:310.800000px;}
.yf_c01132{bottom:334.800000px;}
.ye_c01132{bottom:359.700000px;}
.yd_c01132{bottom:384.000000px;}
.yc_c01132{bottom:408.000000px;}
.yb_c01132{bottom:432.300000px;}
.ya_c01132{bottom:456.600000px;}
.y9_c01132{bottom:480.600000px;}
.y8_c01132{bottom:504.600000px;}
.y7_c01132{bottom:528.600000px;}
.y6_c01132{bottom:578.400000px;}
.y5_c01132{bottom:649.050000px;}
.y4_c01132{bottom:675.600000px;}
.y3_c01132{bottom:700.200000px;}
.y2_c01132{bottom:724.950000px;}
.y1_c01132{bottom:750.000000px;}
.h8_c01132{height:13.200074px;}
.h9_c01132{height:43.804688px;}
.h6_c01132{height:73.608398px;}
.h7_c01132{height:83.563477px;}
.h5_c01132{height:90.560156px;}
.h3_c01132{height:91.160156px;}
.h4_c01132{height:101.825684px;}
.h2_c01132{height:110.151855px;}
.h0_c01132{height:785.700000px;}
.h1_c01132{height:786.000000px;}
.w2_c01132{width:104.875500px;}
.w1_c01132{width:537.000000px;}
.w0_c01132{width:537.300000px;}
.x0_c01132{left:0.000000px;}
.x2_c01132{left:25.950000px;}
.x3_c01132{left:27.600000px;}
.x4_c01132{left:28.650000px;}
.x9_c01132{left:31.350000px;}
.x8_c01132{left:32.850000px;}
.x6_c01132{left:34.500000px;}
.x7_c01132{left:66.600000px;}
.x1_c01132{left:134.550000px;}
.x5_c01132{left:165.600000px;}
.xb_c01132{left:220.464249px;}
.xa_c01132{left:371.250000px;}
@media print{
.v0_c01132{vertical-align:0.000000pt;}
.ls3_c01132{letter-spacing:-5.333333pt;}
.ls1_c01132{letter-spacing:-2.666667pt;}
.ls2_c01132{letter-spacing:0.000000pt;}
.ls0_c01132{letter-spacing:83.520000pt;}
.ws1_c01132{word-spacing:-15.970667pt;}
.ws0_c01132{word-spacing:-15.424000pt;}
.ws3_c01132{word-spacing:0.000000pt;}
.ws2_c01132{word-spacing:7.856000pt;}
._17_c01132{margin-left:-20.074667pt;}
._1e_c01132{margin-left:-17.984000pt;}
._1d_c01132{margin-left:-16.738667pt;}
._b_c01132{margin-left:-14.837333pt;}
._11_c01132{margin-left:-10.448000pt;}
._e_c01132{margin-left:-5.872000pt;}
._4_c01132{margin-left:-4.872000pt;}
._2_c01132{margin-left:-3.402667pt;}
._10_c01132{margin-left:-2.213333pt;}
._3_c01132{margin-left:-1.005333pt;}
._5_c01132{width:1.392000pt;}
._a_c01132{width:3.072000pt;}
._9_c01132{width:4.032000pt;}
._c_c01132{width:4.944000pt;}
._15_c01132{width:5.952000pt;}
._1_c01132{width:6.960000pt;}
._14_c01132{width:7.965333pt;}
._7_c01132{width:8.893333pt;}
._16_c01132{width:9.856000pt;}
._0_c01132{width:11.136000pt;}
._d_c01132{width:13.184000pt;}
._12_c01132{width:14.528000pt;}
._8_c01132{width:16.472000pt;}
._1f_c01132{width:17.669333pt;}
._18_c01132{width:19.536000pt;}
._f_c01132{width:25.088000pt;}
._1a_c01132{width:26.192000pt;}
._19_c01132{width:27.328000pt;}
._1b_c01132{width:29.925333pt;}
._13_c01132{width:32.674667pt;}
._1c_c01132{width:37.410667pt;}
._6_c01132{width:288.314667pt;}
.fs5_c01132{font-size:42.666667pt;}
.fs2_c01132{font-size:53.333333pt;}
.fs4_c01132{font-size:58.666667pt;}
.fs1_c01132{font-size:64.000000pt;}
.fs3_c01132{font-size:66.666667pt;}
.fs0_c01132{font-size:77.333333pt;}
.y0_c01132{bottom:0.000000pt;}
.y1c_c01132{bottom:2.760000pt;}
.y1b_c01132{bottom:6.425212pt;}
.y1a_c01132{bottom:50.666667pt;}
.y19_c01132{bottom:75.200000pt;}
.y18_c01132{bottom:96.800000pt;}
.y17_c01132{bottom:120.933333pt;}
.y16_c01132{bottom:140.000000pt;}
.y15_c01132{bottom:164.666667pt;}
.y14_c01132{bottom:186.933333pt;}
.y13_c01132{bottom:208.133333pt;}
.y12_c01132{bottom:232.133333pt;}
.y11_c01132{bottom:254.133333pt;}
.y10_c01132{bottom:276.266667pt;}
.yf_c01132{bottom:297.600000pt;}
.ye_c01132{bottom:319.733333pt;}
.yd_c01132{bottom:341.333333pt;}
.yc_c01132{bottom:362.666667pt;}
.yb_c01132{bottom:384.266667pt;}
.ya_c01132{bottom:405.866667pt;}
.y9_c01132{bottom:427.200000pt;}
.y8_c01132{bottom:448.533333pt;}
.y7_c01132{bottom:469.866667pt;}
.y6_c01132{bottom:514.133333pt;}
.y5_c01132{bottom:576.933333pt;}
.y4_c01132{bottom:600.533333pt;}
.y3_c01132{bottom:622.400000pt;}
.y2_c01132{bottom:644.400000pt;}
.y1_c01132{bottom:666.666667pt;}
.h8_c01132{height:11.733399pt;}
.h9_c01132{height:38.937500pt;}
.h6_c01132{height:65.429688pt;}
.h7_c01132{height:74.278646pt;}
.h5_c01132{height:80.497917pt;}
.h3_c01132{height:81.031250pt;}
.h4_c01132{height:90.511719pt;}
.h2_c01132{height:97.912760pt;}
.h0_c01132{height:698.400000pt;}
.h1_c01132{height:698.666667pt;}
.w2_c01132{width:93.222667pt;}
.w1_c01132{width:477.333333pt;}
.w0_c01132{width:477.600000pt;}
.x0_c01132{left:0.000000pt;}
.x2_c01132{left:23.066667pt;}
.x3_c01132{left:24.533333pt;}
.x4_c01132{left:25.466667pt;}
.x9_c01132{left:27.866667pt;}
.x8_c01132{left:29.200000pt;}
.x6_c01132{left:30.666667pt;}
.x7_c01132{left:59.200000pt;}
.x1_c01132{left:119.600000pt;}
.x5_c01132{left:147.200000pt;}
.xb_c01132{left:195.968221pt;}
.xa_c01132{left:330.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_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_32640a7e7cb152b6248bd6bb.woff2')format("woff");}.ff1_c01133{font-family:ff1_c01133;line-height:1.480469;font-style:normal;font-weight:normal;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_5aaf15a8286ebaf728afbdf9.woff2')format("woff");}.ff2_c01133{font-family:ff2_c01133;line-height:1.568848;font-style:normal;font-weight:normal;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_db713cf4fd775009331b56dd.woff2')format("woff");}.ff3_c01133{font-family:ff3_c01133;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01133{font-family:ff4_c01133;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c01133{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,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);}
.m2_c01133{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.v0_c01133{vertical-align:0.000000px;}
.ls1_c01133{letter-spacing:0.000000px;}
.ls2_c01133{letter-spacing:6.000000px;}
.ls0_c01133{letter-spacing:8.520000px;}
.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;}
}
.ws1_c01133{word-spacing:-33.660000px;}
.ws0_c01133{word-spacing:-33.192000px;}
.ws2_c01133{word-spacing:-17.352000px;}
.ws3_c01133{word-spacing:0.000000px;}
._19_c01133{margin-left:-17.226000px;}
._15_c01133{margin-left:-10.092000px;}
._b_c01133{margin-left:-8.856000px;}
._1c_c01133{margin-left:-7.704000px;}
._22_c01133{margin-left:-6.048000px;}
._e_c01133{margin-left:-5.040000px;}
._c_c01133{margin-left:-4.032000px;}
._12_c01133{margin-left:-2.736000px;}
._7_c01133{margin-left:-1.440000px;}
._5_c01133{width:1.440000px;}
._1_c01133{width:2.952000px;}
._f_c01133{width:3.960000px;}
._3_c01133{width:4.968000px;}
._2_c01133{width:6.120000px;}
._0_c01133{width:7.560000px;}
._9_c01133{width:8.568000px;}
._4_c01133{width:9.648000px;}
._d_c01133{width:11.088000px;}
._8_c01133{width:12.744000px;}
._11_c01133{width:14.184000px;}
._1f_c01133{width:15.192000px;}
._1e_c01133{width:16.344000px;}
._1d_c01133{width:18.432000px;}
._20_c01133{width:25.920000px;}
._17_c01133{width:30.267000px;}
._10_c01133{width:31.968000px;}
._18_c01133{width:33.234000px;}
._23_c01133{width:34.488000px;}
._21_c01133{width:52.848000px;}
._1a_c01133{width:71.688000px;}
._16_c01133{width:110.925000px;}
._13_c01133{width:139.392000px;}
._1b_c01133{width:198.576000px;}
._6_c01133{width:232.488000px;}
._a_c01133{width:437.904000px;}
._24_c01133{width:461.664000px;}
._14_c01133{width:911.409000px;}
.fc2_c01133{color:transparent;}
.fc1_c01133{color:rgb(128,128,128);}
.fc0_c01133{color:rgb(0,0,0);}
.fs3_c01133{font-size:48.000000px;}
.fs1_c01133{font-size:60.000000px;}
.fs0_c01133{font-size:72.000000px;}
.fs2_c01133{font-size:87.000000px;}
.y0_c01133{bottom:0.000000px;}
.y20_c01133{bottom:3.105000px;}
.y1f_c01133{bottom:7.228369px;}
.y1e_c01133{bottom:68.220000px;}
.y1d_c01133{bottom:84.420000px;}
.y1c_c01133{bottom:110.370000px;}
.y1b_c01133{bottom:135.270000px;}
.y1a_c01133{bottom:161.220000px;}
.y19_c01133{bottom:184.620000px;}
.y18_c01133{bottom:209.520000px;}
.y17_c01133{bottom:234.870000px;}
.y16_c01133{bottom:259.170000px;}
.y15_c01133{bottom:283.770000px;}
.y14_c01133{bottom:309.720000px;}
.y13_c01133{bottom:332.370000px;}
.y12_c01133{bottom:356.370000px;}
.y11_c01133{bottom:380.070000px;}
.y10_c01133{bottom:403.920000px;}
.yf_c01133{bottom:428.220000px;}
.ye_c01133{bottom:451.470000px;}
.yd_c01133{bottom:475.770000px;}
.yc_c01133{bottom:500.070000px;}
.yb_c01133{bottom:523.020000px;}
.ya_c01133{bottom:535.920000px;}
.y9_c01133{bottom:549.120000px;}
.y8_c01133{bottom:574.020000px;}
.y7_c01133{bottom:598.320000px;}
.y6_c01133{bottom:622.920000px;}
.y5_c01133{bottom:647.220000px;}
.y4_c01133{bottom:671.970000px;}
.y3_c01133{bottom:695.520000px;}
.y2_c01133{bottom:720.870000px;}
.y1_c01133{bottom:745.770000px;}
.h3_c01133{height:13.200073px;}
.h4_c01133{height:43.804688px;}
.h1_c01133{height:91.160156px;}
.h2_c01133{height:92.829000px;}
.h0_c01133{height:786.750000px;}
.w2_c01133{width:104.875500px;}
.w0_c01133{width:531.375000px;}
.w1_c01133{width:531.750000px;}
.x0_c01133{left:0.000000px;}
.x6_c01133{left:35.550000px;}
.x7_c01133{left:37.500000px;}
.x5_c01133{left:49.950000px;}
.xa_c01133{left:109.650000px;}
.x9_c01133{left:111.000000px;}
.x4_c01133{left:112.350000px;}
.x3_c01133{left:113.400000px;}
.x2_c01133{left:116.850000px;}
.x8_c01133{left:143.550000px;}
.xe_c01133{left:217.501740px;}
.x1_c01133{left:240.600000px;}
.xb_c01133{left:260.550000px;}
.xc_c01133{left:265.650000px;}
.xd_c01133{left:307.800000px;}
@media print{
.v0_c01133{vertical-align:0.000000pt;}
.ls1_c01133{letter-spacing:0.000000pt;}
.ls2_c01133{letter-spacing:5.333333pt;}
.ls0_c01133{letter-spacing:7.573333pt;}
.ws1_c01133{word-spacing:-29.920000pt;}
.ws0_c01133{word-spacing:-29.504000pt;}
.ws2_c01133{word-spacing:-15.424000pt;}
.ws3_c01133{word-spacing:0.000000pt;}
._19_c01133{margin-left:-15.312000pt;}
._15_c01133{margin-left:-8.970667pt;}
._b_c01133{margin-left:-7.872000pt;}
._1c_c01133{margin-left:-6.848000pt;}
._22_c01133{margin-left:-5.376000pt;}
._e_c01133{margin-left:-4.480000pt;}
._c_c01133{margin-left:-3.584000pt;}
._12_c01133{margin-left:-2.432000pt;}
._7_c01133{margin-left:-1.280000pt;}
._5_c01133{width:1.280000pt;}
._1_c01133{width:2.624000pt;}
._f_c01133{width:3.520000pt;}
._3_c01133{width:4.416000pt;}
._2_c01133{width:5.440000pt;}
._0_c01133{width:6.720000pt;}
._9_c01133{width:7.616000pt;}
._4_c01133{width:8.576000pt;}
._d_c01133{width:9.856000pt;}
._8_c01133{width:11.328000pt;}
._11_c01133{width:12.608000pt;}
._1f_c01133{width:13.504000pt;}
._1e_c01133{width:14.528000pt;}
._1d_c01133{width:16.384000pt;}
._20_c01133{width:23.040000pt;}
._17_c01133{width:26.904000pt;}
._10_c01133{width:28.416000pt;}
._18_c01133{width:29.541333pt;}
._23_c01133{width:30.656000pt;}
._21_c01133{width:46.976000pt;}
._1a_c01133{width:63.722667pt;}
._16_c01133{width:98.600000pt;}
._13_c01133{width:123.904000pt;}
._1b_c01133{width:176.512000pt;}
._6_c01133{width:206.656000pt;}
._a_c01133{width:389.248000pt;}
._24_c01133{width:410.368000pt;}
._14_c01133{width:810.141333pt;}
.fs3_c01133{font-size:42.666667pt;}
.fs1_c01133{font-size:53.333333pt;}
.fs0_c01133{font-size:64.000000pt;}
.fs2_c01133{font-size:77.333333pt;}
.y0_c01133{bottom:0.000000pt;}
.y20_c01133{bottom:2.760000pt;}
.y1f_c01133{bottom:6.425217pt;}
.y1e_c01133{bottom:60.640000pt;}
.y1d_c01133{bottom:75.040000pt;}
.y1c_c01133{bottom:98.106667pt;}
.y1b_c01133{bottom:120.240000pt;}
.y1a_c01133{bottom:143.306667pt;}
.y19_c01133{bottom:164.106667pt;}
.y18_c01133{bottom:186.240000pt;}
.y17_c01133{bottom:208.773333pt;}
.y16_c01133{bottom:230.373333pt;}
.y15_c01133{bottom:252.240000pt;}
.y14_c01133{bottom:275.306667pt;}
.y13_c01133{bottom:295.440000pt;}
.y12_c01133{bottom:316.773333pt;}
.y11_c01133{bottom:337.840000pt;}
.y10_c01133{bottom:359.040000pt;}
.yf_c01133{bottom:380.640000pt;}
.ye_c01133{bottom:401.306667pt;}
.yd_c01133{bottom:422.906667pt;}
.yc_c01133{bottom:444.506667pt;}
.yb_c01133{bottom:464.906667pt;}
.ya_c01133{bottom:476.373333pt;}
.y9_c01133{bottom:488.106667pt;}
.y8_c01133{bottom:510.240000pt;}
.y7_c01133{bottom:531.840000pt;}
.y6_c01133{bottom:553.706667pt;}
.y5_c01133{bottom:575.306667pt;}
.y4_c01133{bottom:597.306667pt;}
.y3_c01133{bottom:618.240000pt;}
.y2_c01133{bottom:640.773333pt;}
.y1_c01133{bottom:662.906667pt;}
.h3_c01133{height:11.733399pt;}
.h4_c01133{height:38.937500pt;}
.h1_c01133{height:81.031250pt;}
.h2_c01133{height:82.514667pt;}
.h0_c01133{height:699.333333pt;}
.w2_c01133{width:93.222667pt;}
.w0_c01133{width:472.333333pt;}
.w1_c01133{width:472.666667pt;}
.x0_c01133{left:0.000000pt;}
.x6_c01133{left:31.600000pt;}
.x7_c01133{left:33.333333pt;}
.x5_c01133{left:44.400000pt;}
.xa_c01133{left:97.466667pt;}
.x9_c01133{left:98.666667pt;}
.x4_c01133{left:99.866667pt;}
.x3_c01133{left:100.800000pt;}
.x2_c01133{left:103.866667pt;}
.x8_c01133{left:127.600000pt;}
.xe_c01133{left:193.334880pt;}
.x1_c01133{left:213.866667pt;}
.xb_c01133{left:231.600000pt;}
.xc_c01133{left:236.133333pt;}
.xd_c01133{left:273.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8fc62f625f544c7416d1a7e6.woff2')format("woff");}.ff1_c01134{font-family:ff1_c01134;line-height:1.480469;font-style:normal;font-weight:normal;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_beb0791747148290c14a27f3.woff2')format("woff");}.ff2_c01134{font-family:ff2_c01134;line-height:1.568848;font-style:normal;font-weight:normal;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_a4466f122c44dc40553365cd.woff2')format("woff");}.ff3_c01134{font-family:ff3_c01134;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01134{font-family:ff4_c01134;line-height:1.219238;font-style: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);}
.v0_c01134{vertical-align:0.000000px;}
.ls0_c01134{letter-spacing:-3.000000px;}
.ls1_c01134{letter-spacing:0.000000px;}
.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:-30.051000px;}
.ws0_c01134{word-spacing:-17.967000px;}
.ws1_c01134{word-spacing:-17.352000px;}
.ws3_c01134{word-spacing:0.000000px;}
._12_c01134{margin-left:-14.112000px;}
._14_c01134{margin-left:-10.584000px;}
._13_c01134{margin-left:-9.360000px;}
._f_c01134{margin-left:-7.416000px;}
._e_c01134{margin-left:-5.580000px;}
._8_c01134{margin-left:-4.536000px;}
._9_c01134{margin-left:-2.940000px;}
._4_c01134{margin-left:-1.812000px;}
._1_c01134{width:1.131000px;}
._0_c01134{width:2.262000px;}
._3_c01134{width:3.498000px;}
._7_c01134{width:4.608000px;}
._5_c01134{width:5.706000px;}
._2_c01134{width:7.263000px;}
._a_c01134{width:9.282000px;}
._d_c01134{width:10.500000px;}
._c_c01134{width:11.736000px;}
._6_c01134{width:13.365000px;}
._10_c01134{width:14.751000px;}
._b_c01134{width:15.804000px;}
._15_c01134{width:19.692000px;}
._11_c01134{width:24.999000px;}
._16_c01134{width:396.576000px;}
.fc2_c01134{color:transparent;}
.fc1_c01134{color:rgb(128,128,128);}
.fc0_c01134{color:rgb(0,0,0);}
.fs3_c01134{font-size:48.000000px;}
.fs2_c01134{font-size:63.000000px;}
.fs1_c01134{font-size:72.000000px;}
.fs0_c01134{font-size:87.000000px;}
.y0_c01134{bottom:0.000000px;}
.y1e_c01134{bottom:3.105000px;}
.y1d_c01134{bottom:7.228369px;}
.y1c_c01134{bottom:47.970000px;}
.y1b_c01134{bottom:78.870000px;}
.y1a_c01134{bottom:103.320000px;}
.y19_c01134{bottom:130.170000px;}
.y18_c01134{bottom:154.620000px;}
.y17_c01134{bottom:177.870000px;}
.y16_c01134{bottom:203.220000px;}
.y15_c01134{bottom:225.420000px;}
.y14_c01134{bottom:253.170000px;}
.y13_c01134{bottom:276.720000px;}
.y12_c01134{bottom:301.770000px;}
.y11_c01134{bottom:325.620000px;}
.y10_c01134{bottom:350.670000px;}
.yf_c01134{bottom:374.220000px;}
.ye_c01134{bottom:397.920000px;}
.yd_c01134{bottom:423.120000px;}
.yc_c01134{bottom:447.570000px;}
.yb_c01134{bottom:471.720000px;}
.ya_c01134{bottom:495.420000px;}
.y9_c01134{bottom:520.020000px;}
.y8_c01134{bottom:544.320000px;}
.y7_c01134{bottom:568.920000px;}
.y6_c01134{bottom:593.220000px;}
.y5_c01134{bottom:617.670000px;}
.y4_c01134{bottom:642.870000px;}
.y3_c01134{bottom:690.870000px;}
.y2_c01134{bottom:715.770000px;}
.y1_c01134{bottom:740.820000px;}
.h4_c01134{height:13.200073px;}
.h5_c01134{height:43.804688px;}
.h2_c01134{height:91.160156px;}
.h3_c01134{height:101.825684px;}
.h1_c01134{height:110.151855px;}
.h0_c01134{height:793.500000px;}
.w2_c01134{width:104.875500px;}
.w0_c01134{width:546.450000px;}
.w1_c01134{width:546.750000px;}
.x0_c01134{left:0.000000px;}
.x2_c01134{left:32.700000px;}
.x7_c01134{left:34.500000px;}
.x5_c01134{left:35.550000px;}
.x6_c01134{left:37.350000px;}
.x4_c01134{left:59.850000px;}
.x1_c01134{left:155.550000px;}
.x3_c01134{left:175.200000px;}
.x9_c01134{left:225.039230px;}
.x8_c01134{left:262.200000px;}
@media print{
.v0_c01134{vertical-align:0.000000pt;}
.ls0_c01134{letter-spacing:-2.666667pt;}
.ls1_c01134{letter-spacing:0.000000pt;}
.ws2_c01134{word-spacing:-26.712000pt;}
.ws0_c01134{word-spacing:-15.970667pt;}
.ws1_c01134{word-spacing:-15.424000pt;}
.ws3_c01134{word-spacing:0.000000pt;}
._12_c01134{margin-left:-12.544000pt;}
._14_c01134{margin-left:-9.408000pt;}
._13_c01134{margin-left:-8.320000pt;}
._f_c01134{margin-left:-6.592000pt;}
._e_c01134{margin-left:-4.960000pt;}
._8_c01134{margin-left:-4.032000pt;}
._9_c01134{margin-left:-2.613333pt;}
._4_c01134{margin-left:-1.610667pt;}
._1_c01134{width:1.005333pt;}
._0_c01134{width:2.010667pt;}
._3_c01134{width:3.109333pt;}
._7_c01134{width:4.096000pt;}
._5_c01134{width:5.072000pt;}
._2_c01134{width:6.456000pt;}
._a_c01134{width:8.250667pt;}
._d_c01134{width:9.333333pt;}
._c_c01134{width:10.432000pt;}
._6_c01134{width:11.880000pt;}
._10_c01134{width:13.112000pt;}
._b_c01134{width:14.048000pt;}
._15_c01134{width:17.504000pt;}
._11_c01134{width:22.221333pt;}
._16_c01134{width:352.512000pt;}
.fs3_c01134{font-size:42.666667pt;}
.fs2_c01134{font-size:56.000000pt;}
.fs1_c01134{font-size:64.000000pt;}
.fs0_c01134{font-size:77.333333pt;}
.y0_c01134{bottom:0.000000pt;}
.y1e_c01134{bottom:2.760000pt;}
.y1d_c01134{bottom:6.425217pt;}
.y1c_c01134{bottom:42.640000pt;}
.y1b_c01134{bottom:70.106667pt;}
.y1a_c01134{bottom:91.840000pt;}
.y19_c01134{bottom:115.706667pt;}
.y18_c01134{bottom:137.440000pt;}
.y17_c01134{bottom:158.106667pt;}
.y16_c01134{bottom:180.640000pt;}
.y15_c01134{bottom:200.373333pt;}
.y14_c01134{bottom:225.040000pt;}
.y13_c01134{bottom:245.973333pt;}
.y12_c01134{bottom:268.240000pt;}
.y11_c01134{bottom:289.440000pt;}
.y10_c01134{bottom:311.706667pt;}
.yf_c01134{bottom:332.640000pt;}
.ye_c01134{bottom:353.706667pt;}
.yd_c01134{bottom:376.106667pt;}
.yc_c01134{bottom:397.840000pt;}
.yb_c01134{bottom:419.306667pt;}
.ya_c01134{bottom:440.373333pt;}
.y9_c01134{bottom:462.240000pt;}
.y8_c01134{bottom:483.840000pt;}
.y7_c01134{bottom:505.706667pt;}
.y6_c01134{bottom:527.306667pt;}
.y5_c01134{bottom:549.040000pt;}
.y4_c01134{bottom:571.440000pt;}
.y3_c01134{bottom:614.106667pt;}
.y2_c01134{bottom:636.240000pt;}
.y1_c01134{bottom:658.506667pt;}
.h4_c01134{height:11.733399pt;}
.h5_c01134{height:38.937500pt;}
.h2_c01134{height:81.031250pt;}
.h3_c01134{height:90.511719pt;}
.h1_c01134{height:97.912760pt;}
.h0_c01134{height:705.333333pt;}
.w2_c01134{width:93.222667pt;}
.w0_c01134{width:485.733333pt;}
.w1_c01134{width:486.000000pt;}
.x0_c01134{left:0.000000pt;}
.x2_c01134{left:29.066667pt;}
.x7_c01134{left:30.666667pt;}
.x5_c01134{left:31.600000pt;}
.x6_c01134{left:33.200000pt;}
.x4_c01134{left:53.200000pt;}
.x1_c01134{left:138.266667pt;}
.x3_c01134{left:155.733333pt;}
.x9_c01134{left:200.034871pt;}
.x8_c01134{left:233.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b9b6c7a26781edcc94edc118.woff2')format("woff");}.ff1_c01135{font-family:ff1_c01135;line-height:1.568848;font-style:normal;font-weight:normal;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_d8262a2aaf37838765376b2c.woff2')format("woff");}.ff2_c01135{font-family:ff2_c01135;line-height:1.480469;font-style:normal;font-weight:normal;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_60e72c205c47d8570eaec428.woff2')format("woff");}.ff3_c01135{font-family:ff3_c01135;line-height:1.480469;font-style:normal;font-weight:normal;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_b4f7c8253edb744c9e7d5996.woff2')format("woff");}.ff4_c01135{font-family:ff4_c01135;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01135{font-family:ff5_c01135;line-height:1.219238;font-style: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(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.v0_c01135{vertical-align:0.000000px;}
.ls1_c01135{letter-spacing:0.000000px;}
.ls2_c01135{letter-spacing:3.000000px;}
.ls0_c01135{letter-spacing:5.232000px;}
.sc__c01135{text-shadow:none;}
.sc0_c01135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01135{-webkit-text-stroke:0px transparent;}
.sc0_c01135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01135{word-spacing:-57.540000px;}
.ws0_c01135{word-spacing:-17.352000px;}
.ws2_c01135{word-spacing:-15.183000px;}
.ws1_c01135{word-spacing:-12.291000px;}
.ws4_c01135{word-spacing:0.000000px;}
._1e_c01135{margin-left:-25.014000px;}
._1f_c01135{margin-left:-23.466000px;}
._12_c01135{margin-left:-22.320000px;}
._1a_c01135{margin-left:-21.096000px;}
._1d_c01135{margin-left:-17.436000px;}
._20_c01135{margin-left:-16.296000px;}
._a_c01135{margin-left:-15.120000px;}
._1_c01135{margin-left:-13.896000px;}
._10_c01135{margin-left:-12.150000px;}
._17_c01135{margin-left:-10.872000px;}
._0_c01135{margin-left:-9.720000px;}
._1c_c01135{margin-left:-8.508000px;}
._f_c01135{margin-left:-7.434000px;}
._1b_c01135{margin-left:-6.018000px;}
._e_c01135{margin-left:-4.620000px;}
._8_c01135{margin-left:-2.940000px;}
._b_c01135{margin-left:-1.716000px;}
._9_c01135{width:1.068000px;}
._5_c01135{width:2.442000px;}
._6_c01135{width:4.320000px;}
._c_c01135{width:5.370000px;}
._2_c01135{width:6.630000px;}
._7_c01135{width:7.986000px;}
._d_c01135{width:9.282000px;}
._4_c01135{width:10.644000px;}
._3_c01135{width:12.024000px;}
._11_c01135{width:14.106000px;}
._14_c01135{width:15.420000px;}
._19_c01135{width:20.154000px;}
._16_c01135{width:22.602000px;}
._18_c01135{width:24.330000px;}
._13_c01135{width:28.164000px;}
._15_c01135{width:40.644000px;}
.fc2_c01135{color:transparent;}
.fc1_c01135{color:rgb(128,128,128);}
.fc0_c01135{color:rgb(0,0,0);}
.fs5_c01135{font-size:48.000000px;}
.fs1_c01135{font-size:51.000000px;}
.fs3_c01135{font-size:63.000000px;}
.fs2_c01135{font-size:69.000000px;}
.fs0_c01135{font-size:72.000000px;}
.fs4_c01135{font-size:84.000000px;}
.y0_c01135{bottom:0.000000px;}
.y1f_c01135{bottom:3.105000px;}
.y1e_c01135{bottom:7.228369px;}
.y1d_c01135{bottom:75.570000px;}
.y1c_c01135{bottom:103.170000px;}
.y1b_c01135{bottom:127.920000px;}
.y1a_c01135{bottom:153.120000px;}
.y19_c01135{bottom:177.570000px;}
.y18_c01135{bottom:203.220000px;}
.y17_c01135{bottom:226.770000px;}
.y2_c01135{bottom:251.820000px;}
.y16_c01135{bottom:253.020000px;}
.y15_c01135{bottom:277.470000px;}
.y1_c01135{bottom:293.220000px;}
.y14_c01135{bottom:301.020000px;}
.y13_c01135{bottom:323.670000px;}
.y12_c01135{bottom:374.670000px;}
.y11_c01135{bottom:396.870000px;}
.y10_c01135{bottom:419.520000px;}
.yf_c01135{bottom:444.120000px;}
.ye_c01135{bottom:468.120000px;}
.yd_c01135{bottom:491.370000px;}
.yc_c01135{bottom:517.620000px;}
.yb_c01135{bottom:541.320000px;}
.ya_c01135{bottom:565.320000px;}
.y9_c01135{bottom:590.520000px;}
.y8_c01135{bottom:614.970000px;}
.y7_c01135{bottom:639.570000px;}
.y6_c01135{bottom:664.170000px;}
.y5_c01135{bottom:688.170000px;}
.y4_c01135{bottom:713.370000px;}
.y3_c01135{bottom:739.170000px;}
.h7_c01135{height:13.200073px;}
.h8_c01135{height:43.804688px;}
.h3_c01135{height:64.571777px;}
.h4_c01135{height:79.765137px;}
.h2_c01135{height:91.160156px;}
.h5_c01135{height:98.314453px;}
.h6_c01135{height:106.353516px;}
.h0_c01135{height:788.100000px;}
.h1_c01135{height:788.250000px;}
.w2_c01135{width:104.875500px;}
.w0_c01135{width:535.125000px;}
.w1_c01135{width:535.500000px;}
.x0_c01135{left:0.000000px;}
.x1_c01135{left:38.700000px;}
.x8_c01135{left:95.250000px;}
.x9_c01135{left:96.600000px;}
.xa_c01135{left:99.300000px;}
.x7_c01135{left:100.950000px;}
.xb_c01135{left:102.900000px;}
.x6_c01135{left:103.950000px;}
.xd_c01135{left:111.750000px;}
.x5_c01135{left:113.850000px;}
.x4_c01135{left:115.200000px;}
.x3_c01135{left:116.850000px;}
.xc_c01135{left:144.150000px;}
.xe_c01135{left:219.376740px;}
.x2_c01135{left:238.200000px;}
@media print{
.v0_c01135{vertical-align:0.000000pt;}
.ls1_c01135{letter-spacing:0.000000pt;}
.ls2_c01135{letter-spacing:2.666667pt;}
.ls0_c01135{letter-spacing:4.650667pt;}
.ws3_c01135{word-spacing:-51.146667pt;}
.ws0_c01135{word-spacing:-15.424000pt;}
.ws2_c01135{word-spacing:-13.496000pt;}
.ws1_c01135{word-spacing:-10.925333pt;}
.ws4_c01135{word-spacing:0.000000pt;}
._1e_c01135{margin-left:-22.234667pt;}
._1f_c01135{margin-left:-20.858667pt;}
._12_c01135{margin-left:-19.840000pt;}
._1a_c01135{margin-left:-18.752000pt;}
._1d_c01135{margin-left:-15.498667pt;}
._20_c01135{margin-left:-14.485333pt;}
._a_c01135{margin-left:-13.440000pt;}
._1_c01135{margin-left:-12.352000pt;}
._10_c01135{margin-left:-10.800000pt;}
._17_c01135{margin-left:-9.664000pt;}
._0_c01135{margin-left:-8.640000pt;}
._1c_c01135{margin-left:-7.562667pt;}
._f_c01135{margin-left:-6.608000pt;}
._1b_c01135{margin-left:-5.349333pt;}
._e_c01135{margin-left:-4.106667pt;}
._8_c01135{margin-left:-2.613333pt;}
._b_c01135{margin-left:-1.525333pt;}
._9_c01135{width:0.949333pt;}
._5_c01135{width:2.170667pt;}
._6_c01135{width:3.840000pt;}
._c_c01135{width:4.773333pt;}
._2_c01135{width:5.893333pt;}
._7_c01135{width:7.098667pt;}
._d_c01135{width:8.250667pt;}
._4_c01135{width:9.461333pt;}
._3_c01135{width:10.688000pt;}
._11_c01135{width:12.538667pt;}
._14_c01135{width:13.706667pt;}
._19_c01135{width:17.914667pt;}
._16_c01135{width:20.090667pt;}
._18_c01135{width:21.626667pt;}
._13_c01135{width:25.034667pt;}
._15_c01135{width:36.128000pt;}
.fs5_c01135{font-size:42.666667pt;}
.fs1_c01135{font-size:45.333333pt;}
.fs3_c01135{font-size:56.000000pt;}
.fs2_c01135{font-size:61.333333pt;}
.fs0_c01135{font-size:64.000000pt;}
.fs4_c01135{font-size:74.666667pt;}
.y0_c01135{bottom:0.000000pt;}
.y1f_c01135{bottom:2.760000pt;}
.y1e_c01135{bottom:6.425217pt;}
.y1d_c01135{bottom:67.173333pt;}
.y1c_c01135{bottom:91.706667pt;}
.y1b_c01135{bottom:113.706667pt;}
.y1a_c01135{bottom:136.106667pt;}
.y19_c01135{bottom:157.840000pt;}
.y18_c01135{bottom:180.640000pt;}
.y17_c01135{bottom:201.573333pt;}
.y2_c01135{bottom:223.840000pt;}
.y16_c01135{bottom:224.906667pt;}
.y15_c01135{bottom:246.640000pt;}
.y1_c01135{bottom:260.640000pt;}
.y14_c01135{bottom:267.573333pt;}
.y13_c01135{bottom:287.706667pt;}
.y12_c01135{bottom:333.040000pt;}
.y11_c01135{bottom:352.773333pt;}
.y10_c01135{bottom:372.906667pt;}
.yf_c01135{bottom:394.773333pt;}
.ye_c01135{bottom:416.106667pt;}
.yd_c01135{bottom:436.773333pt;}
.yc_c01135{bottom:460.106667pt;}
.yb_c01135{bottom:481.173333pt;}
.ya_c01135{bottom:502.506667pt;}
.y9_c01135{bottom:524.906667pt;}
.y8_c01135{bottom:546.640000pt;}
.y7_c01135{bottom:568.506667pt;}
.y6_c01135{bottom:590.373333pt;}
.y5_c01135{bottom:611.706667pt;}
.y4_c01135{bottom:634.106667pt;}
.y3_c01135{bottom:657.040000pt;}
.h7_c01135{height:11.733399pt;}
.h8_c01135{height:38.937500pt;}
.h3_c01135{height:57.397135pt;}
.h4_c01135{height:70.902344pt;}
.h2_c01135{height:81.031250pt;}
.h5_c01135{height:87.390625pt;}
.h6_c01135{height:94.536458pt;}
.h0_c01135{height:700.533333pt;}
.h1_c01135{height:700.666667pt;}
.w2_c01135{width:93.222667pt;}
.w0_c01135{width:475.666667pt;}
.w1_c01135{width:476.000000pt;}
.x0_c01135{left:0.000000pt;}
.x1_c01135{left:34.400000pt;}
.x8_c01135{left:84.666667pt;}
.x9_c01135{left:85.866667pt;}
.xa_c01135{left:88.266667pt;}
.x7_c01135{left:89.733333pt;}
.xb_c01135{left:91.466667pt;}
.x6_c01135{left:92.400000pt;}
.xd_c01135{left:99.333333pt;}
.x5_c01135{left:101.200000pt;}
.x4_c01135{left:102.400000pt;}
.x3_c01135{left:103.866667pt;}
.xc_c01135{left:128.133333pt;}
.xe_c01135{left:195.001546pt;}
.x2_c01135{left:211.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e2b478d6834f2663f0db663f.woff2')format("woff");}.ff1_c01136{font-family:ff1_c01136;line-height:1.480469;font-style:normal;font-weight:normal;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_3cac23971af54011279b9b61.woff2')format("woff");}.ff2_c01136{font-family:ff2_c01136;line-height:1.568848;font-style:normal;font-weight:normal;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_7a19f912d38bcbf29aac1d62.woff2')format("woff");}.ff3_c01136{font-family:ff3_c01136;line-height:1.284668;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01136{font-family:ff4_c01136;line-height:1.219238;font-style: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);}
.v0_c01136{vertical-align:0.000000px;}
.ls1_c01136{letter-spacing:0.000000px;}
.ls2_c01136{letter-spacing:3.000000px;}
.ls0_c01136{letter-spacing:6.480000px;}
.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;}
}
.ws1_c01136{word-spacing:-19.629000px;}
.ws2_c01136{word-spacing:0.000000px;}
.ws0_c01136{word-spacing:3.906000px;}
._c_c01136{margin-left:-8.856000px;}
._1_c01136{margin-left:-4.752000px;}
._10_c01136{margin-left:-3.672000px;}
._b_c01136{margin-left:-2.304000px;}
._d_c01136{margin-left:-1.224000px;}
._a_c01136{width:1.296000px;}
._0_c01136{width:2.520000px;}
._3_c01136{width:4.248000px;}
._7_c01136{width:5.472000px;}
._4_c01136{width:6.624000px;}
._2_c01136{width:7.920000px;}
._5_c01136{width:9.432000px;}
._9_c01136{width:10.584000px;}
._6_c01136{width:12.096000px;}
._12_c01136{width:13.104000px;}
._8_c01136{width:14.616000px;}
._11_c01136{width:16.344000px;}
._f_c01136{width:19.644000px;}
._14_c01136{width:21.285000px;}
._e_c01136{width:22.428000px;}
._13_c01136{width:27.153000px;}
.fc2_c01136{color:transparent;}
.fc1_c01136{color:rgb(128,128,128);}
.fc0_c01136{color:rgb(0,0,0);}
.fs4_c01136{font-size:48.000000px;}
.fs1_c01136{font-size:63.000000px;}
.fs2_c01136{font-size:69.000000px;}
.fs0_c01136{font-size:72.000000px;}
.fs3_c01136{font-size:81.000000px;}
.y0_c01136{bottom:0.000000px;}
.y1f_c01136{bottom:3.105000px;}
.y1e_c01136{bottom:7.228363px;}
.y1d_c01136{bottom:51.900000px;}
.y1c_c01136{bottom:81.300000px;}
.y1b_c01136{bottom:106.350000px;}
.y1a_c01136{bottom:131.850000px;}
.y19_c01136{bottom:156.600000px;}
.y18_c01136{bottom:177.150000px;}
.y17_c01136{bottom:205.650000px;}
.y16_c01136{bottom:229.800000px;}
.y15_c01136{bottom:254.850000px;}
.y14_c01136{bottom:279.450000px;}
.y13_c01136{bottom:303.150000px;}
.y12_c01136{bottom:328.050000px;}
.y11_c01136{bottom:351.600000px;}
.y10_c01136{bottom:375.600000px;}
.yf_c01136{bottom:397.950000px;}
.ye_c01136{bottom:423.900000px;}
.yd_c01136{bottom:448.200000px;}
.yc_c01136{bottom:472.050000px;}
.yb_c01136{bottom:496.800000px;}
.ya_c01136{bottom:521.100000px;}
.y9_c01136{bottom:543.150000px;}
.y8_c01136{bottom:570.000000px;}
.y7_c01136{bottom:594.600000px;}
.y6_c01136{bottom:618.750000px;}
.y5_c01136{bottom:643.500000px;}
.y4_c01136{bottom:667.650000px;}
.y3_c01136{bottom:692.550000px;}
.y2_c01136{bottom:717.300000px;}
.y1_c01136{bottom:742.800000px;}
.h5_c01136{height:13.200074px;}
.h6_c01136{height:43.804688px;}
.h3_c01136{height:79.497070px;}
.h4_c01136{height:87.361816px;}
.h2_c01136{height:91.160156px;}
.h0_c01136{height:791.100000px;}
.h1_c01136{height:791.250000px;}
.w2_c01136{width:104.875500px;}
.w1_c01136{width:542.250000px;}
.w0_c01136{width:542.400000px;}
.x0_c01136{left:0.000000px;}
.x3_c01136{left:28.650000px;}
.x2_c01136{left:30.000000px;}
.x4_c01136{left:31.650000px;}
.x5_c01136{left:34.650000px;}
.x1_c01136{left:148.200000px;}
.x7_c01136{left:223.014267px;}
.x6_c01136{left:394.500000px;}
@media print{
.v0_c01136{vertical-align:0.000000pt;}
.ls1_c01136{letter-spacing:0.000000pt;}
.ls2_c01136{letter-spacing:2.666667pt;}
.ls0_c01136{letter-spacing:5.760000pt;}
.ws1_c01136{word-spacing:-17.448000pt;}
.ws2_c01136{word-spacing:0.000000pt;}
.ws0_c01136{word-spacing:3.472000pt;}
._c_c01136{margin-left:-7.872000pt;}
._1_c01136{margin-left:-4.224000pt;}
._10_c01136{margin-left:-3.264000pt;}
._b_c01136{margin-left:-2.048000pt;}
._d_c01136{margin-left:-1.088000pt;}
._a_c01136{width:1.152000pt;}
._0_c01136{width:2.240000pt;}
._3_c01136{width:3.776000pt;}
._7_c01136{width:4.864000pt;}
._4_c01136{width:5.888000pt;}
._2_c01136{width:7.040000pt;}
._5_c01136{width:8.384000pt;}
._9_c01136{width:9.408000pt;}
._6_c01136{width:10.752000pt;}
._12_c01136{width:11.648000pt;}
._8_c01136{width:12.992000pt;}
._11_c01136{width:14.528000pt;}
._f_c01136{width:17.461333pt;}
._14_c01136{width:18.920000pt;}
._e_c01136{width:19.936000pt;}
._13_c01136{width:24.136000pt;}
.fs4_c01136{font-size:42.666667pt;}
.fs1_c01136{font-size:56.000000pt;}
.fs2_c01136{font-size:61.333333pt;}
.fs0_c01136{font-size:64.000000pt;}
.fs3_c01136{font-size:72.000000pt;}
.y0_c01136{bottom:0.000000pt;}
.y1f_c01136{bottom:2.760000pt;}
.y1e_c01136{bottom:6.425212pt;}
.y1d_c01136{bottom:46.133333pt;}
.y1c_c01136{bottom:72.266667pt;}
.y1b_c01136{bottom:94.533333pt;}
.y1a_c01136{bottom:117.200000pt;}
.y19_c01136{bottom:139.200000pt;}
.y18_c01136{bottom:157.466667pt;}
.y17_c01136{bottom:182.800000pt;}
.y16_c01136{bottom:204.266667pt;}
.y15_c01136{bottom:226.533333pt;}
.y14_c01136{bottom:248.400000pt;}
.y13_c01136{bottom:269.466667pt;}
.y12_c01136{bottom:291.600000pt;}
.y11_c01136{bottom:312.533333pt;}
.y10_c01136{bottom:333.866667pt;}
.yf_c01136{bottom:353.733333pt;}
.ye_c01136{bottom:376.800000pt;}
.yd_c01136{bottom:398.400000pt;}
.yc_c01136{bottom:419.600000pt;}
.yb_c01136{bottom:441.600000pt;}
.ya_c01136{bottom:463.200000pt;}
.y9_c01136{bottom:482.800000pt;}
.y8_c01136{bottom:506.666667pt;}
.y7_c01136{bottom:528.533333pt;}
.y6_c01136{bottom:550.000000pt;}
.y5_c01136{bottom:572.000000pt;}
.y4_c01136{bottom:593.466667pt;}
.y3_c01136{bottom:615.600000pt;}
.y2_c01136{bottom:637.600000pt;}
.y1_c01136{bottom:660.266667pt;}
.h5_c01136{height:11.733399pt;}
.h6_c01136{height:38.937500pt;}
.h3_c01136{height:70.664062pt;}
.h4_c01136{height:77.654948pt;}
.h2_c01136{height:81.031250pt;}
.h0_c01136{height:703.200000pt;}
.h1_c01136{height:703.333333pt;}
.w2_c01136{width:93.222667pt;}
.w1_c01136{width:482.000000pt;}
.w0_c01136{width:482.133333pt;}
.x0_c01136{left:0.000000pt;}
.x3_c01136{left:25.466667pt;}
.x2_c01136{left:26.666667pt;}
.x4_c01136{left:28.133333pt;}
.x5_c01136{left:30.800000pt;}
.x1_c01136{left:131.733333pt;}
.x7_c01136{left:198.234904pt;}
.x6_c01136{left:350.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_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_f0f4efee6ca17673a12bd455.woff2')format("woff");}.ff1_c01137{font-family:ff1_c01137;line-height:1.480469;font-style:normal;font-weight:normal;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_8c926e76ffb0ee12d4056bda.woff2')format("woff");}.ff2_c01137{font-family:ff2_c01137;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01137{font-family:ff3_c01137;line-height:1.219238;font-style: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);}
.v0_c01137{vertical-align:0.000000px;}
.ls1_c01137{letter-spacing:0.000000px;}
.ls0_c01137{letter-spacing:1.680000px;}
.ls2_c01137{letter-spacing:3.000000px;}
.ls3_c01137{letter-spacing:6.000000px;}
.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;}
}
.ws1_c01137{word-spacing:-18.183000px;}
.ws0_c01137{word-spacing:-17.352000px;}
.ws2_c01137{word-spacing:0.000000px;}
._e_c01137{margin-left:-11.664000px;}
._14_c01137{margin-left:-10.440000px;}
._10_c01137{margin-left:-9.144000px;}
._f_c01137{margin-left:-7.776000px;}
._11_c01137{margin-left:-6.624000px;}
._18_c01137{margin-left:-5.616000px;}
._3_c01137{margin-left:-4.464000px;}
._19_c01137{margin-left:-3.399000px;}
._7_c01137{margin-left:-2.304000px;}
._8_c01137{margin-left:-1.296000px;}
._13_c01137{width:1.152000px;}
._6_c01137{width:2.160000px;}
._4_c01137{width:3.240000px;}
._5_c01137{width:4.320000px;}
._1_c01137{width:5.616000px;}
._16_c01137{width:6.696000px;}
._a_c01137{width:7.704000px;}
._17_c01137{width:8.712000px;}
._2_c01137{width:10.008000px;}
._0_c01137{width:11.376000px;}
._1a_c01137{width:12.384000px;}
._c_c01137{width:13.752000px;}
._d_c01137{width:15.552000px;}
._1d_c01137{width:17.820000px;}
._1c_c01137{width:19.110000px;}
._b_c01137{width:20.232000px;}
._1b_c01137{width:21.480000px;}
._9_c01137{width:30.432000px;}
._12_c01137{width:103.440000px;}
._15_c01137{width:140.328000px;}
.fc2_c01137{color:transparent;}
.fc1_c01137{color:rgb(128,128,128);}
.fc0_c01137{color:rgb(0,0,0);}
.fs3_c01137{font-size:30.000000px;}
.fs5_c01137{font-size:48.000000px;}
.fs4_c01137{font-size:57.000000px;}
.fs1_c01137{font-size:63.000000px;}
.fs2_c01137{font-size:69.000000px;}
.fs0_c01137{font-size:72.000000px;}
.y0_c01137{bottom:0.000000px;}
.y1e_c01137{bottom:3.105000px;}
.y1d_c01137{bottom:7.228363px;}
.y1c_c01137{bottom:75.300000px;}
.y1b_c01137{bottom:102.150000px;}
.y1a_c01137{bottom:127.800000px;}
.y19_c01137{bottom:154.800000px;}
.y18_c01137{bottom:179.100000px;}
.y17_c01137{bottom:204.150000px;}
.y16_c01137{bottom:226.800000px;}
.y15_c01137{bottom:253.800000px;}
.y14_c01137{bottom:276.750000px;}
.y13_c01137{bottom:301.650000px;}
.y12_c01137{bottom:325.350000px;}
.y11_c01137{bottom:349.950000px;}
.y10_c01137{bottom:375.000000px;}
.yf_c01137{bottom:398.700000px;}
.ye_c01137{bottom:422.550000px;}
.yd_c01137{bottom:445.800000px;}
.yc_c01137{bottom:468.450000px;}
.yb_c01137{bottom:494.700000px;}
.ya_c01137{bottom:518.100000px;}
.y9_c01137{bottom:543.000000px;}
.y8_c01137{bottom:567.300000px;}
.y7_c01137{bottom:592.650000px;}
.y6_c01137{bottom:616.650000px;}
.y5_c01137{bottom:640.500000px;}
.y4_c01137{bottom:667.200000px;}
.y3_c01137{bottom:690.750000px;}
.y2_c01137{bottom:714.450000px;}
.y1_c01137{bottom:740.100000px;}
.h4_c01137{height:13.200074px;}
.h5_c01137{height:43.804688px;}
.h3_c01137{height:87.361816px;}
.h2_c01137{height:91.160156px;}
.h0_c01137{height:785.700000px;}
.h1_c01137{height:786.000000px;}
.w2_c01137{width:104.875500px;}
.w0_c01137{width:531.375000px;}
.w1_c01137{width:531.750000px;}
.x0_c01137{left:0.000000px;}
.x2_c01137{left:35.550000px;}
.x3_c01137{left:36.750000px;}
.x4_c01137{left:115.800000px;}
.x5_c01137{left:116.850000px;}
.x7_c01137{left:117.900000px;}
.x6_c01137{left:119.550000px;}
.x8_c01137{left:121.500000px;}
.x9_c01137{left:122.550000px;}
.xa_c01137{left:217.501740px;}
.x1_c01137{left:234.900000px;}
@media print{
.v0_c01137{vertical-align:0.000000pt;}
.ls1_c01137{letter-spacing:0.000000pt;}
.ls0_c01137{letter-spacing:1.493333pt;}
.ls2_c01137{letter-spacing:2.666667pt;}
.ls3_c01137{letter-spacing:5.333333pt;}
.ws1_c01137{word-spacing:-16.162667pt;}
.ws0_c01137{word-spacing:-15.424000pt;}
.ws2_c01137{word-spacing:0.000000pt;}
._e_c01137{margin-left:-10.368000pt;}
._14_c01137{margin-left:-9.280000pt;}
._10_c01137{margin-left:-8.128000pt;}
._f_c01137{margin-left:-6.912000pt;}
._11_c01137{margin-left:-5.888000pt;}
._18_c01137{margin-left:-4.992000pt;}
._3_c01137{margin-left:-3.968000pt;}
._19_c01137{margin-left:-3.021333pt;}
._7_c01137{margin-left:-2.048000pt;}
._8_c01137{margin-left:-1.152000pt;}
._13_c01137{width:1.024000pt;}
._6_c01137{width:1.920000pt;}
._4_c01137{width:2.880000pt;}
._5_c01137{width:3.840000pt;}
._1_c01137{width:4.992000pt;}
._16_c01137{width:5.952000pt;}
._a_c01137{width:6.848000pt;}
._17_c01137{width:7.744000pt;}
._2_c01137{width:8.896000pt;}
._0_c01137{width:10.112000pt;}
._1a_c01137{width:11.008000pt;}
._c_c01137{width:12.224000pt;}
._d_c01137{width:13.824000pt;}
._1d_c01137{width:15.840000pt;}
._1c_c01137{width:16.986667pt;}
._b_c01137{width:17.984000pt;}
._1b_c01137{width:19.093333pt;}
._9_c01137{width:27.050667pt;}
._12_c01137{width:91.946667pt;}
._15_c01137{width:124.736000pt;}
.fs3_c01137{font-size:26.666667pt;}
.fs5_c01137{font-size:42.666667pt;}
.fs4_c01137{font-size:50.666667pt;}
.fs1_c01137{font-size:56.000000pt;}
.fs2_c01137{font-size:61.333333pt;}
.fs0_c01137{font-size:64.000000pt;}
.y0_c01137{bottom:0.000000pt;}
.y1e_c01137{bottom:2.760000pt;}
.y1d_c01137{bottom:6.425212pt;}
.y1c_c01137{bottom:66.933333pt;}
.y1b_c01137{bottom:90.800000pt;}
.y1a_c01137{bottom:113.600000pt;}
.y19_c01137{bottom:137.600000pt;}
.y18_c01137{bottom:159.200000pt;}
.y17_c01137{bottom:181.466667pt;}
.y16_c01137{bottom:201.600000pt;}
.y15_c01137{bottom:225.600000pt;}
.y14_c01137{bottom:246.000000pt;}
.y13_c01137{bottom:268.133333pt;}
.y12_c01137{bottom:289.200000pt;}
.y11_c01137{bottom:311.066667pt;}
.y10_c01137{bottom:333.333333pt;}
.yf_c01137{bottom:354.400000pt;}
.ye_c01137{bottom:375.600000pt;}
.yd_c01137{bottom:396.266667pt;}
.yc_c01137{bottom:416.400000pt;}
.yb_c01137{bottom:439.733333pt;}
.ya_c01137{bottom:460.533333pt;}
.y9_c01137{bottom:482.666667pt;}
.y8_c01137{bottom:504.266667pt;}
.y7_c01137{bottom:526.800000pt;}
.y6_c01137{bottom:548.133333pt;}
.y5_c01137{bottom:569.333333pt;}
.y4_c01137{bottom:593.066667pt;}
.y3_c01137{bottom:614.000000pt;}
.y2_c01137{bottom:635.066667pt;}
.y1_c01137{bottom:657.866667pt;}
.h4_c01137{height:11.733399pt;}
.h5_c01137{height:38.937500pt;}
.h3_c01137{height:77.654948pt;}
.h2_c01137{height:81.031250pt;}
.h0_c01137{height:698.400000pt;}
.h1_c01137{height:698.666667pt;}
.w2_c01137{width:93.222667pt;}
.w0_c01137{width:472.333333pt;}
.w1_c01137{width:472.666667pt;}
.x0_c01137{left:0.000000pt;}
.x2_c01137{left:31.600000pt;}
.x3_c01137{left:32.666667pt;}
.x4_c01137{left:102.933333pt;}
.x5_c01137{left:103.866667pt;}
.x7_c01137{left:104.800000pt;}
.x6_c01137{left:106.266667pt;}
.x8_c01137{left:108.000000pt;}
.x9_c01137{left:108.933333pt;}
.xa_c01137{left:193.334880pt;}
.x1_c01137{left:208.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c301226392575d009646993d.woff2')format("woff");}.ff1_c01138{font-family:ff1_c01138;line-height:1.480469;font-style:normal;font-weight:normal;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_ade913ce4e14b64170df0eaf.woff2')format("woff");}.ff2_c01138{font-family:ff2_c01138;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01138{font-family:ff3_c01138;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01138{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01138{vertical-align:0.000000px;}
.v1_c01138{vertical-align:23.400000px;}
.ls1_c01138{letter-spacing:-3.000000px;}
.ls2_c01138{letter-spacing:0.000000px;}
.ls0_c01138{letter-spacing:97.200000px;}
.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;}
}
.ws2_c01138{word-spacing:-19.521000px;}
.ws1_c01138{word-spacing:-17.967000px;}
.ws0_c01138{word-spacing:-15.183000px;}
.ws3_c01138{word-spacing:0.000000px;}
._12_c01138{margin-left:-9.177000px;}
._11_c01138{margin-left:-6.426000px;}
._14_c01138{margin-left:-5.079000px;}
._10_c01138{margin-left:-2.502000px;}
._f_c01138{margin-left:-1.371000px;}
._2_c01138{width:1.305000px;}
._1_c01138{width:2.436000px;}
._0_c01138{width:4.350000px;}
._3_c01138{width:6.264000px;}
._5_c01138{width:7.656000px;}
._a_c01138{width:8.820000px;}
._c_c01138{width:10.776000px;}
._9_c01138{width:12.348000px;}
._d_c01138{width:13.827000px;}
._6_c01138{width:15.138000px;}
._b_c01138{width:16.632000px;}
._7_c01138{width:18.144000px;}
._8_c01138{width:20.220000px;}
._e_c01138{width:21.417000px;}
._15_c01138{width:22.455000px;}
._16_c01138{width:31.563000px;}
._17_c01138{width:38.934000px;}
._18_c01138{width:40.068000px;}
._13_c01138{width:59.094000px;}
._4_c01138{width:275.007000px;}
._19_c01138{width:278.334000px;}
.fc2_c01138{color:transparent;}
.fc1_c01138{color:rgb(128,128,128);}
.fc0_c01138{color:rgb(0,0,0);}
.fs5_c01138{font-size:48.000000px;}
.fs2_c01138{font-size:60.000000px;}
.fs1_c01138{font-size:63.000000px;}
.fs3_c01138{font-size:72.000000px;}
.fs4_c01138{font-size:81.000000px;}
.fs0_c01138{font-size:87.000000px;}
.y0_c01138{bottom:0.000000px;}
.y1e_c01138{bottom:3.105000px;}
.y1d_c01138{bottom:7.228369px;}
.y1c_c01138{bottom:41.070000px;}
.y1b_c01138{bottom:67.170000px;}
.y1a_c01138{bottom:92.520000px;}
.y19_c01138{bottom:118.020000px;}
.y18_c01138{bottom:141.420000px;}
.y17_c01138{bottom:166.620000px;}
.y16_c01138{bottom:192.270000px;}
.y15_c01138{bottom:218.970000px;}
.y14_c01138{bottom:241.620000px;}
.y13_c01138{bottom:265.320000px;}
.y12_c01138{bottom:286.470000px;}
.y11_c01138{bottom:319.320000px;}
.y10_c01138{bottom:366.870000px;}
.yf_c01138{bottom:389.820000px;}
.ye_c01138{bottom:415.170000px;}
.yd_c01138{bottom:440.370000px;}
.yc_c01138{bottom:464.970000px;}
.yb_c01138{bottom:488.970000px;}
.ya_c01138{bottom:513.720000px;}
.y9_c01138{bottom:537.270000px;}
.y8_c01138{bottom:561.870000px;}
.y7_c01138{bottom:586.920000px;}
.y6_c01138{bottom:611.520000px;}
.y5_c01138{bottom:636.420000px;}
.y4_c01138{bottom:661.470000px;}
.y3_c01138{bottom:686.070000px;}
.y2_c01138{bottom:710.820000px;}
.y1_c01138{bottom:736.020000px;}
.h7_c01138{height:13.200073px;}
.h8_c01138{height:43.804688px;}
.h3_c01138{height:79.765137px;}
.h6_c01138{height:94.803223px;}
.h4_c01138{height:101.825684px;}
.h2_c01138{height:110.151855px;}
.h5_c01138{height:114.560156px;}
.h1_c01138{height:790.500000px;}
.h0_c01138{height:790.800000px;}
.w2_c01138{width:104.875500px;}
.w0_c01138{width:535.950000px;}
.w1_c01138{width:536.250000px;}
.x0_c01138{left:0.000000px;}
.x5_c01138{left:24.900000px;}
.xa_c01138{left:27.000000px;}
.x9_c01138{left:29.700000px;}
.x6_c01138{left:31.350000px;}
.x2_c01138{left:34.050000px;}
.x3_c01138{left:35.100000px;}
.x4_c01138{left:36.150000px;}
.x8_c01138{left:70.500000px;}
.x7_c01138{left:111.300000px;}
.x1_c01138{left:155.550000px;}
.xc_c01138{left:219.789230px;}
.xb_c01138{left:251.700000px;}
@media print{
.v0_c01138{vertical-align:0.000000pt;}
.v1_c01138{vertical-align:20.800000pt;}
.ls1_c01138{letter-spacing:-2.666667pt;}
.ls2_c01138{letter-spacing:0.000000pt;}
.ls0_c01138{letter-spacing:86.400000pt;}
.ws2_c01138{word-spacing:-17.352000pt;}
.ws1_c01138{word-spacing:-15.970667pt;}
.ws0_c01138{word-spacing:-13.496000pt;}
.ws3_c01138{word-spacing:0.000000pt;}
._12_c01138{margin-left:-8.157333pt;}
._11_c01138{margin-left:-5.712000pt;}
._14_c01138{margin-left:-4.514667pt;}
._10_c01138{margin-left:-2.224000pt;}
._f_c01138{margin-left:-1.218667pt;}
._2_c01138{width:1.160000pt;}
._1_c01138{width:2.165333pt;}
._0_c01138{width:3.866667pt;}
._3_c01138{width:5.568000pt;}
._5_c01138{width:6.805333pt;}
._a_c01138{width:7.840000pt;}
._c_c01138{width:9.578667pt;}
._9_c01138{width:10.976000pt;}
._d_c01138{width:12.290667pt;}
._6_c01138{width:13.456000pt;}
._b_c01138{width:14.784000pt;}
._7_c01138{width:16.128000pt;}
._8_c01138{width:17.973333pt;}
._e_c01138{width:19.037333pt;}
._15_c01138{width:19.960000pt;}
._16_c01138{width:28.056000pt;}
._17_c01138{width:34.608000pt;}
._18_c01138{width:35.616000pt;}
._13_c01138{width:52.528000pt;}
._4_c01138{width:244.450667pt;}
._19_c01138{width:247.408000pt;}
.fs5_c01138{font-size:42.666667pt;}
.fs2_c01138{font-size:53.333333pt;}
.fs1_c01138{font-size:56.000000pt;}
.fs3_c01138{font-size:64.000000pt;}
.fs4_c01138{font-size:72.000000pt;}
.fs0_c01138{font-size:77.333333pt;}
.y0_c01138{bottom:0.000000pt;}
.y1e_c01138{bottom:2.760000pt;}
.y1d_c01138{bottom:6.425217pt;}
.y1c_c01138{bottom:36.506667pt;}
.y1b_c01138{bottom:59.706667pt;}
.y1a_c01138{bottom:82.240000pt;}
.y19_c01138{bottom:104.906667pt;}
.y18_c01138{bottom:125.706667pt;}
.y17_c01138{bottom:148.106667pt;}
.y16_c01138{bottom:170.906667pt;}
.y15_c01138{bottom:194.640000pt;}
.y14_c01138{bottom:214.773333pt;}
.y13_c01138{bottom:235.840000pt;}
.y12_c01138{bottom:254.640000pt;}
.y11_c01138{bottom:283.840000pt;}
.y10_c01138{bottom:326.106667pt;}
.yf_c01138{bottom:346.506667pt;}
.ye_c01138{bottom:369.040000pt;}
.yd_c01138{bottom:391.440000pt;}
.yc_c01138{bottom:413.306667pt;}
.yb_c01138{bottom:434.640000pt;}
.ya_c01138{bottom:456.640000pt;}
.y9_c01138{bottom:477.573333pt;}
.y8_c01138{bottom:499.440000pt;}
.y7_c01138{bottom:521.706667pt;}
.y6_c01138{bottom:543.573333pt;}
.y5_c01138{bottom:565.706667pt;}
.y4_c01138{bottom:587.973333pt;}
.y3_c01138{bottom:609.840000pt;}
.y2_c01138{bottom:631.840000pt;}
.y1_c01138{bottom:654.240000pt;}
.h7_c01138{height:11.733399pt;}
.h8_c01138{height:38.937500pt;}
.h3_c01138{height:70.902344pt;}
.h6_c01138{height:84.269531pt;}
.h4_c01138{height:90.511719pt;}
.h2_c01138{height:97.912760pt;}
.h5_c01138{height:101.831250pt;}
.h1_c01138{height:702.666667pt;}
.h0_c01138{height:702.933333pt;}
.w2_c01138{width:93.222667pt;}
.w0_c01138{width:476.400000pt;}
.w1_c01138{width:476.666667pt;}
.x0_c01138{left:0.000000pt;}
.x5_c01138{left:22.133333pt;}
.xa_c01138{left:24.000000pt;}
.x9_c01138{left:26.400000pt;}
.x6_c01138{left:27.866667pt;}
.x2_c01138{left:30.266667pt;}
.x3_c01138{left:31.200000pt;}
.x4_c01138{left:32.133333pt;}
.x8_c01138{left:62.666667pt;}
.x7_c01138{left:98.933333pt;}
.x1_c01138{left:138.266667pt;}
.xc_c01138{left:195.368205pt;}
.xb_c01138{left:223.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_48bf3b39e74a034df33e1ada.woff2')format("woff");}.ff1_c01139{font-family:ff1_c01139;line-height:1.480469;font-style:normal;font-weight:normal;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_5af26b68585d097387ca9813.woff2')format("woff");}.ff2_c01139{font-family:ff2_c01139;line-height:1.568848;font-style:normal;font-weight:normal;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_7f24b86f22780caf8f49c143.woff2')format("woff");}.ff3_c01139{font-family:ff3_c01139;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01139{font-family:ff4_c01139;line-height:1.219238;font-style: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);}
.v0_c01139{vertical-align:0.000000px;}
.ls0_c01139{letter-spacing:0.000000px;}
.ls1_c01139{letter-spacing:3.000000px;}
.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;}
}
.ws1_c01139{word-spacing:-57.540000px;}
.ws0_c01139{word-spacing:-17.352000px;}
.ws2_c01139{word-spacing:0.000000px;}
._10_c01139{margin-left:-30.096000px;}
._12_c01139{margin-left:-27.720000px;}
._1e_c01139{margin-left:-15.624000px;}
._e_c01139{margin-left:-9.288000px;}
._f_c01139{margin-left:-7.896000px;}
._4_c01139{margin-left:-5.688000px;}
._16_c01139{margin-left:-4.680000px;}
._b_c01139{margin-left:-3.672000px;}
._d_c01139{margin-left:-2.232000px;}
._15_c01139{margin-left:-1.080000px;}
._7_c01139{width:1.080000px;}
._a_c01139{width:2.376000px;}
._1_c01139{width:4.104000px;}
._9_c01139{width:5.400000px;}
._3_c01139{width:7.200000px;}
._2_c01139{width:8.280000px;}
._6_c01139{width:9.504000px;}
._0_c01139{width:11.160000px;}
._5_c01139{width:12.672000px;}
._17_c01139{width:13.680000px;}
._8_c01139{width:14.688000px;}
._1b_c01139{width:15.768000px;}
._1a_c01139{width:18.648000px;}
._14_c01139{width:20.736000px;}
._1c_c01139{width:25.632000px;}
._c_c01139{width:33.336000px;}
._18_c01139{width:37.728000px;}
._19_c01139{width:42.768000px;}
._1d_c01139{width:175.200000px;}
._11_c01139{width:204.672000px;}
._13_c01139{width:303.048000px;}
.fc2_c01139{color:transparent;}
.fc1_c01139{color:rgb(128,128,128);}
.fc0_c01139{color:rgb(0,0,0);}
.fs3_c01139{font-size:48.000000px;}
.fs1_c01139{font-size:69.000000px;}
.fs0_c01139{font-size:72.000000px;}
.fs2_c01139{font-size:84.000000px;}
.y0_c01139{bottom:0.000000px;}
.y1e_c01139{bottom:3.105000px;}
.y1d_c01139{bottom:7.228363px;}
.y1c_c01139{bottom:61.500000px;}
.y1b_c01139{bottom:87.150000px;}
.y1a_c01139{bottom:113.100000px;}
.y19_c01139{bottom:137.400000px;}
.y18_c01139{bottom:162.750000px;}
.y17_c01139{bottom:187.950000px;}
.y16_c01139{bottom:213.300000px;}
.y15_c01139{bottom:238.200000px;}
.y14_c01139{bottom:263.550000px;}
.y13_c01139{bottom:288.300000px;}
.y12_c01139{bottom:313.200000px;}
.y11_c01139{bottom:337.800000px;}
.y10_c01139{bottom:361.800000px;}
.yf_c01139{bottom:386.550000px;}
.ye_c01139{bottom:410.700000px;}
.yd_c01139{bottom:434.400000px;}
.yc_c01139{bottom:458.100000px;}
.yb_c01139{bottom:482.550000px;}
.ya_c01139{bottom:507.300000px;}
.y9_c01139{bottom:532.200000px;}
.y8_c01139{bottom:557.850000px;}
.y7_c01139{bottom:581.250000px;}
.y6_c01139{bottom:606.150000px;}
.y5_c01139{bottom:631.500000px;}
.y4_c01139{bottom:655.800000px;}
.y3_c01139{bottom:680.700000px;}
.y2_c01139{bottom:705.150000px;}
.y1_c01139{bottom:731.250000px;}
.h4_c01139{height:13.200074px;}
.h5_c01139{height:43.804688px;}
.h2_c01139{height:91.160156px;}
.h3_c01139{height:98.314453px;}
.h0_c01139{height:785.700000px;}
.h1_c01139{height:786.000000px;}
.w2_c01139{width:104.875500px;}
.w1_c01139{width:547.500000px;}
.w0_c01139{width:547.800000px;}
.x0_c01139{left:0.000000px;}
.x7_c01139{left:33.450000px;}
.x5_c01139{left:40.200000px;}
.x6_c01139{left:44.850000px;}
.x4_c01139{left:97.200000px;}
.x9_c01139{left:113.700000px;}
.x8_c01139{left:116.400000px;}
.x3_c01139{left:117.750000px;}
.x2_c01139{left:119.700000px;}
.xa_c01139{left:225.714249px;}
.x1_c01139{left:238.350000px;}
@media print{
.v0_c01139{vertical-align:0.000000pt;}
.ls0_c01139{letter-spacing:0.000000pt;}
.ls1_c01139{letter-spacing:2.666667pt;}
.ws1_c01139{word-spacing:-51.146667pt;}
.ws0_c01139{word-spacing:-15.424000pt;}
.ws2_c01139{word-spacing:0.000000pt;}
._10_c01139{margin-left:-26.752000pt;}
._12_c01139{margin-left:-24.640000pt;}
._1e_c01139{margin-left:-13.888000pt;}
._e_c01139{margin-left:-8.256000pt;}
._f_c01139{margin-left:-7.018667pt;}
._4_c01139{margin-left:-5.056000pt;}
._16_c01139{margin-left:-4.160000pt;}
._b_c01139{margin-left:-3.264000pt;}
._d_c01139{margin-left:-1.984000pt;}
._15_c01139{margin-left:-0.960000pt;}
._7_c01139{width:0.960000pt;}
._a_c01139{width:2.112000pt;}
._1_c01139{width:3.648000pt;}
._9_c01139{width:4.800000pt;}
._3_c01139{width:6.400000pt;}
._2_c01139{width:7.360000pt;}
._6_c01139{width:8.448000pt;}
._0_c01139{width:9.920000pt;}
._5_c01139{width:11.264000pt;}
._17_c01139{width:12.160000pt;}
._8_c01139{width:13.056000pt;}
._1b_c01139{width:14.016000pt;}
._1a_c01139{width:16.576000pt;}
._14_c01139{width:18.432000pt;}
._1c_c01139{width:22.784000pt;}
._c_c01139{width:29.632000pt;}
._18_c01139{width:33.536000pt;}
._19_c01139{width:38.016000pt;}
._1d_c01139{width:155.733333pt;}
._11_c01139{width:181.930667pt;}
._13_c01139{width:269.376000pt;}
.fs3_c01139{font-size:42.666667pt;}
.fs1_c01139{font-size:61.333333pt;}
.fs0_c01139{font-size:64.000000pt;}
.fs2_c01139{font-size:74.666667pt;}
.y0_c01139{bottom:0.000000pt;}
.y1e_c01139{bottom:2.760000pt;}
.y1d_c01139{bottom:6.425212pt;}
.y1c_c01139{bottom:54.666667pt;}
.y1b_c01139{bottom:77.466667pt;}
.y1a_c01139{bottom:100.533333pt;}
.y19_c01139{bottom:122.133333pt;}
.y18_c01139{bottom:144.666667pt;}
.y17_c01139{bottom:167.066667pt;}
.y16_c01139{bottom:189.600000pt;}
.y15_c01139{bottom:211.733333pt;}
.y14_c01139{bottom:234.266667pt;}
.y13_c01139{bottom:256.266667pt;}
.y12_c01139{bottom:278.400000pt;}
.y11_c01139{bottom:300.266667pt;}
.y10_c01139{bottom:321.600000pt;}
.yf_c01139{bottom:343.600000pt;}
.ye_c01139{bottom:365.066667pt;}
.yd_c01139{bottom:386.133333pt;}
.yc_c01139{bottom:407.200000pt;}
.yb_c01139{bottom:428.933333pt;}
.ya_c01139{bottom:450.933333pt;}
.y9_c01139{bottom:473.066667pt;}
.y8_c01139{bottom:495.866667pt;}
.y7_c01139{bottom:516.666667pt;}
.y6_c01139{bottom:538.800000pt;}
.y5_c01139{bottom:561.333333pt;}
.y4_c01139{bottom:582.933333pt;}
.y3_c01139{bottom:605.066667pt;}
.y2_c01139{bottom:626.800000pt;}
.y1_c01139{bottom:650.000000pt;}
.h4_c01139{height:11.733399pt;}
.h5_c01139{height:38.937500pt;}
.h2_c01139{height:81.031250pt;}
.h3_c01139{height:87.390625pt;}
.h0_c01139{height:698.400000pt;}
.h1_c01139{height:698.666667pt;}
.w2_c01139{width:93.222667pt;}
.w1_c01139{width:486.666667pt;}
.w0_c01139{width:486.933333pt;}
.x0_c01139{left:0.000000pt;}
.x7_c01139{left:29.733333pt;}
.x5_c01139{left:35.733333pt;}
.x6_c01139{left:39.866667pt;}
.x4_c01139{left:86.400000pt;}
.x9_c01139{left:101.066667pt;}
.x8_c01139{left:103.466667pt;}
.x3_c01139{left:104.666667pt;}
.x2_c01139{left:106.400000pt;}
.xa_c01139{left:200.634888pt;}
.x1_c01139{left:211.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fc6428680e24272690a8f952.woff2')format("woff");}.ff1_c01140{font-family:ff1_c01140;line-height:1.480469;font-style:normal;font-weight:normal;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_7c9c094b43997dbcf0a4136f.woff2')format("woff");}.ff2_c01140{font-family:ff2_c01140;line-height:1.568848;font-style:normal;font-weight:normal;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_9a7b4f53c486bdaebdfa7a9f.woff2')format("woff");}.ff3_c01140{font-family:ff3_c01140;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01140{font-family:ff4_c01140;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01140{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01140{vertical-align:0.000000px;}
.v1_c01140{vertical-align:103.800000px;}
.ls3_c01140{letter-spacing:0.000000px;}
.ls4_c01140{letter-spacing:3.000000px;}
.ls2_c01140{letter-spacing:8.388000px;}
.ls1_c01140{letter-spacing:14.388000px;}
.ls0_c01140{letter-spacing:18.876000px;}
.sc__c01140{text-shadow:none;}
.sc0_c01140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01140{-webkit-text-stroke:0px transparent;}
.sc0_c01140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01140{word-spacing:-30.051000px;}
.ws0_c01140{word-spacing:-17.352000px;}
.ws2_c01140{word-spacing:0.000000px;}
._6_c01140{margin-left:-26.133000px;}
._1d_c01140{margin-left:-13.524000px;}
._7_c01140{margin-left:-12.462000px;}
._8_c01140{margin-left:-10.881000px;}
._1b_c01140{margin-left:-7.008000px;}
._1a_c01140{margin-left:-5.736000px;}
._17_c01140{margin-left:-3.744000px;}
._c_c01140{margin-left:-1.800000px;}
._a_c01140{width:1.728000px;}
._d_c01140{width:3.240000px;}
._9_c01140{width:4.680000px;}
._1c_c01140{width:5.688000px;}
._b_c01140{width:6.696000px;}
._f_c01140{width:8.484000px;}
._19_c01140{width:10.308000px;}
._4_c01140{width:12.000000px;}
._10_c01140{width:13.464000px;}
._12_c01140{width:14.742000px;}
._1_c01140{width:15.780000px;}
._14_c01140{width:18.864000px;}
._15_c01140{width:20.910000px;}
._13_c01140{width:22.104000px;}
._16_c01140{width:23.688000px;}
._0_c01140{width:25.560000px;}
._2_c01140{width:26.940000px;}
._18_c01140{width:31.770000px;}
._3_c01140{width:41.160000px;}
._1e_c01140{width:68.904000px;}
._1f_c01140{width:270.918000px;}
._5_c01140{width:300.948000px;}
._11_c01140{width:312.768000px;}
._e_c01140{width:351.720000px;}
.fc2_c01140{color:transparent;}
.fc1_c01140{color:rgb(128,128,128);}
.fc0_c01140{color:rgb(0,0,0);}
.fs6_c01140{font-size:48.000000px;}
.fs0_c01140{font-size:60.000000px;}
.fs5_c01140{font-size:63.000000px;}
.fs3_c01140{font-size:66.000000px;}
.fs2_c01140{font-size:72.000000px;}
.fs1_c01140{font-size:93.000000px;}
.fs4_c01140{font-size:231.000000px;}
.y0_c01140{bottom:0.000000px;}
.y1a_c01140{bottom:3.105000px;}
.y19_c01140{bottom:7.228371px;}
.y18_c01140{bottom:42.615000px;}
.y17_c01140{bottom:70.215000px;}
.y16_c01140{bottom:173.115000px;}
.y15_c01140{bottom:198.165000px;}
.y14_c01140{bottom:222.465000px;}
.y13_c01140{bottom:248.415000px;}
.y12_c01140{bottom:273.015000px;}
.y11_c01140{bottom:297.765000px;}
.y10_c01140{bottom:322.365000px;}
.yf_c01140{bottom:346.065000px;}
.ye_c01140{bottom:370.215000px;}
.yd_c01140{bottom:395.565000px;}
.yc_c01140{bottom:418.965000px;}
.yb_c01140{bottom:443.265000px;}
.y9_c01140{bottom:466.815000px;}
.ya_c01140{bottom:468.765000px;}
.y8_c01140{bottom:565.365000px;}
.y7_c01140{bottom:590.415000px;}
.y6_c01140{bottom:614.565000px;}
.y5_c01140{bottom:638.865000px;}
.y4_c01140{bottom:664.215000px;}
.y3_c01140{bottom:688.515000px;}
.y2_c01140{bottom:713.265000px;}
.y1_c01140{bottom:738.765000px;}
.h5_c01140{height:13.200074px;}
.h6_c01140{height:43.804688px;}
.h3_c01140{height:91.160156px;}
.h2_c01140{height:117.748535px;}
.h4_c01140{height:292.472168px;}
.h0_c01140{height:786.525000px;}
.h1_c01140{height:786.750000px;}
.w2_c01140{width:104.875500px;}
.w0_c01140{width:556.200000px;}
.w1_c01140{width:556.500000px;}
.x0_c01140{left:0.000000px;}
.x2_c01140{left:41.550000px;}
.x3_c01140{left:43.200000px;}
.x4_c01140{left:45.600000px;}
.x5_c01140{left:48.150000px;}
.x7_c01140{left:49.650000px;}
.x8_c01140{left:50.850000px;}
.x6_c01140{left:69.750000px;}
.x1_c01140{left:160.350000px;}
.xa_c01140{left:229.914230px;}
.x9_c01140{left:236.250000px;}
@media print{
.v0_c01140{vertical-align:0.000000pt;}
.v1_c01140{vertical-align:92.266667pt;}
.ls3_c01140{letter-spacing:0.000000pt;}
.ls4_c01140{letter-spacing:2.666667pt;}
.ls2_c01140{letter-spacing:7.456000pt;}
.ls1_c01140{letter-spacing:12.789333pt;}
.ls0_c01140{letter-spacing:16.778667pt;}
.ws1_c01140{word-spacing:-26.712000pt;}
.ws0_c01140{word-spacing:-15.424000pt;}
.ws2_c01140{word-spacing:0.000000pt;}
._6_c01140{margin-left:-23.229333pt;}
._1d_c01140{margin-left:-12.021333pt;}
._7_c01140{margin-left:-11.077333pt;}
._8_c01140{margin-left:-9.672000pt;}
._1b_c01140{margin-left:-6.229333pt;}
._1a_c01140{margin-left:-5.098667pt;}
._17_c01140{margin-left:-3.328000pt;}
._c_c01140{margin-left:-1.600000pt;}
._a_c01140{width:1.536000pt;}
._d_c01140{width:2.880000pt;}
._9_c01140{width:4.160000pt;}
._1c_c01140{width:5.056000pt;}
._b_c01140{width:5.952000pt;}
._f_c01140{width:7.541333pt;}
._19_c01140{width:9.162667pt;}
._4_c01140{width:10.666667pt;}
._10_c01140{width:11.968000pt;}
._12_c01140{width:13.104000pt;}
._1_c01140{width:14.026667pt;}
._14_c01140{width:16.768000pt;}
._15_c01140{width:18.586667pt;}
._13_c01140{width:19.648000pt;}
._16_c01140{width:21.056000pt;}
._0_c01140{width:22.720000pt;}
._2_c01140{width:23.946667pt;}
._18_c01140{width:28.240000pt;}
._3_c01140{width:36.586667pt;}
._1e_c01140{width:61.248000pt;}
._1f_c01140{width:240.816000pt;}
._5_c01140{width:267.509333pt;}
._11_c01140{width:278.016000pt;}
._e_c01140{width:312.640000pt;}
.fs6_c01140{font-size:42.666667pt;}
.fs0_c01140{font-size:53.333333pt;}
.fs5_c01140{font-size:56.000000pt;}
.fs3_c01140{font-size:58.666667pt;}
.fs2_c01140{font-size:64.000000pt;}
.fs1_c01140{font-size:82.666667pt;}
.fs4_c01140{font-size:205.333333pt;}
.y0_c01140{bottom:0.000000pt;}
.y1a_c01140{bottom:2.760000pt;}
.y19_c01140{bottom:6.425219pt;}
.y18_c01140{bottom:37.880000pt;}
.y17_c01140{bottom:62.413333pt;}
.y16_c01140{bottom:153.880000pt;}
.y15_c01140{bottom:176.146667pt;}
.y14_c01140{bottom:197.746667pt;}
.y13_c01140{bottom:220.813333pt;}
.y12_c01140{bottom:242.680000pt;}
.y11_c01140{bottom:264.680000pt;}
.y10_c01140{bottom:286.546667pt;}
.yf_c01140{bottom:307.613333pt;}
.ye_c01140{bottom:329.080000pt;}
.yd_c01140{bottom:351.613333pt;}
.yc_c01140{bottom:372.413333pt;}
.yb_c01140{bottom:394.013333pt;}
.y9_c01140{bottom:414.946667pt;}
.ya_c01140{bottom:416.680000pt;}
.y8_c01140{bottom:502.546667pt;}
.y7_c01140{bottom:524.813333pt;}
.y6_c01140{bottom:546.280000pt;}
.y5_c01140{bottom:567.880000pt;}
.y4_c01140{bottom:590.413333pt;}
.y3_c01140{bottom:612.013333pt;}
.y2_c01140{bottom:634.013333pt;}
.y1_c01140{bottom:656.680000pt;}
.h5_c01140{height:11.733399pt;}
.h6_c01140{height:38.937500pt;}
.h3_c01140{height:81.031250pt;}
.h2_c01140{height:104.665365pt;}
.h4_c01140{height:259.975260pt;}
.h0_c01140{height:699.133333pt;}
.h1_c01140{height:699.333333pt;}
.w2_c01140{width:93.222667pt;}
.w0_c01140{width:494.400000pt;}
.w1_c01140{width:494.666667pt;}
.x0_c01140{left:0.000000pt;}
.x2_c01140{left:36.933333pt;}
.x3_c01140{left:38.400000pt;}
.x4_c01140{left:40.533333pt;}
.x5_c01140{left:42.800000pt;}
.x7_c01140{left:44.133333pt;}
.x8_c01140{left:45.200000pt;}
.x6_c01140{left:62.000000pt;}
.x1_c01140{left:142.533333pt;}
.xa_c01140{left:204.368205pt;}
.x9_c01140{left:210.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_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_f87dc720a79411810c85e703.woff2')format("woff");}.ff1_c01141{font-family:ff1_c01141;line-height:1.480469;font-style:normal;font-weight:normal;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_8348a6e23ab1b1f0bc07bc76.woff2')format("woff");}.ff2_c01141{font-family:ff2_c01141;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01141{font-family:ff3_c01141;line-height:1.219238;font-style: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;}
.ls1_c01141{letter-spacing:6.000000px;}
.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:-17.352000px;}
.ws1_c01141{word-spacing:0.000000px;}
._3_c01141{margin-left:-14.040000px;}
._12_c01141{margin-left:-7.776000px;}
._8_c01141{margin-left:-6.768000px;}
._17_c01141{margin-left:-4.968000px;}
._16_c01141{margin-left:-3.888000px;}
._9_c01141{margin-left:-2.232000px;}
._14_c01141{margin-left:-1.152000px;}
._5_c01141{width:1.800000px;}
._4_c01141{width:3.240000px;}
._7_c01141{width:4.536000px;}
._1_c01141{width:5.904000px;}
._b_c01141{width:7.056000px;}
._6_c01141{width:8.064000px;}
._e_c01141{width:9.216000px;}
._2_c01141{width:10.368000px;}
._0_c01141{width:11.736000px;}
._a_c01141{width:13.104000px;}
._11_c01141{width:14.328000px;}
._c_c01141{width:15.624000px;}
._10_c01141{width:18.648000px;}
._f_c01141{width:20.304000px;}
._13_c01141{width:21.528000px;}
._d_c01141{width:23.328000px;}
._15_c01141{width:42.828000px;}
._18_c01141{width:81.453000px;}
._19_c01141{width:1103.403000px;}
.fc2_c01141{color:transparent;}
.fc1_c01141{color:rgb(128,128,128);}
.fc0_c01141{color:rgb(0,0,0);}
.fs2_c01141{font-size:48.000000px;}
.fs1_c01141{font-size:69.000000px;}
.fs0_c01141{font-size:72.000000px;}
.y0_c01141{bottom:0.000000px;}
.y1f_c01141{bottom:3.105000px;}
.y1e_c01141{bottom:7.228363px;}
.y1d_c01141{bottom:42.150000px;}
.y1c_c01141{bottom:65.250000px;}
.y1b_c01141{bottom:88.050000px;}
.y1a_c01141{bottom:114.150000px;}
.y19_c01141{bottom:138.450000px;}
.y18_c01141{bottom:164.100000px;}
.y17_c01141{bottom:188.400000px;}
.y16_c01141{bottom:213.600000px;}
.y15_c01141{bottom:238.950000px;}
.y14_c01141{bottom:263.700000px;}
.y13_c01141{bottom:289.950000px;}
.y12_c01141{bottom:314.550000px;}
.y11_c01141{bottom:339.150000px;}
.y10_c01141{bottom:363.750000px;}
.yf_c01141{bottom:389.100000px;}
.ye_c01141{bottom:411.300000px;}
.yd_c01141{bottom:436.050000px;}
.yc_c01141{bottom:458.700000px;}
.yb_c01141{bottom:483.600000px;}
.ya_c01141{bottom:509.250000px;}
.y9_c01141{bottom:533.850000px;}
.y8_c01141{bottom:558.600000px;}
.y7_c01141{bottom:583.200000px;}
.y6_c01141{bottom:608.250000px;}
.y5_c01141{bottom:633.150000px;}
.y4_c01141{bottom:658.200000px;}
.y3_c01141{bottom:682.500000px;}
.y2_c01141{bottom:707.100000px;}
.y1_c01141{bottom:733.050000px;}
.h4_c01141{height:13.200074px;}
.h5_c01141{height:43.804688px;}
.h3_c01141{height:87.361816px;}
.h2_c01141{height:91.160156px;}
.h1_c01141{height:793.500000px;}
.h0_c01141{height:793.800000px;}
.w2_c01141{width:104.875500px;}
.w0_c01141{width:514.875000px;}
.w1_c01141{width:515.250000px;}
.x0_c01141{left:0.000000px;}
.x6_c01141{left:95.100000px;}
.x5_c01141{left:96.150000px;}
.x4_c01141{left:97.200000px;}
.x3_c01141{left:98.250000px;}
.x2_c01141{left:99.300000px;}
.x7_c01141{left:124.500000px;}
.x8_c01141{left:209.251740px;}
.x1_c01141{left:218.400000px;}
@media print{
.v0_c01141{vertical-align:0.000000pt;}
.ls0_c01141{letter-spacing:0.000000pt;}
.ls1_c01141{letter-spacing:5.333333pt;}
.ws0_c01141{word-spacing:-15.424000pt;}
.ws1_c01141{word-spacing:0.000000pt;}
._3_c01141{margin-left:-12.480000pt;}
._12_c01141{margin-left:-6.912000pt;}
._8_c01141{margin-left:-6.016000pt;}
._17_c01141{margin-left:-4.416000pt;}
._16_c01141{margin-left:-3.456000pt;}
._9_c01141{margin-left:-1.984000pt;}
._14_c01141{margin-left:-1.024000pt;}
._5_c01141{width:1.600000pt;}
._4_c01141{width:2.880000pt;}
._7_c01141{width:4.032000pt;}
._1_c01141{width:5.248000pt;}
._b_c01141{width:6.272000pt;}
._6_c01141{width:7.168000pt;}
._e_c01141{width:8.192000pt;}
._2_c01141{width:9.216000pt;}
._0_c01141{width:10.432000pt;}
._a_c01141{width:11.648000pt;}
._11_c01141{width:12.736000pt;}
._c_c01141{width:13.888000pt;}
._10_c01141{width:16.576000pt;}
._f_c01141{width:18.048000pt;}
._13_c01141{width:19.136000pt;}
._d_c01141{width:20.736000pt;}
._15_c01141{width:38.069333pt;}
._18_c01141{width:72.402667pt;}
._19_c01141{width:980.802667pt;}
.fs2_c01141{font-size:42.666667pt;}
.fs1_c01141{font-size:61.333333pt;}
.fs0_c01141{font-size:64.000000pt;}
.y0_c01141{bottom:0.000000pt;}
.y1f_c01141{bottom:2.760000pt;}
.y1e_c01141{bottom:6.425212pt;}
.y1d_c01141{bottom:37.466667pt;}
.y1c_c01141{bottom:58.000000pt;}
.y1b_c01141{bottom:78.266667pt;}
.y1a_c01141{bottom:101.466667pt;}
.y19_c01141{bottom:123.066667pt;}
.y18_c01141{bottom:145.866667pt;}
.y17_c01141{bottom:167.466667pt;}
.y16_c01141{bottom:189.866667pt;}
.y15_c01141{bottom:212.400000pt;}
.y14_c01141{bottom:234.400000pt;}
.y13_c01141{bottom:257.733333pt;}
.y12_c01141{bottom:279.600000pt;}
.y11_c01141{bottom:301.466667pt;}
.y10_c01141{bottom:323.333333pt;}
.yf_c01141{bottom:345.866667pt;}
.ye_c01141{bottom:365.600000pt;}
.yd_c01141{bottom:387.600000pt;}
.yc_c01141{bottom:407.733333pt;}
.yb_c01141{bottom:429.866667pt;}
.ya_c01141{bottom:452.666667pt;}
.y9_c01141{bottom:474.533333pt;}
.y8_c01141{bottom:496.533333pt;}
.y7_c01141{bottom:518.400000pt;}
.y6_c01141{bottom:540.666667pt;}
.y5_c01141{bottom:562.800000pt;}
.y4_c01141{bottom:585.066667pt;}
.y3_c01141{bottom:606.666667pt;}
.y2_c01141{bottom:628.533333pt;}
.y1_c01141{bottom:651.600000pt;}
.h4_c01141{height:11.733399pt;}
.h5_c01141{height:38.937500pt;}
.h3_c01141{height:77.654948pt;}
.h2_c01141{height:81.031250pt;}
.h1_c01141{height:705.333333pt;}
.h0_c01141{height:705.600000pt;}
.w2_c01141{width:93.222667pt;}
.w0_c01141{width:457.666667pt;}
.w1_c01141{width:458.000000pt;}
.x0_c01141{left:0.000000pt;}
.x6_c01141{left:84.533333pt;}
.x5_c01141{left:85.466667pt;}
.x4_c01141{left:86.400000pt;}
.x3_c01141{left:87.333333pt;}
.x2_c01141{left:88.266667pt;}
.x7_c01141{left:110.666667pt;}
.x8_c01141{left:186.001546pt;}
.x1_c01141{left:194.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5fe6fd3821ee01e9271953da.woff2')format("woff");}.ff1_c01142{font-family:ff1_c01142;line-height:1.575000;font-style:normal;font-weight:normal;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_0f4b31e705e02423947a2d24.woff2')format("woff");}.ff2_c01142{font-family:ff2_c01142;line-height:1.568848;font-style:normal;font-weight:normal;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_97c65b47302058489e95bbd1.woff2')format("woff");}.ff3_c01142{font-family:ff3_c01142;line-height:1.480469;font-style:normal;font-weight:normal;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_d5687dffd4dc58ad8e79ec3b.woff2')format("woff");}.ff4_c01142{font-family:ff4_c01142;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01142{font-family:ff5_c01142;line-height:1.219238;font-style: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);}
.v0_c01142{vertical-align:0.000000px;}
.ls2_c01142{letter-spacing:0.000000px;}
.ls0_c01142{letter-spacing:18.588000px;}
.ls1_c01142{letter-spacing:23.988000px;}
.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:-53.856000px;}
.ws1_c01142{word-spacing:0.000000px;}
._0_c01142{margin-left:-25.572000px;}
._1e_c01142{margin-left:-20.568000px;}
._1d_c01142{margin-left:-15.990000px;}
._17_c01142{margin-left:-13.155000px;}
._16_c01142{margin-left:-11.880000px;}
._15_c01142{margin-left:-10.152000px;}
._14_c01142{margin-left:-8.700000px;}
._13_c01142{margin-left:-7.116000px;}
._2_c01142{margin-left:-5.526000px;}
._11_c01142{margin-left:-4.134000px;}
._3_c01142{margin-left:-2.553000px;}
._10_c01142{margin-left:-1.080000px;}
._c_c01142{width:1.584000px;}
._b_c01142{width:3.096000px;}
._1_c01142{width:4.416000px;}
._a_c01142{width:5.520000px;}
._9_c01142{width:7.245000px;}
._7_c01142{width:9.108000px;}
._18_c01142{width:10.293000px;}
._e_c01142{width:11.448000px;}
._f_c01142{width:13.140000px;}
._d_c01142{width:14.358000px;}
._1a_c01142{width:16.263000px;}
._4_c01142{width:18.492000px;}
._19_c01142{width:19.887000px;}
._1b_c01142{width:22.299000px;}
._1c_c01142{width:24.600000px;}
._6_c01142{width:26.979000px;}
._5_c01142{width:28.152000px;}
._1f_c01142{width:37.020000px;}
._20_c01142{width:40.740000px;}
._12_c01142{width:52.920000px;}
._8_c01142{width:269.583000px;}
._21_c01142{width:370.980000px;}
.fc2_c01142{color:transparent;}
.fc1_c01142{color:rgb(128,128,128);}
.fc0_c01142{color:rgb(0,0,0);}
.fs5_c01142{font-size:48.000000px;}
.fs4_c01142{font-size:60.000000px;}
.fs3_c01142{font-size:63.000000px;}
.fs1_c01142{font-size:69.000000px;}
.fs2_c01142{font-size:72.000000px;}
.fs0_c01142{font-size:102.000000px;}
.y0_c01142{bottom:0.000000px;}
.y1f_c01142{bottom:3.105000px;}
.y1e_c01142{bottom:7.228371px;}
.y1d_c01142{bottom:32.715000px;}
.y1c_c01142{bottom:65.565000px;}
.y1b_c01142{bottom:90.465000px;}
.y1a_c01142{bottom:116.565000px;}
.y19_c01142{bottom:141.765000px;}
.y18_c01142{bottom:166.515000px;}
.y17_c01142{bottom:191.415000px;}
.y16_c01142{bottom:216.765000px;}
.y15_c01142{bottom:241.365000px;}
.y14_c01142{bottom:266.415000px;}
.y13_c01142{bottom:291.015000px;}
.y12_c01142{bottom:316.665000px;}
.y11_c01142{bottom:339.615000px;}
.y10_c01142{bottom:363.615000px;}
.yf_c01142{bottom:389.115000px;}
.ye_c01142{bottom:412.215000px;}
.yd_c01142{bottom:437.115000px;}
.yc_c01142{bottom:462.165000px;}
.yb_c01142{bottom:487.365000px;}
.ya_c01142{bottom:511.065000px;}
.y9_c01142{bottom:534.915000px;}
.y8_c01142{bottom:559.965000px;}
.y7_c01142{bottom:584.265000px;}
.y6_c01142{bottom:609.615000px;}
.y5_c01142{bottom:633.915000px;}
.y4_c01142{bottom:659.265000px;}
.y3_c01142{bottom:683.865000px;}
.y2_c01142{bottom:707.865000px;}
.y1_c01142{bottom:734.715000px;}
.h5_c01142{height:13.200074px;}
.h6_c01142{height:43.804688px;}
.h4_c01142{height:75.966797px;}
.h3_c01142{height:91.160156px;}
.h2_c01142{height:108.834000px;}
.h0_c01142{height:786.525000px;}
.h1_c01142{height:786.750000px;}
.w2_c01142{width:104.875500px;}
.w1_c01142{width:518.250000px;}
.w0_c01142{width:518.400000px;}
.x0_c01142{left:0.000000px;}
.x6_c01142{left:25.200000px;}
.x3_c01142{left:26.700000px;}
.x2_c01142{left:28.050000px;}
.x5_c01142{left:29.250000px;}
.x4_c01142{left:30.600000px;}
.x1_c01142{left:148.050000px;}
.x8_c01142{left:211.014267px;}
.x7_c01142{left:243.450000px;}
@media print{
.v0_c01142{vertical-align:0.000000pt;}
.ls2_c01142{letter-spacing:0.000000pt;}
.ls0_c01142{letter-spacing:16.522667pt;}
.ls1_c01142{letter-spacing:21.322667pt;}
.ws0_c01142{word-spacing:-47.872000pt;}
.ws1_c01142{word-spacing:0.000000pt;}
._0_c01142{margin-left:-22.730667pt;}
._1e_c01142{margin-left:-18.282667pt;}
._1d_c01142{margin-left:-14.213333pt;}
._17_c01142{margin-left:-11.693333pt;}
._16_c01142{margin-left:-10.560000pt;}
._15_c01142{margin-left:-9.024000pt;}
._14_c01142{margin-left:-7.733333pt;}
._13_c01142{margin-left:-6.325333pt;}
._2_c01142{margin-left:-4.912000pt;}
._11_c01142{margin-left:-3.674667pt;}
._3_c01142{margin-left:-2.269333pt;}
._10_c01142{margin-left:-0.960000pt;}
._c_c01142{width:1.408000pt;}
._b_c01142{width:2.752000pt;}
._1_c01142{width:3.925333pt;}
._a_c01142{width:4.906667pt;}
._9_c01142{width:6.440000pt;}
._7_c01142{width:8.096000pt;}
._18_c01142{width:9.149333pt;}
._e_c01142{width:10.176000pt;}
._f_c01142{width:11.680000pt;}
._d_c01142{width:12.762667pt;}
._1a_c01142{width:14.456000pt;}
._4_c01142{width:16.437333pt;}
._19_c01142{width:17.677333pt;}
._1b_c01142{width:19.821333pt;}
._1c_c01142{width:21.866667pt;}
._6_c01142{width:23.981333pt;}
._5_c01142{width:25.024000pt;}
._1f_c01142{width:32.906667pt;}
._20_c01142{width:36.213333pt;}
._12_c01142{width:47.040000pt;}
._8_c01142{width:239.629333pt;}
._21_c01142{width:329.760000pt;}
.fs5_c01142{font-size:42.666667pt;}
.fs4_c01142{font-size:53.333333pt;}
.fs3_c01142{font-size:56.000000pt;}
.fs1_c01142{font-size:61.333333pt;}
.fs2_c01142{font-size:64.000000pt;}
.fs0_c01142{font-size:90.666667pt;}
.y0_c01142{bottom:0.000000pt;}
.y1f_c01142{bottom:2.760000pt;}
.y1e_c01142{bottom:6.425219pt;}
.y1d_c01142{bottom:29.080000pt;}
.y1c_c01142{bottom:58.280000pt;}
.y1b_c01142{bottom:80.413333pt;}
.y1a_c01142{bottom:103.613333pt;}
.y19_c01142{bottom:126.013333pt;}
.y18_c01142{bottom:148.013333pt;}
.y17_c01142{bottom:170.146667pt;}
.y16_c01142{bottom:192.680000pt;}
.y15_c01142{bottom:214.546667pt;}
.y14_c01142{bottom:236.813333pt;}
.y13_c01142{bottom:258.680000pt;}
.y12_c01142{bottom:281.480000pt;}
.y11_c01142{bottom:301.880000pt;}
.y10_c01142{bottom:323.213333pt;}
.yf_c01142{bottom:345.880000pt;}
.ye_c01142{bottom:366.413333pt;}
.yd_c01142{bottom:388.546667pt;}
.yc_c01142{bottom:410.813333pt;}
.yb_c01142{bottom:433.213333pt;}
.ya_c01142{bottom:454.280000pt;}
.y9_c01142{bottom:475.480000pt;}
.y8_c01142{bottom:497.746667pt;}
.y7_c01142{bottom:519.346667pt;}
.y6_c01142{bottom:541.880000pt;}
.y5_c01142{bottom:563.480000pt;}
.y4_c01142{bottom:586.013333pt;}
.y3_c01142{bottom:607.880000pt;}
.y2_c01142{bottom:629.213333pt;}
.y1_c01142{bottom:653.080000pt;}
.h5_c01142{height:11.733399pt;}
.h6_c01142{height:38.937500pt;}
.h4_c01142{height:67.526042pt;}
.h3_c01142{height:81.031250pt;}
.h2_c01142{height:96.741333pt;}
.h0_c01142{height:699.133333pt;}
.h1_c01142{height:699.333333pt;}
.w2_c01142{width:93.222667pt;}
.w1_c01142{width:460.666667pt;}
.w0_c01142{width:460.800000pt;}
.x0_c01142{left:0.000000pt;}
.x6_c01142{left:22.400000pt;}
.x3_c01142{left:23.733333pt;}
.x2_c01142{left:24.933333pt;}
.x5_c01142{left:26.000000pt;}
.x4_c01142{left:27.200000pt;}
.x1_c01142{left:131.600000pt;}
.x8_c01142{left:187.568237pt;}
.x7_c01142{left:216.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_729a55010b0fda7664a6fbb3.woff2')format("woff");}.ff1_c01143{font-family:ff1_c01143;line-height:1.480469;font-style:normal;font-weight:normal;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_d9c8154583e5c70431837380.woff2')format("woff");}.ff2_c01143{font-family:ff2_c01143;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01143{font-family:ff3_c01143;line-height:1.219238;font-style: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;}
.ls1_c01143{letter-spacing:-3.000000px;}
.ls0_c01143{letter-spacing:0.000000px;}
.ls2_c01143{letter-spacing:3.000000px;}
.sc__c01143{text-shadow:none;}
.sc0_c01143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01143{-webkit-text-stroke:0px transparent;}
.sc0_c01143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01143{word-spacing:-17.967000px;}
.ws0_c01143{word-spacing:-17.352000px;}
.ws2_c01143{word-spacing:0.000000px;}
._c_c01143{margin-left:-26.352000px;}
._b_c01143{margin-left:-7.200000px;}
._12_c01143{margin-left:-5.832000px;}
._11_c01143{margin-left:-4.752000px;}
._9_c01143{margin-left:-3.600000px;}
._3_c01143{margin-left:-2.304000px;}
._d_c01143{margin-left:-1.080000px;}
._4_c01143{width:1.728000px;}
._7_c01143{width:2.808000px;}
._5_c01143{width:3.816000px;}
._0_c01143{width:4.896000px;}
._1_c01143{width:6.624000px;}
._8_c01143{width:8.352000px;}
._6_c01143{width:10.224000px;}
._f_c01143{width:11.469000px;}
._2_c01143{width:12.744000px;}
._e_c01143{width:14.112000px;}
._a_c01143{width:15.408000px;}
._10_c01143{width:20.376000px;}
._14_c01143{width:23.472000px;}
._13_c01143{width:28.419000px;}
.fc2_c01143{color:transparent;}
.fc1_c01143{color:rgb(128,128,128);}
.fc0_c01143{color:rgb(0,0,0);}
.fs5_c01143{font-size:48.000000px;}
.fs2_c01143{font-size:57.000000px;}
.fs4_c01143{font-size:66.000000px;}
.fs3_c01143{font-size:69.000000px;}
.fs0_c01143{font-size:72.000000px;}
.fs1_c01143{font-size:87.000000px;}
.y0_c01143{bottom:0.000000px;}
.y1d_c01143{bottom:3.105000px;}
.y1c_c01143{bottom:7.228357px;}
.y1b_c01143{bottom:66.780000px;}
.y1a_c01143{bottom:88.380000px;}
.y19_c01143{bottom:116.430000px;}
.y18_c01143{bottom:142.530000px;}
.y17_c01143{bottom:168.480000px;}
.y16_c01143{bottom:192.030000px;}
.y15_c01143{bottom:216.780000px;}
.y14_c01143{bottom:242.430000px;}
.y13_c01143{bottom:267.930000px;}
.y12_c01143{bottom:292.680000px;}
.y11_c01143{bottom:317.880000px;}
.y10_c01143{bottom:343.530000px;}
.yf_c01143{bottom:366.480000px;}
.ye_c01143{bottom:391.230000px;}
.yd_c01143{bottom:414.180000px;}
.yc_c01143{bottom:438.780000px;}
.yb_c01143{bottom:463.080000px;}
.ya_c01143{bottom:487.380000px;}
.y9_c01143{bottom:512.280000px;}
.y8_c01143{bottom:537.330000px;}
.y7_c01143{bottom:561.930000px;}
.y6_c01143{bottom:587.280000px;}
.y5_c01143{bottom:635.580000px;}
.y4_c01143{bottom:660.180000px;}
.y3_c01143{bottom:685.530000px;}
.y2_c01143{bottom:710.130000px;}
.y1_c01143{bottom:736.080000px;}
.h4_c01143{height:13.200074px;}
.h5_c01143{height:43.804688px;}
.h2_c01143{height:91.160156px;}
.h3_c01143{height:101.825684px;}
.h1_c01143{height:798.000000px;}
.h0_c01143{height:798.150000px;}
.w2_c01143{width:104.875500px;}
.w1_c01143{width:516.750000px;}
.w0_c01143{width:517.050000px;}
.x0_c01143{left:0.000000px;}
.x7_c01143{left:92.550000px;}
.x6_c01143{left:93.600000px;}
.x2_c01143{left:94.950000px;}
.x4_c01143{left:140.700000px;}
.x5_c01143{left:143.400000px;}
.x8_c01143{left:210.339249px;}
.x1_c01143{left:213.600000px;}
.x3_c01143{left:251.400000px;}
@media print{
.v0_c01143{vertical-align:0.000000pt;}
.ls1_c01143{letter-spacing:-2.666667pt;}
.ls0_c01143{letter-spacing:0.000000pt;}
.ls2_c01143{letter-spacing:2.666667pt;}
.ws1_c01143{word-spacing:-15.970667pt;}
.ws0_c01143{word-spacing:-15.424000pt;}
.ws2_c01143{word-spacing:0.000000pt;}
._c_c01143{margin-left:-23.424000pt;}
._b_c01143{margin-left:-6.400000pt;}
._12_c01143{margin-left:-5.184000pt;}
._11_c01143{margin-left:-4.224000pt;}
._9_c01143{margin-left:-3.200000pt;}
._3_c01143{margin-left:-2.048000pt;}
._d_c01143{margin-left:-0.960000pt;}
._4_c01143{width:1.536000pt;}
._7_c01143{width:2.496000pt;}
._5_c01143{width:3.392000pt;}
._0_c01143{width:4.352000pt;}
._1_c01143{width:5.888000pt;}
._8_c01143{width:7.424000pt;}
._6_c01143{width:9.088000pt;}
._f_c01143{width:10.194667pt;}
._2_c01143{width:11.328000pt;}
._e_c01143{width:12.544000pt;}
._a_c01143{width:13.696000pt;}
._10_c01143{width:18.112000pt;}
._14_c01143{width:20.864000pt;}
._13_c01143{width:25.261333pt;}
.fs5_c01143{font-size:42.666667pt;}
.fs2_c01143{font-size:50.666667pt;}
.fs4_c01143{font-size:58.666667pt;}
.fs3_c01143{font-size:61.333333pt;}
.fs0_c01143{font-size:64.000000pt;}
.fs1_c01143{font-size:77.333333pt;}
.y0_c01143{bottom:0.000000pt;}
.y1d_c01143{bottom:2.760000pt;}
.y1c_c01143{bottom:6.425206pt;}
.y1b_c01143{bottom:59.360000pt;}
.y1a_c01143{bottom:78.560000pt;}
.y19_c01143{bottom:103.493333pt;}
.y18_c01143{bottom:126.693333pt;}
.y17_c01143{bottom:149.760000pt;}
.y16_c01143{bottom:170.693333pt;}
.y15_c01143{bottom:192.693333pt;}
.y14_c01143{bottom:215.493333pt;}
.y13_c01143{bottom:238.160000pt;}
.y12_c01143{bottom:260.160000pt;}
.y11_c01143{bottom:282.560000pt;}
.y10_c01143{bottom:305.360000pt;}
.yf_c01143{bottom:325.760000pt;}
.ye_c01143{bottom:347.760000pt;}
.yd_c01143{bottom:368.160000pt;}
.yc_c01143{bottom:390.026667pt;}
.yb_c01143{bottom:411.626667pt;}
.ya_c01143{bottom:433.226667pt;}
.y9_c01143{bottom:455.360000pt;}
.y8_c01143{bottom:477.626667pt;}
.y7_c01143{bottom:499.493333pt;}
.y6_c01143{bottom:522.026667pt;}
.y5_c01143{bottom:564.960000pt;}
.y4_c01143{bottom:586.826667pt;}
.y3_c01143{bottom:609.360000pt;}
.y2_c01143{bottom:631.226667pt;}
.y1_c01143{bottom:654.293333pt;}
.h4_c01143{height:11.733399pt;}
.h5_c01143{height:38.937500pt;}
.h2_c01143{height:81.031250pt;}
.h3_c01143{height:90.511719pt;}
.h1_c01143{height:709.333333pt;}
.h0_c01143{height:709.466667pt;}
.w2_c01143{width:93.222667pt;}
.w1_c01143{width:459.333333pt;}
.w0_c01143{width:459.600000pt;}
.x0_c01143{left:0.000000pt;}
.x7_c01143{left:82.266667pt;}
.x6_c01143{left:83.200000pt;}
.x2_c01143{left:84.400000pt;}
.x4_c01143{left:125.066667pt;}
.x5_c01143{left:127.466667pt;}
.x8_c01143{left:186.968221pt;}
.x1_c01143{left:189.866667pt;}
.x3_c01143{left:223.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a018b4c2d7f95af380bbdd13.woff2')format("woff");}.ff1_c01144{font-family:ff1_c01144;line-height:1.480469;font-style:normal;font-weight:normal;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_00c524b6d37fd41976c1b0d8.woff2')format("woff");}.ff2_c01144{font-family:ff2_c01144;line-height:1.568848;font-style:normal;font-weight:normal;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_36db409800b4dc7d37142017.woff2')format("woff");}.ff3_c01144{font-family:ff3_c01144;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01144{font-family:ff4_c01144;line-height:1.219238;font-style: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;}
.ls1_c01144{letter-spacing:0.000000px;}
.ls0_c01144{letter-spacing:8.616000px;}
.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:-30.051000px;}
.ws1_c01144{word-spacing:-17.352000px;}
.ws2_c01144{word-spacing:0.000000px;}
._1d_c01144{margin-left:-14.826000px;}
._14_c01144{margin-left:-13.596000px;}
._12_c01144{margin-left:-12.516000px;}
._13_c01144{margin-left:-11.346000px;}
._11_c01144{margin-left:-9.630000px;}
._1c_c01144{margin-left:-8.481000px;}
._2_c01144{margin-left:-7.440000px;}
._4_c01144{margin-left:-6.324000px;}
._3_c01144{margin-left:-4.743000px;}
._16_c01144{margin-left:-3.630000px;}
._1_c01144{margin-left:-2.418000px;}
._10_c01144{margin-left:-1.326000px;}
._0_c01144{width:1.488000px;}
._7_c01144{width:3.255000px;}
._b_c01144{width:4.752000px;}
._6_c01144{width:6.231000px;}
._a_c01144{width:7.704000px;}
._9_c01144{width:8.784000px;}
._e_c01144{width:10.296000px;}
._1b_c01144{width:11.331000px;}
._d_c01144{width:12.435000px;}
._19_c01144{width:13.536000px;}
._c_c01144{width:14.577000px;}
._f_c01144{width:16.026000px;}
._8_c01144{width:19.104000px;}
._18_c01144{width:20.451000px;}
._15_c01144{width:22.494000px;}
._17_c01144{width:27.942000px;}
._1a_c01144{width:64.968000px;}
._1e_c01144{width:159.624000px;}
._5_c01144{width:301.878000px;}
._1f_c01144{width:1399.506000px;}
.fc2_c01144{color:transparent;}
.fc1_c01144{color:rgb(128,128,128);}
.fc0_c01144{color:rgb(0,0,0);}
.fs5_c01144{font-size:48.000000px;}
.fs2_c01144{font-size:63.000000px;}
.fs3_c01144{font-size:69.000000px;}
.fs1_c01144{font-size:72.000000px;}
.fs4_c01144{font-size:87.000000px;}
.fs0_c01144{font-size:93.000000px;}
.y0_c01144{bottom:0.000000px;}
.y1f_c01144{bottom:3.105000px;}
.y1e_c01144{bottom:7.228369px;}
.y1d_c01144{bottom:38.520000px;}
.y1c_c01144{bottom:63.720000px;}
.y1b_c01144{bottom:90.120000px;}
.y1a_c01144{bottom:115.020000px;}
.y19_c01144{bottom:142.020000px;}
.y18_c01144{bottom:165.420000px;}
.y17_c01144{bottom:191.970000px;}
.y16_c01144{bottom:214.920000px;}
.y15_c01144{bottom:241.620000px;}
.y14_c01144{bottom:266.520000px;}
.y13_c01144{bottom:291.270000px;}
.y12_c01144{bottom:316.620000px;}
.y11_c01144{bottom:340.470000px;}
.y10_c01144{bottom:364.170000px;}
.yf_c01144{bottom:389.370000px;}
.ye_c01144{bottom:414.270000px;}
.yd_c01144{bottom:438.120000px;}
.yc_c01144{bottom:461.970000px;}
.yb_c01144{bottom:487.320000px;}
.ya_c01144{bottom:511.920000px;}
.y9_c01144{bottom:535.320000px;}
.y8_c01144{bottom:560.820000px;}
.y7_c01144{bottom:585.570000px;}
.y6_c01144{bottom:610.770000px;}
.y5_c01144{bottom:636.420000px;}
.y4_c01144{bottom:660.420000px;}
.y3_c01144{bottom:685.170000px;}
.y2_c01144{bottom:710.370000px;}
.y1_c01144{bottom:735.420000px;}
.h6_c01144{height:13.200073px;}
.h7_c01144{height:43.804688px;}
.h4_c01144{height:87.361816px;}
.h3_c01144{height:91.160156px;}
.h2_c01144{height:108.848145px;}
.h5_c01144{height:110.151855px;}
.h0_c01144{height:781.350000px;}
.h1_c01144{height:781.500000px;}
.w2_c01144{width:104.875500px;}
.w0_c01144{width:525.450000px;}
.w1_c01144{width:525.750000px;}
.x0_c01144{left:0.000000px;}
.xa_c01144{left:27.000000px;}
.x8_c01144{left:29.700000px;}
.x2_c01144{left:31.950000px;}
.x4_c01144{left:33.000000px;}
.x3_c01144{left:34.350000px;}
.x5_c01144{left:36.150000px;}
.x6_c01144{left:37.500000px;}
.x7_c01144{left:90.000000px;}
.x1_c01144{left:148.050000px;}
.x9_c01144{left:176.550000px;}
.xb_c01144{left:214.539230px;}
@media print{
.v0_c01144{vertical-align:0.000000pt;}
.ls1_c01144{letter-spacing:0.000000pt;}
.ls0_c01144{letter-spacing:7.658667pt;}
.ws0_c01144{word-spacing:-26.712000pt;}
.ws1_c01144{word-spacing:-15.424000pt;}
.ws2_c01144{word-spacing:0.000000pt;}
._1d_c01144{margin-left:-13.178667pt;}
._14_c01144{margin-left:-12.085333pt;}
._12_c01144{margin-left:-11.125333pt;}
._13_c01144{margin-left:-10.085333pt;}
._11_c01144{margin-left:-8.560000pt;}
._1c_c01144{margin-left:-7.538667pt;}
._2_c01144{margin-left:-6.613333pt;}
._4_c01144{margin-left:-5.621333pt;}
._3_c01144{margin-left:-4.216000pt;}
._16_c01144{margin-left:-3.226667pt;}
._1_c01144{margin-left:-2.149333pt;}
._10_c01144{margin-left:-1.178667pt;}
._0_c01144{width:1.322667pt;}
._7_c01144{width:2.893333pt;}
._b_c01144{width:4.224000pt;}
._6_c01144{width:5.538667pt;}
._a_c01144{width:6.848000pt;}
._9_c01144{width:7.808000pt;}
._e_c01144{width:9.152000pt;}
._1b_c01144{width:10.072000pt;}
._d_c01144{width:11.053333pt;}
._19_c01144{width:12.032000pt;}
._c_c01144{width:12.957333pt;}
._f_c01144{width:14.245333pt;}
._8_c01144{width:16.981333pt;}
._18_c01144{width:18.178667pt;}
._15_c01144{width:19.994667pt;}
._17_c01144{width:24.837333pt;}
._1a_c01144{width:57.749333pt;}
._1e_c01144{width:141.888000pt;}
._5_c01144{width:268.336000pt;}
._1f_c01144{width:1244.005333pt;}
.fs5_c01144{font-size:42.666667pt;}
.fs2_c01144{font-size:56.000000pt;}
.fs3_c01144{font-size:61.333333pt;}
.fs1_c01144{font-size:64.000000pt;}
.fs4_c01144{font-size:77.333333pt;}
.fs0_c01144{font-size:82.666667pt;}
.y0_c01144{bottom:0.000000pt;}
.y1f_c01144{bottom:2.760000pt;}
.y1e_c01144{bottom:6.425217pt;}
.y1d_c01144{bottom:34.240000pt;}
.y1c_c01144{bottom:56.640000pt;}
.y1b_c01144{bottom:80.106667pt;}
.y1a_c01144{bottom:102.240000pt;}
.y19_c01144{bottom:126.240000pt;}
.y18_c01144{bottom:147.040000pt;}
.y17_c01144{bottom:170.640000pt;}
.y16_c01144{bottom:191.040000pt;}
.y15_c01144{bottom:214.773333pt;}
.y14_c01144{bottom:236.906667pt;}
.y13_c01144{bottom:258.906667pt;}
.y12_c01144{bottom:281.440000pt;}
.y11_c01144{bottom:302.640000pt;}
.y10_c01144{bottom:323.706667pt;}
.yf_c01144{bottom:346.106667pt;}
.ye_c01144{bottom:368.240000pt;}
.yd_c01144{bottom:389.440000pt;}
.yc_c01144{bottom:410.640000pt;}
.yb_c01144{bottom:433.173333pt;}
.ya_c01144{bottom:455.040000pt;}
.y9_c01144{bottom:475.840000pt;}
.y8_c01144{bottom:498.506667pt;}
.y7_c01144{bottom:520.506667pt;}
.y6_c01144{bottom:542.906667pt;}
.y5_c01144{bottom:565.706667pt;}
.y4_c01144{bottom:587.040000pt;}
.y3_c01144{bottom:609.040000pt;}
.y2_c01144{bottom:631.440000pt;}
.y1_c01144{bottom:653.706667pt;}
.h6_c01144{height:11.733399pt;}
.h7_c01144{height:38.937500pt;}
.h4_c01144{height:77.654948pt;}
.h3_c01144{height:81.031250pt;}
.h2_c01144{height:96.753906pt;}
.h5_c01144{height:97.912760pt;}
.h0_c01144{height:694.533333pt;}
.h1_c01144{height:694.666667pt;}
.w2_c01144{width:93.222667pt;}
.w0_c01144{width:467.066667pt;}
.w1_c01144{width:467.333333pt;}
.x0_c01144{left:0.000000pt;}
.xa_c01144{left:24.000000pt;}
.x8_c01144{left:26.400000pt;}
.x2_c01144{left:28.400000pt;}
.x4_c01144{left:29.333333pt;}
.x3_c01144{left:30.533333pt;}
.x5_c01144{left:32.133333pt;}
.x6_c01144{left:33.333333pt;}
.x7_c01144{left:80.000000pt;}
.x1_c01144{left:131.600000pt;}
.x9_c01144{left:156.933333pt;}
.xb_c01144{left:190.701538pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0d872523b93c2d2535f02c71.woff2')format("woff");}.ff1_c01145{font-family:ff1_c01145;line-height:1.480469;font-style:normal;font-weight:normal;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_402167c6296a88445861067d.woff2')format("woff");}.ff2_c01145{font-family:ff2_c01145;line-height:1.568848;font-style:normal;font-weight:normal;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_1125dec969ca5439a8e84f37.woff2')format("woff");}.ff3_c01145{font-family:ff3_c01145;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01145;src:url('chunks/assets/font_152ebd4a23cc41efd731bfef.woff2')format("woff");}.ff4_c01145{font-family:ff4_c01145;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01145;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01145{font-family:ff5_c01145;line-height:1.219238;font-style: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;}
.ls1_c01145{letter-spacing:0.000000px;}
.ls2_c01145{letter-spacing:6.000000px;}
.ls3_c01145{letter-spacing:18.000000px;}
.ls0_c01145{letter-spacing:30.588000px;}
.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:-17.352000px;}
.ws1_c01145{word-spacing:0.000000px;}
._22_c01145{margin-left:-20.679000px;}
._21_c01145{margin-left:-18.921000px;}
._18_c01145{margin-left:-14.112000px;}
._1a_c01145{margin-left:-11.856000px;}
._1b_c01145{margin-left:-10.344000px;}
._15_c01145{margin-left:-9.264000px;}
._19_c01145{margin-left:-7.992000px;}
._e_c01145{margin-left:-6.000000px;}
._a_c01145{margin-left:-4.464000px;}
._b_c01145{margin-left:-2.592000px;}
._c_c01145{margin-left:-1.368000px;}
._6_c01145{width:1.224000px;}
._7_c01145{width:2.232000px;}
._8_c01145{width:3.312000px;}
._3_c01145{width:4.560000px;}
._9_c01145{width:5.688000px;}
._d_c01145{width:6.696000px;}
._2_c01145{width:7.740000px;}
._0_c01145{width:9.060000px;}
._f_c01145{width:10.368000px;}
._4_c01145{width:11.400000px;}
._10_c01145{width:13.224000px;}
._14_c01145{width:14.472000px;}
._11_c01145{width:16.320000px;}
._5_c01145{width:17.400000px;}
._1_c01145{width:19.560000px;}
._1e_c01145{width:21.888000px;}
._17_c01145{width:23.688000px;}
._13_c01145{width:30.024000px;}
._25_c01145{width:32.472000px;}
._16_c01145{width:33.552000px;}
._12_c01145{width:35.064000px;}
._1c_c01145{width:36.264000px;}
._23_c01145{width:73.512000px;}
._26_c01145{width:78.912000px;}
._1d_c01145{width:82.992000px;}
._20_c01145{width:84.168000px;}
._29_c01145{width:98.832000px;}
._27_c01145{width:151.776000px;}
._1f_c01145{width:316.488000px;}
._24_c01145{width:336.759000px;}
._28_c01145{width:535.032000px;}
._2a_c01145{width:561.096000px;}
.fc2_c01145{color:transparent;}
.fc1_c01145{color:rgb(128,128,128);}
.fc0_c01145{color:rgb(0,0,0);}
.fs3_c01145{font-size:24.000000px;}
.fs5_c01145{font-size:48.000000px;}
.fs4_c01145{font-size:57.000000px;}
.fs0_c01145{font-size:60.000000px;}
.fs2_c01145{font-size:63.000000px;}
.fs1_c01145{font-size:72.000000px;}
.y0_c01145{bottom:0.000000px;}
.y1e_c01145{bottom:3.105000px;}
.y1d_c01145{bottom:7.228369px;}
.y1c_c01145{bottom:54.720000px;}
.y1b_c01145{bottom:77.220000px;}
.y1a_c01145{bottom:125.220000px;}
.y19_c01145{bottom:151.470000px;}
.y18_c01145{bottom:174.420000px;}
.y17_c01145{bottom:199.770000px;}
.y16_c01145{bottom:225.120000px;}
.y15_c01145{bottom:250.770000px;}
.y14_c01145{bottom:275.670000px;}
.y13_c01145{bottom:300.420000px;}
.y12_c01145{bottom:325.920000px;}
.y11_c01145{bottom:351.270000px;}
.y10_c01145{bottom:374.520000px;}
.yf_c01145{bottom:398.520000px;}
.ye_c01145{bottom:423.120000px;}
.yd_c01145{bottom:447.870000px;}
.yc_c01145{bottom:471.720000px;}
.yb_c01145{bottom:496.470000px;}
.ya_c01145{bottom:521.070000px;}
.y9_c01145{bottom:546.120000px;}
.y8_c01145{bottom:571.320000px;}
.y7_c01145{bottom:596.070000px;}
.y6_c01145{bottom:620.670000px;}
.y5_c01145{bottom:645.570000px;}
.y4_c01145{bottom:670.620000px;}
.y3_c01145{bottom:695.520000px;}
.y2_c01145{bottom:720.270000px;}
.y1_c01145{bottom:745.470000px;}
.h5_c01145{height:13.200073px;}
.h6_c01145{height:43.804688px;}
.h4_c01145{height:55.914551px;}
.h2_c01145{height:70.224609px;}
.h3_c01145{height:91.160156px;}
.h0_c01145{height:801.600000px;}
.h1_c01145{height:801.750000px;}
.w2_c01145{width:104.875500px;}
.w0_c01145{width:508.950000px;}
.w1_c01145{width:509.250000px;}
.x0_c01145{left:0.000000px;}
.x6_c01145{left:94.500000px;}
.x8_c01145{left:96.150000px;}
.x3_c01145{left:97.200000px;}
.x7_c01145{left:98.250000px;}
.x4_c01145{left:99.600000px;}
.x5_c01145{left:102.900000px;}
.x2_c01145{left:104.250000px;}
.x9_c01145{left:121.950000px;}
.xa_c01145{left:206.289230px;}
.x1_c01145{left:222.150000px;}
@media print{
.v0_c01145{vertical-align:0.000000pt;}
.ls1_c01145{letter-spacing:0.000000pt;}
.ls2_c01145{letter-spacing:5.333333pt;}
.ls3_c01145{letter-spacing:16.000000pt;}
.ls0_c01145{letter-spacing:27.189333pt;}
.ws0_c01145{word-spacing:-15.424000pt;}
.ws1_c01145{word-spacing:0.000000pt;}
._22_c01145{margin-left:-18.381333pt;}
._21_c01145{margin-left:-16.818667pt;}
._18_c01145{margin-left:-12.544000pt;}
._1a_c01145{margin-left:-10.538667pt;}
._1b_c01145{margin-left:-9.194667pt;}
._15_c01145{margin-left:-8.234667pt;}
._19_c01145{margin-left:-7.104000pt;}
._e_c01145{margin-left:-5.333333pt;}
._a_c01145{margin-left:-3.968000pt;}
._b_c01145{margin-left:-2.304000pt;}
._c_c01145{margin-left:-1.216000pt;}
._6_c01145{width:1.088000pt;}
._7_c01145{width:1.984000pt;}
._8_c01145{width:2.944000pt;}
._3_c01145{width:4.053333pt;}
._9_c01145{width:5.056000pt;}
._d_c01145{width:5.952000pt;}
._2_c01145{width:6.880000pt;}
._0_c01145{width:8.053333pt;}
._f_c01145{width:9.216000pt;}
._4_c01145{width:10.133333pt;}
._10_c01145{width:11.754667pt;}
._14_c01145{width:12.864000pt;}
._11_c01145{width:14.506667pt;}
._5_c01145{width:15.466667pt;}
._1_c01145{width:17.386667pt;}
._1e_c01145{width:19.456000pt;}
._17_c01145{width:21.056000pt;}
._13_c01145{width:26.688000pt;}
._25_c01145{width:28.864000pt;}
._16_c01145{width:29.824000pt;}
._12_c01145{width:31.168000pt;}
._1c_c01145{width:32.234667pt;}
._23_c01145{width:65.344000pt;}
._26_c01145{width:70.144000pt;}
._1d_c01145{width:73.770667pt;}
._20_c01145{width:74.816000pt;}
._29_c01145{width:87.850667pt;}
._27_c01145{width:134.912000pt;}
._1f_c01145{width:281.322667pt;}
._24_c01145{width:299.341333pt;}
._28_c01145{width:475.584000pt;}
._2a_c01145{width:498.752000pt;}
.fs3_c01145{font-size:21.333333pt;}
.fs5_c01145{font-size:42.666667pt;}
.fs4_c01145{font-size:50.666667pt;}
.fs0_c01145{font-size:53.333333pt;}
.fs2_c01145{font-size:56.000000pt;}
.fs1_c01145{font-size:64.000000pt;}
.y0_c01145{bottom:0.000000pt;}
.y1e_c01145{bottom:2.760000pt;}
.y1d_c01145{bottom:6.425217pt;}
.y1c_c01145{bottom:48.640000pt;}
.y1b_c01145{bottom:68.640000pt;}
.y1a_c01145{bottom:111.306667pt;}
.y19_c01145{bottom:134.640000pt;}
.y18_c01145{bottom:155.040000pt;}
.y17_c01145{bottom:177.573333pt;}
.y16_c01145{bottom:200.106667pt;}
.y15_c01145{bottom:222.906667pt;}
.y14_c01145{bottom:245.040000pt;}
.y13_c01145{bottom:267.040000pt;}
.y12_c01145{bottom:289.706667pt;}
.y11_c01145{bottom:312.240000pt;}
.y10_c01145{bottom:332.906667pt;}
.yf_c01145{bottom:354.240000pt;}
.ye_c01145{bottom:376.106667pt;}
.yd_c01145{bottom:398.106667pt;}
.yc_c01145{bottom:419.306667pt;}
.yb_c01145{bottom:441.306667pt;}
.ya_c01145{bottom:463.173333pt;}
.y9_c01145{bottom:485.440000pt;}
.y8_c01145{bottom:507.840000pt;}
.y7_c01145{bottom:529.840000pt;}
.y6_c01145{bottom:551.706667pt;}
.y5_c01145{bottom:573.840000pt;}
.y4_c01145{bottom:596.106667pt;}
.y3_c01145{bottom:618.240000pt;}
.y2_c01145{bottom:640.240000pt;}
.y1_c01145{bottom:662.640000pt;}
.h5_c01145{height:11.733399pt;}
.h6_c01145{height:38.937500pt;}
.h4_c01145{height:49.701823pt;}
.h2_c01145{height:62.421875pt;}
.h3_c01145{height:81.031250pt;}
.h0_c01145{height:712.533333pt;}
.h1_c01145{height:712.666667pt;}
.w2_c01145{width:93.222667pt;}
.w0_c01145{width:452.400000pt;}
.w1_c01145{width:452.666667pt;}
.x0_c01145{left:0.000000pt;}
.x6_c01145{left:84.000000pt;}
.x8_c01145{left:85.466667pt;}
.x3_c01145{left:86.400000pt;}
.x7_c01145{left:87.333333pt;}
.x4_c01145{left:88.533333pt;}
.x5_c01145{left:91.466667pt;}
.x2_c01145{left:92.666667pt;}
.x9_c01145{left:108.400000pt;}
.xa_c01145{left:183.368205pt;}
.x1_c01145{left:197.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aefd8b6a3481b44c1549dc03.woff2')format("woff");}.ff1_c01146{font-family:ff1_c01146;line-height:1.480469;font-style:normal;font-weight:normal;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_a501267569ac7a079d336255.woff2')format("woff");}.ff2_c01146{font-family:ff2_c01146;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01146{font-family:ff3_c01146;line-height:1.219238;font-style: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;}
.ls0_c01146{letter-spacing:-3.000000px;}
.ls1_c01146{letter-spacing:0.000000px;}
.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:-16.629000px;}
.ws1_c01146{word-spacing:-14.460000px;}
.ws2_c01146{word-spacing:0.000000px;}
._15_c01146{margin-left:-28.872000px;}
._1c_c01146{margin-left:-26.742000px;}
._13_c01146{margin-left:-19.842000px;}
._1a_c01146{margin-left:-15.984000px;}
._14_c01146{margin-left:-14.688000px;}
._16_c01146{margin-left:-12.660000px;}
._18_c01146{margin-left:-11.388000px;}
._19_c01146{margin-left:-10.212000px;}
._17_c01146{margin-left:-7.200000px;}
._9_c01146{margin-left:-5.319000px;}
._a_c01146{margin-left:-4.032000px;}
._2_c01146{margin-left:-2.436000px;}
._7_c01146{margin-left:-1.029000px;}
._4_c01146{width:1.131000px;}
._3_c01146{width:2.349000px;}
._1_c01146{width:3.393000px;}
._b_c01146{width:4.485000px;}
._0_c01146{width:5.568000px;}
._8_c01146{width:6.960000px;}
._e_c01146{width:8.235000px;}
._10_c01146{width:9.495000px;}
._c_c01146{width:10.530000px;}
._f_c01146{width:11.694000px;}
._6_c01146{width:12.708000px;}
._d_c01146{width:14.106000px;}
._11_c01146{width:15.201000px;}
._1b_c01146{width:18.474000px;}
._12_c01146{width:28.905000px;}
._5_c01146{width:263.673000px;}
.fc2_c01146{color:transparent;}
.fc1_c01146{color:rgb(128,128,128);}
.fc0_c01146{color:rgb(0,0,0);}
.fs4_c01146{font-size:48.000000px;}
.fs3_c01146{font-size:60.000000px;}
.fs2_c01146{font-size:69.000000px;}
.fs1_c01146{font-size:72.000000px;}
.fs0_c01146{font-size:87.000000px;}
.y0_c01146{bottom:0.000000px;}
.y1e_c01146{bottom:3.105000px;}
.y1d_c01146{bottom:7.228371px;}
.y1c_c01146{bottom:48.915000px;}
.y1b_c01146{bottom:101.265000px;}
.y1a_c01146{bottom:126.015000px;}
.y19_c01146{bottom:150.615000px;}
.y18_c01146{bottom:175.515000px;}
.y17_c01146{bottom:200.115000px;}
.y16_c01146{bottom:225.915000px;}
.y15_c01146{bottom:249.165000px;}
.y14_c01146{bottom:275.115000px;}
.y13_c01146{bottom:298.065000px;}
.y12_c01146{bottom:319.365000px;}
.y11_c01146{bottom:350.115000px;}
.y10_c01146{bottom:371.715000px;}
.yf_c01146{bottom:395.565000px;}
.ye_c01146{bottom:419.565000px;}
.yd_c01146{bottom:443.565000px;}
.yc_c01146{bottom:467.565000px;}
.yb_c01146{bottom:492.165000px;}
.ya_c01146{bottom:514.665000px;}
.y9_c01146{bottom:538.365000px;}
.y8_c01146{bottom:565.065000px;}
.y7_c01146{bottom:589.965000px;}
.y6_c01146{bottom:614.265000px;}
.y5_c01146{bottom:638.865000px;}
.y4_c01146{bottom:663.165000px;}
.y3_c01146{bottom:687.615000px;}
.y2_c01146{bottom:712.215000px;}
.y1_c01146{bottom:737.115000px;}
.h6_c01146{height:13.200074px;}
.h7_c01146{height:43.804688px;}
.h5_c01146{height:75.966797px;}
.h4_c01146{height:87.361816px;}
.h3_c01146{height:91.160156px;}
.h2_c01146{height:110.151855px;}
.h0_c01146{height:774.375000px;}
.h1_c01146{height:774.750000px;}
.w2_c01146{width:104.875500px;}
.w0_c01146{width:524.625000px;}
.w1_c01146{width:525.000000px;}
.x0_c01146{left:0.000000px;}
.x9_c01146{left:27.900000px;}
.x8_c01146{left:30.000000px;}
.x7_c01146{left:31.950000px;}
.x6_c01146{left:33.000000px;}
.x2_c01146{left:34.650000px;}
.x5_c01146{left:36.750000px;}
.x3_c01146{left:37.800000px;}
.x4_c01146{left:38.850000px;}
.x1_c01146{left:153.900000px;}
.xb_c01146{left:214.126740px;}
.xa_c01146{left:390.450000px;}
@media print{
.v0_c01146{vertical-align:0.000000pt;}
.ls0_c01146{letter-spacing:-2.666667pt;}
.ls1_c01146{letter-spacing:0.000000pt;}
.ws0_c01146{word-spacing:-14.781333pt;}
.ws1_c01146{word-spacing:-12.853333pt;}
.ws2_c01146{word-spacing:0.000000pt;}
._15_c01146{margin-left:-25.664000pt;}
._1c_c01146{margin-left:-23.770667pt;}
._13_c01146{margin-left:-17.637333pt;}
._1a_c01146{margin-left:-14.208000pt;}
._14_c01146{margin-left:-13.056000pt;}
._16_c01146{margin-left:-11.253333pt;}
._18_c01146{margin-left:-10.122667pt;}
._19_c01146{margin-left:-9.077333pt;}
._17_c01146{margin-left:-6.400000pt;}
._9_c01146{margin-left:-4.728000pt;}
._a_c01146{margin-left:-3.584000pt;}
._2_c01146{margin-left:-2.165333pt;}
._7_c01146{margin-left:-0.914667pt;}
._4_c01146{width:1.005333pt;}
._3_c01146{width:2.088000pt;}
._1_c01146{width:3.016000pt;}
._b_c01146{width:3.986667pt;}
._0_c01146{width:4.949333pt;}
._8_c01146{width:6.186667pt;}
._e_c01146{width:7.320000pt;}
._10_c01146{width:8.440000pt;}
._c_c01146{width:9.360000pt;}
._f_c01146{width:10.394667pt;}
._6_c01146{width:11.296000pt;}
._d_c01146{width:12.538667pt;}
._11_c01146{width:13.512000pt;}
._1b_c01146{width:16.421333pt;}
._12_c01146{width:25.693333pt;}
._5_c01146{width:234.376000pt;}
.fs4_c01146{font-size:42.666667pt;}
.fs3_c01146{font-size:53.333333pt;}
.fs2_c01146{font-size:61.333333pt;}
.fs1_c01146{font-size:64.000000pt;}
.fs0_c01146{font-size:77.333333pt;}
.y0_c01146{bottom:0.000000pt;}
.y1e_c01146{bottom:2.760000pt;}
.y1d_c01146{bottom:6.425219pt;}
.y1c_c01146{bottom:43.480000pt;}
.y1b_c01146{bottom:90.013333pt;}
.y1a_c01146{bottom:112.013333pt;}
.y19_c01146{bottom:133.880000pt;}
.y18_c01146{bottom:156.013333pt;}
.y17_c01146{bottom:177.880000pt;}
.y16_c01146{bottom:200.813333pt;}
.y15_c01146{bottom:221.480000pt;}
.y14_c01146{bottom:244.546667pt;}
.y13_c01146{bottom:264.946667pt;}
.y12_c01146{bottom:283.880000pt;}
.y11_c01146{bottom:311.213333pt;}
.y10_c01146{bottom:330.413333pt;}
.yf_c01146{bottom:351.613333pt;}
.ye_c01146{bottom:372.946667pt;}
.yd_c01146{bottom:394.280000pt;}
.yc_c01146{bottom:415.613333pt;}
.yb_c01146{bottom:437.480000pt;}
.ya_c01146{bottom:457.480000pt;}
.y9_c01146{bottom:478.546667pt;}
.y8_c01146{bottom:502.280000pt;}
.y7_c01146{bottom:524.413333pt;}
.y6_c01146{bottom:546.013333pt;}
.y5_c01146{bottom:567.880000pt;}
.y4_c01146{bottom:589.480000pt;}
.y3_c01146{bottom:611.213333pt;}
.y2_c01146{bottom:633.080000pt;}
.y1_c01146{bottom:655.213333pt;}
.h6_c01146{height:11.733399pt;}
.h7_c01146{height:38.937500pt;}
.h5_c01146{height:67.526042pt;}
.h4_c01146{height:77.654948pt;}
.h3_c01146{height:81.031250pt;}
.h2_c01146{height:97.912760pt;}
.h0_c01146{height:688.333333pt;}
.h1_c01146{height:688.666667pt;}
.w2_c01146{width:93.222667pt;}
.w0_c01146{width:466.333333pt;}
.w1_c01146{width:466.666667pt;}
.x0_c01146{left:0.000000pt;}
.x9_c01146{left:24.800000pt;}
.x8_c01146{left:26.666667pt;}
.x7_c01146{left:28.400000pt;}
.x6_c01146{left:29.333333pt;}
.x2_c01146{left:30.800000pt;}
.x5_c01146{left:32.666667pt;}
.x3_c01146{left:33.600000pt;}
.x4_c01146{left:34.533333pt;}
.x1_c01146{left:136.800000pt;}
.xb_c01146{left:190.334880pt;}
.xa_c01146{left:347.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_464e41433e8c462b3866e1e6.woff2')format("woff");}.ff1_c01147{font-family:ff1_c01147;line-height:1.480469;font-style:normal;font-weight:normal;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_c8d08a6682ac84b64b970eee.woff2')format("woff");}.ff2_c01147{font-family:ff2_c01147;line-height:1.568848;font-style:normal;font-weight:normal;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_96c912042b50d21c16f17d59.woff2')format("woff");}.ff3_c01147{font-family:ff3_c01147;line-height:1.575000;font-style:normal;font-weight:normal;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_25d247c5a36e67a84ee0196e.woff2')format("woff");}.ff4_c01147{font-family:ff4_c01147;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01147{font-family:ff5_c01147;line-height:1.219238;font-style: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);}
.v0_c01147{vertical-align:0.000000px;}
.ls2_c01147{letter-spacing:-3.000000px;}
.ls3_c01147{letter-spacing:0.000000px;}
.ls5_c01147{letter-spacing:3.000000px;}
.ls4_c01147{letter-spacing:6.000000px;}
.ls0_c01147{letter-spacing:11.388000px;}
.ls1_c01147{letter-spacing:41.988000px;}
.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:-17.352000px;}
.ws1_c01147{word-spacing:0.000000px;}
._15_c01147{margin-left:-22.176000px;}
._19_c01147{margin-left:-20.229000px;}
._f_c01147{margin-left:-18.267000px;}
._16_c01147{margin-left:-15.246000px;}
._d_c01147{margin-left:-13.536000px;}
._17_c01147{margin-left:-11.928000px;}
._18_c01147{margin-left:-10.650000px;}
._11_c01147{margin-left:-8.979000px;}
._c_c01147{margin-left:-7.746000px;}
._10_c01147{margin-left:-5.940000px;}
._7_c01147{margin-left:-4.632000px;}
._6_c01147{margin-left:-3.144000px;}
._3_c01147{margin-left:-1.479000px;}
._2_c01147{width:1.131000px;}
._0_c01147{width:2.175000px;}
._1_c01147{width:3.219000px;}
._4_c01147{width:4.821000px;}
._b_c01147{width:5.901000px;}
._5_c01147{width:6.906000px;}
._a_c01147{width:8.868000px;}
._8_c01147{width:10.062000px;}
._12_c01147{width:11.322000px;}
._e_c01147{width:12.693000px;}
._9_c01147{width:14.346000px;}
._13_c01147{width:15.480000px;}
._14_c01147{width:183.120000px;}
.fc2_c01147{color:transparent;}
.fc1_c01147{color:rgb(128,128,128);}
.fc0_c01147{color:rgb(0,0,0);}
.fs4_c01147{font-size:24.000000px;}
.fs6_c01147{font-size:48.000000px;}
.fs2_c01147{font-size:63.000000px;}
.fs5_c01147{font-size:69.000000px;}
.fs1_c01147{font-size:72.000000px;}
.fs3_c01147{font-size:84.000000px;}
.fs0_c01147{font-size:87.000000px;}
.y0_c01147{bottom:0.000000px;}
.y1d_c01147{bottom:3.105000px;}
.y1c_c01147{bottom:7.228371px;}
.y1b_c01147{bottom:111.765000px;}
.y1a_c01147{bottom:139.065000px;}
.y19_c01147{bottom:162.015000px;}
.y18_c01147{bottom:186.765000px;}
.y17_c01147{bottom:213.015000px;}
.y16_c01147{bottom:235.965000px;}
.y15_c01147{bottom:261.015000px;}
.y14_c01147{bottom:285.915000px;}
.y13_c01147{bottom:310.965000px;}
.y12_c01147{bottom:336.165000px;}
.y11_c01147{bottom:360.765000px;}
.y10_c01147{bottom:383.865000px;}
.yf_c01147{bottom:408.165000px;}
.ye_c01147{bottom:431.115000px;}
.yd_c01147{bottom:455.415000px;}
.yc_c01147{bottom:479.265000px;}
.yb_c01147{bottom:504.015000px;}
.ya_c01147{bottom:528.165000px;}
.y9_c01147{bottom:552.615000px;}
.y8_c01147{bottom:577.515000px;}
.y7_c01147{bottom:602.415000px;}
.y6_c01147{bottom:626.865000px;}
.y5_c01147{bottom:650.865000px;}
.y4_c01147{bottom:675.765000px;}
.y3_c01147{bottom:700.665000px;}
.y2_c01147{bottom:725.415000px;}
.y1_c01147{bottom:750.315000px;}
.h6_c01147{height:13.200074px;}
.h7_c01147{height:43.804688px;}
.h5_c01147{height:87.361816px;}
.h3_c01147{height:91.160156px;}
.h4_c01147{height:106.353516px;}
.h2_c01147{height:110.151855px;}
.h0_c01147{height:794.625000px;}
.h1_c01147{height:795.000000px;}
.w1_c01147{width:104.875500px;}
.w0_c01147{width:523.500000px;}
.x0_c01147{left:0.000000px;}
.x7_c01147{left:89.550000px;}
.x5_c01147{left:91.050000px;}
.x4_c01147{left:92.100000px;}
.x3_c01147{left:93.450000px;}
.x2_c01147{left:94.500000px;}
.x8_c01147{left:147.600000px;}
.x6_c01147{left:173.400000px;}
.x1_c01147{left:213.600000px;}
@media print{
.v0_c01147{vertical-align:0.000000pt;}
.ls2_c01147{letter-spacing:-2.666667pt;}
.ls3_c01147{letter-spacing:0.000000pt;}
.ls5_c01147{letter-spacing:2.666667pt;}
.ls4_c01147{letter-spacing:5.333333pt;}
.ls0_c01147{letter-spacing:10.122667pt;}
.ls1_c01147{letter-spacing:37.322667pt;}
.ws0_c01147{word-spacing:-15.424000pt;}
.ws1_c01147{word-spacing:0.000000pt;}
._15_c01147{margin-left:-19.712000pt;}
._19_c01147{margin-left:-17.981333pt;}
._f_c01147{margin-left:-16.237333pt;}
._16_c01147{margin-left:-13.552000pt;}
._d_c01147{margin-left:-12.032000pt;}
._17_c01147{margin-left:-10.602667pt;}
._18_c01147{margin-left:-9.466667pt;}
._11_c01147{margin-left:-7.981333pt;}
._c_c01147{margin-left:-6.885333pt;}
._10_c01147{margin-left:-5.280000pt;}
._7_c01147{margin-left:-4.117333pt;}
._6_c01147{margin-left:-2.794667pt;}
._3_c01147{margin-left:-1.314667pt;}
._2_c01147{width:1.005333pt;}
._0_c01147{width:1.933333pt;}
._1_c01147{width:2.861333pt;}
._4_c01147{width:4.285333pt;}
._b_c01147{width:5.245333pt;}
._5_c01147{width:6.138667pt;}
._a_c01147{width:7.882667pt;}
._8_c01147{width:8.944000pt;}
._12_c01147{width:10.064000pt;}
._e_c01147{width:11.282667pt;}
._9_c01147{width:12.752000pt;}
._13_c01147{width:13.760000pt;}
._14_c01147{width:162.773333pt;}
.fs4_c01147{font-size:21.333333pt;}
.fs6_c01147{font-size:42.666667pt;}
.fs2_c01147{font-size:56.000000pt;}
.fs5_c01147{font-size:61.333333pt;}
.fs1_c01147{font-size:64.000000pt;}
.fs3_c01147{font-size:74.666667pt;}
.fs0_c01147{font-size:77.333333pt;}
.y0_c01147{bottom:0.000000pt;}
.y1d_c01147{bottom:2.760000pt;}
.y1c_c01147{bottom:6.425219pt;}
.y1b_c01147{bottom:99.346667pt;}
.y1a_c01147{bottom:123.613333pt;}
.y19_c01147{bottom:144.013333pt;}
.y18_c01147{bottom:166.013333pt;}
.y17_c01147{bottom:189.346667pt;}
.y16_c01147{bottom:209.746667pt;}
.y15_c01147{bottom:232.013333pt;}
.y14_c01147{bottom:254.146667pt;}
.y13_c01147{bottom:276.413333pt;}
.y12_c01147{bottom:298.813333pt;}
.y11_c01147{bottom:320.680000pt;}
.y10_c01147{bottom:341.213333pt;}
.yf_c01147{bottom:362.813333pt;}
.ye_c01147{bottom:383.213333pt;}
.yd_c01147{bottom:404.813333pt;}
.yc_c01147{bottom:426.013333pt;}
.yb_c01147{bottom:448.013333pt;}
.ya_c01147{bottom:469.480000pt;}
.y9_c01147{bottom:491.213333pt;}
.y8_c01147{bottom:513.346667pt;}
.y7_c01147{bottom:535.480000pt;}
.y6_c01147{bottom:557.213333pt;}
.y5_c01147{bottom:578.546667pt;}
.y4_c01147{bottom:600.680000pt;}
.y3_c01147{bottom:622.813333pt;}
.y2_c01147{bottom:644.813333pt;}
.y1_c01147{bottom:666.946667pt;}
.h6_c01147{height:11.733399pt;}
.h7_c01147{height:38.937500pt;}
.h5_c01147{height:77.654948pt;}
.h3_c01147{height:81.031250pt;}
.h4_c01147{height:94.536458pt;}
.h2_c01147{height:97.912760pt;}
.h0_c01147{height:706.333333pt;}
.h1_c01147{height:706.666667pt;}
.w1_c01147{width:93.222667pt;}
.w0_c01147{width:465.333333pt;}
.x0_c01147{left:0.000000pt;}
.x7_c01147{left:79.600000pt;}
.x5_c01147{left:80.933333pt;}
.x4_c01147{left:81.866667pt;}
.x3_c01147{left:83.066667pt;}
.x2_c01147{left:84.000000pt;}
.x8_c01147{left:131.200000pt;}
.x6_c01147{left:154.133333pt;}
.x1_c01147{left:189.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_53f9befbc8950046575f64fe.woff2')format("woff");}.ff1_c01148{font-family:ff1_c01148;line-height:1.480469;font-style:normal;font-weight:normal;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_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff2_c01148{font-family:ff2_c01148;line-height:1.284180;font-style:normal;font-weight:normal;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_f997807f2b33a4af83354b32.woff2')format("woff");}.ff3_c01148{font-family:ff3_c01148;line-height:1.568848;font-style:normal;font-weight:normal;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_b306b028e07609497ed206f8.woff2')format("woff");}.ff4_c01148{font-family:ff4_c01148;line-height:1.284668;font-style:normal;font-weight:normal;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_0ee1ec2daf468bbd350b98e9.woff2')format("woff");}.ff5_c01148{font-family:ff5_c01148;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01148;src:url('chunks/assets/font_201b668aef4deac6f23718c7.woff2')format("woff");}.ff6_c01148{font-family:ff6_c01148;line-height:1.575000;font-style:normal;font-weight: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_c01148;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c01148{font-family:ff7_c01148;line-height:1.219238;font-style: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);}
.v1_c01148{vertical-align:-109.800000px;}
.v0_c01148{vertical-align:0.000000px;}
.v2_c01148{vertical-align:21.600000px;}
.ls5_c01148{letter-spacing:-3.000000px;}
.ls6_c01148{letter-spacing:0.000000px;}
.ls2_c01148{letter-spacing:7.200000px;}
.ls7_c01148{letter-spacing:9.000000px;}
.ls4_c01148{letter-spacing:13.200000px;}
.ls0_c01148{letter-spacing:17.400000px;}
.ls3_c01148{letter-spacing:20.427000px;}
.ls1_c01148{letter-spacing:129.300000px;}
.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;}
}
.ws3_c01148{word-spacing:-30.051000px;}
.ws2_c01148{word-spacing:-29.967000px;}
.ws5_c01148{word-spacing:-20.250000px;}
.ws0_c01148{word-spacing:-17.967000px;}
.ws4_c01148{word-spacing:-17.352000px;}
.ws6_c01148{word-spacing:-16.629000px;}
.ws7_c01148{word-spacing:0.000000px;}
.ws1_c01148{word-spacing:15.564000px;}
._b_c01148{margin-left:-10.530000px;}
._19_c01148{margin-left:-9.051000px;}
._16_c01148{margin-left:-6.987000px;}
._9_c01148{margin-left:-5.841000px;}
._a_c01148{margin-left:-4.191000px;}
._e_c01148{margin-left:-2.841000px;}
._12_c01148{margin-left:-1.158000px;}
._0_c01148{width:1.479000px;}
._11_c01148{width:2.490000px;}
._1_c01148{width:3.546000px;}
._4_c01148{width:4.872000px;}
._3_c01148{width:6.699000px;}
._8_c01148{width:8.064000px;}
._5_c01148{width:9.177000px;}
._6_c01148{width:10.770000px;}
._d_c01148{width:12.489000px;}
._13_c01148{width:13.563000px;}
._7_c01148{width:15.516000px;}
._18_c01148{width:16.698000px;}
._1a_c01148{width:17.754000px;}
._15_c01148{width:22.212000px;}
._10_c01148{width:24.453000px;}
._f_c01148{width:30.108000px;}
._c_c01148{width:42.606000px;}
._14_c01148{width:70.206000px;}
._17_c01148{width:227.565000px;}
._2_c01148{width:254.427000px;}
.fc2_c01148{color:transparent;}
.fc1_c01148{color:rgb(128,128,128);}
.fc0_c01148{color:rgb(0,0,0);}
.fs7_c01148{font-size:48.000000px;}
.fs4_c01148{font-size:54.000000px;}
.fs1_c01148{font-size:60.000000px;}
.fs3_c01148{font-size:63.000000px;}
.fs6_c01148{font-size:69.000000px;}
.fs5_c01148{font-size:72.000000px;}
.fs2_c01148{font-size:81.000000px;}
.fs0_c01148{font-size:87.000000px;}
.y0_c01148{bottom:0.000000px;}
.y1e_c01148{bottom:3.105000px;}
.y1d_c01148{bottom:7.228371px;}
.y1c_c01148{bottom:40.215000px;}
.y1b_c01148{bottom:67.215000px;}
.y1a_c01148{bottom:94.965000px;}
.y19_c01148{bottom:119.865000px;}
.y18_c01148{bottom:143.865000px;}
.y17_c01148{bottom:168.165000px;}
.y16_c01148{bottom:190.365000px;}
.y15_c01148{bottom:217.815000px;}
.y14_c01148{bottom:243.315000px;}
.y13_c01148{bottom:263.715000px;}
.y12_c01148{bottom:291.915000px;}
.y11_c01148{bottom:313.665000px;}
.y10_c01148{bottom:339.165000px;}
.yf_c01148{bottom:364.965000px;}
.ye_c01148{bottom:388.815000px;}
.yd_c01148{bottom:412.815000px;}
.yc_c01148{bottom:437.115000px;}
.yb_c01148{bottom:462.015000px;}
.ya_c01148{bottom:486.315000px;}
.y9_c01148{bottom:510.615000px;}
.y8_c01148{bottom:533.715000px;}
.y7_c01148{bottom:558.615000px;}
.y6_c01148{bottom:583.665000px;}
.y5_c01148{bottom:603.165000px;}
.y4_c01148{bottom:632.115000px;}
.y3_c01148{bottom:679.515000px;}
.y2_c01148{bottom:705.465000px;}
.y1_c01148{bottom:729.315000px;}
.h9_c01148{height:13.200074px;}
.ha_c01148{height:43.804688px;}
.h4_c01148{height:52.971680px;}
.h7_c01148{height:79.497070px;}
.h3_c01148{height:79.765137px;}
.h8_c01148{height:87.361816px;}
.h6_c01148{height:91.160156px;}
.h2_c01148{height:110.151855px;}
.h5_c01148{height:112.760156px;}
.h0_c01148{height:778.425000px;}
.h1_c01148{height:778.500000px;}
.w1_c01148{width:104.875500px;}
.w0_c01148{width:537.000000px;}
.x0_c01148{left:0.000000px;}
.xb_c01148{left:33.750000px;}
.xa_c01148{left:38.100000px;}
.x9_c01148{left:39.150000px;}
.x3_c01148{left:40.800000px;}
.x2_c01148{left:42.300000px;}
.x6_c01148{left:43.500000px;}
.x7_c01148{left:44.550000px;}
.x5_c01148{left:85.950000px;}
.x8_c01148{left:129.150000px;}
.x1_c01148{left:167.100000px;}
.x4_c01148{left:199.350000px;}
.xd_c01148{left:220.314240px;}
.xc_c01148{left:368.100000px;}
@media print{
.v1_c01148{vertical-align:-97.600000pt;}
.v0_c01148{vertical-align:0.000000pt;}
.v2_c01148{vertical-align:19.200000pt;}
.ls5_c01148{letter-spacing:-2.666667pt;}
.ls6_c01148{letter-spacing:0.000000pt;}
.ls2_c01148{letter-spacing:6.400000pt;}
.ls7_c01148{letter-spacing:8.000000pt;}
.ls4_c01148{letter-spacing:11.733333pt;}
.ls0_c01148{letter-spacing:15.466667pt;}
.ls3_c01148{letter-spacing:18.157333pt;}
.ls1_c01148{letter-spacing:114.933333pt;}
.ws3_c01148{word-spacing:-26.712000pt;}
.ws2_c01148{word-spacing:-26.637333pt;}
.ws5_c01148{word-spacing:-18.000000pt;}
.ws0_c01148{word-spacing:-15.970667pt;}
.ws4_c01148{word-spacing:-15.424000pt;}
.ws6_c01148{word-spacing:-14.781333pt;}
.ws7_c01148{word-spacing:0.000000pt;}
.ws1_c01148{word-spacing:13.834667pt;}
._b_c01148{margin-left:-9.360000pt;}
._19_c01148{margin-left:-8.045333pt;}
._16_c01148{margin-left:-6.210667pt;}
._9_c01148{margin-left:-5.192000pt;}
._a_c01148{margin-left:-3.725333pt;}
._e_c01148{margin-left:-2.525333pt;}
._12_c01148{margin-left:-1.029333pt;}
._0_c01148{width:1.314667pt;}
._11_c01148{width:2.213333pt;}
._1_c01148{width:3.152000pt;}
._4_c01148{width:4.330667pt;}
._3_c01148{width:5.954667pt;}
._8_c01148{width:7.168000pt;}
._5_c01148{width:8.157333pt;}
._6_c01148{width:9.573333pt;}
._d_c01148{width:11.101333pt;}
._13_c01148{width:12.056000pt;}
._7_c01148{width:13.792000pt;}
._18_c01148{width:14.842667pt;}
._1a_c01148{width:15.781333pt;}
._15_c01148{width:19.744000pt;}
._10_c01148{width:21.736000pt;}
._f_c01148{width:26.762667pt;}
._c_c01148{width:37.872000pt;}
._14_c01148{width:62.405333pt;}
._17_c01148{width:202.280000pt;}
._2_c01148{width:226.157333pt;}
.fs7_c01148{font-size:42.666667pt;}
.fs4_c01148{font-size:48.000000pt;}
.fs1_c01148{font-size:53.333333pt;}
.fs3_c01148{font-size:56.000000pt;}
.fs6_c01148{font-size:61.333333pt;}
.fs5_c01148{font-size:64.000000pt;}
.fs2_c01148{font-size:72.000000pt;}
.fs0_c01148{font-size:77.333333pt;}
.y0_c01148{bottom:0.000000pt;}
.y1e_c01148{bottom:2.760000pt;}
.y1d_c01148{bottom:6.425219pt;}
.y1c_c01148{bottom:35.746667pt;}
.y1b_c01148{bottom:59.746667pt;}
.y1a_c01148{bottom:84.413333pt;}
.y19_c01148{bottom:106.546667pt;}
.y18_c01148{bottom:127.880000pt;}
.y17_c01148{bottom:149.480000pt;}
.y16_c01148{bottom:169.213333pt;}
.y15_c01148{bottom:193.613333pt;}
.y14_c01148{bottom:216.280000pt;}
.y13_c01148{bottom:234.413333pt;}
.y12_c01148{bottom:259.480000pt;}
.y11_c01148{bottom:278.813333pt;}
.y10_c01148{bottom:301.480000pt;}
.yf_c01148{bottom:324.413333pt;}
.ye_c01148{bottom:345.613333pt;}
.yd_c01148{bottom:366.946667pt;}
.yc_c01148{bottom:388.546667pt;}
.yb_c01148{bottom:410.680000pt;}
.ya_c01148{bottom:432.280000pt;}
.y9_c01148{bottom:453.880000pt;}
.y8_c01148{bottom:474.413333pt;}
.y7_c01148{bottom:496.546667pt;}
.y6_c01148{bottom:518.813333pt;}
.y5_c01148{bottom:536.146667pt;}
.y4_c01148{bottom:561.880000pt;}
.y3_c01148{bottom:604.013333pt;}
.y2_c01148{bottom:627.080000pt;}
.y1_c01148{bottom:648.280000pt;}
.h9_c01148{height:11.733399pt;}
.ha_c01148{height:38.937500pt;}
.h4_c01148{height:47.085938pt;}
.h7_c01148{height:70.664062pt;}
.h3_c01148{height:70.902344pt;}
.h8_c01148{height:77.654948pt;}
.h6_c01148{height:81.031250pt;}
.h2_c01148{height:97.912760pt;}
.h5_c01148{height:100.231250pt;}
.h0_c01148{height:691.933333pt;}
.h1_c01148{height:692.000000pt;}
.w1_c01148{width:93.222667pt;}
.w0_c01148{width:477.333333pt;}
.x0_c01148{left:0.000000pt;}
.xb_c01148{left:30.000000pt;}
.xa_c01148{left:33.866667pt;}
.x9_c01148{left:34.800000pt;}
.x3_c01148{left:36.266667pt;}
.x2_c01148{left:37.600000pt;}
.x6_c01148{left:38.666667pt;}
.x7_c01148{left:39.600000pt;}
.x5_c01148{left:76.400000pt;}
.x8_c01148{left:114.800000pt;}
.x1_c01148{left:148.533333pt;}
.x4_c01148{left:177.200000pt;}
.xd_c01148{left:195.834880pt;}
.xc_c01148{left:327.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_69aa1c831788d3f1c255e71c.woff2')format("woff");}.ff1_c01149{font-family:ff1_c01149;line-height:1.480469;font-style:normal;font-weight:normal;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_b0677450e17a336db8662ba4.woff2')format("woff");}.ff2_c01149{font-family:ff2_c01149;line-height:1.568848;font-style:normal;font-weight:normal;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_e9dc64d4358f99704068ba94.woff2')format("woff");}.ff3_c01149{font-family:ff3_c01149;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01149{font-family:ff4_c01149;line-height:1.219238;font-style: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);}
.v1_c01149{vertical-align:-79.200000px;}
.v0_c01149{vertical-align:0.000000px;}
.ls3_c01149{letter-spacing:-6.000000px;}
.ls2_c01149{letter-spacing:0.000000px;}
.ls0_c01149{letter-spacing:2.160000px;}
.ls4_c01149{letter-spacing:3.000000px;}
.ls1_c01149{letter-spacing:5.988000px;}
.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:-30.051000px;}
.ws2_c01149{word-spacing:-17.352000px;}
.ws0_c01149{word-spacing:-9.906000px;}
.ws3_c01149{word-spacing:0.000000px;}
._15_c01149{margin-left:-24.552000px;}
._1e_c01149{margin-left:-16.488000px;}
._17_c01149{margin-left:-13.032000px;}
._13_c01149{margin-left:-9.864000px;}
._14_c01149{margin-left:-7.632000px;}
._16_c01149{margin-left:-5.760000px;}
._10_c01149{margin-left:-4.248000px;}
._12_c01149{margin-left:-3.024000px;}
._e_c01149{margin-left:-1.656000px;}
._4_c01149{width:1.440000px;}
._3_c01149{width:2.520000px;}
._8_c01149{width:3.672000px;}
._5_c01149{width:4.824000px;}
._1_c01149{width:5.904000px;}
._c_c01149{width:6.912000px;}
._6_c01149{width:8.136000px;}
._7_c01149{width:9.144000px;}
._2_c01149{width:10.296000px;}
._0_c01149{width:11.736000px;}
._d_c01149{width:12.816000px;}
._11_c01149{width:14.976000px;}
._a_c01149{width:15.984000px;}
._b_c01149{width:19.008000px;}
._1c_c01149{width:20.736000px;}
._f_c01149{width:22.032000px;}
._9_c01149{width:23.976000px;}
._1b_c01149{width:29.439000px;}
._19_c01149{width:37.680000px;}
._18_c01149{width:167.472000px;}
._1d_c01149{width:299.736000px;}
._1a_c01149{width:352.134000px;}
.fc2_c01149{color:transparent;}
.fc1_c01149{color:rgb(128,128,128);}
.fc0_c01149{color:rgb(0,0,0);}
.fs4_c01149{font-size:48.000000px;}
.fs2_c01149{font-size:63.000000px;}
.fs1_c01149{font-size:66.000000px;}
.fs3_c01149{font-size:69.000000px;}
.fs0_c01149{font-size:72.000000px;}
.y0_c01149{bottom:0.000000px;}
.y1f_c01149{bottom:3.105000px;}
.y1e_c01149{bottom:7.228369px;}
.y1c_c01149{bottom:69.120000px;}
.y1b_c01149{bottom:98.220000px;}
.y1a_c01149{bottom:120.120000px;}
.y19_c01149{bottom:144.120000px;}
.y18_c01149{bottom:169.320000px;}
.y17_c01149{bottom:194.070000px;}
.y16_c01149{bottom:219.270000px;}
.y15_c01149{bottom:243.720000px;}
.y14_c01149{bottom:268.920000px;}
.y13_c01149{bottom:294.270000px;}
.y12_c01149{bottom:318.270000px;}
.y11_c01149{bottom:343.470000px;}
.y10_c01149{bottom:368.520000px;}
.yf_c01149{bottom:392.820000px;}
.y1d_c01149{bottom:400.170000px;}
.ye_c01149{bottom:417.420000px;}
.yd_c01149{bottom:438.120000px;}
.yc_c01149{bottom:462.420000px;}
.yb_c01149{bottom:485.970000px;}
.ya_c01149{bottom:511.020000px;}
.y9_c01149{bottom:535.920000px;}
.y8_c01149{bottom:560.220000px;}
.y7_c01149{bottom:585.120000px;}
.y6_c01149{bottom:609.870000px;}
.y5_c01149{bottom:634.770000px;}
.y4_c01149{bottom:659.370000px;}
.y3_c01149{bottom:684.420000px;}
.y2_c01149{bottom:708.720000px;}
.y1_c01149{bottom:734.670000px;}
.h3_c01149{height:13.200073px;}
.h4_c01149{height:43.804688px;}
.h2_c01149{height:84.269531px;}
.h1_c01149{height:91.160156px;}
.h0_c01149{height:786.750000px;}
.w2_c01149{width:104.875500px;}
.w0_c01149{width:525.675000px;}
.w1_c01149{width:525.750000px;}
.x0_c01149{left:0.000000px;}
.x9_c01149{left:25.350000px;}
.x6_c01149{left:27.000000px;}
.x7_c01149{left:60.000000px;}
.x5_c01149{left:94.800000px;}
.x2_c01149{left:107.100000px;}
.x4_c01149{left:108.300000px;}
.x3_c01149{left:109.350000px;}
.x8_c01149{left:111.750000px;}
.xa_c01149{left:214.651749px;}
.x1_c01149{left:226.500000px;}
@media print{
.v1_c01149{vertical-align:-70.400000pt;}
.v0_c01149{vertical-align:0.000000pt;}
.ls3_c01149{letter-spacing:-5.333333pt;}
.ls2_c01149{letter-spacing:0.000000pt;}
.ls0_c01149{letter-spacing:1.920000pt;}
.ls4_c01149{letter-spacing:2.666667pt;}
.ls1_c01149{letter-spacing:5.322667pt;}
.ws1_c01149{word-spacing:-26.712000pt;}
.ws2_c01149{word-spacing:-15.424000pt;}
.ws0_c01149{word-spacing:-8.805333pt;}
.ws3_c01149{word-spacing:0.000000pt;}
._15_c01149{margin-left:-21.824000pt;}
._1e_c01149{margin-left:-14.656000pt;}
._17_c01149{margin-left:-11.584000pt;}
._13_c01149{margin-left:-8.768000pt;}
._14_c01149{margin-left:-6.784000pt;}
._16_c01149{margin-left:-5.120000pt;}
._10_c01149{margin-left:-3.776000pt;}
._12_c01149{margin-left:-2.688000pt;}
._e_c01149{margin-left:-1.472000pt;}
._4_c01149{width:1.280000pt;}
._3_c01149{width:2.240000pt;}
._8_c01149{width:3.264000pt;}
._5_c01149{width:4.288000pt;}
._1_c01149{width:5.248000pt;}
._c_c01149{width:6.144000pt;}
._6_c01149{width:7.232000pt;}
._7_c01149{width:8.128000pt;}
._2_c01149{width:9.152000pt;}
._0_c01149{width:10.432000pt;}
._d_c01149{width:11.392000pt;}
._11_c01149{width:13.312000pt;}
._a_c01149{width:14.208000pt;}
._b_c01149{width:16.896000pt;}
._1c_c01149{width:18.432000pt;}
._f_c01149{width:19.584000pt;}
._9_c01149{width:21.312000pt;}
._1b_c01149{width:26.168000pt;}
._19_c01149{width:33.493333pt;}
._18_c01149{width:148.864000pt;}
._1d_c01149{width:266.432000pt;}
._1a_c01149{width:313.008000pt;}
.fs4_c01149{font-size:42.666667pt;}
.fs2_c01149{font-size:56.000000pt;}
.fs1_c01149{font-size:58.666667pt;}
.fs3_c01149{font-size:61.333333pt;}
.fs0_c01149{font-size:64.000000pt;}
.y0_c01149{bottom:0.000000pt;}
.y1f_c01149{bottom:2.760000pt;}
.y1e_c01149{bottom:6.425217pt;}
.y1c_c01149{bottom:61.440000pt;}
.y1b_c01149{bottom:87.306667pt;}
.y1a_c01149{bottom:106.773333pt;}
.y19_c01149{bottom:128.106667pt;}
.y18_c01149{bottom:150.506667pt;}
.y17_c01149{bottom:172.506667pt;}
.y16_c01149{bottom:194.906667pt;}
.y15_c01149{bottom:216.640000pt;}
.y14_c01149{bottom:239.040000pt;}
.y13_c01149{bottom:261.573333pt;}
.y12_c01149{bottom:282.906667pt;}
.y11_c01149{bottom:305.306667pt;}
.y10_c01149{bottom:327.573333pt;}
.yf_c01149{bottom:349.173333pt;}
.y1d_c01149{bottom:355.706667pt;}
.ye_c01149{bottom:371.040000pt;}
.yd_c01149{bottom:389.440000pt;}
.yc_c01149{bottom:411.040000pt;}
.yb_c01149{bottom:431.973333pt;}
.ya_c01149{bottom:454.240000pt;}
.y9_c01149{bottom:476.373333pt;}
.y8_c01149{bottom:497.973333pt;}
.y7_c01149{bottom:520.106667pt;}
.y6_c01149{bottom:542.106667pt;}
.y5_c01149{bottom:564.240000pt;}
.y4_c01149{bottom:586.106667pt;}
.y3_c01149{bottom:608.373333pt;}
.y2_c01149{bottom:629.973333pt;}
.y1_c01149{bottom:653.040000pt;}
.h3_c01149{height:11.733399pt;}
.h4_c01149{height:38.937500pt;}
.h2_c01149{height:74.906250pt;}
.h1_c01149{height:81.031250pt;}
.h0_c01149{height:699.333333pt;}
.w2_c01149{width:93.222667pt;}
.w0_c01149{width:467.266667pt;}
.w1_c01149{width:467.333333pt;}
.x0_c01149{left:0.000000pt;}
.x9_c01149{left:22.533333pt;}
.x6_c01149{left:24.000000pt;}
.x7_c01149{left:53.333333pt;}
.x5_c01149{left:84.266667pt;}
.x2_c01149{left:95.200000pt;}
.x4_c01149{left:96.266667pt;}
.x3_c01149{left:97.200000pt;}
.x8_c01149{left:99.333333pt;}
.xa_c01149{left:190.801554pt;}
.x1_c01149{left:201.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_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_0f904c833e3bf6ce1fe7eb54.woff2')format("woff");}.ff1_c01150{font-family:ff1_c01150;line-height:1.480469;font-style:normal;font-weight:normal;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_a1ecd4e64cd2b4fcb455550d.woff2')format("woff");}.ff2_c01150{font-family:ff2_c01150;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01150;src:url('chunks/assets/font_7f1fb473268d637719c50206.woff2')format("woff");}.ff3_c01150{font-family:ff3_c01150;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01150;src:url('chunks/assets/font_49ba7d40912b4a014b16c95a.woff2')format("woff");}.ff4_c01150{font-family:ff4_c01150;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01150;src:url('chunks/assets/font_528458ae2704582ffd7244da.woff2')format("woff");}.ff5_c01150{font-family:ff5_c01150;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01150;src:url('chunks/assets/font_3ee8e03cba14f91548b11cc0.woff2')format("woff");}.ff6_c01150{font-family:ff6_c01150;line-height:1.480469;font-style:normal;font-weight: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_c01150;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c01150{font-family:ff7_c01150;line-height:1.219238;font-style: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;}
.ls1_c01150{letter-spacing:-6.000000px;}
.ls2_c01150{letter-spacing:-3.000000px;}
.ls0_c01150{letter-spacing:0.000000px;}
.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:-42.000000px;}
.ws2_c01150{word-spacing:-37.341000px;}
.ws1_c01150{word-spacing:-20.574000px;}
.ws3_c01150{word-spacing:0.000000px;}
._16_c01150{margin-left:-15.192000px;}
._12_c01150{margin-left:-12.588000px;}
._14_c01150{margin-left:-11.256000px;}
._e_c01150{margin-left:-10.065000px;}
._13_c01150{margin-left:-8.871000px;}
._3_c01150{margin-left:-7.857000px;}
._11_c01150{margin-left:-6.843000px;}
._4_c01150{margin-left:-5.751000px;}
._5_c01150{margin-left:-4.131000px;}
._9_c01150{margin-left:-2.673000px;}
._d_c01150{margin-left:-1.632000px;}
._b_c01150{width:1.158000px;}
._8_c01150{width:2.232000px;}
._2_c01150{width:3.240000px;}
._7_c01150{width:5.223000px;}
._c_c01150{width:6.399000px;}
._1_c01150{width:8.262000px;}
._17_c01150{width:10.011000px;}
._15_c01150{width:11.295000px;}
._a_c01150{width:12.636000px;}
._18_c01150{width:14.127000px;}
._0_c01150{width:16.119000px;}
._10_c01150{width:17.295000px;}
._1c_c01150{width:19.167000px;}
._1b_c01150{width:21.189000px;}
._f_c01150{width:23.373000px;}
._1a_c01150{width:25.155000px;}
._19_c01150{width:171.942000px;}
._1d_c01150{width:285.471000px;}
._6_c01150{width:302.319000px;}
.fc2_c01150{color:transparent;}
.fc1_c01150{color:rgb(128,128,128);}
.fc0_c01150{color:rgb(0,0,0);}
.fs6_c01150{font-size:48.000000px;}
.fs2_c01150{font-size:60.000000px;}
.fs4_c01150{font-size:63.000000px;}
.fs0_c01150{font-size:81.000000px;}
.fs3_c01150{font-size:84.000000px;}
.fs5_c01150{font-size:87.000000px;}
.fs1_c01150{font-size:93.000000px;}
.y0_c01150{bottom:0.000000px;}
.y1e_c01150{bottom:3.105000px;}
.y1d_c01150{bottom:7.228369px;}
.y1c_c01150{bottom:52.020000px;}
.y1b_c01150{bottom:78.270000px;}
.y1a_c01150{bottom:103.620000px;}
.y19_c01150{bottom:128.970000px;}
.y18_c01150{bottom:153.870000px;}
.y17_c01150{bottom:178.770000px;}
.y16_c01150{bottom:204.420000px;}
.y15_c01150{bottom:228.720000px;}
.y14_c01150{bottom:254.070000px;}
.y13_c01150{bottom:279.420000px;}
.y12_c01150{bottom:304.020000px;}
.y11_c01150{bottom:328.320000px;}
.y10_c01150{bottom:351.720000px;}
.yf_c01150{bottom:377.220000px;}
.ye_c01150{bottom:401.670000px;}
.yd_c01150{bottom:425.820000px;}
.yc_c01150{bottom:450.120000px;}
.yb_c01150{bottom:474.120000px;}
.ya_c01150{bottom:497.520000px;}
.y9_c01150{bottom:523.470000px;}
.y8_c01150{bottom:569.670000px;}
.y7_c01150{bottom:595.020000px;}
.y6_c01150{bottom:619.620000px;}
.y5_c01150{bottom:644.520000px;}
.y4_c01150{bottom:669.870000px;}
.y3_c01150{bottom:693.870000px;}
.y2_c01150{bottom:718.920000px;}
.y1_c01150{bottom:744.420000px;}
.h7_c01150{height:13.200073px;}
.h8_c01150{height:43.804688px;}
.h3_c01150{height:79.497070px;}
.h5_c01150{height:79.765137px;}
.h4_c01150{height:82.400391px;}
.h6_c01150{height:85.385742px;}
.h2_c01150{height:94.803223px;}
.h1_c01150{height:792.000000px;}
.h0_c01150{height:792.150000px;}
.w2_c01150{width:104.875500px;}
.w0_c01150{width:538.125000px;}
.w1_c01150{width:538.500000px;}
.x0_c01150{left:0.000000px;}
.x9_c01150{left:23.250000px;}
.xa_c01150{left:27.600000px;}
.x2_c01150{left:29.700000px;}
.x3_c01150{left:31.350000px;}
.x5_c01150{left:32.400000px;}
.x6_c01150{left:71.850000px;}
.x7_c01150{left:84.600000px;}
.x1_c01150{left:146.100000px;}
.x4_c01150{left:173.850000px;}
.xc_c01150{left:220.876740px;}
.xb_c01150{left:252.450000px;}
.x8_c01150{left:289.950000px;}
@media print{
.v0_c01150{vertical-align:0.000000pt;}
.ls1_c01150{letter-spacing:-5.333333pt;}
.ls2_c01150{letter-spacing:-2.666667pt;}
.ls0_c01150{letter-spacing:0.000000pt;}
.ws0_c01150{word-spacing:-37.333333pt;}
.ws2_c01150{word-spacing:-33.192000pt;}
.ws1_c01150{word-spacing:-18.288000pt;}
.ws3_c01150{word-spacing:0.000000pt;}
._16_c01150{margin-left:-13.504000pt;}
._12_c01150{margin-left:-11.189333pt;}
._14_c01150{margin-left:-10.005333pt;}
._e_c01150{margin-left:-8.946667pt;}
._13_c01150{margin-left:-7.885333pt;}
._3_c01150{margin-left:-6.984000pt;}
._11_c01150{margin-left:-6.082667pt;}
._4_c01150{margin-left:-5.112000pt;}
._5_c01150{margin-left:-3.672000pt;}
._9_c01150{margin-left:-2.376000pt;}
._d_c01150{margin-left:-1.450667pt;}
._b_c01150{width:1.029333pt;}
._8_c01150{width:1.984000pt;}
._2_c01150{width:2.880000pt;}
._7_c01150{width:4.642667pt;}
._c_c01150{width:5.688000pt;}
._1_c01150{width:7.344000pt;}
._17_c01150{width:8.898667pt;}
._15_c01150{width:10.040000pt;}
._a_c01150{width:11.232000pt;}
._18_c01150{width:12.557333pt;}
._0_c01150{width:14.328000pt;}
._10_c01150{width:15.373333pt;}
._1c_c01150{width:17.037333pt;}
._1b_c01150{width:18.834667pt;}
._f_c01150{width:20.776000pt;}
._1a_c01150{width:22.360000pt;}
._19_c01150{width:152.837333pt;}
._1d_c01150{width:253.752000pt;}
._6_c01150{width:268.728000pt;}
.fs6_c01150{font-size:42.666667pt;}
.fs2_c01150{font-size:53.333333pt;}
.fs4_c01150{font-size:56.000000pt;}
.fs0_c01150{font-size:72.000000pt;}
.fs3_c01150{font-size:74.666667pt;}
.fs5_c01150{font-size:77.333333pt;}
.fs1_c01150{font-size:82.666667pt;}
.y0_c01150{bottom:0.000000pt;}
.y1e_c01150{bottom:2.760000pt;}
.y1d_c01150{bottom:6.425217pt;}
.y1c_c01150{bottom:46.240000pt;}
.y1b_c01150{bottom:69.573333pt;}
.y1a_c01150{bottom:92.106667pt;}
.y19_c01150{bottom:114.640000pt;}
.y18_c01150{bottom:136.773333pt;}
.y17_c01150{bottom:158.906667pt;}
.y16_c01150{bottom:181.706667pt;}
.y15_c01150{bottom:203.306667pt;}
.y14_c01150{bottom:225.840000pt;}
.y13_c01150{bottom:248.373333pt;}
.y12_c01150{bottom:270.240000pt;}
.y11_c01150{bottom:291.840000pt;}
.y10_c01150{bottom:312.640000pt;}
.yf_c01150{bottom:335.306667pt;}
.ye_c01150{bottom:357.040000pt;}
.yd_c01150{bottom:378.506667pt;}
.yc_c01150{bottom:400.106667pt;}
.yb_c01150{bottom:421.440000pt;}
.ya_c01150{bottom:442.240000pt;}
.y9_c01150{bottom:465.306667pt;}
.y8_c01150{bottom:506.373333pt;}
.y7_c01150{bottom:528.906667pt;}
.y6_c01150{bottom:550.773333pt;}
.y5_c01150{bottom:572.906667pt;}
.y4_c01150{bottom:595.440000pt;}
.y3_c01150{bottom:616.773333pt;}
.y2_c01150{bottom:639.040000pt;}
.y1_c01150{bottom:661.706667pt;}
.h7_c01150{height:11.733399pt;}
.h8_c01150{height:38.937500pt;}
.h3_c01150{height:70.664062pt;}
.h5_c01150{height:70.902344pt;}
.h4_c01150{height:73.244792pt;}
.h6_c01150{height:75.898438pt;}
.h2_c01150{height:84.269531pt;}
.h1_c01150{height:704.000000pt;}
.h0_c01150{height:704.133333pt;}
.w2_c01150{width:93.222667pt;}
.w0_c01150{width:478.333333pt;}
.w1_c01150{width:478.666667pt;}
.x0_c01150{left:0.000000pt;}
.x9_c01150{left:20.666667pt;}
.xa_c01150{left:24.533333pt;}
.x2_c01150{left:26.400000pt;}
.x3_c01150{left:27.866667pt;}
.x5_c01150{left:28.800000pt;}
.x6_c01150{left:63.866667pt;}
.x7_c01150{left:75.200000pt;}
.x1_c01150{left:129.866667pt;}
.x4_c01150{left:154.533333pt;}
.xc_c01150{left:196.334880pt;}
.xb_c01150{left:224.400000pt;}
.x8_c01150{left:257.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ee65ad77d9fee13a2e0de9b0.woff2')format("woff");}.ff1_c01151{font-family:ff1_c01151;line-height:1.568848;font-style:normal;font-weight:normal;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_ea8158674f4f0de052efcaac.woff2')format("woff");}.ff2_c01151{font-family:ff2_c01151;line-height:1.480469;font-style:normal;font-weight:normal;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_77011127f9803b704b4f9b4d.woff2')format("woff");}.ff3_c01151{font-family:ff3_c01151;line-height:1.568848;font-style:normal;font-weight:normal;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_7a8761250df328723873f3f2.woff2')format("woff");}.ff4_c01151{font-family:ff4_c01151;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01151{font-family:ff5_c01151;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01151{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01151{vertical-align:0.000000px;}
.ls2_c01151{letter-spacing:0.000000px;}
.ls4_c01151{letter-spacing:6.000000px;}
.ls5_c01151{letter-spacing:9.000000px;}
.ls0_c01151{letter-spacing:15.048000px;}
.ls1_c01151{letter-spacing:35.448000px;}
.ls3_c01151{letter-spacing:66.000000px;}
.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;}
}
.ws1_c01151{word-spacing:-23.136000px;}
.ws2_c01151{word-spacing:-19.881600px;}
.ws0_c01151{word-spacing:-17.352000px;}
.ws3_c01151{word-spacing:-13.881600px;}
.ws4_c01151{word-spacing:-9.084000px;}
.ws5_c01151{word-spacing:0.000000px;}
._2a_c01151{margin-left:-33.408000px;}
._27_c01151{margin-left:-27.720000px;}
._21_c01151{margin-left:-23.760000px;}
._0_c01151{margin-left:-21.384000px;}
._1f_c01151{margin-left:-18.336000px;}
._1e_c01151{margin-left:-15.096000px;}
._2_c01151{margin-left:-13.824000px;}
._1a_c01151{margin-left:-12.528000px;}
._18_c01151{margin-left:-11.448000px;}
._16_c01151{margin-left:-10.296000px;}
._13_c01151{margin-left:-9.288000px;}
._17_c01151{margin-left:-8.136000px;}
._4_c01151{margin-left:-6.912000px;}
._15_c01151{margin-left:-5.256000px;}
._14_c01151{margin-left:-3.312000px;}
._d_c01151{margin-left:-2.304000px;}
._11_c01151{margin-left:-1.008000px;}
._c_c01151{width:1.296000px;}
._e_c01151{width:2.520000px;}
._a_c01151{width:3.528000px;}
._9_c01151{width:4.752000px;}
._b_c01151{width:6.624000px;}
._7_c01151{width:8.064000px;}
._8_c01151{width:10.008000px;}
._6_c01151{width:11.592000px;}
._3_c01151{width:12.960000px;}
._22_c01151{width:14.040000px;}
._1_c01151{width:15.048000px;}
._10_c01151{width:16.128000px;}
._12_c01151{width:19.368000px;}
._f_c01151{width:21.096000px;}
._1c_c01151{width:26.208000px;}
._25_c01151{width:28.800000px;}
._24_c01151{width:36.792000px;}
._28_c01151{width:54.667200px;}
._29_c01151{width:62.208000px;}
._1b_c01151{width:64.296000px;}
._23_c01151{width:95.016000px;}
._19_c01151{width:195.552000px;}
._20_c01151{width:218.712000px;}
._2b_c01151{width:269.136000px;}
._26_c01151{width:292.176000px;}
._5_c01151{width:308.448000px;}
._1d_c01151{width:327.312000px;}
._2c_c01151{width:781.728000px;}
.fc2_c01151{color:transparent;}
.fc1_c01151{color:rgb(128,128,128);}
.fc0_c01151{color:rgb(0,0,0);}
.fs4_c01151{font-size:48.000000px;}
.fs2_c01151{font-size:57.600000px;}
.fs0_c01151{font-size:72.000000px;}
.fs3_c01151{font-size:84.000000px;}
.fs1_c01151{font-size:96.000000px;}
.y0_c01151{bottom:0.000000px;}
.y1e_c01151{bottom:3.105000px;}
.y1d_c01151{bottom:7.228357px;}
.y1c_c01151{bottom:75.330000px;}
.y1b_c01151{bottom:100.230000px;}
.y1a_c01151{bottom:126.630000px;}
.y19_c01151{bottom:151.980000px;}
.y18_c01151{bottom:180.630000px;}
.y17_c01151{bottom:203.580000px;}
.y16_c01151{bottom:227.880000px;}
.y15_c01151{bottom:255.180000px;}
.y14_c01151{bottom:279.480000px;}
.y13_c01151{bottom:304.080000px;}
.y12_c01151{bottom:328.380000px;}
.y11_c01151{bottom:355.380000px;}
.y10_c01151{bottom:379.080000px;}
.yf_c01151{bottom:401.580000px;}
.ye_c01151{bottom:426.330000px;}
.yd_c01151{bottom:450.930000px;}
.yc_c01151{bottom:474.930000px;}
.yb_c01151{bottom:500.130000px;}
.ya_c01151{bottom:525.180000px;}
.y9_c01151{bottom:550.080000px;}
.y8_c01151{bottom:575.130000px;}
.y7_c01151{bottom:598.380000px;}
.y6_c01151{bottom:624.480000px;}
.y5_c01151{bottom:649.080000px;}
.y4_c01151{bottom:673.380000px;}
.y3_c01151{bottom:699.330000px;}
.y2_c01151{bottom:723.930000px;}
.y1_c01151{bottom:749.580000px;}
.h4_c01151{height:13.200074px;}
.h5_c01151{height:43.804688px;}
.h2_c01151{height:91.160156px;}
.h3_c01151{height:112.359375px;}
.h0_c01151{height:802.200000px;}
.h1_c01151{height:802.500000px;}
.w2_c01151{width:104.875500px;}
.w0_c01151{width:534.600000px;}
.w1_c01151{width:534.750000px;}
.x0_c01151{left:0.000000px;}
.x3_c01151{left:114.150000px;}
.x9_c01151{left:115.350000px;}
.x2_c01151{left:117.450000px;}
.x4_c01151{left:118.500000px;}
.x6_c01151{left:119.850000px;}
.x1_c01151{left:122.850000px;}
.xb_c01151{left:129.150000px;}
.x5_c01151{left:145.500000px;}
.xa_c01151{left:151.650000px;}
.xc_c01151{left:219.114258px;}
.x7_c01151{left:276.150000px;}
.x8_c01151{left:334.500000px;}
@media print{
.v0_c01151{vertical-align:0.000000pt;}
.ls2_c01151{letter-spacing:0.000000pt;}
.ls4_c01151{letter-spacing:5.333333pt;}
.ls5_c01151{letter-spacing:8.000000pt;}
.ls0_c01151{letter-spacing:13.376000pt;}
.ls1_c01151{letter-spacing:31.509333pt;}
.ls3_c01151{letter-spacing:58.666667pt;}
.ws1_c01151{word-spacing:-20.565333pt;}
.ws2_c01151{word-spacing:-17.672533pt;}
.ws0_c01151{word-spacing:-15.424000pt;}
.ws3_c01151{word-spacing:-12.339200pt;}
.ws4_c01151{word-spacing:-8.074667pt;}
.ws5_c01151{word-spacing:0.000000pt;}
._2a_c01151{margin-left:-29.696000pt;}
._27_c01151{margin-left:-24.640000pt;}
._21_c01151{margin-left:-21.120000pt;}
._0_c01151{margin-left:-19.008000pt;}
._1f_c01151{margin-left:-16.298667pt;}
._1e_c01151{margin-left:-13.418667pt;}
._2_c01151{margin-left:-12.288000pt;}
._1a_c01151{margin-left:-11.136000pt;}
._18_c01151{margin-left:-10.176000pt;}
._16_c01151{margin-left:-9.152000pt;}
._13_c01151{margin-left:-8.256000pt;}
._17_c01151{margin-left:-7.232000pt;}
._4_c01151{margin-left:-6.144000pt;}
._15_c01151{margin-left:-4.672000pt;}
._14_c01151{margin-left:-2.944000pt;}
._d_c01151{margin-left:-2.048000pt;}
._11_c01151{margin-left:-0.896000pt;}
._c_c01151{width:1.152000pt;}
._e_c01151{width:2.240000pt;}
._a_c01151{width:3.136000pt;}
._9_c01151{width:4.224000pt;}
._b_c01151{width:5.888000pt;}
._7_c01151{width:7.168000pt;}
._8_c01151{width:8.896000pt;}
._6_c01151{width:10.304000pt;}
._3_c01151{width:11.520000pt;}
._22_c01151{width:12.480000pt;}
._1_c01151{width:13.376000pt;}
._10_c01151{width:14.336000pt;}
._12_c01151{width:17.216000pt;}
._f_c01151{width:18.752000pt;}
._1c_c01151{width:23.296000pt;}
._25_c01151{width:25.600000pt;}
._24_c01151{width:32.704000pt;}
._28_c01151{width:48.593067pt;}
._29_c01151{width:55.296000pt;}
._1b_c01151{width:57.152000pt;}
._23_c01151{width:84.458667pt;}
._19_c01151{width:173.824000pt;}
._20_c01151{width:194.410667pt;}
._2b_c01151{width:239.232000pt;}
._26_c01151{width:259.712000pt;}
._5_c01151{width:274.176000pt;}
._1d_c01151{width:290.944000pt;}
._2c_c01151{width:694.869333pt;}
.fs4_c01151{font-size:42.666667pt;}
.fs2_c01151{font-size:51.200000pt;}
.fs0_c01151{font-size:64.000000pt;}
.fs3_c01151{font-size:74.666667pt;}
.fs1_c01151{font-size:85.333333pt;}
.y0_c01151{bottom:0.000000pt;}
.y1e_c01151{bottom:2.760000pt;}
.y1d_c01151{bottom:6.425206pt;}
.y1c_c01151{bottom:66.960000pt;}
.y1b_c01151{bottom:89.093333pt;}
.y1a_c01151{bottom:112.560000pt;}
.y19_c01151{bottom:135.093333pt;}
.y18_c01151{bottom:160.560000pt;}
.y17_c01151{bottom:180.960000pt;}
.y16_c01151{bottom:202.560000pt;}
.y15_c01151{bottom:226.826667pt;}
.y14_c01151{bottom:248.426667pt;}
.y13_c01151{bottom:270.293333pt;}
.y12_c01151{bottom:291.893333pt;}
.y11_c01151{bottom:315.893333pt;}
.y10_c01151{bottom:336.960000pt;}
.yf_c01151{bottom:356.960000pt;}
.ye_c01151{bottom:378.960000pt;}
.yd_c01151{bottom:400.826667pt;}
.yc_c01151{bottom:422.160000pt;}
.yb_c01151{bottom:444.560000pt;}
.ya_c01151{bottom:466.826667pt;}
.y9_c01151{bottom:488.960000pt;}
.y8_c01151{bottom:511.226667pt;}
.y7_c01151{bottom:531.893333pt;}
.y6_c01151{bottom:555.093333pt;}
.y5_c01151{bottom:576.960000pt;}
.y4_c01151{bottom:598.560000pt;}
.y3_c01151{bottom:621.626667pt;}
.y2_c01151{bottom:643.493333pt;}
.y1_c01151{bottom:666.293333pt;}
.h4_c01151{height:11.733399pt;}
.h5_c01151{height:38.937500pt;}
.h2_c01151{height:81.031250pt;}
.h3_c01151{height:99.875000pt;}
.h0_c01151{height:713.066667pt;}
.h1_c01151{height:713.333333pt;}
.w2_c01151{width:93.222667pt;}
.w0_c01151{width:475.200000pt;}
.w1_c01151{width:475.333333pt;}
.x0_c01151{left:0.000000pt;}
.x3_c01151{left:101.466667pt;}
.x9_c01151{left:102.533333pt;}
.x2_c01151{left:104.400000pt;}
.x4_c01151{left:105.333333pt;}
.x6_c01151{left:106.533333pt;}
.x1_c01151{left:109.200000pt;}
.xb_c01151{left:114.800000pt;}
.x5_c01151{left:129.333333pt;}
.xa_c01151{left:134.800000pt;}
.xc_c01151{left:194.768229pt;}
.x7_c01151{left:245.466667pt;}
.x8_c01151{left:297.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_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_8a0b6427de11ea218fca01b4.woff2')format("woff");}.ff1_c01152{font-family:ff1_c01152;line-height:1.480469;font-style:normal;font-weight:normal;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_8a10eee369c24dfe942761b9.woff2')format("woff");}.ff2_c01152{font-family:ff2_c01152;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01152;src:url('chunks/assets/font_d8db6cb0f1c8fcefe05dc841.woff2')format("woff");}.ff3_c01152{font-family:ff3_c01152;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01152;src:url('chunks/assets/font_0bd358e2014ea61172dd8d9b.woff2')format("woff");}.ff4_c01152{font-family:ff4_c01152;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01152;src:url('chunks/assets/font_6736f80242a9420108f8fa0b.woff2')format("woff");}.ff5_c01152{font-family:ff5_c01152;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01152;src:url('chunks/assets/font_d2acbf1a3feb30a01e6db917.woff2')format("woff");}.ff6_c01152{font-family:ff6_c01152;line-height:1.575000;font-style:normal;font-weight: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_c01152;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c01152{font-family:ff7_c01152;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c01152{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,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;}
.ls1_c01152{letter-spacing:0.000000px;}
.ls2_c01152{letter-spacing:3.000000px;}
.ls0_c01152{letter-spacing:3.588000px;}
.ls3_c01152{letter-spacing:9.000000px;}
.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;}
}
.ws2_c01152{word-spacing:-33.192000px;}
.ws4_c01152{word-spacing:-30.051000px;}
.ws5_c01152{word-spacing:-17.352000px;}
.ws0_c01152{word-spacing:-14.040000px;}
.ws6_c01152{word-spacing:0.000000px;}
.ws1_c01152{word-spacing:3.588000px;}
.ws3_c01152{word-spacing:10.530000px;}
._23_c01152{margin-left:-20.190000px;}
._19_c01152{margin-left:-11.016000px;}
._5_c01152{margin-left:-9.432000px;}
._16_c01152{margin-left:-7.800000px;}
._15_c01152{margin-left:-6.576000px;}
._f_c01152{margin-left:-5.184000px;}
._d_c01152{margin-left:-3.240000px;}
._13_c01152{margin-left:-1.884000px;}
._e_c01152{width:1.152000px;}
._3_c01152{width:2.160000px;}
._8_c01152{width:3.528000px;}
._b_c01152{width:4.536000px;}
._2_c01152{width:5.688000px;}
._7_c01152{width:6.984000px;}
._c_c01152{width:7.992000px;}
._9_c01152{width:9.288000px;}
._17_c01152{width:10.458000px;}
._6_c01152{width:11.664000px;}
._a_c01152{width:13.104000px;}
._12_c01152{width:14.760000px;}
._11_c01152{width:16.344000px;}
._18_c01152{width:17.604000px;}
._10_c01152{width:20.088000px;}
._1a_c01152{width:21.612000px;}
._14_c01152{width:22.752000px;}
._1_c01152{width:24.096000px;}
._1d_c01152{width:25.908000px;}
._1c_c01152{width:27.360000px;}
._0_c01152{width:30.960000px;}
._1b_c01152{width:32.112000px;}
._21_c01152{width:33.300000px;}
._20_c01152{width:35.325000px;}
._22_c01152{width:37.038000px;}
._1f_c01152{width:53.736000px;}
._1e_c01152{width:58.842000px;}
._4_c01152{width:297.252000px;}
._24_c01152{width:308.802000px;}
.fc2_c01152{color:transparent;}
.fc1_c01152{color:rgb(128,128,128);}
.fc0_c01152{color:rgb(0,0,0);}
.fs3_c01152{font-size:36.000000px;}
.fs7_c01152{font-size:48.000000px;}
.fs4_c01152{font-size:51.000000px;}
.fs5_c01152{font-size:63.000000px;}
.fs2_c01152{font-size:66.000000px;}
.fs0_c01152{font-size:72.000000px;}
.fs6_c01152{font-size:75.000000px;}
.fs1_c01152{font-size:78.000000px;}
.y0_c01152{bottom:0.000000px;}
.y1f_c01152{bottom:3.105000px;}
.y1e_c01152{bottom:7.228369px;}
.y1d_c01152{bottom:41.220000px;}
.y1c_c01152{bottom:66.870000px;}
.y1b_c01152{bottom:91.020000px;}
.y1a_c01152{bottom:119.370000px;}
.y19_c01152{bottom:143.670000px;}
.y18_c01152{bottom:169.470000px;}
.y17_c01152{bottom:194.070000px;}
.y16_c01152{bottom:218.370000px;}
.y15_c01152{bottom:245.070000px;}
.y14_c01152{bottom:269.370000px;}
.y13_c01152{bottom:292.920000px;}
.y12_c01152{bottom:318.870000px;}
.y11_c01152{bottom:343.470000px;}
.y10_c01152{bottom:367.920000px;}
.yf_c01152{bottom:391.170000px;}
.ye_c01152{bottom:417.120000px;}
.yd_c01152{bottom:441.120000px;}
.yc_c01152{bottom:466.020000px;}
.yb_c01152{bottom:489.420000px;}
.ya_c01152{bottom:513.570000px;}
.y9_c01152{bottom:537.870000px;}
.y8_c01152{bottom:562.320000px;}
.y7_c01152{bottom:587.520000px;}
.y6_c01152{bottom:611.820000px;}
.y5_c01152{bottom:636.570000px;}
.y4_c01152{bottom:661.170000px;}
.y3_c01152{bottom:685.770000px;}
.y2_c01152{bottom:710.670000px;}
.y1_c01152{bottom:735.720000px;}
.h6_c01152{height:13.200073px;}
.h7_c01152{height:43.804688px;}
.h4_c01152{height:73.608398px;}
.h3_c01152{height:83.563477px;}
.h2_c01152{height:91.160156px;}
.h5_c01152{height:98.756836px;}
.h0_c01152{height:782.700000px;}
.h1_c01152{height:783.000000px;}
.w2_c01152{width:104.875500px;}
.w0_c01152{width:530.850000px;}
.w1_c01152{width:531.000000px;}
.x0_c01152{left:0.000000px;}
.xc_c01152{left:4.050000px;}
.x8_c01152{left:25.050000px;}
.x3_c01152{left:26.700000px;}
.x9_c01152{left:27.750000px;}
.x2_c01152{left:29.100000px;}
.x4_c01152{left:30.150000px;}
.x5_c01152{left:31.800000px;}
.x6_c01152{left:32.850000px;}
.x7_c01152{left:62.100000px;}
.x1_c01152{left:143.400000px;}
.xe_c01152{left:217.239258px;}
.xd_c01152{left:256.200000px;}
.xa_c01152{left:402.600000px;}
.xb_c01152{left:418.800000px;}
@media print{
.v0_c01152{vertical-align:0.000000pt;}
.ls1_c01152{letter-spacing:0.000000pt;}
.ls2_c01152{letter-spacing:2.666667pt;}
.ls0_c01152{letter-spacing:3.189333pt;}
.ls3_c01152{letter-spacing:8.000000pt;}
.ws2_c01152{word-spacing:-29.504000pt;}
.ws4_c01152{word-spacing:-26.712000pt;}
.ws5_c01152{word-spacing:-15.424000pt;}
.ws0_c01152{word-spacing:-12.480000pt;}
.ws6_c01152{word-spacing:0.000000pt;}
.ws1_c01152{word-spacing:3.189333pt;}
.ws3_c01152{word-spacing:9.360000pt;}
._23_c01152{margin-left:-17.946667pt;}
._19_c01152{margin-left:-9.792000pt;}
._5_c01152{margin-left:-8.384000pt;}
._16_c01152{margin-left:-6.933333pt;}
._15_c01152{margin-left:-5.845333pt;}
._f_c01152{margin-left:-4.608000pt;}
._d_c01152{margin-left:-2.880000pt;}
._13_c01152{margin-left:-1.674667pt;}
._e_c01152{width:1.024000pt;}
._3_c01152{width:1.920000pt;}
._8_c01152{width:3.136000pt;}
._b_c01152{width:4.032000pt;}
._2_c01152{width:5.056000pt;}
._7_c01152{width:6.208000pt;}
._c_c01152{width:7.104000pt;}
._9_c01152{width:8.256000pt;}
._17_c01152{width:9.296000pt;}
._6_c01152{width:10.368000pt;}
._a_c01152{width:11.648000pt;}
._12_c01152{width:13.120000pt;}
._11_c01152{width:14.528000pt;}
._18_c01152{width:15.648000pt;}
._10_c01152{width:17.856000pt;}
._1a_c01152{width:19.210667pt;}
._14_c01152{width:20.224000pt;}
._1_c01152{width:21.418667pt;}
._1d_c01152{width:23.029333pt;}
._1c_c01152{width:24.320000pt;}
._0_c01152{width:27.520000pt;}
._1b_c01152{width:28.544000pt;}
._21_c01152{width:29.600000pt;}
._20_c01152{width:31.400000pt;}
._22_c01152{width:32.922667pt;}
._1f_c01152{width:47.765333pt;}
._1e_c01152{width:52.304000pt;}
._4_c01152{width:264.224000pt;}
._24_c01152{width:274.490667pt;}
.fs3_c01152{font-size:32.000000pt;}
.fs7_c01152{font-size:42.666667pt;}
.fs4_c01152{font-size:45.333333pt;}
.fs5_c01152{font-size:56.000000pt;}
.fs2_c01152{font-size:58.666667pt;}
.fs0_c01152{font-size:64.000000pt;}
.fs6_c01152{font-size:66.666667pt;}
.fs1_c01152{font-size:69.333333pt;}
.y0_c01152{bottom:0.000000pt;}
.y1f_c01152{bottom:2.760000pt;}
.y1e_c01152{bottom:6.425217pt;}
.y1d_c01152{bottom:36.640000pt;}
.y1c_c01152{bottom:59.440000pt;}
.y1b_c01152{bottom:80.906667pt;}
.y1a_c01152{bottom:106.106667pt;}
.y19_c01152{bottom:127.706667pt;}
.y18_c01152{bottom:150.640000pt;}
.y17_c01152{bottom:172.506667pt;}
.y16_c01152{bottom:194.106667pt;}
.y15_c01152{bottom:217.840000pt;}
.y14_c01152{bottom:239.440000pt;}
.y13_c01152{bottom:260.373333pt;}
.y12_c01152{bottom:283.440000pt;}
.y11_c01152{bottom:305.306667pt;}
.y10_c01152{bottom:327.040000pt;}
.yf_c01152{bottom:347.706667pt;}
.ye_c01152{bottom:370.773333pt;}
.yd_c01152{bottom:392.106667pt;}
.yc_c01152{bottom:414.240000pt;}
.yb_c01152{bottom:435.040000pt;}
.ya_c01152{bottom:456.506667pt;}
.y9_c01152{bottom:478.106667pt;}
.y8_c01152{bottom:499.840000pt;}
.y7_c01152{bottom:522.240000pt;}
.y6_c01152{bottom:543.840000pt;}
.y5_c01152{bottom:565.840000pt;}
.y4_c01152{bottom:587.706667pt;}
.y3_c01152{bottom:609.573333pt;}
.y2_c01152{bottom:631.706667pt;}
.y1_c01152{bottom:653.973333pt;}
.h6_c01152{height:11.733399pt;}
.h7_c01152{height:38.937500pt;}
.h4_c01152{height:65.429688pt;}
.h3_c01152{height:74.278646pt;}
.h2_c01152{height:81.031250pt;}
.h5_c01152{height:87.783854pt;}
.h0_c01152{height:695.733333pt;}
.h1_c01152{height:696.000000pt;}
.w2_c01152{width:93.222667pt;}
.w0_c01152{width:471.866667pt;}
.w1_c01152{width:472.000000pt;}
.x0_c01152{left:0.000000pt;}
.xc_c01152{left:3.600000pt;}
.x8_c01152{left:22.266667pt;}
.x3_c01152{left:23.733333pt;}
.x9_c01152{left:24.666667pt;}
.x2_c01152{left:25.866667pt;}
.x4_c01152{left:26.800000pt;}
.x5_c01152{left:28.266667pt;}
.x6_c01152{left:29.200000pt;}
.x7_c01152{left:55.200000pt;}
.x1_c01152{left:127.466667pt;}
.xe_c01152{left:193.101563pt;}
.xd_c01152{left:227.733333pt;}
.xa_c01152{left:357.866667pt;}
.xb_c01152{left:372.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_92a0edf2cc20b9cc4773aac1.woff2')format("woff");}.ff1_c01153{font-family:ff1_c01153;line-height:1.568848;font-style:normal;font-weight:normal;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_458858f202c157bc29dc5d1a.woff2')format("woff");}.ff2_c01153{font-family:ff2_c01153;line-height:1.480469;font-style:normal;font-weight:normal;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_494ea771c39ea8b29026b5c8.woff2')format("woff");}.ff3_c01153{font-family:ff3_c01153;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01153;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01153{font-family:ff4_c01153;line-height:1.219238;font-style: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;}
.ls4_c01153{letter-spacing:-3.000000px;}
.ls3_c01153{letter-spacing:0.000000px;}
.ls1_c01153{letter-spacing:17.100000px;}
.ls0_c01153{letter-spacing:27.300000px;}
.ls2_c01153{letter-spacing:32.100000px;}
.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:-31.809000px;}
.ws2_c01153{word-spacing:-19.977000px;}
.ws3_c01153{word-spacing:-17.352000px;}
.ws1_c01153{word-spacing:-16.629000px;}
.ws4_c01153{word-spacing:0.000000px;}
._15_c01153{margin-left:-19.428000px;}
._11_c01153{margin-left:-14.412000px;}
._19_c01153{margin-left:-12.351000px;}
._13_c01153{margin-left:-4.968000px;}
._a_c01153{margin-left:-3.864000px;}
._3_c01153{margin-left:-1.656000px;}
._5_c01153{width:1.449000px;}
._4_c01153{width:3.381000px;}
._6_c01153{width:4.485000px;}
._b_c01153{width:5.520000px;}
._8_c01153{width:6.762000px;}
._9_c01153{width:8.625000px;}
._0_c01153{width:9.798000px;}
._f_c01153{width:10.962000px;}
._c_c01153{width:12.045000px;}
._d_c01153{width:14.061000px;}
._17_c01153{width:15.363000px;}
._1_c01153{width:18.009000px;}
._2_c01153{width:19.803000px;}
._14_c01153{width:22.632000px;}
._16_c01153{width:24.801000px;}
._12_c01153{width:29.601000px;}
._e_c01153{width:35.673000px;}
._7_c01153{width:182.367000px;}
._18_c01153{width:227.019000px;}
._1a_c01153{width:299.667000px;}
._10_c01153{width:537.855000px;}
.fc2_c01153{color:transparent;}
.fc1_c01153{color:rgb(128,128,128);}
.fc0_c01153{color:rgb(0,0,0);}
.fs2_c01153{font-size:48.000000px;}
.fs0_c01153{font-size:69.000000px;}
.fs1_c01153{font-size:72.000000px;}
.y0_c01153{bottom:0.000000px;}
.y1e_c01153{bottom:3.105000px;}
.y1d_c01153{bottom:7.228363px;}
.y1c_c01153{bottom:60.150000px;}
.y1b_c01153{bottom:80.550000px;}
.y1a_c01153{bottom:104.850000px;}
.y19_c01153{bottom:129.150000px;}
.y18_c01153{bottom:154.950000px;}
.y17_c01153{bottom:180.150000px;}
.y16_c01153{bottom:205.500000px;}
.y15_c01153{bottom:230.400000px;}
.y14_c01153{bottom:255.750000px;}
.y13_c01153{bottom:279.750000px;}
.y12_c01153{bottom:306.000000px;}
.y11_c01153{bottom:328.350000px;}
.y10_c01153{bottom:354.600000px;}
.yf_c01153{bottom:378.900000px;}
.ye_c01153{bottom:402.900000px;}
.yd_c01153{bottom:425.550000px;}
.yc_c01153{bottom:450.900000px;}
.yb_c01153{bottom:474.450000px;}
.ya_c01153{bottom:499.200000px;}
.y9_c01153{bottom:524.250000px;}
.y8_c01153{bottom:548.550000px;}
.y7_c01153{bottom:571.500000px;}
.y6_c01153{bottom:598.050000px;}
.y5_c01153{bottom:623.250000px;}
.y4_c01153{bottom:646.950000px;}
.y3_c01153{bottom:672.300000px;}
.y2_c01153{bottom:697.200000px;}
.y1_c01153{bottom:720.450000px;}
.h4_c01153{height:13.200074px;}
.h5_c01153{height:43.804688px;}
.h2_c01153{height:87.361816px;}
.h3_c01153{height:91.160156px;}
.h1_c01153{height:801.750000px;}
.h0_c01153{height:801.900000px;}
.w2_c01153{width:104.875500px;}
.w1_c01153{width:526.500000px;}
.w0_c01153{width:526.800000px;}
.x0_c01153{left:0.000000px;}
.x6_c01153{left:105.000000px;}
.x2_c01153{left:106.950000px;}
.x1_c01153{left:108.000000px;}
.x5_c01153{left:109.050000px;}
.x4_c01153{left:110.700000px;}
.x3_c01153{left:111.750000px;}
.x8_c01153{left:215.214249px;}
.x7_c01153{left:436.800000px;}
@media print{
.v0_c01153{vertical-align:0.000000pt;}
.ls4_c01153{letter-spacing:-2.666667pt;}
.ls3_c01153{letter-spacing:0.000000pt;}
.ls1_c01153{letter-spacing:15.200000pt;}
.ls0_c01153{letter-spacing:24.266667pt;}
.ls2_c01153{letter-spacing:28.533333pt;}
.ws0_c01153{word-spacing:-28.274667pt;}
.ws2_c01153{word-spacing:-17.757333pt;}
.ws3_c01153{word-spacing:-15.424000pt;}
.ws1_c01153{word-spacing:-14.781333pt;}
.ws4_c01153{word-spacing:0.000000pt;}
._15_c01153{margin-left:-17.269333pt;}
._11_c01153{margin-left:-12.810667pt;}
._19_c01153{margin-left:-10.978667pt;}
._13_c01153{margin-left:-4.416000pt;}
._a_c01153{margin-left:-3.434667pt;}
._3_c01153{margin-left:-1.472000pt;}
._5_c01153{width:1.288000pt;}
._4_c01153{width:3.005333pt;}
._6_c01153{width:3.986667pt;}
._b_c01153{width:4.906667pt;}
._8_c01153{width:6.010667pt;}
._9_c01153{width:7.666667pt;}
._0_c01153{width:8.709333pt;}
._f_c01153{width:9.744000pt;}
._c_c01153{width:10.706667pt;}
._d_c01153{width:12.498667pt;}
._17_c01153{width:13.656000pt;}
._1_c01153{width:16.008000pt;}
._2_c01153{width:17.602667pt;}
._14_c01153{width:20.117333pt;}
._16_c01153{width:22.045333pt;}
._12_c01153{width:26.312000pt;}
._e_c01153{width:31.709333pt;}
._7_c01153{width:162.104000pt;}
._18_c01153{width:201.794667pt;}
._1a_c01153{width:266.370667pt;}
._10_c01153{width:478.093333pt;}
.fs2_c01153{font-size:42.666667pt;}
.fs0_c01153{font-size:61.333333pt;}
.fs1_c01153{font-size:64.000000pt;}
.y0_c01153{bottom:0.000000pt;}
.y1e_c01153{bottom:2.760000pt;}
.y1d_c01153{bottom:6.425212pt;}
.y1c_c01153{bottom:53.466667pt;}
.y1b_c01153{bottom:71.600000pt;}
.y1a_c01153{bottom:93.200000pt;}
.y19_c01153{bottom:114.800000pt;}
.y18_c01153{bottom:137.733333pt;}
.y17_c01153{bottom:160.133333pt;}
.y16_c01153{bottom:182.666667pt;}
.y15_c01153{bottom:204.800000pt;}
.y14_c01153{bottom:227.333333pt;}
.y13_c01153{bottom:248.666667pt;}
.y12_c01153{bottom:272.000000pt;}
.y11_c01153{bottom:291.866667pt;}
.y10_c01153{bottom:315.200000pt;}
.yf_c01153{bottom:336.800000pt;}
.ye_c01153{bottom:358.133333pt;}
.yd_c01153{bottom:378.266667pt;}
.yc_c01153{bottom:400.800000pt;}
.yb_c01153{bottom:421.733333pt;}
.ya_c01153{bottom:443.733333pt;}
.y9_c01153{bottom:466.000000pt;}
.y8_c01153{bottom:487.600000pt;}
.y7_c01153{bottom:508.000000pt;}
.y6_c01153{bottom:531.600000pt;}
.y5_c01153{bottom:554.000000pt;}
.y4_c01153{bottom:575.066667pt;}
.y3_c01153{bottom:597.600000pt;}
.y2_c01153{bottom:619.733333pt;}
.y1_c01153{bottom:640.400000pt;}
.h4_c01153{height:11.733399pt;}
.h5_c01153{height:38.937500pt;}
.h2_c01153{height:77.654948pt;}
.h3_c01153{height:81.031250pt;}
.h1_c01153{height:712.666667pt;}
.h0_c01153{height:712.800000pt;}
.w2_c01153{width:93.222667pt;}
.w1_c01153{width:468.000000pt;}
.w0_c01153{width:468.266667pt;}
.x0_c01153{left:0.000000pt;}
.x6_c01153{left:93.333333pt;}
.x2_c01153{left:95.066667pt;}
.x1_c01153{left:96.000000pt;}
.x5_c01153{left:96.933333pt;}
.x4_c01153{left:98.400000pt;}
.x3_c01153{left:99.333333pt;}
.x8_c01153{left:191.301554pt;}
.x7_c01153{left:388.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e534707d4c6b5d465b9eeeb8.woff2')format("woff");}.ff1_c01154{font-family:ff1_c01154;line-height:1.568848;font-style:normal;font-weight:normal;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_70bdfb75da20ef92149664c3.woff2')format("woff");}.ff2_c01154{font-family:ff2_c01154;line-height:1.480469;font-style:normal;font-weight:normal;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_05cc44ac8503afe3ce13a54c.woff2')format("woff");}.ff3_c01154{font-family:ff3_c01154;line-height:1.592000;font-style:normal;font-weight:normal;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_42ca6a7f4ee780e6466fa4ba.woff2')format("woff");}.ff4_c01154{font-family:ff4_c01154;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01154{font-family:ff5_c01154;line-height:1.219238;font-style: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;}
.ls2_c01154{letter-spacing:0.000000px;}
.ls1_c01154{letter-spacing:4.056000px;}
.ls3_c01154{letter-spacing:12.000000px;}
.ls0_c01154{letter-spacing:25.200000px;}
.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:-30.798000px;}
.ws1_c01154{word-spacing:-17.352000px;}
.ws2_c01154{word-spacing:0.000000px;}
._1f_c01154{margin-left:-12.672000px;}
._15_c01154{margin-left:-10.872000px;}
._11_c01154{margin-left:-9.864000px;}
._16_c01154{margin-left:-8.196000px;}
._14_c01154{margin-left:-6.552000px;}
._5_c01154{margin-left:-4.824000px;}
._6_c01154{margin-left:-3.456000px;}
._3_c01154{margin-left:-1.512000px;}
._9_c01154{width:1.656000px;}
._8_c01154{width:2.736000px;}
._7_c01154{width:4.320000px;}
._c_c01154{width:5.328000px;}
._a_c01154{width:6.624000px;}
._12_c01154{width:7.848000px;}
._13_c01154{width:9.000000px;}
._4_c01154{width:10.872000px;}
._b_c01154{width:12.816000px;}
._e_c01154{width:15.696000px;}
._10_c01154{width:18.792000px;}
._f_c01154{width:19.944000px;}
._d_c01154{width:21.384000px;}
._18_c01154{width:24.240000px;}
._1e_c01154{width:26.496000px;}
._17_c01154{width:28.680000px;}
._1c_c01154{width:38.808000px;}
._1d_c01154{width:43.776000px;}
._0_c01154{width:61.488000px;}
._1b_c01154{width:62.784000px;}
._19_c01154{width:126.216000px;}
._1_c01154{width:188.811000px;}
._2_c01154{width:198.744000px;}
._1a_c01154{width:222.120000px;}
._20_c01154{width:365.112000px;}
.fc2_c01154{color:transparent;}
.fc1_c01154{color:rgb(128,128,128);}
.fc0_c01154{color:rgb(0,0,0);}
.fs4_c01154{font-size:48.000000px;}
.fs6_c01154{font-size:60.000000px;}
.fs0_c01154{font-size:63.000000px;}
.fs3_c01154{font-size:72.000000px;}
.fs1_c01154{font-size:78.000000px;}
.fs2_c01154{font-size:81.000000px;}
.fs5_c01154{font-size:108.000000px;}
.y0_c01154{bottom:0.000000px;}
.y1f_c01154{bottom:3.105000px;}
.y1e_c01154{bottom:7.228369px;}
.y1d_c01154{bottom:25.020000px;}
.y1c_c01154{bottom:53.970000px;}
.y1b_c01154{bottom:77.520000px;}
.y1a_c01154{bottom:102.870000px;}
.y19_c01154{bottom:127.920000px;}
.y18_c01154{bottom:153.270000px;}
.y17_c01154{bottom:176.220000px;}
.y16_c01154{bottom:204.120000px;}
.y15_c01154{bottom:227.820000px;}
.y14_c01154{bottom:253.470000px;}
.y13_c01154{bottom:279.420000px;}
.y12_c01154{bottom:303.420000px;}
.y11_c01154{bottom:326.670000px;}
.y10_c01154{bottom:352.320000px;}
.yf_c01154{bottom:376.620000px;}
.ye_c01154{bottom:401.520000px;}
.yd_c01154{bottom:425.820000px;}
.yc_c01154{bottom:450.270000px;}
.yb_c01154{bottom:474.420000px;}
.ya_c01154{bottom:498.720000px;}
.y9_c01154{bottom:523.470000px;}
.y8_c01154{bottom:548.070000px;}
.y7_c01154{bottom:573.420000px;}
.y6_c01154{bottom:597.720000px;}
.y5_c01154{bottom:622.920000px;}
.y4_c01154{bottom:647.370000px;}
.y3_c01154{bottom:672.270000px;}
.y2_c01154{bottom:697.320000px;}
.y1_c01154{bottom:721.470000px;}
.h4_c01154{height:13.200073px;}
.h5_c01154{height:43.804688px;}
.h3_c01154{height:91.160156px;}
.h1_c01154{height:94.803223px;}
.h2_c01154{height:117.072000px;}
.h0_c01154{height:773.250000px;}
.w2_c01154{width:104.875500px;}
.w1_c01154{width:532.500000px;}
.w0_c01154{width:532.725000px;}
.x0_c01154{left:0.000000px;}
.x8_c01154{left:34.650000px;}
.x7_c01154{left:36.150000px;}
.x2_c01154{left:37.350000px;}
.x3_c01154{left:38.700000px;}
.x4_c01154{left:40.200000px;}
.x5_c01154{left:41.850000px;}
.x6_c01154{left:64.350000px;}
.x1_c01154{left:165.000000px;}
.xa_c01154{left:218.176758px;}
.x9_c01154{left:255.450000px;}
@media print{
.v0_c01154{vertical-align:0.000000pt;}
.ls2_c01154{letter-spacing:0.000000pt;}
.ls1_c01154{letter-spacing:3.605333pt;}
.ls3_c01154{letter-spacing:10.666667pt;}
.ls0_c01154{letter-spacing:22.400000pt;}
.ws0_c01154{word-spacing:-27.376000pt;}
.ws1_c01154{word-spacing:-15.424000pt;}
.ws2_c01154{word-spacing:0.000000pt;}
._1f_c01154{margin-left:-11.264000pt;}
._15_c01154{margin-left:-9.664000pt;}
._11_c01154{margin-left:-8.768000pt;}
._16_c01154{margin-left:-7.285333pt;}
._14_c01154{margin-left:-5.824000pt;}
._5_c01154{margin-left:-4.288000pt;}
._6_c01154{margin-left:-3.072000pt;}
._3_c01154{margin-left:-1.344000pt;}
._9_c01154{width:1.472000pt;}
._8_c01154{width:2.432000pt;}
._7_c01154{width:3.840000pt;}
._c_c01154{width:4.736000pt;}
._a_c01154{width:5.888000pt;}
._12_c01154{width:6.976000pt;}
._13_c01154{width:8.000000pt;}
._4_c01154{width:9.664000pt;}
._b_c01154{width:11.392000pt;}
._e_c01154{width:13.952000pt;}
._10_c01154{width:16.704000pt;}
._f_c01154{width:17.728000pt;}
._d_c01154{width:19.008000pt;}
._18_c01154{width:21.546667pt;}
._1e_c01154{width:23.552000pt;}
._17_c01154{width:25.493333pt;}
._1c_c01154{width:34.496000pt;}
._1d_c01154{width:38.912000pt;}
._0_c01154{width:54.656000pt;}
._1b_c01154{width:55.808000pt;}
._19_c01154{width:112.192000pt;}
._1_c01154{width:167.832000pt;}
._2_c01154{width:176.661333pt;}
._1a_c01154{width:197.440000pt;}
._20_c01154{width:324.544000pt;}
.fs4_c01154{font-size:42.666667pt;}
.fs6_c01154{font-size:53.333333pt;}
.fs0_c01154{font-size:56.000000pt;}
.fs3_c01154{font-size:64.000000pt;}
.fs1_c01154{font-size:69.333333pt;}
.fs2_c01154{font-size:72.000000pt;}
.fs5_c01154{font-size:96.000000pt;}
.y0_c01154{bottom:0.000000pt;}
.y1f_c01154{bottom:2.760000pt;}
.y1e_c01154{bottom:6.425217pt;}
.y1d_c01154{bottom:22.240000pt;}
.y1c_c01154{bottom:47.973333pt;}
.y1b_c01154{bottom:68.906667pt;}
.y1a_c01154{bottom:91.440000pt;}
.y19_c01154{bottom:113.706667pt;}
.y18_c01154{bottom:136.240000pt;}
.y17_c01154{bottom:156.640000pt;}
.y16_c01154{bottom:181.440000pt;}
.y15_c01154{bottom:202.506667pt;}
.y14_c01154{bottom:225.306667pt;}
.y13_c01154{bottom:248.373333pt;}
.y12_c01154{bottom:269.706667pt;}
.y11_c01154{bottom:290.373333pt;}
.y10_c01154{bottom:313.173333pt;}
.yf_c01154{bottom:334.773333pt;}
.ye_c01154{bottom:356.906667pt;}
.yd_c01154{bottom:378.506667pt;}
.yc_c01154{bottom:400.240000pt;}
.yb_c01154{bottom:421.706667pt;}
.ya_c01154{bottom:443.306667pt;}
.y9_c01154{bottom:465.306667pt;}
.y8_c01154{bottom:487.173333pt;}
.y7_c01154{bottom:509.706667pt;}
.y6_c01154{bottom:531.306667pt;}
.y5_c01154{bottom:553.706667pt;}
.y4_c01154{bottom:575.440000pt;}
.y3_c01154{bottom:597.573333pt;}
.y2_c01154{bottom:619.840000pt;}
.y1_c01154{bottom:641.306667pt;}
.h4_c01154{height:11.733399pt;}
.h5_c01154{height:38.937500pt;}
.h3_c01154{height:81.031250pt;}
.h1_c01154{height:84.269531pt;}
.h2_c01154{height:104.064000pt;}
.h0_c01154{height:687.333333pt;}
.w2_c01154{width:93.222667pt;}
.w1_c01154{width:473.333333pt;}
.w0_c01154{width:473.533333pt;}
.x0_c01154{left:0.000000pt;}
.x8_c01154{left:30.800000pt;}
.x7_c01154{left:32.133333pt;}
.x2_c01154{left:33.200000pt;}
.x3_c01154{left:34.400000pt;}
.x4_c01154{left:35.733333pt;}
.x5_c01154{left:37.200000pt;}
.x6_c01154{left:57.200000pt;}
.x1_c01154{left:146.666667pt;}
.xa_c01154{left:193.934896pt;}
.x9_c01154{left:227.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ad570637001919d6ddb0c8ee.woff2')format("woff");}.ff1_c01155{font-family:ff1_c01155;line-height:1.568848;font-style:normal;font-weight:normal;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_edbe137ed766bfd180ad53fc.woff2')format("woff");}.ff2_c01155{font-family:ff2_c01155;line-height:1.480469;font-style:normal;font-weight:normal;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_28899971b3068dc580d2b01b.woff2')format("woff");}.ff3_c01155{font-family:ff3_c01155;line-height:1.284180;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01155{font-family:ff4_c01155;line-height:1.219238;font-style: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;}
.ls1_c01155{letter-spacing:0.000000px;}
.ls0_c01155{letter-spacing:1.104000px;}
.ls2_c01155{letter-spacing:6.000000px;}
.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;}
}
.ws1_c01155{word-spacing:-39.000000px;}
.ws0_c01155{word-spacing:-33.192000px;}
.ws2_c01155{word-spacing:0.000000px;}
._5_c01155{margin-left:-21.168000px;}
._4_c01155{margin-left:-19.080000px;}
._23_c01155{margin-left:-17.163000px;}
._22_c01155{margin-left:-14.538000px;}
._3_c01155{margin-left:-13.392000px;}
._0_c01155{margin-left:-11.376000px;}
._18_c01155{margin-left:-9.405000px;}
._20_c01155{margin-left:-7.560000px;}
._1_c01155{margin-left:-6.048000px;}
._12_c01155{margin-left:-4.104000px;}
._7_c01155{margin-left:-3.024000px;}
._11_c01155{margin-left:-1.644000px;}
._10_c01155{width:1.425000px;}
._e_c01155{width:2.655000px;}
._9_c01155{width:4.536000px;}
._b_c01155{width:5.976000px;}
._c_c01155{width:7.344000px;}
._f_c01155{width:8.508000px;}
._a_c01155{width:9.648000px;}
._d_c01155{width:11.199000px;}
._17_c01155{width:12.270000px;}
._13_c01155{width:13.692000px;}
._2_c01155{width:15.048000px;}
._1a_c01155{width:17.049000px;}
._1f_c01155{width:19.038000px;}
._6_c01155{width:20.448000px;}
._15_c01155{width:22.983000px;}
._14_c01155{width:24.132000px;}
._21_c01155{width:70.200000px;}
._1c_c01155{width:100.737000px;}
._16_c01155{width:113.541000px;}
._1e_c01155{width:119.736000px;}
._1d_c01155{width:122.343000px;}
._19_c01155{width:214.605000px;}
._8_c01155{width:282.936000px;}
._1b_c01155{width:810.600000px;}
.fc2_c01155{color:transparent;}
.fc1_c01155{color:rgb(128,128,128);}
.fc0_c01155{color:rgb(0,0,0);}
.fs3_c01155{font-size:48.000000px;}
.fs1_c01155{font-size:57.000000px;}
.fs0_c01155{font-size:72.000000px;}
.fs2_c01155{font-size:78.000000px;}
.y0_c01155{bottom:0.000000px;}
.y1d_c01155{bottom:3.105000px;}
.y1c_c01155{bottom:7.228363px;}
.y1b_c01155{bottom:126.600000px;}
.y1a_c01155{bottom:151.500000px;}
.y19_c01155{bottom:176.550000px;}
.y18_c01155{bottom:201.600000px;}
.y17_c01155{bottom:229.950000px;}
.y16_c01155{bottom:252.750000px;}
.y15_c01155{bottom:276.150000px;}
.y14_c01155{bottom:298.050000px;}
.y13_c01155{bottom:328.050000px;}
.y12_c01155{bottom:354.450000px;}
.y11_c01155{bottom:380.400000px;}
.y10_c01155{bottom:405.000000px;}
.yf_c01155{bottom:427.350000px;}
.ye_c01155{bottom:451.200000px;}
.yd_c01155{bottom:475.200000px;}
.yc_c01155{bottom:499.800000px;}
.yb_c01155{bottom:524.850000px;}
.ya_c01155{bottom:550.200000px;}
.y1_c01155{bottom:554.100000px;}
.y9_c01155{bottom:575.400000px;}
.y8_c01155{bottom:599.700000px;}
.y7_c01155{bottom:624.150000px;}
.y6_c01155{bottom:649.800000px;}
.y5_c01155{bottom:674.400000px;}
.y4_c01155{bottom:699.000000px;}
.y3_c01155{bottom:724.200000px;}
.y2_c01155{bottom:748.950000px;}
.h4_c01155{height:13.200074px;}
.h5_c01155{height:43.804688px;}
.h3_c01155{height:72.168457px;}
.h2_c01155{height:91.160156px;}
.h1_c01155{height:801.750000px;}
.h0_c01155{height:801.900000px;}
.w2_c01155{width:104.875500px;}
.w0_c01155{width:526.200000px;}
.w1_c01155{width:526.500000px;}
.x0_c01155{left:0.000000px;}
.x9_c01155{left:29.400000px;}
.x1_c01155{left:31.050000px;}
.x6_c01155{left:38.700000px;}
.xb_c01155{left:71.850000px;}
.x8_c01155{left:91.800000px;}
.x3_c01155{left:99.000000px;}
.x4_c01155{left:100.800000px;}
.x7_c01155{left:102.150000px;}
.xa_c01155{left:103.950000px;}
.xc_c01155{left:105.300000px;}
.x2_c01155{left:119.400000px;}
.xd_c01155{left:214.914230px;}
.x5_c01155{left:301.950000px;}
@media print{
.v0_c01155{vertical-align:0.000000pt;}
.ls1_c01155{letter-spacing:0.000000pt;}
.ls0_c01155{letter-spacing:0.981333pt;}
.ls2_c01155{letter-spacing:5.333333pt;}
.ws1_c01155{word-spacing:-34.666667pt;}
.ws0_c01155{word-spacing:-29.504000pt;}
.ws2_c01155{word-spacing:0.000000pt;}
._5_c01155{margin-left:-18.816000pt;}
._4_c01155{margin-left:-16.960000pt;}
._23_c01155{margin-left:-15.256000pt;}
._22_c01155{margin-left:-12.922667pt;}
._3_c01155{margin-left:-11.904000pt;}
._0_c01155{margin-left:-10.112000pt;}
._18_c01155{margin-left:-8.360000pt;}
._20_c01155{margin-left:-6.720000pt;}
._1_c01155{margin-left:-5.376000pt;}
._12_c01155{margin-left:-3.648000pt;}
._7_c01155{margin-left:-2.688000pt;}
._11_c01155{margin-left:-1.461333pt;}
._10_c01155{width:1.266667pt;}
._e_c01155{width:2.360000pt;}
._9_c01155{width:4.032000pt;}
._b_c01155{width:5.312000pt;}
._c_c01155{width:6.528000pt;}
._f_c01155{width:7.562667pt;}
._a_c01155{width:8.576000pt;}
._d_c01155{width:9.954667pt;}
._17_c01155{width:10.906667pt;}
._13_c01155{width:12.170667pt;}
._2_c01155{width:13.376000pt;}
._1a_c01155{width:15.154667pt;}
._1f_c01155{width:16.922667pt;}
._6_c01155{width:18.176000pt;}
._15_c01155{width:20.429333pt;}
._14_c01155{width:21.450667pt;}
._21_c01155{width:62.400000pt;}
._1c_c01155{width:89.544000pt;}
._16_c01155{width:100.925333pt;}
._1e_c01155{width:106.432000pt;}
._1d_c01155{width:108.749333pt;}
._19_c01155{width:190.760000pt;}
._8_c01155{width:251.498667pt;}
._1b_c01155{width:720.533333pt;}
.fs3_c01155{font-size:42.666667pt;}
.fs1_c01155{font-size:50.666667pt;}
.fs0_c01155{font-size:64.000000pt;}
.fs2_c01155{font-size:69.333333pt;}
.y0_c01155{bottom:0.000000pt;}
.y1d_c01155{bottom:2.760000pt;}
.y1c_c01155{bottom:6.425212pt;}
.y1b_c01155{bottom:112.533333pt;}
.y1a_c01155{bottom:134.666667pt;}
.y19_c01155{bottom:156.933333pt;}
.y18_c01155{bottom:179.200000pt;}
.y17_c01155{bottom:204.400000pt;}
.y16_c01155{bottom:224.666667pt;}
.y15_c01155{bottom:245.466667pt;}
.y14_c01155{bottom:264.933333pt;}
.y13_c01155{bottom:291.600000pt;}
.y12_c01155{bottom:315.066667pt;}
.y11_c01155{bottom:338.133333pt;}
.y10_c01155{bottom:360.000000pt;}
.yf_c01155{bottom:379.866667pt;}
.ye_c01155{bottom:401.066667pt;}
.yd_c01155{bottom:422.400000pt;}
.yc_c01155{bottom:444.266667pt;}
.yb_c01155{bottom:466.533333pt;}
.ya_c01155{bottom:489.066667pt;}
.y1_c01155{bottom:492.533333pt;}
.y9_c01155{bottom:511.466667pt;}
.y8_c01155{bottom:533.066667pt;}
.y7_c01155{bottom:554.800000pt;}
.y6_c01155{bottom:577.600000pt;}
.y5_c01155{bottom:599.466667pt;}
.y4_c01155{bottom:621.333333pt;}
.y3_c01155{bottom:643.733333pt;}
.y2_c01155{bottom:665.733333pt;}
.h4_c01155{height:11.733399pt;}
.h5_c01155{height:38.937500pt;}
.h3_c01155{height:64.149740pt;}
.h2_c01155{height:81.031250pt;}
.h1_c01155{height:712.666667pt;}
.h0_c01155{height:712.800000pt;}
.w2_c01155{width:93.222667pt;}
.w0_c01155{width:467.733333pt;}
.w1_c01155{width:468.000000pt;}
.x0_c01155{left:0.000000pt;}
.x9_c01155{left:26.133333pt;}
.x1_c01155{left:27.600000pt;}
.x6_c01155{left:34.400000pt;}
.xb_c01155{left:63.866667pt;}
.x8_c01155{left:81.600000pt;}
.x3_c01155{left:88.000000pt;}
.x4_c01155{left:89.600000pt;}
.x7_c01155{left:90.800000pt;}
.xa_c01155{left:92.400000pt;}
.xc_c01155{left:93.600000pt;}
.x2_c01155{left:106.133333pt;}
.xd_c01155{left:191.034871pt;}
.x5_c01155{left:268.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bd94cd419d89c3cb30233007.woff2')format("woff");}.ff1_c01156{font-family:ff1_c01156;line-height:1.480469;font-style:normal;font-weight:normal;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_57321f16d9292baeb7b88bad.woff2')format("woff");}.ff2_c01156{font-family:ff2_c01156;line-height:1.568848;font-style:normal;font-weight:normal;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_7b5f0308ffad2a1bc3c28a88.woff2')format("woff");}.ff3_c01156{font-family:ff3_c01156;line-height:1.284668;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01156{font-family:ff4_c01156;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01156{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01156{vertical-align:0.000000px;}
.ls0_c01156{letter-spacing:0.000000px;}
.ls1_c01156{letter-spacing:6.000000px;}
.sc__c01156{text-shadow:none;}
.sc0_c01156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01156{-webkit-text-stroke:0px transparent;}
.sc0_c01156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01156{word-spacing:-33.192000px;}
.ws0_c01156{word-spacing:-14.904000px;}
.ws2_c01156{word-spacing:0.000000px;}
._17_c01156{margin-left:-23.328000px;}
._19_c01156{margin-left:-16.272000px;}
._12_c01156{margin-left:-12.888000px;}
._1e_c01156{margin-left:-10.008000px;}
._f_c01156{margin-left:-8.160000px;}
._11_c01156{margin-left:-6.816000px;}
._6_c01156{margin-left:-5.688000px;}
._10_c01156{margin-left:-4.392000px;}
._1f_c01156{margin-left:-3.312000px;}
._c_c01156{margin-left:-1.968000px;}
._b_c01156{width:1.944000px;}
._8_c01156{width:3.384000px;}
._a_c01156{width:4.392000px;}
._4_c01156{width:5.760000px;}
._1_c01156{width:7.128000px;}
._7_c01156{width:8.760000px;}
._1a_c01156{width:9.984000px;}
._2_c01156{width:11.088000px;}
._3_c01156{width:12.672000px;}
._14_c01156{width:13.680000px;}
._0_c01156{width:15.192000px;}
._1c_c01156{width:16.272000px;}
._9_c01156{width:18.408000px;}
._1d_c01156{width:19.656000px;}
._13_c01156{width:20.736000px;}
._15_c01156{width:22.704000px;}
._1b_c01156{width:27.768000px;}
._d_c01156{width:34.305000px;}
._e_c01156{width:36.024000px;}
._16_c01156{width:59.568000px;}
._18_c01156{width:88.560000px;}
._5_c01156{width:290.448000px;}
._20_c01156{width:311.400000px;}
.fc2_c01156{color:transparent;}
.fc1_c01156{color:rgb(128,128,128);}
.fc0_c01156{color:rgb(0,0,0);}
.fs3_c01156{font-size:48.000000px;}
.fs1_c01156{font-size:57.000000px;}
.fs2_c01156{font-size:66.000000px;}
.fs0_c01156{font-size:72.000000px;}
.y0_c01156{bottom:0.000000px;}
.y1f_c01156{bottom:3.105000px;}
.y1e_c01156{bottom:7.228355px;}
.y1d_c01156{bottom:41.385000px;}
.y1c_c01156{bottom:71.535000px;}
.y1b_c01156{bottom:99.585000px;}
.y1a_c01156{bottom:121.785000px;}
.y19_c01156{bottom:146.685000px;}
.y18_c01156{bottom:173.085000px;}
.y17_c01156{bottom:195.735000px;}
.y16_c01156{bottom:221.985000px;}
.y15_c01156{bottom:246.285000px;}
.y14_c01156{bottom:270.585000px;}
.y13_c01156{bottom:299.385000px;}
.y12_c01156{bottom:323.535000px;}
.y11_c01156{bottom:347.835000px;}
.y10_c01156{bottom:373.635000px;}
.yf_c01156{bottom:397.185000px;}
.ye_c01156{bottom:421.785000px;}
.yd_c01156{bottom:446.085000px;}
.yc_c01156{bottom:470.835000px;}
.yb_c01156{bottom:493.785000px;}
.ya_c01156{bottom:520.335000px;}
.y9_c01156{bottom:544.035000px;}
.y8_c01156{bottom:568.035000px;}
.y7_c01156{bottom:593.985000px;}
.y6_c01156{bottom:617.835000px;}
.y5_c01156{bottom:642.285000px;}
.y4_c01156{bottom:667.185000px;}
.y3_c01156{bottom:692.535000px;}
.y2_c01156{bottom:716.835000px;}
.y1_c01156{bottom:742.785000px;}
.h4_c01156{height:13.200074px;}
.h5_c01156{height:43.804688px;}
.h3_c01156{height:83.563477px;}
.h2_c01156{height:91.160156px;}
.h0_c01156{height:790.275000px;}
.h1_c01156{height:790.500000px;}
.w1_c01156{width:104.875500px;}
.w0_c01156{width:556.500000px;}
.x0_c01156{left:0.000000px;}
.x7_c01156{left:39.150000px;}
.x6_c01156{left:40.500000px;}
.x5_c01156{left:41.550000px;}
.x3_c01156{left:42.900000px;}
.x4_c01156{left:44.250000px;}
.x2_c01156{left:46.200000px;}
.x1_c01156{left:200.700000px;}
.x9_c01156{left:230.064240px;}
.x8_c01156{left:292.950000px;}
@media print{
.v0_c01156{vertical-align:0.000000pt;}
.ls0_c01156{letter-spacing:0.000000pt;}
.ls1_c01156{letter-spacing:5.333333pt;}
.ws1_c01156{word-spacing:-29.504000pt;}
.ws0_c01156{word-spacing:-13.248000pt;}
.ws2_c01156{word-spacing:0.000000pt;}
._17_c01156{margin-left:-20.736000pt;}
._19_c01156{margin-left:-14.464000pt;}
._12_c01156{margin-left:-11.456000pt;}
._1e_c01156{margin-left:-8.896000pt;}
._f_c01156{margin-left:-7.253333pt;}
._11_c01156{margin-left:-6.058667pt;}
._6_c01156{margin-left:-5.056000pt;}
._10_c01156{margin-left:-3.904000pt;}
._1f_c01156{margin-left:-2.944000pt;}
._c_c01156{margin-left:-1.749333pt;}
._b_c01156{width:1.728000pt;}
._8_c01156{width:3.008000pt;}
._a_c01156{width:3.904000pt;}
._4_c01156{width:5.120000pt;}
._1_c01156{width:6.336000pt;}
._7_c01156{width:7.786667pt;}
._1a_c01156{width:8.874667pt;}
._2_c01156{width:9.856000pt;}
._3_c01156{width:11.264000pt;}
._14_c01156{width:12.160000pt;}
._0_c01156{width:13.504000pt;}
._1c_c01156{width:14.464000pt;}
._9_c01156{width:16.362667pt;}
._1d_c01156{width:17.472000pt;}
._13_c01156{width:18.432000pt;}
._15_c01156{width:20.181333pt;}
._1b_c01156{width:24.682667pt;}
._d_c01156{width:30.493333pt;}
._e_c01156{width:32.021333pt;}
._16_c01156{width:52.949333pt;}
._18_c01156{width:78.720000pt;}
._5_c01156{width:258.176000pt;}
._20_c01156{width:276.800000pt;}
.fs3_c01156{font-size:42.666667pt;}
.fs1_c01156{font-size:50.666667pt;}
.fs2_c01156{font-size:58.666667pt;}
.fs0_c01156{font-size:64.000000pt;}
.y0_c01156{bottom:0.000000pt;}
.y1f_c01156{bottom:2.760000pt;}
.y1e_c01156{bottom:6.425204pt;}
.y1d_c01156{bottom:36.786667pt;}
.y1c_c01156{bottom:63.586667pt;}
.y1b_c01156{bottom:88.520000pt;}
.y1a_c01156{bottom:108.253333pt;}
.y19_c01156{bottom:130.386667pt;}
.y18_c01156{bottom:153.853333pt;}
.y17_c01156{bottom:173.986667pt;}
.y16_c01156{bottom:197.320000pt;}
.y15_c01156{bottom:218.920000pt;}
.y14_c01156{bottom:240.520000pt;}
.y13_c01156{bottom:266.120000pt;}
.y12_c01156{bottom:287.586667pt;}
.y11_c01156{bottom:309.186667pt;}
.y10_c01156{bottom:332.120000pt;}
.yf_c01156{bottom:353.053333pt;}
.ye_c01156{bottom:374.920000pt;}
.yd_c01156{bottom:396.520000pt;}
.yc_c01156{bottom:418.520000pt;}
.yb_c01156{bottom:438.920000pt;}
.ya_c01156{bottom:462.520000pt;}
.y9_c01156{bottom:483.586667pt;}
.y8_c01156{bottom:504.920000pt;}
.y7_c01156{bottom:527.986667pt;}
.y6_c01156{bottom:549.186667pt;}
.y5_c01156{bottom:570.920000pt;}
.y4_c01156{bottom:593.053333pt;}
.y3_c01156{bottom:615.586667pt;}
.y2_c01156{bottom:637.186667pt;}
.y1_c01156{bottom:660.253333pt;}
.h4_c01156{height:11.733399pt;}
.h5_c01156{height:38.937500pt;}
.h3_c01156{height:74.278646pt;}
.h2_c01156{height:81.031250pt;}
.h0_c01156{height:702.466667pt;}
.h1_c01156{height:702.666667pt;}
.w1_c01156{width:93.222667pt;}
.w0_c01156{width:494.666667pt;}
.x0_c01156{left:0.000000pt;}
.x7_c01156{left:34.800000pt;}
.x6_c01156{left:36.000000pt;}
.x5_c01156{left:36.933333pt;}
.x3_c01156{left:38.133333pt;}
.x4_c01156{left:39.333333pt;}
.x2_c01156{left:41.066667pt;}
.x1_c01156{left:178.400000pt;}
.x9_c01156{left:204.501546pt;}
.x8_c01156{left:260.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b18278f0c9215710195d3d9b.woff2')format("woff");}.ff1_c01157{font-family:ff1_c01157;line-height:1.284180;font-style:normal;font-weight:normal;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_c1c4a2fdc679f37a8d9d4734.woff2')format("woff");}.ff2_c01157{font-family:ff2_c01157;line-height:1.284668;font-style:normal;font-weight:normal;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_925e509266a512ecac701936.woff2')format("woff");}.ff3_c01157{font-family:ff3_c01157;line-height:1.568848;font-style:normal;font-weight:normal;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_5f8f8a7dce451fa2e83e8d1b.woff2')format("woff");}.ff4_c01157{font-family:ff4_c01157;line-height:1.575000;font-style:normal;font-weight:normal;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_4942485e85da59f95b4c0761.woff2')format("woff");}.ff5_c01157{font-family:ff5_c01157;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01157{font-family:ff6_c01157;line-height:1.219238;font-style: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);}
.v0_c01157{vertical-align:0.000000px;}
.ls3_c01157{letter-spacing:0.000000px;}
.ls4_c01157{letter-spacing:6.000000px;}
.ls1_c01157{letter-spacing:8.988000px;}
.ls2_c01157{letter-spacing:11.988000px;}
.ls0_c01157{letter-spacing:13.788000px;}
.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:-33.192000px;}
.ws1_c01157{word-spacing:0.000000px;}
._a_c01157{margin-left:-12.456000px;}
._14_c01157{margin-left:-10.152000px;}
._9_c01157{margin-left:-7.848000px;}
._12_c01157{margin-left:-5.616000px;}
._b_c01157{margin-left:-4.104000px;}
._e_c01157{margin-left:-2.460000px;}
._6_c01157{margin-left:-1.128000px;}
._8_c01157{width:1.104000px;}
._5_c01157{width:2.268000px;}
._4_c01157{width:3.864000px;}
._1_c01157{width:5.460000px;}
._3_c01157{width:6.888000px;}
._c_c01157{width:7.896000px;}
._0_c01157{width:9.324000px;}
._2_c01157{width:10.416000px;}
._d_c01157{width:12.156000px;}
._7_c01157{width:13.740000px;}
._10_c01157{width:15.396000px;}
._13_c01157{width:19.404000px;}
._11_c01157{width:20.628000px;}
._f_c01157{width:22.524000px;}
._15_c01157{width:26.448000px;}
._16_c01157{width:46.068000px;}
.fc2_c01157{color:transparent;}
.fc1_c01157{color:rgb(128,128,128);}
.fc0_c01157{color:rgb(0,0,0);}
.fs5_c01157{font-size:48.000000px;}
.fs3_c01157{font-size:57.000000px;}
.fs2_c01157{font-size:63.000000px;}
.fs4_c01157{font-size:69.000000px;}
.fs1_c01157{font-size:72.000000px;}
.fs0_c01157{font-size:84.000000px;}
.y0_c01157{bottom:0.000000px;}
.y1e_c01157{bottom:3.105000px;}
.y1d_c01157{bottom:7.228371px;}
.y1c_c01157{bottom:69.165000px;}
.y1b_c01157{bottom:90.765000px;}
.y1a_c01157{bottom:116.565000px;}
.y19_c01157{bottom:141.765000px;}
.y18_c01157{bottom:167.115000px;}
.y17_c01157{bottom:193.365000px;}
.y16_c01157{bottom:218.715000px;}
.y15_c01157{bottom:242.415000px;}
.y14_c01157{bottom:269.415000px;}
.y13_c01157{bottom:293.715000px;}
.y12_c01157{bottom:317.565000px;}
.y11_c01157{bottom:343.215000px;}
.y10_c01157{bottom:366.915000px;}
.yf_c01157{bottom:392.265000px;}
.ye_c01157{bottom:417.915000px;}
.yd_c01157{bottom:440.865000px;}
.yc_c01157{bottom:464.865000px;}
.yb_c01157{bottom:490.365000px;}
.ya_c01157{bottom:515.115000px;}
.y9_c01157{bottom:540.015000px;}
.y8_c01157{bottom:564.765000px;}
.y7_c01157{bottom:589.965000px;}
.y6_c01157{bottom:615.015000px;}
.y5_c01157{bottom:639.915000px;}
.y4_c01157{bottom:664.515000px;}
.y3_c01157{bottom:689.265000px;}
.y2_c01157{bottom:714.465000px;}
.y1_c01157{bottom:740.565000px;}
.h4_c01157{height:13.200074px;}
.h5_c01157{height:43.804688px;}
.h2_c01157{height:82.441406px;}
.h3_c01157{height:91.160156px;}
.h1_c01157{height:795.750000px;}
.h0_c01157{height:795.975000px;}
.w2_c01157{width:104.875500px;}
.w0_c01157{width:540.525000px;}
.w1_c01157{width:540.750000px;}
.x0_c01157{left:0.000000px;}
.x6_c01157{left:36.750000px;}
.x3_c01157{left:113.400000px;}
.x2_c01157{left:114.450000px;}
.x4_c01157{left:115.800000px;}
.x5_c01157{left:116.850000px;}
.x7_c01157{left:118.500000px;}
.x8_c01157{left:222.076767px;}
.x1_c01157{left:236.550000px;}
@media print{
.v0_c01157{vertical-align:0.000000pt;}
.ls3_c01157{letter-spacing:0.000000pt;}
.ls4_c01157{letter-spacing:5.333333pt;}
.ls1_c01157{letter-spacing:7.989333pt;}
.ls2_c01157{letter-spacing:10.656000pt;}
.ls0_c01157{letter-spacing:12.256000pt;}
.ws0_c01157{word-spacing:-29.504000pt;}
.ws1_c01157{word-spacing:0.000000pt;}
._a_c01157{margin-left:-11.072000pt;}
._14_c01157{margin-left:-9.024000pt;}
._9_c01157{margin-left:-6.976000pt;}
._12_c01157{margin-left:-4.992000pt;}
._b_c01157{margin-left:-3.648000pt;}
._e_c01157{margin-left:-2.186667pt;}
._6_c01157{margin-left:-1.002667pt;}
._8_c01157{width:0.981333pt;}
._5_c01157{width:2.016000pt;}
._4_c01157{width:3.434667pt;}
._1_c01157{width:4.853333pt;}
._3_c01157{width:6.122667pt;}
._c_c01157{width:7.018667pt;}
._0_c01157{width:8.288000pt;}
._2_c01157{width:9.258667pt;}
._d_c01157{width:10.805333pt;}
._7_c01157{width:12.213333pt;}
._10_c01157{width:13.685333pt;}
._13_c01157{width:17.248000pt;}
._11_c01157{width:18.336000pt;}
._f_c01157{width:20.021333pt;}
._15_c01157{width:23.509333pt;}
._16_c01157{width:40.949333pt;}
.fs5_c01157{font-size:42.666667pt;}
.fs3_c01157{font-size:50.666667pt;}
.fs2_c01157{font-size:56.000000pt;}
.fs4_c01157{font-size:61.333333pt;}
.fs1_c01157{font-size:64.000000pt;}
.fs0_c01157{font-size:74.666667pt;}
.y0_c01157{bottom:0.000000pt;}
.y1e_c01157{bottom:2.760000pt;}
.y1d_c01157{bottom:6.425219pt;}
.y1c_c01157{bottom:61.480000pt;}
.y1b_c01157{bottom:80.680000pt;}
.y1a_c01157{bottom:103.613333pt;}
.y19_c01157{bottom:126.013333pt;}
.y18_c01157{bottom:148.546667pt;}
.y17_c01157{bottom:171.880000pt;}
.y16_c01157{bottom:194.413333pt;}
.y15_c01157{bottom:215.480000pt;}
.y14_c01157{bottom:239.480000pt;}
.y13_c01157{bottom:261.080000pt;}
.y12_c01157{bottom:282.280000pt;}
.y11_c01157{bottom:305.080000pt;}
.y10_c01157{bottom:326.146667pt;}
.yf_c01157{bottom:348.680000pt;}
.ye_c01157{bottom:371.480000pt;}
.yd_c01157{bottom:391.880000pt;}
.yc_c01157{bottom:413.213333pt;}
.yb_c01157{bottom:435.880000pt;}
.ya_c01157{bottom:457.880000pt;}
.y9_c01157{bottom:480.013333pt;}
.y8_c01157{bottom:502.013333pt;}
.y7_c01157{bottom:524.413333pt;}
.y6_c01157{bottom:546.680000pt;}
.y5_c01157{bottom:568.813333pt;}
.y4_c01157{bottom:590.680000pt;}
.y3_c01157{bottom:612.680000pt;}
.y2_c01157{bottom:635.080000pt;}
.y1_c01157{bottom:658.280000pt;}
.h4_c01157{height:11.733399pt;}
.h5_c01157{height:38.937500pt;}
.h2_c01157{height:73.281250pt;}
.h3_c01157{height:81.031250pt;}
.h1_c01157{height:707.333333pt;}
.h0_c01157{height:707.533333pt;}
.w2_c01157{width:93.222667pt;}
.w0_c01157{width:480.466667pt;}
.w1_c01157{width:480.666667pt;}
.x0_c01157{left:0.000000pt;}
.x6_c01157{left:32.666667pt;}
.x3_c01157{left:100.800000pt;}
.x2_c01157{left:101.733333pt;}
.x4_c01157{left:102.933333pt;}
.x5_c01157{left:103.866667pt;}
.x7_c01157{left:105.333333pt;}
.x8_c01157{left:197.401571pt;}
.x1_c01157{left:210.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dc10df4940cb4dda3b4f1cd1.woff2')format("woff");}.ff1_c01158{font-family:ff1_c01158;line-height:1.480469;font-style:normal;font-weight:normal;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_77b22dffd112692043d623fb.woff2')format("woff");}.ff2_c01158{font-family:ff2_c01158;line-height:1.568848;font-style:normal;font-weight:normal;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_15b073e6be8766935635dcaa.woff2')format("woff");}.ff3_c01158{font-family:ff3_c01158;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01158;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01158{font-family:ff4_c01158;line-height:1.219238;font-style: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;}
.ls2_c01158{letter-spacing:0.000000px;}
.ls1_c01158{letter-spacing:9.000000px;}
.ls0_c01158{letter-spacing:267.648000px;}
.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;}
}
.ws1_c01158{word-spacing:-17.352000px;}
.ws0_c01158{word-spacing:-9.084000px;}
.ws2_c01158{word-spacing:0.000000px;}
._2_c01158{margin-left:-19.776000px;}
._19_c01158{margin-left:-15.264000px;}
._12_c01158{margin-left:-12.780000px;}
._11_c01158{margin-left:-11.592000px;}
._1c_c01158{margin-left:-10.080000px;}
._14_c01158{margin-left:-8.979000px;}
._13_c01158{margin-left:-7.314000px;}
._3_c01158{margin-left:-6.240000px;}
._1_c01158{margin-left:-4.608000px;}
._15_c01158{margin-left:-3.249000px;}
._0_c01158{margin-left:-2.208000px;}
._f_c01158{margin-left:-1.173000px;}
._8_c01158{width:2.001000px;}
._6_c01158{width:3.726000px;}
._4_c01158{width:4.830000px;}
._7_c01158{width:6.141000px;}
._5_c01158{width:7.314000px;}
._1a_c01158{width:8.364000px;}
._a_c01158{width:9.384000px;}
._c_c01158{width:10.557000px;}
._d_c01158{width:11.661000px;}
._b_c01158{width:13.179000px;}
._9_c01158{width:14.283000px;}
._1b_c01158{width:16.314000px;}
._10_c01158{width:18.561000px;}
._18_c01158{width:27.876000px;}
._e_c01158{width:38.916000px;}
._16_c01158{width:101.982000px;}
._17_c01158{width:251.298000px;}
._1d_c01158{width:322.584000px;}
.fc2_c01158{color:transparent;}
.fc1_c01158{color:rgb(128,128,128);}
.fc0_c01158{color:rgb(0,0,0);}
.fs4_c01158{font-size:48.000000px;}
.fs3_c01158{font-size:69.000000px;}
.fs1_c01158{font-size:72.000000px;}
.fs2_c01158{font-size:84.000000px;}
.fs0_c01158{font-size:96.000000px;}
.y0_c01158{bottom:0.000000px;}
.y1f_c01158{bottom:3.105000px;}
.y1e_c01158{bottom:7.228371px;}
.y1d_c01158{bottom:41.265000px;}
.y1c_c01158{bottom:68.865000px;}
.y1b_c01158{bottom:94.815000px;}
.y1a_c01158{bottom:117.915000px;}
.y19_c01158{bottom:143.565000px;}
.y18_c01158{bottom:170.115000px;}
.y17_c01158{bottom:192.465000px;}
.y16_c01158{bottom:219.015000px;}
.y15_c01158{bottom:245.115000px;}
.y14_c01158{bottom:270.765000px;}
.y13_c01158{bottom:295.365000px;}
.y12_c01158{bottom:320.265000px;}
.y11_c01158{bottom:345.315000px;}
.y10_c01158{bottom:368.265000px;}
.yf_c01158{bottom:393.165000px;}
.ye_c01158{bottom:418.515000px;}
.yd_c01158{bottom:442.215000px;}
.yc_c01158{bottom:467.565000px;}
.yb_c01158{bottom:491.715000px;}
.ya_c01158{bottom:516.165000px;}
.y9_c01158{bottom:541.065000px;}
.y8_c01158{bottom:564.765000px;}
.y7_c01158{bottom:589.965000px;}
.y6_c01158{bottom:615.015000px;}
.y5_c01158{bottom:639.615000px;}
.y4_c01158{bottom:664.665000px;}
.y3_c01158{bottom:688.965000px;}
.y2_c01158{bottom:714.165000px;}
.y1_c01158{bottom:739.815000px;}
.h5_c01158{height:13.200074px;}
.h6_c01158{height:43.804688px;}
.h3_c01158{height:87.361816px;}
.h4_c01158{height:91.160156px;}
.h2_c01158{height:112.359375px;}
.h1_c01158{height:783.750000px;}
.h0_c01158{height:783.825000px;}
.w2_c01158{width:104.875500px;}
.w1_c01158{width:541.500000px;}
.w0_c01158{width:541.650000px;}
.x0_c01158{left:0.000000px;}
.x5_c01158{left:40.500000px;}
.x2_c01158{left:42.300000px;}
.x3_c01158{left:44.850000px;}
.x4_c01158{left:46.500000px;}
.x1_c01158{left:201.150000px;}
.x7_c01158{left:222.639267px;}
.x6_c01158{left:251.700000px;}
@media print{
.v0_c01158{vertical-align:0.000000pt;}
.ls2_c01158{letter-spacing:0.000000pt;}
.ls1_c01158{letter-spacing:8.000000pt;}
.ls0_c01158{letter-spacing:237.909333pt;}
.ws1_c01158{word-spacing:-15.424000pt;}
.ws0_c01158{word-spacing:-8.074667pt;}
.ws2_c01158{word-spacing:0.000000pt;}
._2_c01158{margin-left:-17.578667pt;}
._19_c01158{margin-left:-13.568000pt;}
._12_c01158{margin-left:-11.360000pt;}
._11_c01158{margin-left:-10.304000pt;}
._1c_c01158{margin-left:-8.960000pt;}
._14_c01158{margin-left:-7.981333pt;}
._13_c01158{margin-left:-6.501333pt;}
._3_c01158{margin-left:-5.546667pt;}
._1_c01158{margin-left:-4.096000pt;}
._15_c01158{margin-left:-2.888000pt;}
._0_c01158{margin-left:-1.962667pt;}
._f_c01158{margin-left:-1.042667pt;}
._8_c01158{width:1.778667pt;}
._6_c01158{width:3.312000pt;}
._4_c01158{width:4.293333pt;}
._7_c01158{width:5.458667pt;}
._5_c01158{width:6.501333pt;}
._1a_c01158{width:7.434667pt;}
._a_c01158{width:8.341333pt;}
._c_c01158{width:9.384000pt;}
._d_c01158{width:10.365333pt;}
._b_c01158{width:11.714667pt;}
._9_c01158{width:12.696000pt;}
._1b_c01158{width:14.501333pt;}
._10_c01158{width:16.498667pt;}
._18_c01158{width:24.778667pt;}
._e_c01158{width:34.592000pt;}
._16_c01158{width:90.650667pt;}
._17_c01158{width:223.376000pt;}
._1d_c01158{width:286.741333pt;}
.fs4_c01158{font-size:42.666667pt;}
.fs3_c01158{font-size:61.333333pt;}
.fs1_c01158{font-size:64.000000pt;}
.fs2_c01158{font-size:74.666667pt;}
.fs0_c01158{font-size:85.333333pt;}
.y0_c01158{bottom:0.000000pt;}
.y1f_c01158{bottom:2.760000pt;}
.y1e_c01158{bottom:6.425219pt;}
.y1d_c01158{bottom:36.680000pt;}
.y1c_c01158{bottom:61.213333pt;}
.y1b_c01158{bottom:84.280000pt;}
.y1a_c01158{bottom:104.813333pt;}
.y19_c01158{bottom:127.613333pt;}
.y18_c01158{bottom:151.213333pt;}
.y17_c01158{bottom:171.080000pt;}
.y16_c01158{bottom:194.680000pt;}
.y15_c01158{bottom:217.880000pt;}
.y14_c01158{bottom:240.680000pt;}
.y13_c01158{bottom:262.546667pt;}
.y12_c01158{bottom:284.680000pt;}
.y11_c01158{bottom:306.946667pt;}
.y10_c01158{bottom:327.346667pt;}
.yf_c01158{bottom:349.480000pt;}
.ye_c01158{bottom:372.013333pt;}
.yd_c01158{bottom:393.080000pt;}
.yc_c01158{bottom:415.613333pt;}
.yb_c01158{bottom:437.080000pt;}
.ya_c01158{bottom:458.813333pt;}
.y9_c01158{bottom:480.946667pt;}
.y8_c01158{bottom:502.013333pt;}
.y7_c01158{bottom:524.413333pt;}
.y6_c01158{bottom:546.680000pt;}
.y5_c01158{bottom:568.546667pt;}
.y4_c01158{bottom:590.813333pt;}
.y3_c01158{bottom:612.413333pt;}
.y2_c01158{bottom:634.813333pt;}
.y1_c01158{bottom:657.613333pt;}
.h5_c01158{height:11.733399pt;}
.h6_c01158{height:38.937500pt;}
.h3_c01158{height:77.654948pt;}
.h4_c01158{height:81.031250pt;}
.h2_c01158{height:99.875000pt;}
.h1_c01158{height:696.666667pt;}
.h0_c01158{height:696.733333pt;}
.w2_c01158{width:93.222667pt;}
.w1_c01158{width:481.333333pt;}
.w0_c01158{width:481.466667pt;}
.x0_c01158{left:0.000000pt;}
.x5_c01158{left:36.000000pt;}
.x2_c01158{left:37.600000pt;}
.x3_c01158{left:39.866667pt;}
.x4_c01158{left:41.333333pt;}
.x1_c01158{left:178.800000pt;}
.x7_c01158{left:197.901571pt;}
.x6_c01158{left:223.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1f97acd3be4ceeabbb945b66.woff2')format("woff");}.ff1_c01159{font-family:ff1_c01159;line-height:1.568848;font-style:normal;font-weight:normal;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_5ff7cd5f71bb3d423b076e44.woff2')format("woff");}.ff2_c01159{font-family:ff2_c01159;line-height:1.480469;font-style:normal;font-weight:normal;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_9e70a0fef9a1e414612353dd.woff2')format("woff");}.ff3_c01159{font-family:ff3_c01159;line-height:1.284668;font-style:normal;font-weight:normal;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_b6621aee014a7939c83eacfb.woff2')format("woff");}.ff4_c01159{font-family:ff4_c01159;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01159;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01159{font-family:ff5_c01159;line-height:1.219238;font-style: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;}
.ls1_c01159{letter-spacing:0.000000px;}
.ls0_c01159{letter-spacing:4.494000px;}
.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:-17.352000px;}
.ws1_c01159{word-spacing:-16.629000px;}
.ws2_c01159{word-spacing:-14.460000px;}
.ws3_c01159{word-spacing:-12.724800px;}
.ws4_c01159{word-spacing:0.000000px;}
._1d_c01159{margin-left:-20.523000px;}
._1a_c01159{margin-left:-17.580000px;}
._1b_c01159{margin-left:-16.563000px;}
._16_c01159{margin-left:-13.143000px;}
._18_c01159{margin-left:-11.544000px;}
._19_c01159{margin-left:-8.460000px;}
._17_c01159{margin-left:-6.765000px;}
._11_c01159{margin-left:-4.653000px;}
._f_c01159{margin-left:-3.003000px;}
._c_c01159{margin-left:-1.212000px;}
._10_c01159{width:1.089000px;}
._8_c01159{width:2.310000px;}
._4_c01159{width:4.104000px;}
._9_c01159{width:5.244000px;}
._5_c01159{width:6.264000px;}
._6_c01159{width:7.632000px;}
._7_c01159{width:9.063000px;}
._3_c01159{width:10.368000px;}
._a_c01159{width:12.396000px;}
._d_c01159{width:13.608000px;}
._b_c01159{width:14.775000px;}
._e_c01159{width:15.813000px;}
._12_c01159{width:18.786000px;}
._15_c01159{width:19.803000px;}
._14_c01159{width:23.838000px;}
._1c_c01159{width:26.736000px;}
._1_c01159{width:29.448000px;}
._13_c01159{width:31.878000px;}
._0_c01159{width:72.576000px;}
._1e_c01159{width:254.430000px;}
._2_c01159{width:286.560000px;}
.fc2_c01159{color:transparent;}
.fc1_c01159{color:rgb(128,128,128);}
.fc0_c01159{color:rgb(0,0,0);}
.fs9_c01159{font-size:48.000000px;}
.fs5_c01159{font-size:52.800000px;}
.fs4_c01159{font-size:60.000000px;}
.fs2_c01159{font-size:63.000000px;}
.fs6_c01159{font-size:66.000000px;}
.fs1_c01159{font-size:69.000000px;}
.fs0_c01159{font-size:72.000000px;}
.fs3_c01159{font-size:75.000000px;}
.fs7_c01159{font-size:87.000000px;}
.fs8_c01159{font-size:93.000000px;}
.y0_c01159{bottom:0.000000px;}
.y1f_c01159{bottom:3.105000px;}
.y1e_c01159{bottom:7.228355px;}
.y1d_c01159{bottom:49.485000px;}
.y1c_c01159{bottom:69.435000px;}
.y1b_c01159{bottom:92.085000px;}
.y1a_c01159{bottom:120.135000px;}
.y19_c01159{bottom:145.335000px;}
.y18_c01159{bottom:170.085000px;}
.y17_c01159{bottom:195.285000px;}
.y16_c01159{bottom:221.385000px;}
.y15_c01159{bottom:245.685000px;}
.y14_c01159{bottom:271.335000px;}
.y13_c01159{bottom:296.685000px;}
.y12_c01159{bottom:321.585000px;}
.y11_c01159{bottom:346.635000px;}
.y10_c01159{bottom:370.785000px;}
.yf_c01159{bottom:395.535000px;}
.ye_c01159{bottom:420.735000px;}
.yd_c01159{bottom:444.735000px;}
.yc_c01159{bottom:467.985000px;}
.yb_c01159{bottom:493.035000px;}
.ya_c01159{bottom:517.935000px;}
.y9_c01159{bottom:542.685000px;}
.y8_c01159{bottom:567.585000px;}
.y7_c01159{bottom:592.635000px;}
.y6_c01159{bottom:617.235000px;}
.y5_c01159{bottom:642.285000px;}
.y4_c01159{bottom:667.485000px;}
.y3_c01159{bottom:692.235000px;}
.y2_c01159{bottom:716.835000px;}
.y1_c01159{bottom:742.785000px;}
.h6_c01159{height:13.200074px;}
.h7_c01159{height:43.804688px;}
.h3_c01159{height:87.361816px;}
.h2_c01159{height:91.160156px;}
.h5_c01159{height:108.848145px;}
.h4_c01159{height:110.151855px;}
.h1_c01159{height:786.000000px;}
.h0_c01159{height:786.225000px;}
.w2_c01159{width:104.875500px;}
.w0_c01159{width:525.450000px;}
.w1_c01159{width:525.750000px;}
.x0_c01159{left:0.000000px;}
.x4_c01159{left:35.400000px;}
.x1_c01159{left:101.250000px;}
.x3_c01159{left:103.200000px;}
.x2_c01159{left:105.000000px;}
.x6_c01159{left:214.539230px;}
.x5_c01159{left:364.800000px;}
@media print{
.v0_c01159{vertical-align:0.000000pt;}
.ls1_c01159{letter-spacing:0.000000pt;}
.ls0_c01159{letter-spacing:3.994667pt;}
.ws0_c01159{word-spacing:-15.424000pt;}
.ws1_c01159{word-spacing:-14.781333pt;}
.ws2_c01159{word-spacing:-12.853333pt;}
.ws3_c01159{word-spacing:-11.310933pt;}
.ws4_c01159{word-spacing:0.000000pt;}
._1d_c01159{margin-left:-18.242667pt;}
._1a_c01159{margin-left:-15.626667pt;}
._1b_c01159{margin-left:-14.722667pt;}
._16_c01159{margin-left:-11.682667pt;}
._18_c01159{margin-left:-10.261333pt;}
._19_c01159{margin-left:-7.520000pt;}
._17_c01159{margin-left:-6.013333pt;}
._11_c01159{margin-left:-4.136000pt;}
._f_c01159{margin-left:-2.669333pt;}
._c_c01159{margin-left:-1.077333pt;}
._10_c01159{width:0.968000pt;}
._8_c01159{width:2.053333pt;}
._4_c01159{width:3.648000pt;}
._9_c01159{width:4.661333pt;}
._5_c01159{width:5.568000pt;}
._6_c01159{width:6.784000pt;}
._7_c01159{width:8.056000pt;}
._3_c01159{width:9.216000pt;}
._a_c01159{width:11.018667pt;}
._d_c01159{width:12.096000pt;}
._b_c01159{width:13.133333pt;}
._e_c01159{width:14.056000pt;}
._12_c01159{width:16.698667pt;}
._15_c01159{width:17.602667pt;}
._14_c01159{width:21.189333pt;}
._1c_c01159{width:23.765333pt;}
._1_c01159{width:26.176000pt;}
._13_c01159{width:28.336000pt;}
._0_c01159{width:64.512000pt;}
._1e_c01159{width:226.160000pt;}
._2_c01159{width:254.720000pt;}
.fs9_c01159{font-size:42.666667pt;}
.fs5_c01159{font-size:46.933333pt;}
.fs4_c01159{font-size:53.333333pt;}
.fs2_c01159{font-size:56.000000pt;}
.fs6_c01159{font-size:58.666667pt;}
.fs1_c01159{font-size:61.333333pt;}
.fs0_c01159{font-size:64.000000pt;}
.fs3_c01159{font-size:66.666667pt;}
.fs7_c01159{font-size:77.333333pt;}
.fs8_c01159{font-size:82.666667pt;}
.y0_c01159{bottom:0.000000pt;}
.y1f_c01159{bottom:2.760000pt;}
.y1e_c01159{bottom:6.425204pt;}
.y1d_c01159{bottom:43.986667pt;}
.y1c_c01159{bottom:61.720000pt;}
.y1b_c01159{bottom:81.853333pt;}
.y1a_c01159{bottom:106.786667pt;}
.y19_c01159{bottom:129.186667pt;}
.y18_c01159{bottom:151.186667pt;}
.y17_c01159{bottom:173.586667pt;}
.y16_c01159{bottom:196.786667pt;}
.y15_c01159{bottom:218.386667pt;}
.y14_c01159{bottom:241.186667pt;}
.y13_c01159{bottom:263.720000pt;}
.y12_c01159{bottom:285.853333pt;}
.y11_c01159{bottom:308.120000pt;}
.y10_c01159{bottom:329.586667pt;}
.yf_c01159{bottom:351.586667pt;}
.ye_c01159{bottom:373.986667pt;}
.yd_c01159{bottom:395.320000pt;}
.yc_c01159{bottom:415.986667pt;}
.yb_c01159{bottom:438.253333pt;}
.ya_c01159{bottom:460.386667pt;}
.y9_c01159{bottom:482.386667pt;}
.y8_c01159{bottom:504.520000pt;}
.y7_c01159{bottom:526.786667pt;}
.y6_c01159{bottom:548.653333pt;}
.y5_c01159{bottom:570.920000pt;}
.y4_c01159{bottom:593.320000pt;}
.y3_c01159{bottom:615.320000pt;}
.y2_c01159{bottom:637.186667pt;}
.y1_c01159{bottom:660.253333pt;}
.h6_c01159{height:11.733399pt;}
.h7_c01159{height:38.937500pt;}
.h3_c01159{height:77.654948pt;}
.h2_c01159{height:81.031250pt;}
.h5_c01159{height:96.753906pt;}
.h4_c01159{height:97.912760pt;}
.h1_c01159{height:698.666667pt;}
.h0_c01159{height:698.866667pt;}
.w2_c01159{width:93.222667pt;}
.w0_c01159{width:467.066667pt;}
.w1_c01159{width:467.333333pt;}
.x0_c01159{left:0.000000pt;}
.x4_c01159{left:31.466667pt;}
.x1_c01159{left:90.000000pt;}
.x3_c01159{left:91.733333pt;}
.x2_c01159{left:93.333333pt;}
.x6_c01159{left:190.701538pt;}
.x5_c01159{left:324.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c59b284a6e09682ebc9b143e.woff2')format("woff");}.ff1_c01160{font-family:ff1_c01160;line-height:1.480469;font-style:normal;font-weight:normal;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_c869b153214e8b676c694cbd.woff2')format("woff");}.ff2_c01160{font-family:ff2_c01160;line-height:1.568848;font-style:normal;font-weight:normal;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_13539289671f606aebc8c54f.woff2')format("woff");}.ff3_c01160{font-family:ff3_c01160;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01160;src:url('chunks/assets/font_003326f2897b14dce04bb2d8.woff2')format("woff");}.ff4_c01160{font-family:ff4_c01160;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01160;src:url('chunks/assets/font_15c6cd5f47c6082cf87e848b.woff2')format("woff");}.ff5_c01160{font-family:ff5_c01160;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01160;src:url('chunks/assets/font_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff6_c01160{font-family:ff6_c01160;line-height:1.284180;font-style:normal;font-weight: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_c01160;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c01160{font-family:ff7_c01160;line-height:1.219238;font-style: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;}
.ls5_c01160{letter-spacing:0.000000px;}
.ls1_c01160{letter-spacing:2.400000px;}
.ls3_c01160{letter-spacing:9.300000px;}
.ls4_c01160{letter-spacing:11.100000px;}
.ls0_c01160{letter-spacing:12.588000px;}
.ls2_c01160{letter-spacing:32.304000px;}
.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;}
}
.ws3_c01160{word-spacing:-42.873000px;}
.ws0_c01160{word-spacing:-33.192000px;}
.ws4_c01160{word-spacing:-21.000000px;}
.ws2_c01160{word-spacing:-16.608000px;}
.ws5_c01160{word-spacing:0.000000px;}
.ws1_c01160{word-spacing:3.672000px;}
._24_c01160{margin-left:-34.404000px;}
._2a_c01160{margin-left:-24.702000px;}
._2b_c01160{margin-left:-21.492000px;}
._28_c01160{margin-left:-17.829000px;}
._1a_c01160{margin-left:-15.837000px;}
._25_c01160{margin-left:-13.104000px;}
._1b_c01160{margin-left:-10.161000px;}
._26_c01160{margin-left:-8.793000px;}
._14_c01160{margin-left:-7.200000px;}
._13_c01160{margin-left:-5.616000px;}
._12_c01160{margin-left:-4.464000px;}
._16_c01160{margin-left:-3.024000px;}
._15_c01160{margin-left:-2.016000px;}
._d_c01160{margin-left:-1.008000px;}
._0_c01160{width:1.584000px;}
._2_c01160{width:3.528000px;}
._1_c01160{width:5.184000px;}
._8_c01160{width:6.336000px;}
._a_c01160{width:7.992000px;}
._5_c01160{width:9.288000px;}
._17_c01160{width:10.344000px;}
._4_c01160{width:11.592000px;}
._f_c01160{width:12.600000px;}
._b_c01160{width:13.704000px;}
._9_c01160{width:15.120000px;}
._10_c01160{width:16.200000px;}
._29_c01160{width:18.531000px;}
._7_c01160{width:19.584000px;}
._e_c01160{width:21.024000px;}
._18_c01160{width:23.112000px;}
._c_c01160{width:24.576000px;}
._21_c01160{width:25.992000px;}
._1f_c01160{width:29.160000px;}
._1e_c01160{width:33.696000px;}
._1d_c01160{width:35.136000px;}
._2c_c01160{width:37.344000px;}
._20_c01160{width:39.816000px;}
._1c_c01160{width:44.136000px;}
._22_c01160{width:46.008000px;}
._23_c01160{width:51.696000px;}
._11_c01160{width:110.712000px;}
._19_c01160{width:272.106000px;}
._3_c01160{width:299.544000px;}
._6_c01160{width:307.800000px;}
._27_c01160{width:337.656000px;}
.fc2_c01160{color:transparent;}
.fc1_c01160{color:rgb(128,128,128);}
.fc0_c01160{color:rgb(0,0,0);}
.fs7_c01160{font-size:48.000000px;}
.fs2_c01160{font-size:63.000000px;}
.fs6_c01160{font-size:69.000000px;}
.fs0_c01160{font-size:72.000000px;}
.fs4_c01160{font-size:78.000000px;}
.fs3_c01160{font-size:81.000000px;}
.fs1_c01160{font-size:84.000000px;}
.fs5_c01160{font-size:93.000000px;}
.y0_c01160{bottom:0.000000px;}
.y1e_c01160{bottom:3.105000px;}
.y1d_c01160{bottom:7.228357px;}
.y1c_c01160{bottom:70.980000px;}
.y1b_c01160{bottom:97.980000px;}
.y1a_c01160{bottom:121.830000px;}
.y19_c01160{bottom:147.180000px;}
.y18_c01160{bottom:169.380000px;}
.y17_c01160{bottom:197.430000px;}
.y16_c01160{bottom:220.680000px;}
.y15_c01160{bottom:250.080000px;}
.y14_c01160{bottom:274.080000px;}
.y13_c01160{bottom:298.380000px;}
.y12_c01160{bottom:322.980000px;}
.y11_c01160{bottom:345.630000px;}
.y10_c01160{bottom:369.630000px;}
.yf_c01160{bottom:394.830000px;}
.ye_c01160{bottom:420.630000px;}
.yd_c01160{bottom:442.530000px;}
.yc_c01160{bottom:469.080000px;}
.yb_c01160{bottom:493.380000px;}
.ya_c01160{bottom:518.730000px;}
.y9_c01160{bottom:542.130000px;}
.y8_c01160{bottom:567.030000px;}
.y7_c01160{bottom:591.630000px;}
.y6_c01160{bottom:617.580000px;}
.y5_c01160{bottom:642.030000px;}
.y4_c01160{bottom:667.530000px;}
.y3_c01160{bottom:692.280000px;}
.y2_c01160{bottom:715.530000px;}
.y1_c01160{bottom:743.130000px;}
.h7_c01160{height:13.200074px;}
.h8_c01160{height:43.804688px;}
.h5_c01160{height:78.609375px;}
.h4_c01160{height:81.632812px;}
.h3_c01160{height:82.441406px;}
.h2_c01160{height:91.160156px;}
.h6_c01160{height:108.848145px;}
.h1_c01160{height:783.000000px;}
.h0_c01160{height:783.300000px;}
.w2_c01160{width:104.875500px;}
.w0_c01160{width:538.125000px;}
.w1_c01160{width:538.500000px;}
.x0_c01160{left:0.000000px;}
.x2_c01160{left:40.200000px;}
.x3_c01160{left:41.250000px;}
.x4_c01160{left:42.900000px;}
.x9_c01160{left:43.950000px;}
.x5_c01160{left:45.150000px;}
.x6_c01160{left:46.200000px;}
.x7_c01160{left:47.850000px;}
.x8_c01160{left:48.900000px;}
.x1_c01160{left:159.150000px;}
.xa_c01160{left:220.876740px;}
@media print{
.v0_c01160{vertical-align:0.000000pt;}
.ls5_c01160{letter-spacing:0.000000pt;}
.ls1_c01160{letter-spacing:2.133333pt;}
.ls3_c01160{letter-spacing:8.266667pt;}
.ls4_c01160{letter-spacing:9.866667pt;}
.ls0_c01160{letter-spacing:11.189333pt;}
.ls2_c01160{letter-spacing:28.714667pt;}
.ws3_c01160{word-spacing:-38.109333pt;}
.ws0_c01160{word-spacing:-29.504000pt;}
.ws4_c01160{word-spacing:-18.666667pt;}
.ws2_c01160{word-spacing:-14.762667pt;}
.ws5_c01160{word-spacing:0.000000pt;}
.ws1_c01160{word-spacing:3.264000pt;}
._24_c01160{margin-left:-30.581333pt;}
._2a_c01160{margin-left:-21.957333pt;}
._2b_c01160{margin-left:-19.104000pt;}
._28_c01160{margin-left:-15.848000pt;}
._1a_c01160{margin-left:-14.077333pt;}
._25_c01160{margin-left:-11.648000pt;}
._1b_c01160{margin-left:-9.032000pt;}
._26_c01160{margin-left:-7.816000pt;}
._14_c01160{margin-left:-6.400000pt;}
._13_c01160{margin-left:-4.992000pt;}
._12_c01160{margin-left:-3.968000pt;}
._16_c01160{margin-left:-2.688000pt;}
._15_c01160{margin-left:-1.792000pt;}
._d_c01160{margin-left:-0.896000pt;}
._0_c01160{width:1.408000pt;}
._2_c01160{width:3.136000pt;}
._1_c01160{width:4.608000pt;}
._8_c01160{width:5.632000pt;}
._a_c01160{width:7.104000pt;}
._5_c01160{width:8.256000pt;}
._17_c01160{width:9.194667pt;}
._4_c01160{width:10.304000pt;}
._f_c01160{width:11.200000pt;}
._b_c01160{width:12.181333pt;}
._9_c01160{width:13.440000pt;}
._10_c01160{width:14.400000pt;}
._29_c01160{width:16.472000pt;}
._7_c01160{width:17.408000pt;}
._e_c01160{width:18.688000pt;}
._18_c01160{width:20.544000pt;}
._c_c01160{width:21.845333pt;}
._21_c01160{width:23.104000pt;}
._1f_c01160{width:25.920000pt;}
._1e_c01160{width:29.952000pt;}
._1d_c01160{width:31.232000pt;}
._2c_c01160{width:33.194667pt;}
._20_c01160{width:35.392000pt;}
._1c_c01160{width:39.232000pt;}
._22_c01160{width:40.896000pt;}
._23_c01160{width:45.952000pt;}
._11_c01160{width:98.410667pt;}
._19_c01160{width:241.872000pt;}
._3_c01160{width:266.261333pt;}
._6_c01160{width:273.600000pt;}
._27_c01160{width:300.138667pt;}
.fs7_c01160{font-size:42.666667pt;}
.fs2_c01160{font-size:56.000000pt;}
.fs6_c01160{font-size:61.333333pt;}
.fs0_c01160{font-size:64.000000pt;}
.fs4_c01160{font-size:69.333333pt;}
.fs3_c01160{font-size:72.000000pt;}
.fs1_c01160{font-size:74.666667pt;}
.fs5_c01160{font-size:82.666667pt;}
.y0_c01160{bottom:0.000000pt;}
.y1e_c01160{bottom:2.760000pt;}
.y1d_c01160{bottom:6.425206pt;}
.y1c_c01160{bottom:63.093333pt;}
.y1b_c01160{bottom:87.093333pt;}
.y1a_c01160{bottom:108.293333pt;}
.y19_c01160{bottom:130.826667pt;}
.y18_c01160{bottom:150.560000pt;}
.y17_c01160{bottom:175.493333pt;}
.y16_c01160{bottom:196.160000pt;}
.y15_c01160{bottom:222.293333pt;}
.y14_c01160{bottom:243.626667pt;}
.y13_c01160{bottom:265.226667pt;}
.y12_c01160{bottom:287.093333pt;}
.y11_c01160{bottom:307.226667pt;}
.y10_c01160{bottom:328.560000pt;}
.yf_c01160{bottom:350.960000pt;}
.ye_c01160{bottom:373.893333pt;}
.yd_c01160{bottom:393.360000pt;}
.yc_c01160{bottom:416.960000pt;}
.yb_c01160{bottom:438.560000pt;}
.ya_c01160{bottom:461.093333pt;}
.y9_c01160{bottom:481.893333pt;}
.y8_c01160{bottom:504.026667pt;}
.y7_c01160{bottom:525.893333pt;}
.y6_c01160{bottom:548.960000pt;}
.y5_c01160{bottom:570.693333pt;}
.y4_c01160{bottom:593.360000pt;}
.y3_c01160{bottom:615.360000pt;}
.y2_c01160{bottom:636.026667pt;}
.y1_c01160{bottom:660.560000pt;}
.h7_c01160{height:11.733399pt;}
.h8_c01160{height:38.937500pt;}
.h5_c01160{height:69.875000pt;}
.h4_c01160{height:72.562500pt;}
.h3_c01160{height:73.281250pt;}
.h2_c01160{height:81.031250pt;}
.h6_c01160{height:96.753906pt;}
.h1_c01160{height:696.000000pt;}
.h0_c01160{height:696.266667pt;}
.w2_c01160{width:93.222667pt;}
.w0_c01160{width:478.333333pt;}
.w1_c01160{width:478.666667pt;}
.x0_c01160{left:0.000000pt;}
.x2_c01160{left:35.733333pt;}
.x3_c01160{left:36.666667pt;}
.x4_c01160{left:38.133333pt;}
.x9_c01160{left:39.066667pt;}
.x5_c01160{left:40.133333pt;}
.x6_c01160{left:41.066667pt;}
.x7_c01160{left:42.533333pt;}
.x8_c01160{left:43.466667pt;}
.x1_c01160{left:141.466667pt;}
.xa_c01160{left:196.334880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_de269e8c8bc5b2c3bece2af7.woff2')format("woff");}.ff1_c01161{font-family:ff1_c01161;line-height:1.480469;font-style:normal;font-weight:normal;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_08586d6c56e6fd6a8ad767dd.woff2')format("woff");}.ff2_c01161{font-family:ff2_c01161;line-height:1.568848;font-style:normal;font-weight:normal;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_10b53fd48e5c406f4728d44c.woff2')format("woff");}.ff3_c01161{font-family:ff3_c01161;line-height:1.575000;font-style:normal;font-weight:normal;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_780d735c22aa732d6a908cb0.woff2')format("woff");}.ff4_c01161{font-family:ff4_c01161;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01161;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c01161{font-family:ff5_c01161;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01161;src:url('chunks/assets/font_37d8c023f4199d5410885bb5.woff2')format("woff");}.ff6_c01161{font-family:ff6_c01161;line-height:1.284180;font-style:normal;font-weight: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_c01161;src:url('chunks/assets/font_387c627d2b7108ee453cc6ad.woff2')format("woff");}.ff7_c01161{font-family:ff7_c01161;line-height:1.592000;font-style:normal;font-weight: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_c01161;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff8_c01161{font-family:ff8_c01161;line-height:1.219238;font-style: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;}
.ls6_c01161{letter-spacing:-9.000000px;}
.ls7_c01161{letter-spacing:-6.000000px;}
.ls4_c01161{letter-spacing:-3.000000px;}
.ls5_c01161{letter-spacing:0.000000px;}
.ls0_c01161{letter-spacing:2.505000px;}
.ls8_c01161{letter-spacing:12.000000px;}
.ls1_c01161{letter-spacing:15.033000px;}
.ls3_c01161{letter-spacing:33.171000px;}
.ls2_c01161{letter-spacing:417.150000px;}
.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:-53.856000px;}
.ws6_c01161{word-spacing:-28.629000px;}
.ws3_c01161{word-spacing:-28.500000px;}
.ws2_c01161{word-spacing:-23.250000px;}
.ws1_c01161{word-spacing:-16.629000px;}
.ws5_c01161{word-spacing:-7.629000px;}
.ws4_c01161{word-spacing:-0.150000px;}
.ws7_c01161{word-spacing:0.000000px;}
._14_c01161{margin-left:-32.172000px;}
._1f_c01161{margin-left:-29.586000px;}
._27_c01161{margin-left:-20.475000px;}
._28_c01161{margin-left:-16.800000px;}
._1a_c01161{margin-left:-15.657000px;}
._26_c01161{margin-left:-14.055000px;}
._23_c01161{margin-left:-12.918000px;}
._13_c01161{margin-left:-11.745000px;}
._1b_c01161{margin-left:-10.041000px;}
._10_c01161{margin-left:-8.280000px;}
._f_c01161{margin-left:-6.417000px;}
._15_c01161{margin-left:-5.274000px;}
._11_c01161{margin-left:-4.245000px;}
._12_c01161{margin-left:-2.478000px;}
._c_c01161{margin-left:-1.002000px;}
._a_c01161{width:1.491000px;}
._6_c01161{width:2.898000px;}
._9_c01161{width:3.939000px;}
._7_c01161{width:5.037000px;}
._8_c01161{width:6.651000px;}
._1_c01161{width:7.980000px;}
._3_c01161{width:9.000000px;}
._d_c01161{width:10.818000px;}
._e_c01161{width:12.006000px;}
._4_c01161{width:13.500000px;}
._19_c01161{width:15.522000px;}
._2_c01161{width:16.620000px;}
._0_c01161{width:18.960000px;}
._5_c01161{width:20.160000px;}
._22_c01161{width:21.297000px;}
._16_c01161{width:23.508000px;}
._25_c01161{width:34.341000px;}
._20_c01161{width:42.612000px;}
._1d_c01161{width:62.784000px;}
._2b_c01161{width:66.114000px;}
._1c_c01161{width:86.394000px;}
._2a_c01161{width:112.308000px;}
._1e_c01161{width:130.941000px;}
._18_c01161{width:136.299000px;}
._24_c01161{width:144.204000px;}
._29_c01161{width:157.098000px;}
._17_c01161{width:210.459000px;}
._b_c01161{width:286.377000px;}
._21_c01161{width:306.930000px;}
._2c_c01161{width:997.188000px;}
.fc2_c01161{color:transparent;}
.fc1_c01161{color:rgb(128,128,128);}
.fc0_c01161{color:rgb(0,0,0);}
.fs7_c01161{font-size:48.000000px;}
.fs5_c01161{font-size:57.000000px;}
.fs0_c01161{font-size:60.000000px;}
.fs1_c01161{font-size:69.000000px;}
.fs4_c01161{font-size:72.000000px;}
.fs3_c01161{font-size:93.000000px;}
.fs2_c01161{font-size:102.000000px;}
.fs6_c01161{font-size:150.000000px;}
.y0_c01161{bottom:0.000000px;}
.y1f_c01161{bottom:3.105000px;}
.y1e_c01161{bottom:7.228355px;}
.y1d_c01161{bottom:51.285000px;}
.y1c_c01161{bottom:74.235000px;}
.y1b_c01161{bottom:100.485000px;}
.y1a_c01161{bottom:125.235000px;}
.y19_c01161{bottom:149.385000px;}
.y18_c01161{bottom:173.685000px;}
.y17_c01161{bottom:198.135000px;}
.y16_c01161{bottom:227.685000px;}
.y15_c01161{bottom:252.135000px;}
.y14_c01161{bottom:276.285000px;}
.y13_c01161{bottom:300.735000px;}
.y12_c01161{bottom:326.685000px;}
.y11_c01161{bottom:351.285000px;}
.y10_c01161{bottom:375.585000px;}
.yf_c01161{bottom:400.485000px;}
.ye_c01161{bottom:425.835000px;}
.yd_c01161{bottom:451.185000px;}
.yc_c01161{bottom:474.135000px;}
.yb_c01161{bottom:499.185000px;}
.ya_c01161{bottom:524.685000px;}
.y9_c01161{bottom:549.435000px;}
.y8_c01161{bottom:574.035000px;}
.y7_c01161{bottom:598.635000px;}
.y6_c01161{bottom:623.985000px;}
.y5_c01161{bottom:649.335000px;}
.y4_c01161{bottom:673.635000px;}
.y3_c01161{bottom:698.985000px;}
.y2_c01161{bottom:724.185000px;}
.y1_c01161{bottom:750.135000px;}
.h8_c01161{height:13.200074px;}
.h9_c01161{height:43.804688px;}
.h2_c01161{height:75.966797px;}
.h3_c01161{height:87.361816px;}
.h7_c01161{height:91.160156px;}
.h5_c01161{height:93.726562px;}
.h4_c01161{height:108.834000px;}
.h6_c01161{height:162.600000px;}
.h0_c01161{height:798.375000px;}
.h1_c01161{height:798.750000px;}
.w2_c01161{width:104.875500px;}
.w1_c01161{width:531.750000px;}
.w0_c01161{width:531.900000px;}
.x0_c01161{left:0.000000px;}
.xb_c01161{left:24.300000px;}
.xa_c01161{left:25.650000px;}
.x9_c01161{left:27.300000px;}
.x8_c01161{left:28.650000px;}
.xc_c01161{left:29.700000px;}
.x3_c01161{left:31.800000px;}
.xd_c01161{left:69.750000px;}
.x2_c01161{left:105.600000px;}
.x5_c01161{left:107.550000px;}
.x7_c01161{left:108.900000px;}
.x6_c01161{left:110.700000px;}
.x4_c01161{left:111.750000px;}
.xe_c01161{left:217.764267px;}
.x1_c01161{left:229.500000px;}
@media print{
.v0_c01161{vertical-align:0.000000pt;}
.ls6_c01161{letter-spacing:-8.000000pt;}
.ls7_c01161{letter-spacing:-5.333333pt;}
.ls4_c01161{letter-spacing:-2.666667pt;}
.ls5_c01161{letter-spacing:0.000000pt;}
.ls0_c01161{letter-spacing:2.226667pt;}
.ls8_c01161{letter-spacing:10.666667pt;}
.ls1_c01161{letter-spacing:13.362667pt;}
.ls3_c01161{letter-spacing:29.485333pt;}
.ls2_c01161{letter-spacing:370.800000pt;}
.ws0_c01161{word-spacing:-47.872000pt;}
.ws6_c01161{word-spacing:-25.448000pt;}
.ws3_c01161{word-spacing:-25.333333pt;}
.ws2_c01161{word-spacing:-20.666667pt;}
.ws1_c01161{word-spacing:-14.781333pt;}
.ws5_c01161{word-spacing:-6.781333pt;}
.ws4_c01161{word-spacing:-0.133333pt;}
.ws7_c01161{word-spacing:0.000000pt;}
._14_c01161{margin-left:-28.597333pt;}
._1f_c01161{margin-left:-26.298667pt;}
._27_c01161{margin-left:-18.200000pt;}
._28_c01161{margin-left:-14.933333pt;}
._1a_c01161{margin-left:-13.917333pt;}
._26_c01161{margin-left:-12.493333pt;}
._23_c01161{margin-left:-11.482667pt;}
._13_c01161{margin-left:-10.440000pt;}
._1b_c01161{margin-left:-8.925333pt;}
._10_c01161{margin-left:-7.360000pt;}
._f_c01161{margin-left:-5.704000pt;}
._15_c01161{margin-left:-4.688000pt;}
._11_c01161{margin-left:-3.773333pt;}
._12_c01161{margin-left:-2.202667pt;}
._c_c01161{margin-left:-0.890667pt;}
._a_c01161{width:1.325333pt;}
._6_c01161{width:2.576000pt;}
._9_c01161{width:3.501333pt;}
._7_c01161{width:4.477333pt;}
._8_c01161{width:5.912000pt;}
._1_c01161{width:7.093333pt;}
._3_c01161{width:8.000000pt;}
._d_c01161{width:9.616000pt;}
._e_c01161{width:10.672000pt;}
._4_c01161{width:12.000000pt;}
._19_c01161{width:13.797333pt;}
._2_c01161{width:14.773333pt;}
._0_c01161{width:16.853333pt;}
._5_c01161{width:17.920000pt;}
._22_c01161{width:18.930667pt;}
._16_c01161{width:20.896000pt;}
._25_c01161{width:30.525333pt;}
._20_c01161{width:37.877333pt;}
._1d_c01161{width:55.808000pt;}
._2b_c01161{width:58.768000pt;}
._1c_c01161{width:76.794667pt;}
._2a_c01161{width:99.829333pt;}
._1e_c01161{width:116.392000pt;}
._18_c01161{width:121.154667pt;}
._24_c01161{width:128.181333pt;}
._29_c01161{width:139.642667pt;}
._17_c01161{width:187.074667pt;}
._b_c01161{width:254.557333pt;}
._21_c01161{width:272.826667pt;}
._2c_c01161{width:886.389333pt;}
.fs7_c01161{font-size:42.666667pt;}
.fs5_c01161{font-size:50.666667pt;}
.fs0_c01161{font-size:53.333333pt;}
.fs1_c01161{font-size:61.333333pt;}
.fs4_c01161{font-size:64.000000pt;}
.fs3_c01161{font-size:82.666667pt;}
.fs2_c01161{font-size:90.666667pt;}
.fs6_c01161{font-size:133.333333pt;}
.y0_c01161{bottom:0.000000pt;}
.y1f_c01161{bottom:2.760000pt;}
.y1e_c01161{bottom:6.425204pt;}
.y1d_c01161{bottom:45.586667pt;}
.y1c_c01161{bottom:65.986667pt;}
.y1b_c01161{bottom:89.320000pt;}
.y1a_c01161{bottom:111.320000pt;}
.y19_c01161{bottom:132.786667pt;}
.y18_c01161{bottom:154.386667pt;}
.y17_c01161{bottom:176.120000pt;}
.y16_c01161{bottom:202.386667pt;}
.y15_c01161{bottom:224.120000pt;}
.y14_c01161{bottom:245.586667pt;}
.y13_c01161{bottom:267.320000pt;}
.y12_c01161{bottom:290.386667pt;}
.y11_c01161{bottom:312.253333pt;}
.y10_c01161{bottom:333.853333pt;}
.yf_c01161{bottom:355.986667pt;}
.ye_c01161{bottom:378.520000pt;}
.yd_c01161{bottom:401.053333pt;}
.yc_c01161{bottom:421.453333pt;}
.yb_c01161{bottom:443.720000pt;}
.ya_c01161{bottom:466.386667pt;}
.y9_c01161{bottom:488.386667pt;}
.y8_c01161{bottom:510.253333pt;}
.y7_c01161{bottom:532.120000pt;}
.y6_c01161{bottom:554.653333pt;}
.y5_c01161{bottom:577.186667pt;}
.y4_c01161{bottom:598.786667pt;}
.y3_c01161{bottom:621.320000pt;}
.y2_c01161{bottom:643.720000pt;}
.y1_c01161{bottom:666.786667pt;}
.h8_c01161{height:11.733399pt;}
.h9_c01161{height:38.937500pt;}
.h2_c01161{height:67.526042pt;}
.h3_c01161{height:77.654948pt;}
.h7_c01161{height:81.031250pt;}
.h5_c01161{height:83.312500pt;}
.h4_c01161{height:96.741333pt;}
.h6_c01161{height:144.533333pt;}
.h0_c01161{height:709.666667pt;}
.h1_c01161{height:710.000000pt;}
.w2_c01161{width:93.222667pt;}
.w1_c01161{width:472.666667pt;}
.w0_c01161{width:472.800000pt;}
.x0_c01161{left:0.000000pt;}
.xb_c01161{left:21.600000pt;}
.xa_c01161{left:22.800000pt;}
.x9_c01161{left:24.266667pt;}
.x8_c01161{left:25.466667pt;}
.xc_c01161{left:26.400000pt;}
.x3_c01161{left:28.266667pt;}
.xd_c01161{left:62.000000pt;}
.x2_c01161{left:93.866667pt;}
.x5_c01161{left:95.600000pt;}
.x7_c01161{left:96.800000pt;}
.x6_c01161{left:98.400000pt;}
.x4_c01161{left:99.333333pt;}
.xe_c01161{left:193.568237pt;}
.x1_c01161{left:204.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_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_17cf5e17032b7ebdabaf613c.woff2')format("woff");}.ff1_c01162{font-family:ff1_c01162;line-height:1.480469;font-style:normal;font-weight:normal;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_fee44c9b7bd79c3aed666ce4.woff2')format("woff");}.ff2_c01162{font-family:ff2_c01162;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01162;src:url('chunks/assets/font_4b535349ee2fa0e36843891e.woff2')format("woff");}.ff3_c01162{font-family:ff3_c01162;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01162;src:url('chunks/assets/font_d2388a1d5dfe8c8a2f45ed04.woff2')format("woff");}.ff4_c01162{font-family:ff4_c01162;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01162;src:url('chunks/assets/font_c9a803451b086f6638724450.woff2')format("woff");}.ff5_c01162{font-family:ff5_c01162;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01162;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01162{font-family:ff6_c01162;line-height:1.219238;font-style: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;}
.ls3_c01162{letter-spacing:-6.000000px;}
.ls2_c01162{letter-spacing:0.000000px;}
.ls0_c01162{letter-spacing:0.588000px;}
.ls1_c01162{letter-spacing:5.988000px;}
.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:-55.485000px;}
.ws2_c01162{word-spacing:-30.051000px;}
.ws1_c01162{word-spacing:-17.352000px;}
.ws3_c01162{word-spacing:0.000000px;}
._13_c01162{margin-left:-16.986000px;}
._15_c01162{margin-left:-15.030000px;}
._f_c01162{margin-left:-9.216000px;}
._e_c01162{margin-left:-7.488000px;}
._10_c01162{margin-left:-5.370000px;}
._6_c01162{margin-left:-4.278000px;}
._11_c01162{margin-left:-2.883000px;}
._d_c01162{margin-left:-1.152000px;}
._0_c01162{width:1.539000px;}
._1_c01162{width:2.835000px;}
._7_c01162{width:3.888000px;}
._8_c01162{width:5.328000px;}
._a_c01162{width:6.579000px;}
._4_c01162{width:7.626000px;}
._3_c01162{width:8.649000px;}
._b_c01162{width:10.254000px;}
._5_c01162{width:11.346000px;}
._18_c01162{width:12.390000px;}
._14_c01162{width:13.815000px;}
._c_c01162{width:14.979000px;}
._12_c01162{width:16.326000px;}
._16_c01162{width:22.869000px;}
._2_c01162{width:264.921000px;}
._9_c01162{width:400.464000px;}
._17_c01162{width:525.753000px;}
.fc2_c01162{color:transparent;}
.fc1_c01162{color:rgb(128,128,128);}
.fc0_c01162{color:rgb(0,0,0);}
.fs4_c01162{font-size:48.000000px;}
.fs3_c01162{font-size:63.000000px;}
.fs2_c01162{font-size:72.000000px;}
.fs0_c01162{font-size:81.000000px;}
.fs1_c01162{font-size:93.000000px;}
.y0_c01162{bottom:0.000000px;}
.y1f_c01162{bottom:3.105000px;}
.y1e_c01162{bottom:7.228357px;}
.y1d_c01162{bottom:39.480000px;}
.y1c_c01162{bottom:64.530000px;}
.y1b_c01162{bottom:92.430000px;}
.y1a_c01162{bottom:116.880000px;}
.y19_c01162{bottom:141.480000px;}
.y18_c01162{bottom:168.780000px;}
.y17_c01162{bottom:192.330000px;}
.y16_c01162{bottom:217.680000px;}
.y15_c01162{bottom:242.430000px;}
.y14_c01162{bottom:266.580000px;}
.y13_c01162{bottom:291.930000px;}
.y12_c01162{bottom:317.280000px;}
.y11_c01162{bottom:340.530000px;}
.y10_c01162{bottom:365.130000px;}
.yf_c01162{bottom:388.830000px;}
.ye_c01162{bottom:413.130000px;}
.yd_c01162{bottom:438.480000px;}
.yc_c01162{bottom:463.830000px;}
.yb_c01162{bottom:486.630000px;}
.ya_c01162{bottom:510.630000px;}
.y9_c01162{bottom:534.630000px;}
.y8_c01162{bottom:559.680000px;}
.y7_c01162{bottom:584.280000px;}
.y6_c01162{bottom:608.580000px;}
.y5_c01162{bottom:633.930000px;}
.y4_c01162{bottom:658.080000px;}
.y3_c01162{bottom:681.780000px;}
.y2_c01162{bottom:709.080000px;}
.y1_c01162{bottom:733.830000px;}
.h5_c01162{height:13.200074px;}
.h6_c01162{height:43.804688px;}
.h3_c01162{height:91.160156px;}
.h2_c01162{height:94.803223px;}
.h4_c01162{height:102.555176px;}
.h1_c01162{height:776.250000px;}
.h0_c01162{height:776.550000px;}
.w2_c01162{width:104.875500px;}
.w0_c01162{width:532.950000px;}
.w1_c01162{width:533.250000px;}
.x0_c01162{left:0.000000px;}
.x2_c01162{left:51.000000px;}
.x3_c01162{left:53.100000px;}
.x4_c01162{left:54.300000px;}
.x6_c01162{left:55.350000px;}
.x5_c01162{left:56.400000px;}
.x7_c01162{left:81.000000px;}
.x1_c01162{left:170.100000px;}
.xa_c01162{left:218.289230px;}
.x8_c01162{left:289.950000px;}
.x9_c01162{left:375.300000px;}
@media print{
.v0_c01162{vertical-align:0.000000pt;}
.ls3_c01162{letter-spacing:-5.333333pt;}
.ls2_c01162{letter-spacing:0.000000pt;}
.ls0_c01162{letter-spacing:0.522667pt;}
.ls1_c01162{letter-spacing:5.322667pt;}
.ws0_c01162{word-spacing:-49.320000pt;}
.ws2_c01162{word-spacing:-26.712000pt;}
.ws1_c01162{word-spacing:-15.424000pt;}
.ws3_c01162{word-spacing:0.000000pt;}
._13_c01162{margin-left:-15.098667pt;}
._15_c01162{margin-left:-13.360000pt;}
._f_c01162{margin-left:-8.192000pt;}
._e_c01162{margin-left:-6.656000pt;}
._10_c01162{margin-left:-4.773333pt;}
._6_c01162{margin-left:-3.802667pt;}
._11_c01162{margin-left:-2.562667pt;}
._d_c01162{margin-left:-1.024000pt;}
._0_c01162{width:1.368000pt;}
._1_c01162{width:2.520000pt;}
._7_c01162{width:3.456000pt;}
._8_c01162{width:4.736000pt;}
._a_c01162{width:5.848000pt;}
._4_c01162{width:6.778667pt;}
._3_c01162{width:7.688000pt;}
._b_c01162{width:9.114667pt;}
._5_c01162{width:10.085333pt;}
._18_c01162{width:11.013333pt;}
._14_c01162{width:12.280000pt;}
._c_c01162{width:13.314667pt;}
._12_c01162{width:14.512000pt;}
._16_c01162{width:20.328000pt;}
._2_c01162{width:235.485333pt;}
._9_c01162{width:355.968000pt;}
._17_c01162{width:467.336000pt;}
.fs4_c01162{font-size:42.666667pt;}
.fs3_c01162{font-size:56.000000pt;}
.fs2_c01162{font-size:64.000000pt;}
.fs0_c01162{font-size:72.000000pt;}
.fs1_c01162{font-size:82.666667pt;}
.y0_c01162{bottom:0.000000pt;}
.y1f_c01162{bottom:2.760000pt;}
.y1e_c01162{bottom:6.425206pt;}
.y1d_c01162{bottom:35.093333pt;}
.y1c_c01162{bottom:57.360000pt;}
.y1b_c01162{bottom:82.160000pt;}
.y1a_c01162{bottom:103.893333pt;}
.y19_c01162{bottom:125.760000pt;}
.y18_c01162{bottom:150.026667pt;}
.y17_c01162{bottom:170.960000pt;}
.y16_c01162{bottom:193.493333pt;}
.y15_c01162{bottom:215.493333pt;}
.y14_c01162{bottom:236.960000pt;}
.y13_c01162{bottom:259.493333pt;}
.y12_c01162{bottom:282.026667pt;}
.y11_c01162{bottom:302.693333pt;}
.y10_c01162{bottom:324.560000pt;}
.yf_c01162{bottom:345.626667pt;}
.ye_c01162{bottom:367.226667pt;}
.yd_c01162{bottom:389.760000pt;}
.yc_c01162{bottom:412.293333pt;}
.yb_c01162{bottom:432.560000pt;}
.ya_c01162{bottom:453.893333pt;}
.y9_c01162{bottom:475.226667pt;}
.y8_c01162{bottom:497.493333pt;}
.y7_c01162{bottom:519.360000pt;}
.y6_c01162{bottom:540.960000pt;}
.y5_c01162{bottom:563.493333pt;}
.y4_c01162{bottom:584.960000pt;}
.y3_c01162{bottom:606.026667pt;}
.y2_c01162{bottom:630.293333pt;}
.y1_c01162{bottom:652.293333pt;}
.h5_c01162{height:11.733399pt;}
.h6_c01162{height:38.937500pt;}
.h3_c01162{height:81.031250pt;}
.h2_c01162{height:84.269531pt;}
.h4_c01162{height:91.160156pt;}
.h1_c01162{height:690.000000pt;}
.h0_c01162{height:690.266667pt;}
.w2_c01162{width:93.222667pt;}
.w0_c01162{width:473.733333pt;}
.w1_c01162{width:474.000000pt;}
.x0_c01162{left:0.000000pt;}
.x2_c01162{left:45.333333pt;}
.x3_c01162{left:47.200000pt;}
.x4_c01162{left:48.266667pt;}
.x6_c01162{left:49.200000pt;}
.x5_c01162{left:50.133333pt;}
.x7_c01162{left:72.000000pt;}
.x1_c01162{left:151.200000pt;}
.xa_c01162{left:194.034871pt;}
.x8_c01162{left:257.733333pt;}
.x9_c01162{left:333.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c3553c66dae67ca7f47b75d6.woff2')format("woff");}.ff1_c01163{font-family:ff1_c01163;line-height:1.568848;font-style:normal;font-weight:normal;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_24b8741624624dfabe777b5d.woff2')format("woff");}.ff2_c01163{font-family:ff2_c01163;line-height:1.575000;font-style:normal;font-weight:normal;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_12a1dc91895ff6c271dd6432.woff2')format("woff");}.ff3_c01163{font-family:ff3_c01163;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01163{font-family:ff4_c01163;line-height:1.219238;font-style: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);}
.v0_c01163{vertical-align:0.000000px;}
.ls2_c01163{letter-spacing:0.000000px;}
.ls1_c01163{letter-spacing:5.988000px;}
.ls3_c01163{letter-spacing:6.000000px;}
.ls0_c01163{letter-spacing:15.588000px;}
.ls4_c01163{letter-spacing:138.000000px;}
.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;}
}
.ws1_c01163{word-spacing:-30.051000px;}
.ws0_c01163{word-spacing:-17.352000px;}
.ws2_c01163{word-spacing:-0.057000px;}
.ws4_c01163{word-spacing:0.000000px;}
.ws3_c01163{word-spacing:3.876000px;}
._20_c01163{margin-left:-137.448000px;}
._1f_c01163{margin-left:-135.528000px;}
._21_c01163{margin-left:-133.488000px;}
._22_c01163{margin-left:-124.416000px;}
._a_c01163{margin-left:-21.672000px;}
._1a_c01163{margin-left:-16.248000px;}
._1c_c01163{margin-left:-15.192000px;}
._17_c01163{margin-left:-13.680000px;}
._16_c01163{margin-left:-12.600000px;}
._14_c01163{margin-left:-11.592000px;}
._18_c01163{margin-left:-10.464000px;}
._15_c01163{margin-left:-9.432000px;}
._11_c01163{margin-left:-8.280000px;}
._f_c01163{margin-left:-6.624000px;}
._10_c01163{margin-left:-5.184000px;}
._12_c01163{margin-left:-4.176000px;}
._3_c01163{margin-left:-2.520000px;}
._4_c01163{margin-left:-1.008000px;}
._5_c01163{width:1.080000px;}
._9_c01163{width:2.184000px;}
._2_c01163{width:3.384000px;}
._1_c01163{width:5.256000px;}
._c_c01163{width:6.264000px;}
._0_c01163{width:7.272000px;}
._6_c01163{width:8.496000px;}
._e_c01163{width:9.624000px;}
._8_c01163{width:11.016000px;}
._7_c01163{width:12.888000px;}
._1b_c01163{width:14.568000px;}
._26_c01163{width:15.624000px;}
._28_c01163{width:17.721000px;}
._24_c01163{width:19.296000px;}
._b_c01163{width:20.448000px;}
._25_c01163{width:22.344000px;}
._29_c01163{width:25.152000px;}
._d_c01163{width:26.568000px;}
._2c_c01163{width:34.791000px;}
._2a_c01163{width:42.288000px;}
._27_c01163{width:83.808000px;}
._1d_c01163{width:121.680000px;}
._19_c01163{width:134.496000px;}
._1e_c01163{width:155.532000px;}
._2b_c01163{width:291.576000px;}
._13_c01163{width:326.496000px;}
._23_c01163{width:550.656000px;}
.fc2_c01163{color:transparent;}
.fc1_c01163{color:rgb(128,128,128);}
.fc0_c01163{color:rgb(0,0,0);}
.fs3_c01163{font-size:33.000000px;}
.fs4_c01163{font-size:48.000000px;}
.fs2_c01163{font-size:57.000000px;}
.fs1_c01163{font-size:63.000000px;}
.fs0_c01163{font-size:72.000000px;}
.y0_c01163{bottom:0.000000px;}
.y1d_c01163{bottom:3.105000px;}
.y1c_c01163{bottom:7.228371px;}
.y1b_c01163{bottom:59.715000px;}
.y1a_c01163{bottom:81.465000px;}
.y19_c01163{bottom:111.465000px;}
.y18_c01163{bottom:137.715000px;}
.y17_c01163{bottom:158.715000px;}
.y16_c01163{bottom:187.965000px;}
.y15_c01163{bottom:211.965000px;}
.y14_c01163{bottom:237.015000px;}
.y13_c01163{bottom:264.015000px;}
.y12_c01163{bottom:291.015000px;}
.y11_c01163{bottom:316.965000px;}
.y10_c01163{bottom:338.865000px;}
.yf_c01163{bottom:364.965000px;}
.ye_c01163{bottom:388.215000px;}
.yd_c01163{bottom:408.015000px;}
.yc_c01163{bottom:434.415000px;}
.yb_c01163{bottom:459.465000px;}
.ya_c01163{bottom:485.715000px;}
.y9_c01163{bottom:508.965000px;}
.y8_c01163{bottom:535.665000px;}
.y7_c01163{bottom:559.965000px;}
.y6_c01163{bottom:584.865000px;}
.y5_c01163{bottom:609.165000px;}
.y4_c01163{bottom:633.615000px;}
.y3_c01163{bottom:656.865000px;}
.y2_c01163{bottom:684.915000px;}
.y1_c01163{bottom:709.215000px;}
.h4_c01163{height:13.200074px;}
.h5_c01163{height:43.804688px;}
.h3_c01163{height:72.168457px;}
.h2_c01163{height:91.160156px;}
.h0_c01163{height:786.525000px;}
.h1_c01163{height:786.750000px;}
.w2_c01163{width:104.875500px;}
.w0_c01163{width:541.875000px;}
.w1_c01163{width:542.250000px;}
.x0_c01163{left:0.000000px;}
.x3_c01163{left:21.150000px;}
.x7_c01163{left:28.050000px;}
.x2_c01163{left:85.350000px;}
.x8_c01163{left:90.150000px;}
.x4_c01163{left:100.200000px;}
.x1_c01163{left:101.550000px;}
.x5_c01163{left:102.600000px;}
.x6_c01163{left:133.200000px;}
.x9_c01163{left:222.751740px;}
@media print{
.v0_c01163{vertical-align:0.000000pt;}
.ls2_c01163{letter-spacing:0.000000pt;}
.ls1_c01163{letter-spacing:5.322667pt;}
.ls3_c01163{letter-spacing:5.333333pt;}
.ls0_c01163{letter-spacing:13.856000pt;}
.ls4_c01163{letter-spacing:122.666667pt;}
.ws1_c01163{word-spacing:-26.712000pt;}
.ws0_c01163{word-spacing:-15.424000pt;}
.ws2_c01163{word-spacing:-0.050667pt;}
.ws4_c01163{word-spacing:0.000000pt;}
.ws3_c01163{word-spacing:3.445333pt;}
._20_c01163{margin-left:-122.176000pt;}
._1f_c01163{margin-left:-120.469333pt;}
._21_c01163{margin-left:-118.656000pt;}
._22_c01163{margin-left:-110.592000pt;}
._a_c01163{margin-left:-19.264000pt;}
._1a_c01163{margin-left:-14.442667pt;}
._1c_c01163{margin-left:-13.504000pt;}
._17_c01163{margin-left:-12.160000pt;}
._16_c01163{margin-left:-11.200000pt;}
._14_c01163{margin-left:-10.304000pt;}
._18_c01163{margin-left:-9.301333pt;}
._15_c01163{margin-left:-8.384000pt;}
._11_c01163{margin-left:-7.360000pt;}
._f_c01163{margin-left:-5.888000pt;}
._10_c01163{margin-left:-4.608000pt;}
._12_c01163{margin-left:-3.712000pt;}
._3_c01163{margin-left:-2.240000pt;}
._4_c01163{margin-left:-0.896000pt;}
._5_c01163{width:0.960000pt;}
._9_c01163{width:1.941333pt;}
._2_c01163{width:3.008000pt;}
._1_c01163{width:4.672000pt;}
._c_c01163{width:5.568000pt;}
._0_c01163{width:6.464000pt;}
._6_c01163{width:7.552000pt;}
._e_c01163{width:8.554667pt;}
._8_c01163{width:9.792000pt;}
._7_c01163{width:11.456000pt;}
._1b_c01163{width:12.949333pt;}
._26_c01163{width:13.888000pt;}
._28_c01163{width:15.752000pt;}
._24_c01163{width:17.152000pt;}
._b_c01163{width:18.176000pt;}
._25_c01163{width:19.861333pt;}
._29_c01163{width:22.357333pt;}
._d_c01163{width:23.616000pt;}
._2c_c01163{width:30.925333pt;}
._2a_c01163{width:37.589333pt;}
._27_c01163{width:74.496000pt;}
._1d_c01163{width:108.160000pt;}
._19_c01163{width:119.552000pt;}
._1e_c01163{width:138.250667pt;}
._2b_c01163{width:259.178667pt;}
._13_c01163{width:290.218667pt;}
._23_c01163{width:489.472000pt;}
.fs3_c01163{font-size:29.333333pt;}
.fs4_c01163{font-size:42.666667pt;}
.fs2_c01163{font-size:50.666667pt;}
.fs1_c01163{font-size:56.000000pt;}
.fs0_c01163{font-size:64.000000pt;}
.y0_c01163{bottom:0.000000pt;}
.y1d_c01163{bottom:2.760000pt;}
.y1c_c01163{bottom:6.425219pt;}
.y1b_c01163{bottom:53.080000pt;}
.y1a_c01163{bottom:72.413333pt;}
.y19_c01163{bottom:99.080000pt;}
.y18_c01163{bottom:122.413333pt;}
.y17_c01163{bottom:141.080000pt;}
.y16_c01163{bottom:167.080000pt;}
.y15_c01163{bottom:188.413333pt;}
.y14_c01163{bottom:210.680000pt;}
.y13_c01163{bottom:234.680000pt;}
.y12_c01163{bottom:258.680000pt;}
.y11_c01163{bottom:281.746667pt;}
.y10_c01163{bottom:301.213333pt;}
.yf_c01163{bottom:324.413333pt;}
.ye_c01163{bottom:345.080000pt;}
.yd_c01163{bottom:362.680000pt;}
.yc_c01163{bottom:386.146667pt;}
.yb_c01163{bottom:408.413333pt;}
.ya_c01163{bottom:431.746667pt;}
.y9_c01163{bottom:452.413333pt;}
.y8_c01163{bottom:476.146667pt;}
.y7_c01163{bottom:497.746667pt;}
.y6_c01163{bottom:519.880000pt;}
.y5_c01163{bottom:541.480000pt;}
.y4_c01163{bottom:563.213333pt;}
.y3_c01163{bottom:583.880000pt;}
.y2_c01163{bottom:608.813333pt;}
.y1_c01163{bottom:630.413333pt;}
.h4_c01163{height:11.733399pt;}
.h5_c01163{height:38.937500pt;}
.h3_c01163{height:64.149740pt;}
.h2_c01163{height:81.031250pt;}
.h0_c01163{height:699.133333pt;}
.h1_c01163{height:699.333333pt;}
.w2_c01163{width:93.222667pt;}
.w0_c01163{width:481.666667pt;}
.w1_c01163{width:482.000000pt;}
.x0_c01163{left:0.000000pt;}
.x3_c01163{left:18.800000pt;}
.x7_c01163{left:24.933333pt;}
.x2_c01163{left:75.866667pt;}
.x8_c01163{left:80.133333pt;}
.x4_c01163{left:89.066667pt;}
.x1_c01163{left:90.266667pt;}
.x5_c01163{left:91.200000pt;}
.x6_c01163{left:118.400000pt;}
.x9_c01163{left:198.001546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_de5a9080f230c93807d56a2e.woff2')format("woff");}.ff1_c01164{font-family:ff1_c01164;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01164;src:url('chunks/assets/font_8601b970b1dfc5f5695d50aa.woff2')format("woff");}.ff2_c01164{font-family:ff2_c01164;line-height:1.284668;font-style:normal;font-weight:normal;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_21cfa03d77ca8128da114104.woff2')format("woff");}.ff3_c01164{font-family:ff3_c01164;line-height:1.568848;font-style:normal;font-weight:normal;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_f97924ab65b171d3eac34729.woff2')format("woff");}.ff4_c01164{font-family:ff4_c01164;line-height:1.284180;font-style:normal;font-weight:normal;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_a36b9dd716f14f2f0c45ca53.woff2')format("woff");}.ff5_c01164{font-family:ff5_c01164;line-height:1.284180;font-style:normal;font-weight:normal;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_e857543aaa740acfede445ac.woff2')format("woff");}.ff6_c01164{font-family:ff6_c01164;line-height:1.480469;font-style:normal;font-weight: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_c01164;src:url('chunks/assets/font_cb6fcddea340271f3ad0e15c.woff2')format("woff");}.ff7_c01164{font-family:ff7_c01164;line-height:1.568848;font-style:normal;font-weight: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_c01164;src:url('chunks/assets/font_59cf4f6606df033d924aa6fa.woff2')format("woff");}.ff8_c01164{font-family:ff8_c01164;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01164;src:url('chunks/assets/font_950f6e745a1b2dff8998577b.woff2')format("woff");}.ff9_c01164{font-family:ff9_c01164;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01164;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ffa_c01164{font-family:ffa_c01164;line-height:1.219238;font-style: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);}
.m1_c01164{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c01164{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01164{vertical-align:0.000000px;}
.ls9_c01164{letter-spacing:-24.000000px;}
.ls7_c01164{letter-spacing:-18.000000px;}
.ls6_c01164{letter-spacing:-9.000000px;}
.ls8_c01164{letter-spacing:-6.000000px;}
.ls4_c01164{letter-spacing:0.000000px;}
.ls3_c01164{letter-spacing:3.588000px;}
.ls5_c01164{letter-spacing:6.000000px;}
.ls2_c01164{letter-spacing:10.188000px;}
.ls0_c01164{letter-spacing:12.300000px;}
.ls1_c01164{letter-spacing:27.375000px;}
.sc__c01164{text-shadow:none;}
.sc0_c01164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01164{-webkit-text-stroke:0px transparent;}
.sc0_c01164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01164{word-spacing:-36.000000px;}
.ws9_c01164{word-spacing:-35.100000px;}
.ws4_c01164{word-spacing:-30.000000px;}
.ws3_c01164{word-spacing:-28.194000px;}
.ws6_c01164{word-spacing:-26.256000px;}
.ws0_c01164{word-spacing:-19.737000px;}
.ws2_c01164{word-spacing:-17.352000px;}
.ws7_c01164{word-spacing:-16.200000px;}
.ws5_c01164{word-spacing:-8.352000px;}
.wsa_c01164{word-spacing:0.000000px;}
.ws8_c01164{word-spacing:20.607000px;}
._1e_c01164{margin-left:-47.730000px;}
._2b_c01164{margin-left:-39.627000px;}
._2a_c01164{margin-left:-38.211000px;}
._26_c01164{margin-left:-35.523000px;}
._1b_c01164{margin-left:-33.522000px;}
._2d_c01164{margin-left:-31.968000px;}
._1d_c01164{margin-left:-30.636000px;}
._2c_c01164{margin-left:-29.469000px;}
._3_c01164{margin-left:-28.272000px;}
._2_c01164{margin-left:-26.040000px;}
._22_c01164{margin-left:-24.309000px;}
._19_c01164{margin-left:-23.199000px;}
._4_c01164{margin-left:-22.041000px;}
._1c_c01164{margin-left:-19.869000px;}
._23_c01164{margin-left:-18.693000px;}
._18_c01164{margin-left:-17.538000px;}
._1a_c01164{margin-left:-15.651000px;}
._8_c01164{margin-left:-13.650000px;}
._21_c01164{margin-left:-11.433000px;}
._10_c01164{margin-left:-9.504000px;}
._11_c01164{margin-left:-8.064000px;}
._6_c01164{margin-left:-6.150000px;}
._0_c01164{margin-left:-4.278000px;}
._7_c01164{margin-left:-2.775000px;}
._1_c01164{margin-left:-1.302000px;}
._b_c01164{width:1.215000px;}
._c_c01164{width:2.250000px;}
._a_c01164{width:3.591000px;}
._5_c01164{width:4.932000px;}
._16_c01164{width:6.018000px;}
._9_c01164{width:7.056000px;}
._d_c01164{width:8.385000px;}
._12_c01164{width:9.600000px;}
._13_c01164{width:11.091000px;}
._e_c01164{width:12.153000px;}
._28_c01164{width:14.292000px;}
._24_c01164{width:16.320000px;}
._38_c01164{width:17.406000px;}
._2f_c01164{width:18.489000px;}
._31_c01164{width:21.972000px;}
._37_c01164{width:24.384000px;}
._36_c01164{width:27.594000px;}
._39_c01164{width:34.404000px;}
._32_c01164{width:43.362000px;}
._3a_c01164{width:49.872000px;}
._14_c01164{width:56.220000px;}
._15_c01164{width:64.275000px;}
._33_c01164{width:69.285000px;}
._34_c01164{width:72.678000px;}
._29_c01164{width:89.379000px;}
._27_c01164{width:90.618000px;}
._f_c01164{width:121.719000px;}
._20_c01164{width:125.631000px;}
._35_c01164{width:208.167000px;}
._17_c01164{width:252.459000px;}
._1f_c01164{width:365.970000px;}
._25_c01164{width:390.999000px;}
._30_c01164{width:612.828000px;}
._2e_c01164{width:730.395000px;}
._3b_c01164{width:1171.752000px;}
.fc2_c01164{color:transparent;}
.fc1_c01164{color:rgb(128,128,128);}
.fc0_c01164{color:rgb(0,0,0);}
.fs7_c01164{font-size:24.000000px;}
.fsd_c01164{font-size:48.000000px;}
.fs2_c01164{font-size:57.000000px;}
.fsc_c01164{font-size:60.000000px;}
.fsb_c01164{font-size:63.000000px;}
.fs9_c01164{font-size:66.000000px;}
.fs3_c01164{font-size:72.000000px;}
.fs1_c01164{font-size:75.000000px;}
.fs4_c01164{font-size:78.000000px;}
.fs0_c01164{font-size:93.000000px;}
.fs8_c01164{font-size:96.000000px;}
.fs5_c01164{font-size:111.000000px;}
.fsa_c01164{font-size:117.000000px;}
.fs6_c01164{font-size:120.000000px;}
.y0_c01164{bottom:0.000000px;}
.y1e_c01164{bottom:3.105000px;}
.y1d_c01164{bottom:7.228355px;}
.y1c_c01164{bottom:13.035000px;}
.y1b_c01164{bottom:42.735000px;}
.y1a_c01164{bottom:69.135000px;}
.y19_c01164{bottom:95.085000px;}
.y18_c01164{bottom:118.035000px;}
.y17_c01164{bottom:166.335000px;}
.y16_c01164{bottom:191.685000px;}
.y15_c01164{bottom:223.635000px;}
.y14_c01164{bottom:245.985000px;}
.y13_c01164{bottom:272.685000px;}
.y12_c01164{bottom:297.585000px;}
.y11_c01164{bottom:315.885000px;}
.y10_c01164{bottom:373.485000px;}
.yf_c01164{bottom:393.735000px;}
.ye_c01164{bottom:415.785000px;}
.yd_c01164{bottom:442.485000px;}
.yc_c01164{bottom:465.285000px;}
.yb_c01164{bottom:491.685000px;}
.ya_c01164{bottom:517.935000px;}
.y9_c01164{bottom:538.935000px;}
.y8_c01164{bottom:563.235000px;}
.y7_c01164{bottom:588.585000px;}
.y6_c01164{bottom:611.235000px;}
.y5_c01164{bottom:636.885000px;}
.y4_c01164{bottom:638.235000px;}
.y3_c01164{bottom:663.735000px;}
.y2_c01164{bottom:689.535000px;}
.y1_c01164{bottom:713.685000px;}
.hc_c01164{height:13.200074px;}
.hd_c01164{height:43.804688px;}
.h4_c01164{height:55.914551px;}
.h3_c01164{height:73.608398px;}
.hb_c01164{height:75.966797px;}
.h9_c01164{height:83.563477px;}
.h6_c01164{height:91.160156px;}
.h2_c01164{height:93.726562px;}
.h5_c01164{height:94.958496px;}
.h8_c01164{height:112.359375px;}
.ha_c01164{height:114.771973px;}
.h7_c01164{height:140.538574px;}
.h0_c01164{height:783.525000px;}
.h1_c01164{height:783.750000px;}
.w2_c01164{width:104.875500px;}
.w1_c01164{width:548.250000px;}
.w0_c01164{width:548.400000px;}
.x0_c01164{left:0.000000px;}
.xd_c01164{left:33.300000px;}
.xc_c01164{left:38.100000px;}
.xb_c01164{left:40.800000px;}
.xa_c01164{left:41.850000px;}
.x2_c01164{left:42.900000px;}
.x1_c01164{left:45.000000px;}
.x5_c01164{left:46.200000px;}
.x3_c01164{left:64.500000px;}
.xf_c01164{left:77.550000px;}
.x6_c01164{left:113.100000px;}
.xe_c01164{left:136.950000px;}
.x7_c01164{left:142.200000px;}
.x10_c01164{left:226.014267px;}
.x8_c01164{left:237.450000px;}
.x9_c01164{left:314.100000px;}
.x4_c01164{left:486.000000px;}
@media print{
.v0_c01164{vertical-align:0.000000pt;}
.ls9_c01164{letter-spacing:-21.333333pt;}
.ls7_c01164{letter-spacing:-16.000000pt;}
.ls6_c01164{letter-spacing:-8.000000pt;}
.ls8_c01164{letter-spacing:-5.333333pt;}
.ls4_c01164{letter-spacing:0.000000pt;}
.ls3_c01164{letter-spacing:3.189333pt;}
.ls5_c01164{letter-spacing:5.333333pt;}
.ls2_c01164{letter-spacing:9.056000pt;}
.ls0_c01164{letter-spacing:10.933333pt;}
.ls1_c01164{letter-spacing:24.333333pt;}
.ws1_c01164{word-spacing:-32.000000pt;}
.ws9_c01164{word-spacing:-31.200000pt;}
.ws4_c01164{word-spacing:-26.666667pt;}
.ws3_c01164{word-spacing:-25.061333pt;}
.ws6_c01164{word-spacing:-23.338667pt;}
.ws0_c01164{word-spacing:-17.544000pt;}
.ws2_c01164{word-spacing:-15.424000pt;}
.ws7_c01164{word-spacing:-14.400000pt;}
.ws5_c01164{word-spacing:-7.424000pt;}
.wsa_c01164{word-spacing:0.000000pt;}
.ws8_c01164{word-spacing:18.317333pt;}
._1e_c01164{margin-left:-42.426667pt;}
._2b_c01164{margin-left:-35.224000pt;}
._2a_c01164{margin-left:-33.965333pt;}
._26_c01164{margin-left:-31.576000pt;}
._1b_c01164{margin-left:-29.797333pt;}
._2d_c01164{margin-left:-28.416000pt;}
._1d_c01164{margin-left:-27.232000pt;}
._2c_c01164{margin-left:-26.194667pt;}
._3_c01164{margin-left:-25.130667pt;}
._2_c01164{margin-left:-23.146667pt;}
._22_c01164{margin-left:-21.608000pt;}
._19_c01164{margin-left:-20.621333pt;}
._4_c01164{margin-left:-19.592000pt;}
._1c_c01164{margin-left:-17.661333pt;}
._23_c01164{margin-left:-16.616000pt;}
._18_c01164{margin-left:-15.589333pt;}
._1a_c01164{margin-left:-13.912000pt;}
._8_c01164{margin-left:-12.133333pt;}
._21_c01164{margin-left:-10.162667pt;}
._10_c01164{margin-left:-8.448000pt;}
._11_c01164{margin-left:-7.168000pt;}
._6_c01164{margin-left:-5.466667pt;}
._0_c01164{margin-left:-3.802667pt;}
._7_c01164{margin-left:-2.466667pt;}
._1_c01164{margin-left:-1.157333pt;}
._b_c01164{width:1.080000pt;}
._c_c01164{width:2.000000pt;}
._a_c01164{width:3.192000pt;}
._5_c01164{width:4.384000pt;}
._16_c01164{width:5.349333pt;}
._9_c01164{width:6.272000pt;}
._d_c01164{width:7.453333pt;}
._12_c01164{width:8.533333pt;}
._13_c01164{width:9.858667pt;}
._e_c01164{width:10.802667pt;}
._28_c01164{width:12.704000pt;}
._24_c01164{width:14.506667pt;}
._38_c01164{width:15.472000pt;}
._2f_c01164{width:16.434667pt;}
._31_c01164{width:19.530667pt;}
._37_c01164{width:21.674667pt;}
._36_c01164{width:24.528000pt;}
._39_c01164{width:30.581333pt;}
._32_c01164{width:38.544000pt;}
._3a_c01164{width:44.330667pt;}
._14_c01164{width:49.973333pt;}
._15_c01164{width:57.133333pt;}
._33_c01164{width:61.586667pt;}
._34_c01164{width:64.602667pt;}
._29_c01164{width:79.448000pt;}
._27_c01164{width:80.549333pt;}
._f_c01164{width:108.194667pt;}
._20_c01164{width:111.672000pt;}
._35_c01164{width:185.037333pt;}
._17_c01164{width:224.408000pt;}
._1f_c01164{width:325.306667pt;}
._25_c01164{width:347.554667pt;}
._30_c01164{width:544.736000pt;}
._2e_c01164{width:649.240000pt;}
._3b_c01164{width:1041.557333pt;}
.fs7_c01164{font-size:21.333333pt;}
.fsd_c01164{font-size:42.666667pt;}
.fs2_c01164{font-size:50.666667pt;}
.fsc_c01164{font-size:53.333333pt;}
.fsb_c01164{font-size:56.000000pt;}
.fs9_c01164{font-size:58.666667pt;}
.fs3_c01164{font-size:64.000000pt;}
.fs1_c01164{font-size:66.666667pt;}
.fs4_c01164{font-size:69.333333pt;}
.fs0_c01164{font-size:82.666667pt;}
.fs8_c01164{font-size:85.333333pt;}
.fs5_c01164{font-size:98.666667pt;}
.fsa_c01164{font-size:104.000000pt;}
.fs6_c01164{font-size:106.666667pt;}
.y0_c01164{bottom:0.000000pt;}
.y1e_c01164{bottom:2.760000pt;}
.y1d_c01164{bottom:6.425204pt;}
.y1c_c01164{bottom:11.586667pt;}
.y1b_c01164{bottom:37.986667pt;}
.y1a_c01164{bottom:61.453333pt;}
.y19_c01164{bottom:84.520000pt;}
.y18_c01164{bottom:104.920000pt;}
.y17_c01164{bottom:147.853333pt;}
.y16_c01164{bottom:170.386667pt;}
.y15_c01164{bottom:198.786667pt;}
.y14_c01164{bottom:218.653333pt;}
.y13_c01164{bottom:242.386667pt;}
.y12_c01164{bottom:264.520000pt;}
.y11_c01164{bottom:280.786667pt;}
.y10_c01164{bottom:331.986667pt;}
.yf_c01164{bottom:349.986667pt;}
.ye_c01164{bottom:369.586667pt;}
.yd_c01164{bottom:393.320000pt;}
.yc_c01164{bottom:413.586667pt;}
.yb_c01164{bottom:437.053333pt;}
.ya_c01164{bottom:460.386667pt;}
.y9_c01164{bottom:479.053333pt;}
.y8_c01164{bottom:500.653333pt;}
.y7_c01164{bottom:523.186667pt;}
.y6_c01164{bottom:543.320000pt;}
.y5_c01164{bottom:566.120000pt;}
.y4_c01164{bottom:567.320000pt;}
.y3_c01164{bottom:589.986667pt;}
.y2_c01164{bottom:612.920000pt;}
.y1_c01164{bottom:634.386667pt;}
.hc_c01164{height:11.733399pt;}
.hd_c01164{height:38.937500pt;}
.h4_c01164{height:49.701823pt;}
.h3_c01164{height:65.429688pt;}
.hb_c01164{height:67.526042pt;}
.h9_c01164{height:74.278646pt;}
.h6_c01164{height:81.031250pt;}
.h2_c01164{height:83.312500pt;}
.h5_c01164{height:84.407552pt;}
.h8_c01164{height:99.875000pt;}
.ha_c01164{height:102.019531pt;}
.h7_c01164{height:124.923177pt;}
.h0_c01164{height:696.466667pt;}
.h1_c01164{height:696.666667pt;}
.w2_c01164{width:93.222667pt;}
.w1_c01164{width:487.333333pt;}
.w0_c01164{width:487.466667pt;}
.x0_c01164{left:0.000000pt;}
.xd_c01164{left:29.600000pt;}
.xc_c01164{left:33.866667pt;}
.xb_c01164{left:36.266667pt;}
.xa_c01164{left:37.200000pt;}
.x2_c01164{left:38.133333pt;}
.x1_c01164{left:40.000000pt;}
.x5_c01164{left:41.066667pt;}
.x3_c01164{left:57.333333pt;}
.xf_c01164{left:68.933333pt;}
.x6_c01164{left:100.533333pt;}
.xe_c01164{left:121.733333pt;}
.x7_c01164{left:126.400000pt;}
.x10_c01164{left:200.901571pt;}
.x8_c01164{left:211.066667pt;}
.x9_c01164{left:279.200000pt;}
.x4_c01164{left:432.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_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_e58cf0a4104f8236a3de9177.woff2')format("woff");}.ff1_c01165{font-family:ff1_c01165;line-height:1.568848;font-style:normal;font-weight:normal;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_28c06ebbf7faa62d8e31490a.woff2')format("woff");}.ff2_c01165{font-family:ff2_c01165;line-height:1.480469;font-style:normal;font-weight:normal;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_94c46722f0f25ef75f52fccf.woff2')format("woff");}.ff3_c01165{font-family:ff3_c01165;line-height:1.592000;font-style:normal;font-weight:normal;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_42ca6a7f4ee780e6466fa4ba.woff2')format("woff");}.ff4_c01165{font-family:ff4_c01165;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01165;src:url('chunks/assets/font_141f78918b1b82985922dff7.woff2')format("woff");}.ff5_c01165{font-family:ff5_c01165;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01165;src:url('chunks/assets/font_a85509702876c8e3818d2c10.woff2')format("woff");}.ff6_c01165{font-family:ff6_c01165;line-height:1.284668;font-style:normal;font-weight: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_c01165;src:url('chunks/assets/font_7d5b89a013afe4ff0eff5f2e.woff2')format("woff");}.ff7_c01165{font-family:ff7_c01165;line-height:1.480469;font-style:normal;font-weight: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_c01165;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff8_c01165{font-family:ff8_c01165;line-height:1.219238;font-style: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);}
.v1_c01165{vertical-align:-93.000000px;}
.v0_c01165{vertical-align:0.000000px;}
.ls4_c01165{letter-spacing:-3.000000px;}
.ls3_c01165{letter-spacing:0.000000px;}
.ls1_c01165{letter-spacing:3.279000px;}
.ls2_c01165{letter-spacing:3.735000px;}
.ls0_c01165{letter-spacing:13.848000px;}
.ls5_c01165{letter-spacing:24.000000px;}
.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;}
}
.ws4_c01165{word-spacing:-50.430000px;}
.ws3_c01165{word-spacing:-38.724000px;}
.ws0_c01165{word-spacing:-33.192000px;}
.ws5_c01165{word-spacing:-16.629000px;}
.ws2_c01165{word-spacing:-16.344000px;}
.ws6_c01165{word-spacing:0.000000px;}
.ws1_c01165{word-spacing:0.240000px;}
._2_c01165{margin-left:-30.096000px;}
._11_c01165{margin-left:-27.000000px;}
._22_c01165{margin-left:-17.595000px;}
._0_c01165{margin-left:-15.696000px;}
._1d_c01165{margin-left:-13.764000px;}
._1c_c01165{margin-left:-12.312000px;}
._13_c01165{margin-left:-9.864000px;}
._1a_c01165{margin-left:-8.544000px;}
._19_c01165{margin-left:-7.056000px;}
._18_c01165{margin-left:-5.976000px;}
._d_c01165{margin-left:-4.464000px;}
._b_c01165{margin-left:-3.168000px;}
._a_c01165{margin-left:-1.224000px;}
._c_c01165{width:1.440000px;}
._6_c01165{width:2.880000px;}
._8_c01165{width:3.888000px;}
._5_c01165{width:5.112000px;}
._9_c01165{width:6.624000px;}
._4_c01165{width:7.992000px;}
._f_c01165{width:9.072000px;}
._7_c01165{width:10.296000px;}
._10_c01165{width:11.664000px;}
._16_c01165{width:12.672000px;}
._e_c01165{width:13.680000px;}
._17_c01165{width:15.696000px;}
._3_c01165{width:18.360000px;}
._1e_c01165{width:24.375000px;}
._20_c01165{width:25.488000px;}
._1b_c01165{width:29.232000px;}
._1f_c01165{width:32.757000px;}
._12_c01165{width:39.960000px;}
._14_c01165{width:42.984000px;}
._1_c01165{width:63.648000px;}
._23_c01165{width:77.280000px;}
._21_c01165{width:106.932000px;}
._15_c01165{width:114.696000px;}
.fc2_c01165{color:transparent;}
.fc1_c01165{color:rgb(128,128,128);}
.fc0_c01165{color:rgb(0,0,0);}
.fs5_c01165{font-size:45.000000px;}
.fs7_c01165{font-size:48.000000px;}
.fs1_c01165{font-size:60.000000px;}
.fs2_c01165{font-size:69.000000px;}
.fs0_c01165{font-size:72.000000px;}
.fs6_c01165{font-size:78.000000px;}
.fs4_c01165{font-size:81.000000px;}
.fs3_c01165{font-size:84.000000px;}
.y0_c01165{bottom:0.000000px;}
.y1e_c01165{bottom:3.105000px;}
.y1d_c01165{bottom:7.228369px;}
.y1c_c01165{bottom:41.520000px;}
.y1b_c01165{bottom:65.370000px;}
.y1a_c01165{bottom:115.320000px;}
.y19_c01165{bottom:140.670000px;}
.y18_c01165{bottom:166.320000px;}
.y17_c01165{bottom:190.020000px;}
.y16_c01165{bottom:216.270000px;}
.y15_c01165{bottom:241.620000px;}
.y14_c01165{bottom:266.970000px;}
.y13_c01165{bottom:291.870000px;}
.y12_c01165{bottom:315.870000px;}
.y11_c01165{bottom:340.920000px;}
.y10_c01165{bottom:365.220000px;}
.yf_c01165{bottom:388.170000px;}
.ye_c01165{bottom:412.770000px;}
.yd_c01165{bottom:459.570000px;}
.yc_c01165{bottom:484.620000px;}
.yb_c01165{bottom:508.920000px;}
.ya_c01165{bottom:533.520000px;}
.y9_c01165{bottom:557.220000px;}
.y8_c01165{bottom:582.570000px;}
.y7_c01165{bottom:607.770000px;}
.y6_c01165{bottom:633.870000px;}
.y5_c01165{bottom:658.020000px;}
.y4_c01165{bottom:683.820000px;}
.y3_c01165{bottom:708.120000px;}
.y2_c01165{bottom:733.320000px;}
.y1_c01165{bottom:754.320000px;}
.h7_c01165{height:13.200073px;}
.h8_c01165{height:43.804688px;}
.h3_c01165{height:84.269531px;}
.h4_c01165{height:87.361816px;}
.h2_c01165{height:91.160156px;}
.h6_c01165{height:91.291992px;}
.h5_c01165{height:102.555176px;}
.h0_c01165{height:774.600000px;}
.h1_c01165{height:774.750000px;}
.w2_c01165{width:104.875500px;}
.w0_c01165{width:511.125000px;}
.w1_c01165{width:511.500000px;}
.x0_c01165{left:0.000000px;}
.xc_c01165{left:16.200000px;}
.xb_c01165{left:18.600000px;}
.xe_c01165{left:37.350000px;}
.x5_c01165{left:48.150000px;}
.x4_c01165{left:84.600000px;}
.xa_c01165{left:97.800000px;}
.x8_c01165{left:98.850000px;}
.xd_c01165{left:99.900000px;}
.x9_c01165{left:101.250000px;}
.x7_c01165{left:102.600000px;}
.x6_c01165{left:103.950000px;}
.x3_c01165{left:105.600000px;}
.x10_c01165{left:207.376740px;}
.xf_c01165{left:217.350000px;}
.x1_c01165{left:219.000000px;}
.x2_c01165{left:227.100000px;}
@media print{
.v1_c01165{vertical-align:-82.666667pt;}
.v0_c01165{vertical-align:0.000000pt;}
.ls4_c01165{letter-spacing:-2.666667pt;}
.ls3_c01165{letter-spacing:0.000000pt;}
.ls1_c01165{letter-spacing:2.914667pt;}
.ls2_c01165{letter-spacing:3.320000pt;}
.ls0_c01165{letter-spacing:12.309333pt;}
.ls5_c01165{letter-spacing:21.333333pt;}
.ws4_c01165{word-spacing:-44.826667pt;}
.ws3_c01165{word-spacing:-34.421333pt;}
.ws0_c01165{word-spacing:-29.504000pt;}
.ws5_c01165{word-spacing:-14.781333pt;}
.ws2_c01165{word-spacing:-14.528000pt;}
.ws6_c01165{word-spacing:0.000000pt;}
.ws1_c01165{word-spacing:0.213333pt;}
._2_c01165{margin-left:-26.752000pt;}
._11_c01165{margin-left:-24.000000pt;}
._22_c01165{margin-left:-15.640000pt;}
._0_c01165{margin-left:-13.952000pt;}
._1d_c01165{margin-left:-12.234667pt;}
._1c_c01165{margin-left:-10.944000pt;}
._13_c01165{margin-left:-8.768000pt;}
._1a_c01165{margin-left:-7.594667pt;}
._19_c01165{margin-left:-6.272000pt;}
._18_c01165{margin-left:-5.312000pt;}
._d_c01165{margin-left:-3.968000pt;}
._b_c01165{margin-left:-2.816000pt;}
._a_c01165{margin-left:-1.088000pt;}
._c_c01165{width:1.280000pt;}
._6_c01165{width:2.560000pt;}
._8_c01165{width:3.456000pt;}
._5_c01165{width:4.544000pt;}
._9_c01165{width:5.888000pt;}
._4_c01165{width:7.104000pt;}
._f_c01165{width:8.064000pt;}
._7_c01165{width:9.152000pt;}
._10_c01165{width:10.368000pt;}
._16_c01165{width:11.264000pt;}
._e_c01165{width:12.160000pt;}
._17_c01165{width:13.952000pt;}
._3_c01165{width:16.320000pt;}
._1e_c01165{width:21.666667pt;}
._20_c01165{width:22.656000pt;}
._1b_c01165{width:25.984000pt;}
._1f_c01165{width:29.117333pt;}
._12_c01165{width:35.520000pt;}
._14_c01165{width:38.208000pt;}
._1_c01165{width:56.576000pt;}
._23_c01165{width:68.693333pt;}
._21_c01165{width:95.050667pt;}
._15_c01165{width:101.952000pt;}
.fs5_c01165{font-size:40.000000pt;}
.fs7_c01165{font-size:42.666667pt;}
.fs1_c01165{font-size:53.333333pt;}
.fs2_c01165{font-size:61.333333pt;}
.fs0_c01165{font-size:64.000000pt;}
.fs6_c01165{font-size:69.333333pt;}
.fs4_c01165{font-size:72.000000pt;}
.fs3_c01165{font-size:74.666667pt;}
.y0_c01165{bottom:0.000000pt;}
.y1e_c01165{bottom:2.760000pt;}
.y1d_c01165{bottom:6.425217pt;}
.y1c_c01165{bottom:36.906667pt;}
.y1b_c01165{bottom:58.106667pt;}
.y1a_c01165{bottom:102.506667pt;}
.y19_c01165{bottom:125.040000pt;}
.y18_c01165{bottom:147.840000pt;}
.y17_c01165{bottom:168.906667pt;}
.y16_c01165{bottom:192.240000pt;}
.y15_c01165{bottom:214.773333pt;}
.y14_c01165{bottom:237.306667pt;}
.y13_c01165{bottom:259.440000pt;}
.y12_c01165{bottom:280.773333pt;}
.y11_c01165{bottom:303.040000pt;}
.y10_c01165{bottom:324.640000pt;}
.yf_c01165{bottom:345.040000pt;}
.ye_c01165{bottom:366.906667pt;}
.yd_c01165{bottom:408.506667pt;}
.yc_c01165{bottom:430.773333pt;}
.yb_c01165{bottom:452.373333pt;}
.ya_c01165{bottom:474.240000pt;}
.y9_c01165{bottom:495.306667pt;}
.y8_c01165{bottom:517.840000pt;}
.y7_c01165{bottom:540.240000pt;}
.y6_c01165{bottom:563.440000pt;}
.y5_c01165{bottom:584.906667pt;}
.y4_c01165{bottom:607.840000pt;}
.y3_c01165{bottom:629.440000pt;}
.y2_c01165{bottom:651.840000pt;}
.y1_c01165{bottom:670.506667pt;}
.h7_c01165{height:11.733399pt;}
.h8_c01165{height:38.937500pt;}
.h3_c01165{height:74.906250pt;}
.h4_c01165{height:77.654948pt;}
.h2_c01165{height:81.031250pt;}
.h6_c01165{height:81.148438pt;}
.h5_c01165{height:91.160156pt;}
.h0_c01165{height:688.533333pt;}
.h1_c01165{height:688.666667pt;}
.w2_c01165{width:93.222667pt;}
.w0_c01165{width:454.333333pt;}
.w1_c01165{width:454.666667pt;}
.x0_c01165{left:0.000000pt;}
.xc_c01165{left:14.400000pt;}
.xb_c01165{left:16.533333pt;}
.xe_c01165{left:33.200000pt;}
.x5_c01165{left:42.800000pt;}
.x4_c01165{left:75.200000pt;}
.xa_c01165{left:86.933333pt;}
.x8_c01165{left:87.866667pt;}
.xd_c01165{left:88.800000pt;}
.x9_c01165{left:90.000000pt;}
.x7_c01165{left:91.200000pt;}
.x6_c01165{left:92.400000pt;}
.x3_c01165{left:93.866667pt;}
.x10_c01165{left:184.334880pt;}
.xf_c01165{left:193.200000pt;}
.x1_c01165{left:194.666667pt;}
.x2_c01165{left:201.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_81ef32136c72ef14a02cd219.woff2')format("woff");}.ff1_c01166{font-family:ff1_c01166;line-height:1.480469;font-style:normal;font-weight:normal;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_f265e21fb037046940c7b223.woff2')format("woff");}.ff2_c01166{font-family:ff2_c01166;line-height:1.568848;font-style:normal;font-weight:normal;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_b01ca97ace8b4278af2dd3ab.woff2')format("woff");}.ff3_c01166{font-family:ff3_c01166;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01166;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01166{font-family:ff4_c01166;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c01166{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,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);}
.v0_c01166{vertical-align:0.000000px;}
.ls1_c01166{letter-spacing:0.000000px;}
.ls0_c01166{letter-spacing:1.017000px;}
.ls2_c01166{letter-spacing:6.000000px;}
.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;}
}
.ws1_c01166{word-spacing:0.000000px;}
.ws0_c01166{word-spacing:0.189000px;}
._1d_c01166{margin-left:-63.288000px;}
._d_c01166{margin-left:-20.616000px;}
._11_c01166{margin-left:-19.584000px;}
._1c_c01166{margin-left:-15.912000px;}
._f_c01166{margin-left:-13.248000px;}
._1b_c01166{margin-left:-12.165000px;}
._13_c01166{margin-left:-10.296000px;}
._17_c01166{margin-left:-9.144000px;}
._19_c01166{margin-left:-7.704000px;}
._c_c01166{margin-left:-6.294000px;}
._a_c01166{margin-left:-4.197000px;}
._8_c01166{margin-left:-2.457000px;}
._b_c01166{margin-left:-1.449000px;}
._10_c01166{width:1.020000px;}
._9_c01166{width:2.289000px;}
._0_c01166{width:3.744000px;}
._2_c01166{width:5.184000px;}
._4_c01166{width:6.264000px;}
._3_c01166{width:7.992000px;}
._5_c01166{width:9.072000px;}
._1_c01166{width:10.512000px;}
._e_c01166{width:12.144000px;}
._14_c01166{width:13.476000px;}
._12_c01166{width:14.733000px;}
._7_c01166{width:16.056000px;}
._1f_c01166{width:20.520000px;}
._20_c01166{width:21.897000px;}
._18_c01166{width:23.790000px;}
._1e_c01166{width:28.629000px;}
._15_c01166{width:62.985000px;}
._1a_c01166{width:181.593000px;}
._16_c01166{width:203.406000px;}
._21_c01166{width:301.848000px;}
._6_c01166{width:321.336000px;}
.fc2_c01166{color:transparent;}
.fc1_c01166{color:rgb(128,128,128);}
.fc0_c01166{color:rgb(0,0,0);}
.fs5_c01166{font-size:48.000000px;}
.fs4_c01166{font-size:51.000000px;}
.fs1_c01166{font-size:63.000000px;}
.fs3_c01166{font-size:66.000000px;}
.fs0_c01166{font-size:72.000000px;}
.fs2_c01166{font-size:81.000000px;}
.y0_c01166{bottom:0.000000px;}
.y1f_c01166{bottom:3.105000px;}
.y1e_c01166{bottom:7.228357px;}
.y1d_c01166{bottom:57.030000px;}
.y1c_c01166{bottom:84.030000px;}
.y1b_c01166{bottom:109.680000px;}
.y1a_c01166{bottom:133.080000px;}
.y19_c01166{bottom:159.630000px;}
.y18_c01166{bottom:184.230000px;}
.y17_c01166{bottom:205.980000px;}
.y16_c01166{bottom:230.130000px;}
.y15_c01166{bottom:257.580000px;}
.y14_c01166{bottom:279.780000px;}
.y13_c01166{bottom:304.380000px;}
.y12_c01166{bottom:329.730000px;}
.y11_c01166{bottom:353.730000px;}
.y10_c01166{bottom:378.630000px;}
.yf_c01166{bottom:402.630000px;}
.ye_c01166{bottom:426.030000px;}
.yd_c01166{bottom:449.280000px;}
.yc_c01166{bottom:474.630000px;}
.yb_c01166{bottom:499.230000px;}
.ya_c01166{bottom:521.130000px;}
.y9_c01166{bottom:546.780000px;}
.y8_c01166{bottom:570.780000px;}
.y7_c01166{bottom:595.080000px;}
.y6_c01166{bottom:619.380000px;}
.y5_c01166{bottom:643.680000px;}
.y4_c01166{bottom:668.580000px;}
.y3_c01166{bottom:693.180000px;}
.y2_c01166{bottom:717.930000px;}
.y1_c01166{bottom:743.880000px;}
.h6_c01166{height:13.200074px;}
.h7_c01166{height:43.804688px;}
.h5_c01166{height:51.398438px;}
.h2_c01166{height:84.269531px;}
.h4_c01166{height:91.160156px;}
.h3_c01166{height:94.803223px;}
.h1_c01166{height:777.750000px;}
.h0_c01166{height:777.900000px;}
.w2_c01166{width:104.875500px;}
.w0_c01166{width:542.175000px;}
.w1_c01166{width:542.250000px;}
.x0_c01166{left:0.000000px;}
.xa_c01166{left:19.950000px;}
.x2_c01166{left:23.700000px;}
.x5_c01166{left:25.200000px;}
.x6_c01166{left:26.700000px;}
.x8_c01166{left:28.650000px;}
.x3_c01166{left:31.950000px;}
.x4_c01166{left:33.300000px;}
.x9_c01166{left:34.350000px;}
.x7_c01166{left:35.700000px;}
.x1_c01166{left:134.100000px;}
.xc_c01166{left:222.901749px;}
.xb_c01166{left:301.950000px;}
@media print{
.v0_c01166{vertical-align:0.000000pt;}
.ls1_c01166{letter-spacing:0.000000pt;}
.ls0_c01166{letter-spacing:0.904000pt;}
.ls2_c01166{letter-spacing:5.333333pt;}
.ws1_c01166{word-spacing:0.000000pt;}
.ws0_c01166{word-spacing:0.168000pt;}
._1d_c01166{margin-left:-56.256000pt;}
._d_c01166{margin-left:-18.325333pt;}
._11_c01166{margin-left:-17.408000pt;}
._1c_c01166{margin-left:-14.144000pt;}
._f_c01166{margin-left:-11.776000pt;}
._1b_c01166{margin-left:-10.813333pt;}
._13_c01166{margin-left:-9.152000pt;}
._17_c01166{margin-left:-8.128000pt;}
._19_c01166{margin-left:-6.848000pt;}
._c_c01166{margin-left:-5.594667pt;}
._a_c01166{margin-left:-3.730667pt;}
._8_c01166{margin-left:-2.184000pt;}
._b_c01166{margin-left:-1.288000pt;}
._10_c01166{width:0.906667pt;}
._9_c01166{width:2.034667pt;}
._0_c01166{width:3.328000pt;}
._2_c01166{width:4.608000pt;}
._4_c01166{width:5.568000pt;}
._3_c01166{width:7.104000pt;}
._5_c01166{width:8.064000pt;}
._1_c01166{width:9.344000pt;}
._e_c01166{width:10.794667pt;}
._14_c01166{width:11.978667pt;}
._12_c01166{width:13.096000pt;}
._7_c01166{width:14.272000pt;}
._1f_c01166{width:18.240000pt;}
._20_c01166{width:19.464000pt;}
._18_c01166{width:21.146667pt;}
._1e_c01166{width:25.448000pt;}
._15_c01166{width:55.986667pt;}
._1a_c01166{width:161.416000pt;}
._16_c01166{width:180.805333pt;}
._21_c01166{width:268.309333pt;}
._6_c01166{width:285.632000pt;}
.fs5_c01166{font-size:42.666667pt;}
.fs4_c01166{font-size:45.333333pt;}
.fs1_c01166{font-size:56.000000pt;}
.fs3_c01166{font-size:58.666667pt;}
.fs0_c01166{font-size:64.000000pt;}
.fs2_c01166{font-size:72.000000pt;}
.y0_c01166{bottom:0.000000pt;}
.y1f_c01166{bottom:2.760000pt;}
.y1e_c01166{bottom:6.425206pt;}
.y1d_c01166{bottom:50.693333pt;}
.y1c_c01166{bottom:74.693333pt;}
.y1b_c01166{bottom:97.493333pt;}
.y1a_c01166{bottom:118.293333pt;}
.y19_c01166{bottom:141.893333pt;}
.y18_c01166{bottom:163.760000pt;}
.y17_c01166{bottom:183.093333pt;}
.y16_c01166{bottom:204.560000pt;}
.y15_c01166{bottom:228.960000pt;}
.y14_c01166{bottom:248.693333pt;}
.y13_c01166{bottom:270.560000pt;}
.y12_c01166{bottom:293.093333pt;}
.y11_c01166{bottom:314.426667pt;}
.y10_c01166{bottom:336.560000pt;}
.yf_c01166{bottom:357.893333pt;}
.ye_c01166{bottom:378.693333pt;}
.yd_c01166{bottom:399.360000pt;}
.yc_c01166{bottom:421.893333pt;}
.yb_c01166{bottom:443.760000pt;}
.ya_c01166{bottom:463.226667pt;}
.y9_c01166{bottom:486.026667pt;}
.y8_c01166{bottom:507.360000pt;}
.y7_c01166{bottom:528.960000pt;}
.y6_c01166{bottom:550.560000pt;}
.y5_c01166{bottom:572.160000pt;}
.y4_c01166{bottom:594.293333pt;}
.y3_c01166{bottom:616.160000pt;}
.y2_c01166{bottom:638.160000pt;}
.y1_c01166{bottom:661.226667pt;}
.h6_c01166{height:11.733399pt;}
.h7_c01166{height:38.937500pt;}
.h5_c01166{height:45.687500pt;}
.h2_c01166{height:74.906250pt;}
.h4_c01166{height:81.031250pt;}
.h3_c01166{height:84.269531pt;}
.h1_c01166{height:691.333333pt;}
.h0_c01166{height:691.466667pt;}
.w2_c01166{width:93.222667pt;}
.w0_c01166{width:481.933333pt;}
.w1_c01166{width:482.000000pt;}
.x0_c01166{left:0.000000pt;}
.xa_c01166{left:17.733333pt;}
.x2_c01166{left:21.066667pt;}
.x5_c01166{left:22.400000pt;}
.x6_c01166{left:23.733333pt;}
.x8_c01166{left:25.466667pt;}
.x3_c01166{left:28.400000pt;}
.x4_c01166{left:29.600000pt;}
.x9_c01166{left:30.533333pt;}
.x7_c01166{left:31.733333pt;}
.x1_c01166{left:119.200000pt;}
.xc_c01166{left:198.134888pt;}
.xb_c01166{left:268.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3e9b76e58e5327e65f144c0b.woff2')format("woff");}.ff1_c01167{font-family:ff1_c01167;line-height:1.480469;font-style:normal;font-weight:normal;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_f0a4010680f95ceb7c333259.woff2')format("woff");}.ff2_c01167{font-family:ff2_c01167;line-height:1.568848;font-style:normal;font-weight:normal;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_755c3ff19e90857162dd102c.woff2')format("woff");}.ff3_c01167{font-family:ff3_c01167;line-height:1.372070;font-style:normal;font-weight:normal;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_401aed5de473d52738e40121.woff2')format("woff");}.ff4_c01167{font-family:ff4_c01167;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01167{font-family:ff5_c01167;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01167{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01167{vertical-align:0.000000px;}
.v1_c01167{vertical-align:90.600000px;}
.ls1_c01167{letter-spacing:0.000000px;}
.ls0_c01167{letter-spacing:31.788000px;}
.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;}
}
.ws2_c01167{word-spacing:-30.051000px;}
.ws0_c01167{word-spacing:-17.352000px;}
.ws1_c01167{word-spacing:-0.171000px;}
.ws3_c01167{word-spacing:0.000000px;}
._19_c01167{margin-left:-31.248000px;}
._17_c01167{margin-left:-22.320000px;}
._10_c01167{margin-left:-19.500000px;}
._1e_c01167{margin-left:-16.260000px;}
._11_c01167{margin-left:-9.720000px;}
._12_c01167{margin-left:-7.776000px;}
._c_c01167{margin-left:-6.552000px;}
._13_c01167{margin-left:-5.448000px;}
._14_c01167{margin-left:-3.816000px;}
._3_c01167{margin-left:-2.448000px;}
._d_c01167{margin-left:-1.296000px;}
._4_c01167{width:1.800000px;}
._5_c01167{width:2.808000px;}
._2_c01167{width:4.392000px;}
._6_c01167{width:5.472000px;}
._a_c01167{width:6.768000px;}
._b_c01167{width:7.776000px;}
._1_c01167{width:8.784000px;}
._9_c01167{width:9.792000px;}
._7_c01167{width:11.736000px;}
._e_c01167{width:13.104000px;}
._1d_c01167{width:14.112000px;}
._0_c01167{width:15.192000px;}
._f_c01167{width:18.576000px;}
._8_c01167{width:20.232000px;}
._1c_c01167{width:22.536000px;}
._1f_c01167{width:24.552000px;}
._18_c01167{width:71.136000px;}
._16_c01167{width:129.816000px;}
._1a_c01167{width:155.448000px;}
._1b_c01167{width:250.992000px;}
._15_c01167{width:299.568000px;}
._20_c01167{width:661.968000px;}
.fc2_c01167{color:transparent;}
.fc1_c01167{color:rgb(128,128,128);}
.fc0_c01167{color:rgb(0,0,0);}
.fs3_c01167{font-size:48.000000px;}
.fs2_c01167{font-size:63.000000px;}
.fs0_c01167{font-size:72.000000px;}
.fs1_c01167{font-size:171.000000px;}
.y0_c01167{bottom:0.000000px;}
.y1f_c01167{bottom:3.105000px;}
.y1e_c01167{bottom:7.228357px;}
.y1d_c01167{bottom:56.730000px;}
.y1c_c01167{bottom:77.580000px;}
.y1b_c01167{bottom:102.930000px;}
.y1a_c01167{bottom:130.680000px;}
.y19_c01167{bottom:153.630000px;}
.y18_c01167{bottom:177.630000px;}
.y17_c01167{bottom:205.230000px;}
.y16_c01167{bottom:228.180000px;}
.y15_c01167{bottom:253.230000px;}
.y14_c01167{bottom:278.130000px;}
.y13_c01167{bottom:303.180000px;}
.y12_c01167{bottom:327.480000px;}
.y11_c01167{bottom:351.030000px;}
.y10_c01167{bottom:375.030000px;}
.yf_c01167{bottom:399.630000px;}
.ye_c01167{bottom:423.930000px;}
.yd_c01167{bottom:447.630000px;}
.yc_c01167{bottom:471.180000px;}
.yb_c01167{bottom:496.530000px;}
.ya_c01167{bottom:522.180000px;}
.y9_c01167{bottom:522.480000px;}
.y8_c01167{bottom:570.780000px;}
.y7_c01167{bottom:595.080000px;}
.y6_c01167{bottom:619.680000px;}
.y5_c01167{bottom:645.030000px;}
.y4_c01167{bottom:670.380000px;}
.y3_c01167{bottom:694.680000px;}
.y2_c01167{bottom:720.180000px;}
.y1_c01167{bottom:746.580000px;}
.h3_c01167{height:13.200074px;}
.h4_c01167{height:43.804688px;}
.h1_c01167{height:91.160156px;}
.h2_c01167{height:181.760156px;}
.h0_c01167{height:792.750000px;}
.w2_c01167{width:104.875500px;}
.w1_c01167{width:520.500000px;}
.w0_c01167{width:520.800000px;}
.x0_c01167{left:0.000000px;}
.xd_c01167{left:35.550000px;}
.xe_c01167{left:37.500000px;}
.x2_c01167{left:100.200000px;}
.x3_c01167{left:101.250000px;}
.x4_c01167{left:103.200000px;}
.x5_c01167{left:104.700000px;}
.x6_c01167{left:105.900000px;}
.x8_c01167{left:108.000000px;}
.x9_c01167{left:109.050000px;}
.xa_c01167{left:110.700000px;}
.xb_c01167{left:112.800000px;}
.xc_c01167{left:113.850000px;}
.x7_c01167{left:116.400000px;}
.x10_c01167{left:212.214249px;}
.x1_c01167{left:221.400000px;}
.xf_c01167{left:269.700000px;}
@media print{
.v0_c01167{vertical-align:0.000000pt;}
.v1_c01167{vertical-align:80.533333pt;}
.ls1_c01167{letter-spacing:0.000000pt;}
.ls0_c01167{letter-spacing:28.256000pt;}
.ws2_c01167{word-spacing:-26.712000pt;}
.ws0_c01167{word-spacing:-15.424000pt;}
.ws1_c01167{word-spacing:-0.152000pt;}
.ws3_c01167{word-spacing:0.000000pt;}
._19_c01167{margin-left:-27.776000pt;}
._17_c01167{margin-left:-19.840000pt;}
._10_c01167{margin-left:-17.333333pt;}
._1e_c01167{margin-left:-14.453333pt;}
._11_c01167{margin-left:-8.640000pt;}
._12_c01167{margin-left:-6.912000pt;}
._c_c01167{margin-left:-5.824000pt;}
._13_c01167{margin-left:-4.842667pt;}
._14_c01167{margin-left:-3.392000pt;}
._3_c01167{margin-left:-2.176000pt;}
._d_c01167{margin-left:-1.152000pt;}
._4_c01167{width:1.600000pt;}
._5_c01167{width:2.496000pt;}
._2_c01167{width:3.904000pt;}
._6_c01167{width:4.864000pt;}
._a_c01167{width:6.016000pt;}
._b_c01167{width:6.912000pt;}
._1_c01167{width:7.808000pt;}
._9_c01167{width:8.704000pt;}
._7_c01167{width:10.432000pt;}
._e_c01167{width:11.648000pt;}
._1d_c01167{width:12.544000pt;}
._0_c01167{width:13.504000pt;}
._f_c01167{width:16.512000pt;}
._8_c01167{width:17.984000pt;}
._1c_c01167{width:20.032000pt;}
._1f_c01167{width:21.824000pt;}
._18_c01167{width:63.232000pt;}
._16_c01167{width:115.392000pt;}
._1a_c01167{width:138.176000pt;}
._1b_c01167{width:223.104000pt;}
._15_c01167{width:266.282667pt;}
._20_c01167{width:588.416000pt;}
.fs3_c01167{font-size:42.666667pt;}
.fs2_c01167{font-size:56.000000pt;}
.fs0_c01167{font-size:64.000000pt;}
.fs1_c01167{font-size:152.000000pt;}
.y0_c01167{bottom:0.000000pt;}
.y1f_c01167{bottom:2.760000pt;}
.y1e_c01167{bottom:6.425206pt;}
.y1d_c01167{bottom:50.426667pt;}
.y1c_c01167{bottom:68.960000pt;}
.y1b_c01167{bottom:91.493333pt;}
.y1a_c01167{bottom:116.160000pt;}
.y19_c01167{bottom:136.560000pt;}
.y18_c01167{bottom:157.893333pt;}
.y17_c01167{bottom:182.426667pt;}
.y16_c01167{bottom:202.826667pt;}
.y15_c01167{bottom:225.093333pt;}
.y14_c01167{bottom:247.226667pt;}
.y13_c01167{bottom:269.493333pt;}
.y12_c01167{bottom:291.093333pt;}
.y11_c01167{bottom:312.026667pt;}
.y10_c01167{bottom:333.360000pt;}
.yf_c01167{bottom:355.226667pt;}
.ye_c01167{bottom:376.826667pt;}
.yd_c01167{bottom:397.893333pt;}
.yc_c01167{bottom:418.826667pt;}
.yb_c01167{bottom:441.360000pt;}
.ya_c01167{bottom:464.160000pt;}
.y9_c01167{bottom:464.426667pt;}
.y8_c01167{bottom:507.360000pt;}
.y7_c01167{bottom:528.960000pt;}
.y6_c01167{bottom:550.826667pt;}
.y5_c01167{bottom:573.360000pt;}
.y4_c01167{bottom:595.893333pt;}
.y3_c01167{bottom:617.493333pt;}
.y2_c01167{bottom:640.160000pt;}
.y1_c01167{bottom:663.626667pt;}
.h3_c01167{height:11.733399pt;}
.h4_c01167{height:38.937500pt;}
.h1_c01167{height:81.031250pt;}
.h2_c01167{height:161.564583pt;}
.h0_c01167{height:704.666667pt;}
.w2_c01167{width:93.222667pt;}
.w1_c01167{width:462.666667pt;}
.w0_c01167{width:462.933333pt;}
.x0_c01167{left:0.000000pt;}
.xd_c01167{left:31.600000pt;}
.xe_c01167{left:33.333333pt;}
.x2_c01167{left:89.066667pt;}
.x3_c01167{left:90.000000pt;}
.x4_c01167{left:91.733333pt;}
.x5_c01167{left:93.066667pt;}
.x6_c01167{left:94.133333pt;}
.x8_c01167{left:96.000000pt;}
.x9_c01167{left:96.933333pt;}
.xa_c01167{left:98.400000pt;}
.xb_c01167{left:100.266667pt;}
.xc_c01167{left:101.200000pt;}
.x7_c01167{left:103.466667pt;}
.x10_c01167{left:188.634888pt;}
.x1_c01167{left:196.800000pt;}
.xf_c01167{left:239.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a26f61146efd04310a7eaa97.woff2')format("woff");}.ff1_c01168{font-family:ff1_c01168;line-height:1.480469;font-style:normal;font-weight:normal;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_eb54932660acd183265d096b.woff2')format("woff");}.ff2_c01168{font-family:ff2_c01168;line-height:1.568848;font-style:normal;font-weight:normal;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_fdfe982f6509b2115899d27e.woff2')format("woff");}.ff3_c01168{font-family:ff3_c01168;line-height:1.284180;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01168{font-family:ff4_c01168;line-height:1.219238;font-style: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);}
.v0_c01168{vertical-align:0.000000px;}
.ls1_c01168{letter-spacing:-24.000000px;}
.ls0_c01168{letter-spacing:0.000000px;}
.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;}
}
.ws0_c01168{word-spacing:-17.352000px;}
.ws1_c01168{word-spacing:0.000000px;}
._16_c01168{margin-left:-13.554000px;}
._11_c01168{margin-left:-11.448000px;}
._13_c01168{margin-left:-9.027000px;}
._14_c01168{margin-left:-7.581000px;}
._15_c01168{margin-left:-6.255000px;}
._3_c01168{margin-left:-4.872000px;}
._f_c01168{margin-left:-3.528000px;}
._4_c01168{margin-left:-2.436000px;}
._a_c01168{margin-left:-1.332000px;}
._8_c01168{width:1.305000px;}
._7_c01168{width:2.592000px;}
._2_c01168{width:3.915000px;}
._1_c01168{width:5.481000px;}
._c_c01168{width:6.498000px;}
._0_c01168{width:8.004000px;}
._e_c01168{width:9.207000px;}
._6_c01168{width:10.440000px;}
._b_c01168{width:11.562000px;}
._10_c01168{width:13.110000px;}
._9_c01168{width:14.319000px;}
._d_c01168{width:16.350000px;}
._12_c01168{width:19.824000px;}
._18_c01168{width:34.611000px;}
._5_c01168{width:279.966000px;}
._17_c01168{width:333.960000px;}
.fc2_c01168{color:transparent;}
.fc1_c01168{color:rgb(128,128,128);}
.fc0_c01168{color:rgb(0,0,0);}
.fs5_c01168{font-size:48.000000px;}
.fs2_c01168{font-size:57.000000px;}
.fs3_c01168{font-size:66.000000px;}
.fs1_c01168{font-size:72.000000px;}
.fs0_c01168{font-size:87.000000px;}
.fs4_c01168{font-size:117.000000px;}
.y0_c01168{bottom:0.000000px;}
.y1f_c01168{bottom:3.105000px;}
.y1e_c01168{bottom:7.228369px;}
.y1d_c01168{bottom:41.520000px;}
.y1c_c01168{bottom:66.420000px;}
.y1b_c01168{bottom:92.070000px;}
.y1a_c01168{bottom:116.070000px;}
.y19_c01168{bottom:142.470000px;}
.y18_c01168{bottom:167.070000px;}
.y17_c01168{bottom:191.070000px;}
.y16_c01168{bottom:216.120000px;}
.y15_c01168{bottom:241.170000px;}
.y14_c01168{bottom:266.220000px;}
.y13_c01168{bottom:291.270000px;}
.y12_c01168{bottom:314.520000px;}
.y11_c01168{bottom:339.570000px;}
.y10_c01168{bottom:363.120000px;}
.yf_c01168{bottom:387.720000px;}
.ye_c01168{bottom:411.420000px;}
.yd_c01168{bottom:435.420000px;}
.yc_c01168{bottom:460.320000px;}
.yb_c01168{bottom:484.320000px;}
.ya_c01168{bottom:509.220000px;}
.y9_c01168{bottom:532.920000px;}
.y8_c01168{bottom:558.870000px;}
.y7_c01168{bottom:583.770000px;}
.y6_c01168{bottom:608.070000px;}
.y5_c01168{bottom:633.420000px;}
.y4_c01168{bottom:658.170000px;}
.y3_c01168{bottom:682.320000px;}
.y2_c01168{bottom:707.070000px;}
.y1_c01168{bottom:732.720000px;}
.h5_c01168{height:13.200073px;}
.h6_c01168{height:43.804688px;}
.h3_c01168{height:91.160156px;}
.h2_c01168{height:110.151855px;}
.h4_c01168{height:114.771973px;}
.h0_c01168{height:775.950000px;}
.h1_c01168{height:776.250000px;}
.w2_c01168{width:104.875500px;}
.w0_c01168{width:535.425000px;}
.w1_c01168{width:535.500000px;}
.x0_c01168{left:0.000000px;}
.x6_c01168{left:16.650000px;}
.x2_c01168{left:18.600000px;}
.x7_c01168{left:19.650000px;}
.x5_c01168{left:21.300000px;}
.x3_c01168{left:22.350000px;}
.x4_c01168{left:24.000000px;}
.x8_c01168{left:76.950000px;}
.x1_c01168{left:139.650000px;}
.xa_c01168{left:219.526749px;}
.x9_c01168{left:229.500000px;}
@media print{
.v0_c01168{vertical-align:0.000000pt;}
.ls1_c01168{letter-spacing:-21.333333pt;}
.ls0_c01168{letter-spacing:0.000000pt;}
.ws0_c01168{word-spacing:-15.424000pt;}
.ws1_c01168{word-spacing:0.000000pt;}
._16_c01168{margin-left:-12.048000pt;}
._11_c01168{margin-left:-10.176000pt;}
._13_c01168{margin-left:-8.024000pt;}
._14_c01168{margin-left:-6.738667pt;}
._15_c01168{margin-left:-5.560000pt;}
._3_c01168{margin-left:-4.330667pt;}
._f_c01168{margin-left:-3.136000pt;}
._4_c01168{margin-left:-2.165333pt;}
._a_c01168{margin-left:-1.184000pt;}
._8_c01168{width:1.160000pt;}
._7_c01168{width:2.304000pt;}
._2_c01168{width:3.480000pt;}
._1_c01168{width:4.872000pt;}
._c_c01168{width:5.776000pt;}
._0_c01168{width:7.114667pt;}
._e_c01168{width:8.184000pt;}
._6_c01168{width:9.280000pt;}
._b_c01168{width:10.277333pt;}
._10_c01168{width:11.653333pt;}
._9_c01168{width:12.728000pt;}
._d_c01168{width:14.533333pt;}
._12_c01168{width:17.621333pt;}
._18_c01168{width:30.765333pt;}
._5_c01168{width:248.858667pt;}
._17_c01168{width:296.853333pt;}
.fs5_c01168{font-size:42.666667pt;}
.fs2_c01168{font-size:50.666667pt;}
.fs3_c01168{font-size:58.666667pt;}
.fs1_c01168{font-size:64.000000pt;}
.fs0_c01168{font-size:77.333333pt;}
.fs4_c01168{font-size:104.000000pt;}
.y0_c01168{bottom:0.000000pt;}
.y1f_c01168{bottom:2.760000pt;}
.y1e_c01168{bottom:6.425217pt;}
.y1d_c01168{bottom:36.906667pt;}
.y1c_c01168{bottom:59.040000pt;}
.y1b_c01168{bottom:81.840000pt;}
.y1a_c01168{bottom:103.173333pt;}
.y19_c01168{bottom:126.640000pt;}
.y18_c01168{bottom:148.506667pt;}
.y17_c01168{bottom:169.840000pt;}
.y16_c01168{bottom:192.106667pt;}
.y15_c01168{bottom:214.373333pt;}
.y14_c01168{bottom:236.640000pt;}
.y13_c01168{bottom:258.906667pt;}
.y12_c01168{bottom:279.573333pt;}
.y11_c01168{bottom:301.840000pt;}
.y10_c01168{bottom:322.773333pt;}
.yf_c01168{bottom:344.640000pt;}
.ye_c01168{bottom:365.706667pt;}
.yd_c01168{bottom:387.040000pt;}
.yc_c01168{bottom:409.173333pt;}
.yb_c01168{bottom:430.506667pt;}
.ya_c01168{bottom:452.640000pt;}
.y9_c01168{bottom:473.706667pt;}
.y8_c01168{bottom:496.773333pt;}
.y7_c01168{bottom:518.906667pt;}
.y6_c01168{bottom:540.506667pt;}
.y5_c01168{bottom:563.040000pt;}
.y4_c01168{bottom:585.040000pt;}
.y3_c01168{bottom:606.506667pt;}
.y2_c01168{bottom:628.506667pt;}
.y1_c01168{bottom:651.306667pt;}
.h5_c01168{height:11.733399pt;}
.h6_c01168{height:38.937500pt;}
.h3_c01168{height:81.031250pt;}
.h2_c01168{height:97.912760pt;}
.h4_c01168{height:102.019531pt;}
.h0_c01168{height:689.733333pt;}
.h1_c01168{height:690.000000pt;}
.w2_c01168{width:93.222667pt;}
.w0_c01168{width:475.933333pt;}
.w1_c01168{width:476.000000pt;}
.x0_c01168{left:0.000000pt;}
.x6_c01168{left:14.800000pt;}
.x2_c01168{left:16.533333pt;}
.x7_c01168{left:17.466667pt;}
.x5_c01168{left:18.933333pt;}
.x3_c01168{left:19.866667pt;}
.x4_c01168{left:21.333333pt;}
.x8_c01168{left:68.400000pt;}
.x1_c01168{left:124.133333pt;}
.xa_c01168{left:195.134888pt;}
.x9_c01168{left:204.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_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_34cf3f1d95d567e0ca81e996.woff2')format("woff");}.ff1_c01169{font-family:ff1_c01169;line-height:1.284180;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01169{font-family:ff2_c01169;line-height:1.284668;font-style:normal;font-weight:normal;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_9671360890c18ca37c905bf8.woff2')format("woff");}.ff3_c01169{font-family:ff3_c01169;line-height:1.568848;font-style:normal;font-weight:normal;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_f7623732c2dde2281227b661.woff2')format("woff");}.ff4_c01169{font-family:ff4_c01169;line-height:1.480469;font-style:normal;font-weight:normal;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_36754b1882c1b23a29554e9a.woff2')format("woff");}.ff5_c01169{font-family:ff5_c01169;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01169{font-family:ff6_c01169;line-height:1.219238;font-style: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);}
.v0_c01169{vertical-align:0.000000px;}
.ls0_c01169{letter-spacing:0.000000px;}
.ls1_c01169{letter-spacing:24.000000px;}
.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:-41.352000px;}
.ws1_c01169{word-spacing:-33.192000px;}
.ws2_c01169{word-spacing:0.000000px;}
._1d_c01169{margin-left:-40.080000px;}
._18_c01169{margin-left:-30.498000px;}
._11_c01169{margin-left:-29.064000px;}
._1e_c01169{margin-left:-25.812000px;}
._1b_c01169{margin-left:-24.624000px;}
._1c_c01169{margin-left:-22.512000px;}
._12_c01169{margin-left:-17.928000px;}
._1f_c01169{margin-left:-14.352000px;}
._6_c01169{margin-left:-13.176000px;}
._17_c01169{margin-left:-11.160000px;}
._3_c01169{margin-left:-8.640000px;}
._10_c01169{margin-left:-7.608000px;}
._8_c01169{margin-left:-6.552000px;}
._9_c01169{margin-left:-5.256000px;}
._1_c01169{margin-left:-3.192000px;}
._0_c01169{margin-left:-1.428000px;}
._2_c01169{width:1.512000px;}
._4_c01169{width:3.168000px;}
._5_c01169{width:4.176000px;}
._c_c01169{width:5.400000px;}
._d_c01169{width:7.008000px;}
._7_c01169{width:8.064000px;}
._15_c01169{width:9.432000px;}
._f_c01169{width:10.440000px;}
._e_c01169{width:12.168000px;}
._14_c01169{width:13.350000px;}
._b_c01169{width:14.676000px;}
._16_c01169{width:15.762000px;}
._20_c01169{width:18.360000px;}
._a_c01169{width:81.972000px;}
._13_c01169{width:112.356000px;}
._1a_c01169{width:138.714000px;}
._19_c01169{width:202.320000px;}
._21_c01169{width:528.474000px;}
.fc2_c01169{color:transparent;}
.fc1_c01169{color:rgb(128,128,128);}
.fc0_c01169{color:rgb(0,0,0);}
.fs4_c01169{font-size:48.000000px;}
.fs3_c01169{font-size:63.000000px;}
.fs1_c01169{font-size:72.000000px;}
.fs0_c01169{font-size:84.000000px;}
.fs2_c01169{font-size:87.000000px;}
.y0_c01169{bottom:0.000000px;}
.y1e_c01169{bottom:3.105000px;}
.y1d_c01169{bottom:7.228369px;}
.y1c_c01169{bottom:70.920000px;}
.y1b_c01169{bottom:98.520000px;}
.y1a_c01169{bottom:120.420000px;}
.y19_c01169{bottom:149.220000px;}
.y18_c01169{bottom:173.820000px;}
.y17_c01169{bottom:196.770000px;}
.y16_c01169{bottom:222.420000px;}
.y15_c01169{bottom:247.020000px;}
.y14_c01169{bottom:272.070000px;}
.y13_c01169{bottom:297.570000px;}
.y12_c01169{bottom:321.570000px;}
.y11_c01169{bottom:345.870000px;}
.y10_c01169{bottom:371.820000px;}
.yf_c01169{bottom:394.170000px;}
.ye_c01169{bottom:416.370000px;}
.yd_c01169{bottom:441.120000px;}
.yc_c01169{bottom:464.370000px;}
.yb_c01169{bottom:488.670000px;}
.ya_c01169{bottom:514.020000px;}
.y9_c01169{bottom:538.620000px;}
.y8_c01169{bottom:563.670000px;}
.y7_c01169{bottom:587.820000px;}
.y6_c01169{bottom:612.120000px;}
.y5_c01169{bottom:637.170000px;}
.y4_c01169{bottom:661.770000px;}
.y3_c01169{bottom:686.370000px;}
.y2_c01169{bottom:711.120000px;}
.y1_c01169{bottom:736.770000px;}
.h4_c01169{height:13.200073px;}
.h5_c01169{height:43.804688px;}
.h1_c01169{height:82.441406px;}
.h2_c01169{height:91.160156px;}
.h3_c01169{height:110.151855px;}
.h0_c01169{height:786.750000px;}
.w2_c01169{width:104.875500px;}
.w0_c01169{width:519.450000px;}
.w1_c01169{width:519.750000px;}
.x0_c01169{left:0.000000px;}
.x2_c01169{left:102.300000px;}
.x3_c01169{left:103.950000px;}
.x4_c01169{left:105.300000px;}
.x5_c01169{left:106.650000px;}
.x6_c01169{left:108.300000px;}
.x7_c01169{left:109.950000px;}
.x8_c01169{left:111.000000px;}
.x9_c01169{left:112.950000px;}
.xa_c01169{left:114.750000px;}
.xb_c01169{left:115.800000px;}
.xc_c01169{left:117.150000px;}
.xd_c01169{left:211.539230px;}
.x1_c01169{left:217.350000px;}
@media print{
.v0_c01169{vertical-align:0.000000pt;}
.ls0_c01169{letter-spacing:0.000000pt;}
.ls1_c01169{letter-spacing:21.333333pt;}
.ws0_c01169{word-spacing:-36.757333pt;}
.ws1_c01169{word-spacing:-29.504000pt;}
.ws2_c01169{word-spacing:0.000000pt;}
._1d_c01169{margin-left:-35.626667pt;}
._18_c01169{margin-left:-27.109333pt;}
._11_c01169{margin-left:-25.834667pt;}
._1e_c01169{margin-left:-22.944000pt;}
._1b_c01169{margin-left:-21.888000pt;}
._1c_c01169{margin-left:-20.010667pt;}
._12_c01169{margin-left:-15.936000pt;}
._1f_c01169{margin-left:-12.757333pt;}
._6_c01169{margin-left:-11.712000pt;}
._17_c01169{margin-left:-9.920000pt;}
._3_c01169{margin-left:-7.680000pt;}
._10_c01169{margin-left:-6.762667pt;}
._8_c01169{margin-left:-5.824000pt;}
._9_c01169{margin-left:-4.672000pt;}
._1_c01169{margin-left:-2.837333pt;}
._0_c01169{margin-left:-1.269333pt;}
._2_c01169{width:1.344000pt;}
._4_c01169{width:2.816000pt;}
._5_c01169{width:3.712000pt;}
._c_c01169{width:4.800000pt;}
._d_c01169{width:6.229333pt;}
._7_c01169{width:7.168000pt;}
._15_c01169{width:8.384000pt;}
._f_c01169{width:9.280000pt;}
._e_c01169{width:10.816000pt;}
._14_c01169{width:11.866667pt;}
._b_c01169{width:13.045333pt;}
._16_c01169{width:14.010667pt;}
._20_c01169{width:16.320000pt;}
._a_c01169{width:72.864000pt;}
._13_c01169{width:99.872000pt;}
._1a_c01169{width:123.301333pt;}
._19_c01169{width:179.840000pt;}
._21_c01169{width:469.754667pt;}
.fs4_c01169{font-size:42.666667pt;}
.fs3_c01169{font-size:56.000000pt;}
.fs1_c01169{font-size:64.000000pt;}
.fs0_c01169{font-size:74.666667pt;}
.fs2_c01169{font-size:77.333333pt;}
.y0_c01169{bottom:0.000000pt;}
.y1e_c01169{bottom:2.760000pt;}
.y1d_c01169{bottom:6.425217pt;}
.y1c_c01169{bottom:63.040000pt;}
.y1b_c01169{bottom:87.573333pt;}
.y1a_c01169{bottom:107.040000pt;}
.y19_c01169{bottom:132.640000pt;}
.y18_c01169{bottom:154.506667pt;}
.y17_c01169{bottom:174.906667pt;}
.y16_c01169{bottom:197.706667pt;}
.y15_c01169{bottom:219.573333pt;}
.y14_c01169{bottom:241.840000pt;}
.y13_c01169{bottom:264.506667pt;}
.y12_c01169{bottom:285.840000pt;}
.y11_c01169{bottom:307.440000pt;}
.y10_c01169{bottom:330.506667pt;}
.yf_c01169{bottom:350.373333pt;}
.ye_c01169{bottom:370.106667pt;}
.yd_c01169{bottom:392.106667pt;}
.yc_c01169{bottom:412.773333pt;}
.yb_c01169{bottom:434.373333pt;}
.ya_c01169{bottom:456.906667pt;}
.y9_c01169{bottom:478.773333pt;}
.y8_c01169{bottom:501.040000pt;}
.y7_c01169{bottom:522.506667pt;}
.y6_c01169{bottom:544.106667pt;}
.y5_c01169{bottom:566.373333pt;}
.y4_c01169{bottom:588.240000pt;}
.y3_c01169{bottom:610.106667pt;}
.y2_c01169{bottom:632.106667pt;}
.y1_c01169{bottom:654.906667pt;}
.h4_c01169{height:11.733399pt;}
.h5_c01169{height:38.937500pt;}
.h1_c01169{height:73.281250pt;}
.h2_c01169{height:81.031250pt;}
.h3_c01169{height:97.912760pt;}
.h0_c01169{height:699.333333pt;}
.w2_c01169{width:93.222667pt;}
.w0_c01169{width:461.733333pt;}
.w1_c01169{width:462.000000pt;}
.x0_c01169{left:0.000000pt;}
.x2_c01169{left:90.933333pt;}
.x3_c01169{left:92.400000pt;}
.x4_c01169{left:93.600000pt;}
.x5_c01169{left:94.800000pt;}
.x6_c01169{left:96.266667pt;}
.x7_c01169{left:97.733333pt;}
.x8_c01169{left:98.666667pt;}
.x9_c01169{left:100.400000pt;}
.xa_c01169{left:102.000000pt;}
.xb_c01169{left:102.933333pt;}
.xc_c01169{left:104.133333pt;}
.xd_c01169{left:188.034871pt;}
.x1_c01169{left:193.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c5ff23412a14ad21ebfc3361.woff2')format("woff");}.ff1_c01170{font-family:ff1_c01170;line-height:1.480469;font-style:normal;font-weight:normal;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_7113bd082a6d13052eb64595.woff2')format("woff");}.ff2_c01170{font-family:ff2_c01170;line-height:1.568848;font-style:normal;font-weight:normal;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_87c477db349edc7a29e0deff.woff2')format("woff");}.ff3_c01170{font-family:ff3_c01170;line-height:1.284668;font-style:normal;font-weight:normal;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_be3be06ad5ec8d5b9eb194e3.woff2')format("woff");}.ff4_c01170{font-family:ff4_c01170;line-height:1.575000;font-style:normal;font-weight:normal;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_61d5bee8b4e4dd2285793878.woff2')format("woff");}.ff5_c01170{font-family:ff5_c01170;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01170;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01170{font-family:ff6_c01170;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01170{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01170{vertical-align:0.000000px;}
.ls5_c01170{letter-spacing:-3.000000px;}
.ls3_c01170{letter-spacing:0.000000px;}
.ls4_c01170{letter-spacing:3.000000px;}
.ls1_c01170{letter-spacing:9.588000px;}
.ls2_c01170{letter-spacing:11.700000px;}
.ls0_c01170{letter-spacing:14.988000px;}
.sc__c01170{text-shadow:none;}
.sc0_c01170{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01170{-webkit-text-stroke:0px transparent;}
.sc0_c01170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01170{word-spacing:-30.051000px;}
.ws2_c01170{word-spacing:-19.977000px;}
.ws0_c01170{word-spacing:-17.352000px;}
.ws3_c01170{word-spacing:0.000000px;}
._19_c01170{margin-left:-28.980000px;}
._1c_c01170{margin-left:-21.723000px;}
._1a_c01170{margin-left:-20.574000px;}
._16_c01170{margin-left:-17.196000px;}
._1b_c01170{margin-left:-15.264000px;}
._15_c01170{margin-left:-12.888000px;}
._d_c01170{margin-left:-10.602000px;}
._c_c01170{margin-left:-8.676000px;}
._e_c01170{margin-left:-7.416000px;}
._10_c01170{margin-left:-6.384000px;}
._3_c01170{margin-left:-4.524000px;}
._2_c01170{margin-left:-2.697000px;}
._14_c01170{margin-left:-1.617000px;}
._8_c01170{width:1.224000px;}
._6_c01170{width:3.168000px;}
._1_c01170{width:4.872000px;}
._b_c01170{width:6.288000px;}
._0_c01170{width:7.395000px;}
._f_c01170{width:9.117000px;}
._a_c01170{width:10.344000px;}
._5_c01170{width:12.267000px;}
._9_c01170{width:14.112000px;}
._7_c01170{width:15.591000px;}
._1d_c01170{width:17.889000px;}
._11_c01170{width:19.146000px;}
._18_c01170{width:20.154000px;}
._1e_c01170{width:22.155000px;}
._13_c01170{width:25.704000px;}
._12_c01170{width:27.648000px;}
._4_c01170{width:250.038000px;}
._17_c01170{width:270.936000px;}
._1f_c01170{width:315.069000px;}
.fc2_c01170{color:transparent;}
.fc1_c01170{color:rgb(128,128,128);}
.fc0_c01170{color:rgb(0,0,0);}
.fs5_c01170{font-size:48.000000px;}
.fs3_c01170{font-size:63.000000px;}
.fs4_c01170{font-size:69.000000px;}
.fs1_c01170{font-size:72.000000px;}
.fs0_c01170{font-size:87.000000px;}
.fs2_c01170{font-size:93.000000px;}
.y0_c01170{bottom:0.000000px;}
.y1f_c01170{bottom:3.105000px;}
.y1e_c01170{bottom:7.228357px;}
.y1d_c01170{bottom:58.080000px;}
.y1c_c01170{bottom:87.780000px;}
.y1b_c01170{bottom:112.680000px;}
.y1a_c01170{bottom:138.480000px;}
.y19_c01170{bottom:163.380000px;}
.y18_c01170{bottom:187.080000px;}
.y17_c01170{bottom:213.330000px;}
.y16_c01170{bottom:238.980000px;}
.y15_c01170{bottom:263.880000px;}
.y14_c01170{bottom:286.830000px;}
.y13_c01170{bottom:313.830000px;}
.y12_c01170{bottom:338.580000px;}
.y11_c01170{bottom:362.880000px;}
.y10_c01170{bottom:386.130000px;}
.yf_c01170{bottom:410.430000px;}
.ye_c01170{bottom:435.330000px;}
.yd_c01170{bottom:459.330000px;}
.yc_c01170{bottom:484.080000px;}
.yb_c01170{bottom:508.980000px;}
.ya_c01170{bottom:531.930000px;}
.y9_c01170{bottom:556.980000px;}
.y8_c01170{bottom:581.880000px;}
.y7_c01170{bottom:606.780000px;}
.y6_c01170{bottom:630.780000px;}
.y5_c01170{bottom:656.130000px;}
.y4_c01170{bottom:680.730000px;}
.y3_c01170{bottom:706.680000px;}
.y2_c01170{bottom:730.980000px;}
.y1_c01170{bottom:756.030000px;}
.h6_c01170{height:13.200074px;}
.h7_c01170{height:43.804688px;}
.h5_c01170{height:87.361816px;}
.h4_c01170{height:91.160156px;}
.h2_c01170{height:101.825684px;}
.h3_c01170{height:117.748535px;}
.h1_c01170{height:791.250000px;}
.h0_c01170{height:791.400000px;}
.w2_c01170{width:104.875500px;}
.w0_c01170{width:535.425000px;}
.w1_c01170{width:535.500000px;}
.x0_c01170{left:0.000000px;}
.x2_c01170{left:32.100000px;}
.x3_c01170{left:35.100000px;}
.x6_c01170{left:36.150000px;}
.x4_c01170{left:37.500000px;}
.x8_c01170{left:39.150000px;}
.x5_c01170{left:40.200000px;}
.x7_c01170{left:41.250000px;}
.x1_c01170{left:150.450000px;}
.xb_c01170{left:219.526749px;}
.xa_c01170{left:247.650000px;}
.x9_c01170{left:311.850000px;}
@media print{
.v0_c01170{vertical-align:0.000000pt;}
.ls5_c01170{letter-spacing:-2.666667pt;}
.ls3_c01170{letter-spacing:0.000000pt;}
.ls4_c01170{letter-spacing:2.666667pt;}
.ls1_c01170{letter-spacing:8.522667pt;}
.ls2_c01170{letter-spacing:10.400000pt;}
.ls0_c01170{letter-spacing:13.322667pt;}
.ws1_c01170{word-spacing:-26.712000pt;}
.ws2_c01170{word-spacing:-17.757333pt;}
.ws0_c01170{word-spacing:-15.424000pt;}
.ws3_c01170{word-spacing:0.000000pt;}
._19_c01170{margin-left:-25.760000pt;}
._1c_c01170{margin-left:-19.309333pt;}
._1a_c01170{margin-left:-18.288000pt;}
._16_c01170{margin-left:-15.285333pt;}
._1b_c01170{margin-left:-13.568000pt;}
._15_c01170{margin-left:-11.456000pt;}
._d_c01170{margin-left:-9.424000pt;}
._c_c01170{margin-left:-7.712000pt;}
._e_c01170{margin-left:-6.592000pt;}
._10_c01170{margin-left:-5.674667pt;}
._3_c01170{margin-left:-4.021333pt;}
._2_c01170{margin-left:-2.397333pt;}
._14_c01170{margin-left:-1.437333pt;}
._8_c01170{width:1.088000pt;}
._6_c01170{width:2.816000pt;}
._1_c01170{width:4.330667pt;}
._b_c01170{width:5.589333pt;}
._0_c01170{width:6.573333pt;}
._f_c01170{width:8.104000pt;}
._a_c01170{width:9.194667pt;}
._5_c01170{width:10.904000pt;}
._9_c01170{width:12.544000pt;}
._7_c01170{width:13.858667pt;}
._1d_c01170{width:15.901333pt;}
._11_c01170{width:17.018667pt;}
._18_c01170{width:17.914667pt;}
._1e_c01170{width:19.693333pt;}
._13_c01170{width:22.848000pt;}
._12_c01170{width:24.576000pt;}
._4_c01170{width:222.256000pt;}
._17_c01170{width:240.832000pt;}
._1f_c01170{width:280.061333pt;}
.fs5_c01170{font-size:42.666667pt;}
.fs3_c01170{font-size:56.000000pt;}
.fs4_c01170{font-size:61.333333pt;}
.fs1_c01170{font-size:64.000000pt;}
.fs0_c01170{font-size:77.333333pt;}
.fs2_c01170{font-size:82.666667pt;}
.y0_c01170{bottom:0.000000pt;}
.y1f_c01170{bottom:2.760000pt;}
.y1e_c01170{bottom:6.425206pt;}
.y1d_c01170{bottom:51.626667pt;}
.y1c_c01170{bottom:78.026667pt;}
.y1b_c01170{bottom:100.160000pt;}
.y1a_c01170{bottom:123.093333pt;}
.y19_c01170{bottom:145.226667pt;}
.y18_c01170{bottom:166.293333pt;}
.y17_c01170{bottom:189.626667pt;}
.y16_c01170{bottom:212.426667pt;}
.y15_c01170{bottom:234.560000pt;}
.y14_c01170{bottom:254.960000pt;}
.y13_c01170{bottom:278.960000pt;}
.y12_c01170{bottom:300.960000pt;}
.y11_c01170{bottom:322.560000pt;}
.y10_c01170{bottom:343.226667pt;}
.yf_c01170{bottom:364.826667pt;}
.ye_c01170{bottom:386.960000pt;}
.yd_c01170{bottom:408.293333pt;}
.yc_c01170{bottom:430.293333pt;}
.yb_c01170{bottom:452.426667pt;}
.ya_c01170{bottom:472.826667pt;}
.y9_c01170{bottom:495.093333pt;}
.y8_c01170{bottom:517.226667pt;}
.y7_c01170{bottom:539.360000pt;}
.y6_c01170{bottom:560.693333pt;}
.y5_c01170{bottom:583.226667pt;}
.y4_c01170{bottom:605.093333pt;}
.y3_c01170{bottom:628.160000pt;}
.y2_c01170{bottom:649.760000pt;}
.y1_c01170{bottom:672.026667pt;}
.h6_c01170{height:11.733399pt;}
.h7_c01170{height:38.937500pt;}
.h5_c01170{height:77.654948pt;}
.h4_c01170{height:81.031250pt;}
.h2_c01170{height:90.511719pt;}
.h3_c01170{height:104.665365pt;}
.h1_c01170{height:703.333333pt;}
.h0_c01170{height:703.466667pt;}
.w2_c01170{width:93.222667pt;}
.w0_c01170{width:475.933333pt;}
.w1_c01170{width:476.000000pt;}
.x0_c01170{left:0.000000pt;}
.x2_c01170{left:28.533333pt;}
.x3_c01170{left:31.200000pt;}
.x6_c01170{left:32.133333pt;}
.x4_c01170{left:33.333333pt;}
.x8_c01170{left:34.800000pt;}
.x5_c01170{left:35.733333pt;}
.x7_c01170{left:36.666667pt;}
.x1_c01170{left:133.733333pt;}
.xb_c01170{left:195.134888pt;}
.xa_c01170{left:220.133333pt;}
.x9_c01170{left:277.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3320b3cb90a5e9c21c6f2d31.woff2')format("woff");}.ff1_c01171{font-family:ff1_c01171;line-height:1.568848;font-style:normal;font-weight:normal;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_b94596b7d327f9cd647e55d1.woff2')format("woff");}.ff2_c01171{font-family:ff2_c01171;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01171;src:url('chunks/assets/font_b21b51700246c146e8443fbc.woff2')format("woff");}.ff3_c01171{font-family:ff3_c01171;line-height:1.480469;font-style:normal;font-weight:normal;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_b1572d96107e83208c9bc2a7.woff2')format("woff");}.ff4_c01171{font-family:ff4_c01171;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01171;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01171{font-family:ff5_c01171;line-height:1.219238;font-style: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;}
.ls8_c01171{letter-spacing:-9.000000px;}
.ls9_c01171{letter-spacing:-3.000000px;}
.ls7_c01171{letter-spacing:0.000000px;}
.ls0_c01171{letter-spacing:0.900000px;}
.ls3_c01171{letter-spacing:3.588000px;}
.ls1_c01171{letter-spacing:5.388000px;}
.ls6_c01171{letter-spacing:7.788000px;}
.ls4_c01171{letter-spacing:10.188000px;}
.ls2_c01171{letter-spacing:14.988000px;}
.ls5_c01171{letter-spacing:31.788000px;}
.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;}
}
.ws2_c01171{word-spacing:-17.352000px;}
.ws0_c01171{word-spacing:-16.629000px;}
.ws4_c01171{word-spacing:-9.291000px;}
.ws1_c01171{word-spacing:-7.629000px;}
.ws3_c01171{word-spacing:-1.080000px;}
.ws5_c01171{word-spacing:0.000000px;}
._f_c01171{margin-left:-35.121000px;}
._1b_c01171{margin-left:-31.935000px;}
._1a_c01171{margin-left:-29.364000px;}
._10_c01171{margin-left:-21.390000px;}
._14_c01171{margin-left:-16.353000px;}
._12_c01171{margin-left:-14.352000px;}
._1c_c01171{margin-left:-12.972000px;}
._21_c01171{margin-left:-11.781000px;}
._15_c01171{margin-left:-10.749000px;}
._1_c01171{margin-left:-8.832000px;}
._13_c01171{margin-left:-7.038000px;}
._0_c01171{margin-left:-5.313000px;}
._16_c01171{margin-left:-4.032000px;}
._2_c01171{margin-left:-2.967000px;}
._3_c01171{margin-left:-1.863000px;}
._b_c01171{width:1.380000px;}
._6_c01171{width:2.553000px;}
._7_c01171{width:3.588000px;}
._4_c01171{width:4.692000px;}
._5_c01171{width:6.141000px;}
._8_c01171{width:7.590000px;}
._9_c01171{width:9.522000px;}
._19_c01171{width:10.626000px;}
._a_c01171{width:11.730000px;}
._d_c01171{width:13.041000px;}
._17_c01171{width:14.682000px;}
._c_c01171{width:17.733000px;}
._18_c01171{width:22.080000px;}
._e_c01171{width:34.983000px;}
._11_c01171{width:41.883000px;}
._20_c01171{width:91.857000px;}
._1d_c01171{width:111.972000px;}
._1f_c01171{width:315.441000px;}
._1e_c01171{width:669.960000px;}
.fc2_c01171{color:transparent;}
.fc1_c01171{color:rgb(128,128,128);}
.fc0_c01171{color:rgb(0,0,0);}
.fs4_c01171{font-size:48.000000px;}
.fs3_c01171{font-size:51.000000px;}
.fs2_c01171{font-size:63.000000px;}
.fs0_c01171{font-size:69.000000px;}
.fs1_c01171{font-size:72.000000px;}
.y0_c01171{bottom:0.000000px;}
.y1f_c01171{bottom:3.105000px;}
.y1e_c01171{bottom:7.228363px;}
.y1c_c01171{bottom:63.150000px;}
.y1d_c01171{bottom:81.000000px;}
.y1b_c01171{bottom:90.450000px;}
.y1a_c01171{bottom:118.200000px;}
.y19_c01171{bottom:143.100000px;}
.y18_c01171{bottom:168.000000px;}
.y17_c01171{bottom:192.750000px;}
.y16_c01171{bottom:219.300000px;}
.y15_c01171{bottom:243.900000px;}
.y14_c01171{bottom:268.950000px;}
.y13_c01171{bottom:295.350000px;}
.y12_c01171{bottom:321.900000px;}
.y11_c01171{bottom:344.550000px;}
.y10_c01171{bottom:368.550000px;}
.yf_c01171{bottom:394.200000px;}
.ye_c01171{bottom:419.550000px;}
.yd_c01171{bottom:442.350000px;}
.yc_c01171{bottom:466.350000px;}
.yb_c01171{bottom:490.950000px;}
.ya_c01171{bottom:516.000000px;}
.y9_c01171{bottom:541.350000px;}
.y8_c01171{bottom:565.950000px;}
.y7_c01171{bottom:591.000000px;}
.y6_c01171{bottom:615.900000px;}
.y5_c01171{bottom:640.950000px;}
.y4_c01171{bottom:665.850000px;}
.y3_c01171{bottom:690.900000px;}
.y2_c01171{bottom:716.100000px;}
.y1_c01171{bottom:740.850000px;}
.h6_c01171{height:13.200074px;}
.h7_c01171{height:43.804688px;}
.h5_c01171{height:64.571777px;}
.h2_c01171{height:87.361816px;}
.h3_c01171{height:91.160156px;}
.h4_c01171{height:91.760156px;}
.h1_c01171{height:801.750000px;}
.h0_c01171{height:801.900000px;}
.w2_c01171{width:104.875500px;}
.w0_c01171{width:526.200000px;}
.w1_c01171{width:526.500000px;}
.x0_c01171{left:0.000000px;}
.x1_c01171{left:99.600000px;}
.x2_c01171{left:100.950000px;}
.x3_c01171{left:102.150000px;}
.x4_c01171{left:103.200000px;}
.x5_c01171{left:104.250000px;}
.x6_c01171{left:106.050000px;}
.x7_c01171{left:107.700000px;}
.xa_c01171{left:113.400000px;}
.x8_c01171{left:132.000000px;}
.x9_c01171{left:139.050000px;}
.xb_c01171{left:214.914230px;}
@media print{
.v0_c01171{vertical-align:0.000000pt;}
.ls8_c01171{letter-spacing:-8.000000pt;}
.ls9_c01171{letter-spacing:-2.666667pt;}
.ls7_c01171{letter-spacing:0.000000pt;}
.ls0_c01171{letter-spacing:0.800000pt;}
.ls3_c01171{letter-spacing:3.189333pt;}
.ls1_c01171{letter-spacing:4.789333pt;}
.ls6_c01171{letter-spacing:6.922667pt;}
.ls4_c01171{letter-spacing:9.056000pt;}
.ls2_c01171{letter-spacing:13.322667pt;}
.ls5_c01171{letter-spacing:28.256000pt;}
.ws2_c01171{word-spacing:-15.424000pt;}
.ws0_c01171{word-spacing:-14.781333pt;}
.ws4_c01171{word-spacing:-8.258667pt;}
.ws1_c01171{word-spacing:-6.781333pt;}
.ws3_c01171{word-spacing:-0.960000pt;}
.ws5_c01171{word-spacing:0.000000pt;}
._f_c01171{margin-left:-31.218667pt;}
._1b_c01171{margin-left:-28.386667pt;}
._1a_c01171{margin-left:-26.101333pt;}
._10_c01171{margin-left:-19.013333pt;}
._14_c01171{margin-left:-14.536000pt;}
._12_c01171{margin-left:-12.757333pt;}
._1c_c01171{margin-left:-11.530667pt;}
._21_c01171{margin-left:-10.472000pt;}
._15_c01171{margin-left:-9.554667pt;}
._1_c01171{margin-left:-7.850667pt;}
._13_c01171{margin-left:-6.256000pt;}
._0_c01171{margin-left:-4.722667pt;}
._16_c01171{margin-left:-3.584000pt;}
._2_c01171{margin-left:-2.637333pt;}
._3_c01171{margin-left:-1.656000pt;}
._b_c01171{width:1.226667pt;}
._6_c01171{width:2.269333pt;}
._7_c01171{width:3.189333pt;}
._4_c01171{width:4.170667pt;}
._5_c01171{width:5.458667pt;}
._8_c01171{width:6.746667pt;}
._9_c01171{width:8.464000pt;}
._19_c01171{width:9.445333pt;}
._a_c01171{width:10.426667pt;}
._d_c01171{width:11.592000pt;}
._17_c01171{width:13.050667pt;}
._c_c01171{width:15.762667pt;}
._18_c01171{width:19.626667pt;}
._e_c01171{width:31.096000pt;}
._11_c01171{width:37.229333pt;}
._20_c01171{width:81.650667pt;}
._1d_c01171{width:99.530667pt;}
._1f_c01171{width:280.392000pt;}
._1e_c01171{width:595.520000pt;}
.fs4_c01171{font-size:42.666667pt;}
.fs3_c01171{font-size:45.333333pt;}
.fs2_c01171{font-size:56.000000pt;}
.fs0_c01171{font-size:61.333333pt;}
.fs1_c01171{font-size:64.000000pt;}
.y0_c01171{bottom:0.000000pt;}
.y1f_c01171{bottom:2.760000pt;}
.y1e_c01171{bottom:6.425212pt;}
.y1c_c01171{bottom:56.133333pt;}
.y1d_c01171{bottom:72.000000pt;}
.y1b_c01171{bottom:80.400000pt;}
.y1a_c01171{bottom:105.066667pt;}
.y19_c01171{bottom:127.200000pt;}
.y18_c01171{bottom:149.333333pt;}
.y17_c01171{bottom:171.333333pt;}
.y16_c01171{bottom:194.933333pt;}
.y15_c01171{bottom:216.800000pt;}
.y14_c01171{bottom:239.066667pt;}
.y13_c01171{bottom:262.533333pt;}
.y12_c01171{bottom:286.133333pt;}
.y11_c01171{bottom:306.266667pt;}
.y10_c01171{bottom:327.600000pt;}
.yf_c01171{bottom:350.400000pt;}
.ye_c01171{bottom:372.933333pt;}
.yd_c01171{bottom:393.200000pt;}
.yc_c01171{bottom:414.533333pt;}
.yb_c01171{bottom:436.400000pt;}
.ya_c01171{bottom:458.666667pt;}
.y9_c01171{bottom:481.200000pt;}
.y8_c01171{bottom:503.066667pt;}
.y7_c01171{bottom:525.333333pt;}
.y6_c01171{bottom:547.466667pt;}
.y5_c01171{bottom:569.733333pt;}
.y4_c01171{bottom:591.866667pt;}
.y3_c01171{bottom:614.133333pt;}
.y2_c01171{bottom:636.533333pt;}
.y1_c01171{bottom:658.533333pt;}
.h6_c01171{height:11.733399pt;}
.h7_c01171{height:38.937500pt;}
.h5_c01171{height:57.397135pt;}
.h2_c01171{height:77.654948pt;}
.h3_c01171{height:81.031250pt;}
.h4_c01171{height:81.564583pt;}
.h1_c01171{height:712.666667pt;}
.h0_c01171{height:712.800000pt;}
.w2_c01171{width:93.222667pt;}
.w0_c01171{width:467.733333pt;}
.w1_c01171{width:468.000000pt;}
.x0_c01171{left:0.000000pt;}
.x1_c01171{left:88.533333pt;}
.x2_c01171{left:89.733333pt;}
.x3_c01171{left:90.800000pt;}
.x4_c01171{left:91.733333pt;}
.x5_c01171{left:92.666667pt;}
.x6_c01171{left:94.266667pt;}
.x7_c01171{left:95.733333pt;}
.xa_c01171{left:100.800000pt;}
.x8_c01171{left:117.333333pt;}
.x9_c01171{left:123.600000pt;}
.xb_c01171{left:191.034871pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_df9262726ad38e5f0c5d45ee.woff2')format("woff");}.ff1_c01172{font-family:ff1_c01172;line-height:1.284180;font-style:normal;font-weight:normal;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_d960efaaa93e01b50a174d4c.woff2')format("woff");}.ff2_c01172{font-family:ff2_c01172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01172;src:url('chunks/assets/font_dd804b07b30a2b1d11782140.woff2')format("woff");}.ff3_c01172{font-family:ff3_c01172;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01172;src:url('chunks/assets/font_5888856579842fc336bbe324.woff2')format("woff");}.ff4_c01172{font-family:ff4_c01172;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01172;src:url('chunks/assets/font_8f10d75eb1ae184cb7d7f378.woff2')format("woff");}.ff5_c01172{font-family:ff5_c01172;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01172;src:url('chunks/assets/font_450ef0fbbff6990bacc5ba23.woff2')format("woff");}.ff6_c01172{font-family:ff6_c01172;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01172;src:url('chunks/assets/font_350eb55a5e58486f731ca5c7.woff2')format("woff");}.ff7_c01172{font-family:ff7_c01172;line-height:1.568848;font-style:normal;font-weight: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_c01172;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff8_c01172{font-family:ff8_c01172;line-height:1.219238;font-style: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);}
.v0_c01172{vertical-align:0.000000px;}
.ls0_c01172{letter-spacing:0.000000px;}
.ls1_c01172{letter-spacing:3.000000px;}
.ls2_c01172{letter-spacing:6.000000px;}
.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;}
}
.ws1_c01172{word-spacing:-83.685000px;}
.ws0_c01172{word-spacing:-42.000000px;}
.ws2_c01172{word-spacing:0.000000px;}
._19_c01172{margin-left:-30.375000px;}
._1d_c01172{margin-left:-22.779000px;}
._7_c01172{margin-left:-15.408000px;}
._6_c01172{margin-left:-13.824000px;}
._15_c01172{margin-left:-10.584000px;}
._10_c01172{margin-left:-9.144000px;}
._8_c01172{margin-left:-8.064000px;}
._14_c01172{margin-left:-6.144000px;}
._16_c01172{margin-left:-4.998000px;}
._d_c01172{margin-left:-3.624000px;}
._9_c01172{margin-left:-1.680000px;}
._5_c01172{width:1.539000px;}
._2_c01172{width:2.772000px;}
._1_c01172{width:4.368000px;}
._3_c01172{width:5.376000px;}
._0_c01172{width:6.888000px;}
._e_c01172{width:8.652000px;}
._c_c01172{width:10.080000px;}
._b_c01172{width:11.757000px;}
._a_c01172{width:13.638000px;}
._f_c01172{width:16.041000px;}
._12_c01172{width:17.427000px;}
._11_c01172{width:18.993000px;}
._13_c01172{width:21.186000px;}
._17_c01172{width:37.848000px;}
._18_c01172{width:80.994000px;}
._1a_c01172{width:129.450000px;}
._4_c01172{width:269.304000px;}
._1e_c01172{width:316.800000px;}
._1c_c01172{width:395.421000px;}
._1b_c01172{width:744.324000px;}
.fc2_c01172{color:transparent;}
.fc1_c01172{color:rgb(128,128,128);}
.fc0_c01172{color:rgb(0,0,0);}
.fs3_c01172{font-size:39.000000px;}
.fs9_c01172{font-size:48.000000px;}
.fs6_c01172{font-size:57.000000px;}
.fs7_c01172{font-size:66.000000px;}
.fs2_c01172{font-size:72.000000px;}
.fs4_c01172{font-size:75.000000px;}
.fs1_c01172{font-size:81.000000px;}
.fs0_c01172{font-size:84.000000px;}
.fs8_c01172{font-size:105.000000px;}
.fs5_c01172{font-size:189.000000px;}
.y0_c01172{bottom:0.000000px;}
.y1b_c01172{bottom:3.105000px;}
.y1a_c01172{bottom:7.228355px;}
.y19_c01172{bottom:50.835000px;}
.y18_c01172{bottom:129.285000px;}
.y17_c01172{bottom:154.485000px;}
.y16_c01172{bottom:254.385000px;}
.y15_c01172{bottom:278.985000px;}
.y12_c01172{bottom:303.885000px;}
.y14_c01172{bottom:304.635000px;}
.y13_c01172{bottom:329.985000px;}
.y11_c01172{bottom:352.935000px;}
.y10_c01172{bottom:376.935000px;}
.yf_c01172{bottom:401.985000px;}
.ye_c01172{bottom:426.285000px;}
.yd_c01172{bottom:451.785000px;}
.yc_c01172{bottom:474.735000px;}
.yb_c01172{bottom:499.785000px;}
.ya_c01172{bottom:523.485000px;}
.y9_c01172{bottom:548.685000px;}
.y8_c01172{bottom:572.685000px;}
.y7_c01172{bottom:597.735000px;}
.y6_c01172{bottom:622.335000px;}
.y5_c01172{bottom:647.685000px;}
.y4_c01172{bottom:672.885000px;}
.y3_c01172{bottom:698.835000px;}
.y2_c01172{bottom:721.785000px;}
.y1_c01172{bottom:748.785000px;}
.h9_c01172{height:13.200074px;}
.h4_c01172{height:41.613000px;}
.ha_c01172{height:43.804688px;}
.h6_c01172{height:55.942383px;}
.h7_c01172{height:75.585938px;}
.h2_c01172{height:82.400391px;}
.h3_c01172{height:91.160156px;}
.h8_c01172{height:132.941895px;}
.h5_c01172{height:201.663000px;}
.h0_c01172{height:797.025000px;}
.h1_c01172{height:797.250000px;}
.w2_c01172{width:104.875500px;}
.w0_c01172{width:534.600000px;}
.w1_c01172{width:534.750000px;}
.x0_c01172{left:0.000000px;}
.x3_c01172{left:27.750000px;}
.x2_c01172{left:28.800000px;}
.x8_c01172{left:30.150000px;}
.x4_c01172{left:31.500000px;}
.x5_c01172{left:32.700000px;}
.x7_c01172{left:34.800000px;}
.x6_c01172{left:40.200000px;}
.x1_c01172{left:146.700000px;}
.xa_c01172{left:219.114258px;}
.x9_c01172{left:263.850000px;}
@media print{
.v0_c01172{vertical-align:0.000000pt;}
.ls0_c01172{letter-spacing:0.000000pt;}
.ls1_c01172{letter-spacing:2.666667pt;}
.ls2_c01172{letter-spacing:5.333333pt;}
.ws1_c01172{word-spacing:-74.386667pt;}
.ws0_c01172{word-spacing:-37.333333pt;}
.ws2_c01172{word-spacing:0.000000pt;}
._19_c01172{margin-left:-27.000000pt;}
._1d_c01172{margin-left:-20.248000pt;}
._7_c01172{margin-left:-13.696000pt;}
._6_c01172{margin-left:-12.288000pt;}
._15_c01172{margin-left:-9.408000pt;}
._10_c01172{margin-left:-8.128000pt;}
._8_c01172{margin-left:-7.168000pt;}
._14_c01172{margin-left:-5.461333pt;}
._16_c01172{margin-left:-4.442667pt;}
._d_c01172{margin-left:-3.221333pt;}
._9_c01172{margin-left:-1.493333pt;}
._5_c01172{width:1.368000pt;}
._2_c01172{width:2.464000pt;}
._1_c01172{width:3.882667pt;}
._3_c01172{width:4.778667pt;}
._0_c01172{width:6.122667pt;}
._e_c01172{width:7.690667pt;}
._c_c01172{width:8.960000pt;}
._b_c01172{width:10.450667pt;}
._a_c01172{width:12.122667pt;}
._f_c01172{width:14.258667pt;}
._12_c01172{width:15.490667pt;}
._11_c01172{width:16.882667pt;}
._13_c01172{width:18.832000pt;}
._17_c01172{width:33.642667pt;}
._18_c01172{width:71.994667pt;}
._1a_c01172{width:115.066667pt;}
._4_c01172{width:239.381333pt;}
._1e_c01172{width:281.600000pt;}
._1c_c01172{width:351.485333pt;}
._1b_c01172{width:661.621333pt;}
.fs3_c01172{font-size:34.666667pt;}
.fs9_c01172{font-size:42.666667pt;}
.fs6_c01172{font-size:50.666667pt;}
.fs7_c01172{font-size:58.666667pt;}
.fs2_c01172{font-size:64.000000pt;}
.fs4_c01172{font-size:66.666667pt;}
.fs1_c01172{font-size:72.000000pt;}
.fs0_c01172{font-size:74.666667pt;}
.fs8_c01172{font-size:93.333333pt;}
.fs5_c01172{font-size:168.000000pt;}
.y0_c01172{bottom:0.000000pt;}
.y1b_c01172{bottom:2.760000pt;}
.y1a_c01172{bottom:6.425204pt;}
.y19_c01172{bottom:45.186667pt;}
.y18_c01172{bottom:114.920000pt;}
.y17_c01172{bottom:137.320000pt;}
.y16_c01172{bottom:226.120000pt;}
.y15_c01172{bottom:247.986667pt;}
.y12_c01172{bottom:270.120000pt;}
.y14_c01172{bottom:270.786667pt;}
.y13_c01172{bottom:293.320000pt;}
.y11_c01172{bottom:313.720000pt;}
.y10_c01172{bottom:335.053333pt;}
.yf_c01172{bottom:357.320000pt;}
.ye_c01172{bottom:378.920000pt;}
.yd_c01172{bottom:401.586667pt;}
.yc_c01172{bottom:421.986667pt;}
.yb_c01172{bottom:444.253333pt;}
.ya_c01172{bottom:465.320000pt;}
.y9_c01172{bottom:487.720000pt;}
.y8_c01172{bottom:509.053333pt;}
.y7_c01172{bottom:531.320000pt;}
.y6_c01172{bottom:553.186667pt;}
.y5_c01172{bottom:575.720000pt;}
.y4_c01172{bottom:598.120000pt;}
.y3_c01172{bottom:621.186667pt;}
.y2_c01172{bottom:641.586667pt;}
.y1_c01172{bottom:665.586667pt;}
.h9_c01172{height:11.733399pt;}
.h4_c01172{height:36.989333pt;}
.ha_c01172{height:38.937500pt;}
.h6_c01172{height:49.726562pt;}
.h7_c01172{height:67.187500pt;}
.h2_c01172{height:73.244792pt;}
.h3_c01172{height:81.031250pt;}
.h8_c01172{height:118.170573pt;}
.h5_c01172{height:179.256000pt;}
.h0_c01172{height:708.466667pt;}
.h1_c01172{height:708.666667pt;}
.w2_c01172{width:93.222667pt;}
.w0_c01172{width:475.200000pt;}
.w1_c01172{width:475.333333pt;}
.x0_c01172{left:0.000000pt;}
.x3_c01172{left:24.666667pt;}
.x2_c01172{left:25.600000pt;}
.x8_c01172{left:26.800000pt;}
.x4_c01172{left:28.000000pt;}
.x5_c01172{left:29.066667pt;}
.x7_c01172{left:30.933333pt;}
.x6_c01172{left:35.733333pt;}
.x1_c01172{left:130.400000pt;}
.xa_c01172{left:194.768229pt;}
.x9_c01172{left:234.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_69b0df70e4de69c2aeeff8b3.woff2')format("woff");}.ff1_c01173{font-family:ff1_c01173;line-height:1.284668;font-style:normal;font-weight:normal;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_8837dc3b81a8e64989111350.woff2')format("woff");}.ff2_c01173{font-family:ff2_c01173;line-height:1.568848;font-style:normal;font-weight:normal;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_90fc523ec29a5589d24ad92a.woff2')format("woff");}.ff3_c01173{font-family:ff3_c01173;line-height:1.480469;font-style:normal;font-weight:normal;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_16e2d30a50b951ff5c461255.woff2')format("woff");}.ff4_c01173{font-family:ff4_c01173;line-height:1.575000;font-style:normal;font-weight:normal;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_68a88099ec69c9568e81f002.woff2')format("woff");}.ff5_c01173{font-family:ff5_c01173;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01173;src:url('chunks/assets/font_42a562263ef58e0e083059aa.woff2')format("woff");}.ff6_c01173{font-family:ff6_c01173;line-height:1.575000;font-style:normal;font-weight: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_c01173;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c01173{font-family:ff7_c01173;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c01173{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m0_c01173{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01173{vertical-align:0.000000px;}
.ls4_c01173{letter-spacing:-3.000000px;}
.ls3_c01173{letter-spacing:0.000000px;}
.ls1_c01173{letter-spacing:5.988000px;}
.ls0_c01173{letter-spacing:6.588000px;}
.ls2_c01173{letter-spacing:11.988000px;}
.sc__c01173{text-shadow:none;}
.sc0_c01173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01173{-webkit-text-stroke:0px transparent;}
.sc0_c01173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01173{word-spacing:-30.426000px;}
.ws4_c01173{word-spacing:-30.051000px;}
.ws0_c01173{word-spacing:-18.750000px;}
.ws2_c01173{word-spacing:-17.352000px;}
.ws3_c01173{word-spacing:-12.210000px;}
.ws5_c01173{word-spacing:0.000000px;}
._1e_c01173{margin-left:-19.584000px;}
._18_c01173{margin-left:-12.633000px;}
._2_c01173{margin-left:-11.250000px;}
._10_c01173{margin-left:-10.050000px;}
._7_c01173{margin-left:-8.550000px;}
._8_c01173{margin-left:-7.500000px;}
._f_c01173{margin-left:-6.375000px;}
._6_c01173{margin-left:-5.250000px;}
._a_c01173{margin-left:-4.050000px;}
._9_c01173{margin-left:-2.850000px;}
._3_c01173{margin-left:-1.800000px;}
._d_c01173{width:1.050000px;}
._1_c01173{width:2.550000px;}
._5_c01173{width:4.275000px;}
._4_c01173{width:6.000000px;}
._e_c01173{width:7.050000px;}
._0_c01173{width:8.100000px;}
._b_c01173{width:9.900000px;}
._11_c01173{width:11.100000px;}
._13_c01173{width:12.375000px;}
._16_c01173{width:13.812000px;}
._1a_c01173{width:15.192000px;}
._14_c01173{width:17.475000px;}
._17_c01173{width:19.293000px;}
._15_c01173{width:20.379000px;}
._12_c01173{width:26.994000px;}
._c_c01173{width:32.175000px;}
._1d_c01173{width:54.753000px;}
._19_c01173{width:60.381000px;}
._1b_c01173{width:84.912000px;}
._1f_c01173{width:111.222000px;}
._20_c01173{width:122.904000px;}
._1c_c01173{width:219.141000px;}
._21_c01173{width:458.316000px;}
.fc2_c01173{color:transparent;}
.fc1_c01173{color:rgb(128,128,128);}
.fc0_c01173{color:rgb(0,0,0);}
.fs7_c01173{font-size:48.000000px;}
.fs5_c01173{font-size:63.000000px;}
.fs2_c01173{font-size:66.000000px;}
.fs6_c01173{font-size:69.000000px;}
.fs3_c01173{font-size:72.000000px;}
.fs0_c01173{font-size:75.000000px;}
.fs1_c01173{font-size:78.000000px;}
.fs4_c01173{font-size:90.000000px;}
.y0_c01173{bottom:0.000000px;}
.y1d_c01173{bottom:3.105000px;}
.y1c_c01173{bottom:7.228357px;}
.y1b_c01173{bottom:45.180000px;}
.y1a_c01173{bottom:73.680000px;}
.y19_c01173{bottom:101.880000px;}
.y18_c01173{bottom:124.230000px;}
.y17_c01173{bottom:149.580000px;}
.y16_c01173{bottom:174.780000px;}
.y15_c01173{bottom:225.180000px;}
.y14_c01173{bottom:250.830000px;}
.y13_c01173{bottom:275.130000px;}
.y12_c01173{bottom:300.030000px;}
.y11_c01173{bottom:326.430000px;}
.y10_c01173{bottom:350.430000px;}
.yf_c01173{bottom:374.580000px;}
.ye_c01173{bottom:396.180000px;}
.yd_c01173{bottom:423.330000px;}
.yc_c01173{bottom:446.880000px;}
.yb_c01173{bottom:470.580000px;}
.ya_c01173{bottom:496.230000px;}
.y9_c01173{bottom:521.880000px;}
.y8_c01173{bottom:546.480000px;}
.y7_c01173{bottom:570.330000px;}
.y6_c01173{bottom:595.980000px;}
.y5_c01173{bottom:620.280000px;}
.y4_c01173{bottom:645.030000px;}
.y3_c01173{bottom:670.680000px;}
.y2_c01173{bottom:695.580000px;}
.y1_c01173{bottom:719.880000px;}
.ha_c01173{height:13.200074px;}
.hb_c01173{height:43.804688px;}
.h7_c01173{height:70.422000px;}
.h2_c01173{height:73.608398px;}
.h5_c01173{height:77.247070px;}
.h4_c01173{height:83.563477px;}
.h9_c01173{height:87.361816px;}
.h8_c01173{height:90.703125px;}
.h6_c01173{height:91.160156px;}
.h3_c01173{height:98.756836px;}
.h0_c01173{height:788.700000px;}
.h1_c01173{height:789.000000px;}
.w2_c01173{width:104.875500px;}
.w1_c01173{width:536.250000px;}
.w0_c01173{width:536.475000px;}
.x0_c01173{left:0.000000px;}
.x7_c01173{left:43.950000px;}
.x1_c01173{left:117.150000px;}
.x2_c01173{left:118.350000px;}
.x3_c01173{left:119.850000px;}
.x6_c01173{left:120.900000px;}
.xa_c01173{left:122.550000px;}
.xc_c01173{left:126.300000px;}
.xd_c01173{left:145.500000px;}
.xb_c01173{left:160.650000px;}
.xf_c01173{left:220.051758px;}
.xe_c01173{left:244.800000px;}
.x4_c01173{left:251.100000px;}
.x5_c01173{left:257.100000px;}
.x8_c01173{left:352.350000px;}
.x9_c01173{left:363.900000px;}
@media print{
.v0_c01173{vertical-align:0.000000pt;}
.ls4_c01173{letter-spacing:-2.666667pt;}
.ls3_c01173{letter-spacing:0.000000pt;}
.ls1_c01173{letter-spacing:5.322667pt;}
.ls0_c01173{letter-spacing:5.856000pt;}
.ls2_c01173{letter-spacing:10.656000pt;}
.ws1_c01173{word-spacing:-27.045333pt;}
.ws4_c01173{word-spacing:-26.712000pt;}
.ws0_c01173{word-spacing:-16.666667pt;}
.ws2_c01173{word-spacing:-15.424000pt;}
.ws3_c01173{word-spacing:-10.853333pt;}
.ws5_c01173{word-spacing:0.000000pt;}
._1e_c01173{margin-left:-17.408000pt;}
._18_c01173{margin-left:-11.229333pt;}
._2_c01173{margin-left:-10.000000pt;}
._10_c01173{margin-left:-8.933333pt;}
._7_c01173{margin-left:-7.600000pt;}
._8_c01173{margin-left:-6.666667pt;}
._f_c01173{margin-left:-5.666667pt;}
._6_c01173{margin-left:-4.666667pt;}
._a_c01173{margin-left:-3.600000pt;}
._9_c01173{margin-left:-2.533333pt;}
._3_c01173{margin-left:-1.600000pt;}
._d_c01173{width:0.933333pt;}
._1_c01173{width:2.266667pt;}
._5_c01173{width:3.800000pt;}
._4_c01173{width:5.333333pt;}
._e_c01173{width:6.266667pt;}
._0_c01173{width:7.200000pt;}
._b_c01173{width:8.800000pt;}
._11_c01173{width:9.866667pt;}
._13_c01173{width:11.000000pt;}
._16_c01173{width:12.277333pt;}
._1a_c01173{width:13.504000pt;}
._14_c01173{width:15.533333pt;}
._17_c01173{width:17.149333pt;}
._15_c01173{width:18.114667pt;}
._12_c01173{width:23.994667pt;}
._c_c01173{width:28.600000pt;}
._1d_c01173{width:48.669333pt;}
._19_c01173{width:53.672000pt;}
._1b_c01173{width:75.477333pt;}
._1f_c01173{width:98.864000pt;}
._20_c01173{width:109.248000pt;}
._1c_c01173{width:194.792000pt;}
._21_c01173{width:407.392000pt;}
.fs7_c01173{font-size:42.666667pt;}
.fs5_c01173{font-size:56.000000pt;}
.fs2_c01173{font-size:58.666667pt;}
.fs6_c01173{font-size:61.333333pt;}
.fs3_c01173{font-size:64.000000pt;}
.fs0_c01173{font-size:66.666667pt;}
.fs1_c01173{font-size:69.333333pt;}
.fs4_c01173{font-size:80.000000pt;}
.y0_c01173{bottom:0.000000pt;}
.y1d_c01173{bottom:2.760000pt;}
.y1c_c01173{bottom:6.425206pt;}
.y1b_c01173{bottom:40.160000pt;}
.y1a_c01173{bottom:65.493333pt;}
.y19_c01173{bottom:90.560000pt;}
.y18_c01173{bottom:110.426667pt;}
.y17_c01173{bottom:132.960000pt;}
.y16_c01173{bottom:155.360000pt;}
.y15_c01173{bottom:200.160000pt;}
.y14_c01173{bottom:222.960000pt;}
.y13_c01173{bottom:244.560000pt;}
.y12_c01173{bottom:266.693333pt;}
.y11_c01173{bottom:290.160000pt;}
.y10_c01173{bottom:311.493333pt;}
.yf_c01173{bottom:332.960000pt;}
.ye_c01173{bottom:352.160000pt;}
.yd_c01173{bottom:376.293333pt;}
.yc_c01173{bottom:397.226667pt;}
.yb_c01173{bottom:418.293333pt;}
.ya_c01173{bottom:441.093333pt;}
.y9_c01173{bottom:463.893333pt;}
.y8_c01173{bottom:485.760000pt;}
.y7_c01173{bottom:506.960000pt;}
.y6_c01173{bottom:529.760000pt;}
.y5_c01173{bottom:551.360000pt;}
.y4_c01173{bottom:573.360000pt;}
.y3_c01173{bottom:596.160000pt;}
.y2_c01173{bottom:618.293333pt;}
.y1_c01173{bottom:639.893333pt;}
.ha_c01173{height:11.733399pt;}
.hb_c01173{height:38.937500pt;}
.h7_c01173{height:62.597333pt;}
.h2_c01173{height:65.429688pt;}
.h5_c01173{height:68.664062pt;}
.h4_c01173{height:74.278646pt;}
.h9_c01173{height:77.654948pt;}
.h8_c01173{height:80.625000pt;}
.h6_c01173{height:81.031250pt;}
.h3_c01173{height:87.783854pt;}
.h0_c01173{height:701.066667pt;}
.h1_c01173{height:701.333333pt;}
.w2_c01173{width:93.222667pt;}
.w1_c01173{width:476.666667pt;}
.w0_c01173{width:476.866667pt;}
.x0_c01173{left:0.000000pt;}
.x7_c01173{left:39.066667pt;}
.x1_c01173{left:104.133333pt;}
.x2_c01173{left:105.200000pt;}
.x3_c01173{left:106.533333pt;}
.x6_c01173{left:107.466667pt;}
.xa_c01173{left:108.933333pt;}
.xc_c01173{left:112.266667pt;}
.xd_c01173{left:129.333333pt;}
.xb_c01173{left:142.800000pt;}
.xf_c01173{left:195.601563pt;}
.xe_c01173{left:217.600000pt;}
.x4_c01173{left:223.200000pt;}
.x5_c01173{left:228.533333pt;}
.x8_c01173{left:313.200000pt;}
.x9_c01173{left:323.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9a262a206229df1daedc2d58.woff2')format("woff");}.ff1_c01174{font-family:ff1_c01174;line-height:1.480469;font-style:normal;font-weight:normal;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_025cca2dfbb47ac45c9bb64f.woff2')format("woff");}.ff2_c01174{font-family:ff2_c01174;line-height:1.568848;font-style:normal;font-weight:normal;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_e6931454da83244d1a98d457.woff2')format("woff");}.ff3_c01174{font-family:ff3_c01174;line-height:1.284668;font-style:normal;font-weight:normal;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_399178858a3a405b14ad5ab5.woff2')format("woff");}.ff4_c01174{font-family:ff4_c01174;line-height:1.284180;font-style:normal;font-weight:normal;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_f60f8bc130ebe696829a95d5.woff2')format("woff");}.ff5_c01174{font-family:ff5_c01174;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01174;src:url('chunks/assets/font_7c956352d4805a0005edb57e.woff2')format("woff");}.ff6_c01174{font-family:ff6_c01174;line-height:1.575000;font-style:normal;font-weight: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_c01174;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c01174{font-family:ff7_c01174;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01174{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01174{vertical-align:0.000000px;}
.v1_c01174{vertical-align:77.400000px;}
.ls2_c01174{letter-spacing:0.000000px;}
.ls0_c01174{letter-spacing:0.714000px;}
.ls1_c01174{letter-spacing:29.988000px;}
.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;}
}
.ws1_c01174{word-spacing:-42.000000px;}
.ws2_c01174{word-spacing:-20.250000px;}
.ws3_c01174{word-spacing:-19.521000px;}
.ws0_c01174{word-spacing:-17.352000px;}
.ws4_c01174{word-spacing:0.000000px;}
._1c_c01174{margin-left:-28.431000px;}
._1d_c01174{margin-left:-16.182000px;}
._19_c01174{margin-left:-15.111000px;}
._18_c01174{margin-left:-14.082000px;}
._17_c01174{margin-left:-12.645000px;}
._d_c01174{margin-left:-11.004000px;}
._14_c01174{margin-left:-9.000000px;}
._12_c01174{margin-left:-7.380000px;}
._16_c01174{margin-left:-6.180000px;}
._13_c01174{margin-left:-4.032000px;}
._10_c01174{margin-left:-2.808000px;}
._e_c01174{margin-left:-1.140000px;}
._b_c01174{width:1.248000px;}
._11_c01174{width:2.352000px;}
._c_c01174{width:3.384000px;}
._3_c01174{width:4.500000px;}
._f_c01174{width:6.000000px;}
._2_c01174{width:7.140000px;}
._4_c01174{width:8.820000px;}
._5_c01174{width:9.840000px;}
._6_c01174{width:11.040000px;}
._1e_c01174{width:12.105000px;}
._15_c01174{width:13.308000px;}
._1_c01174{width:16.680000px;}
._20_c01174{width:19.518000px;}
._9_c01174{width:23.580000px;}
._0_c01174{width:26.760000px;}
._1b_c01174{width:28.521000px;}
._8_c01174{width:45.000000px;}
._1a_c01174{width:98.664000px;}
._23_c01174{width:107.070000px;}
._21_c01174{width:117.717000px;}
._22_c01174{width:147.420000px;}
._a_c01174{width:155.232000px;}
._7_c01174{width:334.860000px;}
._1f_c01174{width:396.948000px;}
.fc2_c01174{color:transparent;}
.fc1_c01174{color:rgb(128,128,128);}
.fc0_c01174{color:rgb(0,0,0);}
.fs7_c01174{font-size:24.000000px;}
.fs8_c01174{font-size:48.000000px;}
.fs0_c01174{font-size:60.000000px;}
.fs6_c01174{font-size:63.000000px;}
.fs1_c01174{font-size:72.000000px;}
.fs2_c01174{font-size:78.000000px;}
.fs3_c01174{font-size:81.000000px;}
.fs4_c01174{font-size:84.000000px;}
.fs5_c01174{font-size:177.000000px;}
.y0_c01174{bottom:0.000000px;}
.y1f_c01174{bottom:3.105000px;}
.y1e_c01174{bottom:7.228371px;}
.y1d_c01174{bottom:32.865000px;}
.y1c_c01174{bottom:60.765000px;}
.y1b_c01174{bottom:83.715000px;}
.y1a_c01174{bottom:110.115000px;}
.y19_c01174{bottom:136.815000px;}
.y18_c01174{bottom:161.415000px;}
.y17_c01174{bottom:186.315000px;}
.y16_c01174{bottom:211.665000px;}
.y15_c01174{bottom:234.915000px;}
.y14_c01174{bottom:261.015000px;}
.y13_c01174{bottom:283.965000px;}
.y12_c01174{bottom:291.615000px;}
.y11_c01174{bottom:336.615000px;}
.y10_c01174{bottom:360.465000px;}
.yf_c01174{bottom:385.065000px;}
.ye_c01174{bottom:409.365000px;}
.yd_c01174{bottom:435.015000px;}
.yc_c01174{bottom:460.065000px;}
.yb_c01174{bottom:484.065000px;}
.ya_c01174{bottom:507.315000px;}
.y9_c01174{bottom:531.015000px;}
.y8_c01174{bottom:556.515000px;}
.y7_c01174{bottom:581.565000px;}
.y6_c01174{bottom:605.865000px;}
.y5_c01174{bottom:630.765000px;}
.y4_c01174{bottom:655.515000px;}
.y3_c01174{bottom:680.415000px;}
.y2_c01174{bottom:705.015000px;}
.y1_c01174{bottom:729.465000px;}
.ha_c01174{height:13.200074px;}
.hb_c01174{height:43.804688px;}
.h2_c01174{height:70.224609px;}
.h5_c01174{height:79.497070px;}
.h9_c01174{height:79.765137px;}
.h6_c01174{height:82.400391px;}
.h3_c01174{height:91.160156px;}
.h8_c01174{height:94.803223px;}
.h4_c01174{height:98.756836px;}
.h7_c01174{height:188.859000px;}
.h0_c01174{height:774.375000px;}
.h1_c01174{height:774.750000px;}
.w2_c01174{width:104.875500px;}
.w0_c01174{width:542.175000px;}
.w1_c01174{width:542.250000px;}
.x0_c01174{left:0.000000px;}
.x2_c01174{left:32.850000px;}
.x3_c01174{left:34.800000px;}
.x4_c01174{left:36.000000px;}
.x5_c01174{left:37.200000px;}
.x6_c01174{left:39.450000px;}
.x7_c01174{left:40.500000px;}
.x9_c01174{left:41.550000px;}
.x8_c01174{left:53.100000px;}
.x1_c01174{left:142.800000px;}
.xb_c01174{left:222.901749px;}
.xa_c01174{left:270.750000px;}
@media print{
.v0_c01174{vertical-align:0.000000pt;}
.v1_c01174{vertical-align:68.800000pt;}
.ls2_c01174{letter-spacing:0.000000pt;}
.ls0_c01174{letter-spacing:0.634667pt;}
.ls1_c01174{letter-spacing:26.656000pt;}
.ws1_c01174{word-spacing:-37.333333pt;}
.ws2_c01174{word-spacing:-18.000000pt;}
.ws3_c01174{word-spacing:-17.352000pt;}
.ws0_c01174{word-spacing:-15.424000pt;}
.ws4_c01174{word-spacing:0.000000pt;}
._1c_c01174{margin-left:-25.272000pt;}
._1d_c01174{margin-left:-14.384000pt;}
._19_c01174{margin-left:-13.432000pt;}
._18_c01174{margin-left:-12.517333pt;}
._17_c01174{margin-left:-11.240000pt;}
._d_c01174{margin-left:-9.781333pt;}
._14_c01174{margin-left:-8.000000pt;}
._12_c01174{margin-left:-6.560000pt;}
._16_c01174{margin-left:-5.493333pt;}
._13_c01174{margin-left:-3.584000pt;}
._10_c01174{margin-left:-2.496000pt;}
._e_c01174{margin-left:-1.013333pt;}
._b_c01174{width:1.109333pt;}
._11_c01174{width:2.090667pt;}
._c_c01174{width:3.008000pt;}
._3_c01174{width:4.000000pt;}
._f_c01174{width:5.333333pt;}
._2_c01174{width:6.346667pt;}
._4_c01174{width:7.840000pt;}
._5_c01174{width:8.746667pt;}
._6_c01174{width:9.813333pt;}
._1e_c01174{width:10.760000pt;}
._15_c01174{width:11.829333pt;}
._1_c01174{width:14.826667pt;}
._20_c01174{width:17.349333pt;}
._9_c01174{width:20.960000pt;}
._0_c01174{width:23.786667pt;}
._1b_c01174{width:25.352000pt;}
._8_c01174{width:40.000000pt;}
._1a_c01174{width:87.701333pt;}
._23_c01174{width:95.173333pt;}
._21_c01174{width:104.637333pt;}
._22_c01174{width:131.040000pt;}
._a_c01174{width:137.984000pt;}
._7_c01174{width:297.653333pt;}
._1f_c01174{width:352.842667pt;}
.fs7_c01174{font-size:21.333333pt;}
.fs8_c01174{font-size:42.666667pt;}
.fs0_c01174{font-size:53.333333pt;}
.fs6_c01174{font-size:56.000000pt;}
.fs1_c01174{font-size:64.000000pt;}
.fs2_c01174{font-size:69.333333pt;}
.fs3_c01174{font-size:72.000000pt;}
.fs4_c01174{font-size:74.666667pt;}
.fs5_c01174{font-size:157.333333pt;}
.y0_c01174{bottom:0.000000pt;}
.y1f_c01174{bottom:2.760000pt;}
.y1e_c01174{bottom:6.425219pt;}
.y1d_c01174{bottom:29.213333pt;}
.y1c_c01174{bottom:54.013333pt;}
.y1b_c01174{bottom:74.413333pt;}
.y1a_c01174{bottom:97.880000pt;}
.y19_c01174{bottom:121.613333pt;}
.y18_c01174{bottom:143.480000pt;}
.y17_c01174{bottom:165.613333pt;}
.y16_c01174{bottom:188.146667pt;}
.y15_c01174{bottom:208.813333pt;}
.y14_c01174{bottom:232.013333pt;}
.y13_c01174{bottom:252.413333pt;}
.y12_c01174{bottom:259.213333pt;}
.y11_c01174{bottom:299.213333pt;}
.y10_c01174{bottom:320.413333pt;}
.yf_c01174{bottom:342.280000pt;}
.ye_c01174{bottom:363.880000pt;}
.yd_c01174{bottom:386.680000pt;}
.yc_c01174{bottom:408.946667pt;}
.yb_c01174{bottom:430.280000pt;}
.ya_c01174{bottom:450.946667pt;}
.y9_c01174{bottom:472.013333pt;}
.y8_c01174{bottom:494.680000pt;}
.y7_c01174{bottom:516.946667pt;}
.y6_c01174{bottom:538.546667pt;}
.y5_c01174{bottom:560.680000pt;}
.y4_c01174{bottom:582.680000pt;}
.y3_c01174{bottom:604.813333pt;}
.y2_c01174{bottom:626.680000pt;}
.y1_c01174{bottom:648.413333pt;}
.ha_c01174{height:11.733399pt;}
.hb_c01174{height:38.937500pt;}
.h2_c01174{height:62.421875pt;}
.h5_c01174{height:70.664062pt;}
.h9_c01174{height:70.902344pt;}
.h6_c01174{height:73.244792pt;}
.h3_c01174{height:81.031250pt;}
.h8_c01174{height:84.269531pt;}
.h4_c01174{height:87.783854pt;}
.h7_c01174{height:167.874667pt;}
.h0_c01174{height:688.333333pt;}
.h1_c01174{height:688.666667pt;}
.w2_c01174{width:93.222667pt;}
.w0_c01174{width:481.933333pt;}
.w1_c01174{width:482.000000pt;}
.x0_c01174{left:0.000000pt;}
.x2_c01174{left:29.200000pt;}
.x3_c01174{left:30.933333pt;}
.x4_c01174{left:32.000000pt;}
.x5_c01174{left:33.066667pt;}
.x6_c01174{left:35.066667pt;}
.x7_c01174{left:36.000000pt;}
.x9_c01174{left:36.933333pt;}
.x8_c01174{left:47.200000pt;}
.x1_c01174{left:126.933333pt;}
.xb_c01174{left:198.134888pt;}
.xa_c01174{left:240.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_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_ab5b09399b0f42714b2e80dd.woff2')format("woff");}.ff1_c01175{font-family:ff1_c01175;line-height:1.284180;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01175{font-family:ff2_c01175;line-height:1.284668;font-style:normal;font-weight:normal;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_9342e66219383f177dc18815.woff2')format("woff");}.ff3_c01175{font-family:ff3_c01175;line-height:1.568848;font-style:normal;font-weight:normal;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_9ac39dc2801f1f6e95ceca40.woff2')format("woff");}.ff4_c01175{font-family:ff4_c01175;line-height:1.284180;font-style:normal;font-weight:normal;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_a5c80673adff686b9169fd8d.woff2')format("woff");}.ff5_c01175{font-family:ff5_c01175;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01175;src:url('chunks/assets/font_ceefc1d8a4921ed552a3e07e.woff2')format("woff");}.ff6_c01175{font-family:ff6_c01175;line-height:1.575000;font-style:normal;font-weight: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_c01175;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c01175{font-family:ff7_c01175;line-height:1.219238;font-style: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);}
.v0_c01175{vertical-align:0.000000px;}
.ls5_c01175{letter-spacing:-3.000000px;}
.ls3_c01175{letter-spacing:0.000000px;}
.ls4_c01175{letter-spacing:3.000000px;}
.ls2_c01175{letter-spacing:14.388000px;}
.ls1_c01175{letter-spacing:17.448000px;}
.ls0_c01175{letter-spacing:20.556000px;}
.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:-18.906000px;}
.ws3_c01175{word-spacing:0.000000px;}
.ws1_c01175{word-spacing:1.020000px;}
.ws2_c01175{word-spacing:45.714000px;}
._23_c01175{margin-left:-29.145000px;}
._24_c01175{margin-left:-21.672000px;}
._1b_c01175{margin-left:-19.368000px;}
._22_c01175{margin-left:-14.112000px;}
._d_c01175{margin-left:-12.819000px;}
._c_c01175{margin-left:-10.428000px;}
._1d_c01175{margin-left:-8.493000px;}
._1f_c01175{margin-left:-7.074000px;}
._3_c01175{margin-left:-5.796000px;}
._10_c01175{margin-left:-4.464000px;}
._5_c01175{margin-left:-2.760000px;}
._6_c01175{margin-left:-1.584000px;}
._1_c01175{width:1.848000px;}
._2_c01175{width:3.024000px;}
._b_c01175{width:4.032000px;}
._0_c01175{width:5.040000px;}
._a_c01175{width:6.192000px;}
._8_c01175{width:7.200000px;}
._9_c01175{width:8.280000px;}
._7_c01175{width:10.080000px;}
._f_c01175{width:11.808000px;}
._e_c01175{width:13.278000px;}
._12_c01175{width:15.840000px;}
._4_c01175{width:18.672000px;}
._13_c01175{width:19.890000px;}
._11_c01175{width:21.078000px;}
._1e_c01175{width:23.382000px;}
._16_c01175{width:29.106000px;}
._25_c01175{width:31.248000px;}
._15_c01175{width:37.341000px;}
._14_c01175{width:61.986000px;}
._19_c01175{width:66.759000px;}
._18_c01175{width:67.983000px;}
._1a_c01175{width:89.124000px;}
._17_c01175{width:100.674000px;}
._20_c01175{width:106.098000px;}
._1c_c01175{width:124.398000px;}
._21_c01175{width:163.548000px;}
.fc2_c01175{color:transparent;}
.fc1_c01175{color:rgb(128,128,128);}
.fc0_c01175{color:rgb(0,0,0);}
.fs5_c01175{font-size:48.000000px;}
.fs4_c01175{font-size:51.000000px;}
.fs2_c01175{font-size:63.000000px;}
.fs3_c01175{font-size:66.000000px;}
.fs1_c01175{font-size:72.000000px;}
.fs0_c01175{font-size:84.000000px;}
.y0_c01175{bottom:0.000000px;}
.y21_c01175{bottom:3.105000px;}
.y20_c01175{bottom:7.228357px;}
.y1d_c01175{bottom:38.130000px;}
.y1c_c01175{bottom:63.780000px;}
.y1b_c01175{bottom:88.830000px;}
.y1a_c01175{bottom:114.780000px;}
.y1f_c01175{bottom:133.680000px;}
.y19_c01175{bottom:141.030000px;}
.y1e_c01175{bottom:155.280000px;}
.y18_c01175{bottom:165.330000px;}
.y17_c01175{bottom:191.430000px;}
.y16_c01175{bottom:216.630000px;}
.y15_c01175{bottom:241.680000px;}
.y14_c01175{bottom:267.630000px;}
.y13_c01175{bottom:291.930000px;}
.y12_c01175{bottom:317.880000px;}
.y11_c01175{bottom:341.280000px;}
.y10_c01175{bottom:366.180000px;}
.yf_c01175{bottom:391.230000px;}
.ye_c01175{bottom:415.230000px;}
.yd_c01175{bottom:442.230000px;}
.yc_c01175{bottom:463.680000px;}
.yb_c01175{bottom:489.330000px;}
.ya_c01175{bottom:514.680000px;}
.y9_c01175{bottom:539.280000px;}
.y8_c01175{bottom:566.430000px;}
.y7_c01175{bottom:589.380000px;}
.y6_c01175{bottom:614.580000px;}
.y5_c01175{bottom:639.930000px;}
.y4_c01175{bottom:664.230000px;}
.y3_c01175{bottom:689.130000px;}
.y2_c01175{bottom:713.880000px;}
.y1_c01175{bottom:740.130000px;}
.h6_c01175{height:13.200074px;}
.h7_c01175{height:43.804688px;}
.h5_c01175{height:64.571777px;}
.h2_c01175{height:82.441406px;}
.h4_c01175{height:83.563477px;}
.h3_c01175{height:91.160156px;}
.h1_c01175{height:789.750000px;}
.h0_c01175{height:790.050000px;}
.w2_c01175{width:104.875500px;}
.w0_c01175{width:538.125000px;}
.w1_c01175{width:538.500000px;}
.x0_c01175{left:0.000000px;}
.x9_c01175{left:41.250000px;}
.x10_c01175{left:42.900000px;}
.xf_c01175{left:47.550000px;}
.x8_c01175{left:55.050000px;}
.x5_c01175{left:111.450000px;}
.x3_c01175{left:112.800000px;}
.x2_c01175{left:113.850000px;}
.x7_c01175{left:115.050000px;}
.xb_c01175{left:116.100000px;}
.x4_c01175{left:117.150000px;}
.xc_c01175{left:118.200000px;}
.xd_c01175{left:119.250000px;}
.xe_c01175{left:121.950000px;}
.x6_c01175{left:149.550000px;}
.xa_c01175{left:209.550000px;}
.x11_c01175{left:220.876740px;}
.x1_c01175{left:235.650000px;}
@media print{
.v0_c01175{vertical-align:0.000000pt;}
.ls5_c01175{letter-spacing:-2.666667pt;}
.ls3_c01175{letter-spacing:0.000000pt;}
.ls4_c01175{letter-spacing:2.666667pt;}
.ls2_c01175{letter-spacing:12.789333pt;}
.ls1_c01175{letter-spacing:15.509333pt;}
.ls0_c01175{letter-spacing:18.272000pt;}
.ws0_c01175{word-spacing:-16.805333pt;}
.ws3_c01175{word-spacing:0.000000pt;}
.ws1_c01175{word-spacing:0.906667pt;}
.ws2_c01175{word-spacing:40.634667pt;}
._23_c01175{margin-left:-25.906667pt;}
._24_c01175{margin-left:-19.264000pt;}
._1b_c01175{margin-left:-17.216000pt;}
._22_c01175{margin-left:-12.544000pt;}
._d_c01175{margin-left:-11.394667pt;}
._c_c01175{margin-left:-9.269333pt;}
._1d_c01175{margin-left:-7.549333pt;}
._1f_c01175{margin-left:-6.288000pt;}
._3_c01175{margin-left:-5.152000pt;}
._10_c01175{margin-left:-3.968000pt;}
._5_c01175{margin-left:-2.453333pt;}
._6_c01175{margin-left:-1.408000pt;}
._1_c01175{width:1.642667pt;}
._2_c01175{width:2.688000pt;}
._b_c01175{width:3.584000pt;}
._0_c01175{width:4.480000pt;}
._a_c01175{width:5.504000pt;}
._8_c01175{width:6.400000pt;}
._9_c01175{width:7.360000pt;}
._7_c01175{width:8.960000pt;}
._f_c01175{width:10.496000pt;}
._e_c01175{width:11.802667pt;}
._12_c01175{width:14.080000pt;}
._4_c01175{width:16.597333pt;}
._13_c01175{width:17.680000pt;}
._11_c01175{width:18.736000pt;}
._1e_c01175{width:20.784000pt;}
._16_c01175{width:25.872000pt;}
._25_c01175{width:27.776000pt;}
._15_c01175{width:33.192000pt;}
._14_c01175{width:55.098667pt;}
._19_c01175{width:59.341333pt;}
._18_c01175{width:60.429333pt;}
._1a_c01175{width:79.221333pt;}
._17_c01175{width:89.488000pt;}
._20_c01175{width:94.309333pt;}
._1c_c01175{width:110.576000pt;}
._21_c01175{width:145.376000pt;}
.fs5_c01175{font-size:42.666667pt;}
.fs4_c01175{font-size:45.333333pt;}
.fs2_c01175{font-size:56.000000pt;}
.fs3_c01175{font-size:58.666667pt;}
.fs1_c01175{font-size:64.000000pt;}
.fs0_c01175{font-size:74.666667pt;}
.y0_c01175{bottom:0.000000pt;}
.y21_c01175{bottom:2.760000pt;}
.y20_c01175{bottom:6.425206pt;}
.y1d_c01175{bottom:33.893333pt;}
.y1c_c01175{bottom:56.693333pt;}
.y1b_c01175{bottom:78.960000pt;}
.y1a_c01175{bottom:102.026667pt;}
.y1f_c01175{bottom:118.826667pt;}
.y19_c01175{bottom:125.360000pt;}
.y1e_c01175{bottom:138.026667pt;}
.y18_c01175{bottom:146.960000pt;}
.y17_c01175{bottom:170.160000pt;}
.y16_c01175{bottom:192.560000pt;}
.y15_c01175{bottom:214.826667pt;}
.y14_c01175{bottom:237.893333pt;}
.y13_c01175{bottom:259.493333pt;}
.y12_c01175{bottom:282.560000pt;}
.y11_c01175{bottom:303.360000pt;}
.y10_c01175{bottom:325.493333pt;}
.yf_c01175{bottom:347.760000pt;}
.ye_c01175{bottom:369.093333pt;}
.yd_c01175{bottom:393.093333pt;}
.yc_c01175{bottom:412.160000pt;}
.yb_c01175{bottom:434.960000pt;}
.ya_c01175{bottom:457.493333pt;}
.y9_c01175{bottom:479.360000pt;}
.y8_c01175{bottom:503.493333pt;}
.y7_c01175{bottom:523.893333pt;}
.y6_c01175{bottom:546.293333pt;}
.y5_c01175{bottom:568.826667pt;}
.y4_c01175{bottom:590.426667pt;}
.y3_c01175{bottom:612.560000pt;}
.y2_c01175{bottom:634.560000pt;}
.y1_c01175{bottom:657.893333pt;}
.h6_c01175{height:11.733399pt;}
.h7_c01175{height:38.937500pt;}
.h5_c01175{height:57.397135pt;}
.h2_c01175{height:73.281250pt;}
.h4_c01175{height:74.278646pt;}
.h3_c01175{height:81.031250pt;}
.h1_c01175{height:702.000000pt;}
.h0_c01175{height:702.266667pt;}
.w2_c01175{width:93.222667pt;}
.w0_c01175{width:478.333333pt;}
.w1_c01175{width:478.666667pt;}
.x0_c01175{left:0.000000pt;}
.x9_c01175{left:36.666667pt;}
.x10_c01175{left:38.133333pt;}
.xf_c01175{left:42.266667pt;}
.x8_c01175{left:48.933333pt;}
.x5_c01175{left:99.066667pt;}
.x3_c01175{left:100.266667pt;}
.x2_c01175{left:101.200000pt;}
.x7_c01175{left:102.266667pt;}
.xb_c01175{left:103.200000pt;}
.x4_c01175{left:104.133333pt;}
.xc_c01175{left:105.066667pt;}
.xd_c01175{left:106.000000pt;}
.xe_c01175{left:108.400000pt;}
.x6_c01175{left:132.933333pt;}
.xa_c01175{left:186.266667pt;}
.x11_c01175{left:196.334880pt;}
.x1_c01175{left:209.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0ab307f5a7d16546d6ce9ebd.woff2')format("woff");}.ff1_c01176{font-family:ff1_c01176;line-height:1.480469;font-style:normal;font-weight:normal;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_c9cf690edd112e97f79e9f13.woff2')format("woff");}.ff2_c01176{font-family:ff2_c01176;line-height:1.568848;font-style:normal;font-weight:normal;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_cda38b7e9b700ada78567f1d.woff2')format("woff");}.ff3_c01176{font-family:ff3_c01176;line-height:1.575000;font-style:normal;font-weight:normal;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_63250cc85fc3518f3a527711.woff2')format("woff");}.ff4_c01176{font-family:ff4_c01176;line-height:1.568848;font-style:normal;font-weight:normal;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_e8b41f5e6081083ca832e05e.woff2')format("woff");}.ff5_c01176{font-family:ff5_c01176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01176;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01176{font-family:ff6_c01176;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01176{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01176{vertical-align:0.000000px;}
.ls3_c01176{letter-spacing:-6.000000px;}
.ls1_c01176{letter-spacing:0.000000px;}
.ls2_c01176{letter-spacing:3.000000px;}
.ls0_c01176{letter-spacing:22.188000px;}
.sc__c01176{text-shadow:none;}
.sc0_c01176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01176{-webkit-text-stroke:0px transparent;}
.sc0_c01176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01176{word-spacing:-30.051000px;}
.ws0_c01176{word-spacing:-17.352000px;}
.ws2_c01176{word-spacing:-8.460000px;}
.ws3_c01176{word-spacing:0.000000px;}
._1d_c01176{margin-left:-34.272000px;}
._15_c01176{margin-left:-23.616000px;}
._1a_c01176{margin-left:-19.872000px;}
._1b_c01176{margin-left:-16.848000px;}
._10_c01176{margin-left:-15.408000px;}
._18_c01176{margin-left:-14.040000px;}
._17_c01176{margin-left:-12.819000px;}
._12_c01176{margin-left:-11.226000px;}
._4_c01176{margin-left:-9.864000px;}
._11_c01176{margin-left:-8.784000px;}
._f_c01176{margin-left:-7.704000px;}
._e_c01176{margin-left:-5.976000px;}
._a_c01176{margin-left:-4.680000px;}
._9_c01176{margin-left:-3.528000px;}
._6_c01176{margin-left:-2.376000px;}
._5_c01176{margin-left:-1.368000px;}
._b_c01176{width:1.224000px;}
._d_c01176{width:3.096000px;}
._c_c01176{width:4.608000px;}
._14_c01176{width:5.823000px;}
._3_c01176{width:7.128000px;}
._13_c01176{width:8.826000px;}
._8_c01176{width:10.368000px;}
._1_c01176{width:11.592000px;}
._19_c01176{width:12.672000px;}
._2_c01176{width:13.824000px;}
._0_c01176{width:14.904000px;}
._16_c01176{width:19.968000px;}
._1f_c01176{width:34.779000px;}
._1c_c01176{width:57.888000px;}
._7_c01176{width:296.424000px;}
._1e_c01176{width:1014.048000px;}
.fc2_c01176{color:transparent;}
.fc1_c01176{color:rgb(128,128,128);}
.fc0_c01176{color:rgb(0,0,0);}
.fs5_c01176{font-size:48.000000px;}
.fs4_c01176{font-size:60.000000px;}
.fs2_c01176{font-size:63.000000px;}
.fs1_c01176{font-size:69.000000px;}
.fs0_c01176{font-size:72.000000px;}
.fs3_c01176{font-size:90.000000px;}
.y0_c01176{bottom:0.000000px;}
.y21_c01176{bottom:3.105000px;}
.y20_c01176{bottom:7.228357px;}
.y1d_c01176{bottom:50.580000px;}
.y1c_c01176{bottom:79.980000px;}
.y1b_c01176{bottom:106.080000px;}
.y1a_c01176{bottom:129.330000px;}
.y19_c01176{bottom:153.330000px;}
.y18_c01176{bottom:179.880000px;}
.y17_c01176{bottom:204.180000px;}
.y16_c01176{bottom:232.830000px;}
.y15_c01176{bottom:256.830000px;}
.y14_c01176{bottom:283.230000px;}
.y13_c01176{bottom:304.530000px;}
.y12_c01176{bottom:332.430000px;}
.y1f_c01176{bottom:348.930000px;}
.y11_c01176{bottom:356.130000px;}
.y1e_c01176{bottom:371.580000px;}
.y10_c01176{bottom:379.080000px;}
.yf_c01176{bottom:402.030000px;}
.ye_c01176{bottom:429.330000px;}
.yd_c01176{bottom:453.930000px;}
.yc_c01176{bottom:478.980000px;}
.yb_c01176{bottom:503.580000px;}
.ya_c01176{bottom:527.280000px;}
.y9_c01176{bottom:551.130000px;}
.y8_c01176{bottom:575.880000px;}
.y7_c01176{bottom:601.080000px;}
.y6_c01176{bottom:625.680000px;}
.y5_c01176{bottom:651.030000px;}
.y4_c01176{bottom:677.130000px;}
.y3_c01176{bottom:702.330000px;}
.y2_c01176{bottom:727.380000px;}
.y1_c01176{bottom:752.280000px;}
.h6_c01176{height:13.200074px;}
.h7_c01176{height:43.804688px;}
.h5_c01176{height:70.224609px;}
.h3_c01176{height:87.361816px;}
.h2_c01176{height:91.160156px;}
.h4_c01176{height:113.950195px;}
.h1_c01176{height:789.750000px;}
.h0_c01176{height:790.050000px;}
.w2_c01176{width:104.875500px;}
.w0_c01176{width:530.025000px;}
.w1_c01176{width:530.250000px;}
.x0_c01176{left:0.000000px;}
.x2_c01176{left:19.200000px;}
.x3_c01176{left:20.700000px;}
.x4_c01176{left:22.350000px;}
.x5_c01176{left:23.700000px;}
.x6_c01176{left:25.050000px;}
.x7_c01176{left:50.400000px;}
.x1_c01176{left:123.450000px;}
.x9_c01176{left:216.826767px;}
.x8_c01176{left:432.450000px;}
@media print{
.v0_c01176{vertical-align:0.000000pt;}
.ls3_c01176{letter-spacing:-5.333333pt;}
.ls1_c01176{letter-spacing:0.000000pt;}
.ls2_c01176{letter-spacing:2.666667pt;}
.ls0_c01176{letter-spacing:19.722667pt;}
.ws1_c01176{word-spacing:-26.712000pt;}
.ws0_c01176{word-spacing:-15.424000pt;}
.ws2_c01176{word-spacing:-7.520000pt;}
.ws3_c01176{word-spacing:0.000000pt;}
._1d_c01176{margin-left:-30.464000pt;}
._15_c01176{margin-left:-20.992000pt;}
._1a_c01176{margin-left:-17.664000pt;}
._1b_c01176{margin-left:-14.976000pt;}
._10_c01176{margin-left:-13.696000pt;}
._18_c01176{margin-left:-12.480000pt;}
._17_c01176{margin-left:-11.394667pt;}
._12_c01176{margin-left:-9.978667pt;}
._4_c01176{margin-left:-8.768000pt;}
._11_c01176{margin-left:-7.808000pt;}
._f_c01176{margin-left:-6.848000pt;}
._e_c01176{margin-left:-5.312000pt;}
._a_c01176{margin-left:-4.160000pt;}
._9_c01176{margin-left:-3.136000pt;}
._6_c01176{margin-left:-2.112000pt;}
._5_c01176{margin-left:-1.216000pt;}
._b_c01176{width:1.088000pt;}
._d_c01176{width:2.752000pt;}
._c_c01176{width:4.096000pt;}
._14_c01176{width:5.176000pt;}
._3_c01176{width:6.336000pt;}
._13_c01176{width:7.845333pt;}
._8_c01176{width:9.216000pt;}
._1_c01176{width:10.304000pt;}
._19_c01176{width:11.264000pt;}
._2_c01176{width:12.288000pt;}
._0_c01176{width:13.248000pt;}
._16_c01176{width:17.749333pt;}
._1f_c01176{width:30.914667pt;}
._1c_c01176{width:51.456000pt;}
._7_c01176{width:263.488000pt;}
._1e_c01176{width:901.376000pt;}
.fs5_c01176{font-size:42.666667pt;}
.fs4_c01176{font-size:53.333333pt;}
.fs2_c01176{font-size:56.000000pt;}
.fs1_c01176{font-size:61.333333pt;}
.fs0_c01176{font-size:64.000000pt;}
.fs3_c01176{font-size:80.000000pt;}
.y0_c01176{bottom:0.000000pt;}
.y21_c01176{bottom:2.760000pt;}
.y20_c01176{bottom:6.425206pt;}
.y1d_c01176{bottom:44.960000pt;}
.y1c_c01176{bottom:71.093333pt;}
.y1b_c01176{bottom:94.293333pt;}
.y1a_c01176{bottom:114.960000pt;}
.y19_c01176{bottom:136.293333pt;}
.y18_c01176{bottom:159.893333pt;}
.y17_c01176{bottom:181.493333pt;}
.y16_c01176{bottom:206.960000pt;}
.y15_c01176{bottom:228.293333pt;}
.y14_c01176{bottom:251.760000pt;}
.y13_c01176{bottom:270.693333pt;}
.y12_c01176{bottom:295.493333pt;}
.y1f_c01176{bottom:310.160000pt;}
.y11_c01176{bottom:316.560000pt;}
.y1e_c01176{bottom:330.293333pt;}
.y10_c01176{bottom:336.960000pt;}
.yf_c01176{bottom:357.360000pt;}
.ye_c01176{bottom:381.626667pt;}
.yd_c01176{bottom:403.493333pt;}
.yc_c01176{bottom:425.760000pt;}
.yb_c01176{bottom:447.626667pt;}
.ya_c01176{bottom:468.693333pt;}
.y9_c01176{bottom:489.893333pt;}
.y8_c01176{bottom:511.893333pt;}
.y7_c01176{bottom:534.293333pt;}
.y6_c01176{bottom:556.160000pt;}
.y5_c01176{bottom:578.693333pt;}
.y4_c01176{bottom:601.893333pt;}
.y3_c01176{bottom:624.293333pt;}
.y2_c01176{bottom:646.560000pt;}
.y1_c01176{bottom:668.693333pt;}
.h6_c01176{height:11.733399pt;}
.h7_c01176{height:38.937500pt;}
.h5_c01176{height:62.421875pt;}
.h3_c01176{height:77.654948pt;}
.h2_c01176{height:81.031250pt;}
.h4_c01176{height:101.289062pt;}
.h1_c01176{height:702.000000pt;}
.h0_c01176{height:702.266667pt;}
.w2_c01176{width:93.222667pt;}
.w0_c01176{width:471.133333pt;}
.w1_c01176{width:471.333333pt;}
.x0_c01176{left:0.000000pt;}
.x2_c01176{left:17.066667pt;}
.x3_c01176{left:18.400000pt;}
.x4_c01176{left:19.866667pt;}
.x5_c01176{left:21.066667pt;}
.x6_c01176{left:22.266667pt;}
.x7_c01176{left:44.800000pt;}
.x1_c01176{left:109.733333pt;}
.x9_c01176{left:192.734904pt;}
.x8_c01176{left:384.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eaa52a4f6e9ee26fd24d5ce3.woff2')format("woff");}.ff1_c01177{font-family:ff1_c01177;line-height:1.480469;font-style:normal;font-weight:normal;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_2eb5cee6632bc66d1a679b31.woff2')format("woff");}.ff2_c01177{font-family:ff2_c01177;line-height:1.568848;font-style:normal;font-weight:normal;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_42bcacb5bb48debecc2931fe.woff2')format("woff");}.ff3_c01177{font-family:ff3_c01177;line-height:1.575000;font-style:normal;font-weight:normal;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_5f15bd3e9bae251be206bc76.woff2')format("woff");}.ff4_c01177{font-family:ff4_c01177;line-height:1.284668;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01177{font-family:ff5_c01177;line-height:1.219238;font-style: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);}
.v0_c01177{vertical-align:0.000000px;}
.ls3_c01177{letter-spacing:0.000000px;}
.ls2_c01177{letter-spacing:2.388000px;}
.ls4_c01177{letter-spacing:6.000000px;}
.ls0_c01177{letter-spacing:6.912000px;}
.ls1_c01177{letter-spacing:12.048000px;}
.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;}
}
.ws1_c01177{word-spacing:-20.967000px;}
.ws0_c01177{word-spacing:-17.352000px;}
.ws2_c01177{word-spacing:0.000000px;}
._c_c01177{margin-left:-13.392000px;}
._14_c01177{margin-left:-12.348000px;}
._f_c01177{margin-left:-7.920000px;}
._10_c01177{margin-left:-6.408000px;}
._9_c01177{margin-left:-4.680000px;}
._3_c01177{margin-left:-2.880000px;}
._4_c01177{margin-left:-1.512000px;}
._8_c01177{width:1.152000px;}
._7_c01177{width:2.376000px;}
._6_c01177{width:3.816000px;}
._5_c01177{width:5.184000px;}
._1_c01177{width:7.128000px;}
._a_c01177{width:8.496000px;}
._b_c01177{width:9.576000px;}
._d_c01177{width:10.800000px;}
._2_c01177{width:12.384000px;}
._0_c01177{width:14.112000px;}
._17_c01177{width:16.497000px;}
._18_c01177{width:17.712000px;}
._16_c01177{width:18.747000px;}
._12_c01177{width:21.096000px;}
._13_c01177{width:22.848000px;}
._15_c01177{width:24.759000px;}
._e_c01177{width:26.016000px;}
._11_c01177{width:80.424000px;}
.fc2_c01177{color:transparent;}
.fc1_c01177{color:rgb(128,128,128);}
.fc0_c01177{color:rgb(0,0,0);}
.fs4_c01177{font-size:48.000000px;}
.fs2_c01177{font-size:57.000000px;}
.fs1_c01177{font-size:63.000000px;}
.fs0_c01177{font-size:72.000000px;}
.fs3_c01177{font-size:87.000000px;}
.y0_c01177{bottom:0.000000px;}
.y1f_c01177{bottom:3.105000px;}
.y1e_c01177{bottom:7.228369px;}
.y1d_c01177{bottom:66.870000px;}
.y1c_c01177{bottom:87.420000px;}
.y1b_c01177{bottom:117.720000px;}
.y1a_c01177{bottom:142.320000px;}
.y19_c01177{bottom:166.770000px;}
.y18_c01177{bottom:189.720000px;}
.y17_c01177{bottom:215.220000px;}
.y16_c01177{bottom:240.570000px;}
.y15_c01177{bottom:265.320000px;}
.y14_c01177{bottom:292.920000px;}
.y13_c01177{bottom:317.970000px;}
.y12_c01177{bottom:343.170000px;}
.y11_c01177{bottom:365.520000px;}
.y10_c01177{bottom:388.770000px;}
.yf_c01177{bottom:413.820000px;}
.ye_c01177{bottom:438.420000px;}
.yd_c01177{bottom:461.070000px;}
.yc_c01177{bottom:488.070000px;}
.yb_c01177{bottom:512.970000px;}
.ya_c01177{bottom:536.970000px;}
.y9_c01177{bottom:562.170000px;}
.y8_c01177{bottom:587.220000px;}
.y7_c01177{bottom:611.820000px;}
.y6_c01177{bottom:636.570000px;}
.y5_c01177{bottom:662.220000px;}
.y4_c01177{bottom:686.520000px;}
.y3_c01177{bottom:711.720000px;}
.y2_c01177{bottom:736.320000px;}
.y1_c01177{bottom:762.720000px;}
.h5_c01177{height:13.200073px;}
.h6_c01177{height:43.804688px;}
.h3_c01177{height:55.942383px;}
.h2_c01177{height:79.765137px;}
.h1_c01177{height:91.160156px;}
.h4_c01177{height:110.151855px;}
.h0_c01177{height:800.250000px;}
.w2_c01177{width:104.875500px;}
.w0_c01177{width:544.875000px;}
.w1_c01177{width:545.250000px;}
.x0_c01177{left:0.000000px;}
.x5_c01177{left:47.550000px;}
.x6_c01177{left:114.150000px;}
.x3_c01177{left:124.950000px;}
.x2_c01177{left:126.300000px;}
.x4_c01177{left:127.650000px;}
.x9_c01177{left:129.000000px;}
.x7_c01177{left:133.950000px;}
.x8_c01177{left:135.750000px;}
.xb_c01177{left:224.251740px;}
.x1_c01177{left:243.300000px;}
.xa_c01177{left:468.750000px;}
@media print{
.v0_c01177{vertical-align:0.000000pt;}
.ls3_c01177{letter-spacing:0.000000pt;}
.ls2_c01177{letter-spacing:2.122667pt;}
.ls4_c01177{letter-spacing:5.333333pt;}
.ls0_c01177{letter-spacing:6.144000pt;}
.ls1_c01177{letter-spacing:10.709333pt;}
.ws1_c01177{word-spacing:-18.637333pt;}
.ws0_c01177{word-spacing:-15.424000pt;}
.ws2_c01177{word-spacing:0.000000pt;}
._c_c01177{margin-left:-11.904000pt;}
._14_c01177{margin-left:-10.976000pt;}
._f_c01177{margin-left:-7.040000pt;}
._10_c01177{margin-left:-5.696000pt;}
._9_c01177{margin-left:-4.160000pt;}
._3_c01177{margin-left:-2.560000pt;}
._4_c01177{margin-left:-1.344000pt;}
._8_c01177{width:1.024000pt;}
._7_c01177{width:2.112000pt;}
._6_c01177{width:3.392000pt;}
._5_c01177{width:4.608000pt;}
._1_c01177{width:6.336000pt;}
._a_c01177{width:7.552000pt;}
._b_c01177{width:8.512000pt;}
._d_c01177{width:9.600000pt;}
._2_c01177{width:11.008000pt;}
._0_c01177{width:12.544000pt;}
._17_c01177{width:14.664000pt;}
._18_c01177{width:15.744000pt;}
._16_c01177{width:16.664000pt;}
._12_c01177{width:18.752000pt;}
._13_c01177{width:20.309333pt;}
._15_c01177{width:22.008000pt;}
._e_c01177{width:23.125333pt;}
._11_c01177{width:71.488000pt;}
.fs4_c01177{font-size:42.666667pt;}
.fs2_c01177{font-size:50.666667pt;}
.fs1_c01177{font-size:56.000000pt;}
.fs0_c01177{font-size:64.000000pt;}
.fs3_c01177{font-size:77.333333pt;}
.y0_c01177{bottom:0.000000pt;}
.y1f_c01177{bottom:2.760000pt;}
.y1e_c01177{bottom:6.425217pt;}
.y1d_c01177{bottom:59.440000pt;}
.y1c_c01177{bottom:77.706667pt;}
.y1b_c01177{bottom:104.640000pt;}
.y1a_c01177{bottom:126.506667pt;}
.y19_c01177{bottom:148.240000pt;}
.y18_c01177{bottom:168.640000pt;}
.y17_c01177{bottom:191.306667pt;}
.y16_c01177{bottom:213.840000pt;}
.y15_c01177{bottom:235.840000pt;}
.y14_c01177{bottom:260.373333pt;}
.y13_c01177{bottom:282.640000pt;}
.y12_c01177{bottom:305.040000pt;}
.y11_c01177{bottom:324.906667pt;}
.y10_c01177{bottom:345.573333pt;}
.yf_c01177{bottom:367.840000pt;}
.ye_c01177{bottom:389.706667pt;}
.yd_c01177{bottom:409.840000pt;}
.yc_c01177{bottom:433.840000pt;}
.yb_c01177{bottom:455.973333pt;}
.ya_c01177{bottom:477.306667pt;}
.y9_c01177{bottom:499.706667pt;}
.y8_c01177{bottom:521.973333pt;}
.y7_c01177{bottom:543.840000pt;}
.y6_c01177{bottom:565.840000pt;}
.y5_c01177{bottom:588.640000pt;}
.y4_c01177{bottom:610.240000pt;}
.y3_c01177{bottom:632.640000pt;}
.y2_c01177{bottom:654.506667pt;}
.y1_c01177{bottom:677.973333pt;}
.h5_c01177{height:11.733399pt;}
.h6_c01177{height:38.937500pt;}
.h3_c01177{height:49.726562pt;}
.h2_c01177{height:70.902344pt;}
.h1_c01177{height:81.031250pt;}
.h4_c01177{height:97.912760pt;}
.h0_c01177{height:711.333333pt;}
.w2_c01177{width:93.222667pt;}
.w0_c01177{width:484.333333pt;}
.w1_c01177{width:484.666667pt;}
.x0_c01177{left:0.000000pt;}
.x5_c01177{left:42.266667pt;}
.x6_c01177{left:101.466667pt;}
.x3_c01177{left:111.066667pt;}
.x2_c01177{left:112.266667pt;}
.x4_c01177{left:113.466667pt;}
.x9_c01177{left:114.666667pt;}
.x7_c01177{left:119.066667pt;}
.x8_c01177{left:120.666667pt;}
.xb_c01177{left:199.334880pt;}
.x1_c01177{left:216.266667pt;}
.xa_c01177{left:416.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_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_ba8ffd3fbf294332fd9082e7.woff2')format("woff");}.ff1_c01178{font-family:ff1_c01178;line-height:1.480469;font-style:normal;font-weight:normal;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_72629b06f48c887d57853d33.woff2')format("woff");}.ff2_c01178{font-family:ff2_c01178;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01178;src:url('chunks/assets/font_6a1879451ece89adb7981bdc.woff2')format("woff");}.ff3_c01178{font-family:ff3_c01178;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01178;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c01178{font-family:ff4_c01178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01178;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01178{font-family:ff5_c01178;line-height:1.219238;font-style: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;}
.ls0_c01178{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01178{word-spacing:-0.360000px;}
.ws2_c01178{word-spacing:0.000000px;}
.ws0_c01178{word-spacing:4.560000px;}
._17_c01178{margin-left:-34.995000px;}
._10_c01178{margin-left:-19.536000px;}
._1b_c01178{margin-left:-17.637000px;}
._13_c01178{margin-left:-16.344000px;}
._11_c01178{margin-left:-14.280000px;}
._a_c01178{margin-left:-13.248000px;}
._16_c01178{margin-left:-11.472000px;}
._14_c01178{margin-left:-10.320000px;}
._15_c01178{margin-left:-8.424000px;}
._12_c01178{margin-left:-7.176000px;}
._1c_c01178{margin-left:-6.153000px;}
._d_c01178{margin-left:-5.016000px;}
._b_c01178{margin-left:-3.216000px;}
._9_c01178{margin-left:-2.088000px;}
._0_c01178{margin-left:-1.044000px;}
._3_c01178{width:1.296000px;}
._4_c01178{width:2.808000px;}
._5_c01178{width:4.464000px;}
._8_c01178{width:5.760000px;}
._7_c01178{width:6.768000px;}
._6_c01178{width:8.352000px;}
._e_c01178{width:10.080000px;}
._2_c01178{width:11.136000px;}
._c_c01178{width:12.984000px;}
._f_c01178{width:15.192000px;}
._19_c01178{width:16.878000px;}
._18_c01178{width:18.402000px;}
._1d_c01178{width:54.816000px;}
._1_c01178{width:301.977000px;}
._1a_c01178{width:422.226000px;}
.fc2_c01178{color:transparent;}
.fc1_c01178{color:rgb(128,128,128);}
.fc0_c01178{color:rgb(0,0,0);}
.fs5_c01178{font-size:24.000000px;}
.fs6_c01178{font-size:48.000000px;}
.fs4_c01178{font-size:57.000000px;}
.fs2_c01178{font-size:63.000000px;}
.fs1_c01178{font-size:72.000000px;}
.fs3_c01178{font-size:81.000000px;}
.fs0_c01178{font-size:87.000000px;}
.y0_c01178{bottom:0.000000px;}
.y1c_c01178{bottom:3.105000px;}
.y1b_c01178{bottom:7.228363px;}
.y1a_c01178{bottom:48.600000px;}
.y19_c01178{bottom:98.250000px;}
.y18_c01178{bottom:123.150000px;}
.y17_c01178{bottom:196.800000px;}
.y16_c01178{bottom:222.300000px;}
.y15_c01178{bottom:246.750000px;}
.y14_c01178{bottom:271.650000px;}
.y13_c01178{bottom:295.650000px;}
.y12_c01178{bottom:321.300000px;}
.y11_c01178{bottom:345.000000px;}
.y10_c01178{bottom:369.600000px;}
.yf_c01178{bottom:393.600000px;}
.ye_c01178{bottom:418.500000px;}
.yd_c01178{bottom:442.500000px;}
.yc_c01178{bottom:466.800000px;}
.yb_c01178{bottom:490.800000px;}
.ya_c01178{bottom:515.100000px;}
.y9_c01178{bottom:538.350000px;}
.y8_c01178{bottom:563.250000px;}
.y7_c01178{bottom:587.700000px;}
.y6_c01178{bottom:612.900000px;}
.y5_c01178{bottom:637.500000px;}
.y4_c01178{bottom:662.250000px;}
.y3_c01178{bottom:687.450000px;}
.y2_c01178{bottom:711.750000px;}
.y1_c01178{bottom:737.100000px;}
.h6_c01178{height:13.200074px;}
.h7_c01178{height:43.804688px;}
.h4_c01178{height:79.765137px;}
.h5_c01178{height:81.632812px;}
.h3_c01178{height:91.160156px;}
.h2_c01178{height:101.825684px;}
.h0_c01178{height:784.350000px;}
.h1_c01178{height:784.500000px;}
.w2_c01178{width:104.875500px;}
.w0_c01178{width:537.600000px;}
.w1_c01178{width:537.750000px;}
.x0_c01178{left:0.000000px;}
.x2_c01178{left:29.100000px;}
.x3_c01178{left:30.450000px;}
.x4_c01178{left:31.800000px;}
.x5_c01178{left:33.750000px;}
.x6_c01178{left:35.400000px;}
.x7_c01178{left:36.450000px;}
.x8_c01178{left:37.500000px;}
.x9_c01178{left:38.850000px;}
.xb_c01178{left:40.050000px;}
.xc_c01178{left:41.400000px;}
.xa_c01178{left:122.850000px;}
.x1_c01178{left:175.500000px;}
.xe_c01178{left:220.614258px;}
.xd_c01178{left:352.650000px;}
@media print{
.v0_c01178{vertical-align:0.000000pt;}
.ls0_c01178{letter-spacing:0.000000pt;}
.ws1_c01178{word-spacing:-0.320000pt;}
.ws2_c01178{word-spacing:0.000000pt;}
.ws0_c01178{word-spacing:4.053333pt;}
._17_c01178{margin-left:-31.106667pt;}
._10_c01178{margin-left:-17.365333pt;}
._1b_c01178{margin-left:-15.677333pt;}
._13_c01178{margin-left:-14.528000pt;}
._11_c01178{margin-left:-12.693333pt;}
._a_c01178{margin-left:-11.776000pt;}
._16_c01178{margin-left:-10.197333pt;}
._14_c01178{margin-left:-9.173333pt;}
._15_c01178{margin-left:-7.488000pt;}
._12_c01178{margin-left:-6.378667pt;}
._1c_c01178{margin-left:-5.469333pt;}
._d_c01178{margin-left:-4.458667pt;}
._b_c01178{margin-left:-2.858667pt;}
._9_c01178{margin-left:-1.856000pt;}
._0_c01178{margin-left:-0.928000pt;}
._3_c01178{width:1.152000pt;}
._4_c01178{width:2.496000pt;}
._5_c01178{width:3.968000pt;}
._8_c01178{width:5.120000pt;}
._7_c01178{width:6.016000pt;}
._6_c01178{width:7.424000pt;}
._e_c01178{width:8.960000pt;}
._2_c01178{width:9.898667pt;}
._c_c01178{width:11.541333pt;}
._f_c01178{width:13.504000pt;}
._19_c01178{width:15.002667pt;}
._18_c01178{width:16.357333pt;}
._1d_c01178{width:48.725333pt;}
._1_c01178{width:268.424000pt;}
._1a_c01178{width:375.312000pt;}
.fs5_c01178{font-size:21.333333pt;}
.fs6_c01178{font-size:42.666667pt;}
.fs4_c01178{font-size:50.666667pt;}
.fs2_c01178{font-size:56.000000pt;}
.fs1_c01178{font-size:64.000000pt;}
.fs3_c01178{font-size:72.000000pt;}
.fs0_c01178{font-size:77.333333pt;}
.y0_c01178{bottom:0.000000pt;}
.y1c_c01178{bottom:2.760000pt;}
.y1b_c01178{bottom:6.425212pt;}
.y1a_c01178{bottom:43.200000pt;}
.y19_c01178{bottom:87.333333pt;}
.y18_c01178{bottom:109.466667pt;}
.y17_c01178{bottom:174.933333pt;}
.y16_c01178{bottom:197.600000pt;}
.y15_c01178{bottom:219.333333pt;}
.y14_c01178{bottom:241.466667pt;}
.y13_c01178{bottom:262.800000pt;}
.y12_c01178{bottom:285.600000pt;}
.y11_c01178{bottom:306.666667pt;}
.y10_c01178{bottom:328.533333pt;}
.yf_c01178{bottom:349.866667pt;}
.ye_c01178{bottom:372.000000pt;}
.yd_c01178{bottom:393.333333pt;}
.yc_c01178{bottom:414.933333pt;}
.yb_c01178{bottom:436.266667pt;}
.ya_c01178{bottom:457.866667pt;}
.y9_c01178{bottom:478.533333pt;}
.y8_c01178{bottom:500.666667pt;}
.y7_c01178{bottom:522.400000pt;}
.y6_c01178{bottom:544.800000pt;}
.y5_c01178{bottom:566.666667pt;}
.y4_c01178{bottom:588.666667pt;}
.y3_c01178{bottom:611.066667pt;}
.y2_c01178{bottom:632.666667pt;}
.y1_c01178{bottom:655.200000pt;}
.h6_c01178{height:11.733399pt;}
.h7_c01178{height:38.937500pt;}
.h4_c01178{height:70.902344pt;}
.h5_c01178{height:72.562500pt;}
.h3_c01178{height:81.031250pt;}
.h2_c01178{height:90.511719pt;}
.h0_c01178{height:697.200000pt;}
.h1_c01178{height:697.333333pt;}
.w2_c01178{width:93.222667pt;}
.w0_c01178{width:477.866667pt;}
.w1_c01178{width:478.000000pt;}
.x0_c01178{left:0.000000pt;}
.x2_c01178{left:25.866667pt;}
.x3_c01178{left:27.066667pt;}
.x4_c01178{left:28.266667pt;}
.x5_c01178{left:30.000000pt;}
.x6_c01178{left:31.466667pt;}
.x7_c01178{left:32.400000pt;}
.x8_c01178{left:33.333333pt;}
.x9_c01178{left:34.533333pt;}
.xb_c01178{left:35.600000pt;}
.xc_c01178{left:36.800000pt;}
.xa_c01178{left:109.200000pt;}
.x1_c01178{left:156.000000pt;}
.xe_c01178{left:196.101563pt;}
.xd_c01178{left:313.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_50b522e3ae138ed49052722c.woff2')format("woff");}.ff1_c01179{font-family:ff1_c01179;line-height:1.480469;font-style:normal;font-weight:normal;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_90acd07f1550fc88a7c531fb.woff2')format("woff");}.ff2_c01179{font-family:ff2_c01179;line-height:1.568848;font-style:normal;font-weight:normal;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_00eef40fa6c34b75c7d284db.woff2')format("woff");}.ff3_c01179{font-family:ff3_c01179;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01179{font-family:ff4_c01179;line-height:1.219238;font-style: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);}
.m3_c01179{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1_c01179{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2_c01179{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.v0_c01179{vertical-align:0.000000px;}
.ls1_c01179{letter-spacing:0.000000px;}
.ls2_c01179{letter-spacing:6.000000px;}
.ls0_c01179{letter-spacing:6.771000px;}
.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;}
}
.ws2_c01179{word-spacing:-31.809000px;}
.ws3_c01179{word-spacing:-30.051000px;}
.ws0_c01179{word-spacing:-17.064000px;}
.ws1_c01179{word-spacing:-16.629000px;}
.ws4_c01179{word-spacing:0.000000px;}
._18_c01179{margin-left:-15.543000px;}
._11_c01179{margin-left:-10.695000px;}
._16_c01179{margin-left:-9.039000px;}
._e_c01179{margin-left:-7.671000px;}
._d_c01179{margin-left:-5.361000px;}
._c_c01179{margin-left:-4.017000px;}
._15_c01179{margin-left:-2.514000px;}
._b_c01179{margin-left:-1.503000px;}
._f_c01179{width:1.035000px;}
._9_c01179{width:2.247000px;}
._7_c01179{width:3.378000px;}
._8_c01179{width:4.560000px;}
._0_c01179{width:5.832000px;}
._2_c01179{width:7.704000px;}
._a_c01179{width:8.865000px;}
._4_c01179{width:10.584000px;}
._5_c01179{width:12.384000px;}
._3_c01179{width:14.400000px;}
._10_c01179{width:15.543000px;}
._1_c01179{width:18.648000px;}
._14_c01179{width:20.616000px;}
._12_c01179{width:21.723000px;}
._6_c01179{width:25.398000px;}
._13_c01179{width:30.900000px;}
._17_c01179{width:68.586000px;}
._19_c01179{width:355.971000px;}
.fc2_c01179{color:transparent;}
.fc1_c01179{color:rgb(128,128,128);}
.fc0_c01179{color:rgb(0,0,0);}
.fs2_c01179{font-size:24.000000px;}
.fs4_c01179{font-size:48.000000px;}
.fs3_c01179{font-size:63.000000px;}
.fs1_c01179{font-size:69.000000px;}
.fs0_c01179{font-size:72.000000px;}
.y0_c01179{bottom:0.000000px;}
.y1d_c01179{bottom:3.105000px;}
.y1c_c01179{bottom:7.228369px;}
.y1b_c01179{bottom:56.370000px;}
.y1a_c01179{bottom:81.720000px;}
.y19_c01179{bottom:104.970000px;}
.y18_c01179{bottom:129.270000px;}
.y17_c01179{bottom:154.620000px;}
.y16_c01179{bottom:180.120000px;}
.y15_c01179{bottom:204.420000px;}
.y14_c01179{bottom:230.070000px;}
.y13_c01179{bottom:255.420000px;}
.y12_c01179{bottom:278.820000px;}
.y11_c01179{bottom:302.670000px;}
.y10_c01179{bottom:328.770000px;}
.yf_c01179{bottom:353.970000px;}
.ye_c01179{bottom:377.220000px;}
.yd_c01179{bottom:403.320000px;}
.yc_c01179{bottom:428.520000px;}
.yb_c01179{bottom:500.070000px;}
.ya_c01179{bottom:524.520000px;}
.y9_c01179{bottom:550.020000px;}
.y8_c01179{bottom:575.070000px;}
.y7_c01179{bottom:599.970000px;}
.y6_c01179{bottom:627.720000px;}
.y5_c01179{bottom:651.420000px;}
.y4_c01179{bottom:676.620000px;}
.y3_c01179{bottom:701.370000px;}
.y2_c01179{bottom:726.570000px;}
.y1_c01179{bottom:751.320000px;}
.h4_c01179{height:13.200073px;}
.h5_c01179{height:43.804688px;}
.h1_c01179{height:84.269531px;}
.h2_c01179{height:87.361816px;}
.h3_c01179{height:91.160156px;}
.h0_c01179{height:800.250000px;}
.w2_c01179{width:104.875500px;}
.w1_c01179{width:528.000000px;}
.w0_c01179{width:528.150000px;}
.x0_c01179{left:0.000000px;}
.xa_c01179{left:28.350000px;}
.x9_c01179{left:32.400000px;}
.xb_c01179{left:82.650000px;}
.xd_c01179{left:105.000000px;}
.xc_c01179{left:106.200000px;}
.xe_c01179{left:107.400000px;}
.x8_c01179{left:108.450000px;}
.x5_c01179{left:109.650000px;}
.x4_c01179{left:111.150000px;}
.x3_c01179{left:112.350000px;}
.x2_c01179{left:113.700000px;}
.x6_c01179{left:212.250000px;}
.x13_c01179{left:215.889267px;}
.x1_c01179{left:236.550000px;}
.x7_c01179{left:255.450000px;}
.x10_c01179{left:287.250000px;}
.x11_c01179{left:299.850000px;}
.x12_c01179{left:335.850000px;}
.xf_c01179{left:417.900000px;}
@media print{
.v0_c01179{vertical-align:0.000000pt;}
.ls1_c01179{letter-spacing:0.000000pt;}
.ls2_c01179{letter-spacing:5.333333pt;}
.ls0_c01179{letter-spacing:6.018667pt;}
.ws2_c01179{word-spacing:-28.274667pt;}
.ws3_c01179{word-spacing:-26.712000pt;}
.ws0_c01179{word-spacing:-15.168000pt;}
.ws1_c01179{word-spacing:-14.781333pt;}
.ws4_c01179{word-spacing:0.000000pt;}
._18_c01179{margin-left:-13.816000pt;}
._11_c01179{margin-left:-9.506667pt;}
._16_c01179{margin-left:-8.034667pt;}
._e_c01179{margin-left:-6.818667pt;}
._d_c01179{margin-left:-4.765333pt;}
._c_c01179{margin-left:-3.570667pt;}
._15_c01179{margin-left:-2.234667pt;}
._b_c01179{margin-left:-1.336000pt;}
._f_c01179{width:0.920000pt;}
._9_c01179{width:1.997333pt;}
._7_c01179{width:3.002667pt;}
._8_c01179{width:4.053333pt;}
._0_c01179{width:5.184000pt;}
._2_c01179{width:6.848000pt;}
._a_c01179{width:7.880000pt;}
._4_c01179{width:9.408000pt;}
._5_c01179{width:11.008000pt;}
._3_c01179{width:12.800000pt;}
._10_c01179{width:13.816000pt;}
._1_c01179{width:16.576000pt;}
._14_c01179{width:18.325333pt;}
._12_c01179{width:19.309333pt;}
._6_c01179{width:22.576000pt;}
._13_c01179{width:27.466667pt;}
._17_c01179{width:60.965333pt;}
._19_c01179{width:316.418667pt;}
.fs2_c01179{font-size:21.333333pt;}
.fs4_c01179{font-size:42.666667pt;}
.fs3_c01179{font-size:56.000000pt;}
.fs1_c01179{font-size:61.333333pt;}
.fs0_c01179{font-size:64.000000pt;}
.y0_c01179{bottom:0.000000pt;}
.y1d_c01179{bottom:2.760000pt;}
.y1c_c01179{bottom:6.425217pt;}
.y1b_c01179{bottom:50.106667pt;}
.y1a_c01179{bottom:72.640000pt;}
.y19_c01179{bottom:93.306667pt;}
.y18_c01179{bottom:114.906667pt;}
.y17_c01179{bottom:137.440000pt;}
.y16_c01179{bottom:160.106667pt;}
.y15_c01179{bottom:181.706667pt;}
.y14_c01179{bottom:204.506667pt;}
.y13_c01179{bottom:227.040000pt;}
.y12_c01179{bottom:247.840000pt;}
.y11_c01179{bottom:269.040000pt;}
.y10_c01179{bottom:292.240000pt;}
.yf_c01179{bottom:314.640000pt;}
.ye_c01179{bottom:335.306667pt;}
.yd_c01179{bottom:358.506667pt;}
.yc_c01179{bottom:380.906667pt;}
.yb_c01179{bottom:444.506667pt;}
.ya_c01179{bottom:466.240000pt;}
.y9_c01179{bottom:488.906667pt;}
.y8_c01179{bottom:511.173333pt;}
.y7_c01179{bottom:533.306667pt;}
.y6_c01179{bottom:557.973333pt;}
.y5_c01179{bottom:579.040000pt;}
.y4_c01179{bottom:601.440000pt;}
.y3_c01179{bottom:623.440000pt;}
.y2_c01179{bottom:645.840000pt;}
.y1_c01179{bottom:667.840000pt;}
.h4_c01179{height:11.733399pt;}
.h5_c01179{height:38.937500pt;}
.h1_c01179{height:74.906250pt;}
.h2_c01179{height:77.654948pt;}
.h3_c01179{height:81.031250pt;}
.h0_c01179{height:711.333333pt;}
.w2_c01179{width:93.222667pt;}
.w1_c01179{width:469.333333pt;}
.w0_c01179{width:469.466667pt;}
.x0_c01179{left:0.000000pt;}
.xa_c01179{left:25.200000pt;}
.x9_c01179{left:28.800000pt;}
.xb_c01179{left:73.466667pt;}
.xd_c01179{left:93.333333pt;}
.xc_c01179{left:94.400000pt;}
.xe_c01179{left:95.466667pt;}
.x8_c01179{left:96.400000pt;}
.x5_c01179{left:97.466667pt;}
.x4_c01179{left:98.800000pt;}
.x3_c01179{left:99.866667pt;}
.x2_c01179{left:101.066667pt;}
.x6_c01179{left:188.666667pt;}
.x13_c01179{left:191.901571pt;}
.x1_c01179{left:210.266667pt;}
.x7_c01179{left:227.066667pt;}
.x10_c01179{left:255.333333pt;}
.x11_c01179{left:266.533333pt;}
.x12_c01179{left:298.533333pt;}
.xf_c01179{left:371.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ce12dcf9568ded7de81b47d7.woff2')format("woff");}.ff1_c01180{font-family:ff1_c01180;line-height:1.480469;font-style:normal;font-weight:normal;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_908951591cfd0df86828a003.woff2')format("woff");}.ff2_c01180{font-family:ff2_c01180;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01180{font-family:ff3_c01180;line-height:1.219238;font-style: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;}
.ls0_c01180{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01180{word-spacing:-17.352000px;}
.ws0_c01180{word-spacing:-15.192000px;}
.ws2_c01180{word-spacing:0.000000px;}
._19_c01180{margin-left:-63.150000px;}
._18_c01180{margin-left:-15.648000px;}
._15_c01180{margin-left:-14.112000px;}
._16_c01180{margin-left:-11.640000px;}
._13_c01180{margin-left:-7.704000px;}
._14_c01180{margin-left:-6.408000px;}
._b_c01180{margin-left:-5.400000px;}
._1b_c01180{margin-left:-4.368000px;}
._10_c01180{margin-left:-3.192000px;}
._11_c01180{margin-left:-2.088000px;}
._a_c01180{margin-left:-1.080000px;}
._f_c01180{width:1.488000px;}
._d_c01180{width:2.496000px;}
._c_c01180{width:3.600000px;}
._9_c01180{width:5.184000px;}
._8_c01180{width:6.192000px;}
._5_c01180{width:8.016000px;}
._e_c01180{width:9.312000px;}
._3_c01180{width:10.728000px;}
._1a_c01180{width:11.772000px;}
._7_c01180{width:12.888000px;}
._1_c01180{width:14.616000px;}
._12_c01180{width:15.720000px;}
._17_c01180{width:20.880000px;}
._0_c01180{width:23.760000px;}
._4_c01180{width:27.576000px;}
._2_c01180{width:28.944000px;}
._6_c01180{width:290.448000px;}
.fc2_c01180{color:transparent;}
.fc1_c01180{color:rgb(128,128,128);}
.fc0_c01180{color:rgb(0,0,0);}
.fs2_c01180{font-size:48.000000px;}
.fs1_c01180{font-size:69.000000px;}
.fs0_c01180{font-size:72.000000px;}
.y0_c01180{bottom:0.000000px;}
.y1f_c01180{bottom:3.105000px;}
.y1e_c01180{bottom:7.228369px;}
.y1d_c01180{bottom:46.470000px;}
.y1c_c01180{bottom:74.520000px;}
.y1b_c01180{bottom:101.220000px;}
.y1a_c01180{bottom:127.920000px;}
.y19_c01180{bottom:151.770000px;}
.y18_c01180{bottom:175.170000px;}
.y17_c01180{bottom:200.520000px;}
.y16_c01180{bottom:227.070000px;}
.y15_c01180{bottom:247.770000px;}
.y14_c01180{bottom:276.720000px;}
.y13_c01180{bottom:301.620000px;}
.y12_c01180{bottom:325.620000px;}
.y11_c01180{bottom:347.970000px;}
.y10_c01180{bottom:374.670000px;}
.yf_c01180{bottom:398.520000px;}
.ye_c01180{bottom:423.270000px;}
.yd_c01180{bottom:448.170000px;}
.yc_c01180{bottom:472.770000px;}
.yb_c01180{bottom:497.070000px;}
.ya_c01180{bottom:520.770000px;}
.y9_c01180{bottom:544.620000px;}
.y8_c01180{bottom:569.970000px;}
.y7_c01180{bottom:594.720000px;}
.y6_c01180{bottom:619.620000px;}
.y5_c01180{bottom:644.220000px;}
.y4_c01180{bottom:670.320000px;}
.y3_c01180{bottom:694.620000px;}
.y2_c01180{bottom:719.220000px;}
.y1_c01180{bottom:744.870000px;}
.h4_c01180{height:13.200073px;}
.h5_c01180{height:43.804688px;}
.h3_c01180{height:87.361816px;}
.h2_c01180{height:91.160156px;}
.h1_c01180{height:785.250000px;}
.h0_c01180{height:785.400000px;}
.w2_c01180{width:104.875500px;}
.w0_c01180{width:531.375000px;}
.w1_c01180{width:531.750000px;}
.x0_c01180{left:0.000000px;}
.x2_c01180{left:24.600000px;}
.x3_c01180{left:27.300000px;}
.x4_c01180{left:28.950000px;}
.x5_c01180{left:30.000000px;}
.x6_c01180{left:31.650000px;}
.x7_c01180{left:33.450000px;}
.x8_c01180{left:34.650000px;}
.x9_c01180{left:36.150000px;}
.xa_c01180{left:37.350000px;}
.xb_c01180{left:38.700000px;}
.xc_c01180{left:39.750000px;}
.xd_c01180{left:40.800000px;}
.xe_c01180{left:42.900000px;}
.x1_c01180{left:135.450000px;}
.x10_c01180{left:217.501740px;}
.xf_c01180{left:412.050000px;}
@media print{
.v0_c01180{vertical-align:0.000000pt;}
.ls0_c01180{letter-spacing:0.000000pt;}
.ws1_c01180{word-spacing:-15.424000pt;}
.ws0_c01180{word-spacing:-13.504000pt;}
.ws2_c01180{word-spacing:0.000000pt;}
._19_c01180{margin-left:-56.133333pt;}
._18_c01180{margin-left:-13.909333pt;}
._15_c01180{margin-left:-12.544000pt;}
._16_c01180{margin-left:-10.346667pt;}
._13_c01180{margin-left:-6.848000pt;}
._14_c01180{margin-left:-5.696000pt;}
._b_c01180{margin-left:-4.800000pt;}
._1b_c01180{margin-left:-3.882667pt;}
._10_c01180{margin-left:-2.837333pt;}
._11_c01180{margin-left:-1.856000pt;}
._a_c01180{margin-left:-0.960000pt;}
._f_c01180{width:1.322667pt;}
._d_c01180{width:2.218667pt;}
._c_c01180{width:3.200000pt;}
._9_c01180{width:4.608000pt;}
._8_c01180{width:5.504000pt;}
._5_c01180{width:7.125333pt;}
._e_c01180{width:8.277333pt;}
._3_c01180{width:9.536000pt;}
._1a_c01180{width:10.464000pt;}
._7_c01180{width:11.456000pt;}
._1_c01180{width:12.992000pt;}
._12_c01180{width:13.973333pt;}
._17_c01180{width:18.560000pt;}
._0_c01180{width:21.120000pt;}
._4_c01180{width:24.512000pt;}
._2_c01180{width:25.728000pt;}
._6_c01180{width:258.176000pt;}
.fs2_c01180{font-size:42.666667pt;}
.fs1_c01180{font-size:61.333333pt;}
.fs0_c01180{font-size:64.000000pt;}
.y0_c01180{bottom:0.000000pt;}
.y1f_c01180{bottom:2.760000pt;}
.y1e_c01180{bottom:6.425217pt;}
.y1d_c01180{bottom:41.306667pt;}
.y1c_c01180{bottom:66.240000pt;}
.y1b_c01180{bottom:89.973333pt;}
.y1a_c01180{bottom:113.706667pt;}
.y19_c01180{bottom:134.906667pt;}
.y18_c01180{bottom:155.706667pt;}
.y17_c01180{bottom:178.240000pt;}
.y16_c01180{bottom:201.840000pt;}
.y15_c01180{bottom:220.240000pt;}
.y14_c01180{bottom:245.973333pt;}
.y13_c01180{bottom:268.106667pt;}
.y12_c01180{bottom:289.440000pt;}
.y11_c01180{bottom:309.306667pt;}
.y10_c01180{bottom:333.040000pt;}
.yf_c01180{bottom:354.240000pt;}
.ye_c01180{bottom:376.240000pt;}
.yd_c01180{bottom:398.373333pt;}
.yc_c01180{bottom:420.240000pt;}
.yb_c01180{bottom:441.840000pt;}
.ya_c01180{bottom:462.906667pt;}
.y9_c01180{bottom:484.106667pt;}
.y8_c01180{bottom:506.640000pt;}
.y7_c01180{bottom:528.640000pt;}
.y6_c01180{bottom:550.773333pt;}
.y5_c01180{bottom:572.640000pt;}
.y4_c01180{bottom:595.840000pt;}
.y3_c01180{bottom:617.440000pt;}
.y2_c01180{bottom:639.306667pt;}
.y1_c01180{bottom:662.106667pt;}
.h4_c01180{height:11.733399pt;}
.h5_c01180{height:38.937500pt;}
.h3_c01180{height:77.654948pt;}
.h2_c01180{height:81.031250pt;}
.h1_c01180{height:698.000000pt;}
.h0_c01180{height:698.133333pt;}
.w2_c01180{width:93.222667pt;}
.w0_c01180{width:472.333333pt;}
.w1_c01180{width:472.666667pt;}
.x0_c01180{left:0.000000pt;}
.x2_c01180{left:21.866667pt;}
.x3_c01180{left:24.266667pt;}
.x4_c01180{left:25.733333pt;}
.x5_c01180{left:26.666667pt;}
.x6_c01180{left:28.133333pt;}
.x7_c01180{left:29.733333pt;}
.x8_c01180{left:30.800000pt;}
.x9_c01180{left:32.133333pt;}
.xa_c01180{left:33.200000pt;}
.xb_c01180{left:34.400000pt;}
.xc_c01180{left:35.333333pt;}
.xd_c01180{left:36.266667pt;}
.xe_c01180{left:38.133333pt;}
.x1_c01180{left:120.400000pt;}
.x10_c01180{left:193.334880pt;}
.xf_c01180{left:366.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c7e22a6769562ca6158c71aa.woff2')format("woff");}.ff1_c01181{font-family:ff1_c01181;line-height:1.480469;font-style:normal;font-weight:normal;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_8fc67a6552b50535e0e526ff.woff2')format("woff");}.ff2_c01181{font-family:ff2_c01181;line-height:1.568848;font-style:normal;font-weight:normal;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_9f15688bc7688ddd5dd2b9aa.woff2')format("woff");}.ff3_c01181{font-family:ff3_c01181;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01181;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c01181{font-family:ff4_c01181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01181;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01181{font-family:ff5_c01181;line-height:1.219238;font-style: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;}
.ls2_c01181{letter-spacing:-6.000000px;}
.ls0_c01181{letter-spacing:-3.000000px;}
.ls1_c01181{letter-spacing:0.000000px;}
.ls3_c01181{letter-spacing:3.000000px;}
.ls4_c01181{letter-spacing:48.000000px;}
.sc__c01181{text-shadow:none;}
.sc0_c01181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01181{-webkit-text-stroke:0px transparent;}
.sc0_c01181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01181{word-spacing:-65.352000px;}
.ws0_c01181{word-spacing:-17.352000px;}
.ws1_c01181{word-spacing:-17.250000px;}
.ws3_c01181{word-spacing:0.000000px;}
._11_c01181{margin-left:-19.152000px;}
._14_c01181{margin-left:-15.390000px;}
._12_c01181{margin-left:-13.392000px;}
._18_c01181{margin-left:-11.910000px;}
._15_c01181{margin-left:-10.374000px;}
._16_c01181{margin-left:-9.204000px;}
._c_c01181{margin-left:-7.920000px;}
._d_c01181{margin-left:-6.264000px;}
._f_c01181{margin-left:-4.860000px;}
._a_c01181{margin-left:-3.744000px;}
._b_c01181{margin-left:-2.088000px;}
._7_c01181{width:1.518000px;}
._9_c01181{width:3.024000px;}
._8_c01181{width:4.464000px;}
._17_c01181{width:5.508000px;}
._1_c01181{width:6.534000px;}
._3_c01181{width:8.346000px;}
._10_c01181{width:9.372000px;}
._4_c01181{width:10.722000px;}
._13_c01181{width:12.990000px;}
._2_c01181{width:14.118000px;}
._0_c01181{width:17.754000px;}
._5_c01181{width:20.862000px;}
._6_c01181{width:22.470000px;}
._19_c01181{width:104.808000px;}
._e_c01181{width:111.168000px;}
._1b_c01181{width:518.388000px;}
._1a_c01181{width:734.490000px;}
.fc2_c01181{color:transparent;}
.fc1_c01181{color:rgb(128,128,128);}
.fc0_c01181{color:rgb(0,0,0);}
.fs4_c01181{font-size:48.000000px;}
.fs3_c01181{font-size:57.000000px;}
.fs0_c01181{font-size:66.000000px;}
.fs1_c01181{font-size:72.000000px;}
.fs2_c01181{font-size:93.000000px;}
.y0_c01181{bottom:0.000000px;}
.y1f_c01181{bottom:3.105000px;}
.y1e_c01181{bottom:7.228363px;}
.y1d_c01181{bottom:61.650000px;}
.y1c_c01181{bottom:86.700000px;}
.y1b_c01181{bottom:109.050000px;}
.y1a_c01181{bottom:133.350000px;}
.y19_c01181{bottom:158.700000px;}
.y18_c01181{bottom:184.650000px;}
.y17_c01181{bottom:209.550000px;}
.y16_c01181{bottom:234.150000px;}
.y15_c01181{bottom:258.900000px;}
.y14_c01181{bottom:285.450000px;}
.y13_c01181{bottom:310.050000px;}
.y12_c01181{bottom:334.800000px;}
.y11_c01181{bottom:359.100000px;}
.y10_c01181{bottom:383.400000px;}
.yf_c01181{bottom:407.400000px;}
.ye_c01181{bottom:429.900000px;}
.yd_c01181{bottom:452.850000px;}
.yc_c01181{bottom:478.500000px;}
.yb_c01181{bottom:501.750000px;}
.ya_c01181{bottom:526.800000px;}
.y9_c01181{bottom:551.700000px;}
.y8_c01181{bottom:576.450000px;}
.y7_c01181{bottom:600.450000px;}
.y6_c01181{bottom:625.500000px;}
.y5_c01181{bottom:650.250000px;}
.y4_c01181{bottom:675.000000px;}
.y3_c01181{bottom:699.600000px;}
.y2_c01181{bottom:724.650000px;}
.y1_c01181{bottom:750.600000px;}
.h5_c01181{height:13.200074px;}
.h6_c01181{height:43.804688px;}
.h2_c01181{height:83.563477px;}
.h3_c01181{height:91.160156px;}
.h4_c01181{height:93.726562px;}
.h1_c01181{height:786.750000px;}
.h0_c01181{height:787.050000px;}
.w2_c01181{width:104.875500px;}
.w0_c01181{width:525.675000px;}
.w1_c01181{width:525.750000px;}
.x0_c01181{left:0.000000px;}
.x4_c01181{left:21.300000px;}
.x2_c01181{left:99.600000px;}
.x6_c01181{left:100.950000px;}
.xa_c01181{left:103.350000px;}
.xb_c01181{left:104.400000px;}
.x8_c01181{left:107.700000px;}
.x7_c01181{left:108.750000px;}
.x3_c01181{left:109.800000px;}
.xc_c01181{left:111.450000px;}
.xd_c01181{left:112.500000px;}
.x5_c01181{left:133.950000px;}
.xe_c01181{left:214.651749px;}
.x1_c01181{left:230.400000px;}
.x9_c01181{left:362.550000px;}
@media print{
.v0_c01181{vertical-align:0.000000pt;}
.ls2_c01181{letter-spacing:-5.333333pt;}
.ls0_c01181{letter-spacing:-2.666667pt;}
.ls1_c01181{letter-spacing:0.000000pt;}
.ls3_c01181{letter-spacing:2.666667pt;}
.ls4_c01181{letter-spacing:42.666667pt;}
.ws2_c01181{word-spacing:-58.090667pt;}
.ws0_c01181{word-spacing:-15.424000pt;}
.ws1_c01181{word-spacing:-15.333333pt;}
.ws3_c01181{word-spacing:0.000000pt;}
._11_c01181{margin-left:-17.024000pt;}
._14_c01181{margin-left:-13.680000pt;}
._12_c01181{margin-left:-11.904000pt;}
._18_c01181{margin-left:-10.586667pt;}
._15_c01181{margin-left:-9.221333pt;}
._16_c01181{margin-left:-8.181333pt;}
._c_c01181{margin-left:-7.040000pt;}
._d_c01181{margin-left:-5.568000pt;}
._f_c01181{margin-left:-4.320000pt;}
._a_c01181{margin-left:-3.328000pt;}
._b_c01181{margin-left:-1.856000pt;}
._7_c01181{width:1.349333pt;}
._9_c01181{width:2.688000pt;}
._8_c01181{width:3.968000pt;}
._17_c01181{width:4.896000pt;}
._1_c01181{width:5.808000pt;}
._3_c01181{width:7.418667pt;}
._10_c01181{width:8.330667pt;}
._4_c01181{width:9.530667pt;}
._13_c01181{width:11.546667pt;}
._2_c01181{width:12.549333pt;}
._0_c01181{width:15.781333pt;}
._5_c01181{width:18.544000pt;}
._6_c01181{width:19.973333pt;}
._19_c01181{width:93.162667pt;}
._e_c01181{width:98.816000pt;}
._1b_c01181{width:460.789333pt;}
._1a_c01181{width:652.880000pt;}
.fs4_c01181{font-size:42.666667pt;}
.fs3_c01181{font-size:50.666667pt;}
.fs0_c01181{font-size:58.666667pt;}
.fs1_c01181{font-size:64.000000pt;}
.fs2_c01181{font-size:82.666667pt;}
.y0_c01181{bottom:0.000000pt;}
.y1f_c01181{bottom:2.760000pt;}
.y1e_c01181{bottom:6.425212pt;}
.y1d_c01181{bottom:54.800000pt;}
.y1c_c01181{bottom:77.066667pt;}
.y1b_c01181{bottom:96.933333pt;}
.y1a_c01181{bottom:118.533333pt;}
.y19_c01181{bottom:141.066667pt;}
.y18_c01181{bottom:164.133333pt;}
.y17_c01181{bottom:186.266667pt;}
.y16_c01181{bottom:208.133333pt;}
.y15_c01181{bottom:230.133333pt;}
.y14_c01181{bottom:253.733333pt;}
.y13_c01181{bottom:275.600000pt;}
.y12_c01181{bottom:297.600000pt;}
.y11_c01181{bottom:319.200000pt;}
.y10_c01181{bottom:340.800000pt;}
.yf_c01181{bottom:362.133333pt;}
.ye_c01181{bottom:382.133333pt;}
.yd_c01181{bottom:402.533333pt;}
.yc_c01181{bottom:425.333333pt;}
.yb_c01181{bottom:446.000000pt;}
.ya_c01181{bottom:468.266667pt;}
.y9_c01181{bottom:490.400000pt;}
.y8_c01181{bottom:512.400000pt;}
.y7_c01181{bottom:533.733333pt;}
.y6_c01181{bottom:556.000000pt;}
.y5_c01181{bottom:578.000000pt;}
.y4_c01181{bottom:600.000000pt;}
.y3_c01181{bottom:621.866667pt;}
.y2_c01181{bottom:644.133333pt;}
.y1_c01181{bottom:667.200000pt;}
.h5_c01181{height:11.733399pt;}
.h6_c01181{height:38.937500pt;}
.h2_c01181{height:74.278646pt;}
.h3_c01181{height:81.031250pt;}
.h4_c01181{height:83.312500pt;}
.h1_c01181{height:699.333333pt;}
.h0_c01181{height:699.600000pt;}
.w2_c01181{width:93.222667pt;}
.w0_c01181{width:467.266667pt;}
.w1_c01181{width:467.333333pt;}
.x0_c01181{left:0.000000pt;}
.x4_c01181{left:18.933333pt;}
.x2_c01181{left:88.533333pt;}
.x6_c01181{left:89.733333pt;}
.xa_c01181{left:91.866667pt;}
.xb_c01181{left:92.800000pt;}
.x8_c01181{left:95.733333pt;}
.x7_c01181{left:96.666667pt;}
.x3_c01181{left:97.600000pt;}
.xc_c01181{left:99.066667pt;}
.xd_c01181{left:100.000000pt;}
.x5_c01181{left:119.066667pt;}
.xe_c01181{left:190.801554pt;}
.x1_c01181{left:204.800000pt;}
.x9_c01181{left:322.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_89da0eba3f705240bed5e935.woff2')format("woff");}.ff1_c01182{font-family:ff1_c01182;line-height:1.284180;font-style:normal;font-weight:normal;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_7f70de6442cccb2a91ad53ae.woff2')format("woff");}.ff2_c01182{font-family:ff2_c01182;line-height:1.568848;font-style:normal;font-weight:normal;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_c774292bb395936040b8af52.woff2')format("woff");}.ff3_c01182{font-family:ff3_c01182;line-height:1.480469;font-style:normal;font-weight:normal;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_7ed8adc4e9ddd19bab068969.woff2')format("woff");}.ff4_c01182{font-family:ff4_c01182;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01182{font-family:ff5_c01182;line-height:1.219238;font-style: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;}
.ls1_c01182{letter-spacing:0.000000px;}
.ls0_c01182{letter-spacing:37.188000px;}
.sc__c01182{text-shadow:none;}
.sc0_c01182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01182{-webkit-text-stroke:0px transparent;}
.sc0_c01182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01182{word-spacing:-20.967000px;}
.ws0_c01182{word-spacing:-17.352000px;}
.ws2_c01182{word-spacing:0.000000px;}
._13_c01182{margin-left:-28.008000px;}
._17_c01182{margin-left:-16.965000px;}
._1a_c01182{margin-left:-15.138000px;}
._1b_c01182{margin-left:-13.644000px;}
._18_c01182{margin-left:-11.919000px;}
._f_c01182{margin-left:-8.856000px;}
._2_c01182{margin-left:-6.888000px;}
._10_c01182{margin-left:-5.664000px;}
._11_c01182{margin-left:-4.140000px;}
._c_c01182{margin-left:-2.724000px;}
._9_c01182{margin-left:-1.548000px;}
._0_c01182{width:1.092000px;}
._1_c01182{width:2.100000px;}
._3_c01182{width:3.696000px;}
._4_c01182{width:4.788000px;}
._5_c01182{width:6.216000px;}
._a_c01182{width:7.308000px;}
._e_c01182{width:9.204000px;}
._b_c01182{width:10.716000px;}
._15_c01182{width:12.036000px;}
._7_c01182{width:16.212000px;}
._d_c01182{width:19.512000px;}
._8_c01182{width:22.260000px;}
._16_c01182{width:27.321000px;}
._14_c01182{width:57.384000px;}
._12_c01182{width:79.908000px;}
._6_c01182{width:280.812000px;}
._19_c01182{width:309.978000px;}
.fc2_c01182{color:transparent;}
.fc1_c01182{color:rgb(128,128,128);}
.fc0_c01182{color:rgb(0,0,0);}
.fs4_c01182{font-size:48.000000px;}
.fs2_c01182{font-size:63.000000px;}
.fs1_c01182{font-size:72.000000px;}
.fs0_c01182{font-size:84.000000px;}
.fs3_c01182{font-size:87.000000px;}
.y0_c01182{bottom:0.000000px;}
.y1f_c01182{bottom:3.105000px;}
.y1e_c01182{bottom:7.228369px;}
.y1d_c01182{bottom:63.720000px;}
.y1c_c01182{bottom:89.070000px;}
.y1b_c01182{bottom:115.470000px;}
.y1a_c01182{bottom:139.320000px;}
.y19_c01182{bottom:164.070000px;}
.y18_c01182{bottom:189.270000px;}
.y17_c01182{bottom:214.320000px;}
.y16_c01182{bottom:241.020000px;}
.y15_c01182{bottom:263.820000px;}
.y14_c01182{bottom:289.470000px;}
.y13_c01182{bottom:313.770000px;}
.y12_c01182{bottom:340.920000px;}
.y11_c01182{bottom:363.420000px;}
.y10_c01182{bottom:388.470000px;}
.yf_c01182{bottom:413.070000px;}
.ye_c01182{bottom:437.970000px;}
.yd_c01182{bottom:463.020000px;}
.yc_c01182{bottom:486.570000px;}
.yb_c01182{bottom:511.920000px;}
.ya_c01182{bottom:535.320000px;}
.y9_c01182{bottom:559.920000px;}
.y8_c01182{bottom:583.770000px;}
.y7_c01182{bottom:609.420000px;}
.y6_c01182{bottom:634.170000px;}
.y5_c01182{bottom:658.170000px;}
.y4_c01182{bottom:683.820000px;}
.y3_c01182{bottom:708.120000px;}
.y2_c01182{bottom:734.070000px;}
.y1_c01182{bottom:760.620000px;}
.h5_c01182{height:13.200073px;}
.h6_c01182{height:43.804688px;}
.h2_c01182{height:82.400391px;}
.h3_c01182{height:91.160156px;}
.h4_c01182{height:110.151855px;}
.h1_c01182{height:792.000000px;}
.h0_c01182{height:792.150000px;}
.w2_c01182{width:104.875500px;}
.w1_c01182{width:547.500000px;}
.w0_c01182{width:547.800000px;}
.x0_c01182{left:0.000000px;}
.x7_c01182{left:21.600000px;}
.x5_c01182{left:23.850000px;}
.x2_c01182{left:26.550000px;}
.x6_c01182{left:27.900000px;}
.x3_c01182{left:31.950000px;}
.x4_c01182{left:33.000000px;}
.x1_c01182{left:142.800000px;}
.x9_c01182{left:225.714249px;}
.x8_c01182{left:271.800000px;}
@media print{
.v0_c01182{vertical-align:0.000000pt;}
.ls1_c01182{letter-spacing:0.000000pt;}
.ls0_c01182{letter-spacing:33.056000pt;}
.ws1_c01182{word-spacing:-18.637333pt;}
.ws0_c01182{word-spacing:-15.424000pt;}
.ws2_c01182{word-spacing:0.000000pt;}
._13_c01182{margin-left:-24.896000pt;}
._17_c01182{margin-left:-15.080000pt;}
._1a_c01182{margin-left:-13.456000pt;}
._1b_c01182{margin-left:-12.128000pt;}
._18_c01182{margin-left:-10.594667pt;}
._f_c01182{margin-left:-7.872000pt;}
._2_c01182{margin-left:-6.122667pt;}
._10_c01182{margin-left:-5.034667pt;}
._11_c01182{margin-left:-3.680000pt;}
._c_c01182{margin-left:-2.421333pt;}
._9_c01182{margin-left:-1.376000pt;}
._0_c01182{width:0.970667pt;}
._1_c01182{width:1.866667pt;}
._3_c01182{width:3.285333pt;}
._4_c01182{width:4.256000pt;}
._5_c01182{width:5.525333pt;}
._a_c01182{width:6.496000pt;}
._e_c01182{width:8.181333pt;}
._b_c01182{width:9.525333pt;}
._15_c01182{width:10.698667pt;}
._7_c01182{width:14.410667pt;}
._d_c01182{width:17.344000pt;}
._8_c01182{width:19.786667pt;}
._16_c01182{width:24.285333pt;}
._14_c01182{width:51.008000pt;}
._12_c01182{width:71.029333pt;}
._6_c01182{width:249.610667pt;}
._19_c01182{width:275.536000pt;}
.fs4_c01182{font-size:42.666667pt;}
.fs2_c01182{font-size:56.000000pt;}
.fs1_c01182{font-size:64.000000pt;}
.fs0_c01182{font-size:74.666667pt;}
.fs3_c01182{font-size:77.333333pt;}
.y0_c01182{bottom:0.000000pt;}
.y1f_c01182{bottom:2.760000pt;}
.y1e_c01182{bottom:6.425217pt;}
.y1d_c01182{bottom:56.640000pt;}
.y1c_c01182{bottom:79.173333pt;}
.y1b_c01182{bottom:102.640000pt;}
.y1a_c01182{bottom:123.840000pt;}
.y19_c01182{bottom:145.840000pt;}
.y18_c01182{bottom:168.240000pt;}
.y17_c01182{bottom:190.506667pt;}
.y16_c01182{bottom:214.240000pt;}
.y15_c01182{bottom:234.506667pt;}
.y14_c01182{bottom:257.306667pt;}
.y13_c01182{bottom:278.906667pt;}
.y12_c01182{bottom:303.040000pt;}
.y11_c01182{bottom:323.040000pt;}
.y10_c01182{bottom:345.306667pt;}
.yf_c01182{bottom:367.173333pt;}
.ye_c01182{bottom:389.306667pt;}
.yd_c01182{bottom:411.573333pt;}
.yc_c01182{bottom:432.506667pt;}
.yb_c01182{bottom:455.040000pt;}
.ya_c01182{bottom:475.840000pt;}
.y9_c01182{bottom:497.706667pt;}
.y8_c01182{bottom:518.906667pt;}
.y7_c01182{bottom:541.706667pt;}
.y6_c01182{bottom:563.706667pt;}
.y5_c01182{bottom:585.040000pt;}
.y4_c01182{bottom:607.840000pt;}
.y3_c01182{bottom:629.440000pt;}
.y2_c01182{bottom:652.506667pt;}
.y1_c01182{bottom:676.106667pt;}
.h5_c01182{height:11.733399pt;}
.h6_c01182{height:38.937500pt;}
.h2_c01182{height:73.244792pt;}
.h3_c01182{height:81.031250pt;}
.h4_c01182{height:97.912760pt;}
.h1_c01182{height:704.000000pt;}
.h0_c01182{height:704.133333pt;}
.w2_c01182{width:93.222667pt;}
.w1_c01182{width:486.666667pt;}
.w0_c01182{width:486.933333pt;}
.x0_c01182{left:0.000000pt;}
.x7_c01182{left:19.200000pt;}
.x5_c01182{left:21.200000pt;}
.x2_c01182{left:23.600000pt;}
.x6_c01182{left:24.800000pt;}
.x3_c01182{left:28.400000pt;}
.x4_c01182{left:29.333333pt;}
.x1_c01182{left:126.933333pt;}
.x9_c01182{left:200.634888pt;}
.x8_c01182{left:241.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d7a76912ce13141d2d14c0db.woff2')format("woff");}.ff1_c01183{font-family:ff1_c01183;line-height:1.480469;font-style:normal;font-weight:normal;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_00360cf3fa7220d3b4a66664.woff2')format("woff");}.ff2_c01183{font-family:ff2_c01183;line-height:1.568848;font-style:normal;font-weight:normal;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_81c5cb46e94393f6ee02035a.woff2')format("woff");}.ff3_c01183{font-family:ff3_c01183;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01183;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01183{font-family:ff4_c01183;line-height:1.219238;font-style: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;}
.ls0_c01183{letter-spacing:0.000000px;}
.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:-17.352000px;}
.ws1_c01183{word-spacing:0.000000px;}
._1a_c01183{margin-left:-23.808000px;}
._14_c01183{margin-left:-18.144000px;}
._3_c01183{margin-left:-16.920000px;}
._12_c01183{margin-left:-14.544000px;}
._10_c01183{margin-left:-10.728000px;}
._13_c01183{margin-left:-9.288000px;}
._d_c01183{margin-left:-7.416000px;}
._18_c01183{margin-left:-6.048000px;}
._8_c01183{margin-left:-4.896000px;}
._9_c01183{margin-left:-3.168000px;}
._a_c01183{margin-left:-1.368000px;}
._1_c01183{width:1.224000px;}
._0_c01183{width:2.880000px;}
._6_c01183{width:4.752000px;}
._4_c01183{width:5.976000px;}
._b_c01183{width:7.632000px;}
._5_c01183{width:9.144000px;}
._16_c01183{width:10.296000px;}
._c_c01183{width:11.304000px;}
._e_c01183{width:12.312000px;}
._7_c01183{width:14.256000px;}
._17_c01183{width:15.264000px;}
._25_c01183{width:17.556000px;}
._1f_c01183{width:18.576000px;}
._2_c01183{width:19.584000px;}
._11_c01183{width:20.952000px;}
._15_c01183{width:23.904000px;}
._1d_c01183{width:24.984000px;}
._19_c01183{width:29.232000px;}
._1c_c01183{width:34.224000px;}
._24_c01183{width:70.344000px;}
._23_c01183{width:84.744000px;}
._21_c01183{width:101.376000px;}
._22_c01183{width:111.096000px;}
._f_c01183{width:114.264000px;}
._1e_c01183{width:181.200000px;}
._20_c01183{width:198.144000px;}
._1b_c01183{width:221.472000px;}
.fc2_c01183{color:transparent;}
.fc1_c01183{color:rgb(128,128,128);}
.fc0_c01183{color:rgb(0,0,0);}
.fs1_c01183{font-size:39.000000px;}
.fs3_c01183{font-size:48.000000px;}
.fs2_c01183{font-size:57.000000px;}
.fs0_c01183{font-size:72.000000px;}
.y0_c01183{bottom:0.000000px;}
.y1f_c01183{bottom:3.105000px;}
.y1e_c01183{bottom:7.228363px;}
.y1d_c01183{bottom:65.100000px;}
.y1c_c01183{bottom:92.550000px;}
.y1b_c01183{bottom:111.600000px;}
.y1a_c01183{bottom:138.150000px;}
.y19_c01183{bottom:161.400000px;}
.y18_c01183{bottom:187.950000px;}
.y17_c01183{bottom:211.050000px;}
.y16_c01183{bottom:237.900000px;}
.y15_c01183{bottom:263.550000px;}
.y14_c01183{bottom:290.250000px;}
.y13_c01183{bottom:314.550000px;}
.y12_c01183{bottom:337.950000px;}
.y11_c01183{bottom:363.600000px;}
.y10_c01183{bottom:385.200000px;}
.yf_c01183{bottom:410.400000px;}
.ye_c01183{bottom:437.100000px;}
.yd_c01183{bottom:457.350000px;}
.yc_c01183{bottom:482.400000px;}
.yb_c01183{bottom:507.300000px;}
.ya_c01183{bottom:532.500000px;}
.y9_c01183{bottom:557.250000px;}
.y8_c01183{bottom:582.750000px;}
.y7_c01183{bottom:608.250000px;}
.y6_c01183{bottom:632.100000px;}
.y5_c01183{bottom:658.500000px;}
.y4_c01183{bottom:683.700000px;}
.y3_c01183{bottom:708.450000px;}
.y2_c01183{bottom:733.350000px;}
.y1_c01183{bottom:758.700000px;}
.h4_c01183{height:13.200074px;}
.h5_c01183{height:43.804688px;}
.h3_c01183{height:72.168457px;}
.h2_c01183{height:91.160156px;}
.h0_c01183{height:797.850000px;}
.h1_c01183{height:798.000000px;}
.w2_c01183{width:104.875500px;}
.w0_c01183{width:532.425000px;}
.w1_c01183{width:532.500000px;}
.x0_c01183{left:0.000000px;}
.xd_c01183{left:35.400000px;}
.x8_c01183{left:38.100000px;}
.xc_c01183{left:39.150000px;}
.xf_c01183{left:40.800000px;}
.x2_c01183{left:110.400000px;}
.x3_c01183{left:112.050000px;}
.x5_c01183{left:114.750000px;}
.x6_c01183{left:116.100000px;}
.x7_c01183{left:117.450000px;}
.xa_c01183{left:119.100000px;}
.xb_c01183{left:121.200000px;}
.x10_c01183{left:123.600000px;}
.x4_c01183{left:138.450000px;}
.x9_c01183{left:159.600000px;}
.xe_c01183{left:194.400000px;}
.x12_c01183{left:218.026749px;}
.x1_c01183{left:226.350000px;}
.x11_c01183{left:488.100000px;}
@media print{
.v0_c01183{vertical-align:0.000000pt;}
.ls0_c01183{letter-spacing:0.000000pt;}
.ws0_c01183{word-spacing:-15.424000pt;}
.ws1_c01183{word-spacing:0.000000pt;}
._1a_c01183{margin-left:-21.162667pt;}
._14_c01183{margin-left:-16.128000pt;}
._3_c01183{margin-left:-15.040000pt;}
._12_c01183{margin-left:-12.928000pt;}
._10_c01183{margin-left:-9.536000pt;}
._13_c01183{margin-left:-8.256000pt;}
._d_c01183{margin-left:-6.592000pt;}
._18_c01183{margin-left:-5.376000pt;}
._8_c01183{margin-left:-4.352000pt;}
._9_c01183{margin-left:-2.816000pt;}
._a_c01183{margin-left:-1.216000pt;}
._1_c01183{width:1.088000pt;}
._0_c01183{width:2.560000pt;}
._6_c01183{width:4.224000pt;}
._4_c01183{width:5.312000pt;}
._b_c01183{width:6.784000pt;}
._5_c01183{width:8.128000pt;}
._16_c01183{width:9.152000pt;}
._c_c01183{width:10.048000pt;}
._e_c01183{width:10.944000pt;}
._7_c01183{width:12.672000pt;}
._17_c01183{width:13.568000pt;}
._25_c01183{width:15.605333pt;}
._1f_c01183{width:16.512000pt;}
._2_c01183{width:17.408000pt;}
._11_c01183{width:18.624000pt;}
._15_c01183{width:21.248000pt;}
._1d_c01183{width:22.208000pt;}
._19_c01183{width:25.984000pt;}
._1c_c01183{width:30.421333pt;}
._24_c01183{width:62.528000pt;}
._23_c01183{width:75.328000pt;}
._21_c01183{width:90.112000pt;}
._22_c01183{width:98.752000pt;}
._f_c01183{width:101.568000pt;}
._1e_c01183{width:161.066667pt;}
._20_c01183{width:176.128000pt;}
._1b_c01183{width:196.864000pt;}
.fs1_c01183{font-size:34.666667pt;}
.fs3_c01183{font-size:42.666667pt;}
.fs2_c01183{font-size:50.666667pt;}
.fs0_c01183{font-size:64.000000pt;}
.y0_c01183{bottom:0.000000pt;}
.y1f_c01183{bottom:2.760000pt;}
.y1e_c01183{bottom:6.425212pt;}
.y1d_c01183{bottom:57.866667pt;}
.y1c_c01183{bottom:82.266667pt;}
.y1b_c01183{bottom:99.200000pt;}
.y1a_c01183{bottom:122.800000pt;}
.y19_c01183{bottom:143.466667pt;}
.y18_c01183{bottom:167.066667pt;}
.y17_c01183{bottom:187.600000pt;}
.y16_c01183{bottom:211.466667pt;}
.y15_c01183{bottom:234.266667pt;}
.y14_c01183{bottom:258.000000pt;}
.y13_c01183{bottom:279.600000pt;}
.y12_c01183{bottom:300.400000pt;}
.y11_c01183{bottom:323.200000pt;}
.y10_c01183{bottom:342.400000pt;}
.yf_c01183{bottom:364.800000pt;}
.ye_c01183{bottom:388.533333pt;}
.yd_c01183{bottom:406.533333pt;}
.yc_c01183{bottom:428.800000pt;}
.yb_c01183{bottom:450.933333pt;}
.ya_c01183{bottom:473.333333pt;}
.y9_c01183{bottom:495.333333pt;}
.y8_c01183{bottom:518.000000pt;}
.y7_c01183{bottom:540.666667pt;}
.y6_c01183{bottom:561.866667pt;}
.y5_c01183{bottom:585.333333pt;}
.y4_c01183{bottom:607.733333pt;}
.y3_c01183{bottom:629.733333pt;}
.y2_c01183{bottom:651.866667pt;}
.y1_c01183{bottom:674.400000pt;}
.h4_c01183{height:11.733399pt;}
.h5_c01183{height:38.937500pt;}
.h3_c01183{height:64.149740pt;}
.h2_c01183{height:81.031250pt;}
.h0_c01183{height:709.200000pt;}
.h1_c01183{height:709.333333pt;}
.w2_c01183{width:93.222667pt;}
.w0_c01183{width:473.266667pt;}
.w1_c01183{width:473.333333pt;}
.x0_c01183{left:0.000000pt;}
.xd_c01183{left:31.466667pt;}
.x8_c01183{left:33.866667pt;}
.xc_c01183{left:34.800000pt;}
.xf_c01183{left:36.266667pt;}
.x2_c01183{left:98.133333pt;}
.x3_c01183{left:99.600000pt;}
.x5_c01183{left:102.000000pt;}
.x6_c01183{left:103.200000pt;}
.x7_c01183{left:104.400000pt;}
.xa_c01183{left:105.866667pt;}
.xb_c01183{left:107.733333pt;}
.x10_c01183{left:109.866667pt;}
.x4_c01183{left:123.066667pt;}
.x9_c01183{left:141.866667pt;}
.xe_c01183{left:172.800000pt;}
.x12_c01183{left:193.801554pt;}
.x1_c01183{left:201.200000pt;}
.x11_c01183{left:433.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fa950f2a5a0b32de748c3258.woff2')format("woff");}.ff1_c01184{font-family:ff1_c01184;line-height:1.284180;font-style:normal;font-weight:normal;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_193f9b9344e9142c1c94e6c4.woff2')format("woff");}.ff2_c01184{font-family:ff2_c01184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01184;src:url('chunks/assets/font_341ed907e6b85ae2a55a113d.woff2')format("woff");}.ff3_c01184{font-family:ff3_c01184;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01184;src:url('chunks/assets/font_6d2c122da7320e59c4540b4b.woff2')format("woff");}.ff4_c01184{font-family:ff4_c01184;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01184;src:url('chunks/assets/font_642aab0579cc3f1be8ee039c.woff2')format("woff");}.ff5_c01184{font-family:ff5_c01184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01184;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01184{font-family:ff6_c01184;line-height:1.219238;font-style: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;}
.ls1_c01184{letter-spacing:0.000000px;}
.ls0_c01184{letter-spacing:0.216000px;}
.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:-33.667200px;}
.ws1_c01184{word-spacing:-33.192000px;}
.ws2_c01184{word-spacing:-21.000000px;}
.ws3_c01184{word-spacing:0.000000px;}
._17_c01184{margin-left:-32.184000px;}
._7_c01184{margin-left:-19.152000px;}
._18_c01184{margin-left:-14.136000px;}
._15_c01184{margin-left:-12.192000px;}
._16_c01184{margin-left:-10.704000px;}
._3_c01184{margin-left:-8.400000px;}
._2_c01184{margin-left:-7.224000px;}
._12_c01184{margin-left:-5.400000px;}
._10_c01184{margin-left:-4.344000px;}
._f_c01184{margin-left:-3.216000px;}
._e_c01184{margin-left:-1.176000px;}
._c_c01184{width:1.488000px;}
._5_c01184{width:2.688000px;}
._4_c01184{width:4.536000px;}
._9_c01184{width:5.544000px;}
._1_c01184{width:7.392000px;}
._a_c01184{width:9.240000px;}
._8_c01184{width:10.872000px;}
._0_c01184{width:12.264000px;}
._b_c01184{width:13.416000px;}
._d_c01184{width:14.496000px;}
._14_c01184{width:15.552000px;}
._11_c01184{width:25.128000px;}
._19_c01184{width:26.304000px;}
._1b_c01184{width:27.720000px;}
._13_c01184{width:32.904000px;}
._1c_c01184{width:39.072000px;}
._1a_c01184{width:42.552000px;}
._6_c01184{width:275.412000px;}
._1d_c01184{width:319.080000px;}
.fc2_c01184{color:transparent;}
.fc1_c01184{color:rgb(128,128,128);}
.fc0_c01184{color:rgb(0,0,0);}
.fs4_c01184{font-size:48.000000px;}
.fs1_c01184{font-size:67.200000px;}
.fs2_c01184{font-size:72.000000px;}
.fs3_c01184{font-size:81.000000px;}
.fs0_c01184{font-size:84.000000px;}
.y0_c01184{bottom:0.000000px;}
.y1d_c01184{bottom:3.105000px;}
.y1c_c01184{bottom:7.228363px;}
.y1b_c01184{bottom:32.700000px;}
.y1a_c01184{bottom:112.350000px;}
.y19_c01184{bottom:137.250000px;}
.y18_c01184{bottom:161.250000px;}
.y17_c01184{bottom:188.250000px;}
.y16_c01184{bottom:210.900000px;}
.y15_c01184{bottom:236.550000px;}
.y14_c01184{bottom:261.450000px;}
.y13_c01184{bottom:287.550000px;}
.y12_c01184{bottom:311.400000px;}
.y11_c01184{bottom:337.050000px;}
.y10_c01184{bottom:361.050000px;}
.yf_c01184{bottom:386.400000px;}
.ye_c01184{bottom:411.000000px;}
.yd_c01184{bottom:435.300000px;}
.yc_c01184{bottom:459.300000px;}
.yb_c01184{bottom:486.300000px;}
.ya_c01184{bottom:510.600000px;}
.y9_c01184{bottom:534.900000px;}
.y8_c01184{bottom:559.200000px;}
.y7_c01184{bottom:584.550000px;}
.y6_c01184{bottom:609.450000px;}
.y5_c01184{bottom:634.200000px;}
.y4_c01184{bottom:658.800000px;}
.y3_c01184{bottom:683.400000px;}
.y2_c01184{bottom:708.450000px;}
.y1_c01184{bottom:733.950000px;}
.h4_c01184{height:13.200074px;}
.h5_c01184{height:43.804688px;}
.h2_c01184{height:82.400391px;}
.h3_c01184{height:91.160156px;}
.h0_c01184{height:784.350000px;}
.h1_c01184{height:784.500000px;}
.w2_c01184{width:104.875500px;}
.w0_c01184{width:539.175000px;}
.w1_c01184{width:539.250000px;}
.x0_c01184{left:0.000000px;}
.xa_c01184{left:36.000000px;}
.x9_c01184{left:38.850000px;}
.x2_c01184{left:39.900000px;}
.x7_c01184{left:41.100000px;}
.x4_c01184{left:45.600000px;}
.x8_c01184{left:47.550000px;}
.x3_c01184{left:49.200000px;}
.x5_c01184{left:50.250000px;}
.x6_c01184{left:52.350000px;}
.x1_c01184{left:166.650000px;}
.xc_c01184{left:221.401749px;}
.xb_c01184{left:238.950000px;}
@media print{
.v0_c01184{vertical-align:0.000000pt;}
.ls1_c01184{letter-spacing:0.000000pt;}
.ls0_c01184{letter-spacing:0.192000pt;}
.ws0_c01184{word-spacing:-29.926400pt;}
.ws1_c01184{word-spacing:-29.504000pt;}
.ws2_c01184{word-spacing:-18.666667pt;}
.ws3_c01184{word-spacing:0.000000pt;}
._17_c01184{margin-left:-28.608000pt;}
._7_c01184{margin-left:-17.024000pt;}
._18_c01184{margin-left:-12.565333pt;}
._15_c01184{margin-left:-10.837333pt;}
._16_c01184{margin-left:-9.514667pt;}
._3_c01184{margin-left:-7.466667pt;}
._2_c01184{margin-left:-6.421333pt;}
._12_c01184{margin-left:-4.800000pt;}
._10_c01184{margin-left:-3.861333pt;}
._f_c01184{margin-left:-2.858667pt;}
._e_c01184{margin-left:-1.045333pt;}
._c_c01184{width:1.322667pt;}
._5_c01184{width:2.389333pt;}
._4_c01184{width:4.032000pt;}
._9_c01184{width:4.928000pt;}
._1_c01184{width:6.570667pt;}
._a_c01184{width:8.213333pt;}
._8_c01184{width:9.664000pt;}
._0_c01184{width:10.901333pt;}
._b_c01184{width:11.925333pt;}
._d_c01184{width:12.885333pt;}
._14_c01184{width:13.824000pt;}
._11_c01184{width:22.336000pt;}
._19_c01184{width:23.381333pt;}
._1b_c01184{width:24.640000pt;}
._13_c01184{width:29.248000pt;}
._1c_c01184{width:34.730667pt;}
._1a_c01184{width:37.824000pt;}
._6_c01184{width:244.810667pt;}
._1d_c01184{width:283.626667pt;}
.fs4_c01184{font-size:42.666667pt;}
.fs1_c01184{font-size:59.733333pt;}
.fs2_c01184{font-size:64.000000pt;}
.fs3_c01184{font-size:72.000000pt;}
.fs0_c01184{font-size:74.666667pt;}
.y0_c01184{bottom:0.000000pt;}
.y1d_c01184{bottom:2.760000pt;}
.y1c_c01184{bottom:6.425212pt;}
.y1b_c01184{bottom:29.066667pt;}
.y1a_c01184{bottom:99.866667pt;}
.y19_c01184{bottom:122.000000pt;}
.y18_c01184{bottom:143.333333pt;}
.y17_c01184{bottom:167.333333pt;}
.y16_c01184{bottom:187.466667pt;}
.y15_c01184{bottom:210.266667pt;}
.y14_c01184{bottom:232.400000pt;}
.y13_c01184{bottom:255.600000pt;}
.y12_c01184{bottom:276.800000pt;}
.y11_c01184{bottom:299.600000pt;}
.y10_c01184{bottom:320.933333pt;}
.yf_c01184{bottom:343.466667pt;}
.ye_c01184{bottom:365.333333pt;}
.yd_c01184{bottom:386.933333pt;}
.yc_c01184{bottom:408.266667pt;}
.yb_c01184{bottom:432.266667pt;}
.ya_c01184{bottom:453.866667pt;}
.y9_c01184{bottom:475.466667pt;}
.y8_c01184{bottom:497.066667pt;}
.y7_c01184{bottom:519.600000pt;}
.y6_c01184{bottom:541.733333pt;}
.y5_c01184{bottom:563.733333pt;}
.y4_c01184{bottom:585.600000pt;}
.y3_c01184{bottom:607.466667pt;}
.y2_c01184{bottom:629.733333pt;}
.y1_c01184{bottom:652.400000pt;}
.h4_c01184{height:11.733399pt;}
.h5_c01184{height:38.937500pt;}
.h2_c01184{height:73.244792pt;}
.h3_c01184{height:81.031250pt;}
.h0_c01184{height:697.200000pt;}
.h1_c01184{height:697.333333pt;}
.w2_c01184{width:93.222667pt;}
.w0_c01184{width:479.266667pt;}
.w1_c01184{width:479.333333pt;}
.x0_c01184{left:0.000000pt;}
.xa_c01184{left:32.000000pt;}
.x9_c01184{left:34.533333pt;}
.x2_c01184{left:35.466667pt;}
.x7_c01184{left:36.533333pt;}
.x4_c01184{left:40.533333pt;}
.x8_c01184{left:42.266667pt;}
.x3_c01184{left:43.733333pt;}
.x5_c01184{left:44.666667pt;}
.x6_c01184{left:46.533333pt;}
.x1_c01184{left:148.133333pt;}
.xc_c01184{left:196.801554pt;}
.xb_c01184{left:212.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_50abd6f563ce67c10eb50892.woff2')format("woff");}.ff1_c01185{font-family:ff1_c01185;line-height:1.284180;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01185{font-family:ff2_c01185;line-height:1.284668;font-style:normal;font-weight:normal;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_e6129a6b9413257022aa1bff.woff2')format("woff");}.ff3_c01185{font-family:ff3_c01185;line-height:1.568848;font-style:normal;font-weight:normal;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_3cf7a81ddb883e3d11d7daff.woff2')format("woff");}.ff4_c01185{font-family:ff4_c01185;line-height:1.575000;font-style:normal;font-weight:normal;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_4a201a3c79c1fb618bc03729.woff2')format("woff");}.ff5_c01185{font-family:ff5_c01185;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01185{font-family:ff6_c01185;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c01185{transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,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);}
.m4_c01185{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c01185{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c01185{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.v0_c01185{vertical-align:0.000000px;}
.ls1_c01185{letter-spacing:0.000000px;}
.ls2_c01185{letter-spacing:3.000000px;}
.ls3_c01185{letter-spacing:75.000000px;}
.ls0_c01185{letter-spacing:138.048000px;}
.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;}
}
.ws1_c01185{word-spacing:-33.192000px;}
.ws0_c01185{word-spacing:-30.051000px;}
.ws2_c01185{word-spacing:-17.352000px;}
.ws4_c01185{word-spacing:0.000000px;}
.ws3_c01185{word-spacing:262.320000px;}
._21_c01185{margin-left:-81.432000px;}
._20_c01185{margin-left:-74.376000px;}
._22_c01185{margin-left:-69.768000px;}
._23_c01185{margin-left:-66.744000px;}
._17_c01185{margin-left:-28.944000px;}
._18_c01185{margin-left:-23.544000px;}
._19_c01185{margin-left:-17.280000px;}
._11_c01185{margin-left:-16.272000px;}
._10_c01185{margin-left:-11.844000px;}
._16_c01185{margin-left:-10.812000px;}
._e_c01185{margin-left:-8.700000px;}
._d_c01185{margin-left:-7.464000px;}
._c_c01185{margin-left:-5.232000px;}
._8_c01185{margin-left:-3.888000px;}
._3_c01185{margin-left:-2.604000px;}
._b_c01185{margin-left:-1.152000px;}
._1_c01185{width:1.848000px;}
._2_c01185{width:3.276000px;}
._0_c01185{width:4.788000px;}
._4_c01185{width:6.300000px;}
._7_c01185{width:7.884000px;}
._5_c01185{width:9.240000px;}
._6_c01185{width:10.812000px;}
._9_c01185{width:12.036000px;}
._a_c01185{width:13.212000px;}
._14_c01185{width:15.072000px;}
._1e_c01185{width:16.830000px;}
._1d_c01185{width:18.522000px;}
._f_c01185{width:20.064000px;}
._12_c01185{width:22.044000px;}
._1c_c01185{width:71.253000px;}
._13_c01185{width:85.824000px;}
._1b_c01185{width:139.833000px;}
._15_c01185{width:166.344000px;}
._1a_c01185{width:201.960000px;}
._1f_c01185{width:225.012000px;}
.fc2_c01185{color:transparent;}
.fc1_c01185{color:rgb(128,128,128);}
.fc0_c01185{color:rgb(0,0,0);}
.fs4_c01185{font-size:48.000000px;}
.fs3_c01185{font-size:63.000000px;}
.fs2_c01185{font-size:66.000000px;}
.fs1_c01185{font-size:72.000000px;}
.fs0_c01185{font-size:84.000000px;}
.y0_c01185{bottom:0.000000px;}
.y1f_c01185{bottom:3.105000px;}
.y1e_c01185{bottom:7.228363px;}
.y1d_c01185{bottom:40.950000px;}
.y1c_c01185{bottom:59.700000px;}
.y1b_c01185{bottom:90.000000px;}
.y1a_c01185{bottom:112.350000px;}
.y19_c01185{bottom:138.750000px;}
.y18_c01185{bottom:163.350000px;}
.y17_c01185{bottom:187.650000px;}
.y16_c01185{bottom:213.300000px;}
.y15_c01185{bottom:238.650000px;}
.y14_c01185{bottom:264.150000px;}
.y13_c01185{bottom:288.450000px;}
.y12_c01185{bottom:313.800000px;}
.y11_c01185{bottom:338.550000px;}
.y10_c01185{bottom:362.100000px;}
.yf_c01185{bottom:385.800000px;}
.ye_c01185{bottom:410.700000px;}
.yd_c01185{bottom:434.250000px;}
.yc_c01185{bottom:457.200000px;}
.yb_c01185{bottom:482.550000px;}
.ya_c01185{bottom:507.300000px;}
.y9_c01185{bottom:532.800000px;}
.y8_c01185{bottom:556.800000px;}
.y7_c01185{bottom:581.850000px;}
.y6_c01185{bottom:606.750000px;}
.y5_c01185{bottom:631.350000px;}
.y4_c01185{bottom:656.400000px;}
.y3_c01185{bottom:681.300000px;}
.y2_c01185{bottom:706.350000px;}
.y1_c01185{bottom:731.400000px;}
.h5_c01185{height:13.200074px;}
.h6_c01185{height:43.804688px;}
.h4_c01185{height:79.765137px;}
.h2_c01185{height:82.441406px;}
.h3_c01185{height:91.160156px;}
.h1_c01185{height:786.750000px;}
.h0_c01185{height:787.050000px;}
.w2_c01185{width:104.875500px;}
.w0_c01185{width:524.850000px;}
.w1_c01185{width:525.000000px;}
.x0_c01185{left:0.000000px;}
.x5_c01185{left:32.400000px;}
.x4_c01185{left:108.300000px;}
.x2_c01185{left:109.800000px;}
.x3_c01185{left:135.300000px;}
.x6_c01185{left:139.950000px;}
.x7_c01185{left:152.850000px;}
.xb_c01185{left:214.239258px;}
.x8_c01185{left:217.650000px;}
.x9_c01185{left:219.900000px;}
.x1_c01185{left:228.150000px;}
.xa_c01185{left:284.100000px;}
@media print{
.v0_c01185{vertical-align:0.000000pt;}
.ls1_c01185{letter-spacing:0.000000pt;}
.ls2_c01185{letter-spacing:2.666667pt;}
.ls3_c01185{letter-spacing:66.666667pt;}
.ls0_c01185{letter-spacing:122.709333pt;}
.ws1_c01185{word-spacing:-29.504000pt;}
.ws0_c01185{word-spacing:-26.712000pt;}
.ws2_c01185{word-spacing:-15.424000pt;}
.ws4_c01185{word-spacing:0.000000pt;}
.ws3_c01185{word-spacing:233.173333pt;}
._21_c01185{margin-left:-72.384000pt;}
._20_c01185{margin-left:-66.112000pt;}
._22_c01185{margin-left:-62.016000pt;}
._23_c01185{margin-left:-59.328000pt;}
._17_c01185{margin-left:-25.728000pt;}
._18_c01185{margin-left:-20.928000pt;}
._19_c01185{margin-left:-15.360000pt;}
._11_c01185{margin-left:-14.464000pt;}
._10_c01185{margin-left:-10.528000pt;}
._16_c01185{margin-left:-9.610667pt;}
._e_c01185{margin-left:-7.733333pt;}
._d_c01185{margin-left:-6.634667pt;}
._c_c01185{margin-left:-4.650667pt;}
._8_c01185{margin-left:-3.456000pt;}
._3_c01185{margin-left:-2.314667pt;}
._b_c01185{margin-left:-1.024000pt;}
._1_c01185{width:1.642667pt;}
._2_c01185{width:2.912000pt;}
._0_c01185{width:4.256000pt;}
._4_c01185{width:5.600000pt;}
._7_c01185{width:7.008000pt;}
._5_c01185{width:8.213333pt;}
._6_c01185{width:9.610667pt;}
._9_c01185{width:10.698667pt;}
._a_c01185{width:11.744000pt;}
._14_c01185{width:13.397333pt;}
._1e_c01185{width:14.960000pt;}
._1d_c01185{width:16.464000pt;}
._f_c01185{width:17.834667pt;}
._12_c01185{width:19.594667pt;}
._1c_c01185{width:63.336000pt;}
._13_c01185{width:76.288000pt;}
._1b_c01185{width:124.296000pt;}
._15_c01185{width:147.861333pt;}
._1a_c01185{width:179.520000pt;}
._1f_c01185{width:200.010667pt;}
.fs4_c01185{font-size:42.666667pt;}
.fs3_c01185{font-size:56.000000pt;}
.fs2_c01185{font-size:58.666667pt;}
.fs1_c01185{font-size:64.000000pt;}
.fs0_c01185{font-size:74.666667pt;}
.y0_c01185{bottom:0.000000pt;}
.y1f_c01185{bottom:2.760000pt;}
.y1e_c01185{bottom:6.425212pt;}
.y1d_c01185{bottom:36.400000pt;}
.y1c_c01185{bottom:53.066667pt;}
.y1b_c01185{bottom:80.000000pt;}
.y1a_c01185{bottom:99.866667pt;}
.y19_c01185{bottom:123.333333pt;}
.y18_c01185{bottom:145.200000pt;}
.y17_c01185{bottom:166.800000pt;}
.y16_c01185{bottom:189.600000pt;}
.y15_c01185{bottom:212.133333pt;}
.y14_c01185{bottom:234.800000pt;}
.y13_c01185{bottom:256.400000pt;}
.y12_c01185{bottom:278.933333pt;}
.y11_c01185{bottom:300.933333pt;}
.y10_c01185{bottom:321.866667pt;}
.yf_c01185{bottom:342.933333pt;}
.ye_c01185{bottom:365.066667pt;}
.yd_c01185{bottom:386.000000pt;}
.yc_c01185{bottom:406.400000pt;}
.yb_c01185{bottom:428.933333pt;}
.ya_c01185{bottom:450.933333pt;}
.y9_c01185{bottom:473.600000pt;}
.y8_c01185{bottom:494.933333pt;}
.y7_c01185{bottom:517.200000pt;}
.y6_c01185{bottom:539.333333pt;}
.y5_c01185{bottom:561.200000pt;}
.y4_c01185{bottom:583.466667pt;}
.y3_c01185{bottom:605.600000pt;}
.y2_c01185{bottom:627.866667pt;}
.y1_c01185{bottom:650.133333pt;}
.h5_c01185{height:11.733399pt;}
.h6_c01185{height:38.937500pt;}
.h4_c01185{height:70.902344pt;}
.h2_c01185{height:73.281250pt;}
.h3_c01185{height:81.031250pt;}
.h1_c01185{height:699.333333pt;}
.h0_c01185{height:699.600000pt;}
.w2_c01185{width:93.222667pt;}
.w0_c01185{width:466.533333pt;}
.w1_c01185{width:466.666667pt;}
.x0_c01185{left:0.000000pt;}
.x5_c01185{left:28.800000pt;}
.x4_c01185{left:96.266667pt;}
.x2_c01185{left:97.600000pt;}
.x3_c01185{left:120.266667pt;}
.x6_c01185{left:124.400000pt;}
.x7_c01185{left:135.866667pt;}
.xb_c01185{left:190.434896pt;}
.x8_c01185{left:193.466667pt;}
.x9_c01185{left:195.466667pt;}
.x1_c01185{left:202.800000pt;}
.xa_c01185{left:252.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9c26f6f6f04e3f57c5a7ef1e.woff2')format("woff");}.ff1_c01186{font-family:ff1_c01186;line-height:1.284180;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01186{font-family:ff2_c01186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01186;src:url('chunks/assets/font_469ee5c3eb2317561a314ae0.woff2')format("woff");}.ff3_c01186{font-family:ff3_c01186;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01186;src:url('chunks/assets/font_469baa0e12afef8a1af8b721.woff2')format("woff");}.ff4_c01186{font-family:ff4_c01186;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01186;src:url('chunks/assets/font_144db5997978dc5df3cc2326.woff2')format("woff");}.ff5_c01186{font-family:ff5_c01186;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01186;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01186{font-family:ff6_c01186;line-height:1.219238;font-style: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;}
.ls2_c01186{letter-spacing:0.000000px;}
.ls0_c01186{letter-spacing:0.588000px;}
.ls1_c01186{letter-spacing:20.388000px;}
.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:-33.192000px;}
.ws1_c01186{word-spacing:-30.051000px;}
.ws2_c01186{word-spacing:-17.352000px;}
.ws3_c01186{word-spacing:0.000000px;}
._14_c01186{margin-left:-16.176000px;}
._1a_c01186{margin-left:-10.680000px;}
._17_c01186{margin-left:-9.492000px;}
._2_c01186{margin-left:-8.400000px;}
._12_c01186{margin-left:-6.372000px;}
._19_c01186{margin-left:-5.004000px;}
._c_c01186{margin-left:-3.636000px;}
._6_c01186{margin-left:-2.076000px;}
._11_c01186{margin-left:-1.056000px;}
._9_c01186{width:1.428000px;}
._4_c01186{width:2.688000px;}
._3_c01186{width:3.948000px;}
._5_c01186{width:5.124000px;}
._8_c01186{width:7.056000px;}
._7_c01186{width:8.640000px;}
._b_c01186{width:10.248000px;}
._1_c01186{width:11.340000px;}
._10_c01186{width:13.056000px;}
._a_c01186{width:16.296000px;}
._0_c01186{width:18.816000px;}
._d_c01186{width:21.192000px;}
._16_c01186{width:25.488000px;}
._f_c01186{width:26.856000px;}
._e_c01186{width:31.512000px;}
._1b_c01186{width:33.132000px;}
._15_c01186{width:37.716000px;}
._1c_c01186{width:335.556000px;}
._18_c01186{width:342.708000px;}
._13_c01186{width:369.024000px;}
.fc2_c01186{color:transparent;}
.fc1_c01186{color:rgb(128,128,128);}
.fc0_c01186{color:rgb(0,0,0);}
.fs3_c01186{font-size:48.000000px;}
.fs2_c01186{font-size:63.000000px;}
.fs1_c01186{font-size:72.000000px;}
.fs0_c01186{font-size:84.000000px;}
.y0_c01186{bottom:0.000000px;}
.y1f_c01186{bottom:3.105000px;}
.y1e_c01186{bottom:7.228357px;}
.y1d_c01186{bottom:57.480000px;}
.y1c_c01186{bottom:83.130000px;}
.y1b_c01186{bottom:108.330000px;}
.y1a_c01186{bottom:131.280000px;}
.y19_c01186{bottom:157.380000px;}
.y18_c01186{bottom:181.980000px;}
.y17_c01186{bottom:207.180000px;}
.y16_c01186{bottom:231.630000px;}
.y15_c01186{bottom:256.230000px;}
.y14_c01186{bottom:281.130000px;}
.y13_c01186{bottom:304.530000px;}
.y12_c01186{bottom:329.130000px;}
.y11_c01186{bottom:354.780000px;}
.y10_c01186{bottom:378.030000px;}
.yf_c01186{bottom:401.280000px;}
.ye_c01186{bottom:424.530000px;}
.yd_c01186{bottom:450.180000px;}
.yc_c01186{bottom:474.630000px;}
.yb_c01186{bottom:498.780000px;}
.ya_c01186{bottom:521.880000px;}
.y9_c01186{bottom:546.030000px;}
.y8_c01186{bottom:569.730000px;}
.y7_c01186{bottom:594.030000px;}
.y6_c01186{bottom:618.330000px;}
.y5_c01186{bottom:642.630000px;}
.y4_c01186{bottom:666.930000px;}
.y3_c01186{bottom:691.230000px;}
.y2_c01186{bottom:715.530000px;}
.y1_c01186{bottom:741.780000px;}
.h4_c01186{height:13.200074px;}
.h5_c01186{height:43.804688px;}
.h2_c01186{height:82.441406px;}
.h3_c01186{height:91.160156px;}
.h0_c01186{height:781.950000px;}
.h1_c01186{height:782.250000px;}
.w2_c01186{width:104.875500px;}
.w1_c01186{width:539.250000px;}
.w0_c01186{width:539.475000px;}
.x0_c01186{left:0.000000px;}
.x2_c01186{left:36.150000px;}
.x3_c01186{left:37.200000px;}
.x4_c01186{left:38.850000px;}
.x5_c01186{left:40.500000px;}
.x7_c01186{left:41.550000px;}
.x6_c01186{left:69.900000px;}
.x1_c01186{left:144.750000px;}
.x9_c01186{left:221.551758px;}
.x8_c01186{left:252.150000px;}
@media print{
.v0_c01186{vertical-align:0.000000pt;}
.ls2_c01186{letter-spacing:0.000000pt;}
.ls0_c01186{letter-spacing:0.522667pt;}
.ls1_c01186{letter-spacing:18.122667pt;}
.ws0_c01186{word-spacing:-29.504000pt;}
.ws1_c01186{word-spacing:-26.712000pt;}
.ws2_c01186{word-spacing:-15.424000pt;}
.ws3_c01186{word-spacing:0.000000pt;}
._14_c01186{margin-left:-14.378667pt;}
._1a_c01186{margin-left:-9.493333pt;}
._17_c01186{margin-left:-8.437333pt;}
._2_c01186{margin-left:-7.466667pt;}
._12_c01186{margin-left:-5.664000pt;}
._19_c01186{margin-left:-4.448000pt;}
._c_c01186{margin-left:-3.232000pt;}
._6_c01186{margin-left:-1.845333pt;}
._11_c01186{margin-left:-0.938667pt;}
._9_c01186{width:1.269333pt;}
._4_c01186{width:2.389333pt;}
._3_c01186{width:3.509333pt;}
._5_c01186{width:4.554667pt;}
._8_c01186{width:6.272000pt;}
._7_c01186{width:7.680000pt;}
._b_c01186{width:9.109333pt;}
._1_c01186{width:10.080000pt;}
._10_c01186{width:11.605333pt;}
._a_c01186{width:14.485333pt;}
._0_c01186{width:16.725333pt;}
._d_c01186{width:18.837333pt;}
._16_c01186{width:22.656000pt;}
._f_c01186{width:23.872000pt;}
._e_c01186{width:28.010667pt;}
._1b_c01186{width:29.450667pt;}
._15_c01186{width:33.525333pt;}
._1c_c01186{width:298.272000pt;}
._18_c01186{width:304.629333pt;}
._13_c01186{width:328.021333pt;}
.fs3_c01186{font-size:42.666667pt;}
.fs2_c01186{font-size:56.000000pt;}
.fs1_c01186{font-size:64.000000pt;}
.fs0_c01186{font-size:74.666667pt;}
.y0_c01186{bottom:0.000000pt;}
.y1f_c01186{bottom:2.760000pt;}
.y1e_c01186{bottom:6.425206pt;}
.y1d_c01186{bottom:51.093333pt;}
.y1c_c01186{bottom:73.893333pt;}
.y1b_c01186{bottom:96.293333pt;}
.y1a_c01186{bottom:116.693333pt;}
.y19_c01186{bottom:139.893333pt;}
.y18_c01186{bottom:161.760000pt;}
.y17_c01186{bottom:184.160000pt;}
.y16_c01186{bottom:205.893333pt;}
.y15_c01186{bottom:227.760000pt;}
.y14_c01186{bottom:249.893333pt;}
.y13_c01186{bottom:270.693333pt;}
.y12_c01186{bottom:292.560000pt;}
.y11_c01186{bottom:315.360000pt;}
.y10_c01186{bottom:336.026667pt;}
.yf_c01186{bottom:356.693333pt;}
.ye_c01186{bottom:377.360000pt;}
.yd_c01186{bottom:400.160000pt;}
.yc_c01186{bottom:421.893333pt;}
.yb_c01186{bottom:443.360000pt;}
.ya_c01186{bottom:463.893333pt;}
.y9_c01186{bottom:485.360000pt;}
.y8_c01186{bottom:506.426667pt;}
.y7_c01186{bottom:528.026667pt;}
.y6_c01186{bottom:549.626667pt;}
.y5_c01186{bottom:571.226667pt;}
.y4_c01186{bottom:592.826667pt;}
.y3_c01186{bottom:614.426667pt;}
.y2_c01186{bottom:636.026667pt;}
.y1_c01186{bottom:659.360000pt;}
.h4_c01186{height:11.733399pt;}
.h5_c01186{height:38.937500pt;}
.h2_c01186{height:73.281250pt;}
.h3_c01186{height:81.031250pt;}
.h0_c01186{height:695.066667pt;}
.h1_c01186{height:695.333333pt;}
.w2_c01186{width:93.222667pt;}
.w1_c01186{width:479.333333pt;}
.w0_c01186{width:479.533333pt;}
.x0_c01186{left:0.000000pt;}
.x2_c01186{left:32.133333pt;}
.x3_c01186{left:33.066667pt;}
.x4_c01186{left:34.533333pt;}
.x5_c01186{left:36.000000pt;}
.x7_c01186{left:36.933333pt;}
.x6_c01186{left:62.133333pt;}
.x1_c01186{left:128.666667pt;}
.x9_c01186{left:196.934896pt;}
.x8_c01186{left:224.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_96571921028286cfd3851bfd.woff2')format("woff");}.ff1_c01187{font-family:ff1_c01187;line-height:1.480469;font-style:normal;font-weight:normal;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_720d8678818d2cdaf7e64f41.woff2')format("woff");}.ff2_c01187{font-family:ff2_c01187;line-height:1.568848;font-style:normal;font-weight:normal;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_6063acb13a5863934a3372f9.woff2')format("woff");}.ff3_c01187{font-family:ff3_c01187;line-height:1.284180;font-style:normal;font-weight:normal;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_1b5a6dcdb584cee5c28d80b6.woff2')format("woff");}.ff4_c01187{font-family:ff4_c01187;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01187;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01187{font-family:ff5_c01187;line-height:1.219238;font-style: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;}
.ls3_c01187{letter-spacing:0.000000px;}
.ls4_c01187{letter-spacing:3.000000px;}
.ls1_c01187{letter-spacing:4.788000px;}
.ls0_c01187{letter-spacing:20.184000px;}
.ls2_c01187{letter-spacing:24.000000px;}
.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;}
}
.ws2_c01187{word-spacing:-41.352000px;}
.ws1_c01187{word-spacing:-25.500000px;}
.ws0_c01187{word-spacing:-17.352000px;}
.ws3_c01187{word-spacing:0.000000px;}
._22_c01187{margin-left:-35.592000px;}
._13_c01187{margin-left:-22.152000px;}
._20_c01187{margin-left:-20.808000px;}
._1e_c01187{margin-left:-16.332000px;}
._d_c01187{margin-left:-13.704000px;}
._12_c01187{margin-left:-12.408000px;}
._f_c01187{margin-left:-10.728000px;}
._1d_c01187{margin-left:-9.648000px;}
._b_c01187{margin-left:-8.088000px;}
._c_c01187{margin-left:-6.624000px;}
._3_c01187{margin-left:-5.328000px;}
._11_c01187{margin-left:-4.140000px;}
._a_c01187{margin-left:-2.652000px;}
._7_c01187{margin-left:-1.272000px;}
._8_c01187{width:1.740000px;}
._9_c01187{width:2.844000px;}
._5_c01187{width:3.960000px;}
._1_c01187{width:5.616000px;}
._4_c01187{width:7.416000px;}
._6_c01187{width:8.496000px;}
._2_c01187{width:10.296000px;}
._0_c01187{width:11.736000px;}
._17_c01187{width:13.710000px;}
._e_c01187{width:15.444000px;}
._10_c01187{width:20.592000px;}
._1c_c01187{width:23.526000px;}
._23_c01187{width:24.540000px;}
._14_c01187{width:26.172000px;}
._21_c01187{width:29.040000px;}
._1f_c01187{width:31.020000px;}
._1a_c01187{width:37.272000px;}
._1b_c01187{width:120.384000px;}
._19_c01187{width:156.153000px;}
._15_c01187{width:195.048000px;}
._16_c01187{width:254.838000px;}
._18_c01187{width:590.664000px;}
.fc2_c01187{color:transparent;}
.fc1_c01187{color:rgb(128,128,128);}
.fc0_c01187{color:rgb(0,0,0);}
.fs4_c01187{font-size:24.000000px;}
.fs6_c01187{font-size:48.000000px;}
.fs2_c01187{font-size:51.000000px;}
.fs1_c01187{font-size:60.000000px;}
.fs5_c01187{font-size:63.000000px;}
.fs3_c01187{font-size:66.000000px;}
.fs0_c01187{font-size:72.000000px;}
.y0_c01187{bottom:0.000000px;}
.y1f_c01187{bottom:3.105000px;}
.y1e_c01187{bottom:7.228369px;}
.y1d_c01187{bottom:66.420000px;}
.y1c_c01187{bottom:86.970000px;}
.y1b_c01187{bottom:111.720000px;}
.y1a_c01187{bottom:136.320000px;}
.y19_c01187{bottom:161.370000px;}
.y18_c01187{bottom:188.220000px;}
.y17_c01187{bottom:213.570000px;}
.y16_c01187{bottom:238.620000px;}
.y15_c01187{bottom:261.120000px;}
.y14_c01187{bottom:287.220000px;}
.y13_c01187{bottom:312.570000px;}
.y12_c01187{bottom:336.420000px;}
.y11_c01187{bottom:361.170000px;}
.y10_c01187{bottom:383.070000px;}
.yf_c01187{bottom:409.320000px;}
.ye_c01187{bottom:433.020000px;}
.yd_c01187{bottom:453.870000px;}
.yc_c01187{bottom:479.220000px;}
.yb_c01187{bottom:504.270000px;}
.ya_c01187{bottom:529.770000px;}
.y9_c01187{bottom:553.470000px;}
.y8_c01187{bottom:578.370000px;}
.y7_c01187{bottom:603.720000px;}
.y6_c01187{bottom:626.070000px;}
.y5_c01187{bottom:651.720000px;}
.y4_c01187{bottom:676.020000px;}
.y3_c01187{bottom:701.370000px;}
.y2_c01187{bottom:726.570000px;}
.y1_c01187{bottom:753.570000px;}
.h3_c01187{height:13.200073px;}
.h4_c01187{height:43.804688px;}
.h2_c01187{height:83.563477px;}
.h1_c01187{height:91.160156px;}
.h0_c01187{height:800.250000px;}
.w1_c01187{width:104.875500px;}
.w0_c01187{width:529.500000px;}
.x0_c01187{left:0.000000px;}
.x8_c01187{left:34.800000px;}
.x5_c01187{left:36.000000px;}
.x6_c01187{left:55.950000px;}
.x7_c01187{left:61.800000px;}
.x9_c01187{left:63.750000px;}
.x2_c01187{left:107.550000px;}
.x3_c01187{left:109.950000px;}
.xa_c01187{left:111.000000px;}
.x4_c01187{left:112.650000px;}
.xb_c01187{left:114.300000px;}
.xc_c01187{left:115.650000px;}
.xe_c01187{left:216.564240px;}
.x1_c01187{left:221.850000px;}
.xd_c01187{left:462.000000px;}
@media print{
.v0_c01187{vertical-align:0.000000pt;}
.ls3_c01187{letter-spacing:0.000000pt;}
.ls4_c01187{letter-spacing:2.666667pt;}
.ls1_c01187{letter-spacing:4.256000pt;}
.ls0_c01187{letter-spacing:17.941333pt;}
.ls2_c01187{letter-spacing:21.333333pt;}
.ws2_c01187{word-spacing:-36.757333pt;}
.ws1_c01187{word-spacing:-22.666667pt;}
.ws0_c01187{word-spacing:-15.424000pt;}
.ws3_c01187{word-spacing:0.000000pt;}
._22_c01187{margin-left:-31.637333pt;}
._13_c01187{margin-left:-19.690667pt;}
._20_c01187{margin-left:-18.496000pt;}
._1e_c01187{margin-left:-14.517333pt;}
._d_c01187{margin-left:-12.181333pt;}
._12_c01187{margin-left:-11.029333pt;}
._f_c01187{margin-left:-9.536000pt;}
._1d_c01187{margin-left:-8.576000pt;}
._b_c01187{margin-left:-7.189333pt;}
._c_c01187{margin-left:-5.888000pt;}
._3_c01187{margin-left:-4.736000pt;}
._11_c01187{margin-left:-3.680000pt;}
._a_c01187{margin-left:-2.357333pt;}
._7_c01187{margin-left:-1.130667pt;}
._8_c01187{width:1.546667pt;}
._9_c01187{width:2.528000pt;}
._5_c01187{width:3.520000pt;}
._1_c01187{width:4.992000pt;}
._4_c01187{width:6.592000pt;}
._6_c01187{width:7.552000pt;}
._2_c01187{width:9.152000pt;}
._0_c01187{width:10.432000pt;}
._17_c01187{width:12.186667pt;}
._e_c01187{width:13.728000pt;}
._10_c01187{width:18.304000pt;}
._1c_c01187{width:20.912000pt;}
._23_c01187{width:21.813333pt;}
._14_c01187{width:23.264000pt;}
._21_c01187{width:25.813333pt;}
._1f_c01187{width:27.573333pt;}
._1a_c01187{width:33.130667pt;}
._1b_c01187{width:107.008000pt;}
._19_c01187{width:138.802667pt;}
._15_c01187{width:173.376000pt;}
._16_c01187{width:226.522667pt;}
._18_c01187{width:525.034667pt;}
.fs4_c01187{font-size:21.333333pt;}
.fs6_c01187{font-size:42.666667pt;}
.fs2_c01187{font-size:45.333333pt;}
.fs1_c01187{font-size:53.333333pt;}
.fs5_c01187{font-size:56.000000pt;}
.fs3_c01187{font-size:58.666667pt;}
.fs0_c01187{font-size:64.000000pt;}
.y0_c01187{bottom:0.000000pt;}
.y1f_c01187{bottom:2.760000pt;}
.y1e_c01187{bottom:6.425217pt;}
.y1d_c01187{bottom:59.040000pt;}
.y1c_c01187{bottom:77.306667pt;}
.y1b_c01187{bottom:99.306667pt;}
.y1a_c01187{bottom:121.173333pt;}
.y19_c01187{bottom:143.440000pt;}
.y18_c01187{bottom:167.306667pt;}
.y17_c01187{bottom:189.840000pt;}
.y16_c01187{bottom:212.106667pt;}
.y15_c01187{bottom:232.106667pt;}
.y14_c01187{bottom:255.306667pt;}
.y13_c01187{bottom:277.840000pt;}
.y12_c01187{bottom:299.040000pt;}
.y11_c01187{bottom:321.040000pt;}
.y10_c01187{bottom:340.506667pt;}
.yf_c01187{bottom:363.840000pt;}
.ye_c01187{bottom:384.906667pt;}
.yd_c01187{bottom:403.440000pt;}
.yc_c01187{bottom:425.973333pt;}
.yb_c01187{bottom:448.240000pt;}
.ya_c01187{bottom:470.906667pt;}
.y9_c01187{bottom:491.973333pt;}
.y8_c01187{bottom:514.106667pt;}
.y7_c01187{bottom:536.640000pt;}
.y6_c01187{bottom:556.506667pt;}
.y5_c01187{bottom:579.306667pt;}
.y4_c01187{bottom:600.906667pt;}
.y3_c01187{bottom:623.440000pt;}
.y2_c01187{bottom:645.840000pt;}
.y1_c01187{bottom:669.840000pt;}
.h3_c01187{height:11.733399pt;}
.h4_c01187{height:38.937500pt;}
.h2_c01187{height:74.278646pt;}
.h1_c01187{height:81.031250pt;}
.h0_c01187{height:711.333333pt;}
.w1_c01187{width:93.222667pt;}
.w0_c01187{width:470.666667pt;}
.x0_c01187{left:0.000000pt;}
.x8_c01187{left:30.933333pt;}
.x5_c01187{left:32.000000pt;}
.x6_c01187{left:49.733333pt;}
.x7_c01187{left:54.933333pt;}
.x9_c01187{left:56.666667pt;}
.x2_c01187{left:95.600000pt;}
.x3_c01187{left:97.733333pt;}
.xa_c01187{left:98.666667pt;}
.x4_c01187{left:100.133333pt;}
.xb_c01187{left:101.600000pt;}
.xc_c01187{left:102.800000pt;}
.xe_c01187{left:192.501546pt;}
.x1_c01187{left:197.200000pt;}
.xd_c01187{left:410.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_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_3a6d973e3ffcaddae9b8a323.woff2')format("woff");}.ff1_c01188{font-family:ff1_c01188;line-height:1.480469;font-style:normal;font-weight:normal;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_f4100346e8fab628b5eebb9a.woff2')format("woff");}.ff2_c01188{font-family:ff2_c01188;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01188{font-family:ff3_c01188;line-height:1.219238;font-style: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;}
.ls1_c01188{letter-spacing:0.000000px;}
.ls3_c01188{letter-spacing:6.000000px;}
.ls2_c01188{letter-spacing:9.000000px;}
.ls0_c01188{letter-spacing:24.165000px;}
.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:-19.521000px;}
.ws1_c01188{word-spacing:0.000000px;}
._19_c01188{margin-left:-23.538000px;}
._14_c01188{margin-left:-19.092000px;}
._1c_c01188{margin-left:-16.344000px;}
._1b_c01188{margin-left:-13.212000px;}
._15_c01188{margin-left:-10.371000px;}
._12_c01188{margin-left:-7.830000px;}
._18_c01188{margin-left:-6.825000px;}
._c_c01188{margin-left:-5.661000px;}
._e_c01188{margin-left:-3.543000px;}
._f_c01188{margin-left:-1.545000px;}
._0_c01188{width:1.740000px;}
._b_c01188{width:3.507000px;}
._4_c01188{width:4.662000px;}
._6_c01188{width:5.946000px;}
._9_c01188{width:7.458000px;}
._5_c01188{width:9.261000px;}
._8_c01188{width:10.269000px;}
._a_c01188{width:11.937000px;}
._2_c01188{width:13.137000px;}
._3_c01188{width:15.138000px;}
._7_c01188{width:16.404000px;}
._d_c01188{width:17.961000px;}
._13_c01188{width:19.161000px;}
._11_c01188{width:22.464000px;}
._10_c01188{width:24.282000px;}
._16_c01188{width:28.980000px;}
._1e_c01188{width:33.894000px;}
._1a_c01188{width:61.560000px;}
._17_c01188{width:153.234000px;}
._1_c01188{width:285.534000px;}
._1f_c01188{width:319.482000px;}
._1d_c01188{width:761.973000px;}
.fc2_c01188{color:transparent;}
.fc1_c01188{color:rgb(128,128,128);}
.fc0_c01188{color:rgb(0,0,0);}
.fs4_c01188{font-size:24.000000px;}
.fs6_c01188{font-size:48.000000px;}
.fs1_c01188{font-size:63.000000px;}
.fs3_c01188{font-size:69.000000px;}
.fs5_c01188{font-size:72.000000px;}
.fs2_c01188{font-size:81.000000px;}
.fs0_c01188{font-size:87.000000px;}
.y0_c01188{bottom:0.000000px;}
.y1e_c01188{bottom:3.105000px;}
.y1d_c01188{bottom:7.228371px;}
.y1c_c01188{bottom:49.065000px;}
.y1b_c01188{bottom:75.315000px;}
.y1a_c01188{bottom:100.365000px;}
.y19_c01188{bottom:126.315000px;}
.y18_c01188{bottom:151.515000px;}
.y17_c01188{bottom:176.565000px;}
.y16_c01188{bottom:200.865000px;}
.y15_c01188{bottom:225.765000px;}
.y14_c01188{bottom:250.515000px;}
.y13_c01188{bottom:274.815000px;}
.y12_c01188{bottom:300.465000px;}
.y11_c01188{bottom:348.615000px;}
.y10_c01188{bottom:371.865000px;}
.yf_c01188{bottom:396.015000px;}
.ye_c01188{bottom:420.165000px;}
.yd_c01188{bottom:444.465000px;}
.yc_c01188{bottom:470.115000px;}
.yb_c01188{bottom:492.765000px;}
.ya_c01188{bottom:517.815000px;}
.y9_c01188{bottom:540.765000px;}
.y8_c01188{bottom:565.365000px;}
.y7_c01188{bottom:590.415000px;}
.y6_c01188{bottom:613.665000px;}
.y5_c01188{bottom:638.865000px;}
.y4_c01188{bottom:663.165000px;}
.y3_c01188{bottom:687.615000px;}
.y2_c01188{bottom:712.515000px;}
.y1_c01188{bottom:737.865000px;}
.h7_c01188{height:13.200074px;}
.h8_c01188{height:43.804688px;}
.h4_c01188{height:79.765137px;}
.h5_c01188{height:87.361816px;}
.h6_c01188{height:91.160156px;}
.h2_c01188{height:101.825684px;}
.h3_c01188{height:102.555176px;}
.h0_c01188{height:785.175000px;}
.h1_c01188{height:785.250000px;}
.w1_c01188{width:104.875500px;}
.w0_c01188{width:556.500000px;}
.x0_c01188{left:0.000000px;}
.x2_c01188{left:31.950000px;}
.x3_c01188{left:33.150000px;}
.x4_c01188{left:34.800000px;}
.x5_c01188{left:35.850000px;}
.x9_c01188{left:40.950000px;}
.x7_c01188{left:43.950000px;}
.xa_c01188{left:50.700000px;}
.x8_c01188{left:57.000000px;}
.x6_c01188{left:58.050000px;}
.x1_c01188{left:148.800000px;}
.xb_c01188{left:230.064240px;}
@media print{
.v0_c01188{vertical-align:0.000000pt;}
.ls1_c01188{letter-spacing:0.000000pt;}
.ls3_c01188{letter-spacing:5.333333pt;}
.ls2_c01188{letter-spacing:8.000000pt;}
.ls0_c01188{letter-spacing:21.480000pt;}
.ws0_c01188{word-spacing:-17.352000pt;}
.ws1_c01188{word-spacing:0.000000pt;}
._19_c01188{margin-left:-20.922667pt;}
._14_c01188{margin-left:-16.970667pt;}
._1c_c01188{margin-left:-14.528000pt;}
._1b_c01188{margin-left:-11.744000pt;}
._15_c01188{margin-left:-9.218667pt;}
._12_c01188{margin-left:-6.960000pt;}
._18_c01188{margin-left:-6.066667pt;}
._c_c01188{margin-left:-5.032000pt;}
._e_c01188{margin-left:-3.149333pt;}
._f_c01188{margin-left:-1.373333pt;}
._0_c01188{width:1.546667pt;}
._b_c01188{width:3.117333pt;}
._4_c01188{width:4.144000pt;}
._6_c01188{width:5.285333pt;}
._9_c01188{width:6.629333pt;}
._5_c01188{width:8.232000pt;}
._8_c01188{width:9.128000pt;}
._a_c01188{width:10.610667pt;}
._2_c01188{width:11.677333pt;}
._3_c01188{width:13.456000pt;}
._7_c01188{width:14.581333pt;}
._d_c01188{width:15.965333pt;}
._13_c01188{width:17.032000pt;}
._11_c01188{width:19.968000pt;}
._10_c01188{width:21.584000pt;}
._16_c01188{width:25.760000pt;}
._1e_c01188{width:30.128000pt;}
._1a_c01188{width:54.720000pt;}
._17_c01188{width:136.208000pt;}
._1_c01188{width:253.808000pt;}
._1f_c01188{width:283.984000pt;}
._1d_c01188{width:677.309333pt;}
.fs4_c01188{font-size:21.333333pt;}
.fs6_c01188{font-size:42.666667pt;}
.fs1_c01188{font-size:56.000000pt;}
.fs3_c01188{font-size:61.333333pt;}
.fs5_c01188{font-size:64.000000pt;}
.fs2_c01188{font-size:72.000000pt;}
.fs0_c01188{font-size:77.333333pt;}
.y0_c01188{bottom:0.000000pt;}
.y1e_c01188{bottom:2.760000pt;}
.y1d_c01188{bottom:6.425219pt;}
.y1c_c01188{bottom:43.613333pt;}
.y1b_c01188{bottom:66.946667pt;}
.y1a_c01188{bottom:89.213333pt;}
.y19_c01188{bottom:112.280000pt;}
.y18_c01188{bottom:134.680000pt;}
.y17_c01188{bottom:156.946667pt;}
.y16_c01188{bottom:178.546667pt;}
.y15_c01188{bottom:200.680000pt;}
.y14_c01188{bottom:222.680000pt;}
.y13_c01188{bottom:244.280000pt;}
.y12_c01188{bottom:267.080000pt;}
.y11_c01188{bottom:309.880000pt;}
.y10_c01188{bottom:330.546667pt;}
.yf_c01188{bottom:352.013333pt;}
.ye_c01188{bottom:373.480000pt;}
.yd_c01188{bottom:395.080000pt;}
.yc_c01188{bottom:417.880000pt;}
.yb_c01188{bottom:438.013333pt;}
.ya_c01188{bottom:460.280000pt;}
.y9_c01188{bottom:480.680000pt;}
.y8_c01188{bottom:502.546667pt;}
.y7_c01188{bottom:524.813333pt;}
.y6_c01188{bottom:545.480000pt;}
.y5_c01188{bottom:567.880000pt;}
.y4_c01188{bottom:589.480000pt;}
.y3_c01188{bottom:611.213333pt;}
.y2_c01188{bottom:633.346667pt;}
.y1_c01188{bottom:655.880000pt;}
.h7_c01188{height:11.733399pt;}
.h8_c01188{height:38.937500pt;}
.h4_c01188{height:70.902344pt;}
.h5_c01188{height:77.654948pt;}
.h6_c01188{height:81.031250pt;}
.h2_c01188{height:90.511719pt;}
.h3_c01188{height:91.160156pt;}
.h0_c01188{height:697.933333pt;}
.h1_c01188{height:698.000000pt;}
.w1_c01188{width:93.222667pt;}
.w0_c01188{width:494.666667pt;}
.x0_c01188{left:0.000000pt;}
.x2_c01188{left:28.400000pt;}
.x3_c01188{left:29.466667pt;}
.x4_c01188{left:30.933333pt;}
.x5_c01188{left:31.866667pt;}
.x9_c01188{left:36.400000pt;}
.x7_c01188{left:39.066667pt;}
.xa_c01188{left:45.066667pt;}
.x8_c01188{left:50.666667pt;}
.x6_c01188{left:51.600000pt;}
.x1_c01188{left:132.266667pt;}
.xb_c01188{left:204.501546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3a7b4a32badac43b9337f1b6.woff2')format("woff");}.ff1_c01189{font-family:ff1_c01189;line-height:1.480469;font-style:normal;font-weight:normal;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_f40562584e9eb7b650f603bb.woff2')format("woff");}.ff2_c01189{font-family:ff2_c01189;line-height:1.568848;font-style:normal;font-weight:normal;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_28899971b3068dc580d2b01b.woff2')format("woff");}.ff3_c01189{font-family:ff3_c01189;line-height:1.284180;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01189{font-family:ff4_c01189;line-height:1.219238;font-style: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);}
.m1_c01189{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01189{vertical-align:0.000000px;}
.ls1_c01189{letter-spacing:0.000000px;}
.ls0_c01189{letter-spacing:24.408000px;}
.sc__c01189{text-shadow:none;}
.sc0_c01189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01189{-webkit-text-stroke:0px transparent;}
.sc0_c01189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01189{word-spacing:-19.521000px;}
.ws0_c01189{word-spacing:-17.352000px;}
.ws2_c01189{word-spacing:0.000000px;}
._22_c01189{margin-left:-64.512000px;}
._b_c01189{margin-left:-15.864000px;}
._13_c01189{margin-left:-11.376000px;}
._1f_c01189{margin-left:-10.296000px;}
._1a_c01189{margin-left:-7.752000px;}
._11_c01189{margin-left:-6.096000px;}
._28_c01189{margin-left:-5.043000px;}
._8_c01189{margin-left:-3.168000px;}
._3_c01189{margin-left:-1.944000px;}
._c_c01189{width:1.224000px;}
._1_c01189{width:2.304000px;}
._2_c01189{width:3.312000px;}
._0_c01189{width:5.184000px;}
._7_c01189{width:6.408000px;}
._4_c01189{width:7.488000px;}
._f_c01189{width:8.640000px;}
._16_c01189{width:9.648000px;}
._5_c01189{width:10.728000px;}
._6_c01189{width:11.736000px;}
._25_c01189{width:13.248000px;}
._e_c01189{width:14.256000px;}
._9_c01189{width:15.552000px;}
._27_c01189{width:16.884000px;}
._18_c01189{width:18.234000px;}
._d_c01189{width:19.296000px;}
._17_c01189{width:20.421000px;}
._15_c01189{width:25.056000px;}
._19_c01189{width:28.008000px;}
._1b_c01189{width:30.096000px;}
._12_c01189{width:36.288000px;}
._24_c01189{width:48.216000px;}
._1c_c01189{width:63.720000px;}
._21_c01189{width:97.560000px;}
._20_c01189{width:155.808000px;}
._26_c01189{width:164.784000px;}
._14_c01189{width:193.488000px;}
._1d_c01189{width:235.152000px;}
._23_c01189{width:360.000000px;}
._a_c01189{width:428.016000px;}
._10_c01189{width:506.328000px;}
._1e_c01189{width:784.872000px;}
.fc2_c01189{color:transparent;}
.fc1_c01189{color:rgb(128,128,128);}
.fc0_c01189{color:rgb(0,0,0);}
.fs5_c01189{font-size:48.000000px;}
.fs1_c01189{font-size:63.000000px;}
.fs2_c01189{font-size:66.000000px;}
.fs0_c01189{font-size:72.000000px;}
.fs4_c01189{font-size:78.000000px;}
.fs3_c01189{font-size:81.000000px;}
.y0_c01189{bottom:0.000000px;}
.y1f_c01189{bottom:3.105000px;}
.y1e_c01189{bottom:7.228363px;}
.y1d_c01189{bottom:50.400000px;}
.y1c_c01189{bottom:80.100000px;}
.y1b_c01189{bottom:103.350000px;}
.y1a_c01189{bottom:128.700000px;}
.y19_c01189{bottom:155.250000px;}
.y18_c01189{bottom:180.450000px;}
.y17_c01189{bottom:204.600000px;}
.y16_c01189{bottom:231.150000px;}
.y15_c01189{bottom:255.150000px;}
.y14_c01189{bottom:280.200000px;}
.y13_c01189{bottom:305.400000px;}
.y12_c01189{bottom:328.950000px;}
.y11_c01189{bottom:354.450000px;}
.y10_c01189{bottom:378.000000px;}
.yf_c01189{bottom:401.250000px;}
.ye_c01189{bottom:423.300000px;}
.yd_c01189{bottom:449.550000px;}
.yc_c01189{bottom:472.800000px;}
.yb_c01189{bottom:497.250000px;}
.ya_c01189{bottom:521.700000px;}
.y9_c01189{bottom:546.450000px;}
.y8_c01189{bottom:570.750000px;}
.y7_c01189{bottom:596.400000px;}
.y6_c01189{bottom:620.400000px;}
.y5_c01189{bottom:644.850000px;}
.y4_c01189{bottom:669.600000px;}
.y3_c01189{bottom:694.200000px;}
.y2_c01189{bottom:719.250000px;}
.y1_c01189{bottom:744.900000px;}
.h6_c01189{height:13.200074px;}
.h7_c01189{height:43.804688px;}
.h3_c01189{height:79.765137px;}
.h5_c01189{height:84.269531px;}
.h2_c01189{height:91.160156px;}
.h4_c01189{height:94.803223px;}
.h0_c01189{height:799.200000px;}
.h1_c01189{height:799.500000px;}
.w2_c01189{width:104.875500px;}
.w0_c01189{width:512.175000px;}
.w1_c01189{width:512.250000px;}
.x0_c01189{left:0.000000px;}
.x2_c01189{left:89.400000px;}
.x3_c01189{left:90.450000px;}
.x5_c01189{left:91.500000px;}
.x6_c01189{left:92.850000px;}
.xa_c01189{left:94.050000px;}
.x9_c01189{left:95.100000px;}
.x4_c01189{left:115.050000px;}
.x7_c01189{left:116.400000px;}
.x8_c01189{left:118.050000px;}
.xb_c01189{left:121.050000px;}
.xd_c01189{left:207.901749px;}
.x1_c01189{left:210.300000px;}
.xc_c01189{left:455.550000px;}
@media print{
.v0_c01189{vertical-align:0.000000pt;}
.ls1_c01189{letter-spacing:0.000000pt;}
.ls0_c01189{letter-spacing:21.696000pt;}
.ws1_c01189{word-spacing:-17.352000pt;}
.ws0_c01189{word-spacing:-15.424000pt;}
.ws2_c01189{word-spacing:0.000000pt;}
._22_c01189{margin-left:-57.344000pt;}
._b_c01189{margin-left:-14.101333pt;}
._13_c01189{margin-left:-10.112000pt;}
._1f_c01189{margin-left:-9.152000pt;}
._1a_c01189{margin-left:-6.890667pt;}
._11_c01189{margin-left:-5.418667pt;}
._28_c01189{margin-left:-4.482667pt;}
._8_c01189{margin-left:-2.816000pt;}
._3_c01189{margin-left:-1.728000pt;}
._c_c01189{width:1.088000pt;}
._1_c01189{width:2.048000pt;}
._2_c01189{width:2.944000pt;}
._0_c01189{width:4.608000pt;}
._7_c01189{width:5.696000pt;}
._4_c01189{width:6.656000pt;}
._f_c01189{width:7.680000pt;}
._16_c01189{width:8.576000pt;}
._5_c01189{width:9.536000pt;}
._6_c01189{width:10.432000pt;}
._25_c01189{width:11.776000pt;}
._e_c01189{width:12.672000pt;}
._9_c01189{width:13.824000pt;}
._27_c01189{width:15.008000pt;}
._18_c01189{width:16.208000pt;}
._d_c01189{width:17.152000pt;}
._17_c01189{width:18.152000pt;}
._15_c01189{width:22.272000pt;}
._19_c01189{width:24.896000pt;}
._1b_c01189{width:26.752000pt;}
._12_c01189{width:32.256000pt;}
._24_c01189{width:42.858667pt;}
._1c_c01189{width:56.640000pt;}
._21_c01189{width:86.720000pt;}
._20_c01189{width:138.496000pt;}
._26_c01189{width:146.474667pt;}
._14_c01189{width:171.989333pt;}
._1d_c01189{width:209.024000pt;}
._23_c01189{width:320.000000pt;}
._a_c01189{width:380.458667pt;}
._10_c01189{width:450.069333pt;}
._1e_c01189{width:697.664000pt;}
.fs5_c01189{font-size:42.666667pt;}
.fs1_c01189{font-size:56.000000pt;}
.fs2_c01189{font-size:58.666667pt;}
.fs0_c01189{font-size:64.000000pt;}
.fs4_c01189{font-size:69.333333pt;}
.fs3_c01189{font-size:72.000000pt;}
.y0_c01189{bottom:0.000000pt;}
.y1f_c01189{bottom:2.760000pt;}
.y1e_c01189{bottom:6.425212pt;}
.y1d_c01189{bottom:44.800000pt;}
.y1c_c01189{bottom:71.200000pt;}
.y1b_c01189{bottom:91.866667pt;}
.y1a_c01189{bottom:114.400000pt;}
.y19_c01189{bottom:138.000000pt;}
.y18_c01189{bottom:160.400000pt;}
.y17_c01189{bottom:181.866667pt;}
.y16_c01189{bottom:205.466667pt;}
.y15_c01189{bottom:226.800000pt;}
.y14_c01189{bottom:249.066667pt;}
.y13_c01189{bottom:271.466667pt;}
.y12_c01189{bottom:292.400000pt;}
.y11_c01189{bottom:315.066667pt;}
.y10_c01189{bottom:336.000000pt;}
.yf_c01189{bottom:356.666667pt;}
.ye_c01189{bottom:376.266667pt;}
.yd_c01189{bottom:399.600000pt;}
.yc_c01189{bottom:420.266667pt;}
.yb_c01189{bottom:442.000000pt;}
.ya_c01189{bottom:463.733333pt;}
.y9_c01189{bottom:485.733333pt;}
.y8_c01189{bottom:507.333333pt;}
.y7_c01189{bottom:530.133333pt;}
.y6_c01189{bottom:551.466667pt;}
.y5_c01189{bottom:573.200000pt;}
.y4_c01189{bottom:595.200000pt;}
.y3_c01189{bottom:617.066667pt;}
.y2_c01189{bottom:639.333333pt;}
.y1_c01189{bottom:662.133333pt;}
.h6_c01189{height:11.733399pt;}
.h7_c01189{height:38.937500pt;}
.h3_c01189{height:70.902344pt;}
.h5_c01189{height:74.906250pt;}
.h2_c01189{height:81.031250pt;}
.h4_c01189{height:84.269531pt;}
.h0_c01189{height:710.400000pt;}
.h1_c01189{height:710.666667pt;}
.w2_c01189{width:93.222667pt;}
.w0_c01189{width:455.266667pt;}
.w1_c01189{width:455.333333pt;}
.x0_c01189{left:0.000000pt;}
.x2_c01189{left:79.466667pt;}
.x3_c01189{left:80.400000pt;}
.x5_c01189{left:81.333333pt;}
.x6_c01189{left:82.533333pt;}
.xa_c01189{left:83.600000pt;}
.x9_c01189{left:84.533333pt;}
.x4_c01189{left:102.266667pt;}
.x7_c01189{left:103.466667pt;}
.x8_c01189{left:104.933333pt;}
.xb_c01189{left:107.600000pt;}
.xd_c01189{left:184.801554pt;}
.x1_c01189{left:186.933333pt;}
.xc_c01189{left:404.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fb3fcd7aab93fa10ccaf5a5e.woff2')format("woff");}.ff1_c01190{font-family:ff1_c01190;line-height:1.284180;font-style:normal;font-weight:normal;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_78a6d176c4633d8f4fe35a06.woff2')format("woff");}.ff2_c01190{font-family:ff2_c01190;line-height:1.284668;font-style:normal;font-weight:normal;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_46a6f15900bab1deab15be5a.woff2')format("woff");}.ff3_c01190{font-family:ff3_c01190;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01190;src:url('chunks/assets/font_580e57003d6a8537cbc0d56f.woff2')format("woff");}.ff4_c01190{font-family:ff4_c01190;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01190;src:url('chunks/assets/font_90cc98f452675b056bca5852.woff2')format("woff");}.ff5_c01190{font-family:ff5_c01190;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01190;src:url('chunks/assets/font_464254eb06ec74de6715df28.woff2')format("woff");}.ff6_c01190{font-family:ff6_c01190;line-height:1.284180;font-style:normal;font-weight: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_c01190;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c01190{font-family:ff7_c01190;line-height:1.219238;font-style: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;}
.ls2_c01190{letter-spacing:0.000000px;}
.ls0_c01190{letter-spacing:10.188000px;}
.ls1_c01190{letter-spacing:25.188000px;}
.sc__c01190{text-shadow:none;}
.sc0_c01190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01190{-webkit-text-stroke:0px transparent;}
.sc0_c01190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01190{word-spacing:-33.192000px;}
.ws1_c01190{word-spacing:-30.051000px;}
.ws3_c01190{word-spacing:-27.000000px;}
.ws0_c01190{word-spacing:-17.352000px;}
.ws4_c01190{word-spacing:0.000000px;}
._1_c01190{margin-left:-13.524000px;}
._16_c01190{margin-left:-11.577000px;}
._6_c01190{margin-left:-10.248000px;}
._3_c01190{margin-left:-8.064000px;}
._1c_c01190{margin-left:-7.026000px;}
._10_c01190{margin-left:-6.015000px;}
._f_c01190{margin-left:-4.182000px;}
._19_c01190{margin-left:-2.856000px;}
._11_c01190{margin-left:-1.341000px;}
._a_c01190{width:1.794000px;}
._8_c01190{width:3.108000px;}
._4_c01190{width:4.536000px;}
._7_c01190{width:5.964000px;}
._5_c01190{width:7.812000px;}
._d_c01190{width:8.859000px;}
._b_c01190{width:10.017000px;}
._2_c01190{width:11.424000px;}
._1b_c01190{width:12.720000px;}
._c_c01190{width:14.064000px;}
._e_c01190{width:15.942000px;}
._1d_c01190{width:18.576000px;}
._18_c01190{width:20.367000px;}
._14_c01190{width:21.825000px;}
._13_c01190{width:25.620000px;}
._17_c01190{width:27.807000px;}
._12_c01190{width:31.110000px;}
._1f_c01190{width:36.045000px;}
._15_c01190{width:44.997000px;}
._0_c01190{width:57.288000px;}
._9_c01190{width:325.104000px;}
._1a_c01190{width:479.991000px;}
._1e_c01190{width:694.023000px;}
.fc2_c01190{color:transparent;}
.fc1_c01190{color:rgb(128,128,128);}
.fc0_c01190{color:rgb(0,0,0);}
.fs4_c01190{font-size:33.000000px;}
.fs7_c01190{font-size:48.000000px;}
.fs6_c01190{font-size:54.000000px;}
.fs5_c01190{font-size:63.000000px;}
.fs3_c01190{font-size:72.000000px;}
.fs2_c01190{font-size:75.000000px;}
.fs1_c01190{font-size:81.000000px;}
.fs0_c01190{font-size:84.000000px;}
.y0_c01190{bottom:0.000000px;}
.y20_c01190{bottom:3.105000px;}
.y1f_c01190{bottom:7.228369px;}
.y1d_c01190{bottom:56.070000px;}
.y1c_c01190{bottom:82.920000px;}
.y1b_c01190{bottom:108.570000px;}
.y1e_c01190{bottom:122.070000px;}
.y1a_c01190{bottom:133.320000px;}
.y19_c01190{bottom:158.670000px;}
.y18_c01190{bottom:181.920000px;}
.y17_c01190{bottom:208.470000px;}
.y16_c01190{bottom:234.270000px;}
.y15_c01190{bottom:259.170000px;}
.y14_c01190{bottom:284.070000px;}
.y13_c01190{bottom:308.370000px;}
.y12_c01190{bottom:333.120000px;}
.y11_c01190{bottom:356.670000px;}
.y10_c01190{bottom:382.770000px;}
.yf_c01190{bottom:406.920000px;}
.ye_c01190{bottom:428.970000px;}
.yd_c01190{bottom:454.170000px;}
.yc_c01190{bottom:478.620000px;}
.yb_c01190{bottom:501.570000px;}
.ya_c01190{bottom:525.870000px;}
.y9_c01190{bottom:550.470000px;}
.y8_c01190{bottom:573.720000px;}
.y7_c01190{bottom:597.420000px;}
.y6_c01190{bottom:620.970000px;}
.y5_c01190{bottom:646.920000px;}
.y4_c01190{bottom:672.270000px;}
.y3_c01190{bottom:696.570000px;}
.y2_c01190{bottom:721.620000px;}
.y1_c01190{bottom:746.220000px;}
.h5_c01190{height:13.200073px;}
.h6_c01190{height:43.804688px;}
.h4_c01190{height:52.971680px;}
.h3_c01190{height:73.608398px;}
.h1_c01190{height:82.400391px;}
.h2_c01190{height:91.160156px;}
.h0_c01190{height:793.500000px;}
.w2_c01190{width:104.875500px;}
.w1_c01190{width:551.250000px;}
.w0_c01190{width:551.325000px;}
.x0_c01190{left:0.000000px;}
.x2_c01190{left:28.800000px;}
.x3_c01190{left:30.450000px;}
.x4_c01190{left:32.100000px;}
.x7_c01190{left:33.300000px;}
.x5_c01190{left:34.350000px;}
.x6_c01190{left:35.700000px;}
.x8_c01190{left:43.200000px;}
.x1_c01190{left:131.250000px;}
.xa_c01190{left:227.476730px;}
.x9_c01190{left:495.750000px;}
@media print{
.v0_c01190{vertical-align:0.000000pt;}
.ls2_c01190{letter-spacing:0.000000pt;}
.ls0_c01190{letter-spacing:9.056000pt;}
.ls1_c01190{letter-spacing:22.389333pt;}
.ws2_c01190{word-spacing:-29.504000pt;}
.ws1_c01190{word-spacing:-26.712000pt;}
.ws3_c01190{word-spacing:-24.000000pt;}
.ws0_c01190{word-spacing:-15.424000pt;}
.ws4_c01190{word-spacing:0.000000pt;}
._1_c01190{margin-left:-12.021333pt;}
._16_c01190{margin-left:-10.290667pt;}
._6_c01190{margin-left:-9.109333pt;}
._3_c01190{margin-left:-7.168000pt;}
._1c_c01190{margin-left:-6.245333pt;}
._10_c01190{margin-left:-5.346667pt;}
._f_c01190{margin-left:-3.717333pt;}
._19_c01190{margin-left:-2.538667pt;}
._11_c01190{margin-left:-1.192000pt;}
._a_c01190{width:1.594667pt;}
._8_c01190{width:2.762667pt;}
._4_c01190{width:4.032000pt;}
._7_c01190{width:5.301333pt;}
._5_c01190{width:6.944000pt;}
._d_c01190{width:7.874667pt;}
._b_c01190{width:8.904000pt;}
._2_c01190{width:10.154667pt;}
._1b_c01190{width:11.306667pt;}
._c_c01190{width:12.501333pt;}
._e_c01190{width:14.170667pt;}
._1d_c01190{width:16.512000pt;}
._18_c01190{width:18.104000pt;}
._14_c01190{width:19.400000pt;}
._13_c01190{width:22.773333pt;}
._17_c01190{width:24.717333pt;}
._12_c01190{width:27.653333pt;}
._1f_c01190{width:32.040000pt;}
._15_c01190{width:39.997333pt;}
._0_c01190{width:50.922667pt;}
._9_c01190{width:288.981333pt;}
._1a_c01190{width:426.658667pt;}
._1e_c01190{width:616.909333pt;}
.fs4_c01190{font-size:29.333333pt;}
.fs7_c01190{font-size:42.666667pt;}
.fs6_c01190{font-size:48.000000pt;}
.fs5_c01190{font-size:56.000000pt;}
.fs3_c01190{font-size:64.000000pt;}
.fs2_c01190{font-size:66.666667pt;}
.fs1_c01190{font-size:72.000000pt;}
.fs0_c01190{font-size:74.666667pt;}
.y0_c01190{bottom:0.000000pt;}
.y20_c01190{bottom:2.760000pt;}
.y1f_c01190{bottom:6.425217pt;}
.y1d_c01190{bottom:49.840000pt;}
.y1c_c01190{bottom:73.706667pt;}
.y1b_c01190{bottom:96.506667pt;}
.y1e_c01190{bottom:108.506667pt;}
.y1a_c01190{bottom:118.506667pt;}
.y19_c01190{bottom:141.040000pt;}
.y18_c01190{bottom:161.706667pt;}
.y17_c01190{bottom:185.306667pt;}
.y16_c01190{bottom:208.240000pt;}
.y15_c01190{bottom:230.373333pt;}
.y14_c01190{bottom:252.506667pt;}
.y13_c01190{bottom:274.106667pt;}
.y12_c01190{bottom:296.106667pt;}
.y11_c01190{bottom:317.040000pt;}
.y10_c01190{bottom:340.240000pt;}
.yf_c01190{bottom:361.706667pt;}
.ye_c01190{bottom:381.306667pt;}
.yd_c01190{bottom:403.706667pt;}
.yc_c01190{bottom:425.440000pt;}
.yb_c01190{bottom:445.840000pt;}
.ya_c01190{bottom:467.440000pt;}
.y9_c01190{bottom:489.306667pt;}
.y8_c01190{bottom:509.973333pt;}
.y7_c01190{bottom:531.040000pt;}
.y6_c01190{bottom:551.973333pt;}
.y5_c01190{bottom:575.040000pt;}
.y4_c01190{bottom:597.573333pt;}
.y3_c01190{bottom:619.173333pt;}
.y2_c01190{bottom:641.440000pt;}
.y1_c01190{bottom:663.306667pt;}
.h5_c01190{height:11.733399pt;}
.h6_c01190{height:38.937500pt;}
.h4_c01190{height:47.085938pt;}
.h3_c01190{height:65.429688pt;}
.h1_c01190{height:73.244792pt;}
.h2_c01190{height:81.031250pt;}
.h0_c01190{height:705.333333pt;}
.w2_c01190{width:93.222667pt;}
.w1_c01190{width:490.000000pt;}
.w0_c01190{width:490.066667pt;}
.x0_c01190{left:0.000000pt;}
.x2_c01190{left:25.600000pt;}
.x3_c01190{left:27.066667pt;}
.x4_c01190{left:28.533333pt;}
.x7_c01190{left:29.600000pt;}
.x5_c01190{left:30.533333pt;}
.x6_c01190{left:31.733333pt;}
.x8_c01190{left:38.400000pt;}
.x1_c01190{left:116.666667pt;}
.xa_c01190{left:202.201538pt;}
.x9_c01190{left:440.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_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_1c8cc1d9df75af20db4e6f00.woff2')format("woff");}.ff1_c01191{font-family:ff1_c01191;line-height:1.480469;font-style:normal;font-weight:normal;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_b40498a398f54ba333bda535.woff2')format("woff");}.ff2_c01191{font-family:ff2_c01191;line-height:1.568848;font-style:normal;font-weight:normal;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_57b89d4a45685b5910306dcd.woff2')format("woff");}.ff3_c01191{font-family:ff3_c01191;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01191;src:url('chunks/assets/font_936e5ae0c846a2695ae91249.woff2')format("woff");}.ff4_c01191{font-family:ff4_c01191;line-height:1.592000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01191{font-family:ff5_c01191;line-height:1.219238;font-style: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;}
.ls3_c01191{letter-spacing:-6.000000px;}
.ls2_c01191{letter-spacing:0.000000px;}
.ls4_c01191{letter-spacing:3.000000px;}
.ls0_c01191{letter-spacing:27.663000px;}
.ls1_c01191{letter-spacing:277.263000px;}
.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:-33.192000px;}
.ws2_c01191{word-spacing:-26.487000px;}
.ws0_c01191{word-spacing:-14.544000px;}
.ws3_c01191{word-spacing:0.000000px;}
._f_c01191{margin-left:-66.600000px;}
._18_c01191{margin-left:-25.479000px;}
._15_c01191{margin-left:-18.063000px;}
._16_c01191{margin-left:-16.929000px;}
._17_c01191{margin-left:-13.887000px;}
._c_c01191{margin-left:-11.952000px;}
._11_c01191{margin-left:-10.080000px;}
._12_c01191{margin-left:-6.786000px;}
._d_c01191{margin-left:-5.760000px;}
._a_c01191{margin-left:-3.870000px;}
._b_c01191{margin-left:-1.800000px;}
._7_c01191{width:1.800000px;}
._6_c01191{width:3.168000px;}
._4_c01191{width:4.752000px;}
._9_c01191{width:5.904000px;}
._1_c01191{width:6.912000px;}
._5_c01191{width:8.568000px;}
._3_c01191{width:10.152000px;}
._2_c01191{width:11.592000px;}
._0_c01191{width:12.744000px;}
._8_c01191{width:14.328000px;}
._e_c01191{width:15.552000px;}
._14_c01191{width:17.853000px;}
._1a_c01191{width:20.160000px;}
._19_c01191{width:30.984000px;}
._13_c01191{width:83.796000px;}
._1c_c01191{width:108.630000px;}
._1b_c01191{width:240.525000px;}
._10_c01191{width:291.384000px;}
._1d_c01191{width:540.000000px;}
.fc2_c01191{color:transparent;}
.fc1_c01191{color:rgb(128,128,128);}
.fc0_c01191{color:rgb(0,0,0);}
.fs5_c01191{font-size:48.000000px;}
.fs3_c01191{font-size:57.000000px;}
.fs2_c01191{font-size:63.000000px;}
.fs0_c01191{font-size:72.000000px;}
.fs4_c01191{font-size:81.000000px;}
.fs1_c01191{font-size:93.000000px;}
.y0_c01191{bottom:0.000000px;}
.y1f_c01191{bottom:3.105000px;}
.y1e_c01191{bottom:7.228363px;}
.y1d_c01191{bottom:51.300000px;}
.y1c_c01191{bottom:70.800000px;}
.y1b_c01191{bottom:99.900000px;}
.y1a_c01191{bottom:124.200000px;}
.y19_c01191{bottom:152.100000px;}
.y18_c01191{bottom:174.150000px;}
.y17_c01191{bottom:197.700000px;}
.y16_c01191{bottom:222.750000px;}
.y15_c01191{bottom:247.950000px;}
.y14_c01191{bottom:273.600000px;}
.y13_c01191{bottom:298.050000px;}
.y12_c01191{bottom:322.950000px;}
.y11_c01191{bottom:347.550000px;}
.y10_c01191{bottom:374.250000px;}
.yf_c01191{bottom:397.950000px;}
.ye_c01191{bottom:420.900000px;}
.yd_c01191{bottom:445.050000px;}
.yc_c01191{bottom:468.450000px;}
.yb_c01191{bottom:493.350000px;}
.ya_c01191{bottom:518.400000px;}
.y9_c01191{bottom:543.450000px;}
.y8_c01191{bottom:568.050000px;}
.y7_c01191{bottom:592.350000px;}
.y6_c01191{bottom:617.700000px;}
.y5_c01191{bottom:642.300000px;}
.y4_c01191{bottom:667.200000px;}
.y3_c01191{bottom:693.600000px;}
.y2_c01191{bottom:717.300000px;}
.y1_c01191{bottom:743.250000px;}
.h5_c01191{height:13.200074px;}
.h6_c01191{height:43.804688px;}
.h4_c01191{height:79.765137px;}
.h2_c01191{height:91.160156px;}
.h3_c01191{height:93.726562px;}
.h1_c01191{height:795.000000px;}
.h0_c01191{height:795.150000px;}
.w2_c01191{width:104.875500px;}
.w0_c01191{width:541.350000px;}
.w1_c01191{width:541.500000px;}
.x0_c01191{left:0.000000px;}
.x9_c01191{left:44.250000px;}
.xa_c01191{left:45.450000px;}
.x8_c01191{left:57.300000px;}
.x5_c01191{left:114.000000px;}
.x4_c01191{left:117.450000px;}
.x7_c01191{left:121.050000px;}
.x6_c01191{left:122.100000px;}
.x3_c01191{left:123.600000px;}
.x2_c01191{left:125.250000px;}
.xc_c01191{left:222.489258px;}
.x1_c01191{left:236.550000px;}
.xb_c01191{left:273.900000px;}
@media print{
.v0_c01191{vertical-align:0.000000pt;}
.ls3_c01191{letter-spacing:-5.333333pt;}
.ls2_c01191{letter-spacing:0.000000pt;}
.ls4_c01191{letter-spacing:2.666667pt;}
.ls0_c01191{letter-spacing:24.589333pt;}
.ls1_c01191{letter-spacing:246.456000pt;}
.ws1_c01191{word-spacing:-29.504000pt;}
.ws2_c01191{word-spacing:-23.544000pt;}
.ws0_c01191{word-spacing:-12.928000pt;}
.ws3_c01191{word-spacing:0.000000pt;}
._f_c01191{margin-left:-59.200000pt;}
._18_c01191{margin-left:-22.648000pt;}
._15_c01191{margin-left:-16.056000pt;}
._16_c01191{margin-left:-15.048000pt;}
._17_c01191{margin-left:-12.344000pt;}
._c_c01191{margin-left:-10.624000pt;}
._11_c01191{margin-left:-8.960000pt;}
._12_c01191{margin-left:-6.032000pt;}
._d_c01191{margin-left:-5.120000pt;}
._a_c01191{margin-left:-3.440000pt;}
._b_c01191{margin-left:-1.600000pt;}
._7_c01191{width:1.600000pt;}
._6_c01191{width:2.816000pt;}
._4_c01191{width:4.224000pt;}
._9_c01191{width:5.248000pt;}
._1_c01191{width:6.144000pt;}
._5_c01191{width:7.616000pt;}
._3_c01191{width:9.024000pt;}
._2_c01191{width:10.304000pt;}
._0_c01191{width:11.328000pt;}
._8_c01191{width:12.736000pt;}
._e_c01191{width:13.824000pt;}
._14_c01191{width:15.869333pt;}
._1a_c01191{width:17.920000pt;}
._19_c01191{width:27.541333pt;}
._13_c01191{width:74.485333pt;}
._1c_c01191{width:96.560000pt;}
._1b_c01191{width:213.800000pt;}
._10_c01191{width:259.008000pt;}
._1d_c01191{width:480.000000pt;}
.fs5_c01191{font-size:42.666667pt;}
.fs3_c01191{font-size:50.666667pt;}
.fs2_c01191{font-size:56.000000pt;}
.fs0_c01191{font-size:64.000000pt;}
.fs4_c01191{font-size:72.000000pt;}
.fs1_c01191{font-size:82.666667pt;}
.y0_c01191{bottom:0.000000pt;}
.y1f_c01191{bottom:2.760000pt;}
.y1e_c01191{bottom:6.425212pt;}
.y1d_c01191{bottom:45.600000pt;}
.y1c_c01191{bottom:62.933333pt;}
.y1b_c01191{bottom:88.800000pt;}
.y1a_c01191{bottom:110.400000pt;}
.y19_c01191{bottom:135.200000pt;}
.y18_c01191{bottom:154.800000pt;}
.y17_c01191{bottom:175.733333pt;}
.y16_c01191{bottom:198.000000pt;}
.y15_c01191{bottom:220.400000pt;}
.y14_c01191{bottom:243.200000pt;}
.y13_c01191{bottom:264.933333pt;}
.y12_c01191{bottom:287.066667pt;}
.y11_c01191{bottom:308.933333pt;}
.y10_c01191{bottom:332.666667pt;}
.yf_c01191{bottom:353.733333pt;}
.ye_c01191{bottom:374.133333pt;}
.yd_c01191{bottom:395.600000pt;}
.yc_c01191{bottom:416.400000pt;}
.yb_c01191{bottom:438.533333pt;}
.ya_c01191{bottom:460.800000pt;}
.y9_c01191{bottom:483.066667pt;}
.y8_c01191{bottom:504.933333pt;}
.y7_c01191{bottom:526.533333pt;}
.y6_c01191{bottom:549.066667pt;}
.y5_c01191{bottom:570.933333pt;}
.y4_c01191{bottom:593.066667pt;}
.y3_c01191{bottom:616.533333pt;}
.y2_c01191{bottom:637.600000pt;}
.y1_c01191{bottom:660.666667pt;}
.h5_c01191{height:11.733399pt;}
.h6_c01191{height:38.937500pt;}
.h4_c01191{height:70.902344pt;}
.h2_c01191{height:81.031250pt;}
.h3_c01191{height:83.312500pt;}
.h1_c01191{height:706.666667pt;}
.h0_c01191{height:706.800000pt;}
.w2_c01191{width:93.222667pt;}
.w0_c01191{width:481.200000pt;}
.w1_c01191{width:481.333333pt;}
.x0_c01191{left:0.000000pt;}
.x9_c01191{left:39.333333pt;}
.xa_c01191{left:40.400000pt;}
.x8_c01191{left:50.933333pt;}
.x5_c01191{left:101.333333pt;}
.x4_c01191{left:104.400000pt;}
.x7_c01191{left:107.600000pt;}
.x6_c01191{left:108.533333pt;}
.x3_c01191{left:109.866667pt;}
.x2_c01191{left:111.333333pt;}
.xc_c01191{left:197.768229pt;}
.x1_c01191{left:210.266667pt;}
.xb_c01191{left:243.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_28a6d151f84982d033b4530e.woff2')format("woff");}.ff1_c01192{font-family:ff1_c01192;line-height:1.480469;font-style:normal;font-weight:normal;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_a7a09a7331966efb47ba8019.woff2')format("woff");}.ff2_c01192{font-family:ff2_c01192;line-height:1.284180;font-style:normal;font-weight:normal;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_bd318af1770bef97df86b88d.woff2')format("woff");}.ff3_c01192{font-family:ff3_c01192;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01192;src:url('chunks/assets/font_40e1f5827295063fc432d61c.woff2')format("woff");}.ff4_c01192{font-family:ff4_c01192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01192;src:url('chunks/assets/font_99f6f45a6fdb7d248ea31e05.woff2')format("woff");}.ff5_c01192{font-family:ff5_c01192;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01192;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01192{font-family:ff6_c01192;line-height:1.219238;font-style: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;}
.ls2_c01192{letter-spacing:3.000000px;}
.ls3_c01192{letter-spacing:6.000000px;}
.ls0_c01192{letter-spacing:33.588000px;}
.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;}
}
.ws2_c01192{word-spacing:-19.521000px;}
.ws1_c01192{word-spacing:-17.352000px;}
.ws0_c01192{word-spacing:-16.536000px;}
.ws3_c01192{word-spacing:0.000000px;}
._1c_c01192{margin-left:-30.456000px;}
._14_c01192{margin-left:-14.040000px;}
._15_c01192{margin-left:-12.744000px;}
._1a_c01192{margin-left:-10.506000px;}
._17_c01192{margin-left:-9.432000px;}
._1b_c01192{margin-left:-7.704000px;}
._13_c01192{margin-left:-6.615000px;}
._18_c01192{margin-left:-5.544000px;}
._19_c01192{margin-left:-4.464000px;}
._e_c01192{margin-left:-3.456000px;}
._6_c01192{margin-left:-2.016000px;}
._10_c01192{margin-left:-1.008000px;}
._7_c01192{width:1.296000px;}
._b_c01192{width:2.448000px;}
._4_c01192{width:3.600000px;}
._1_c01192{width:5.328000px;}
._3_c01192{width:6.408000px;}
._0_c01192{width:7.488000px;}
._2_c01192{width:8.856000px;}
._a_c01192{width:10.224000px;}
._9_c01192{width:11.232000px;}
._c_c01192{width:13.176000px;}
._d_c01192{width:14.328000px;}
._8_c01192{width:15.912000px;}
._16_c01192{width:21.384000px;}
._11_c01192{width:22.680000px;}
._f_c01192{width:24.264000px;}
._1d_c01192{width:31.104000px;}
._1e_c01192{width:37.080000px;}
._12_c01192{width:153.018000px;}
._5_c01192{width:293.376000px;}
.fc2_c01192{color:transparent;}
.fc1_c01192{color:rgb(128,128,128);}
.fc0_c01192{color:rgb(0,0,0);}
.fs6_c01192{font-size:48.000000px;}
.fs5_c01192{font-size:57.000000px;}
.fs2_c01192{font-size:63.000000px;}
.fs4_c01192{font-size:66.000000px;}
.fs0_c01192{font-size:72.000000px;}
.fs1_c01192{font-size:78.000000px;}
.fs3_c01192{font-size:81.000000px;}
.y0_c01192{bottom:0.000000px;}
.y1f_c01192{bottom:3.105000px;}
.y1e_c01192{bottom:7.228369px;}
.y1d_c01192{bottom:59.970000px;}
.y1c_c01192{bottom:86.670000px;}
.y1b_c01192{bottom:110.670000px;}
.y1a_c01192{bottom:135.720000px;}
.y19_c01192{bottom:160.920000px;}
.y18_c01192{bottom:185.520000px;}
.y17_c01192{bottom:211.920000px;}
.y16_c01192{bottom:236.970000px;}
.y15_c01192{bottom:261.570000px;}
.y14_c01192{bottom:286.470000px;}
.y13_c01192{bottom:310.770000px;}
.y12_c01192{bottom:335.070000px;}
.y11_c01192{bottom:359.670000px;}
.y10_c01192{bottom:385.470000px;}
.yf_c01192{bottom:409.020000px;}
.ye_c01192{bottom:431.970000px;}
.yd_c01192{bottom:456.570000px;}
.yc_c01192{bottom:480.570000px;}
.yb_c01192{bottom:505.470000px;}
.ya_c01192{bottom:528.870000px;}
.y9_c01192{bottom:553.020000px;}
.y8_c01192{bottom:577.170000px;}
.y7_c01192{bottom:601.320000px;}
.y6_c01192{bottom:625.770000px;}
.y5_c01192{bottom:652.320000px;}
.y4_c01192{bottom:675.570000px;}
.y3_c01192{bottom:700.320000px;}
.y2_c01192{bottom:726.270000px;}
.y1_c01192{bottom:750.270000px;}
.h6_c01192{height:13.200073px;}
.h7_c01192{height:43.804688px;}
.h5_c01192{height:79.765137px;}
.h2_c01192{height:84.269531px;}
.h3_c01192{height:91.160156px;}
.h4_c01192{height:102.555176px;}
.h1_c01192{height:790.500000px;}
.h0_c01192{height:790.800000px;}
.w2_c01192{width:104.875500px;}
.w1_c01192{width:539.250000px;}
.w0_c01192{width:539.475000px;}
.x0_c01192{left:0.000000px;}
.x3_c01192{left:33.000000px;}
.x4_c01192{left:35.100000px;}
.x9_c01192{left:36.450000px;}
.x5_c01192{left:37.800000px;}
.x7_c01192{left:38.850000px;}
.x6_c01192{left:40.800000px;}
.x2_c01192{left:88.800000px;}
.x8_c01192{left:100.800000px;}
.x1_c01192{left:135.300000px;}
.xb_c01192{left:221.551758px;}
.xa_c01192{left:374.550000px;}
@media print{
.v0_c01192{vertical-align:0.000000pt;}
.ls1_c01192{letter-spacing:0.000000pt;}
.ls2_c01192{letter-spacing:2.666667pt;}
.ls3_c01192{letter-spacing:5.333333pt;}
.ls0_c01192{letter-spacing:29.856000pt;}
.ws2_c01192{word-spacing:-17.352000pt;}
.ws1_c01192{word-spacing:-15.424000pt;}
.ws0_c01192{word-spacing:-14.698667pt;}
.ws3_c01192{word-spacing:0.000000pt;}
._1c_c01192{margin-left:-27.072000pt;}
._14_c01192{margin-left:-12.480000pt;}
._15_c01192{margin-left:-11.328000pt;}
._1a_c01192{margin-left:-9.338667pt;}
._17_c01192{margin-left:-8.384000pt;}
._1b_c01192{margin-left:-6.848000pt;}
._13_c01192{margin-left:-5.880000pt;}
._18_c01192{margin-left:-4.928000pt;}
._19_c01192{margin-left:-3.968000pt;}
._e_c01192{margin-left:-3.072000pt;}
._6_c01192{margin-left:-1.792000pt;}
._10_c01192{margin-left:-0.896000pt;}
._7_c01192{width:1.152000pt;}
._b_c01192{width:2.176000pt;}
._4_c01192{width:3.200000pt;}
._1_c01192{width:4.736000pt;}
._3_c01192{width:5.696000pt;}
._0_c01192{width:6.656000pt;}
._2_c01192{width:7.872000pt;}
._a_c01192{width:9.088000pt;}
._9_c01192{width:9.984000pt;}
._c_c01192{width:11.712000pt;}
._d_c01192{width:12.736000pt;}
._8_c01192{width:14.144000pt;}
._16_c01192{width:19.008000pt;}
._11_c01192{width:20.160000pt;}
._f_c01192{width:21.568000pt;}
._1d_c01192{width:27.648000pt;}
._1e_c01192{width:32.960000pt;}
._12_c01192{width:136.016000pt;}
._5_c01192{width:260.778667pt;}
.fs6_c01192{font-size:42.666667pt;}
.fs5_c01192{font-size:50.666667pt;}
.fs2_c01192{font-size:56.000000pt;}
.fs4_c01192{font-size:58.666667pt;}
.fs0_c01192{font-size:64.000000pt;}
.fs1_c01192{font-size:69.333333pt;}
.fs3_c01192{font-size:72.000000pt;}
.y0_c01192{bottom:0.000000pt;}
.y1f_c01192{bottom:2.760000pt;}
.y1e_c01192{bottom:6.425217pt;}
.y1d_c01192{bottom:53.306667pt;}
.y1c_c01192{bottom:77.040000pt;}
.y1b_c01192{bottom:98.373333pt;}
.y1a_c01192{bottom:120.640000pt;}
.y19_c01192{bottom:143.040000pt;}
.y18_c01192{bottom:164.906667pt;}
.y17_c01192{bottom:188.373333pt;}
.y16_c01192{bottom:210.640000pt;}
.y15_c01192{bottom:232.506667pt;}
.y14_c01192{bottom:254.640000pt;}
.y13_c01192{bottom:276.240000pt;}
.y12_c01192{bottom:297.840000pt;}
.y11_c01192{bottom:319.706667pt;}
.y10_c01192{bottom:342.640000pt;}
.yf_c01192{bottom:363.573333pt;}
.ye_c01192{bottom:383.973333pt;}
.yd_c01192{bottom:405.840000pt;}
.yc_c01192{bottom:427.173333pt;}
.yb_c01192{bottom:449.306667pt;}
.ya_c01192{bottom:470.106667pt;}
.y9_c01192{bottom:491.573333pt;}
.y8_c01192{bottom:513.040000pt;}
.y7_c01192{bottom:534.506667pt;}
.y6_c01192{bottom:556.240000pt;}
.y5_c01192{bottom:579.840000pt;}
.y4_c01192{bottom:600.506667pt;}
.y3_c01192{bottom:622.506667pt;}
.y2_c01192{bottom:645.573333pt;}
.y1_c01192{bottom:666.906667pt;}
.h6_c01192{height:11.733399pt;}
.h7_c01192{height:38.937500pt;}
.h5_c01192{height:70.902344pt;}
.h2_c01192{height:74.906250pt;}
.h3_c01192{height:81.031250pt;}
.h4_c01192{height:91.160156pt;}
.h1_c01192{height:702.666667pt;}
.h0_c01192{height:702.933333pt;}
.w2_c01192{width:93.222667pt;}
.w1_c01192{width:479.333333pt;}
.w0_c01192{width:479.533333pt;}
.x0_c01192{left:0.000000pt;}
.x3_c01192{left:29.333333pt;}
.x4_c01192{left:31.200000pt;}
.x9_c01192{left:32.400000pt;}
.x5_c01192{left:33.600000pt;}
.x7_c01192{left:34.533333pt;}
.x6_c01192{left:36.266667pt;}
.x2_c01192{left:78.933333pt;}
.x8_c01192{left:89.600000pt;}
.x1_c01192{left:120.266667pt;}
.xb_c01192{left:196.934896pt;}
.xa_c01192{left:332.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c1a459adb0156c8be3c89a5f.woff2')format("woff");}.ff1_c01193{font-family:ff1_c01193;line-height:1.480469;font-style:normal;font-weight:normal;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_1411d2a35bb8a4d5739e0100.woff2')format("woff");}.ff2_c01193{font-family:ff2_c01193;line-height:1.568848;font-style:normal;font-weight:normal;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_9ffdabaeeee3a1a02b604073.woff2')format("woff");}.ff3_c01193{font-family:ff3_c01193;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01193{font-family:ff4_c01193;line-height:1.219238;font-style: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);}
.v0_c01193{vertical-align:0.000000px;}
.ls1_c01193{letter-spacing:-9.000000px;}
.ls0_c01193{letter-spacing:0.000000px;}
.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;}
}
.ws3_c01193{word-spacing:-30.051000px;}
.ws1_c01193{word-spacing:-19.521000px;}
.ws0_c01193{word-spacing:-17.352000px;}
.ws2_c01193{word-spacing:-6.183000px;}
.ws5_c01193{word-spacing:0.000000px;}
.ws4_c01193{word-spacing:8.064000px;}
._e_c01193{margin-left:-34.272000px;}
._16_c01193{margin-left:-16.548000px;}
._14_c01193{margin-left:-12.627000px;}
._19_c01193{margin-left:-10.545000px;}
._15_c01193{margin-left:-9.270000px;}
._d_c01193{margin-left:-6.705000px;}
._a_c01193{margin-left:-5.667000px;}
._6_c01193{margin-left:-3.915000px;}
._7_c01193{margin-left:-2.118000px;}
._10_c01193{margin-left:-1.062000px;}
._17_c01193{width:1.008000px;}
._0_c01193{width:2.025000px;}
._4_c01193{width:3.258000px;}
._1_c01193{width:4.374000px;}
._2_c01193{width:5.400000px;}
._3_c01193{width:6.840000px;}
._5_c01193{width:8.046000px;}
._c_c01193{width:9.288000px;}
._9_c01193{width:10.728000px;}
._b_c01193{width:12.273000px;}
._8_c01193{width:13.674000px;}
._12_c01193{width:17.022000px;}
._f_c01193{width:19.224000px;}
._11_c01193{width:22.236000px;}
._13_c01193{width:27.438000px;}
._18_c01193{width:262.323000px;}
.fc2_c01193{color:transparent;}
.fc1_c01193{color:rgb(128,128,128);}
.fc0_c01193{color:rgb(0,0,0);}
.fs3_c01193{font-size:48.000000px;}
.fs2_c01193{font-size:63.000000px;}
.fs1_c01193{font-size:72.000000px;}
.fs0_c01193{font-size:81.000000px;}
.y0_c01193{bottom:0.000000px;}
.y1e_c01193{bottom:3.105000px;}
.y1d_c01193{bottom:7.228357px;}
.y1c_c01193{bottom:72.630000px;}
.y1b_c01193{bottom:98.280000px;}
.y1a_c01193{bottom:124.230000px;}
.y19_c01193{bottom:149.580000px;}
.y18_c01193{bottom:174.480000px;}
.y17_c01193{bottom:200.130000px;}
.y16_c01193{bottom:227.430000px;}
.y15_c01193{bottom:250.080000px;}
.y14_c01193{bottom:274.830000px;}
.y13_c01193{bottom:299.730000px;}
.y12_c01193{bottom:325.680000px;}
.y11_c01193{bottom:348.630000px;}
.y10_c01193{bottom:372.030000px;}
.yf_c01193{bottom:397.530000px;}
.ye_c01193{bottom:420.930000px;}
.yd_c01193{bottom:444.780000px;}
.yc_c01193{bottom:468.780000px;}
.yb_c01193{bottom:493.380000px;}
.ya_c01193{bottom:519.180000px;}
.y9_c01193{bottom:542.130000px;}
.y8_c01193{bottom:566.430000px;}
.y7_c01193{bottom:591.630000px;}
.y6_c01193{bottom:616.230000px;}
.y5_c01193{bottom:639.630000px;}
.y4_c01193{bottom:664.830000px;}
.y3_c01193{bottom:689.880000px;}
.y2_c01193{bottom:713.880000px;}
.y1_c01193{bottom:739.230000px;}
.h6_c01193{height:13.200074px;}
.h7_c01193{height:43.804688px;}
.h4_c01193{height:79.765137px;}
.h3_c01193{height:91.160156px;}
.h5_c01193{height:94.803223px;}
.h2_c01193{height:102.555176px;}
.h1_c01193{height:783.000000px;}
.h0_c01193{height:783.300000px;}
.w2_c01193{width:104.875500px;}
.w0_c01193{width:536.775000px;}
.w1_c01193{width:537.000000px;}
.x0_c01193{left:0.000000px;}
.x6_c01193{left:95.550000px;}
.x7_c01193{left:105.300000px;}
.x9_c01193{left:112.050000px;}
.x8_c01193{left:113.100000px;}
.x5_c01193{left:115.050000px;}
.x4_c01193{left:116.100000px;}
.x2_c01193{left:117.750000px;}
.x3_c01193{left:118.800000px;}
.xb_c01193{left:142.350000px;}
.xc_c01193{left:220.201767px;}
.x1_c01193{left:238.200000px;}
.xa_c01193{left:296.700000px;}
@media print{
.v0_c01193{vertical-align:0.000000pt;}
.ls1_c01193{letter-spacing:-8.000000pt;}
.ls0_c01193{letter-spacing:0.000000pt;}
.ws3_c01193{word-spacing:-26.712000pt;}
.ws1_c01193{word-spacing:-17.352000pt;}
.ws0_c01193{word-spacing:-15.424000pt;}
.ws2_c01193{word-spacing:-5.496000pt;}
.ws5_c01193{word-spacing:0.000000pt;}
.ws4_c01193{word-spacing:7.168000pt;}
._e_c01193{margin-left:-30.464000pt;}
._16_c01193{margin-left:-14.709333pt;}
._14_c01193{margin-left:-11.224000pt;}
._19_c01193{margin-left:-9.373333pt;}
._15_c01193{margin-left:-8.240000pt;}
._d_c01193{margin-left:-5.960000pt;}
._a_c01193{margin-left:-5.037333pt;}
._6_c01193{margin-left:-3.480000pt;}
._7_c01193{margin-left:-1.882667pt;}
._10_c01193{margin-left:-0.944000pt;}
._17_c01193{width:0.896000pt;}
._0_c01193{width:1.800000pt;}
._4_c01193{width:2.896000pt;}
._1_c01193{width:3.888000pt;}
._2_c01193{width:4.800000pt;}
._3_c01193{width:6.080000pt;}
._5_c01193{width:7.152000pt;}
._c_c01193{width:8.256000pt;}
._9_c01193{width:9.536000pt;}
._b_c01193{width:10.909333pt;}
._8_c01193{width:12.154667pt;}
._12_c01193{width:15.130667pt;}
._f_c01193{width:17.088000pt;}
._11_c01193{width:19.765333pt;}
._13_c01193{width:24.389333pt;}
._18_c01193{width:233.176000pt;}
.fs3_c01193{font-size:42.666667pt;}
.fs2_c01193{font-size:56.000000pt;}
.fs1_c01193{font-size:64.000000pt;}
.fs0_c01193{font-size:72.000000pt;}
.y0_c01193{bottom:0.000000pt;}
.y1e_c01193{bottom:2.760000pt;}
.y1d_c01193{bottom:6.425206pt;}
.y1c_c01193{bottom:64.560000pt;}
.y1b_c01193{bottom:87.360000pt;}
.y1a_c01193{bottom:110.426667pt;}
.y19_c01193{bottom:132.960000pt;}
.y18_c01193{bottom:155.093333pt;}
.y17_c01193{bottom:177.893333pt;}
.y16_c01193{bottom:202.160000pt;}
.y15_c01193{bottom:222.293333pt;}
.y14_c01193{bottom:244.293333pt;}
.y13_c01193{bottom:266.426667pt;}
.y12_c01193{bottom:289.493333pt;}
.y11_c01193{bottom:309.893333pt;}
.y10_c01193{bottom:330.693333pt;}
.yf_c01193{bottom:353.360000pt;}
.ye_c01193{bottom:374.160000pt;}
.yd_c01193{bottom:395.360000pt;}
.yc_c01193{bottom:416.693333pt;}
.yb_c01193{bottom:438.560000pt;}
.ya_c01193{bottom:461.493333pt;}
.y9_c01193{bottom:481.893333pt;}
.y8_c01193{bottom:503.493333pt;}
.y7_c01193{bottom:525.893333pt;}
.y6_c01193{bottom:547.760000pt;}
.y5_c01193{bottom:568.560000pt;}
.y4_c01193{bottom:590.960000pt;}
.y3_c01193{bottom:613.226667pt;}
.y2_c01193{bottom:634.560000pt;}
.y1_c01193{bottom:657.093333pt;}
.h6_c01193{height:11.733399pt;}
.h7_c01193{height:38.937500pt;}
.h4_c01193{height:70.902344pt;}
.h3_c01193{height:81.031250pt;}
.h5_c01193{height:84.269531pt;}
.h2_c01193{height:91.160156pt;}
.h1_c01193{height:696.000000pt;}
.h0_c01193{height:696.266667pt;}
.w2_c01193{width:93.222667pt;}
.w0_c01193{width:477.133333pt;}
.w1_c01193{width:477.333333pt;}
.x0_c01193{left:0.000000pt;}
.x6_c01193{left:84.933333pt;}
.x7_c01193{left:93.600000pt;}
.x9_c01193{left:99.600000pt;}
.x8_c01193{left:100.533333pt;}
.x5_c01193{left:102.266667pt;}
.x4_c01193{left:103.200000pt;}
.x2_c01193{left:104.666667pt;}
.x3_c01193{left:105.600000pt;}
.xb_c01193{left:126.533333pt;}
.xc_c01193{left:195.734904pt;}
.x1_c01193{left:211.733333pt;}
.xa_c01193{left:263.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4e0a8d629fa8006d278c089f.woff2')format("woff");}.ff1_c01194{font-family:ff1_c01194;line-height:1.480469;font-style:normal;font-weight:normal;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_fce1cb52cf60059c7c1306a8.woff2')format("woff");}.ff2_c01194{font-family:ff2_c01194;line-height:1.568848;font-style:normal;font-weight:normal;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_04a89ca12155bad922c35de2.woff2')format("woff");}.ff3_c01194{font-family:ff3_c01194;line-height:1.575000;font-style:normal;font-weight:normal;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_a971e5cbc3d1921ef142d2e3.woff2')format("woff");}.ff4_c01194{font-family:ff4_c01194;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01194;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01194{font-family:ff5_c01194;line-height:1.219238;font-style: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);}
.v0_c01194{vertical-align:0.000000px;}
.ls1_c01194{letter-spacing:0.000000px;}
.ls0_c01194{letter-spacing:22.788000px;}
.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:-69.339000px;}
.ws0_c01194{word-spacing:-17.352000px;}
.ws2_c01194{word-spacing:0.000000px;}
._11_c01194{margin-left:-16.920000px;}
._14_c01194{margin-left:-15.048000px;}
._17_c01194{margin-left:-13.947000px;}
._10_c01194{margin-left:-12.240000px;}
._18_c01194{margin-left:-10.440000px;}
._f_c01194{margin-left:-9.072000px;}
._19_c01194{margin-left:-7.857000px;}
._a_c01194{margin-left:-6.552000px;}
._12_c01194{margin-left:-5.184000px;}
._c_c01194{margin-left:-3.168000px;}
._d_c01194{margin-left:-2.088000px;}
._9_c01194{width:1.728000px;}
._1_c01194{width:2.880000px;}
._5_c01194{width:4.104000px;}
._2_c01194{width:5.544000px;}
._3_c01194{width:6.624000px;}
._b_c01194{width:7.632000px;}
._7_c01194{width:8.712000px;}
._6_c01194{width:9.936000px;}
._0_c01194{width:11.160000px;}
._8_c01194{width:12.240000px;}
._e_c01194{width:14.256000px;}
._15_c01194{width:15.696000px;}
._13_c01194{width:20.112000px;}
._1a_c01194{width:80.424000px;}
._4_c01194{width:310.104000px;}
._16_c01194{width:1060.152000px;}
.fc2_c01194{color:transparent;}
.fc1_c01194{color:rgb(128,128,128);}
.fc0_c01194{color:rgb(0,0,0);}
.fs3_c01194{font-size:48.000000px;}
.fs1_c01194{font-size:63.000000px;}
.fs0_c01194{font-size:72.000000px;}
.fs2_c01194{font-size:87.000000px;}
.y0_c01194{bottom:0.000000px;}
.y1a_c01194{bottom:3.105000px;}
.y19_c01194{bottom:7.228363px;}
.y18_c01194{bottom:165.300000px;}
.y17_c01194{bottom:190.050000px;}
.y16_c01194{bottom:213.900000px;}
.y15_c01194{bottom:238.650000px;}
.y14_c01194{bottom:263.850000px;}
.y13_c01194{bottom:286.500000px;}
.y12_c01194{bottom:312.150000px;}
.y11_c01194{bottom:337.050000px;}
.y10_c01194{bottom:360.450000px;}
.yf_c01194{bottom:385.050000px;}
.ye_c01194{bottom:409.950000px;}
.yd_c01194{bottom:434.400000px;}
.yc_c01194{bottom:459.300000px;}
.yb_c01194{bottom:483.600000px;}
.ya_c01194{bottom:507.900000px;}
.y9_c01194{bottom:531.600000px;}
.y8_c01194{bottom:555.900000px;}
.y7_c01194{bottom:579.600000px;}
.y6_c01194{bottom:605.250000px;}
.y5_c01194{bottom:630.150000px;}
.y4_c01194{bottom:655.350000px;}
.y3_c01194{bottom:680.700000px;}
.y2_c01194{bottom:705.750000px;}
.y1_c01194{bottom:731.700000px;}
.h5_c01194{height:13.200074px;}
.h6_c01194{height:43.804688px;}
.h2_c01194{height:84.269531px;}
.h3_c01194{height:91.160156px;}
.h4_c01194{height:110.151855px;}
.h0_c01194{height:785.700000px;}
.h1_c01194{height:786.000000px;}
.w2_c01194{width:104.875500px;}
.w0_c01194{width:548.100000px;}
.w1_c01194{width:548.250000px;}
.x0_c01194{left:0.000000px;}
.x7_c01194{left:24.600000px;}
.x5_c01194{left:25.650000px;}
.x4_c01194{left:26.700000px;}
.x2_c01194{left:28.050000px;}
.x3_c01194{left:30.600000px;}
.x8_c01194{left:49.650000px;}
.x9_c01194{left:76.050000px;}
.xa_c01194{left:77.700000px;}
.x6_c01194{left:104.250000px;}
.x1_c01194{left:139.650000px;}
.xb_c01194{left:146.550000px;}
.xc_c01194{left:183.900000px;}
.xd_c01194{left:225.864258px;}
@media print{
.v0_c01194{vertical-align:0.000000pt;}
.ls1_c01194{letter-spacing:0.000000pt;}
.ls0_c01194{letter-spacing:20.256000pt;}
.ws1_c01194{word-spacing:-61.634667pt;}
.ws0_c01194{word-spacing:-15.424000pt;}
.ws2_c01194{word-spacing:0.000000pt;}
._11_c01194{margin-left:-15.040000pt;}
._14_c01194{margin-left:-13.376000pt;}
._17_c01194{margin-left:-12.397333pt;}
._10_c01194{margin-left:-10.880000pt;}
._18_c01194{margin-left:-9.280000pt;}
._f_c01194{margin-left:-8.064000pt;}
._19_c01194{margin-left:-6.984000pt;}
._a_c01194{margin-left:-5.824000pt;}
._12_c01194{margin-left:-4.608000pt;}
._c_c01194{margin-left:-2.816000pt;}
._d_c01194{margin-left:-1.856000pt;}
._9_c01194{width:1.536000pt;}
._1_c01194{width:2.560000pt;}
._5_c01194{width:3.648000pt;}
._2_c01194{width:4.928000pt;}
._3_c01194{width:5.888000pt;}
._b_c01194{width:6.784000pt;}
._7_c01194{width:7.744000pt;}
._6_c01194{width:8.832000pt;}
._0_c01194{width:9.920000pt;}
._8_c01194{width:10.880000pt;}
._e_c01194{width:12.672000pt;}
._15_c01194{width:13.952000pt;}
._13_c01194{width:17.877333pt;}
._1a_c01194{width:71.488000pt;}
._4_c01194{width:275.648000pt;}
._16_c01194{width:942.357333pt;}
.fs3_c01194{font-size:42.666667pt;}
.fs1_c01194{font-size:56.000000pt;}
.fs0_c01194{font-size:64.000000pt;}
.fs2_c01194{font-size:77.333333pt;}
.y0_c01194{bottom:0.000000pt;}
.y1a_c01194{bottom:2.760000pt;}
.y19_c01194{bottom:6.425212pt;}
.y18_c01194{bottom:146.933333pt;}
.y17_c01194{bottom:168.933333pt;}
.y16_c01194{bottom:190.133333pt;}
.y15_c01194{bottom:212.133333pt;}
.y14_c01194{bottom:234.533333pt;}
.y13_c01194{bottom:254.666667pt;}
.y12_c01194{bottom:277.466667pt;}
.y11_c01194{bottom:299.600000pt;}
.y10_c01194{bottom:320.400000pt;}
.yf_c01194{bottom:342.266667pt;}
.ye_c01194{bottom:364.400000pt;}
.yd_c01194{bottom:386.133333pt;}
.yc_c01194{bottom:408.266667pt;}
.yb_c01194{bottom:429.866667pt;}
.ya_c01194{bottom:451.466667pt;}
.y9_c01194{bottom:472.533333pt;}
.y8_c01194{bottom:494.133333pt;}
.y7_c01194{bottom:515.200000pt;}
.y6_c01194{bottom:538.000000pt;}
.y5_c01194{bottom:560.133333pt;}
.y4_c01194{bottom:582.533333pt;}
.y3_c01194{bottom:605.066667pt;}
.y2_c01194{bottom:627.333333pt;}
.y1_c01194{bottom:650.400000pt;}
.h5_c01194{height:11.733399pt;}
.h6_c01194{height:38.937500pt;}
.h2_c01194{height:74.906250pt;}
.h3_c01194{height:81.031250pt;}
.h4_c01194{height:97.912760pt;}
.h0_c01194{height:698.400000pt;}
.h1_c01194{height:698.666667pt;}
.w2_c01194{width:93.222667pt;}
.w0_c01194{width:487.200000pt;}
.w1_c01194{width:487.333333pt;}
.x0_c01194{left:0.000000pt;}
.x7_c01194{left:21.866667pt;}
.x5_c01194{left:22.800000pt;}
.x4_c01194{left:23.733333pt;}
.x2_c01194{left:24.933333pt;}
.x3_c01194{left:27.200000pt;}
.x8_c01194{left:44.133333pt;}
.x9_c01194{left:67.600000pt;}
.xa_c01194{left:69.066667pt;}
.x6_c01194{left:92.666667pt;}
.x1_c01194{left:124.133333pt;}
.xb_c01194{left:130.266667pt;}
.xc_c01194{left:163.466667pt;}
.xd_c01194{left:200.768229pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9fff02fa7abe038804771ddd.woff2')format("woff");}.ff1_c01195{font-family:ff1_c01195;line-height:1.480469;font-style:normal;font-weight:normal;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_9cb46ae2474d018887d2b130.woff2')format("woff");}.ff2_c01195{font-family:ff2_c01195;line-height:1.480469;font-style:normal;font-weight:normal;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_5276dab077c01543c61d091e.woff2')format("woff");}.ff3_c01195{font-family:ff3_c01195;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01195{font-family:ff4_c01195;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01195{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01195{vertical-align:0.000000px;}
.ls3_c01195{letter-spacing:-6.000000px;}
.ls2_c01195{letter-spacing:0.000000px;}
.ls1_c01195{letter-spacing:3.000000px;}
.ls0_c01195{letter-spacing:30.000000px;}
.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;}
}
.ws0_c01195{word-spacing:-20.967000px;}
.ws3_c01195{word-spacing:-18.906000px;}
.ws2_c01195{word-spacing:-17.352000px;}
.ws1_c01195{word-spacing:-11.352000px;}
.ws4_c01195{word-spacing:0.000000px;}
._8_c01195{margin-left:-39.759000px;}
._13_c01195{margin-left:-20.793000px;}
._17_c01195{margin-left:-19.053000px;}
._1a_c01195{margin-left:-15.225000px;}
._19_c01195{margin-left:-13.224000px;}
._9_c01195{margin-left:-11.310000px;}
._14_c01195{margin-left:-10.266000px;}
._b_c01195{margin-left:-9.222000px;}
._1b_c01195{margin-left:-7.629000px;}
._7_c01195{margin-left:-6.552000px;}
._f_c01195{margin-left:-5.046000px;}
._10_c01195{margin-left:-3.828000px;}
._11_c01195{margin-left:-2.349000px;}
._18_c01195{margin-left:-1.305000px;}
._c_c01195{width:1.218000px;}
._d_c01195{width:2.697000px;}
._15_c01195{width:4.350000px;}
._e_c01195{width:5.916000px;}
._1f_c01195{width:7.311000px;}
._1c_c01195{width:8.349000px;}
._a_c01195{width:9.483000px;}
._1_c01195{width:10.668000px;}
._12_c01195{width:12.468000px;}
._2_c01195{width:14.196000px;}
._3_c01195{width:15.288000px;}
._20_c01195{width:17.424000px;}
._5_c01195{width:18.840000px;}
._0_c01195{width:19.908000px;}
._6_c01195{width:21.588000px;}
._4_c01195{width:23.760000px;}
._16_c01195{width:28.392000px;}
._1d_c01195{width:53.418000px;}
._1e_c01195{width:389.052000px;}
.fc2_c01195{color:transparent;}
.fc1_c01195{color:rgb(128,128,128);}
.fc0_c01195{color:rgb(0,0,0);}
.fs4_c01195{font-size:48.000000px;}
.fs3_c01195{font-size:66.000000px;}
.fs2_c01195{font-size:72.000000px;}
.fs0_c01195{font-size:84.000000px;}
.fs1_c01195{font-size:87.000000px;}
.y0_c01195{bottom:0.000000px;}
.y1a_c01195{bottom:3.105000px;}
.y19_c01195{bottom:7.228357px;}
.y18_c01195{bottom:50.280000px;}
.y17_c01195{bottom:70.980000px;}
.y16_c01195{bottom:94.230000px;}
.y15_c01195{bottom:119.880000px;}
.y14_c01195{bottom:146.430000px;}
.y13_c01195{bottom:170.730000px;}
.y12_c01195{bottom:195.480000px;}
.y11_c01195{bottom:220.080000px;}
.y10_c01195{bottom:245.730000px;}
.yf_c01195{bottom:270.780000px;}
.ye_c01195{bottom:296.280000px;}
.yd_c01195{bottom:320.580000px;}
.yc_c01195{bottom:346.680000px;}
.yb_c01195{bottom:370.980000px;}
.ya_c01195{bottom:394.830000px;}
.y9_c01195{bottom:418.230000px;}
.y8_c01195{bottom:442.530000px;}
.y7_c01195{bottom:491.730000px;}
.y6_c01195{bottom:575.880000px;}
.y5_c01195{bottom:605.130000px;}
.y4_c01195{bottom:632.130000px;}
.y3_c01195{bottom:659.430000px;}
.y2_c01195{bottom:687.930000px;}
.y1_c01195{bottom:716.130000px;}
.h5_c01195{height:13.200074px;}
.h6_c01195{height:43.804688px;}
.h3_c01195{height:84.269531px;}
.h4_c01195{height:91.160156px;}
.h1_c01195{height:98.314453px;}
.h2_c01195{height:110.151855px;}
.h0_c01195{height:799.500000px;}
.w2_c01195{width:104.875500px;}
.w0_c01195{width:532.425000px;}
.w1_c01195{width:532.500000px;}
.x0_c01195{left:0.000000px;}
.xc_c01195{left:118.200000px;}
.xb_c01195{left:119.550000px;}
.x2_c01195{left:121.800000px;}
.x6_c01195{left:124.500000px;}
.x3_c01195{left:126.000000px;}
.x4_c01195{left:150.900000px;}
.x1_c01195{left:168.300000px;}
.x5_c01195{left:189.750000px;}
.xe_c01195{left:218.026749px;}
.xa_c01195{left:244.800000px;}
.x9_c01195{left:246.150000px;}
.x8_c01195{left:248.100000px;}
.x7_c01195{left:279.150000px;}
.xd_c01195{left:458.400000px;}
@media print{
.v0_c01195{vertical-align:0.000000pt;}
.ls3_c01195{letter-spacing:-5.333333pt;}
.ls2_c01195{letter-spacing:0.000000pt;}
.ls1_c01195{letter-spacing:2.666667pt;}
.ls0_c01195{letter-spacing:26.666667pt;}
.ws0_c01195{word-spacing:-18.637333pt;}
.ws3_c01195{word-spacing:-16.805333pt;}
.ws2_c01195{word-spacing:-15.424000pt;}
.ws1_c01195{word-spacing:-10.090667pt;}
.ws4_c01195{word-spacing:0.000000pt;}
._8_c01195{margin-left:-35.341333pt;}
._13_c01195{margin-left:-18.482667pt;}
._17_c01195{margin-left:-16.936000pt;}
._1a_c01195{margin-left:-13.533333pt;}
._19_c01195{margin-left:-11.754667pt;}
._9_c01195{margin-left:-10.053333pt;}
._14_c01195{margin-left:-9.125333pt;}
._b_c01195{margin-left:-8.197333pt;}
._1b_c01195{margin-left:-6.781333pt;}
._7_c01195{margin-left:-5.824000pt;}
._f_c01195{margin-left:-4.485333pt;}
._10_c01195{margin-left:-3.402667pt;}
._11_c01195{margin-left:-2.088000pt;}
._18_c01195{margin-left:-1.160000pt;}
._c_c01195{width:1.082667pt;}
._d_c01195{width:2.397333pt;}
._15_c01195{width:3.866667pt;}
._e_c01195{width:5.258667pt;}
._1f_c01195{width:6.498667pt;}
._1c_c01195{width:7.421333pt;}
._a_c01195{width:8.429333pt;}
._1_c01195{width:9.482667pt;}
._12_c01195{width:11.082667pt;}
._2_c01195{width:12.618667pt;}
._3_c01195{width:13.589333pt;}
._20_c01195{width:15.488000pt;}
._5_c01195{width:16.746667pt;}
._0_c01195{width:17.696000pt;}
._6_c01195{width:19.189333pt;}
._4_c01195{width:21.120000pt;}
._16_c01195{width:25.237333pt;}
._1d_c01195{width:47.482667pt;}
._1e_c01195{width:345.824000pt;}
.fs4_c01195{font-size:42.666667pt;}
.fs3_c01195{font-size:58.666667pt;}
.fs2_c01195{font-size:64.000000pt;}
.fs0_c01195{font-size:74.666667pt;}
.fs1_c01195{font-size:77.333333pt;}
.y0_c01195{bottom:0.000000pt;}
.y1a_c01195{bottom:2.760000pt;}
.y19_c01195{bottom:6.425206pt;}
.y18_c01195{bottom:44.693333pt;}
.y17_c01195{bottom:63.093333pt;}
.y16_c01195{bottom:83.760000pt;}
.y15_c01195{bottom:106.560000pt;}
.y14_c01195{bottom:130.160000pt;}
.y13_c01195{bottom:151.760000pt;}
.y12_c01195{bottom:173.760000pt;}
.y11_c01195{bottom:195.626667pt;}
.y10_c01195{bottom:218.426667pt;}
.yf_c01195{bottom:240.693333pt;}
.ye_c01195{bottom:263.360000pt;}
.yd_c01195{bottom:284.960000pt;}
.yc_c01195{bottom:308.160000pt;}
.yb_c01195{bottom:329.760000pt;}
.ya_c01195{bottom:350.960000pt;}
.y9_c01195{bottom:371.760000pt;}
.y8_c01195{bottom:393.360000pt;}
.y7_c01195{bottom:437.093333pt;}
.y6_c01195{bottom:511.893333pt;}
.y5_c01195{bottom:537.893333pt;}
.y4_c01195{bottom:561.893333pt;}
.y3_c01195{bottom:586.160000pt;}
.y2_c01195{bottom:611.493333pt;}
.y1_c01195{bottom:636.560000pt;}
.h5_c01195{height:11.733399pt;}
.h6_c01195{height:38.937500pt;}
.h3_c01195{height:74.906250pt;}
.h4_c01195{height:81.031250pt;}
.h1_c01195{height:87.390625pt;}
.h2_c01195{height:97.912760pt;}
.h0_c01195{height:710.666667pt;}
.w2_c01195{width:93.222667pt;}
.w0_c01195{width:473.266667pt;}
.w1_c01195{width:473.333333pt;}
.x0_c01195{left:0.000000pt;}
.xc_c01195{left:105.066667pt;}
.xb_c01195{left:106.266667pt;}
.x2_c01195{left:108.266667pt;}
.x6_c01195{left:110.666667pt;}
.x3_c01195{left:112.000000pt;}
.x4_c01195{left:134.133333pt;}
.x1_c01195{left:149.600000pt;}
.x5_c01195{left:168.666667pt;}
.xe_c01195{left:193.801554pt;}
.xa_c01195{left:217.600000pt;}
.x9_c01195{left:218.800000pt;}
.x8_c01195{left:220.533333pt;}
.x7_c01195{left:248.133333pt;}
.xd_c01195{left:407.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cb3ed26b8893be959af1d924.woff2')format("woff");}.ff1_c01196{font-family:ff1_c01196;line-height:1.284180;font-style:normal;font-weight:normal;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_e930673fa4e8e5d7d26085f5.woff2')format("woff");}.ff2_c01196{font-family:ff2_c01196;line-height:1.568848;font-style:normal;font-weight:normal;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_62d16e48166b261bb1e15065.woff2')format("woff");}.ff3_c01196{font-family:ff3_c01196;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01196{font-family:ff4_c01196;line-height:1.219238;font-style: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);}
.v0_c01196{vertical-align:0.000000px;}
.ls2_c01196{letter-spacing:-9.000000px;}
.ls1_c01196{letter-spacing:0.000000px;}
.ls0_c01196{letter-spacing:13.971000px;}
.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;}
}
.ws0_c01196{word-spacing:-7.629000px;}
.ws2_c01196{word-spacing:0.000000px;}
.ws1_c01196{word-spacing:3.480000px;}
._11_c01196{margin-left:-11.736000px;}
._8_c01196{margin-left:-7.560000px;}
._12_c01196{margin-left:-4.188000px;}
._2_c01196{margin-left:-2.688000px;}
._f_c01196{margin-left:-1.236000px;}
._3_c01196{width:1.596000px;}
._9_c01196{width:2.760000px;}
._5_c01196{width:3.948000px;}
._a_c01196{width:5.172000px;}
._1_c01196{width:6.468000px;}
._4_c01196{width:7.812000px;}
._c_c01196{width:9.591000px;}
._0_c01196{width:10.752000px;}
._13_c01196{width:11.883000px;}
._d_c01196{width:13.149000px;}
._14_c01196{width:14.580000px;}
._7_c01196{width:15.624000px;}
._b_c01196{width:19.173000px;}
._10_c01196{width:20.316000px;}
._e_c01196{width:22.992000px;}
._15_c01196{width:50.004000px;}
._6_c01196{width:262.668000px;}
.fc2_c01196{color:transparent;}
.fc1_c01196{color:rgb(128,128,128);}
.fc0_c01196{color:rgb(0,0,0);}
.fs4_c01196{font-size:48.000000px;}
.fs3_c01196{font-size:60.000000px;}
.fs2_c01196{font-size:69.000000px;}
.fs1_c01196{font-size:72.000000px;}
.fs0_c01196{font-size:84.000000px;}
.y0_c01196{bottom:0.000000px;}
.y1f_c01196{bottom:3.105000px;}
.y1e_c01196{bottom:7.228369px;}
.y1d_c01196{bottom:63.120000px;}
.y1c_c01196{bottom:92.070000px;}
.y1b_c01196{bottom:117.120000px;}
.y1a_c01196{bottom:142.320000px;}
.y19_c01196{bottom:169.020000px;}
.y18_c01196{bottom:193.320000px;}
.y17_c01196{bottom:218.070000px;}
.y16_c01196{bottom:242.970000px;}
.y15_c01196{bottom:268.920000px;}
.y14_c01196{bottom:293.670000px;}
.y13_c01196{bottom:318.270000px;}
.y12_c01196{bottom:342.870000px;}
.y11_c01196{bottom:367.470000px;}
.y10_c01196{bottom:391.170000px;}
.yf_c01196{bottom:417.420000px;}
.ye_c01196{bottom:440.820000px;}
.yd_c01196{bottom:466.020000px;}
.yc_c01196{bottom:490.320000px;}
.yb_c01196{bottom:514.620000px;}
.ya_c01196{bottom:538.020000px;}
.y9_c01196{bottom:563.670000px;}
.y8_c01196{bottom:588.570000px;}
.y7_c01196{bottom:613.620000px;}
.y6_c01196{bottom:638.520000px;}
.y5_c01196{bottom:663.420000px;}
.y4_c01196{bottom:689.520000px;}
.y3_c01196{bottom:712.470000px;}
.y2_c01196{bottom:737.820000px;}
.y1_c01196{bottom:763.320000px;}
.h5_c01196{height:13.200073px;}
.h6_c01196{height:43.804688px;}
.h4_c01196{height:75.966797px;}
.h2_c01196{height:82.400391px;}
.h3_c01196{height:91.160156px;}
.h0_c01196{height:796.200000px;}
.h1_c01196{height:796.500000px;}
.w2_c01196{width:104.875500px;}
.w0_c01196{width:548.925000px;}
.w1_c01196{width:549.000000px;}
.x0_c01196{left:0.000000px;}
.xd_c01196{left:18.600000px;}
.x2_c01196{left:19.950000px;}
.x3_c01196{left:21.300000px;}
.x4_c01196{left:22.500000px;}
.x5_c01196{left:24.900000px;}
.x6_c01196{left:26.250000px;}
.x7_c01196{left:27.300000px;}
.x8_c01196{left:28.350000px;}
.x9_c01196{left:29.400000px;}
.xa_c01196{left:31.050000px;}
.xb_c01196{left:32.100000px;}
.xc_c01196{left:33.750000px;}
.x1_c01196{left:133.200000px;}
.xf_c01196{left:226.276749px;}
.xe_c01196{left:375.600000px;}
@media print{
.v0_c01196{vertical-align:0.000000pt;}
.ls2_c01196{letter-spacing:-8.000000pt;}
.ls1_c01196{letter-spacing:0.000000pt;}
.ls0_c01196{letter-spacing:12.418667pt;}
.ws0_c01196{word-spacing:-6.781333pt;}
.ws2_c01196{word-spacing:0.000000pt;}
.ws1_c01196{word-spacing:3.093333pt;}
._11_c01196{margin-left:-10.432000pt;}
._8_c01196{margin-left:-6.720000pt;}
._12_c01196{margin-left:-3.722667pt;}
._2_c01196{margin-left:-2.389333pt;}
._f_c01196{margin-left:-1.098667pt;}
._3_c01196{width:1.418667pt;}
._9_c01196{width:2.453333pt;}
._5_c01196{width:3.509333pt;}
._a_c01196{width:4.597333pt;}
._1_c01196{width:5.749333pt;}
._4_c01196{width:6.944000pt;}
._c_c01196{width:8.525333pt;}
._0_c01196{width:9.557333pt;}
._13_c01196{width:10.562667pt;}
._d_c01196{width:11.688000pt;}
._14_c01196{width:12.960000pt;}
._7_c01196{width:13.888000pt;}
._b_c01196{width:17.042667pt;}
._10_c01196{width:18.058667pt;}
._e_c01196{width:20.437333pt;}
._15_c01196{width:44.448000pt;}
._6_c01196{width:233.482667pt;}
.fs4_c01196{font-size:42.666667pt;}
.fs3_c01196{font-size:53.333333pt;}
.fs2_c01196{font-size:61.333333pt;}
.fs1_c01196{font-size:64.000000pt;}
.fs0_c01196{font-size:74.666667pt;}
.y0_c01196{bottom:0.000000pt;}
.y1f_c01196{bottom:2.760000pt;}
.y1e_c01196{bottom:6.425217pt;}
.y1d_c01196{bottom:56.106667pt;}
.y1c_c01196{bottom:81.840000pt;}
.y1b_c01196{bottom:104.106667pt;}
.y1a_c01196{bottom:126.506667pt;}
.y19_c01196{bottom:150.240000pt;}
.y18_c01196{bottom:171.840000pt;}
.y17_c01196{bottom:193.840000pt;}
.y16_c01196{bottom:215.973333pt;}
.y15_c01196{bottom:239.040000pt;}
.y14_c01196{bottom:261.040000pt;}
.y13_c01196{bottom:282.906667pt;}
.y12_c01196{bottom:304.773333pt;}
.y11_c01196{bottom:326.640000pt;}
.y10_c01196{bottom:347.706667pt;}
.yf_c01196{bottom:371.040000pt;}
.ye_c01196{bottom:391.840000pt;}
.yd_c01196{bottom:414.240000pt;}
.yc_c01196{bottom:435.840000pt;}
.yb_c01196{bottom:457.440000pt;}
.ya_c01196{bottom:478.240000pt;}
.y9_c01196{bottom:501.040000pt;}
.y8_c01196{bottom:523.173333pt;}
.y7_c01196{bottom:545.440000pt;}
.y6_c01196{bottom:567.573333pt;}
.y5_c01196{bottom:589.706667pt;}
.y4_c01196{bottom:612.906667pt;}
.y3_c01196{bottom:633.306667pt;}
.y2_c01196{bottom:655.840000pt;}
.y1_c01196{bottom:678.506667pt;}
.h5_c01196{height:11.733399pt;}
.h6_c01196{height:38.937500pt;}
.h4_c01196{height:67.526042pt;}
.h2_c01196{height:73.244792pt;}
.h3_c01196{height:81.031250pt;}
.h0_c01196{height:707.733333pt;}
.h1_c01196{height:708.000000pt;}
.w2_c01196{width:93.222667pt;}
.w0_c01196{width:487.933333pt;}
.w1_c01196{width:488.000000pt;}
.x0_c01196{left:0.000000pt;}
.xd_c01196{left:16.533333pt;}
.x2_c01196{left:17.733333pt;}
.x3_c01196{left:18.933333pt;}
.x4_c01196{left:20.000000pt;}
.x5_c01196{left:22.133333pt;}
.x6_c01196{left:23.333333pt;}
.x7_c01196{left:24.266667pt;}
.x8_c01196{left:25.200000pt;}
.x9_c01196{left:26.133333pt;}
.xa_c01196{left:27.600000pt;}
.xb_c01196{left:28.533333pt;}
.xc_c01196{left:30.000000pt;}
.x1_c01196{left:118.400000pt;}
.xf_c01196{left:201.134888pt;}
.xe_c01196{left:333.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6940726b8be61f535719f06d.woff2')format("woff");}.ff1_c01197{font-family:ff1_c01197;line-height:1.480469;font-style:normal;font-weight:normal;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_9be793298607e277b1fe6057.woff2')format("woff");}.ff2_c01197{font-family:ff2_c01197;line-height:1.568848;font-style:normal;font-weight:normal;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_6e619d3f3e3c989dbc2c6f87.woff2')format("woff");}.ff3_c01197{font-family:ff3_c01197;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01197{font-family:ff4_c01197;line-height:1.219238;font-style: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;}
.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:-17.352000px;}
.ws1_c01197{word-spacing:0.000000px;}
._1a_c01197{margin-left:-18.927000px;}
._14_c01197{margin-left:-15.039000px;}
._6_c01197{margin-left:-13.224000px;}
._5_c01197{margin-left:-10.092000px;}
._4_c01197{margin-left:-8.613000px;}
._1_c01197{margin-left:-6.960000px;}
._0_c01197{margin-left:-5.568000px;}
._2_c01197{margin-left:-3.654000px;}
._12_c01197{margin-left:-2.457000px;}
._10_c01197{margin-left:-1.152000px;}
._11_c01197{width:1.188000px;}
._d_c01197{width:2.394000px;}
._8_c01197{width:3.600000px;}
._9_c01197{width:5.067000px;}
._7_c01197{width:6.480000px;}
._f_c01197{width:7.587000px;}
._3_c01197{width:8.613000px;}
._e_c01197{width:9.936000px;}
._b_c01197{width:11.232000px;}
._a_c01197{width:12.654000px;}
._13_c01197{width:14.058000px;}
._c_c01197{width:15.489000px;}
._1b_c01197{width:20.448000px;}
._17_c01197{width:21.690000px;}
._15_c01197{width:22.860000px;}
._1c_c01197{width:29.754000px;}
._19_c01197{width:31.311000px;}
._18_c01197{width:32.445000px;}
._16_c01197{width:38.475000px;}
.fc2_c01197{color:transparent;}
.fc1_c01197{color:rgb(128,128,128);}
.fc0_c01197{color:rgb(0,0,0);}
.fs3_c01197{font-size:48.000000px;}
.fs2_c01197{font-size:63.000000px;}
.fs1_c01197{font-size:72.000000px;}
.fs0_c01197{font-size:87.000000px;}
.y0_c01197{bottom:0.000000px;}
.y1f_c01197{bottom:3.105000px;}
.y1e_c01197{bottom:7.228357px;}
.y1d_c01197{bottom:69.480000px;}
.y1c_c01197{bottom:88.380000px;}
.y1b_c01197{bottom:113.430000px;}
.y1a_c01197{bottom:139.830000px;}
.y19_c01197{bottom:164.730000px;}
.y18_c01197{bottom:189.780000px;}
.y17_c01197{bottom:215.430000px;}
.y16_c01197{bottom:240.630000px;}
.y15_c01197{bottom:265.680000px;}
.y14_c01197{bottom:291.030000px;}
.y13_c01197{bottom:316.530000px;}
.y12_c01197{bottom:340.530000px;}
.y11_c01197{bottom:366.180000px;}
.y10_c01197{bottom:390.480000px;}
.yf_c01197{bottom:413.130000px;}
.ye_c01197{bottom:437.430000px;}
.yd_c01197{bottom:461.130000px;}
.yc_c01197{bottom:485.280000px;}
.yb_c01197{bottom:510.030000px;}
.ya_c01197{bottom:535.230000px;}
.y9_c01197{bottom:560.280000px;}
.y8_c01197{bottom:585.180000px;}
.y7_c01197{bottom:609.930000px;}
.y6_c01197{bottom:635.130000px;}
.y5_c01197{bottom:659.130000px;}
.y4_c01197{bottom:684.480000px;}
.y3_c01197{bottom:708.780000px;}
.y2_c01197{bottom:733.830000px;}
.y1_c01197{bottom:760.680000px;}
.h4_c01197{height:13.200074px;}
.h5_c01197{height:43.804688px;}
.h3_c01197{height:91.160156px;}
.h2_c01197{height:101.825684px;}
.h1_c01197{height:789.750000px;}
.h0_c01197{height:790.050000px;}
.w2_c01197{width:104.875500px;}
.w1_c01197{width:548.250000px;}
.w0_c01197{width:548.400000px;}
.x0_c01197{left:0.000000px;}
.xa_c01197{left:127.350000px;}
.x8_c01197{left:129.600000px;}
.x9_c01197{left:130.650000px;}
.x6_c01197{left:131.700000px;}
.x7_c01197{left:132.900000px;}
.x5_c01197{left:134.400000px;}
.x4_c01197{left:135.450000px;}
.x3_c01197{left:137.100000px;}
.x2_c01197{left:140.700000px;}
.xc_c01197{left:226.014267px;}
.x1_c01197{left:257.400000px;}
.xb_c01197{left:465.450000px;}
@media print{
.v0_c01197{vertical-align:0.000000pt;}
.ls0_c01197{letter-spacing:0.000000pt;}
.ws0_c01197{word-spacing:-15.424000pt;}
.ws1_c01197{word-spacing:0.000000pt;}
._1a_c01197{margin-left:-16.824000pt;}
._14_c01197{margin-left:-13.368000pt;}
._6_c01197{margin-left:-11.754667pt;}
._5_c01197{margin-left:-8.970667pt;}
._4_c01197{margin-left:-7.656000pt;}
._1_c01197{margin-left:-6.186667pt;}
._0_c01197{margin-left:-4.949333pt;}
._2_c01197{margin-left:-3.248000pt;}
._12_c01197{margin-left:-2.184000pt;}
._10_c01197{margin-left:-1.024000pt;}
._11_c01197{width:1.056000pt;}
._d_c01197{width:2.128000pt;}
._8_c01197{width:3.200000pt;}
._9_c01197{width:4.504000pt;}
._7_c01197{width:5.760000pt;}
._f_c01197{width:6.744000pt;}
._3_c01197{width:7.656000pt;}
._e_c01197{width:8.832000pt;}
._b_c01197{width:9.984000pt;}
._a_c01197{width:11.248000pt;}
._13_c01197{width:12.496000pt;}
._c_c01197{width:13.768000pt;}
._1b_c01197{width:18.176000pt;}
._17_c01197{width:19.280000pt;}
._15_c01197{width:20.320000pt;}
._1c_c01197{width:26.448000pt;}
._19_c01197{width:27.832000pt;}
._18_c01197{width:28.840000pt;}
._16_c01197{width:34.200000pt;}
.fs3_c01197{font-size:42.666667pt;}
.fs2_c01197{font-size:56.000000pt;}
.fs1_c01197{font-size:64.000000pt;}
.fs0_c01197{font-size:77.333333pt;}
.y0_c01197{bottom:0.000000pt;}
.y1f_c01197{bottom:2.760000pt;}
.y1e_c01197{bottom:6.425206pt;}
.y1d_c01197{bottom:61.760000pt;}
.y1c_c01197{bottom:78.560000pt;}
.y1b_c01197{bottom:100.826667pt;}
.y1a_c01197{bottom:124.293333pt;}
.y19_c01197{bottom:146.426667pt;}
.y18_c01197{bottom:168.693333pt;}
.y17_c01197{bottom:191.493333pt;}
.y16_c01197{bottom:213.893333pt;}
.y15_c01197{bottom:236.160000pt;}
.y14_c01197{bottom:258.693333pt;}
.y13_c01197{bottom:281.360000pt;}
.y12_c01197{bottom:302.693333pt;}
.y11_c01197{bottom:325.493333pt;}
.y10_c01197{bottom:347.093333pt;}
.yf_c01197{bottom:367.226667pt;}
.ye_c01197{bottom:388.826667pt;}
.yd_c01197{bottom:409.893333pt;}
.yc_c01197{bottom:431.360000pt;}
.yb_c01197{bottom:453.360000pt;}
.ya_c01197{bottom:475.760000pt;}
.y9_c01197{bottom:498.026667pt;}
.y8_c01197{bottom:520.160000pt;}
.y7_c01197{bottom:542.160000pt;}
.y6_c01197{bottom:564.560000pt;}
.y5_c01197{bottom:585.893333pt;}
.y4_c01197{bottom:608.426667pt;}
.y3_c01197{bottom:630.026667pt;}
.y2_c01197{bottom:652.293333pt;}
.y1_c01197{bottom:676.160000pt;}
.h4_c01197{height:11.733399pt;}
.h5_c01197{height:38.937500pt;}
.h3_c01197{height:81.031250pt;}
.h2_c01197{height:90.511719pt;}
.h1_c01197{height:702.000000pt;}
.h0_c01197{height:702.266667pt;}
.w2_c01197{width:93.222667pt;}
.w1_c01197{width:487.333333pt;}
.w0_c01197{width:487.466667pt;}
.x0_c01197{left:0.000000pt;}
.xa_c01197{left:113.200000pt;}
.x8_c01197{left:115.200000pt;}
.x9_c01197{left:116.133333pt;}
.x6_c01197{left:117.066667pt;}
.x7_c01197{left:118.133333pt;}
.x5_c01197{left:119.466667pt;}
.x4_c01197{left:120.400000pt;}
.x3_c01197{left:121.866667pt;}
.x2_c01197{left:125.066667pt;}
.xc_c01197{left:200.901571pt;}
.x1_c01197{left:228.800000pt;}
.xb_c01197{left:413.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ef10071301c4bbd1963a46c1.woff2')format("woff");}.ff1_c01198{font-family:ff1_c01198;line-height:1.480469;font-style:normal;font-weight:normal;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_b2f10cb88b443f5ca4f3893a.woff2')format("woff");}.ff2_c01198{font-family:ff2_c01198;line-height:1.568848;font-style:normal;font-weight:normal;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_4169d65dcdf15fa5a682aa88.woff2')format("woff");}.ff3_c01198{font-family:ff3_c01198;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01198;src:url('chunks/assets/font_5f36d16ff2e9f7c5e0c4f32d.woff2')format("woff");}.ff4_c01198{font-family:ff4_c01198;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01198;src:url('chunks/assets/font_51bac2eb3bf28cfb6a5d1b0a.woff2')format("woff");}.ff5_c01198{font-family:ff5_c01198;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01198;src:url('chunks/assets/font_445ac0dd6b44bfec6def533a.woff2')format("woff");}.ff6_c01198{font-family:ff6_c01198;line-height:1.284668;font-style:normal;font-weight: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_c01198;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c01198{font-family:ff7_c01198;line-height:1.219238;font-style: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;}
.ls3_c01198{letter-spacing:0.000000px;}
.ls1_c01198{letter-spacing:3.000000px;}
.ls4_c01198{letter-spacing:6.000000px;}
.ls2_c01198{letter-spacing:12.000000px;}
.ls0_c01198{letter-spacing:283.248000px;}
.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:-35.250000px;}
.ws2_c01198{word-spacing:-33.192000px;}
.ws3_c01198{word-spacing:-30.051000px;}
.ws4_c01198{word-spacing:-17.352000px;}
.ws5_c01198{word-spacing:0.000000px;}
.ws1_c01198{word-spacing:0.456000px;}
._6_c01198{margin-left:-15.876000px;}
._5_c01198{margin-left:-14.616000px;}
._4_c01198{margin-left:-13.440000px;}
._19_c01198{margin-left:-11.592000px;}
._2_c01198{margin-left:-10.248000px;}
._1a_c01198{margin-left:-8.940000px;}
._3_c01198{margin-left:-7.560000px;}
._17_c01198{margin-left:-6.048000px;}
._1b_c01198{margin-left:-5.004000px;}
._13_c01198{margin-left:-3.984000px;}
._e_c01198{margin-left:-2.316000px;}
._c_c01198{margin-left:-1.152000px;}
._7_c01198{width:1.164000px;}
._8_c01198{width:2.412000px;}
._1_c01198{width:3.612000px;}
._0_c01198{width:5.544000px;}
._b_c01198{width:6.840000px;}
._a_c01198{width:8.352000px;}
._d_c01198{width:10.140000px;}
._12_c01198{width:11.496000px;}
._16_c01198{width:13.560000px;}
._9_c01198{width:15.096000px;}
._11_c01198{width:18.480000px;}
._f_c01198{width:20.184000px;}
._15_c01198{width:21.336000px;}
._10_c01198{width:25.344000px;}
._14_c01198{width:26.424000px;}
._18_c01198{width:49.992000px;}
._1c_c01198{width:191.937000px;}
.fc2_c01198{color:transparent;}
.fc1_c01198{color:rgb(128,128,128);}
.fc0_c01198{color:rgb(0,0,0);}
.fs3_c01198{font-size:24.000000px;}
.fs7_c01198{font-size:48.000000px;}
.fs4_c01198{font-size:57.000000px;}
.fs5_c01198{font-size:63.000000px;}
.fs1_c01198{font-size:72.000000px;}
.fs6_c01198{font-size:81.000000px;}
.fs0_c01198{font-size:84.000000px;}
.fs2_c01198{font-size:93.000000px;}
.y0_c01198{bottom:0.000000px;}
.y20_c01198{bottom:3.105000px;}
.y1f_c01198{bottom:7.228363px;}
.y1d_c01198{bottom:47.250000px;}
.y1c_c01198{bottom:74.550000px;}
.y1b_c01198{bottom:100.650000px;}
.y1a_c01198{bottom:125.850000px;}
.y19_c01198{bottom:151.500000px;}
.y18_c01198{bottom:175.800000px;}
.y17_c01198{bottom:201.900000px;}
.y16_c01198{bottom:226.200000px;}
.y15_c01198{bottom:251.400000px;}
.y14_c01198{bottom:276.150000px;}
.y13_c01198{bottom:302.400000px;}
.y12_c01198{bottom:326.700000px;}
.y11_c01198{bottom:350.700000px;}
.y10_c01198{bottom:374.400000px;}
.y1e_c01198{bottom:383.850000px;}
.yf_c01198{bottom:399.900000px;}
.ye_c01198{bottom:423.900000px;}
.yd_c01198{bottom:448.500000px;}
.yc_c01198{bottom:472.950000px;}
.yb_c01198{bottom:498.600000px;}
.ya_c01198{bottom:521.400000px;}
.y9_c01198{bottom:545.100000px;}
.y8_c01198{bottom:570.450000px;}
.y7_c01198{bottom:595.350000px;}
.y6_c01198{bottom:619.050000px;}
.y5_c01198{bottom:645.000000px;}
.y4_c01198{bottom:668.700000px;}
.y3_c01198{bottom:694.200000px;}
.y2_c01198{bottom:717.900000px;}
.y1_c01198{bottom:743.100000px;}
.h5_c01198{height:13.200074px;}
.h6_c01198{height:43.804688px;}
.h4_c01198{height:79.497070px;}
.h3_c01198{height:91.160156px;}
.h2_c01198{height:98.314453px;}
.h0_c01198{height:784.350000px;}
.h1_c01198{height:784.500000px;}
.w2_c01198{width:104.875500px;}
.w0_c01198{width:529.200000px;}
.w1_c01198{width:529.500000px;}
.x0_c01198{left:0.000000px;}
.x2_c01198{left:23.850000px;}
.x3_c01198{left:25.200000px;}
.x4_c01198{left:26.250000px;}
.x5_c01198{left:27.600000px;}
.x6_c01198{left:28.650000px;}
.x7_c01198{left:56.250000px;}
.x1_c01198{left:143.850000px;}
.xa_c01198{left:216.414230px;}
.x8_c01198{left:280.800000px;}
.x9_c01198{left:456.300000px;}
@media print{
.v0_c01198{vertical-align:0.000000pt;}
.ls3_c01198{letter-spacing:0.000000pt;}
.ls1_c01198{letter-spacing:2.666667pt;}
.ls4_c01198{letter-spacing:5.333333pt;}
.ls2_c01198{letter-spacing:10.666667pt;}
.ls0_c01198{letter-spacing:251.776000pt;}
.ws0_c01198{word-spacing:-31.333333pt;}
.ws2_c01198{word-spacing:-29.504000pt;}
.ws3_c01198{word-spacing:-26.712000pt;}
.ws4_c01198{word-spacing:-15.424000pt;}
.ws5_c01198{word-spacing:0.000000pt;}
.ws1_c01198{word-spacing:0.405333pt;}
._6_c01198{margin-left:-14.112000pt;}
._5_c01198{margin-left:-12.992000pt;}
._4_c01198{margin-left:-11.946667pt;}
._19_c01198{margin-left:-10.304000pt;}
._2_c01198{margin-left:-9.109333pt;}
._1a_c01198{margin-left:-7.946667pt;}
._3_c01198{margin-left:-6.720000pt;}
._17_c01198{margin-left:-5.376000pt;}
._1b_c01198{margin-left:-4.448000pt;}
._13_c01198{margin-left:-3.541333pt;}
._e_c01198{margin-left:-2.058667pt;}
._c_c01198{margin-left:-1.024000pt;}
._7_c01198{width:1.034667pt;}
._8_c01198{width:2.144000pt;}
._1_c01198{width:3.210667pt;}
._0_c01198{width:4.928000pt;}
._b_c01198{width:6.080000pt;}
._a_c01198{width:7.424000pt;}
._d_c01198{width:9.013333pt;}
._12_c01198{width:10.218667pt;}
._16_c01198{width:12.053333pt;}
._9_c01198{width:13.418667pt;}
._11_c01198{width:16.426667pt;}
._f_c01198{width:17.941333pt;}
._15_c01198{width:18.965333pt;}
._10_c01198{width:22.528000pt;}
._14_c01198{width:23.488000pt;}
._18_c01198{width:44.437333pt;}
._1c_c01198{width:170.610667pt;}
.fs3_c01198{font-size:21.333333pt;}
.fs7_c01198{font-size:42.666667pt;}
.fs4_c01198{font-size:50.666667pt;}
.fs5_c01198{font-size:56.000000pt;}
.fs1_c01198{font-size:64.000000pt;}
.fs6_c01198{font-size:72.000000pt;}
.fs0_c01198{font-size:74.666667pt;}
.fs2_c01198{font-size:82.666667pt;}
.y0_c01198{bottom:0.000000pt;}
.y20_c01198{bottom:2.760000pt;}
.y1f_c01198{bottom:6.425212pt;}
.y1d_c01198{bottom:42.000000pt;}
.y1c_c01198{bottom:66.266667pt;}
.y1b_c01198{bottom:89.466667pt;}
.y1a_c01198{bottom:111.866667pt;}
.y19_c01198{bottom:134.666667pt;}
.y18_c01198{bottom:156.266667pt;}
.y17_c01198{bottom:179.466667pt;}
.y16_c01198{bottom:201.066667pt;}
.y15_c01198{bottom:223.466667pt;}
.y14_c01198{bottom:245.466667pt;}
.y13_c01198{bottom:268.800000pt;}
.y12_c01198{bottom:290.400000pt;}
.y11_c01198{bottom:311.733333pt;}
.y10_c01198{bottom:332.800000pt;}
.y1e_c01198{bottom:341.200000pt;}
.yf_c01198{bottom:355.466667pt;}
.ye_c01198{bottom:376.800000pt;}
.yd_c01198{bottom:398.666667pt;}
.yc_c01198{bottom:420.400000pt;}
.yb_c01198{bottom:443.200000pt;}
.ya_c01198{bottom:463.466667pt;}
.y9_c01198{bottom:484.533333pt;}
.y8_c01198{bottom:507.066667pt;}
.y7_c01198{bottom:529.200000pt;}
.y6_c01198{bottom:550.266667pt;}
.y5_c01198{bottom:573.333333pt;}
.y4_c01198{bottom:594.400000pt;}
.y3_c01198{bottom:617.066667pt;}
.y2_c01198{bottom:638.133333pt;}
.y1_c01198{bottom:660.533333pt;}
.h5_c01198{height:11.733399pt;}
.h6_c01198{height:38.937500pt;}
.h4_c01198{height:70.664062pt;}
.h3_c01198{height:81.031250pt;}
.h2_c01198{height:87.390625pt;}
.h0_c01198{height:697.200000pt;}
.h1_c01198{height:697.333333pt;}
.w2_c01198{width:93.222667pt;}
.w0_c01198{width:470.400000pt;}
.w1_c01198{width:470.666667pt;}
.x0_c01198{left:0.000000pt;}
.x2_c01198{left:21.200000pt;}
.x3_c01198{left:22.400000pt;}
.x4_c01198{left:23.333333pt;}
.x5_c01198{left:24.533333pt;}
.x6_c01198{left:25.466667pt;}
.x7_c01198{left:50.000000pt;}
.x1_c01198{left:127.866667pt;}
.xa_c01198{left:192.368205pt;}
.x8_c01198{left:249.600000pt;}
.x9_c01198{left:405.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_21e899f738615a5faaf533f6.woff2')format("woff");}.ff1_c01199{font-family:ff1_c01199;line-height:1.480469;font-style:normal;font-weight:normal;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_c3461a624090ff034f26b5b8.woff2')format("woff");}.ff2_c01199{font-family:ff2_c01199;line-height:1.568848;font-style:normal;font-weight:normal;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_c87f18c5024e4f620ba70a1a.woff2')format("woff");}.ff3_c01199{font-family:ff3_c01199;line-height:1.284668;font-style:normal;font-weight:normal;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_75863693d43c4c560b4adf51.woff2')format("woff");}.ff4_c01199{font-family:ff4_c01199;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01199;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01199{font-family:ff5_c01199;line-height:1.219238;font-style: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;}
.ls0_c01199{letter-spacing:4.248000px;}
.ls2_c01199{letter-spacing:6.000000px;}
.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:-30.051000px;}
.ws1_c01199{word-spacing:-17.352000px;}
.ws3_c01199{word-spacing:0.000000px;}
.ws2_c01199{word-spacing:0.594000px;}
._12_c01199{margin-left:-21.240000px;}
._17_c01199{margin-left:-16.632000px;}
._e_c01199{margin-left:-14.184000px;}
._c_c01199{margin-left:-11.091000px;}
._14_c01199{margin-left:-8.280000px;}
._13_c01199{margin-left:-6.477000px;}
._2_c01199{margin-left:-5.133000px;}
._1_c01199{margin-left:-3.132000px;}
._0_c01199{margin-left:-1.914000px;}
._11_c01199{width:1.014000px;}
._4_c01199{width:2.016000px;}
._7_c01199{width:3.456000px;}
._3_c01199{width:4.680000px;}
._6_c01199{width:5.868000px;}
._5_c01199{width:7.704000px;}
._b_c01199{width:9.156000px;}
._9_c01199{width:10.440000px;}
._8_c01199{width:12.600000px;}
._10_c01199{width:14.760000px;}
._1d_c01199{width:15.954000px;}
._f_c01199{width:18.360000px;}
._1b_c01199{width:19.686000px;}
._a_c01199{width:22.248000px;}
._15_c01199{width:31.449000px;}
._19_c01199{width:60.192000px;}
._16_c01199{width:149.784000px;}
._d_c01199{width:170.424000px;}
._18_c01199{width:212.715000px;}
._1c_c01199{width:225.504000px;}
._1a_c01199{width:259.395000px;}
.fc2_c01199{color:transparent;}
.fc1_c01199{color:rgb(128,128,128);}
.fc0_c01199{color:rgb(0,0,0);}
.fs6_c01199{font-size:48.000000px;}
.fs2_c01199{font-size:57.000000px;}
.fs3_c01199{font-size:63.000000px;}
.fs4_c01199{font-size:66.000000px;}
.fs5_c01199{font-size:69.000000px;}
.fs1_c01199{font-size:72.000000px;}
.fs0_c01199{font-size:87.000000px;}
.y0_c01199{bottom:0.000000px;}
.y1e_c01199{bottom:3.105000px;}
.y1d_c01199{bottom:7.228371px;}
.y1c_c01199{bottom:69.165000px;}
.y1b_c01199{bottom:94.815000px;}
.y1a_c01199{bottom:120.465000px;}
.y19_c01199{bottom:144.915000px;}
.y18_c01199{bottom:171.465000px;}
.y17_c01199{bottom:194.415000px;}
.y16_c01199{bottom:222.165000px;}
.y15_c01199{bottom:245.115000px;}
.y14_c01199{bottom:270.765000px;}
.y13_c01199{bottom:297.465000px;}
.y12_c01199{bottom:321.765000px;}
.y11_c01199{bottom:347.265000px;}
.y10_c01199{bottom:371.565000px;}
.yf_c01199{bottom:393.915000px;}
.ye_c01199{bottom:418.215000px;}
.yd_c01199{bottom:441.765000px;}
.yc_c01199{bottom:466.065000px;}
.yb_c01199{bottom:490.365000px;}
.ya_c01199{bottom:515.415000px;}
.y9_c01199{bottom:540.315000px;}
.y8_c01199{bottom:564.615000px;}
.y7_c01199{bottom:589.965000px;}
.y6_c01199{bottom:614.265000px;}
.y5_c01199{bottom:639.315000px;}
.y4_c01199{bottom:663.915000px;}
.y3_c01199{bottom:688.815000px;}
.y2_c01199{bottom:713.865000px;}
.y1_c01199{bottom:739.215000px;}
.h4_c01199{height:13.200074px;}
.h5_c01199{height:43.804688px;}
.h3_c01199{height:91.160156px;}
.h2_c01199{height:110.151855px;}
.h0_c01199{height:794.625000px;}
.h1_c01199{height:795.000000px;}
.w2_c01199{width:104.875500px;}
.w0_c01199{width:517.875000px;}
.w1_c01199{width:518.250000px;}
.x0_c01199{left:0.000000px;}
.x5_c01199{left:32.100000px;}
.xa_c01199{left:34.050000px;}
.x8_c01199{left:83.400000px;}
.x7_c01199{left:106.950000px;}
.x3_c01199{left:109.350000px;}
.x4_c01199{left:111.000000px;}
.x9_c01199{left:112.050000px;}
.x6_c01199{left:113.400000px;}
.x2_c01199{left:114.450000px;}
.xb_c01199{left:210.751740px;}
.x1_c01199{left:231.150000px;}
@media print{
.v0_c01199{vertical-align:0.000000pt;}
.ls1_c01199{letter-spacing:0.000000pt;}
.ls0_c01199{letter-spacing:3.776000pt;}
.ls2_c01199{letter-spacing:5.333333pt;}
.ws0_c01199{word-spacing:-26.712000pt;}
.ws1_c01199{word-spacing:-15.424000pt;}
.ws3_c01199{word-spacing:0.000000pt;}
.ws2_c01199{word-spacing:0.528000pt;}
._12_c01199{margin-left:-18.880000pt;}
._17_c01199{margin-left:-14.784000pt;}
._e_c01199{margin-left:-12.608000pt;}
._c_c01199{margin-left:-9.858667pt;}
._14_c01199{margin-left:-7.360000pt;}
._13_c01199{margin-left:-5.757333pt;}
._2_c01199{margin-left:-4.562667pt;}
._1_c01199{margin-left:-2.784000pt;}
._0_c01199{margin-left:-1.701333pt;}
._11_c01199{width:0.901333pt;}
._4_c01199{width:1.792000pt;}
._7_c01199{width:3.072000pt;}
._3_c01199{width:4.160000pt;}
._6_c01199{width:5.216000pt;}
._5_c01199{width:6.848000pt;}
._b_c01199{width:8.138667pt;}
._9_c01199{width:9.280000pt;}
._8_c01199{width:11.200000pt;}
._10_c01199{width:13.120000pt;}
._1d_c01199{width:14.181333pt;}
._f_c01199{width:16.320000pt;}
._1b_c01199{width:17.498667pt;}
._a_c01199{width:19.776000pt;}
._15_c01199{width:27.954667pt;}
._19_c01199{width:53.504000pt;}
._16_c01199{width:133.141333pt;}
._d_c01199{width:151.488000pt;}
._18_c01199{width:189.080000pt;}
._1c_c01199{width:200.448000pt;}
._1a_c01199{width:230.573333pt;}
.fs6_c01199{font-size:42.666667pt;}
.fs2_c01199{font-size:50.666667pt;}
.fs3_c01199{font-size:56.000000pt;}
.fs4_c01199{font-size:58.666667pt;}
.fs5_c01199{font-size:61.333333pt;}
.fs1_c01199{font-size:64.000000pt;}
.fs0_c01199{font-size:77.333333pt;}
.y0_c01199{bottom:0.000000pt;}
.y1e_c01199{bottom:2.760000pt;}
.y1d_c01199{bottom:6.425219pt;}
.y1c_c01199{bottom:61.480000pt;}
.y1b_c01199{bottom:84.280000pt;}
.y1a_c01199{bottom:107.080000pt;}
.y19_c01199{bottom:128.813333pt;}
.y18_c01199{bottom:152.413333pt;}
.y17_c01199{bottom:172.813333pt;}
.y16_c01199{bottom:197.480000pt;}
.y15_c01199{bottom:217.880000pt;}
.y14_c01199{bottom:240.680000pt;}
.y13_c01199{bottom:264.413333pt;}
.y12_c01199{bottom:286.013333pt;}
.y11_c01199{bottom:308.680000pt;}
.y10_c01199{bottom:330.280000pt;}
.yf_c01199{bottom:350.146667pt;}
.ye_c01199{bottom:371.746667pt;}
.yd_c01199{bottom:392.680000pt;}
.yc_c01199{bottom:414.280000pt;}
.yb_c01199{bottom:435.880000pt;}
.ya_c01199{bottom:458.146667pt;}
.y9_c01199{bottom:480.280000pt;}
.y8_c01199{bottom:501.880000pt;}
.y7_c01199{bottom:524.413333pt;}
.y6_c01199{bottom:546.013333pt;}
.y5_c01199{bottom:568.280000pt;}
.y4_c01199{bottom:590.146667pt;}
.y3_c01199{bottom:612.280000pt;}
.y2_c01199{bottom:634.546667pt;}
.y1_c01199{bottom:657.080000pt;}
.h4_c01199{height:11.733399pt;}
.h5_c01199{height:38.937500pt;}
.h3_c01199{height:81.031250pt;}
.h2_c01199{height:97.912760pt;}
.h0_c01199{height:706.333333pt;}
.h1_c01199{height:706.666667pt;}
.w2_c01199{width:93.222667pt;}
.w0_c01199{width:460.333333pt;}
.w1_c01199{width:460.666667pt;}
.x0_c01199{left:0.000000pt;}
.x5_c01199{left:28.533333pt;}
.xa_c01199{left:30.266667pt;}
.x8_c01199{left:74.133333pt;}
.x7_c01199{left:95.066667pt;}
.x3_c01199{left:97.200000pt;}
.x4_c01199{left:98.666667pt;}
.x9_c01199{left:99.600000pt;}
.x6_c01199{left:100.800000pt;}
.x2_c01199{left:101.733333pt;}
.xb_c01199{left:187.334880pt;}
.x1_c01199{left:205.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3511d8821f4aa4619d0da683.woff2')format("woff");}.ff1_c01200{font-family:ff1_c01200;line-height:1.480469;font-style:normal;font-weight:normal;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_afc7fb3c2af2e17dd897d1b5.woff2')format("woff");}.ff2_c01200{font-family:ff2_c01200;line-height:1.284180;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c01200{font-family:ff3_c01200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01200;src:url('chunks/assets/font_6fd61371ddb5989576c421db.woff2')format("woff");}.ff4_c01200{font-family:ff4_c01200;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01200;src:url('chunks/assets/font_449ca25847b1ed75afe54027.woff2')format("woff");}.ff5_c01200{font-family:ff5_c01200;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01200;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01200{font-family:ff6_c01200;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c01200{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,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);}
.v1_c01200{vertical-align:-11.400000px;}
.v0_c01200{vertical-align:0.000000px;}
.ls0_c01200{letter-spacing:-6.000000px;}
.ls1_c01200{letter-spacing:0.000000px;}
.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:-25.974000px;}
.ws1_c01200{word-spacing:-17.352000px;}
.ws2_c01200{word-spacing:0.000000px;}
._12_c01200{margin-left:-13.848000px;}
._6_c01200{margin-left:-11.781000px;}
._13_c01200{margin-left:-8.664000px;}
._2_c01200{margin-left:-6.888000px;}
._4_c01200{margin-left:-3.816000px;}
._10_c01200{margin-left:-2.784000px;}
._9_c01200{margin-left:-1.152000px;}
._b_c01200{width:1.332000px;}
._3_c01200{width:2.772000px;}
._8_c01200{width:3.936000px;}
._1_c01200{width:4.992000px;}
._5_c01200{width:6.432000px;}
._a_c01200{width:7.464000px;}
._0_c01200{width:8.544000px;}
._e_c01200{width:10.044000px;}
._11_c01200{width:11.772000px;}
._d_c01200{width:13.128000px;}
._c_c01200{width:14.328000px;}
._f_c01200{width:19.812000px;}
._14_c01200{width:22.464000px;}
._7_c01200{width:30.888000px;}
._15_c01200{width:32.688000px;}
._16_c01200{width:269.448000px;}
.fc2_c01200{color:transparent;}
.fc1_c01200{color:rgb(128,128,128);}
.fc0_c01200{color:rgb(0,0,0);}
.fs6_c01200{font-size:48.000000px;}
.fs4_c01200{font-size:72.000000px;}
.fs5_c01200{font-size:78.000000px;}
.fs2_c01200{font-size:81.000000px;}
.fs1_c01200{font-size:84.000000px;}
.fs0_c01200{font-size:96.000000px;}
.fs3_c01200{font-size:99.000000px;}
.y0_c01200{bottom:0.000000px;}
.y1f_c01200{bottom:3.105000px;}
.y1e_c01200{bottom:7.228371px;}
.y1d_c01200{bottom:39.615000px;}
.y1c_c01200{bottom:61.815000px;}
.y1b_c01200{bottom:91.815000px;}
.y1a_c01200{bottom:116.865000px;}
.y19_c01200{bottom:142.515000px;}
.y18_c01200{bottom:167.865000px;}
.y17_c01200{bottom:192.165000px;}
.y16_c01200{bottom:217.665000px;}
.y15_c01200{bottom:242.115000px;}
.y14_c01200{bottom:267.315000px;}
.y13_c01200{bottom:292.065000px;}
.y12_c01200{bottom:316.215000px;}
.y11_c01200{bottom:338.565000px;}
.y10_c01200{bottom:362.865000px;}
.yf_c01200{bottom:389.115000px;}
.ye_c01200{bottom:412.515000px;}
.yd_c01200{bottom:437.115000px;}
.yc_c01200{bottom:461.715000px;}
.yb_c01200{bottom:485.715000px;}
.ya_c01200{bottom:510.615000px;}
.y9_c01200{bottom:534.015000px;}
.y8_c01200{bottom:558.315000px;}
.y7_c01200{bottom:582.915000px;}
.y6_c01200{bottom:607.215000px;}
.y5_c01200{bottom:632.115000px;}
.y4_c01200{bottom:656.565000px;}
.y3_c01200{bottom:680.715000px;}
.y2_c01200{bottom:706.515000px;}
.y1_c01200{bottom:731.415000px;}
.h6_c01200{height:13.200074px;}
.h7_c01200{height:43.804688px;}
.h5_c01200{height:78.609375px;}
.h4_c01200{height:91.160156px;}
.h2_c01200{height:112.359375px;}
.h3_c01200{height:125.345215px;}
.h0_c01200{height:786.525000px;}
.h1_c01200{height:786.750000px;}
.w2_c01200{width:104.875500px;}
.w0_c01200{width:517.875000px;}
.w1_c01200{width:518.250000px;}
.x0_c01200{left:0.000000px;}
.x3_c01200{left:21.300000px;}
.x4_c01200{left:23.250000px;}
.x5_c01200{left:25.200000px;}
.x7_c01200{left:26.250000px;}
.x6_c01200{left:27.300000px;}
.x8_c01200{left:28.350000px;}
.x1_c01200{left:137.400000px;}
.xa_c01200{left:210.751740px;}
.x9_c01200{left:265.200000px;}
.x2_c01200{left:371.250000px;}
@media print{
.v1_c01200{vertical-align:-10.133333pt;}
.v0_c01200{vertical-align:0.000000pt;}
.ls0_c01200{letter-spacing:-5.333333pt;}
.ls1_c01200{letter-spacing:0.000000pt;}
.ws0_c01200{word-spacing:-23.088000pt;}
.ws1_c01200{word-spacing:-15.424000pt;}
.ws2_c01200{word-spacing:0.000000pt;}
._12_c01200{margin-left:-12.309333pt;}
._6_c01200{margin-left:-10.472000pt;}
._13_c01200{margin-left:-7.701333pt;}
._2_c01200{margin-left:-6.122667pt;}
._4_c01200{margin-left:-3.392000pt;}
._10_c01200{margin-left:-2.474667pt;}
._9_c01200{margin-left:-1.024000pt;}
._b_c01200{width:1.184000pt;}
._3_c01200{width:2.464000pt;}
._8_c01200{width:3.498667pt;}
._1_c01200{width:4.437333pt;}
._5_c01200{width:5.717333pt;}
._a_c01200{width:6.634667pt;}
._0_c01200{width:7.594667pt;}
._e_c01200{width:8.928000pt;}
._11_c01200{width:10.464000pt;}
._d_c01200{width:11.669333pt;}
._c_c01200{width:12.736000pt;}
._f_c01200{width:17.610667pt;}
._14_c01200{width:19.968000pt;}
._7_c01200{width:27.456000pt;}
._15_c01200{width:29.056000pt;}
._16_c01200{width:239.509333pt;}
.fs6_c01200{font-size:42.666667pt;}
.fs4_c01200{font-size:64.000000pt;}
.fs5_c01200{font-size:69.333333pt;}
.fs2_c01200{font-size:72.000000pt;}
.fs1_c01200{font-size:74.666667pt;}
.fs0_c01200{font-size:85.333333pt;}
.fs3_c01200{font-size:88.000000pt;}
.y0_c01200{bottom:0.000000pt;}
.y1f_c01200{bottom:2.760000pt;}
.y1e_c01200{bottom:6.425219pt;}
.y1d_c01200{bottom:35.213333pt;}
.y1c_c01200{bottom:54.946667pt;}
.y1b_c01200{bottom:81.613333pt;}
.y1a_c01200{bottom:103.880000pt;}
.y19_c01200{bottom:126.680000pt;}
.y18_c01200{bottom:149.213333pt;}
.y17_c01200{bottom:170.813333pt;}
.y16_c01200{bottom:193.480000pt;}
.y15_c01200{bottom:215.213333pt;}
.y14_c01200{bottom:237.613333pt;}
.y13_c01200{bottom:259.613333pt;}
.y12_c01200{bottom:281.080000pt;}
.y11_c01200{bottom:300.946667pt;}
.y10_c01200{bottom:322.546667pt;}
.yf_c01200{bottom:345.880000pt;}
.ye_c01200{bottom:366.680000pt;}
.yd_c01200{bottom:388.546667pt;}
.yc_c01200{bottom:410.413333pt;}
.yb_c01200{bottom:431.746667pt;}
.ya_c01200{bottom:453.880000pt;}
.y9_c01200{bottom:474.680000pt;}
.y8_c01200{bottom:496.280000pt;}
.y7_c01200{bottom:518.146667pt;}
.y6_c01200{bottom:539.746667pt;}
.y5_c01200{bottom:561.880000pt;}
.y4_c01200{bottom:583.613333pt;}
.y3_c01200{bottom:605.080000pt;}
.y2_c01200{bottom:628.013333pt;}
.y1_c01200{bottom:650.146667pt;}
.h6_c01200{height:11.733399pt;}
.h7_c01200{height:38.937500pt;}
.h5_c01200{height:69.875000pt;}
.h4_c01200{height:81.031250pt;}
.h2_c01200{height:99.875000pt;}
.h3_c01200{height:111.417969pt;}
.h0_c01200{height:699.133333pt;}
.h1_c01200{height:699.333333pt;}
.w2_c01200{width:93.222667pt;}
.w0_c01200{width:460.333333pt;}
.w1_c01200{width:460.666667pt;}
.x0_c01200{left:0.000000pt;}
.x3_c01200{left:18.933333pt;}
.x4_c01200{left:20.666667pt;}
.x5_c01200{left:22.400000pt;}
.x7_c01200{left:23.333333pt;}
.x6_c01200{left:24.266667pt;}
.x8_c01200{left:25.200000pt;}
.x1_c01200{left:122.133333pt;}
.xa_c01200{left:187.334880pt;}
.x9_c01200{left:235.733333pt;}
.x2_c01200{left:330.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_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_2914e0fc851e8bd916c73e2f.woff2')format("woff");}.ff1_c01201{font-family:ff1_c01201;line-height:1.480469;font-style:normal;font-weight:normal;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_f0ce833c0cbd73f616565c6f.woff2')format("woff");}.ff2_c01201{font-family:ff2_c01201;line-height:1.568848;font-style:normal;font-weight:normal;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_e2d5b734ec1c122d1eb9095d.woff2')format("woff");}.ff3_c01201{font-family:ff3_c01201;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01201{font-family:ff4_c01201;line-height:1.219238;font-style: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;}
.ls1_c01201{letter-spacing:0.000000px;}
.ls0_c01201{letter-spacing:41.388000px;}
.ls2_c01201{letter-spacing:54.000000px;}
.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:-15.183000px;}
.ws1_c01201{word-spacing:0.000000px;}
._18_c01201{margin-left:-10.008000px;}
._16_c01201{margin-left:-7.032000px;}
._9_c01201{margin-left:-5.976000px;}
._17_c01201{margin-left:-4.680000px;}
._14_c01201{margin-left:-3.528000px;}
._13_c01201{margin-left:-2.520000px;}
._10_c01201{margin-left:-1.440000px;}
._6_c01201{width:1.944000px;}
._7_c01201{width:3.240000px;}
._1_c01201{width:4.464000px;}
._8_c01201{width:5.472000px;}
._4_c01201{width:6.624000px;}
._3_c01201{width:8.064000px;}
._2_c01201{width:9.144000px;}
._f_c01201{width:10.440000px;}
._0_c01201{width:11.736000px;}
._5_c01201{width:12.816000px;}
._15_c01201{width:13.824000px;}
._11_c01201{width:14.976000px;}
._19_c01201{width:16.056000px;}
._12_c01201{width:21.384000px;}
._a_c01201{width:24.480000px;}
._c_c01201{width:25.776000px;}
._b_c01201{width:27.288000px;}
._e_c01201{width:28.512000px;}
._d_c01201{width:41.112000px;}
.fc2_c01201{color:transparent;}
.fc1_c01201{color:rgb(128,128,128);}
.fc0_c01201{color:rgb(0,0,0);}
.fs4_c01201{font-size:48.000000px;}
.fs1_c01201{font-size:63.000000px;}
.fs2_c01201{font-size:69.000000px;}
.fs0_c01201{font-size:72.000000px;}
.fs3_c01201{font-size:87.000000px;}
.y0_c01201{bottom:0.000000px;}
.y1f_c01201{bottom:3.105000px;}
.y1e_c01201{bottom:7.228369px;}
.y1d_c01201{bottom:37.020000px;}
.y1c_c01201{bottom:57.420000px;}
.y1b_c01201{bottom:83.370000px;}
.y1a_c01201{bottom:107.970000px;}
.y19_c01201{bottom:133.320000px;}
.y18_c01201{bottom:158.220000px;}
.y17_c01201{bottom:183.270000px;}
.y16_c01201{bottom:208.620000px;}
.y15_c01201{bottom:233.520000px;}
.y14_c01201{bottom:257.820000px;}
.y13_c01201{bottom:283.770000px;}
.y12_c01201{bottom:308.520000px;}
.y11_c01201{bottom:333.420000px;}
.y10_c01201{bottom:356.970000px;}
.yf_c01201{bottom:381.420000px;}
.ye_c01201{bottom:404.670000px;}
.yd_c01201{bottom:428.670000px;}
.yc_c01201{bottom:452.970000px;}
.yb_c01201{bottom:476.820000px;}
.ya_c01201{bottom:501.420000px;}
.y9_c01201{bottom:526.170000px;}
.y8_c01201{bottom:551.370000px;}
.y7_c01201{bottom:575.820000px;}
.y6_c01201{bottom:600.120000px;}
.y5_c01201{bottom:624.270000px;}
.y4_c01201{bottom:650.370000px;}
.y3_c01201{bottom:674.670000px;}
.y2_c01201{bottom:699.570000px;}
.y1_c01201{bottom:724.170000px;}
.h5_c01201{height:13.200073px;}
.h6_c01201{height:43.804688px;}
.h4_c01201{height:79.765137px;}
.h2_c01201{height:91.160156px;}
.h3_c01201{height:110.151855px;}
.h1_c01201{height:792.000000px;}
.h0_c01201{height:792.150000px;}
.w2_c01201{width:104.875500px;}
.w0_c01201{width:507.600000px;}
.w1_c01201{width:507.750000px;}
.x0_c01201{left:0.000000px;}
.x3_c01201{left:97.200000px;}
.x2_c01201{left:98.550000px;}
.x4_c01201{left:99.900000px;}
.x5_c01201{left:100.950000px;}
.x7_c01201{left:205.614258px;}
.x1_c01201{left:216.000000px;}
.x6_c01201{left:422.850000px;}
@media print{
.v0_c01201{vertical-align:0.000000pt;}
.ls1_c01201{letter-spacing:0.000000pt;}
.ls0_c01201{letter-spacing:36.789333pt;}
.ls2_c01201{letter-spacing:48.000000pt;}
.ws0_c01201{word-spacing:-13.496000pt;}
.ws1_c01201{word-spacing:0.000000pt;}
._18_c01201{margin-left:-8.896000pt;}
._16_c01201{margin-left:-6.250667pt;}
._9_c01201{margin-left:-5.312000pt;}
._17_c01201{margin-left:-4.160000pt;}
._14_c01201{margin-left:-3.136000pt;}
._13_c01201{margin-left:-2.240000pt;}
._10_c01201{margin-left:-1.280000pt;}
._6_c01201{width:1.728000pt;}
._7_c01201{width:2.880000pt;}
._1_c01201{width:3.968000pt;}
._8_c01201{width:4.864000pt;}
._4_c01201{width:5.888000pt;}
._3_c01201{width:7.168000pt;}
._2_c01201{width:8.128000pt;}
._f_c01201{width:9.280000pt;}
._0_c01201{width:10.432000pt;}
._5_c01201{width:11.392000pt;}
._15_c01201{width:12.288000pt;}
._11_c01201{width:13.312000pt;}
._19_c01201{width:14.272000pt;}
._12_c01201{width:19.008000pt;}
._a_c01201{width:21.760000pt;}
._c_c01201{width:22.912000pt;}
._b_c01201{width:24.256000pt;}
._e_c01201{width:25.344000pt;}
._d_c01201{width:36.544000pt;}
.fs4_c01201{font-size:42.666667pt;}
.fs1_c01201{font-size:56.000000pt;}
.fs2_c01201{font-size:61.333333pt;}
.fs0_c01201{font-size:64.000000pt;}
.fs3_c01201{font-size:77.333333pt;}
.y0_c01201{bottom:0.000000pt;}
.y1f_c01201{bottom:2.760000pt;}
.y1e_c01201{bottom:6.425217pt;}
.y1d_c01201{bottom:32.906667pt;}
.y1c_c01201{bottom:51.040000pt;}
.y1b_c01201{bottom:74.106667pt;}
.y1a_c01201{bottom:95.973333pt;}
.y19_c01201{bottom:118.506667pt;}
.y18_c01201{bottom:140.640000pt;}
.y17_c01201{bottom:162.906667pt;}
.y16_c01201{bottom:185.440000pt;}
.y15_c01201{bottom:207.573333pt;}
.y14_c01201{bottom:229.173333pt;}
.y13_c01201{bottom:252.240000pt;}
.y12_c01201{bottom:274.240000pt;}
.y11_c01201{bottom:296.373333pt;}
.y10_c01201{bottom:317.306667pt;}
.yf_c01201{bottom:339.040000pt;}
.ye_c01201{bottom:359.706667pt;}
.yd_c01201{bottom:381.040000pt;}
.yc_c01201{bottom:402.640000pt;}
.yb_c01201{bottom:423.840000pt;}
.ya_c01201{bottom:445.706667pt;}
.y9_c01201{bottom:467.706667pt;}
.y8_c01201{bottom:490.106667pt;}
.y7_c01201{bottom:511.840000pt;}
.y6_c01201{bottom:533.440000pt;}
.y5_c01201{bottom:554.906667pt;}
.y4_c01201{bottom:578.106667pt;}
.y3_c01201{bottom:599.706667pt;}
.y2_c01201{bottom:621.840000pt;}
.y1_c01201{bottom:643.706667pt;}
.h5_c01201{height:11.733399pt;}
.h6_c01201{height:38.937500pt;}
.h4_c01201{height:70.902344pt;}
.h2_c01201{height:81.031250pt;}
.h3_c01201{height:97.912760pt;}
.h1_c01201{height:704.000000pt;}
.h0_c01201{height:704.133333pt;}
.w2_c01201{width:93.222667pt;}
.w0_c01201{width:451.200000pt;}
.w1_c01201{width:451.333333pt;}
.x0_c01201{left:0.000000pt;}
.x3_c01201{left:86.400000pt;}
.x2_c01201{left:87.600000pt;}
.x4_c01201{left:88.800000pt;}
.x5_c01201{left:89.733333pt;}
.x7_c01201{left:182.768229pt;}
.x1_c01201{left:192.000000pt;}
.x6_c01201{left:375.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b19dbcc34a3c291c54ec7880.woff2')format("woff");}.ff1_c01202{font-family:ff1_c01202;line-height:1.284180;font-style:normal;font-weight:normal;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_c375f6efec1cf69d7b48c57c.woff2')format("woff");}.ff2_c01202{font-family:ff2_c01202;line-height:1.284668;font-style:normal;font-weight:normal;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_87988135611828c05b5cc0be.woff2')format("woff");}.ff3_c01202{font-family:ff3_c01202;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01202;src:url('chunks/assets/font_9e32210ce66f1f367885abcc.woff2')format("woff");}.ff4_c01202{font-family:ff4_c01202;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01202;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01202{font-family:ff5_c01202;line-height:1.219238;font-style: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;}
.ls3_c01202{letter-spacing:6.000000px;}
.ls0_c01202{letter-spacing:7.800000px;}
.ls1_c01202{letter-spacing:31.704000px;}
.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;}
}
.ws1_c01202{word-spacing:-15.696000px;}
.ws2_c01202{word-spacing:0.000000px;}
.ws0_c01202{word-spacing:41.184000px;}
._22_c01202{margin-left:-15.192000px;}
._8_c01202{margin-left:-12.681000px;}
._21_c01202{margin-left:-9.855000px;}
._13_c01202{margin-left:-8.619000px;}
._3_c01202{margin-left:-7.224000px;}
._d_c01202{margin-left:-5.904000px;}
._5_c01202{margin-left:-4.788000px;}
._14_c01202{margin-left:-3.732000px;}
._c_c01202{margin-left:-2.592000px;}
._a_c01202{margin-left:-1.296000px;}
._9_c01202{width:1.512000px;}
._e_c01202{width:2.520000px;}
._6_c01202{width:3.528000px;}
._1_c01202{width:5.040000px;}
._2_c01202{width:6.804000px;}
._b_c01202{width:7.836000px;}
._0_c01202{width:9.408000px;}
._4_c01202{width:10.752000px;}
._1b_c01202{width:12.936000px;}
._f_c01202{width:14.628000px;}
._10_c01202{width:16.092000px;}
._23_c01202{width:18.297000px;}
._1e_c01202{width:19.476000px;}
._12_c01202{width:20.772000px;}
._1f_c01202{width:23.256000px;}
._1d_c01202{width:26.244000px;}
._20_c01202{width:28.080000px;}
._1c_c01202{width:29.952000px;}
._11_c01202{width:31.284000px;}
._24_c01202{width:40.950000px;}
._19_c01202{width:64.080000px;}
._17_c01202{width:86.184000px;}
._18_c01202{width:126.648000px;}
._16_c01202{width:164.808000px;}
._7_c01202{width:263.226000px;}
._15_c01202{width:264.732000px;}
._1a_c01202{width:267.336000px;}
._25_c01202{width:320.055000px;}
.fc2_c01202{color:transparent;}
.fc1_c01202{color:rgb(128,128,128);}
.fc0_c01202{color:rgb(0,0,0);}
.fs5_c01202{font-size:48.000000px;}
.fs3_c01202{font-size:57.000000px;}
.fs4_c01202{font-size:63.000000px;}
.fs2_c01202{font-size:72.000000px;}
.fs1_c01202{font-size:81.000000px;}
.fs0_c01202{font-size:84.000000px;}
.y0_c01202{bottom:0.000000px;}
.y1f_c01202{bottom:3.105000px;}
.y1e_c01202{bottom:7.228369px;}
.y1d_c01202{bottom:53.670000px;}
.y1c_c01202{bottom:79.920000px;}
.y1b_c01202{bottom:105.270000px;}
.y1a_c01202{bottom:129.570000px;}
.y19_c01202{bottom:155.220000px;}
.y18_c01202{bottom:178.170000px;}
.y17_c01202{bottom:204.870000px;}
.y16_c01202{bottom:228.720000px;}
.y15_c01202{bottom:254.520000px;}
.y14_c01202{bottom:278.670000px;}
.y13_c01202{bottom:303.420000px;}
.y12_c01202{bottom:328.020000px;}
.y11_c01202{bottom:350.370000px;}
.y10_c01202{bottom:376.320000px;}
.yf_c01202{bottom:399.570000px;}
.ye_c01202{bottom:424.170000px;}
.yd_c01202{bottom:448.170000px;}
.yc_c01202{bottom:471.870000px;}
.yb_c01202{bottom:498.120000px;}
.ya_c01202{bottom:520.770000px;}
.y9_c01202{bottom:544.770000px;}
.y8_c01202{bottom:569.670000px;}
.y7_c01202{bottom:593.670000px;}
.y6_c01202{bottom:619.020000px;}
.y5_c01202{bottom:644.970000px;}
.y4_c01202{bottom:666.870000px;}
.y3_c01202{bottom:691.470000px;}
.y2_c01202{bottom:716.220000px;}
.y1_c01202{bottom:741.870000px;}
.h4_c01202{height:13.200073px;}
.h5_c01202{height:43.804688px;}
.h3_c01202{height:79.765137px;}
.h1_c01202{height:82.441406px;}
.h2_c01202{height:91.160156px;}
.h0_c01202{height:780.000000px;}
.w2_c01202{width:104.875500px;}
.w0_c01202{width:539.700000px;}
.w1_c01202{width:540.000000px;}
.x0_c01202{left:0.000000px;}
.x2_c01202{left:30.600000px;}
.x3_c01202{left:32.400000px;}
.x4_c01202{left:34.650000px;}
.x5_c01202{left:35.700000px;}
.x6_c01202{left:36.750000px;}
.x7_c01202{left:103.500000px;}
.x1_c01202{left:151.950000px;}
.x9_c01202{left:221.664230px;}
.x8_c01202{left:227.850000px;}
@media print{
.v0_c01202{vertical-align:0.000000pt;}
.ls2_c01202{letter-spacing:0.000000pt;}
.ls3_c01202{letter-spacing:5.333333pt;}
.ls0_c01202{letter-spacing:6.933333pt;}
.ls1_c01202{letter-spacing:28.181333pt;}
.ws1_c01202{word-spacing:-13.952000pt;}
.ws2_c01202{word-spacing:0.000000pt;}
.ws0_c01202{word-spacing:36.608000pt;}
._22_c01202{margin-left:-13.504000pt;}
._8_c01202{margin-left:-11.272000pt;}
._21_c01202{margin-left:-8.760000pt;}
._13_c01202{margin-left:-7.661333pt;}
._3_c01202{margin-left:-6.421333pt;}
._d_c01202{margin-left:-5.248000pt;}
._5_c01202{margin-left:-4.256000pt;}
._14_c01202{margin-left:-3.317333pt;}
._c_c01202{margin-left:-2.304000pt;}
._a_c01202{margin-left:-1.152000pt;}
._9_c01202{width:1.344000pt;}
._e_c01202{width:2.240000pt;}
._6_c01202{width:3.136000pt;}
._1_c01202{width:4.480000pt;}
._2_c01202{width:6.048000pt;}
._b_c01202{width:6.965333pt;}
._0_c01202{width:8.362667pt;}
._4_c01202{width:9.557333pt;}
._1b_c01202{width:11.498667pt;}
._f_c01202{width:13.002667pt;}
._10_c01202{width:14.304000pt;}
._23_c01202{width:16.264000pt;}
._1e_c01202{width:17.312000pt;}
._12_c01202{width:18.464000pt;}
._1f_c01202{width:20.672000pt;}
._1d_c01202{width:23.328000pt;}
._20_c01202{width:24.960000pt;}
._1c_c01202{width:26.624000pt;}
._11_c01202{width:27.808000pt;}
._24_c01202{width:36.400000pt;}
._19_c01202{width:56.960000pt;}
._17_c01202{width:76.608000pt;}
._18_c01202{width:112.576000pt;}
._16_c01202{width:146.496000pt;}
._7_c01202{width:233.978667pt;}
._15_c01202{width:235.317333pt;}
._1a_c01202{width:237.632000pt;}
._25_c01202{width:284.493333pt;}
.fs5_c01202{font-size:42.666667pt;}
.fs3_c01202{font-size:50.666667pt;}
.fs4_c01202{font-size:56.000000pt;}
.fs2_c01202{font-size:64.000000pt;}
.fs1_c01202{font-size:72.000000pt;}
.fs0_c01202{font-size:74.666667pt;}
.y0_c01202{bottom:0.000000pt;}
.y1f_c01202{bottom:2.760000pt;}
.y1e_c01202{bottom:6.425217pt;}
.y1d_c01202{bottom:47.706667pt;}
.y1c_c01202{bottom:71.040000pt;}
.y1b_c01202{bottom:93.573333pt;}
.y1a_c01202{bottom:115.173333pt;}
.y19_c01202{bottom:137.973333pt;}
.y18_c01202{bottom:158.373333pt;}
.y17_c01202{bottom:182.106667pt;}
.y16_c01202{bottom:203.306667pt;}
.y15_c01202{bottom:226.240000pt;}
.y14_c01202{bottom:247.706667pt;}
.y13_c01202{bottom:269.706667pt;}
.y12_c01202{bottom:291.573333pt;}
.y11_c01202{bottom:311.440000pt;}
.y10_c01202{bottom:334.506667pt;}
.yf_c01202{bottom:355.173333pt;}
.ye_c01202{bottom:377.040000pt;}
.yd_c01202{bottom:398.373333pt;}
.yc_c01202{bottom:419.440000pt;}
.yb_c01202{bottom:442.773333pt;}
.ya_c01202{bottom:462.906667pt;}
.y9_c01202{bottom:484.240000pt;}
.y8_c01202{bottom:506.373333pt;}
.y7_c01202{bottom:527.706667pt;}
.y6_c01202{bottom:550.240000pt;}
.y5_c01202{bottom:573.306667pt;}
.y4_c01202{bottom:592.773333pt;}
.y3_c01202{bottom:614.640000pt;}
.y2_c01202{bottom:636.640000pt;}
.y1_c01202{bottom:659.440000pt;}
.h4_c01202{height:11.733399pt;}
.h5_c01202{height:38.937500pt;}
.h3_c01202{height:70.902344pt;}
.h1_c01202{height:73.281250pt;}
.h2_c01202{height:81.031250pt;}
.h0_c01202{height:693.333333pt;}
.w2_c01202{width:93.222667pt;}
.w0_c01202{width:479.733333pt;}
.w1_c01202{width:480.000000pt;}
.x0_c01202{left:0.000000pt;}
.x2_c01202{left:27.200000pt;}
.x3_c01202{left:28.800000pt;}
.x4_c01202{left:30.800000pt;}
.x5_c01202{left:31.733333pt;}
.x6_c01202{left:32.666667pt;}
.x7_c01202{left:92.000000pt;}
.x1_c01202{left:135.066667pt;}
.x9_c01202{left:197.034871pt;}
.x8_c01202{left:202.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5381d3f9567ea7eeea664721.woff2')format("woff");}.ff1_c01203{font-family:ff1_c01203;line-height:1.480469;font-style:normal;font-weight:normal;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_8f3de52547e9ae56dd0f6e62.woff2')format("woff");}.ff2_c01203{font-family:ff2_c01203;line-height:1.568848;font-style:normal;font-weight:normal;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_034cf1b13f80be932d460f70.woff2')format("woff");}.ff3_c01203{font-family:ff3_c01203;line-height:1.575000;font-style:normal;font-weight:normal;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_6223b7313579ef8e2f855877.woff2')format("woff");}.ff4_c01203{font-family:ff4_c01203;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01203;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01203{font-family:ff5_c01203;line-height:1.219238;font-style: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;}
.ls1_c01203{letter-spacing:-3.000000px;}
.ls2_c01203{letter-spacing:0.000000px;}
.ls0_c01203{letter-spacing:3.588000px;}
.ls3_c01203{letter-spacing:6.000000px;}
.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;}
}
.ws1_c01203{word-spacing:-30.051000px;}
.ws0_c01203{word-spacing:-17.352000px;}
.ws2_c01203{word-spacing:0.000000px;}
._20_c01203{margin-left:-48.840000px;}
._17_c01203{margin-left:-27.204000px;}
._15_c01203{margin-left:-24.132000px;}
._24_c01203{margin-left:-11.352000px;}
._22_c01203{margin-left:-10.032000px;}
._16_c01203{margin-left:-8.796000px;}
._18_c01203{margin-left:-5.760000px;}
._19_c01203{margin-left:-4.176000px;}
._d_c01203{margin-left:-2.760000px;}
._c_c01203{margin-left:-1.152000px;}
._11_c01203{width:1.200000px;}
._9_c01203{width:2.472000px;}
._e_c01203{width:3.852000px;}
._a_c01203{width:5.400000px;}
._7_c01203{width:6.600000px;}
._f_c01203{width:7.800000px;}
._1_c01203{width:9.480000px;}
._14_c01203{width:10.656000px;}
._b_c01203{width:11.784000px;}
._5_c01203{width:13.680000px;}
._10_c01203{width:14.700000px;}
._6_c01203{width:15.720000px;}
._4_c01203{width:17.820000px;}
._3_c01203{width:18.900000px;}
._2_c01203{width:20.820000px;}
._1d_c01203{width:21.876000px;}
._1c_c01203{width:23.472000px;}
._1a_c01203{width:24.579000px;}
._8_c01203{width:26.460000px;}
._0_c01203{width:27.960000px;}
._12_c01203{width:35.352000px;}
._13_c01203{width:37.440000px;}
._1b_c01203{width:39.660000px;}
._25_c01203{width:40.986000px;}
._1f_c01203{width:54.186000px;}
._23_c01203{width:71.280000px;}
._21_c01203{width:244.002000px;}
._1e_c01203{width:366.519000px;}
._26_c01203{width:541.302000px;}
.fc2_c01203{color:transparent;}
.fc1_c01203{color:rgb(128,128,128);}
.fc0_c01203{color:rgb(0,0,0);}
.fs3_c01203{font-size:24.000000px;}
.fs6_c01203{font-size:48.000000px;}
.fs0_c01203{font-size:60.000000px;}
.fs2_c01203{font-size:63.000000px;}
.fs5_c01203{font-size:66.000000px;}
.fs4_c01203{font-size:69.000000px;}
.fs1_c01203{font-size:72.000000px;}
.y0_c01203{bottom:0.000000px;}
.y1f_c01203{bottom:3.105000px;}
.y1e_c01203{bottom:7.228363px;}
.y1d_c01203{bottom:50.250000px;}
.y1c_c01203{bottom:67.500000px;}
.y1b_c01203{bottom:95.400000px;}
.y1a_c01203{bottom:119.850000px;}
.y19_c01203{bottom:146.100000px;}
.y18_c01203{bottom:172.500000px;}
.y17_c01203{bottom:195.300000px;}
.y16_c01203{bottom:222.450000px;}
.y15_c01203{bottom:248.100000px;}
.y14_c01203{bottom:272.700000px;}
.y13_c01203{bottom:295.950000px;}
.y12_c01203{bottom:321.900000px;}
.y11_c01203{bottom:345.300000px;}
.y10_c01203{bottom:370.800000px;}
.yf_c01203{bottom:393.150000px;}
.ye_c01203{bottom:419.850000px;}
.yd_c01203{bottom:441.750000px;}
.yc_c01203{bottom:466.050000px;}
.yb_c01203{bottom:490.350000px;}
.ya_c01203{bottom:515.400000px;}
.y9_c01203{bottom:540.600000px;}
.y8_c01203{bottom:565.200000px;}
.y7_c01203{bottom:589.950000px;}
.y6_c01203{bottom:614.850000px;}
.y5_c01203{bottom:639.600000px;}
.y4_c01203{bottom:663.900000px;}
.y3_c01203{bottom:688.800000px;}
.y2_c01203{bottom:713.250000px;}
.y1_c01203{bottom:738.900000px;}
.h6_c01203{height:13.200074px;}
.h7_c01203{height:43.804688px;}
.h5_c01203{height:70.422000px;}
.h2_c01203{height:75.966797px;}
.h4_c01203{height:79.765137px;}
.h3_c01203{height:91.160156px;}
.h0_c01203{height:784.350000px;}
.h1_c01203{height:784.500000px;}
.w2_c01203{width:104.875500px;}
.w0_c01203{width:532.425000px;}
.w1_c01203{width:532.500000px;}
.x0_c01203{left:0.000000px;}
.x2_c01203{left:102.300000px;}
.x3_c01203{left:103.500000px;}
.x4_c01203{left:104.850000px;}
.x5_c01203{left:106.200000px;}
.x6_c01203{left:107.250000px;}
.x7_c01203{left:108.600000px;}
.x8_c01203{left:109.650000px;}
.x9_c01203{left:111.150000px;}
.xa_c01203{left:168.450000px;}
.xb_c01203{left:218.026749px;}
.x1_c01203{left:223.050000px;}
@media print{
.v0_c01203{vertical-align:0.000000pt;}
.ls1_c01203{letter-spacing:-2.666667pt;}
.ls2_c01203{letter-spacing:0.000000pt;}
.ls0_c01203{letter-spacing:3.189333pt;}
.ls3_c01203{letter-spacing:5.333333pt;}
.ws1_c01203{word-spacing:-26.712000pt;}
.ws0_c01203{word-spacing:-15.424000pt;}
.ws2_c01203{word-spacing:0.000000pt;}
._20_c01203{margin-left:-43.413333pt;}
._17_c01203{margin-left:-24.181333pt;}
._15_c01203{margin-left:-21.450667pt;}
._24_c01203{margin-left:-10.090667pt;}
._22_c01203{margin-left:-8.917333pt;}
._16_c01203{margin-left:-7.818667pt;}
._18_c01203{margin-left:-5.120000pt;}
._19_c01203{margin-left:-3.712000pt;}
._d_c01203{margin-left:-2.453333pt;}
._c_c01203{margin-left:-1.024000pt;}
._11_c01203{width:1.066667pt;}
._9_c01203{width:2.197333pt;}
._e_c01203{width:3.424000pt;}
._a_c01203{width:4.800000pt;}
._7_c01203{width:5.866667pt;}
._f_c01203{width:6.933333pt;}
._1_c01203{width:8.426667pt;}
._14_c01203{width:9.472000pt;}
._b_c01203{width:10.474667pt;}
._5_c01203{width:12.160000pt;}
._10_c01203{width:13.066667pt;}
._6_c01203{width:13.973333pt;}
._4_c01203{width:15.840000pt;}
._3_c01203{width:16.800000pt;}
._2_c01203{width:18.506667pt;}
._1d_c01203{width:19.445333pt;}
._1c_c01203{width:20.864000pt;}
._1a_c01203{width:21.848000pt;}
._8_c01203{width:23.520000pt;}
._0_c01203{width:24.853333pt;}
._12_c01203{width:31.424000pt;}
._13_c01203{width:33.280000pt;}
._1b_c01203{width:35.253333pt;}
._25_c01203{width:36.432000pt;}
._1f_c01203{width:48.165333pt;}
._23_c01203{width:63.360000pt;}
._21_c01203{width:216.890667pt;}
._1e_c01203{width:325.794667pt;}
._26_c01203{width:481.157333pt;}
.fs3_c01203{font-size:21.333333pt;}
.fs6_c01203{font-size:42.666667pt;}
.fs0_c01203{font-size:53.333333pt;}
.fs2_c01203{font-size:56.000000pt;}
.fs5_c01203{font-size:58.666667pt;}
.fs4_c01203{font-size:61.333333pt;}
.fs1_c01203{font-size:64.000000pt;}
.y0_c01203{bottom:0.000000pt;}
.y1f_c01203{bottom:2.760000pt;}
.y1e_c01203{bottom:6.425212pt;}
.y1d_c01203{bottom:44.666667pt;}
.y1c_c01203{bottom:60.000000pt;}
.y1b_c01203{bottom:84.800000pt;}
.y1a_c01203{bottom:106.533333pt;}
.y19_c01203{bottom:129.866667pt;}
.y18_c01203{bottom:153.333333pt;}
.y17_c01203{bottom:173.600000pt;}
.y16_c01203{bottom:197.733333pt;}
.y15_c01203{bottom:220.533333pt;}
.y14_c01203{bottom:242.400000pt;}
.y13_c01203{bottom:263.066667pt;}
.y12_c01203{bottom:286.133333pt;}
.y11_c01203{bottom:306.933333pt;}
.y10_c01203{bottom:329.600000pt;}
.yf_c01203{bottom:349.466667pt;}
.ye_c01203{bottom:373.200000pt;}
.yd_c01203{bottom:392.666667pt;}
.yc_c01203{bottom:414.266667pt;}
.yb_c01203{bottom:435.866667pt;}
.ya_c01203{bottom:458.133333pt;}
.y9_c01203{bottom:480.533333pt;}
.y8_c01203{bottom:502.400000pt;}
.y7_c01203{bottom:524.400000pt;}
.y6_c01203{bottom:546.533333pt;}
.y5_c01203{bottom:568.533333pt;}
.y4_c01203{bottom:590.133333pt;}
.y3_c01203{bottom:612.266667pt;}
.y2_c01203{bottom:634.000000pt;}
.y1_c01203{bottom:656.800000pt;}
.h6_c01203{height:11.733399pt;}
.h7_c01203{height:38.937500pt;}
.h5_c01203{height:62.597333pt;}
.h2_c01203{height:67.526042pt;}
.h4_c01203{height:70.902344pt;}
.h3_c01203{height:81.031250pt;}
.h0_c01203{height:697.200000pt;}
.h1_c01203{height:697.333333pt;}
.w2_c01203{width:93.222667pt;}
.w0_c01203{width:473.266667pt;}
.w1_c01203{width:473.333333pt;}
.x0_c01203{left:0.000000pt;}
.x2_c01203{left:90.933333pt;}
.x3_c01203{left:92.000000pt;}
.x4_c01203{left:93.200000pt;}
.x5_c01203{left:94.400000pt;}
.x6_c01203{left:95.333333pt;}
.x7_c01203{left:96.533333pt;}
.x8_c01203{left:97.466667pt;}
.x9_c01203{left:98.800000pt;}
.xa_c01203{left:149.733333pt;}
.xb_c01203{left:193.801554pt;}
.x1_c01203{left:198.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fe61f8692e7b240157320273.woff2')format("woff");}.ff1_c01204{font-family:ff1_c01204;line-height:1.480469;font-style:normal;font-weight:normal;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_a521e5f076e21a4ad461de69.woff2')format("woff");}.ff2_c01204{font-family:ff2_c01204;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01204;src:url('chunks/assets/font_ad907b52fed8fbb295bef95c.woff2')format("woff");}.ff3_c01204{font-family:ff3_c01204;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01204;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01204{font-family:ff4_c01204;line-height:1.219238;font-style: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;}
.ls0_c01204{letter-spacing:0.000000px;}
.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:-30.051000px;}
.ws1_c01204{word-spacing:0.000000px;}
._19_c01204{margin-left:-16.878000px;}
._e_c01204{margin-left:-10.008000px;}
._1_c01204{margin-left:-6.552000px;}
._14_c01204{margin-left:-5.256000px;}
._13_c01204{margin-left:-4.248000px;}
._10_c01204{margin-left:-2.448000px;}
._3_c01204{margin-left:-1.152000px;}
._c_c01204{width:1.008000px;}
._9_c01204{width:2.160000px;}
._8_c01204{width:3.456000px;}
._6_c01204{width:4.464000px;}
._7_c01204{width:5.832000px;}
._5_c01204{width:7.200000px;}
._4_c01204{width:8.352000px;}
._a_c01204{width:10.008000px;}
._d_c01204{width:11.376000px;}
._b_c01204{width:12.672000px;}
._2_c01204{width:14.544000px;}
._15_c01204{width:15.552000px;}
._12_c01204{width:19.296000px;}
._11_c01204{width:21.960000px;}
._f_c01204{width:24.120000px;}
._0_c01204{width:27.360000px;}
._17_c01204{width:29.175000px;}
._16_c01204{width:33.336000px;}
._18_c01204{width:352.263000px;}
.fc2_c01204{color:transparent;}
.fc1_c01204{color:rgb(128,128,128);}
.fc0_c01204{color:rgb(0,0,0);}
.fs3_c01204{font-size:48.000000px;}
.fs1_c01204{font-size:63.000000px;}
.fs0_c01204{font-size:72.000000px;}
.fs2_c01204{font-size:87.000000px;}
.y0_c01204{bottom:0.000000px;}
.y1f_c01204{bottom:3.105000px;}
.y1e_c01204{bottom:7.228371px;}
.y1d_c01204{bottom:38.265000px;}
.y1c_c01204{bottom:63.765000px;}
.y1b_c01204{bottom:90.765000px;}
.y1a_c01204{bottom:115.065000px;}
.y19_c01204{bottom:140.715000px;}
.y18_c01204{bottom:164.415000px;}
.y17_c01204{bottom:191.115000px;}
.y16_c01204{bottom:216.315000px;}
.y15_c01204{bottom:241.065000px;}
.y14_c01204{bottom:265.665000px;}
.y13_c01204{bottom:288.315000px;}
.y12_c01204{bottom:315.015000px;}
.y11_c01204{bottom:339.315000px;}
.y10_c01204{bottom:362.565000px;}
.yf_c01204{bottom:388.515000px;}
.ye_c01204{bottom:412.065000px;}
.yd_c01204{bottom:436.365000px;}
.yc_c01204{bottom:462.015000px;}
.yb_c01204{bottom:485.115000px;}
.ya_c01204{bottom:510.615000px;}
.y9_c01204{bottom:534.615000px;}
.y8_c01204{bottom:558.615000px;}
.y7_c01204{bottom:583.515000px;}
.y6_c01204{bottom:606.915000px;}
.y5_c01204{bottom:634.215000px;}
.y4_c01204{bottom:656.565000px;}
.y3_c01204{bottom:680.865000px;}
.y2_c01204{bottom:707.115000px;}
.y1_c01204{bottom:731.715000px;}
.h5_c01204{height:13.200074px;}
.h6_c01204{height:43.804688px;}
.h2_c01204{height:84.269531px;}
.h3_c01204{height:91.160156px;}
.h4_c01204{height:110.151855px;}
.h0_c01204{height:785.175000px;}
.h1_c01204{height:785.250000px;}
.w2_c01204{width:104.875500px;}
.w0_c01204{width:539.700000px;}
.w1_c01204{width:540.000000px;}
.x0_c01204{left:0.000000px;}
.x2_c01204{left:31.050000px;}
.x3_c01204{left:32.400000px;}
.x4_c01204{left:33.750000px;}
.x5_c01204{left:35.550000px;}
.x6_c01204{left:36.750000px;}
.x7_c01204{left:38.100000px;}
.x8_c01204{left:39.900000px;}
.x1_c01204{left:160.200000px;}
.xa_c01204{left:221.664230px;}
.x9_c01204{left:262.650000px;}
@media print{
.v0_c01204{vertical-align:0.000000pt;}
.ls0_c01204{letter-spacing:0.000000pt;}
.ws0_c01204{word-spacing:-26.712000pt;}
.ws1_c01204{word-spacing:0.000000pt;}
._19_c01204{margin-left:-15.002667pt;}
._e_c01204{margin-left:-8.896000pt;}
._1_c01204{margin-left:-5.824000pt;}
._14_c01204{margin-left:-4.672000pt;}
._13_c01204{margin-left:-3.776000pt;}
._10_c01204{margin-left:-2.176000pt;}
._3_c01204{margin-left:-1.024000pt;}
._c_c01204{width:0.896000pt;}
._9_c01204{width:1.920000pt;}
._8_c01204{width:3.072000pt;}
._6_c01204{width:3.968000pt;}
._7_c01204{width:5.184000pt;}
._5_c01204{width:6.400000pt;}
._4_c01204{width:7.424000pt;}
._a_c01204{width:8.896000pt;}
._d_c01204{width:10.112000pt;}
._b_c01204{width:11.264000pt;}
._2_c01204{width:12.928000pt;}
._15_c01204{width:13.824000pt;}
._12_c01204{width:17.152000pt;}
._11_c01204{width:19.520000pt;}
._f_c01204{width:21.440000pt;}
._0_c01204{width:24.320000pt;}
._17_c01204{width:25.933333pt;}
._16_c01204{width:29.632000pt;}
._18_c01204{width:313.122667pt;}
.fs3_c01204{font-size:42.666667pt;}
.fs1_c01204{font-size:56.000000pt;}
.fs0_c01204{font-size:64.000000pt;}
.fs2_c01204{font-size:77.333333pt;}
.y0_c01204{bottom:0.000000pt;}
.y1f_c01204{bottom:2.760000pt;}
.y1e_c01204{bottom:6.425219pt;}
.y1d_c01204{bottom:34.013333pt;}
.y1c_c01204{bottom:56.680000pt;}
.y1b_c01204{bottom:80.680000pt;}
.y1a_c01204{bottom:102.280000pt;}
.y19_c01204{bottom:125.080000pt;}
.y18_c01204{bottom:146.146667pt;}
.y17_c01204{bottom:169.880000pt;}
.y16_c01204{bottom:192.280000pt;}
.y15_c01204{bottom:214.280000pt;}
.y14_c01204{bottom:236.146667pt;}
.y13_c01204{bottom:256.280000pt;}
.y12_c01204{bottom:280.013333pt;}
.y11_c01204{bottom:301.613333pt;}
.y10_c01204{bottom:322.280000pt;}
.yf_c01204{bottom:345.346667pt;}
.ye_c01204{bottom:366.280000pt;}
.yd_c01204{bottom:387.880000pt;}
.yc_c01204{bottom:410.680000pt;}
.yb_c01204{bottom:431.213333pt;}
.ya_c01204{bottom:453.880000pt;}
.y9_c01204{bottom:475.213333pt;}
.y8_c01204{bottom:496.546667pt;}
.y7_c01204{bottom:518.680000pt;}
.y6_c01204{bottom:539.480000pt;}
.y5_c01204{bottom:563.746667pt;}
.y4_c01204{bottom:583.613333pt;}
.y3_c01204{bottom:605.213333pt;}
.y2_c01204{bottom:628.546667pt;}
.y1_c01204{bottom:650.413333pt;}
.h5_c01204{height:11.733399pt;}
.h6_c01204{height:38.937500pt;}
.h2_c01204{height:74.906250pt;}
.h3_c01204{height:81.031250pt;}
.h4_c01204{height:97.912760pt;}
.h0_c01204{height:697.933333pt;}
.h1_c01204{height:698.000000pt;}
.w2_c01204{width:93.222667pt;}
.w0_c01204{width:479.733333pt;}
.w1_c01204{width:480.000000pt;}
.x0_c01204{left:0.000000pt;}
.x2_c01204{left:27.600000pt;}
.x3_c01204{left:28.800000pt;}
.x4_c01204{left:30.000000pt;}
.x5_c01204{left:31.600000pt;}
.x6_c01204{left:32.666667pt;}
.x7_c01204{left:33.866667pt;}
.x8_c01204{left:35.466667pt;}
.x1_c01204{left:142.400000pt;}
.xa_c01204{left:197.034871pt;}
.x9_c01204{left:233.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f911422a7d2431957dc06b3c.woff2')format("woff");}.ff1_c01205{font-family:ff1_c01205;line-height:1.480469;font-style:normal;font-weight:normal;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_514d781f7eafcf1504fbb912.woff2')format("woff");}.ff2_c01205{font-family:ff2_c01205;line-height:1.568848;font-style:normal;font-weight:normal;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_54a493b4bd65255a67a6805a.woff2')format("woff");}.ff3_c01205{font-family:ff3_c01205;line-height:1.480469;font-style:normal;font-weight:normal;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_2b95813c968865cf83314b61.woff2')format("woff");}.ff4_c01205{font-family:ff4_c01205;line-height:1.284668;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01205{font-family:ff5_c01205;line-height:1.219238;font-style: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;}
.ls1_c01205{letter-spacing:-3.000000px;}
.ls2_c01205{letter-spacing:0.000000px;}
.ls3_c01205{letter-spacing:3.000000px;}
.ls4_c01205{letter-spacing:6.000000px;}
.ls0_c01205{letter-spacing:41.850000px;}
.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:-33.192000px;}
.ws1_c01205{word-spacing:-30.426000px;}
.ws2_c01205{word-spacing:-18.750000px;}
.ws3_c01205{word-spacing:0.000000px;}
._12_c01205{margin-left:-12.264000px;}
._e_c01205{margin-left:-11.016000px;}
._1_c01205{margin-left:-9.744000px;}
._3_c01205{margin-left:-7.476000px;}
._0_c01205{margin-left:-5.124000px;}
._2_c01205{margin-left:-3.696000px;}
._a_c01205{margin-left:-2.520000px;}
._c_c01205{margin-left:-1.152000px;}
._b_c01205{width:1.704000px;}
._5_c01205{width:2.808000px;}
._4_c01205{width:4.452000px;}
._8_c01205{width:5.784000px;}
._7_c01205{width:6.984000px;}
._10_c01205{width:8.496000px;}
._d_c01205{width:9.936000px;}
._6_c01205{width:11.736000px;}
._f_c01205{width:13.632000px;}
._11_c01205{width:15.204000px;}
._9_c01205{width:18.456000px;}
._14_c01205{width:20.232000px;}
._13_c01205{width:21.753000px;}
._17_c01205{width:24.180000px;}
._16_c01205{width:36.396000px;}
._15_c01205{width:47.772000px;}
.fc2_c01205{color:transparent;}
.fc1_c01205{color:rgb(128,128,128);}
.fc0_c01205{color:rgb(0,0,0);}
.fs7_c01205{font-size:48.000000px;}
.fs2_c01205{font-size:51.000000px;}
.fs5_c01205{font-size:57.000000px;}
.fs3_c01205{font-size:66.000000px;}
.fs1_c01205{font-size:72.000000px;}
.fs4_c01205{font-size:75.000000px;}
.fs0_c01205{font-size:84.000000px;}
.fs6_c01205{font-size:87.000000px;}
.y0_c01205{bottom:0.000000px;}
.y1f_c01205{bottom:3.105000px;}
.y1e_c01205{bottom:7.228369px;}
.y1d_c01205{bottom:53.670000px;}
.y1c_c01205{bottom:74.220000px;}
.y1b_c01205{bottom:100.170000px;}
.y1a_c01205{bottom:124.920000px;}
.y19_c01205{bottom:149.220000px;}
.y18_c01205{bottom:174.420000px;}
.y17_c01205{bottom:199.020000px;}
.y16_c01205{bottom:224.070000px;}
.y15_c01205{bottom:249.120000px;}
.y14_c01205{bottom:274.020000px;}
.y13_c01205{bottom:299.370000px;}
.y12_c01205{bottom:325.020000px;}
.y11_c01205{bottom:349.920000px;}
.y10_c01205{bottom:373.920000px;}
.yf_c01205{bottom:397.620000px;}
.ye_c01205{bottom:420.420000px;}
.yd_c01205{bottom:445.470000px;}
.yc_c01205{bottom:468.720000px;}
.yb_c01205{bottom:493.020000px;}
.ya_c01205{bottom:517.320000px;}
.y9_c01205{bottom:542.670000px;}
.y8_c01205{bottom:566.970000px;}
.y7_c01205{bottom:590.970000px;}
.y6_c01205{bottom:616.170000px;}
.y5_c01205{bottom:640.920000px;}
.y4_c01205{bottom:664.770000px;}
.y3_c01205{bottom:690.420000px;}
.y2_c01205{bottom:714.870000px;}
.y1_c01205{bottom:740.070000px;}
.h5_c01205{height:13.200073px;}
.h6_c01205{height:43.804688px;}
.h4_c01205{height:85.385742px;}
.h3_c01205{height:91.160156px;}
.h2_c01205{height:106.353516px;}
.h0_c01205{height:796.200000px;}
.h1_c01205{height:796.500000px;}
.w2_c01205{width:104.875500px;}
.w0_c01205{width:524.100000px;}
.w1_c01205{width:524.250000px;}
.x0_c01205{left:0.000000px;}
.x7_c01205{left:108.750000px;}
.x2_c01205{left:111.000000px;}
.x3_c01205{left:112.650000px;}
.x6_c01205{left:113.850000px;}
.x5_c01205{left:115.200000px;}
.x4_c01205{left:153.600000px;}
.x9_c01205{left:213.864258px;}
.x1_c01205{left:221.700000px;}
.x8_c01205{left:486.600000px;}
@media print{
.v0_c01205{vertical-align:0.000000pt;}
.ls1_c01205{letter-spacing:-2.666667pt;}
.ls2_c01205{letter-spacing:0.000000pt;}
.ls3_c01205{letter-spacing:2.666667pt;}
.ls4_c01205{letter-spacing:5.333333pt;}
.ls0_c01205{letter-spacing:37.200000pt;}
.ws0_c01205{word-spacing:-29.504000pt;}
.ws1_c01205{word-spacing:-27.045333pt;}
.ws2_c01205{word-spacing:-16.666667pt;}
.ws3_c01205{word-spacing:0.000000pt;}
._12_c01205{margin-left:-10.901333pt;}
._e_c01205{margin-left:-9.792000pt;}
._1_c01205{margin-left:-8.661333pt;}
._3_c01205{margin-left:-6.645333pt;}
._0_c01205{margin-left:-4.554667pt;}
._2_c01205{margin-left:-3.285333pt;}
._a_c01205{margin-left:-2.240000pt;}
._c_c01205{margin-left:-1.024000pt;}
._b_c01205{width:1.514667pt;}
._5_c01205{width:2.496000pt;}
._4_c01205{width:3.957333pt;}
._8_c01205{width:5.141333pt;}
._7_c01205{width:6.208000pt;}
._10_c01205{width:7.552000pt;}
._d_c01205{width:8.832000pt;}
._6_c01205{width:10.432000pt;}
._f_c01205{width:12.117333pt;}
._11_c01205{width:13.514667pt;}
._9_c01205{width:16.405333pt;}
._14_c01205{width:17.984000pt;}
._13_c01205{width:19.336000pt;}
._17_c01205{width:21.493333pt;}
._16_c01205{width:32.352000pt;}
._15_c01205{width:42.464000pt;}
.fs7_c01205{font-size:42.666667pt;}
.fs2_c01205{font-size:45.333333pt;}
.fs5_c01205{font-size:50.666667pt;}
.fs3_c01205{font-size:58.666667pt;}
.fs1_c01205{font-size:64.000000pt;}
.fs4_c01205{font-size:66.666667pt;}
.fs0_c01205{font-size:74.666667pt;}
.fs6_c01205{font-size:77.333333pt;}
.y0_c01205{bottom:0.000000pt;}
.y1f_c01205{bottom:2.760000pt;}
.y1e_c01205{bottom:6.425217pt;}
.y1d_c01205{bottom:47.706667pt;}
.y1c_c01205{bottom:65.973333pt;}
.y1b_c01205{bottom:89.040000pt;}
.y1a_c01205{bottom:111.040000pt;}
.y19_c01205{bottom:132.640000pt;}
.y18_c01205{bottom:155.040000pt;}
.y17_c01205{bottom:176.906667pt;}
.y16_c01205{bottom:199.173333pt;}
.y15_c01205{bottom:221.440000pt;}
.y14_c01205{bottom:243.573333pt;}
.y13_c01205{bottom:266.106667pt;}
.y12_c01205{bottom:288.906667pt;}
.y11_c01205{bottom:311.040000pt;}
.y10_c01205{bottom:332.373333pt;}
.yf_c01205{bottom:353.440000pt;}
.ye_c01205{bottom:373.706667pt;}
.yd_c01205{bottom:395.973333pt;}
.yc_c01205{bottom:416.640000pt;}
.yb_c01205{bottom:438.240000pt;}
.ya_c01205{bottom:459.840000pt;}
.y9_c01205{bottom:482.373333pt;}
.y8_c01205{bottom:503.973333pt;}
.y7_c01205{bottom:525.306667pt;}
.y6_c01205{bottom:547.706667pt;}
.y5_c01205{bottom:569.706667pt;}
.y4_c01205{bottom:590.906667pt;}
.y3_c01205{bottom:613.706667pt;}
.y2_c01205{bottom:635.440000pt;}
.y1_c01205{bottom:657.840000pt;}
.h5_c01205{height:11.733399pt;}
.h6_c01205{height:38.937500pt;}
.h4_c01205{height:75.898438pt;}
.h3_c01205{height:81.031250pt;}
.h2_c01205{height:94.536458pt;}
.h0_c01205{height:707.733333pt;}
.h1_c01205{height:708.000000pt;}
.w2_c01205{width:93.222667pt;}
.w0_c01205{width:465.866667pt;}
.w1_c01205{width:466.000000pt;}
.x0_c01205{left:0.000000pt;}
.x7_c01205{left:96.666667pt;}
.x2_c01205{left:98.666667pt;}
.x3_c01205{left:100.133333pt;}
.x6_c01205{left:101.200000pt;}
.x5_c01205{left:102.400000pt;}
.x4_c01205{left:136.533333pt;}
.x9_c01205{left:190.101563pt;}
.x1_c01205{left:197.066667pt;}
.x8_c01205{left:432.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2376c6ab194233704462a0e0.woff2')format("woff");}.ff1_c01206{font-family:ff1_c01206;line-height:1.284180;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01206{font-family:ff2_c01206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01206;src:url('chunks/assets/font_d490ce5209b6fc3f9b9c58a4.woff2')format("woff");}.ff3_c01206{font-family:ff3_c01206;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01206;src:url('chunks/assets/font_1131046ccd64adbf19f02ef5.woff2')format("woff");}.ff4_c01206{font-family:ff4_c01206;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01206;src:url('chunks/assets/font_6e0dabe6586963cf7248edf4.woff2')format("woff");}.ff5_c01206{font-family:ff5_c01206;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01206;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01206{font-family:ff6_c01206;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c01206{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,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;}
.ls2_c01206{letter-spacing:3.000000px;}
.ls0_c01206{letter-spacing:354.150000px;}
.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;}
}
.ws1_c01206{word-spacing:-17.352000px;}
.ws2_c01206{word-spacing:0.000000px;}
.ws0_c01206{word-spacing:4.320000px;}
._15_c01206{margin-left:-17.928000px;}
._13_c01206{margin-left:-9.300000px;}
._12_c01206{margin-left:-7.680000px;}
._b_c01206{margin-left:-5.220000px;}
._9_c01206{margin-left:-3.336000px;}
._a_c01206{margin-left:-1.944000px;}
._7_c01206{width:1.992000px;}
._5_c01206{width:3.024000px;}
._6_c01206{width:4.344000px;}
._2_c01206{width:5.460000px;}
._16_c01206{width:6.468000px;}
._4_c01206{width:7.476000px;}
._1_c01206{width:8.652000px;}
._3_c01206{width:9.912000px;}
._e_c01206{width:11.796000px;}
._8_c01206{width:13.584000px;}
._0_c01206{width:14.616000px;}
._d_c01206{width:19.188000px;}
._14_c01206{width:22.836000px;}
._11_c01206{width:23.940000px;}
._18_c01206{width:27.504000px;}
._f_c01206{width:31.812000px;}
._19_c01206{width:39.528000px;}
._1a_c01206{width:193.248000px;}
._c_c01206{width:278.088000px;}
._10_c01206{width:314.316000px;}
._17_c01206{width:359.604000px;}
.fc2_c01206{color:transparent;}
.fc1_c01206{color:rgb(128,128,128);}
.fc0_c01206{color:rgb(0,0,0);}
.fs6_c01206{font-size:48.000000px;}
.fs5_c01206{font-size:57.000000px;}
.fs2_c01206{font-size:60.000000px;}
.fs3_c01206{font-size:72.000000px;}
.fs1_c01206{font-size:81.000000px;}
.fs0_c01206{font-size:84.000000px;}
.fs4_c01206{font-size:213.000000px;}
.y0_c01206{bottom:0.000000px;}
.y20_c01206{bottom:3.105000px;}
.y1f_c01206{bottom:7.228355px;}
.y1e_c01206{bottom:45.885000px;}
.y1d_c01206{bottom:75.585000px;}
.y1c_c01206{bottom:99.885000px;}
.y1b_c01206{bottom:124.785000px;}
.y1a_c01206{bottom:150.435000px;}
.y19_c01206{bottom:175.185000px;}
.y18_c01206{bottom:200.685000px;}
.y17_c01206{bottom:225.135000px;}
.y16_c01206{bottom:248.985000px;}
.y15_c01206{bottom:274.035000px;}
.y14_c01206{bottom:299.385000px;}
.y13_c01206{bottom:322.935000px;}
.y12_c01206{bottom:347.835000px;}
.y11_c01206{bottom:372.585000px;}
.y10_c01206{bottom:396.885000px;}
.yf_c01206{bottom:420.435000px;}
.yc_c01206{bottom:439.185000px;}
.ye_c01206{bottom:444.135000px;}
.yd_c01206{bottom:468.735000px;}
.yb_c01206{bottom:492.435000px;}
.ya_c01206{bottom:516.285000px;}
.y9_c01206{bottom:540.285000px;}
.y8_c01206{bottom:564.585000px;}
.y7_c01206{bottom:589.185000px;}
.y6_c01206{bottom:613.785000px;}
.y5_c01206{bottom:638.085000px;}
.y4_c01206{bottom:662.385000px;}
.y3_c01206{bottom:687.435000px;}
.y2_c01206{bottom:711.435000px;}
.y1_c01206{bottom:737.085000px;}
.h5_c01206{height:13.200074px;}
.h6_c01206{height:43.804688px;}
.h2_c01206{height:82.400391px;}
.h3_c01206{height:91.160156px;}
.h4_c01206{height:214.664062px;}
.h0_c01206{height:790.275000px;}
.h1_c01206{height:790.500000px;}
.w2_c01206{width:104.875500px;}
.w0_c01206{width:534.600000px;}
.w1_c01206{width:534.750000px;}
.x0_c01206{left:0.000000px;}
.x2_c01206{left:42.750000px;}
.x3_c01206{left:44.100000px;}
.x4_c01206{left:45.450000px;}
.x5_c01206{left:46.800000px;}
.x7_c01206{left:48.150000px;}
.x6_c01206{left:60.300000px;}
.x1_c01206{left:147.150000px;}
.x8_c01206{left:189.300000px;}
.x9_c01206{left:219.114258px;}
@media print{
.v0_c01206{vertical-align:0.000000pt;}
.ls1_c01206{letter-spacing:0.000000pt;}
.ls2_c01206{letter-spacing:2.666667pt;}
.ls0_c01206{letter-spacing:314.800000pt;}
.ws1_c01206{word-spacing:-15.424000pt;}
.ws2_c01206{word-spacing:0.000000pt;}
.ws0_c01206{word-spacing:3.840000pt;}
._15_c01206{margin-left:-15.936000pt;}
._13_c01206{margin-left:-8.266667pt;}
._12_c01206{margin-left:-6.826667pt;}
._b_c01206{margin-left:-4.640000pt;}
._9_c01206{margin-left:-2.965333pt;}
._a_c01206{margin-left:-1.728000pt;}
._7_c01206{width:1.770667pt;}
._5_c01206{width:2.688000pt;}
._6_c01206{width:3.861333pt;}
._2_c01206{width:4.853333pt;}
._16_c01206{width:5.749333pt;}
._4_c01206{width:6.645333pt;}
._1_c01206{width:7.690667pt;}
._3_c01206{width:8.810667pt;}
._e_c01206{width:10.485333pt;}
._8_c01206{width:12.074667pt;}
._0_c01206{width:12.992000pt;}
._d_c01206{width:17.056000pt;}
._14_c01206{width:20.298667pt;}
._11_c01206{width:21.280000pt;}
._18_c01206{width:24.448000pt;}
._f_c01206{width:28.277333pt;}
._19_c01206{width:35.136000pt;}
._1a_c01206{width:171.776000pt;}
._c_c01206{width:247.189333pt;}
._10_c01206{width:279.392000pt;}
._17_c01206{width:319.648000pt;}
.fs6_c01206{font-size:42.666667pt;}
.fs5_c01206{font-size:50.666667pt;}
.fs2_c01206{font-size:53.333333pt;}
.fs3_c01206{font-size:64.000000pt;}
.fs1_c01206{font-size:72.000000pt;}
.fs0_c01206{font-size:74.666667pt;}
.fs4_c01206{font-size:189.333333pt;}
.y0_c01206{bottom:0.000000pt;}
.y20_c01206{bottom:2.760000pt;}
.y1f_c01206{bottom:6.425204pt;}
.y1e_c01206{bottom:40.786667pt;}
.y1d_c01206{bottom:67.186667pt;}
.y1c_c01206{bottom:88.786667pt;}
.y1b_c01206{bottom:110.920000pt;}
.y1a_c01206{bottom:133.720000pt;}
.y19_c01206{bottom:155.720000pt;}
.y18_c01206{bottom:178.386667pt;}
.y17_c01206{bottom:200.120000pt;}
.y16_c01206{bottom:221.320000pt;}
.y15_c01206{bottom:243.586667pt;}
.y14_c01206{bottom:266.120000pt;}
.y13_c01206{bottom:287.053333pt;}
.y12_c01206{bottom:309.186667pt;}
.y11_c01206{bottom:331.186667pt;}
.y10_c01206{bottom:352.786667pt;}
.yf_c01206{bottom:373.720000pt;}
.yc_c01206{bottom:390.386667pt;}
.ye_c01206{bottom:394.786667pt;}
.yd_c01206{bottom:416.653333pt;}
.yb_c01206{bottom:437.720000pt;}
.ya_c01206{bottom:458.920000pt;}
.y9_c01206{bottom:480.253333pt;}
.y8_c01206{bottom:501.853333pt;}
.y7_c01206{bottom:523.720000pt;}
.y6_c01206{bottom:545.586667pt;}
.y5_c01206{bottom:567.186667pt;}
.y4_c01206{bottom:588.786667pt;}
.y3_c01206{bottom:611.053333pt;}
.y2_c01206{bottom:632.386667pt;}
.y1_c01206{bottom:655.186667pt;}
.h5_c01206{height:11.733399pt;}
.h6_c01206{height:38.937500pt;}
.h2_c01206{height:73.244792pt;}
.h3_c01206{height:81.031250pt;}
.h4_c01206{height:190.812500pt;}
.h0_c01206{height:702.466667pt;}
.h1_c01206{height:702.666667pt;}
.w2_c01206{width:93.222667pt;}
.w0_c01206{width:475.200000pt;}
.w1_c01206{width:475.333333pt;}
.x0_c01206{left:0.000000pt;}
.x2_c01206{left:38.000000pt;}
.x3_c01206{left:39.200000pt;}
.x4_c01206{left:40.400000pt;}
.x5_c01206{left:41.600000pt;}
.x7_c01206{left:42.800000pt;}
.x6_c01206{left:53.600000pt;}
.x1_c01206{left:130.800000pt;}
.x8_c01206{left:168.266667pt;}
.x9_c01206{left:194.768229pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_adcfc630eeb0b009b5487fe4.woff2')format("woff");}.ff1_c01207{font-family:ff1_c01207;line-height:1.480469;font-style:normal;font-weight:normal;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_1b925d49940eae8668b5df53.woff2')format("woff");}.ff2_c01207{font-family:ff2_c01207;line-height:1.568848;font-style:normal;font-weight:normal;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_3a6e4edb29e7dcb8d7e435c5.woff2')format("woff");}.ff3_c01207{font-family:ff3_c01207;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01207;src:url('chunks/assets/font_d7dedc19bcb8359a4dd6f9b4.woff2')format("woff");}.ff4_c01207{font-family:ff4_c01207;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01207;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01207{font-family:ff5_c01207;line-height:1.219238;font-style: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;}
.ls1_c01207{letter-spacing:0.000000px;}
.ls0_c01207{letter-spacing:2.220000px;}
.sc__c01207{text-shadow:none;}
.sc0_c01207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01207{-webkit-text-stroke:0px transparent;}
.sc0_c01207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01207{word-spacing:-18.000000px;}
.ws0_c01207{word-spacing:-17.352000px;}
.ws2_c01207{word-spacing:0.000000px;}
._14_c01207{margin-left:-25.920000px;}
._e_c01207{margin-left:-12.816000px;}
._16_c01207{margin-left:-9.144000px;}
._10_c01207{margin-left:-8.136000px;}
._c_c01207{margin-left:-7.128000px;}
._b_c01207{margin-left:-5.256000px;}
._11_c01207{margin-left:-3.744000px;}
._5_c01207{margin-left:-2.376000px;}
._d_c01207{margin-left:-1.152000px;}
._4_c01207{width:1.368000px;}
._6_c01207{width:2.448000px;}
._2_c01207{width:3.600000px;}
._7_c01207{width:4.920000px;}
._8_c01207{width:6.048000px;}
._1_c01207{width:7.560000px;}
._0_c01207{width:9.216000px;}
._f_c01207{width:10.368000px;}
._a_c01207{width:11.736000px;}
._3_c01207{width:13.320000px;}
._9_c01207{width:14.928000px;}
._12_c01207{width:16.152000px;}
._15_c01207{width:20.448000px;}
._13_c01207{width:26.040000px;}
._17_c01207{width:928.872000px;}
.fc2_c01207{color:transparent;}
.fc1_c01207{color:rgb(128,128,128);}
.fc0_c01207{color:rgb(0,0,0);}
.fs4_c01207{font-size:48.000000px;}
.fs2_c01207{font-size:60.000000px;}
.fs0_c01207{font-size:72.000000px;}
.fs3_c01207{font-size:75.000000px;}
.fs1_c01207{font-size:90.000000px;}
.y0_c01207{bottom:0.000000px;}
.y1f_c01207{bottom:3.105000px;}
.y1e_c01207{bottom:7.228363px;}
.y1d_c01207{bottom:38.550000px;}
.y1c_c01207{bottom:59.700000px;}
.y1b_c01207{bottom:86.850000px;}
.y1a_c01207{bottom:112.350000px;}
.y19_c01207{bottom:137.100000px;}
.y18_c01207{bottom:162.000000px;}
.y17_c01207{bottom:187.350000px;}
.y16_c01207{bottom:212.400000px;}
.y15_c01207{bottom:237.300000px;}
.y14_c01207{bottom:262.350000px;}
.y13_c01207{bottom:287.550000px;}
.y12_c01207{bottom:312.600000px;}
.y11_c01207{bottom:337.500000px;}
.y10_c01207{bottom:361.800000px;}
.yf_c01207{bottom:385.800000px;}
.ye_c01207{bottom:409.050000px;}
.yd_c01207{bottom:434.100000px;}
.yc_c01207{bottom:458.100000px;}
.yb_c01207{bottom:481.050000px;}
.ya_c01207{bottom:507.300000px;}
.y9_c01207{bottom:531.300000px;}
.y8_c01207{bottom:557.250000px;}
.y7_c01207{bottom:580.950000px;}
.y6_c01207{bottom:605.700000px;}
.y5_c01207{bottom:630.450000px;}
.y4_c01207{bottom:656.100000px;}
.y3_c01207{bottom:680.400000px;}
.y2_c01207{bottom:705.750000px;}
.y1_c01207{bottom:730.650000px;}
.h3_c01207{height:13.200074px;}
.h4_c01207{height:43.804688px;}
.h2_c01207{height:91.160156px;}
.h0_c01207{height:784.350000px;}
.h1_c01207{height:784.500000px;}
.w1_c01207{width:104.875500px;}
.w0_c01207{width:503.250000px;}
.x0_c01207{left:0.000000px;}
.xa_c01207{left:82.350000px;}
.x9_c01207{left:83.400000px;}
.x8_c01207{left:84.750000px;}
.x7_c01207{left:86.100000px;}
.x6_c01207{left:88.650000px;}
.x5_c01207{left:90.750000px;}
.x3_c01207{left:92.100000px;}
.x2_c01207{left:93.150000px;}
.x4_c01207{left:169.800000px;}
.xb_c01207{left:192.600000px;}
.x1_c01207{left:199.500000px;}
.xc_c01207{left:203.439240px;}
@media print{
.v0_c01207{vertical-align:0.000000pt;}
.ls1_c01207{letter-spacing:0.000000pt;}
.ls0_c01207{letter-spacing:1.973333pt;}
.ws1_c01207{word-spacing:-16.000000pt;}
.ws0_c01207{word-spacing:-15.424000pt;}
.ws2_c01207{word-spacing:0.000000pt;}
._14_c01207{margin-left:-23.040000pt;}
._e_c01207{margin-left:-11.392000pt;}
._16_c01207{margin-left:-8.128000pt;}
._10_c01207{margin-left:-7.232000pt;}
._c_c01207{margin-left:-6.336000pt;}
._b_c01207{margin-left:-4.672000pt;}
._11_c01207{margin-left:-3.328000pt;}
._5_c01207{margin-left:-2.112000pt;}
._d_c01207{margin-left:-1.024000pt;}
._4_c01207{width:1.216000pt;}
._6_c01207{width:2.176000pt;}
._2_c01207{width:3.200000pt;}
._7_c01207{width:4.373333pt;}
._8_c01207{width:5.376000pt;}
._1_c01207{width:6.720000pt;}
._0_c01207{width:8.192000pt;}
._f_c01207{width:9.216000pt;}
._a_c01207{width:10.432000pt;}
._3_c01207{width:11.840000pt;}
._9_c01207{width:13.269333pt;}
._12_c01207{width:14.357333pt;}
._15_c01207{width:18.176000pt;}
._13_c01207{width:23.146667pt;}
._17_c01207{width:825.664000pt;}
.fs4_c01207{font-size:42.666667pt;}
.fs2_c01207{font-size:53.333333pt;}
.fs0_c01207{font-size:64.000000pt;}
.fs3_c01207{font-size:66.666667pt;}
.fs1_c01207{font-size:80.000000pt;}
.y0_c01207{bottom:0.000000pt;}
.y1f_c01207{bottom:2.760000pt;}
.y1e_c01207{bottom:6.425212pt;}
.y1d_c01207{bottom:34.266667pt;}
.y1c_c01207{bottom:53.066667pt;}
.y1b_c01207{bottom:77.200000pt;}
.y1a_c01207{bottom:99.866667pt;}
.y19_c01207{bottom:121.866667pt;}
.y18_c01207{bottom:144.000000pt;}
.y17_c01207{bottom:166.533333pt;}
.y16_c01207{bottom:188.800000pt;}
.y15_c01207{bottom:210.933333pt;}
.y14_c01207{bottom:233.200000pt;}
.y13_c01207{bottom:255.600000pt;}
.y12_c01207{bottom:277.866667pt;}
.y11_c01207{bottom:300.000000pt;}
.y10_c01207{bottom:321.600000pt;}
.yf_c01207{bottom:342.933333pt;}
.ye_c01207{bottom:363.600000pt;}
.yd_c01207{bottom:385.866667pt;}
.yc_c01207{bottom:407.200000pt;}
.yb_c01207{bottom:427.600000pt;}
.ya_c01207{bottom:450.933333pt;}
.y9_c01207{bottom:472.266667pt;}
.y8_c01207{bottom:495.333333pt;}
.y7_c01207{bottom:516.400000pt;}
.y6_c01207{bottom:538.400000pt;}
.y5_c01207{bottom:560.400000pt;}
.y4_c01207{bottom:583.200000pt;}
.y3_c01207{bottom:604.800000pt;}
.y2_c01207{bottom:627.333333pt;}
.y1_c01207{bottom:649.466667pt;}
.h3_c01207{height:11.733399pt;}
.h4_c01207{height:38.937500pt;}
.h2_c01207{height:81.031250pt;}
.h0_c01207{height:697.200000pt;}
.h1_c01207{height:697.333333pt;}
.w1_c01207{width:93.222667pt;}
.w0_c01207{width:447.333333pt;}
.x0_c01207{left:0.000000pt;}
.xa_c01207{left:73.200000pt;}
.x9_c01207{left:74.133333pt;}
.x8_c01207{left:75.333333pt;}
.x7_c01207{left:76.533333pt;}
.x6_c01207{left:78.800000pt;}
.x5_c01207{left:80.666667pt;}
.x3_c01207{left:81.866667pt;}
.x2_c01207{left:82.800000pt;}
.x4_c01207{left:150.933333pt;}
.xb_c01207{left:171.200000pt;}
.x1_c01207{left:177.333333pt;}
.xc_c01207{left:180.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_67888a19974d93a345be20cd.woff2')format("woff");}.ff1_c01208{font-family:ff1_c01208;line-height:1.284180;font-style:normal;font-weight:normal;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_bdf6eeecaac788169686967f.woff2')format("woff");}.ff2_c01208{font-family:ff2_c01208;line-height:1.480469;font-style:normal;font-weight:normal;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_b391fa74562cbe6cb98f2467.woff2')format("woff");}.ff3_c01208{font-family:ff3_c01208;line-height:1.568848;font-style:normal;font-weight:normal;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_223bcbeacd66f771053cb535.woff2')format("woff");}.ff4_c01208{font-family:ff4_c01208;line-height:1.284180;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c01208{font-family:ff5_c01208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01208;src:url('chunks/assets/font_7fc744e76994bd7f4aa3cb4d.woff2')format("woff");}.ff6_c01208{font-family:ff6_c01208;line-height:1.575000;font-style:normal;font-weight: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_c01208;src:url('chunks/assets/font_1ca2db07fc13d1f6e23ce1bd.woff2')format("woff");}.ff7_c01208{font-family:ff7_c01208;line-height:1.575000;font-style:normal;font-weight: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_c01208;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff8_c01208{font-family:ff8_c01208;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01208{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01208{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.v0_c01208{vertical-align:0.000000px;}
.ls4_c01208{letter-spacing:-3.000000px;}
.ls1_c01208{letter-spacing:0.000000px;}
.ls3_c01208{letter-spacing:3.000000px;}
.ls2_c01208{letter-spacing:6.000000px;}
.ls0_c01208{letter-spacing:15.588000px;}
.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;}
}
.ws1_c01208{word-spacing:-33.192000px;}
.ws4_c01208{word-spacing:-20.352000px;}
.ws3_c01208{word-spacing:-17.499000px;}
.ws0_c01208{word-spacing:-14.841000px;}
.ws5_c01208{word-spacing:0.000000px;}
.ws2_c01208{word-spacing:1.248000px;}
._5_c01208{margin-left:-14.916000px;}
._12_c01208{margin-left:-11.292000px;}
._1d_c01208{margin-left:-8.736000px;}
._d_c01208{margin-left:-7.560000px;}
._e_c01208{margin-left:-6.336000px;}
._14_c01208{margin-left:-4.632000px;}
._b_c01208{margin-left:-3.600000px;}
._a_c01208{margin-left:-2.304000px;}
._c_c01208{margin-left:-1.296000px;}
._7_c01208{width:1.728000px;}
._6_c01208{width:2.736000px;}
._10_c01208{width:3.918000px;}
._2_c01208{width:4.998000px;}
._f_c01208{width:6.132000px;}
._3_c01208{width:7.140000px;}
._1c_c01208{width:8.214000px;}
._0_c01208{width:9.282000px;}
._4_c01208{width:10.761000px;}
._17_c01208{width:12.711000px;}
._1_c01208{width:14.331000px;}
._15_c01208{width:15.483000px;}
._9_c01208{width:17.232000px;}
._8_c01208{width:19.221000px;}
._11_c01208{width:30.435000px;}
._1f_c01208{width:31.455000px;}
._16_c01208{width:37.815000px;}
._22_c01208{width:51.984000px;}
._20_c01208{width:53.784000px;}
._24_c01208{width:132.984000px;}
._21_c01208{width:154.482000px;}
._18_c01208{width:234.948000px;}
._13_c01208{width:256.536000px;}
._23_c01208{width:318.600000px;}
._1a_c01208{width:380.730000px;}
._19_c01208{width:585.360000px;}
._1b_c01208{width:703.188000px;}
._1e_c01208{width:751.485000px;}
.fc2_c01208{color:transparent;}
.fc1_c01208{color:rgb(128,128,128);}
.fc0_c01208{color:rgb(0,0,0);}
.fs2_c01208{font-size:24.000000px;}
.fs6_c01208{font-size:48.000000px;}
.fs0_c01208{font-size:51.000000px;}
.fs3_c01208{font-size:57.000000px;}
.fs4_c01208{font-size:63.000000px;}
.fs1_c01208{font-size:72.000000px;}
.fs5_c01208{font-size:87.000000px;}
.y0_c01208{bottom:0.000000px;}
.y20_c01208{bottom:3.105000px;}
.y1f_c01208{bottom:7.228357px;}
.y1e_c01208{bottom:49.230000px;}
.y1d_c01208{bottom:71.880000px;}
.y1c_c01208{bottom:96.480000px;}
.y1b_c01208{bottom:120.480000px;}
.y1a_c01208{bottom:146.580000px;}
.y19_c01208{bottom:170.430000px;}
.y18_c01208{bottom:195.180000px;}
.y17_c01208{bottom:219.480000px;}
.y16_c01208{bottom:246.030000px;}
.y15_c01208{bottom:269.730000px;}
.y14_c01208{bottom:295.380000px;}
.y13_c01208{bottom:318.330000px;}
.y12_c01208{bottom:342.180000px;}
.y11_c01208{bottom:365.130000px;}
.y10_c01208{bottom:389.880000px;}
.yf_c01208{bottom:415.230000px;}
.y1_c01208{bottom:431.280000px;}
.ye_c01208{bottom:439.380000px;}
.yd_c01208{bottom:463.380000px;}
.yc_c01208{bottom:489.030000px;}
.yb_c01208{bottom:512.730000px;}
.ya_c01208{bottom:537.630000px;}
.y9_c01208{bottom:561.330000px;}
.y8_c01208{bottom:586.230000px;}
.y7_c01208{bottom:613.680000px;}
.y6_c01208{bottom:635.280000px;}
.y5_c01208{bottom:660.930000px;}
.y4_c01208{bottom:687.930000px;}
.y3_c01208{bottom:710.130000px;}
.y2_c01208{bottom:735.480000px;}
.h5_c01208{height:13.200074px;}
.h6_c01208{height:43.804688px;}
.h2_c01208{height:50.028809px;}
.h3_c01208{height:91.160156px;}
.h4_c01208{height:92.829000px;}
.h1_c01208{height:776.250000px;}
.h0_c01208{height:776.550000px;}
.w2_c01208{width:104.875500px;}
.w0_c01208{width:535.950000px;}
.w1_c01208{width:536.250000px;}
.x0_c01208{left:0.000000px;}
.x4_c01208{left:37.500000px;}
.x5_c01208{left:38.700000px;}
.x3_c01208{left:40.200000px;}
.x6_c01208{left:41.550000px;}
.x7_c01208{left:42.900000px;}
.x8_c01208{left:43.950000px;}
.x9_c01208{left:96.450000px;}
.x2_c01208{left:137.400000px;}
.xc_c01208{left:219.789230px;}
.xa_c01208{left:325.650000px;}
.xb_c01208{left:349.350000px;}
.x1_c01208{left:444.900000px;}
@media print{
.v0_c01208{vertical-align:0.000000pt;}
.ls4_c01208{letter-spacing:-2.666667pt;}
.ls1_c01208{letter-spacing:0.000000pt;}
.ls3_c01208{letter-spacing:2.666667pt;}
.ls2_c01208{letter-spacing:5.333333pt;}
.ls0_c01208{letter-spacing:13.856000pt;}
.ws1_c01208{word-spacing:-29.504000pt;}
.ws4_c01208{word-spacing:-18.090667pt;}
.ws3_c01208{word-spacing:-15.554667pt;}
.ws0_c01208{word-spacing:-13.192000pt;}
.ws5_c01208{word-spacing:0.000000pt;}
.ws2_c01208{word-spacing:1.109333pt;}
._5_c01208{margin-left:-13.258667pt;}
._12_c01208{margin-left:-10.037333pt;}
._1d_c01208{margin-left:-7.765333pt;}
._d_c01208{margin-left:-6.720000pt;}
._e_c01208{margin-left:-5.632000pt;}
._14_c01208{margin-left:-4.117333pt;}
._b_c01208{margin-left:-3.200000pt;}
._a_c01208{margin-left:-2.048000pt;}
._c_c01208{margin-left:-1.152000pt;}
._7_c01208{width:1.536000pt;}
._6_c01208{width:2.432000pt;}
._10_c01208{width:3.482667pt;}
._2_c01208{width:4.442667pt;}
._f_c01208{width:5.450667pt;}
._3_c01208{width:6.346667pt;}
._1c_c01208{width:7.301333pt;}
._0_c01208{width:8.250667pt;}
._4_c01208{width:9.565333pt;}
._17_c01208{width:11.298667pt;}
._1_c01208{width:12.738667pt;}
._15_c01208{width:13.762667pt;}
._9_c01208{width:15.317333pt;}
._8_c01208{width:17.085333pt;}
._11_c01208{width:27.053333pt;}
._1f_c01208{width:27.960000pt;}
._16_c01208{width:33.613333pt;}
._22_c01208{width:46.208000pt;}
._20_c01208{width:47.808000pt;}
._24_c01208{width:118.208000pt;}
._21_c01208{width:137.317333pt;}
._18_c01208{width:208.842667pt;}
._13_c01208{width:228.032000pt;}
._23_c01208{width:283.200000pt;}
._1a_c01208{width:338.426667pt;}
._19_c01208{width:520.320000pt;}
._1b_c01208{width:625.056000pt;}
._1e_c01208{width:667.986667pt;}
.fs2_c01208{font-size:21.333333pt;}
.fs6_c01208{font-size:42.666667pt;}
.fs0_c01208{font-size:45.333333pt;}
.fs3_c01208{font-size:50.666667pt;}
.fs4_c01208{font-size:56.000000pt;}
.fs1_c01208{font-size:64.000000pt;}
.fs5_c01208{font-size:77.333333pt;}
.y0_c01208{bottom:0.000000pt;}
.y20_c01208{bottom:2.760000pt;}
.y1f_c01208{bottom:6.425206pt;}
.y1e_c01208{bottom:43.760000pt;}
.y1d_c01208{bottom:63.893333pt;}
.y1c_c01208{bottom:85.760000pt;}
.y1b_c01208{bottom:107.093333pt;}
.y1a_c01208{bottom:130.293333pt;}
.y19_c01208{bottom:151.493333pt;}
.y18_c01208{bottom:173.493333pt;}
.y17_c01208{bottom:195.093333pt;}
.y16_c01208{bottom:218.693333pt;}
.y15_c01208{bottom:239.760000pt;}
.y14_c01208{bottom:262.560000pt;}
.y13_c01208{bottom:282.960000pt;}
.y12_c01208{bottom:304.160000pt;}
.y11_c01208{bottom:324.560000pt;}
.y10_c01208{bottom:346.560000pt;}
.yf_c01208{bottom:369.093333pt;}
.y1_c01208{bottom:383.360000pt;}
.ye_c01208{bottom:390.560000pt;}
.yd_c01208{bottom:411.893333pt;}
.yc_c01208{bottom:434.693333pt;}
.yb_c01208{bottom:455.760000pt;}
.ya_c01208{bottom:477.893333pt;}
.y9_c01208{bottom:498.960000pt;}
.y8_c01208{bottom:521.093333pt;}
.y7_c01208{bottom:545.493333pt;}
.y6_c01208{bottom:564.693333pt;}
.y5_c01208{bottom:587.493333pt;}
.y4_c01208{bottom:611.493333pt;}
.y3_c01208{bottom:631.226667pt;}
.y2_c01208{bottom:653.760000pt;}
.h5_c01208{height:11.733399pt;}
.h6_c01208{height:38.937500pt;}
.h2_c01208{height:44.470052pt;}
.h3_c01208{height:81.031250pt;}
.h4_c01208{height:82.514667pt;}
.h1_c01208{height:690.000000pt;}
.h0_c01208{height:690.266667pt;}
.w2_c01208{width:93.222667pt;}
.w0_c01208{width:476.400000pt;}
.w1_c01208{width:476.666667pt;}
.x0_c01208{left:0.000000pt;}
.x4_c01208{left:33.333333pt;}
.x5_c01208{left:34.400000pt;}
.x3_c01208{left:35.733333pt;}
.x6_c01208{left:36.933333pt;}
.x7_c01208{left:38.133333pt;}
.x8_c01208{left:39.066667pt;}
.x9_c01208{left:85.733333pt;}
.x2_c01208{left:122.133333pt;}
.xc_c01208{left:195.368205pt;}
.xa_c01208{left:289.466667pt;}
.xb_c01208{left:310.533333pt;}
.x1_c01208{left:395.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f94d0f17cd99ed9c75e4a390.woff2')format("woff");}.ff1_c01209{font-family:ff1_c01209;line-height:1.284180;font-style:normal;font-weight:normal;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_23c174f7a961be99d12b3144.woff2')format("woff");}.ff2_c01209{font-family:ff2_c01209;line-height:1.568848;font-style:normal;font-weight:normal;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_7a6a7464c9c5f6c39d1d2414.woff2')format("woff");}.ff3_c01209{font-family:ff3_c01209;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01209;src:url('chunks/assets/font_3826c690c1ef94c319064642.woff2')format("woff");}.ff4_c01209{font-family:ff4_c01209;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01209;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01209{font-family:ff5_c01209;line-height:1.219238;font-style: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;}
.ls1_c01209{letter-spacing:-3.000000px;}
.ls0_c01209{letter-spacing:0.000000px;}
.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:-42.000000px;}
.ws1_c01209{word-spacing:-37.341000px;}
.ws2_c01209{word-spacing:-37.107000px;}
.ws3_c01209{word-spacing:-21.750000px;}
.ws4_c01209{word-spacing:0.000000px;}
._16_c01209{margin-left:-24.444000px;}
._18_c01209{margin-left:-16.908000px;}
._19_c01209{margin-left:-15.651000px;}
._17_c01209{margin-left:-6.414000px;}
._c_c01209{margin-left:-4.857000px;}
._f_c01209{margin-left:-2.754000px;}
._14_c01209{margin-left:-1.620000px;}
._b_c01209{width:1.017000px;}
._1_c01209{width:2.688000px;}
._a_c01209{width:3.693000px;}
._2_c01209{width:4.788000px;}
._3_c01209{width:5.796000px;}
._0_c01209{width:7.476000px;}
._4_c01209{width:8.694000px;}
._5_c01209{width:9.765000px;}
._6_c01209{width:11.403000px;}
._8_c01209{width:13.125000px;}
._d_c01209{width:16.464000px;}
._7_c01209{width:17.640000px;}
._e_c01209{width:19.206000px;}
._15_c01209{width:20.931000px;}
._9_c01209{width:21.987000px;}
._11_c01209{width:23.730000px;}
._10_c01209{width:24.768000px;}
._12_c01209{width:26.355000px;}
._13_c01209{width:34.779000px;}
.fc2_c01209{color:transparent;}
.fc1_c01209{color:rgb(128,128,128);}
.fc0_c01209{color:rgb(0,0,0);}
.fs5_c01209{font-size:48.000000px;}
.fs1_c01209{font-size:63.000000px;}
.fs2_c01209{font-size:69.000000px;}
.fs3_c01209{font-size:81.000000px;}
.fs0_c01209{font-size:84.000000px;}
.fs4_c01209{font-size:87.000000px;}
.y0_c01209{bottom:0.000000px;}
.y1e_c01209{bottom:3.105000px;}
.y1d_c01209{bottom:7.228363px;}
.y1c_c01209{bottom:58.050000px;}
.y1b_c01209{bottom:103.950000px;}
.y1a_c01209{bottom:128.550000px;}
.y19_c01209{bottom:153.600000px;}
.y18_c01209{bottom:179.550000px;}
.y17_c01209{bottom:204.450000px;}
.y16_c01209{bottom:229.200000px;}
.y15_c01209{bottom:255.750000px;}
.y14_c01209{bottom:280.050000px;}
.y13_c01209{bottom:304.650000px;}
.y12_c01209{bottom:330.750000px;}
.y11_c01209{bottom:354.300000px;}
.y10_c01209{bottom:378.600000px;}
.yf_c01209{bottom:402.000000px;}
.ye_c01209{bottom:425.850000px;}
.yd_c01209{bottom:450.150000px;}
.yc_c01209{bottom:473.850000px;}
.yb_c01209{bottom:498.750000px;}
.ya_c01209{bottom:523.500000px;}
.y9_c01209{bottom:548.400000px;}
.y8_c01209{bottom:572.700000px;}
.y7_c01209{bottom:597.750000px;}
.y6_c01209{bottom:622.350000px;}
.y5_c01209{bottom:647.250000px;}
.y4_c01209{bottom:671.850000px;}
.y3_c01209{bottom:696.600000px;}
.y2_c01209{bottom:721.800000px;}
.y1_c01209{bottom:747.450000px;}
.h8_c01209{height:13.200074px;}
.h9_c01209{height:43.804688px;}
.h2_c01209{height:79.765137px;}
.h1_c01209{height:82.400391px;}
.h7_c01209{height:85.385742px;}
.h3_c01209{height:87.361816px;}
.h4_c01209{height:94.803223px;}
.h5_c01209{height:102.555176px;}
.h6_c01209{height:110.151855px;}
.h0_c01209{height:796.500000px;}
.w2_c01209{width:104.875500px;}
.w1_c01209{width:505.500000px;}
.w0_c01209{width:505.725000px;}
.x0_c01209{left:0.000000px;}
.x3_c01209{left:83.100000px;}
.x2_c01209{left:87.150000px;}
.x5_c01209{left:89.100000px;}
.x4_c01209{left:93.450000px;}
.x6_c01209{left:192.000000px;}
.x1_c01209{left:198.150000px;}
.x8_c01209{left:204.676758px;}
.x7_c01209{left:445.800000px;}
@media print{
.v0_c01209{vertical-align:0.000000pt;}
.ls1_c01209{letter-spacing:-2.666667pt;}
.ls0_c01209{letter-spacing:0.000000pt;}
.ws0_c01209{word-spacing:-37.333333pt;}
.ws1_c01209{word-spacing:-33.192000pt;}
.ws2_c01209{word-spacing:-32.984000pt;}
.ws3_c01209{word-spacing:-19.333333pt;}
.ws4_c01209{word-spacing:0.000000pt;}
._16_c01209{margin-left:-21.728000pt;}
._18_c01209{margin-left:-15.029333pt;}
._19_c01209{margin-left:-13.912000pt;}
._17_c01209{margin-left:-5.701333pt;}
._c_c01209{margin-left:-4.317333pt;}
._f_c01209{margin-left:-2.448000pt;}
._14_c01209{margin-left:-1.440000pt;}
._b_c01209{width:0.904000pt;}
._1_c01209{width:2.389333pt;}
._a_c01209{width:3.282667pt;}
._2_c01209{width:4.256000pt;}
._3_c01209{width:5.152000pt;}
._0_c01209{width:6.645333pt;}
._4_c01209{width:7.728000pt;}
._5_c01209{width:8.680000pt;}
._6_c01209{width:10.136000pt;}
._8_c01209{width:11.666667pt;}
._d_c01209{width:14.634667pt;}
._7_c01209{width:15.680000pt;}
._e_c01209{width:17.072000pt;}
._15_c01209{width:18.605333pt;}
._9_c01209{width:19.544000pt;}
._11_c01209{width:21.093333pt;}
._10_c01209{width:22.016000pt;}
._12_c01209{width:23.426667pt;}
._13_c01209{width:30.914667pt;}
.fs5_c01209{font-size:42.666667pt;}
.fs1_c01209{font-size:56.000000pt;}
.fs2_c01209{font-size:61.333333pt;}
.fs3_c01209{font-size:72.000000pt;}
.fs0_c01209{font-size:74.666667pt;}
.fs4_c01209{font-size:77.333333pt;}
.y0_c01209{bottom:0.000000pt;}
.y1e_c01209{bottom:2.760000pt;}
.y1d_c01209{bottom:6.425212pt;}
.y1c_c01209{bottom:51.600000pt;}
.y1b_c01209{bottom:92.400000pt;}
.y1a_c01209{bottom:114.266667pt;}
.y19_c01209{bottom:136.533333pt;}
.y18_c01209{bottom:159.600000pt;}
.y17_c01209{bottom:181.733333pt;}
.y16_c01209{bottom:203.733333pt;}
.y15_c01209{bottom:227.333333pt;}
.y14_c01209{bottom:248.933333pt;}
.y13_c01209{bottom:270.800000pt;}
.y12_c01209{bottom:294.000000pt;}
.y11_c01209{bottom:314.933333pt;}
.y10_c01209{bottom:336.533333pt;}
.yf_c01209{bottom:357.333333pt;}
.ye_c01209{bottom:378.533333pt;}
.yd_c01209{bottom:400.133333pt;}
.yc_c01209{bottom:421.200000pt;}
.yb_c01209{bottom:443.333333pt;}
.ya_c01209{bottom:465.333333pt;}
.y9_c01209{bottom:487.466667pt;}
.y8_c01209{bottom:509.066667pt;}
.y7_c01209{bottom:531.333333pt;}
.y6_c01209{bottom:553.200000pt;}
.y5_c01209{bottom:575.333333pt;}
.y4_c01209{bottom:597.200000pt;}
.y3_c01209{bottom:619.200000pt;}
.y2_c01209{bottom:641.600000pt;}
.y1_c01209{bottom:664.400000pt;}
.h8_c01209{height:11.733399pt;}
.h9_c01209{height:38.937500pt;}
.h2_c01209{height:70.902344pt;}
.h1_c01209{height:73.244792pt;}
.h7_c01209{height:75.898438pt;}
.h3_c01209{height:77.654948pt;}
.h4_c01209{height:84.269531pt;}
.h5_c01209{height:91.160156pt;}
.h6_c01209{height:97.912760pt;}
.h0_c01209{height:708.000000pt;}
.w2_c01209{width:93.222667pt;}
.w1_c01209{width:449.333333pt;}
.w0_c01209{width:449.533333pt;}
.x0_c01209{left:0.000000pt;}
.x3_c01209{left:73.866667pt;}
.x2_c01209{left:77.466667pt;}
.x5_c01209{left:79.200000pt;}
.x4_c01209{left:83.066667pt;}
.x6_c01209{left:170.666667pt;}
.x1_c01209{left:176.133333pt;}
.x8_c01209{left:181.934896pt;}
.x7_c01209{left:396.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f43f3681505a2aaacd046f63.woff2')format("woff");}.ff1_c01210{font-family:ff1_c01210;line-height:1.284180;font-style:normal;font-weight:normal;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_fe0425b1ea48a08725e26cce.woff2')format("woff");}.ff2_c01210{font-family:ff2_c01210;line-height:1.480469;font-style:normal;font-weight:normal;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_0adb11a2a882d159e1e60b13.woff2')format("woff");}.ff3_c01210{font-family:ff3_c01210;line-height:1.284668;font-style:normal;font-weight:normal;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_5bef709ca883ed28a6ebc119.woff2')format("woff");}.ff4_c01210{font-family:ff4_c01210;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01210{font-family:ff5_c01210;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01210{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01210{vertical-align:0.000000px;}
.ls2_c01210{letter-spacing:0.000000px;}
.ls1_c01210{letter-spacing:3.000000px;}
.ls3_c01210{letter-spacing:6.000000px;}
.ls0_c01210{letter-spacing:19.617000px;}
.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;}
}
.ws3_c01210{word-spacing:-20.967000px;}
.ws2_c01210{word-spacing:-16.629000px;}
.ws1_c01210{word-spacing:-15.183000px;}
.ws0_c01210{word-spacing:-4.788000px;}
.ws4_c01210{word-spacing:0.000000px;}
._1a_c01210{margin-left:-28.248000px;}
._e_c01210{margin-left:-18.480000px;}
._1c_c01210{margin-left:-14.700000px;}
._f_c01210{margin-left:-13.320000px;}
._d_c01210{margin-left:-11.904000px;}
._1d_c01210{margin-left:-10.668000px;}
._1b_c01210{margin-left:-8.964000px;}
._18_c01210{margin-left:-7.731000px;}
._16_c01210{margin-left:-6.444000px;}
._17_c01210{margin-left:-5.040000px;}
._12_c01210{margin-left:-3.936000px;}
._2_c01210{margin-left:-2.676000px;}
._a_c01210{margin-left:-1.008000px;}
._b_c01210{width:1.272000px;}
._c_c01210{width:2.904000px;}
._11_c01210{width:4.116000px;}
._1_c01210{width:5.544000px;}
._3_c01210{width:6.600000px;}
._9_c01210{width:7.776000px;}
._0_c01210{width:8.988000px;}
._14_c01210{width:10.128000px;}
._15_c01210{width:11.499000px;}
._4_c01210{width:13.320000px;}
._10_c01210{width:14.775000px;}
._5_c01210{width:16.740000px;}
._7_c01210{width:17.844000px;}
._13_c01210{width:19.212000px;}
._6_c01210{width:23.016000px;}
._8_c01210{width:288.765000px;}
._19_c01210{width:313.776000px;}
.fc2_c01210{color:transparent;}
.fc1_c01210{color:rgb(128,128,128);}
.fc0_c01210{color:rgb(0,0,0);}
.fs8_c01210{font-size:48.000000px;}
.fs1_c01210{font-size:60.000000px;}
.fs4_c01210{font-size:63.000000px;}
.fs6_c01210{font-size:69.000000px;}
.fs3_c01210{font-size:72.000000px;}
.fs5_c01210{font-size:78.000000px;}
.fs2_c01210{font-size:81.000000px;}
.fs0_c01210{font-size:84.000000px;}
.fs7_c01210{font-size:87.000000px;}
.y0_c01210{bottom:0.000000px;}
.y1f_c01210{bottom:3.105000px;}
.y1e_c01210{bottom:7.228363px;}
.y1d_c01210{bottom:40.500000px;}
.y1c_c01210{bottom:67.950000px;}
.y1b_c01210{bottom:93.900000px;}
.y1a_c01210{bottom:119.100000px;}
.y19_c01210{bottom:141.750000px;}
.y18_c01210{bottom:166.350000px;}
.y17_c01210{bottom:191.700000px;}
.y16_c01210{bottom:220.350000px;}
.y15_c01210{bottom:241.050000px;}
.y14_c01210{bottom:269.700000px;}
.y13_c01210{bottom:295.050000px;}
.y12_c01210{bottom:319.500000px;}
.y11_c01210{bottom:343.350000px;}
.y10_c01210{bottom:368.550000px;}
.yf_c01210{bottom:392.400000px;}
.ye_c01210{bottom:415.800000px;}
.yd_c01210{bottom:440.400000px;}
.yc_c01210{bottom:465.000000px;}
.yb_c01210{bottom:489.150000px;}
.ya_c01210{bottom:513.600000px;}
.y9_c01210{bottom:537.300000px;}
.y8_c01210{bottom:562.500000px;}
.y7_c01210{bottom:586.800000px;}
.y6_c01210{bottom:611.250000px;}
.y5_c01210{bottom:636.150000px;}
.y4_c01210{bottom:661.200000px;}
.y3_c01210{bottom:685.350000px;}
.y2_c01210{bottom:709.800000px;}
.y1_c01210{bottom:735.450000px;}
.h5_c01210{height:13.200074px;}
.h6_c01210{height:43.804688px;}
.h2_c01210{height:82.400391px;}
.h3_c01210{height:91.160156px;}
.h4_c01210{height:110.151855px;}
.h1_c01210{height:781.500000px;}
.h0_c01210{height:781.650000px;}
.w2_c01210{width:104.875500px;}
.w0_c01210{width:519.450000px;}
.w1_c01210{width:519.750000px;}
.x0_c01210{left:0.000000px;}
.x2_c01210{left:36.150000px;}
.x3_c01210{left:37.500000px;}
.x4_c01210{left:39.450000px;}
.x6_c01210{left:40.800000px;}
.x5_c01210{left:42.150000px;}
.x1_c01210{left:153.600000px;}
.x8_c01210{left:211.539230px;}
.x7_c01210{left:403.950000px;}
@media print{
.v0_c01210{vertical-align:0.000000pt;}
.ls2_c01210{letter-spacing:0.000000pt;}
.ls1_c01210{letter-spacing:2.666667pt;}
.ls3_c01210{letter-spacing:5.333333pt;}
.ls0_c01210{letter-spacing:17.437333pt;}
.ws3_c01210{word-spacing:-18.637333pt;}
.ws2_c01210{word-spacing:-14.781333pt;}
.ws1_c01210{word-spacing:-13.496000pt;}
.ws0_c01210{word-spacing:-4.256000pt;}
.ws4_c01210{word-spacing:0.000000pt;}
._1a_c01210{margin-left:-25.109333pt;}
._e_c01210{margin-left:-16.426667pt;}
._1c_c01210{margin-left:-13.066667pt;}
._f_c01210{margin-left:-11.840000pt;}
._d_c01210{margin-left:-10.581333pt;}
._1d_c01210{margin-left:-9.482667pt;}
._1b_c01210{margin-left:-7.968000pt;}
._18_c01210{margin-left:-6.872000pt;}
._16_c01210{margin-left:-5.728000pt;}
._17_c01210{margin-left:-4.480000pt;}
._12_c01210{margin-left:-3.498667pt;}
._2_c01210{margin-left:-2.378667pt;}
._a_c01210{margin-left:-0.896000pt;}
._b_c01210{width:1.130667pt;}
._c_c01210{width:2.581333pt;}
._11_c01210{width:3.658667pt;}
._1_c01210{width:4.928000pt;}
._3_c01210{width:5.866667pt;}
._9_c01210{width:6.912000pt;}
._0_c01210{width:7.989333pt;}
._14_c01210{width:9.002667pt;}
._15_c01210{width:10.221333pt;}
._4_c01210{width:11.840000pt;}
._10_c01210{width:13.133333pt;}
._5_c01210{width:14.880000pt;}
._7_c01210{width:15.861333pt;}
._13_c01210{width:17.077333pt;}
._6_c01210{width:20.458667pt;}
._8_c01210{width:256.680000pt;}
._19_c01210{width:278.912000pt;}
.fs8_c01210{font-size:42.666667pt;}
.fs1_c01210{font-size:53.333333pt;}
.fs4_c01210{font-size:56.000000pt;}
.fs6_c01210{font-size:61.333333pt;}
.fs3_c01210{font-size:64.000000pt;}
.fs5_c01210{font-size:69.333333pt;}
.fs2_c01210{font-size:72.000000pt;}
.fs0_c01210{font-size:74.666667pt;}
.fs7_c01210{font-size:77.333333pt;}
.y0_c01210{bottom:0.000000pt;}
.y1f_c01210{bottom:2.760000pt;}
.y1e_c01210{bottom:6.425212pt;}
.y1d_c01210{bottom:36.000000pt;}
.y1c_c01210{bottom:60.400000pt;}
.y1b_c01210{bottom:83.466667pt;}
.y1a_c01210{bottom:105.866667pt;}
.y19_c01210{bottom:126.000000pt;}
.y18_c01210{bottom:147.866667pt;}
.y17_c01210{bottom:170.400000pt;}
.y16_c01210{bottom:195.866667pt;}
.y15_c01210{bottom:214.266667pt;}
.y14_c01210{bottom:239.733333pt;}
.y13_c01210{bottom:262.266667pt;}
.y12_c01210{bottom:284.000000pt;}
.y11_c01210{bottom:305.200000pt;}
.y10_c01210{bottom:327.600000pt;}
.yf_c01210{bottom:348.800000pt;}
.ye_c01210{bottom:369.600000pt;}
.yd_c01210{bottom:391.466667pt;}
.yc_c01210{bottom:413.333333pt;}
.yb_c01210{bottom:434.800000pt;}
.ya_c01210{bottom:456.533333pt;}
.y9_c01210{bottom:477.600000pt;}
.y8_c01210{bottom:500.000000pt;}
.y7_c01210{bottom:521.600000pt;}
.y6_c01210{bottom:543.333333pt;}
.y5_c01210{bottom:565.466667pt;}
.y4_c01210{bottom:587.733333pt;}
.y3_c01210{bottom:609.200000pt;}
.y2_c01210{bottom:630.933333pt;}
.y1_c01210{bottom:653.733333pt;}
.h5_c01210{height:11.733399pt;}
.h6_c01210{height:38.937500pt;}
.h2_c01210{height:73.244792pt;}
.h3_c01210{height:81.031250pt;}
.h4_c01210{height:97.912760pt;}
.h1_c01210{height:694.666667pt;}
.h0_c01210{height:694.800000pt;}
.w2_c01210{width:93.222667pt;}
.w0_c01210{width:461.733333pt;}
.w1_c01210{width:462.000000pt;}
.x0_c01210{left:0.000000pt;}
.x2_c01210{left:32.133333pt;}
.x3_c01210{left:33.333333pt;}
.x4_c01210{left:35.066667pt;}
.x6_c01210{left:36.266667pt;}
.x5_c01210{left:37.466667pt;}
.x1_c01210{left:136.533333pt;}
.x8_c01210{left:188.034871pt;}
.x7_c01210{left:359.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6b1200d4dfe0554241f703aa.woff2')format("woff");}.ff1_c01211{font-family:ff1_c01211;line-height:1.480469;font-style:normal;font-weight:normal;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_6a503d7caab0b0865a277dd7.woff2')format("woff");}.ff2_c01211{font-family:ff2_c01211;line-height:1.568848;font-style:normal;font-weight:normal;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_4671c61d645a60e9acfcde39.woff2')format("woff");}.ff3_c01211{font-family:ff3_c01211;line-height:1.284668;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01211{font-family:ff4_c01211;line-height:1.219238;font-style: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);}
.v0_c01211{vertical-align:0.000000px;}
.ls0_c01211{letter-spacing:0.000000px;}
.ls1_c01211{letter-spacing:3.000000px;}
.ls2_c01211{letter-spacing:6.000000px;}
.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:-17.352000px;}
.ws1_c01211{word-spacing:0.000000px;}
._14_c01211{margin-left:-11.736000px;}
._11_c01211{margin-left:-10.662000px;}
._a_c01211{margin-left:-9.600000px;}
._9_c01211{margin-left:-8.343000px;}
._13_c01211{margin-left:-7.200000px;}
._e_c01211{margin-left:-5.832000px;}
._d_c01211{margin-left:-4.680000px;}
._4_c01211{margin-left:-3.240000px;}
._5_c01211{margin-left:-2.088000px;}
._b_c01211{margin-left:-1.074000px;}
._8_c01211{width:1.008000px;}
._6_c01211{width:2.808000px;}
._1_c01211{width:4.680000px;}
._c_c01211{width:5.832000px;}
._7_c01211{width:6.984000px;}
._3_c01211{width:8.136000px;}
._2_c01211{width:9.720000px;}
._15_c01211{width:10.800000px;}
._0_c01211{width:12.096000px;}
._f_c01211{width:13.392000px;}
._12_c01211{width:15.984000px;}
._10_c01211{width:44.640000px;}
._16_c01211{width:338.256000px;}
._17_c01211{width:449.820000px;}
.fc2_c01211{color:transparent;}
.fc1_c01211{color:rgb(128,128,128);}
.fc0_c01211{color:rgb(0,0,0);}
.fs3_c01211{font-size:48.000000px;}
.fs2_c01211{font-size:60.000000px;}
.fs0_c01211{font-size:72.000000px;}
.fs1_c01211{font-size:75.000000px;}
.y0_c01211{bottom:0.000000px;}
.y1f_c01211{bottom:3.105000px;}
.y1e_c01211{bottom:7.228357px;}
.y1d_c01211{bottom:56.130000px;}
.y1c_c01211{bottom:78.630000px;}
.y1b_c01211{bottom:103.230000px;}
.y1a_c01211{bottom:128.580000px;}
.y19_c01211{bottom:153.630000px;}
.y18_c01211{bottom:178.230000px;}
.y17_c01211{bottom:203.130000px;}
.y16_c01211{bottom:228.180000px;}
.y15_c01211{bottom:253.080000px;}
.y14_c01211{bottom:278.430000px;}
.y13_c01211{bottom:303.030000px;}
.y12_c01211{bottom:328.080000px;}
.y11_c01211{bottom:353.130000px;}
.y10_c01211{bottom:376.980000px;}
.yf_c01211{bottom:399.930000px;}
.ye_c01211{bottom:424.530000px;}
.yd_c01211{bottom:448.830000px;}
.yc_c01211{bottom:472.830000px;}
.yb_c01211{bottom:497.580000px;}
.ya_c01211{bottom:522.780000px;}
.y9_c01211{bottom:547.380000px;}
.y8_c01211{bottom:571.680000px;}
.y7_c01211{bottom:597.030000px;}
.y6_c01211{bottom:621.630000px;}
.y5_c01211{bottom:646.380000px;}
.y4_c01211{bottom:670.980000px;}
.y3_c01211{bottom:695.280000px;}
.y2_c01211{bottom:720.330000px;}
.y1_c01211{bottom:745.830000px;}
.h4_c01211{height:13.200074px;}
.h5_c01211{height:43.804688px;}
.h3_c01211{height:75.966797px;}
.h2_c01211{height:91.160156px;}
.h1_c01211{height:791.250000px;}
.h0_c01211{height:791.400000px;}
.w1_c01211{width:104.875500px;}
.w0_c01211{width:516.000000px;}
.x0_c01211{left:0.000000px;}
.x5_c01211{left:36.150000px;}
.x3_c01211{left:89.100000px;}
.x2_c01211{left:90.750000px;}
.x4_c01211{left:91.800000px;}
.x6_c01211{left:92.850000px;}
.x7_c01211{left:94.200000px;}
.x8_c01211{left:95.250000px;}
.x1_c01211{left:201.150000px;}
.xa_c01211{left:209.814240px;}
.x9_c01211{left:238.050000px;}
@media print{
.v0_c01211{vertical-align:0.000000pt;}
.ls0_c01211{letter-spacing:0.000000pt;}
.ls1_c01211{letter-spacing:2.666667pt;}
.ls2_c01211{letter-spacing:5.333333pt;}
.ws0_c01211{word-spacing:-15.424000pt;}
.ws1_c01211{word-spacing:0.000000pt;}
._14_c01211{margin-left:-10.432000pt;}
._11_c01211{margin-left:-9.477333pt;}
._a_c01211{margin-left:-8.533333pt;}
._9_c01211{margin-left:-7.416000pt;}
._13_c01211{margin-left:-6.400000pt;}
._e_c01211{margin-left:-5.184000pt;}
._d_c01211{margin-left:-4.160000pt;}
._4_c01211{margin-left:-2.880000pt;}
._5_c01211{margin-left:-1.856000pt;}
._b_c01211{margin-left:-0.954667pt;}
._8_c01211{width:0.896000pt;}
._6_c01211{width:2.496000pt;}
._1_c01211{width:4.160000pt;}
._c_c01211{width:5.184000pt;}
._7_c01211{width:6.208000pt;}
._3_c01211{width:7.232000pt;}
._2_c01211{width:8.640000pt;}
._15_c01211{width:9.600000pt;}
._0_c01211{width:10.752000pt;}
._f_c01211{width:11.904000pt;}
._12_c01211{width:14.208000pt;}
._10_c01211{width:39.680000pt;}
._16_c01211{width:300.672000pt;}
._17_c01211{width:399.840000pt;}
.fs3_c01211{font-size:42.666667pt;}
.fs2_c01211{font-size:53.333333pt;}
.fs0_c01211{font-size:64.000000pt;}
.fs1_c01211{font-size:66.666667pt;}
.y0_c01211{bottom:0.000000pt;}
.y1f_c01211{bottom:2.760000pt;}
.y1e_c01211{bottom:6.425206pt;}
.y1d_c01211{bottom:49.893333pt;}
.y1c_c01211{bottom:69.893333pt;}
.y1b_c01211{bottom:91.760000pt;}
.y1a_c01211{bottom:114.293333pt;}
.y19_c01211{bottom:136.560000pt;}
.y18_c01211{bottom:158.426667pt;}
.y17_c01211{bottom:180.560000pt;}
.y16_c01211{bottom:202.826667pt;}
.y15_c01211{bottom:224.960000pt;}
.y14_c01211{bottom:247.493333pt;}
.y13_c01211{bottom:269.360000pt;}
.y12_c01211{bottom:291.626667pt;}
.y11_c01211{bottom:313.893333pt;}
.y10_c01211{bottom:335.093333pt;}
.yf_c01211{bottom:355.493333pt;}
.ye_c01211{bottom:377.360000pt;}
.yd_c01211{bottom:398.960000pt;}
.yc_c01211{bottom:420.293333pt;}
.yb_c01211{bottom:442.293333pt;}
.ya_c01211{bottom:464.693333pt;}
.y9_c01211{bottom:486.560000pt;}
.y8_c01211{bottom:508.160000pt;}
.y7_c01211{bottom:530.693333pt;}
.y6_c01211{bottom:552.560000pt;}
.y5_c01211{bottom:574.560000pt;}
.y4_c01211{bottom:596.426667pt;}
.y3_c01211{bottom:618.026667pt;}
.y2_c01211{bottom:640.293333pt;}
.y1_c01211{bottom:662.960000pt;}
.h4_c01211{height:11.733399pt;}
.h5_c01211{height:38.937500pt;}
.h3_c01211{height:67.526042pt;}
.h2_c01211{height:81.031250pt;}
.h1_c01211{height:703.333333pt;}
.h0_c01211{height:703.466667pt;}
.w1_c01211{width:93.222667pt;}
.w0_c01211{width:458.666667pt;}
.x0_c01211{left:0.000000pt;}
.x5_c01211{left:32.133333pt;}
.x3_c01211{left:79.200000pt;}
.x2_c01211{left:80.666667pt;}
.x4_c01211{left:81.600000pt;}
.x6_c01211{left:82.533333pt;}
.x7_c01211{left:83.733333pt;}
.x8_c01211{left:84.666667pt;}
.x1_c01211{left:178.800000pt;}
.xa_c01211{left:186.501546pt;}
.x9_c01211{left:211.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_64c528d70ed1250f73d1b872.woff2')format("woff");}.ff1_c01212{font-family:ff1_c01212;line-height:1.480469;font-style:normal;font-weight:normal;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_03870e44a1e50e0720b63f6a.woff2')format("woff");}.ff2_c01212{font-family:ff2_c01212;line-height:1.568848;font-style:normal;font-weight:normal;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_a0d3260140b87c6ab5f2da6e.woff2')format("woff");}.ff3_c01212{font-family:ff3_c01212;line-height:1.284668;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01212{font-family:ff4_c01212;line-height:1.219238;font-style: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);}
.v0_c01212{vertical-align:0.000000px;}
.ls2_c01212{letter-spacing:-3.000000px;}
.ls3_c01212{letter-spacing:0.000000px;}
.ls1_c01212{letter-spacing:3.000000px;}
.ls0_c01212{letter-spacing:5.280000px;}
.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:-15.183000px;}
.ws1_c01212{word-spacing:0.000000px;}
._5_c01212{margin-left:-16.530000px;}
._14_c01212{margin-left:-11.559000px;}
._11_c01212{margin-left:-8.736000px;}
._7_c01212{margin-left:-7.569000px;}
._6_c01212{margin-left:-5.916000px;}
._10_c01212{margin-left:-4.680000px;}
._b_c01212{margin-left:-3.204000px;}
._a_c01212{margin-left:-1.656000px;}
._3_c01212{width:1.521000px;}
._9_c01212{width:2.664000px;}
._8_c01212{width:3.744000px;}
._d_c01212{width:4.878000px;}
._c_c01212{width:6.003000px;}
._13_c01212{width:7.263000px;}
._2_c01212{width:8.526000px;}
._12_c01212{width:9.993000px;}
._e_c01212{width:11.697000px;}
._f_c01212{width:13.455000px;}
._1_c01212{width:14.703000px;}
._15_c01212{width:16.566000px;}
._0_c01212{width:20.271000px;}
._4_c01212{width:271.902000px;}
.fc2_c01212{color:transparent;}
.fc1_c01212{color:rgb(128,128,128);}
.fc0_c01212{color:rgb(0,0,0);}
.fs4_c01212{font-size:48.000000px;}
.fs2_c01212{font-size:57.000000px;}
.fs3_c01212{font-size:63.000000px;}
.fs1_c01212{font-size:72.000000px;}
.fs0_c01212{font-size:87.000000px;}
.y0_c01212{bottom:0.000000px;}
.y1f_c01212{bottom:3.105000px;}
.y1e_c01212{bottom:7.228371px;}
.y1d_c01212{bottom:58.365000px;}
.y1c_c01212{bottom:84.465000px;}
.y1b_c01212{bottom:109.815000px;}
.y1a_c01212{bottom:133.965000px;}
.y19_c01212{bottom:160.365000px;}
.y18_c01212{bottom:184.965000px;}
.y17_c01212{bottom:211.065000px;}
.y16_c01212{bottom:235.965000px;}
.y15_c01212{bottom:260.865000px;}
.y14_c01212{bottom:284.565000px;}
.y13_c01212{bottom:309.915000px;}
.y12_c01212{bottom:335.115000px;}
.y11_c01212{bottom:358.515000px;}
.y10_c01212{bottom:382.515000px;}
.yf_c01212{bottom:408.165000px;}
.ye_c01212{bottom:430.965000px;}
.yd_c01212{bottom:455.265000px;}
.yc_c01212{bottom:479.715000px;}
.yb_c01212{bottom:504.015000px;}
.ya_c01212{bottom:527.265000px;}
.y9_c01212{bottom:551.265000px;}
.y8_c01212{bottom:576.165000px;}
.y7_c01212{bottom:600.765000px;}
.y6_c01212{bottom:625.365000px;}
.y5_c01212{bottom:649.665000px;}
.y4_c01212{bottom:674.115000px;}
.y3_c01212{bottom:698.715000px;}
.y2_c01212{bottom:723.615000px;}
.y1_c01212{bottom:749.715000px;}
.h5_c01212{height:13.200074px;}
.h6_c01212{height:43.804688px;}
.h4_c01212{height:79.765137px;}
.h3_c01212{height:91.160156px;}
.h2_c01212{height:110.151855px;}
.h0_c01212{height:793.275000px;}
.h1_c01212{height:793.500000px;}
.w2_c01212{width:104.875500px;}
.w1_c01212{width:543.000000px;}
.w0_c01212{width:543.225000px;}
.x0_c01212{left:0.000000px;}
.x2_c01212{left:34.500000px;}
.x3_c01212{left:35.700000px;}
.x4_c01212{left:37.800000px;}
.x5_c01212{left:38.850000px;}
.x6_c01212{left:40.050000px;}
.x7_c01212{left:78.000000px;}
.x1_c01212{left:155.550000px;}
.x9_c01212{left:223.426758px;}
.x8_c01212{left:358.200000px;}
@media print{
.v0_c01212{vertical-align:0.000000pt;}
.ls2_c01212{letter-spacing:-2.666667pt;}
.ls3_c01212{letter-spacing:0.000000pt;}
.ls1_c01212{letter-spacing:2.666667pt;}
.ls0_c01212{letter-spacing:4.693333pt;}
.ws0_c01212{word-spacing:-13.496000pt;}
.ws1_c01212{word-spacing:0.000000pt;}
._5_c01212{margin-left:-14.693333pt;}
._14_c01212{margin-left:-10.274667pt;}
._11_c01212{margin-left:-7.765333pt;}
._7_c01212{margin-left:-6.728000pt;}
._6_c01212{margin-left:-5.258667pt;}
._10_c01212{margin-left:-4.160000pt;}
._b_c01212{margin-left:-2.848000pt;}
._a_c01212{margin-left:-1.472000pt;}
._3_c01212{width:1.352000pt;}
._9_c01212{width:2.368000pt;}
._8_c01212{width:3.328000pt;}
._d_c01212{width:4.336000pt;}
._c_c01212{width:5.336000pt;}
._13_c01212{width:6.456000pt;}
._2_c01212{width:7.578667pt;}
._12_c01212{width:8.882667pt;}
._e_c01212{width:10.397333pt;}
._f_c01212{width:11.960000pt;}
._1_c01212{width:13.069333pt;}
._15_c01212{width:14.725333pt;}
._0_c01212{width:18.018667pt;}
._4_c01212{width:241.690667pt;}
.fs4_c01212{font-size:42.666667pt;}
.fs2_c01212{font-size:50.666667pt;}
.fs3_c01212{font-size:56.000000pt;}
.fs1_c01212{font-size:64.000000pt;}
.fs0_c01212{font-size:77.333333pt;}
.y0_c01212{bottom:0.000000pt;}
.y1f_c01212{bottom:2.760000pt;}
.y1e_c01212{bottom:6.425219pt;}
.y1d_c01212{bottom:51.880000pt;}
.y1c_c01212{bottom:75.080000pt;}
.y1b_c01212{bottom:97.613333pt;}
.y1a_c01212{bottom:119.080000pt;}
.y19_c01212{bottom:142.546667pt;}
.y18_c01212{bottom:164.413333pt;}
.y17_c01212{bottom:187.613333pt;}
.y16_c01212{bottom:209.746667pt;}
.y15_c01212{bottom:231.880000pt;}
.y14_c01212{bottom:252.946667pt;}
.y13_c01212{bottom:275.480000pt;}
.y12_c01212{bottom:297.880000pt;}
.y11_c01212{bottom:318.680000pt;}
.y10_c01212{bottom:340.013333pt;}
.yf_c01212{bottom:362.813333pt;}
.ye_c01212{bottom:383.080000pt;}
.yd_c01212{bottom:404.680000pt;}
.yc_c01212{bottom:426.413333pt;}
.yb_c01212{bottom:448.013333pt;}
.ya_c01212{bottom:468.680000pt;}
.y9_c01212{bottom:490.013333pt;}
.y8_c01212{bottom:512.146667pt;}
.y7_c01212{bottom:534.013333pt;}
.y6_c01212{bottom:555.880000pt;}
.y5_c01212{bottom:577.480000pt;}
.y4_c01212{bottom:599.213333pt;}
.y3_c01212{bottom:621.080000pt;}
.y2_c01212{bottom:643.213333pt;}
.y1_c01212{bottom:666.413333pt;}
.h5_c01212{height:11.733399pt;}
.h6_c01212{height:38.937500pt;}
.h4_c01212{height:70.902344pt;}
.h3_c01212{height:81.031250pt;}
.h2_c01212{height:97.912760pt;}
.h0_c01212{height:705.133333pt;}
.h1_c01212{height:705.333333pt;}
.w2_c01212{width:93.222667pt;}
.w1_c01212{width:482.666667pt;}
.w0_c01212{width:482.866667pt;}
.x0_c01212{left:0.000000pt;}
.x2_c01212{left:30.666667pt;}
.x3_c01212{left:31.733333pt;}
.x4_c01212{left:33.600000pt;}
.x5_c01212{left:34.533333pt;}
.x6_c01212{left:35.600000pt;}
.x7_c01212{left:69.333333pt;}
.x1_c01212{left:138.266667pt;}
.x9_c01212{left:198.601563pt;}
.x8_c01212{left:318.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_53cfc1768a729300805bf3fd.woff2')format("woff");}.ff1_c01213{font-family:ff1_c01213;line-height:1.480469;font-style:normal;font-weight:normal;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_acd539369a3f45737fddbe9b.woff2')format("woff");}.ff2_c01213{font-family:ff2_c01213;line-height:1.568848;font-style:normal;font-weight:normal;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_060ca1817bff9b84195c97ce.woff2')format("woff");}.ff3_c01213{font-family:ff3_c01213;line-height:1.575000;font-style:normal;font-weight:normal;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_c49453d3f95266137b017a3b.woff2')format("woff");}.ff4_c01213{font-family:ff4_c01213;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01213{font-family:ff5_c01213;line-height:1.219238;font-style: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;}
.ls3_c01213{letter-spacing:-6.000000px;}
.ls2_c01213{letter-spacing:-3.000000px;}
.ls0_c01213{letter-spacing:0.000000px;}
.ls1_c01213{letter-spacing:3.000000px;}
.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;}
}
.ws2_c01213{word-spacing:-17.352000px;}
.ws0_c01213{word-spacing:-15.798000px;}
.ws1_c01213{word-spacing:-9.039000px;}
.ws3_c01213{word-spacing:0.000000px;}
._7_c01213{margin-left:-14.040000px;}
._12_c01213{margin-left:-11.016000px;}
._f_c01213{margin-left:-8.928000px;}
._d_c01213{margin-left:-7.848000px;}
._11_c01213{margin-left:-6.624000px;}
._b_c01213{margin-left:-5.256000px;}
._9_c01213{margin-left:-3.672000px;}
._c_c01213{margin-left:-2.520000px;}
._a_c01213{margin-left:-1.512000px;}
._8_c01213{width:1.512000px;}
._2_c01213{width:2.592000px;}
._1_c01213{width:3.888000px;}
._3_c01213{width:5.040000px;}
._0_c01213{width:6.120000px;}
._4_c01213{width:8.136000px;}
._5_c01213{width:9.360000px;}
._6_c01213{width:11.088000px;}
._e_c01213{width:13.272000px;}
._13_c01213{width:15.912000px;}
._10_c01213{width:17.208000px;}
._14_c01213{width:26.784000px;}
._15_c01213{width:402.528000px;}
.fc2_c01213{color:transparent;}
.fc1_c01213{color:rgb(128,128,128);}
.fc0_c01213{color:rgb(0,0,0);}
.fs4_c01213{font-size:48.000000px;}
.fs2_c01213{font-size:63.000000px;}
.fs0_c01213{font-size:72.000000px;}
.fs1_c01213{font-size:78.000000px;}
.fs3_c01213{font-size:87.000000px;}
.y0_c01213{bottom:0.000000px;}
.y1f_c01213{bottom:3.105000px;}
.y1e_c01213{bottom:7.228371px;}
.y1d_c01213{bottom:57.765000px;}
.y1c_c01213{bottom:74.715000px;}
.y1b_c01213{bottom:100.965000px;}
.y1a_c01213{bottom:127.215000px;}
.y19_c01213{bottom:151.515000px;}
.y18_c01213{bottom:176.865000px;}
.y17_c01213{bottom:201.615000px;}
.y16_c01213{bottom:226.515000px;}
.y15_c01213{bottom:251.565000px;}
.y14_c01213{bottom:276.765000px;}
.y13_c01213{bottom:301.815000px;}
.y12_c01213{bottom:327.015000px;}
.y11_c01213{bottom:352.065000px;}
.y10_c01213{bottom:375.765000px;}
.yf_c01213{bottom:400.365000px;}
.ye_c01213{bottom:424.365000px;}
.yd_c01213{bottom:448.965000px;}
.yc_c01213{bottom:473.265000px;}
.yb_c01213{bottom:498.165000px;}
.ya_c01213{bottom:522.915000px;}
.y9_c01213{bottom:547.815000px;}
.y8_c01213{bottom:572.415000px;}
.y7_c01213{bottom:597.465000px;}
.y6_c01213{bottom:622.065000px;}
.y5_c01213{bottom:646.965000px;}
.y4_c01213{bottom:671.415000px;}
.y3_c01213{bottom:697.065000px;}
.y2_c01213{bottom:721.665000px;}
.y1_c01213{bottom:746.865000px;}
.h5_c01213{height:13.200074px;}
.h6_c01213{height:43.804688px;}
.h2_c01213{height:91.160156px;}
.h4_c01213{height:92.829000px;}
.h3_c01213{height:98.756836px;}
.h1_c01213{height:797.250000px;}
.h0_c01213{height:797.325000px;}
.w2_c01213{width:104.875500px;}
.w1_c01213{width:509.250000px;}
.w0_c01213{width:509.475000px;}
.x0_c01213{left:0.000000px;}
.xc_c01213{left:85.350000px;}
.xb_c01213{left:86.700000px;}
.xa_c01213{left:88.050000px;}
.x9_c01213{left:89.100000px;}
.x8_c01213{left:90.450000px;}
.x7_c01213{left:91.500000px;}
.x6_c01213{left:93.450000px;}
.x2_c01213{left:95.400000px;}
.x5_c01213{left:96.600000px;}
.x4_c01213{left:98.250000px;}
.x3_c01213{left:99.450000px;}
.xd_c01213{left:206.551758px;}
.x1_c01213{left:208.950000px;}
@media print{
.v0_c01213{vertical-align:0.000000pt;}
.ls3_c01213{letter-spacing:-5.333333pt;}
.ls2_c01213{letter-spacing:-2.666667pt;}
.ls0_c01213{letter-spacing:0.000000pt;}
.ls1_c01213{letter-spacing:2.666667pt;}
.ws2_c01213{word-spacing:-15.424000pt;}
.ws0_c01213{word-spacing:-14.042667pt;}
.ws1_c01213{word-spacing:-8.034667pt;}
.ws3_c01213{word-spacing:0.000000pt;}
._7_c01213{margin-left:-12.480000pt;}
._12_c01213{margin-left:-9.792000pt;}
._f_c01213{margin-left:-7.936000pt;}
._d_c01213{margin-left:-6.976000pt;}
._11_c01213{margin-left:-5.888000pt;}
._b_c01213{margin-left:-4.672000pt;}
._9_c01213{margin-left:-3.264000pt;}
._c_c01213{margin-left:-2.240000pt;}
._a_c01213{margin-left:-1.344000pt;}
._8_c01213{width:1.344000pt;}
._2_c01213{width:2.304000pt;}
._1_c01213{width:3.456000pt;}
._3_c01213{width:4.480000pt;}
._0_c01213{width:5.440000pt;}
._4_c01213{width:7.232000pt;}
._5_c01213{width:8.320000pt;}
._6_c01213{width:9.856000pt;}
._e_c01213{width:11.797333pt;}
._13_c01213{width:14.144000pt;}
._10_c01213{width:15.296000pt;}
._14_c01213{width:23.808000pt;}
._15_c01213{width:357.802667pt;}
.fs4_c01213{font-size:42.666667pt;}
.fs2_c01213{font-size:56.000000pt;}
.fs0_c01213{font-size:64.000000pt;}
.fs1_c01213{font-size:69.333333pt;}
.fs3_c01213{font-size:77.333333pt;}
.y0_c01213{bottom:0.000000pt;}
.y1f_c01213{bottom:2.760000pt;}
.y1e_c01213{bottom:6.425219pt;}
.y1d_c01213{bottom:51.346667pt;}
.y1c_c01213{bottom:66.413333pt;}
.y1b_c01213{bottom:89.746667pt;}
.y1a_c01213{bottom:113.080000pt;}
.y19_c01213{bottom:134.680000pt;}
.y18_c01213{bottom:157.213333pt;}
.y17_c01213{bottom:179.213333pt;}
.y16_c01213{bottom:201.346667pt;}
.y15_c01213{bottom:223.613333pt;}
.y14_c01213{bottom:246.013333pt;}
.y13_c01213{bottom:268.280000pt;}
.y12_c01213{bottom:290.680000pt;}
.y11_c01213{bottom:312.946667pt;}
.y10_c01213{bottom:334.013333pt;}
.yf_c01213{bottom:355.880000pt;}
.ye_c01213{bottom:377.213333pt;}
.yd_c01213{bottom:399.080000pt;}
.yc_c01213{bottom:420.680000pt;}
.yb_c01213{bottom:442.813333pt;}
.ya_c01213{bottom:464.813333pt;}
.y9_c01213{bottom:486.946667pt;}
.y8_c01213{bottom:508.813333pt;}
.y7_c01213{bottom:531.080000pt;}
.y6_c01213{bottom:552.946667pt;}
.y5_c01213{bottom:575.080000pt;}
.y4_c01213{bottom:596.813333pt;}
.y3_c01213{bottom:619.613333pt;}
.y2_c01213{bottom:641.480000pt;}
.y1_c01213{bottom:663.880000pt;}
.h5_c01213{height:11.733399pt;}
.h6_c01213{height:38.937500pt;}
.h2_c01213{height:81.031250pt;}
.h4_c01213{height:82.514667pt;}
.h3_c01213{height:87.783854pt;}
.h1_c01213{height:708.666667pt;}
.h0_c01213{height:708.733333pt;}
.w2_c01213{width:93.222667pt;}
.w1_c01213{width:452.666667pt;}
.w0_c01213{width:452.866667pt;}
.x0_c01213{left:0.000000pt;}
.xc_c01213{left:75.866667pt;}
.xb_c01213{left:77.066667pt;}
.xa_c01213{left:78.266667pt;}
.x9_c01213{left:79.200000pt;}
.x8_c01213{left:80.400000pt;}
.x7_c01213{left:81.333333pt;}
.x6_c01213{left:83.066667pt;}
.x2_c01213{left:84.800000pt;}
.x5_c01213{left:85.866667pt;}
.x4_c01213{left:87.333333pt;}
.x3_c01213{left:88.400000pt;}
.xd_c01213{left:183.601563pt;}
.x1_c01213{left:185.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b531a309397b39e0fd246f3a.woff2')format("woff");}.ff1_c01214{font-family:ff1_c01214;line-height:1.480469;font-style:normal;font-weight:normal;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_1ae243862ba76953b4ea1f62.woff2')format("woff");}.ff2_c01214{font-family:ff2_c01214;line-height:1.568848;font-style:normal;font-weight:normal;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_39b0127c5fa79892e5e9f49d.woff2')format("woff");}.ff3_c01214{font-family:ff3_c01214;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01214{font-family:ff4_c01214;line-height:1.219238;font-style: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);}
.v0_c01214{vertical-align:0.000000px;}
.ls6_c01214{letter-spacing:-3.000000px;}
.ls3_c01214{letter-spacing:0.000000px;}
.ls4_c01214{letter-spacing:3.000000px;}
.ls1_c01214{letter-spacing:6.000000px;}
.ls0_c01214{letter-spacing:8.388000px;}
.ls2_c01214{letter-spacing:8.988000px;}
.ls5_c01214{letter-spacing:30.000000px;}
.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;}
}
.ws1_c01214{word-spacing:-47.352000px;}
.ws0_c01214{word-spacing:-33.192000px;}
.ws2_c01214{word-spacing:-20.352000px;}
.ws3_c01214{word-spacing:0.000000px;}
._f_c01214{margin-left:-15.651000px;}
._a_c01214{margin-left:-10.503000px;}
._14_c01214{margin-left:-9.270000px;}
._8_c01214{margin-left:-8.253000px;}
._7_c01214{margin-left:-6.507000px;}
._10_c01214{margin-left:-5.004000px;}
._9_c01214{margin-left:-3.780000px;}
._e_c01214{margin-left:-2.547000px;}
._6_c01214{margin-left:-1.416000px;}
._5_c01214{width:1.728000px;}
._3_c01214{width:3.600000px;}
._1_c01214{width:5.400000px;}
._b_c01214{width:6.768000px;}
._0_c01214{width:8.568000px;}
._2_c01214{width:9.936000px;}
._c_c01214{width:11.214000px;}
._11_c01214{width:12.432000px;}
._13_c01214{width:14.010000px;}
._12_c01214{width:15.372000px;}
._d_c01214{width:16.773000px;}
._4_c01214{width:276.624000px;}
._15_c01214{width:390.825000px;}
.fc2_c01214{color:transparent;}
.fc1_c01214{color:rgb(128,128,128);}
.fc0_c01214{color:rgb(0,0,0);}
.fs4_c01214{font-size:48.000000px;}
.fs2_c01214{font-size:57.000000px;}
.fs1_c01214{font-size:63.000000px;}
.fs0_c01214{font-size:72.000000px;}
.fs3_c01214{font-size:87.000000px;}
.y0_c01214{bottom:0.000000px;}
.y1f_c01214{bottom:3.105000px;}
.y1e_c01214{bottom:7.228357px;}
.y1d_c01214{bottom:66.480000px;}
.y1c_c01214{bottom:92.880000px;}
.y1b_c01214{bottom:118.530000px;}
.y1a_c01214{bottom:143.430000px;}
.y19_c01214{bottom:167.730000px;}
.y18_c01214{bottom:192.030000px;}
.y17_c01214{bottom:217.080000px;}
.y16_c01214{bottom:240.930000px;}
.y15_c01214{bottom:266.280000px;}
.y14_c01214{bottom:290.880000px;}
.y13_c01214{bottom:315.180000px;}
.y12_c01214{bottom:338.130000px;}
.y11_c01214{bottom:362.580000px;}
.y10_c01214{bottom:387.780000px;}
.yf_c01214{bottom:410.430000px;}
.ye_c01214{bottom:435.030000px;}
.yd_c01214{bottom:459.330000px;}
.yc_c01214{bottom:483.030000px;}
.yb_c01214{bottom:507.330000px;}
.ya_c01214{bottom:531.180000px;}
.y9_c01214{bottom:555.180000px;}
.y8_c01214{bottom:579.180000px;}
.y7_c01214{bottom:604.230000px;}
.y6_c01214{bottom:628.080000px;}
.y5_c01214{bottom:653.130000px;}
.y4_c01214{bottom:677.730000px;}
.y3_c01214{bottom:701.280000px;}
.y2_c01214{bottom:726.630000px;}
.y1_c01214{bottom:751.980000px;}
.h5_c01214{height:13.200074px;}
.h6_c01214{height:43.804688px;}
.h3_c01214{height:79.765137px;}
.h2_c01214{height:91.160156px;}
.h4_c01214{height:110.151855px;}
.h1_c01214{height:789.750000px;}
.h0_c01214{height:790.050000px;}
.w1_c01214{width:104.875500px;}
.w0_c01214{width:537.000000px;}
.x0_c01214{left:0.000000px;}
.x2_c01214{left:26.700000px;}
.x3_c01214{left:27.750000px;}
.x4_c01214{left:29.100000px;}
.x5_c01214{left:30.150000px;}
.x6_c01214{left:31.650000px;}
.x1_c01214{left:205.650000px;}
.x8_c01214{left:220.314240px;}
.x7_c01214{left:237.150000px;}
@media print{
.v0_c01214{vertical-align:0.000000pt;}
.ls6_c01214{letter-spacing:-2.666667pt;}
.ls3_c01214{letter-spacing:0.000000pt;}
.ls4_c01214{letter-spacing:2.666667pt;}
.ls1_c01214{letter-spacing:5.333333pt;}
.ls0_c01214{letter-spacing:7.456000pt;}
.ls2_c01214{letter-spacing:7.989333pt;}
.ls5_c01214{letter-spacing:26.666667pt;}
.ws1_c01214{word-spacing:-42.090667pt;}
.ws0_c01214{word-spacing:-29.504000pt;}
.ws2_c01214{word-spacing:-18.090667pt;}
.ws3_c01214{word-spacing:0.000000pt;}
._f_c01214{margin-left:-13.912000pt;}
._a_c01214{margin-left:-9.336000pt;}
._14_c01214{margin-left:-8.240000pt;}
._8_c01214{margin-left:-7.336000pt;}
._7_c01214{margin-left:-5.784000pt;}
._10_c01214{margin-left:-4.448000pt;}
._9_c01214{margin-left:-3.360000pt;}
._e_c01214{margin-left:-2.264000pt;}
._6_c01214{margin-left:-1.258667pt;}
._5_c01214{width:1.536000pt;}
._3_c01214{width:3.200000pt;}
._1_c01214{width:4.800000pt;}
._b_c01214{width:6.016000pt;}
._0_c01214{width:7.616000pt;}
._2_c01214{width:8.832000pt;}
._c_c01214{width:9.968000pt;}
._11_c01214{width:11.050667pt;}
._13_c01214{width:12.453333pt;}
._12_c01214{width:13.664000pt;}
._d_c01214{width:14.909333pt;}
._4_c01214{width:245.888000pt;}
._15_c01214{width:347.400000pt;}
.fs4_c01214{font-size:42.666667pt;}
.fs2_c01214{font-size:50.666667pt;}
.fs1_c01214{font-size:56.000000pt;}
.fs0_c01214{font-size:64.000000pt;}
.fs3_c01214{font-size:77.333333pt;}
.y0_c01214{bottom:0.000000pt;}
.y1f_c01214{bottom:2.760000pt;}
.y1e_c01214{bottom:6.425206pt;}
.y1d_c01214{bottom:59.093333pt;}
.y1c_c01214{bottom:82.560000pt;}
.y1b_c01214{bottom:105.360000pt;}
.y1a_c01214{bottom:127.493333pt;}
.y19_c01214{bottom:149.093333pt;}
.y18_c01214{bottom:170.693333pt;}
.y17_c01214{bottom:192.960000pt;}
.y16_c01214{bottom:214.160000pt;}
.y15_c01214{bottom:236.693333pt;}
.y14_c01214{bottom:258.560000pt;}
.y13_c01214{bottom:280.160000pt;}
.y12_c01214{bottom:300.560000pt;}
.y11_c01214{bottom:322.293333pt;}
.y10_c01214{bottom:344.693333pt;}
.yf_c01214{bottom:364.826667pt;}
.ye_c01214{bottom:386.693333pt;}
.yd_c01214{bottom:408.293333pt;}
.yc_c01214{bottom:429.360000pt;}
.yb_c01214{bottom:450.960000pt;}
.ya_c01214{bottom:472.160000pt;}
.y9_c01214{bottom:493.493333pt;}
.y8_c01214{bottom:514.826667pt;}
.y7_c01214{bottom:537.093333pt;}
.y6_c01214{bottom:558.293333pt;}
.y5_c01214{bottom:580.560000pt;}
.y4_c01214{bottom:602.426667pt;}
.y3_c01214{bottom:623.360000pt;}
.y2_c01214{bottom:645.893333pt;}
.y1_c01214{bottom:668.426667pt;}
.h5_c01214{height:11.733399pt;}
.h6_c01214{height:38.937500pt;}
.h3_c01214{height:70.902344pt;}
.h2_c01214{height:81.031250pt;}
.h4_c01214{height:97.912760pt;}
.h1_c01214{height:702.000000pt;}
.h0_c01214{height:702.266667pt;}
.w1_c01214{width:93.222667pt;}
.w0_c01214{width:477.333333pt;}
.x0_c01214{left:0.000000pt;}
.x2_c01214{left:23.733333pt;}
.x3_c01214{left:24.666667pt;}
.x4_c01214{left:25.866667pt;}
.x5_c01214{left:26.800000pt;}
.x6_c01214{left:28.133333pt;}
.x1_c01214{left:182.800000pt;}
.x8_c01214{left:195.834880pt;}
.x7_c01214{left:210.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f249775002992fb3a396c926.woff2')format("woff");}.ff1_c01215{font-family:ff1_c01215;line-height:1.284180;font-style:normal;font-weight:normal;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_93f9a62cd9f7c2b65b35147f.woff2')format("woff");}.ff2_c01215{font-family:ff2_c01215;line-height:1.284668;font-style:normal;font-weight:normal;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_72b58c62825176879380ef73.woff2')format("woff");}.ff3_c01215{font-family:ff3_c01215;line-height:1.568848;font-style:normal;font-weight:normal;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_147ee546a4221e48b1226b50.woff2')format("woff");}.ff4_c01215{font-family:ff4_c01215;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01215{font-family:ff5_c01215;line-height:1.219238;font-style: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);}
.v0_c01215{vertical-align:0.000000px;}
.ls2_c01215{letter-spacing:0.000000px;}
.ls0_c01215{letter-spacing:3.000000px;}
.ls3_c01215{letter-spacing:6.000000px;}
.ls1_c01215{letter-spacing:14.388000px;}
.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:-20.352000px;}
.ws1_c01215{word-spacing:0.000000px;}
._12_c01215{margin-left:-9.732000px;}
._15_c01215{margin-left:-7.740000px;}
._d_c01215{margin-left:-6.408000px;}
._e_c01215{margin-left:-4.836000px;}
._7_c01215{margin-left:-2.952000px;}
._4_c01215{margin-left:-1.764000px;}
._6_c01215{width:1.188000px;}
._5_c01215{width:2.856000px;}
._1_c01215{width:3.948000px;}
._a_c01215{width:5.784000px;}
._2_c01215{width:6.804000px;}
._3_c01215{width:7.812000px;}
._0_c01215{width:9.828000px;}
._10_c01215{width:11.340000px;}
._9_c01215{width:12.528000px;}
._b_c01215{width:13.632000px;}
._f_c01215{width:14.688000px;}
._14_c01215{width:15.768000px;}
._8_c01215{width:17.712000px;}
._13_c01215{width:20.760000px;}
._11_c01215{width:21.804000px;}
._c_c01215{width:314.856000px;}
.fc2_c01215{color:transparent;}
.fc1_c01215{color:rgb(128,128,128);}
.fc0_c01215{color:rgb(0,0,0);}
.fs4_c01215{font-size:24.000000px;}
.fs6_c01215{font-size:48.000000px;}
.fs3_c01215{font-size:63.000000px;}
.fs2_c01215{font-size:66.000000px;}
.fs1_c01215{font-size:72.000000px;}
.fs5_c01215{font-size:75.000000px;}
.fs0_c01215{font-size:84.000000px;}
.y0_c01215{bottom:0.000000px;}
.y1f_c01215{bottom:3.105000px;}
.y1e_c01215{bottom:7.228357px;}
.y1d_c01215{bottom:71.280000px;}
.y1c_c01215{bottom:96.930000px;}
.y1b_c01215{bottom:116.880000px;}
.y1a_c01215{bottom:142.080000px;}
.y19_c01215{bottom:168.480000px;}
.y18_c01215{bottom:192.480000px;}
.y17_c01215{bottom:216.780000px;}
.y16_c01215{bottom:242.430000px;}
.y15_c01215{bottom:266.730000px;}
.y14_c01215{bottom:291.330000px;}
.y13_c01215{bottom:316.980000px;}
.y12_c01215{bottom:340.980000px;}
.y11_c01215{bottom:365.130000px;}
.y10_c01215{bottom:389.580000px;}
.yf_c01215{bottom:412.830000px;}
.ye_c01215{bottom:436.830000px;}
.yd_c01215{bottom:460.980000px;}
.yc_c01215{bottom:484.980000px;}
.yb_c01215{bottom:510.030000px;}
.ya_c01215{bottom:534.330000px;}
.y9_c01215{bottom:558.930000px;}
.y8_c01215{bottom:583.830000px;}
.y7_c01215{bottom:608.880000px;}
.y6_c01215{bottom:633.480000px;}
.y5_c01215{bottom:658.080000px;}
.y4_c01215{bottom:682.380000px;}
.y3_c01215{bottom:708.030000px;}
.y2_c01215{bottom:732.480000px;}
.y1_c01215{bottom:757.980000px;}
.h5_c01215{height:13.200074px;}
.h6_c01215{height:43.804688px;}
.h4_c01215{height:73.608398px;}
.h2_c01215{height:82.441406px;}
.h3_c01215{height:91.160156px;}
.h0_c01215{height:794.100000px;}
.h1_c01215{height:794.250000px;}
.w2_c01215{width:104.875500px;}
.w1_c01215{width:520.500000px;}
.w0_c01215{width:520.800000px;}
.x0_c01215{left:0.000000px;}
.x5_c01215{left:99.300000px;}
.x2_c01215{left:103.650000px;}
.x3_c01215{left:105.000000px;}
.x4_c01215{left:106.050000px;}
.x6_c01215{left:107.700000px;}
.x8_c01215{left:108.750000px;}
.x7_c01215{left:109.800000px;}
.xa_c01215{left:212.214249px;}
.x1_c01215{left:213.900000px;}
.x9_c01215{left:436.500000px;}
@media print{
.v0_c01215{vertical-align:0.000000pt;}
.ls2_c01215{letter-spacing:0.000000pt;}
.ls0_c01215{letter-spacing:2.666667pt;}
.ls3_c01215{letter-spacing:5.333333pt;}
.ls1_c01215{letter-spacing:12.789333pt;}
.ws0_c01215{word-spacing:-18.090667pt;}
.ws1_c01215{word-spacing:0.000000pt;}
._12_c01215{margin-left:-8.650667pt;}
._15_c01215{margin-left:-6.880000pt;}
._d_c01215{margin-left:-5.696000pt;}
._e_c01215{margin-left:-4.298667pt;}
._7_c01215{margin-left:-2.624000pt;}
._4_c01215{margin-left:-1.568000pt;}
._6_c01215{width:1.056000pt;}
._5_c01215{width:2.538667pt;}
._1_c01215{width:3.509333pt;}
._a_c01215{width:5.141333pt;}
._2_c01215{width:6.048000pt;}
._3_c01215{width:6.944000pt;}
._0_c01215{width:8.736000pt;}
._10_c01215{width:10.080000pt;}
._9_c01215{width:11.136000pt;}
._b_c01215{width:12.117333pt;}
._f_c01215{width:13.056000pt;}
._14_c01215{width:14.016000pt;}
._8_c01215{width:15.744000pt;}
._13_c01215{width:18.453333pt;}
._11_c01215{width:19.381333pt;}
._c_c01215{width:279.872000pt;}
.fs4_c01215{font-size:21.333333pt;}
.fs6_c01215{font-size:42.666667pt;}
.fs3_c01215{font-size:56.000000pt;}
.fs2_c01215{font-size:58.666667pt;}
.fs1_c01215{font-size:64.000000pt;}
.fs5_c01215{font-size:66.666667pt;}
.fs0_c01215{font-size:74.666667pt;}
.y0_c01215{bottom:0.000000pt;}
.y1f_c01215{bottom:2.760000pt;}
.y1e_c01215{bottom:6.425206pt;}
.y1d_c01215{bottom:63.360000pt;}
.y1c_c01215{bottom:86.160000pt;}
.y1b_c01215{bottom:103.893333pt;}
.y1a_c01215{bottom:126.293333pt;}
.y19_c01215{bottom:149.760000pt;}
.y18_c01215{bottom:171.093333pt;}
.y17_c01215{bottom:192.693333pt;}
.y16_c01215{bottom:215.493333pt;}
.y15_c01215{bottom:237.093333pt;}
.y14_c01215{bottom:258.960000pt;}
.y13_c01215{bottom:281.760000pt;}
.y12_c01215{bottom:303.093333pt;}
.y11_c01215{bottom:324.560000pt;}
.y10_c01215{bottom:346.293333pt;}
.yf_c01215{bottom:366.960000pt;}
.ye_c01215{bottom:388.293333pt;}
.yd_c01215{bottom:409.760000pt;}
.yc_c01215{bottom:431.093333pt;}
.yb_c01215{bottom:453.360000pt;}
.ya_c01215{bottom:474.960000pt;}
.y9_c01215{bottom:496.826667pt;}
.y8_c01215{bottom:518.960000pt;}
.y7_c01215{bottom:541.226667pt;}
.y6_c01215{bottom:563.093333pt;}
.y5_c01215{bottom:584.960000pt;}
.y4_c01215{bottom:606.560000pt;}
.y3_c01215{bottom:629.360000pt;}
.y2_c01215{bottom:651.093333pt;}
.y1_c01215{bottom:673.760000pt;}
.h5_c01215{height:11.733399pt;}
.h6_c01215{height:38.937500pt;}
.h4_c01215{height:65.429688pt;}
.h2_c01215{height:73.281250pt;}
.h3_c01215{height:81.031250pt;}
.h0_c01215{height:705.866667pt;}
.h1_c01215{height:706.000000pt;}
.w2_c01215{width:93.222667pt;}
.w1_c01215{width:462.666667pt;}
.w0_c01215{width:462.933333pt;}
.x0_c01215{left:0.000000pt;}
.x5_c01215{left:88.266667pt;}
.x2_c01215{left:92.133333pt;}
.x3_c01215{left:93.333333pt;}
.x4_c01215{left:94.266667pt;}
.x6_c01215{left:95.733333pt;}
.x8_c01215{left:96.666667pt;}
.x7_c01215{left:97.600000pt;}
.xa_c01215{left:188.634888pt;}
.x1_c01215{left:190.133333pt;}
.x9_c01215{left:388.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_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_f75396a852b7b5351e033fdb.woff2')format("woff");}.ff1_c01216{font-family:ff1_c01216;line-height:1.480469;font-style:normal;font-weight:normal;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_2140a03803692a49ddc99cb2.woff2')format("woff");}.ff2_c01216{font-family:ff2_c01216;line-height:1.284180;font-style:normal;font-weight:normal;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_2965bbe8e6d63cc07e4c90d8.woff2')format("woff");}.ff3_c01216{font-family:ff3_c01216;line-height:1.568848;font-style:normal;font-weight:normal;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_e2cd81135632af4e4f0745e4.woff2')format("woff");}.ff4_c01216{font-family:ff4_c01216;line-height:1.575000;font-style:normal;font-weight:normal;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_d7a8513b4ffcba6d2c244d90.woff2')format("woff");}.ff5_c01216{font-family:ff5_c01216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01216;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01216{font-family:ff6_c01216;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01216{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01216{vertical-align:0.000000px;}
.ls6_c01216{letter-spacing:-6.000000px;}
.ls3_c01216{letter-spacing:0.000000px;}
.ls0_c01216{letter-spacing:3.000000px;}
.ls2_c01216{letter-spacing:3.588000px;}
.ls5_c01216{letter-spacing:6.000000px;}
.ls4_c01216{letter-spacing:15.000000px;}
.ls1_c01216{letter-spacing:17.988000px;}
.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;}
}
.ws0_c01216{word-spacing:-54.000000px;}
.ws2_c01216{word-spacing:-21.000000px;}
.ws3_c01216{word-spacing:-18.582000px;}
.ws1_c01216{word-spacing:-17.352000px;}
.ws4_c01216{word-spacing:0.000000px;}
._1c_c01216{margin-left:-30.924000px;}
._6_c01216{margin-left:-14.976000px;}
._7_c01216{margin-left:-10.320000px;}
._d_c01216{margin-left:-6.960000px;}
._17_c01216{margin-left:-5.736000px;}
._e_c01216{margin-left:-4.680000px;}
._f_c01216{margin-left:-3.096000px;}
._11_c01216{margin-left:-1.440000px;}
._9_c01216{width:1.080000px;}
._4_c01216{width:2.160000px;}
._c_c01216{width:3.240000px;}
._3_c01216{width:4.608000px;}
._0_c01216{width:6.336000px;}
._2_c01216{width:7.416000px;}
._16_c01216{width:8.424000px;}
._12_c01216{width:10.224000px;}
._1_c01216{width:12.096000px;}
._10_c01216{width:13.896000px;}
._13_c01216{width:15.408000px;}
._15_c01216{width:16.632000px;}
._14_c01216{width:19.392000px;}
._1b_c01216{width:21.840000px;}
._a_c01216{width:23.472000px;}
._18_c01216{width:24.624000px;}
._1a_c01216{width:25.704000px;}
._8_c01216{width:27.864000px;}
._b_c01216{width:29.016000px;}
._19_c01216{width:35.640000px;}
._1d_c01216{width:351.876000px;}
._5_c01216{width:378.048000px;}
.fc2_c01216{color:transparent;}
.fc1_c01216{color:rgb(128,128,128);}
.fc0_c01216{color:rgb(0,0,0);}
.fs2_c01216{font-size:24.000000px;}
.fs6_c01216{font-size:48.000000px;}
.fs3_c01216{font-size:63.000000px;}
.fs0_c01216{font-size:72.000000px;}
.fs1_c01216{font-size:78.000000px;}
.fs4_c01216{font-size:84.000000px;}
.fs5_c01216{font-size:102.000000px;}
.y0_c01216{bottom:0.000000px;}
.y1f_c01216{bottom:3.105000px;}
.y1e_c01216{bottom:7.228363px;}
.y1d_c01216{bottom:50.700000px;}
.y1c_c01216{bottom:77.400000px;}
.y1b_c01216{bottom:102.900000px;}
.y1a_c01216{bottom:127.950000px;}
.y19_c01216{bottom:153.150000px;}
.y18_c01216{bottom:177.150000px;}
.y17_c01216{bottom:201.900000px;}
.y16_c01216{bottom:226.500000px;}
.y15_c01216{bottom:250.200000px;}
.y14_c01216{bottom:275.850000px;}
.y13_c01216{bottom:300.750000px;}
.y12_c01216{bottom:324.600000px;}
.y11_c01216{bottom:349.950000px;}
.y10_c01216{bottom:374.250000px;}
.yf_c01216{bottom:396.600000px;}
.ye_c01216{bottom:421.500000px;}
.yd_c01216{bottom:446.550000px;}
.yc_c01216{bottom:470.850000px;}
.yb_c01216{bottom:494.550000px;}
.ya_c01216{bottom:519.000000px;}
.y9_c01216{bottom:542.250000px;}
.y8_c01216{bottom:567.000000px;}
.y7_c01216{bottom:591.600000px;}
.y6_c01216{bottom:616.500000px;}
.y5_c01216{bottom:640.950000px;}
.y4_c01216{bottom:665.550000px;}
.y3_c01216{bottom:689.850000px;}
.y2_c01216{bottom:714.750000px;}
.y1_c01216{bottom:739.350000px;}
.h5_c01216{height:13.200074px;}
.h6_c01216{height:43.804688px;}
.h2_c01216{height:84.269531px;}
.h3_c01216{height:91.160156px;}
.h4_c01216{height:119.381836px;}
.h1_c01216{height:788.250000px;}
.h0_c01216{height:788.400000px;}
.w1_c01216{width:104.875500px;}
.w0_c01216{width:543.000000px;}
.x0_c01216{left:0.000000px;}
.x2_c01216{left:33.450000px;}
.x3_c01216{left:34.800000px;}
.x4_c01216{left:36.750000px;}
.x5_c01216{left:38.850000px;}
.x6_c01216{left:39.900000px;}
.x7_c01216{left:40.950000px;}
.x8_c01216{left:42.300000px;}
.x9_c01216{left:43.950000px;}
.x1_c01216{left:132.900000px;}
.xb_c01216{left:223.314240px;}
.xa_c01216{left:230.550000px;}
@media print{
.v0_c01216{vertical-align:0.000000pt;}
.ls6_c01216{letter-spacing:-5.333333pt;}
.ls3_c01216{letter-spacing:0.000000pt;}
.ls0_c01216{letter-spacing:2.666667pt;}
.ls2_c01216{letter-spacing:3.189333pt;}
.ls5_c01216{letter-spacing:5.333333pt;}
.ls4_c01216{letter-spacing:13.333333pt;}
.ls1_c01216{letter-spacing:15.989333pt;}
.ws0_c01216{word-spacing:-48.000000pt;}
.ws2_c01216{word-spacing:-18.666667pt;}
.ws3_c01216{word-spacing:-16.517333pt;}
.ws1_c01216{word-spacing:-15.424000pt;}
.ws4_c01216{word-spacing:0.000000pt;}
._1c_c01216{margin-left:-27.488000pt;}
._6_c01216{margin-left:-13.312000pt;}
._7_c01216{margin-left:-9.173333pt;}
._d_c01216{margin-left:-6.186667pt;}
._17_c01216{margin-left:-5.098667pt;}
._e_c01216{margin-left:-4.160000pt;}
._f_c01216{margin-left:-2.752000pt;}
._11_c01216{margin-left:-1.280000pt;}
._9_c01216{width:0.960000pt;}
._4_c01216{width:1.920000pt;}
._c_c01216{width:2.880000pt;}
._3_c01216{width:4.096000pt;}
._0_c01216{width:5.632000pt;}
._2_c01216{width:6.592000pt;}
._16_c01216{width:7.488000pt;}
._12_c01216{width:9.088000pt;}
._1_c01216{width:10.752000pt;}
._10_c01216{width:12.352000pt;}
._13_c01216{width:13.696000pt;}
._15_c01216{width:14.784000pt;}
._14_c01216{width:17.237333pt;}
._1b_c01216{width:19.413333pt;}
._a_c01216{width:20.864000pt;}
._18_c01216{width:21.888000pt;}
._1a_c01216{width:22.848000pt;}
._8_c01216{width:24.768000pt;}
._b_c01216{width:25.792000pt;}
._19_c01216{width:31.680000pt;}
._1d_c01216{width:312.778667pt;}
._5_c01216{width:336.042667pt;}
.fs2_c01216{font-size:21.333333pt;}
.fs6_c01216{font-size:42.666667pt;}
.fs3_c01216{font-size:56.000000pt;}
.fs0_c01216{font-size:64.000000pt;}
.fs1_c01216{font-size:69.333333pt;}
.fs4_c01216{font-size:74.666667pt;}
.fs5_c01216{font-size:90.666667pt;}
.y0_c01216{bottom:0.000000pt;}
.y1f_c01216{bottom:2.760000pt;}
.y1e_c01216{bottom:6.425212pt;}
.y1d_c01216{bottom:45.066667pt;}
.y1c_c01216{bottom:68.800000pt;}
.y1b_c01216{bottom:91.466667pt;}
.y1a_c01216{bottom:113.733333pt;}
.y19_c01216{bottom:136.133333pt;}
.y18_c01216{bottom:157.466667pt;}
.y17_c01216{bottom:179.466667pt;}
.y16_c01216{bottom:201.333333pt;}
.y15_c01216{bottom:222.400000pt;}
.y14_c01216{bottom:245.200000pt;}
.y13_c01216{bottom:267.333333pt;}
.y12_c01216{bottom:288.533333pt;}
.y11_c01216{bottom:311.066667pt;}
.y10_c01216{bottom:332.666667pt;}
.yf_c01216{bottom:352.533333pt;}
.ye_c01216{bottom:374.666667pt;}
.yd_c01216{bottom:396.933333pt;}
.yc_c01216{bottom:418.533333pt;}
.yb_c01216{bottom:439.600000pt;}
.ya_c01216{bottom:461.333333pt;}
.y9_c01216{bottom:482.000000pt;}
.y8_c01216{bottom:504.000000pt;}
.y7_c01216{bottom:525.866667pt;}
.y6_c01216{bottom:548.000000pt;}
.y5_c01216{bottom:569.733333pt;}
.y4_c01216{bottom:591.600000pt;}
.y3_c01216{bottom:613.200000pt;}
.y2_c01216{bottom:635.333333pt;}
.y1_c01216{bottom:657.200000pt;}
.h5_c01216{height:11.733399pt;}
.h6_c01216{height:38.937500pt;}
.h2_c01216{height:74.906250pt;}
.h3_c01216{height:81.031250pt;}
.h4_c01216{height:106.117188pt;}
.h1_c01216{height:700.666667pt;}
.h0_c01216{height:700.800000pt;}
.w1_c01216{width:93.222667pt;}
.w0_c01216{width:482.666667pt;}
.x0_c01216{left:0.000000pt;}
.x2_c01216{left:29.733333pt;}
.x3_c01216{left:30.933333pt;}
.x4_c01216{left:32.666667pt;}
.x5_c01216{left:34.533333pt;}
.x6_c01216{left:35.466667pt;}
.x7_c01216{left:36.400000pt;}
.x8_c01216{left:37.600000pt;}
.x9_c01216{left:39.066667pt;}
.x1_c01216{left:118.133333pt;}
.xb_c01216{left:198.501546pt;}
.xa_c01216{left:204.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_60e004221a5b0bfabca332e3.woff2')format("woff");}.ff1_c01217{font-family:ff1_c01217;line-height:1.284180;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01217{font-family:ff2_c01217;line-height:1.284668;font-style:normal;font-weight:normal;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_d6a843536450bb7e0a9ec4ba.woff2')format("woff");}.ff3_c01217{font-family:ff3_c01217;line-height:1.568848;font-style:normal;font-weight:normal;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_41b19294eacdfcbe4b106d43.woff2')format("woff");}.ff4_c01217{font-family:ff4_c01217;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01217;src:url('chunks/assets/font_1b70de7279917a38cc072b20.woff2')format("woff");}.ff5_c01217{font-family:ff5_c01217;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01217;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01217{font-family:ff6_c01217;line-height:1.219238;font-style: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;}
.ls2_c01217{letter-spacing:-6.000000px;}
.ls0_c01217{letter-spacing:0.000000px;}
.ls1_c01217{letter-spacing:3.000000px;}
.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:-33.192000px;}
.ws1_c01217{word-spacing:-24.051000px;}
.ws2_c01217{word-spacing:-16.629000px;}
.ws3_c01217{word-spacing:0.000000px;}
._b_c01217{margin-left:-20.592000px;}
._19_c01217{margin-left:-18.366000px;}
._10_c01217{margin-left:-16.632000px;}
._e_c01217{margin-left:-12.384000px;}
._15_c01217{margin-left:-11.184000px;}
._f_c01217{margin-left:-9.720000px;}
._18_c01217{margin-left:-8.700000px;}
._13_c01217{margin-left:-7.680000px;}
._a_c01217{margin-left:-6.192000px;}
._1c_c01217{margin-left:-5.190000px;}
._6_c01217{margin-left:-4.104000px;}
._8_c01217{margin-left:-2.472000px;}
._7_c01217{margin-left:-1.464000px;}
._3_c01217{width:1.680000px;}
._4_c01217{width:3.024000px;}
._1_c01217{width:4.872000px;}
._12_c01217{width:6.288000px;}
._14_c01217{width:7.392000px;}
._0_c01217{width:8.400000px;}
._2_c01217{width:9.576000px;}
._9_c01217{width:10.632000px;}
._d_c01217{width:12.312000px;}
._5_c01217{width:13.944000px;}
._c_c01217{width:16.440000px;}
._1a_c01217{width:19.434000px;}
._17_c01217{width:27.753000px;}
._1b_c01217{width:57.879000px;}
._16_c01217{width:62.316000px;}
._11_c01217{width:86.040000px;}
.fc2_c01217{color:transparent;}
.fc1_c01217{color:rgb(128,128,128);}
.fc0_c01217{color:rgb(0,0,0);}
.fs7_c01217{font-size:48.000000px;}
.fs2_c01217{font-size:60.000000px;}
.fs3_c01217{font-size:63.000000px;}
.fs6_c01217{font-size:66.000000px;}
.fs4_c01217{font-size:69.000000px;}
.fs1_c01217{font-size:72.000000px;}
.fs0_c01217{font-size:84.000000px;}
.fs5_c01217{font-size:87.000000px;}
.y0_c01217{bottom:0.000000px;}
.y1e_c01217{bottom:3.105000px;}
.y1d_c01217{bottom:7.228371px;}
.y1c_c01217{bottom:68.565000px;}
.y1b_c01217{bottom:92.565000px;}
.y1a_c01217{bottom:118.815000px;}
.y19_c01217{bottom:143.865000px;}
.y18_c01217{bottom:167.865000px;}
.y17_c01217{bottom:192.465000px;}
.y16_c01217{bottom:221.115000px;}
.y15_c01217{bottom:243.015000px;}
.y14_c01217{bottom:267.615000px;}
.y13_c01217{bottom:294.765000px;}
.y12_c01217{bottom:317.265000px;}
.y11_c01217{bottom:342.015000px;}
.y10_c01217{bottom:365.565000px;}
.yf_c01217{bottom:390.165000px;}
.ye_c01217{bottom:413.415000px;}
.yd_c01217{bottom:438.165000px;}
.yc_c01217{bottom:461.415000px;}
.yb_c01217{bottom:486.465000px;}
.ya_c01217{bottom:510.315000px;}
.y9_c01217{bottom:534.915000px;}
.y8_c01217{bottom:559.365000px;}
.y7_c01217{bottom:584.865000px;}
.y6_c01217{bottom:608.265000px;}
.y5_c01217{bottom:633.165000px;}
.y4_c01217{bottom:657.465000px;}
.y3_c01217{bottom:682.215000px;}
.y2_c01217{bottom:706.815000px;}
.y1_c01217{bottom:732.165000px;}
.h6_c01217{height:13.200074px;}
.h7_c01217{height:43.804688px;}
.h2_c01217{height:82.441406px;}
.h4_c01217{height:87.361816px;}
.h3_c01217{height:91.160156px;}
.h5_c01217{height:110.151855px;}
.h1_c01217{height:777.000000px;}
.h0_c01217{height:777.075000px;}
.w2_c01217{width:104.875500px;}
.w0_c01217{width:519.450000px;}
.w1_c01217{width:519.750000px;}
.x0_c01217{left:0.000000px;}
.x3_c01217{left:34.800000px;}
.x5_c01217{left:99.900000px;}
.x4_c01217{left:100.950000px;}
.x2_c01217{left:102.150000px;}
.x1_c01217{left:209.850000px;}
.x6_c01217{left:211.539230px;}
@media print{
.v0_c01217{vertical-align:0.000000pt;}
.ls2_c01217{letter-spacing:-5.333333pt;}
.ls0_c01217{letter-spacing:0.000000pt;}
.ls1_c01217{letter-spacing:2.666667pt;}
.ws0_c01217{word-spacing:-29.504000pt;}
.ws1_c01217{word-spacing:-21.378667pt;}
.ws2_c01217{word-spacing:-14.781333pt;}
.ws3_c01217{word-spacing:0.000000pt;}
._b_c01217{margin-left:-18.304000pt;}
._19_c01217{margin-left:-16.325333pt;}
._10_c01217{margin-left:-14.784000pt;}
._e_c01217{margin-left:-11.008000pt;}
._15_c01217{margin-left:-9.941333pt;}
._f_c01217{margin-left:-8.640000pt;}
._18_c01217{margin-left:-7.733333pt;}
._13_c01217{margin-left:-6.826667pt;}
._a_c01217{margin-left:-5.504000pt;}
._1c_c01217{margin-left:-4.613333pt;}
._6_c01217{margin-left:-3.648000pt;}
._8_c01217{margin-left:-2.197333pt;}
._7_c01217{margin-left:-1.301333pt;}
._3_c01217{width:1.493333pt;}
._4_c01217{width:2.688000pt;}
._1_c01217{width:4.330667pt;}
._12_c01217{width:5.589333pt;}
._14_c01217{width:6.570667pt;}
._0_c01217{width:7.466667pt;}
._2_c01217{width:8.512000pt;}
._9_c01217{width:9.450667pt;}
._d_c01217{width:10.944000pt;}
._5_c01217{width:12.394667pt;}
._c_c01217{width:14.613333pt;}
._1a_c01217{width:17.274667pt;}
._17_c01217{width:24.669333pt;}
._1b_c01217{width:51.448000pt;}
._16_c01217{width:55.392000pt;}
._11_c01217{width:76.480000pt;}
.fs7_c01217{font-size:42.666667pt;}
.fs2_c01217{font-size:53.333333pt;}
.fs3_c01217{font-size:56.000000pt;}
.fs6_c01217{font-size:58.666667pt;}
.fs4_c01217{font-size:61.333333pt;}
.fs1_c01217{font-size:64.000000pt;}
.fs0_c01217{font-size:74.666667pt;}
.fs5_c01217{font-size:77.333333pt;}
.y0_c01217{bottom:0.000000pt;}
.y1e_c01217{bottom:2.760000pt;}
.y1d_c01217{bottom:6.425219pt;}
.y1c_c01217{bottom:60.946667pt;}
.y1b_c01217{bottom:82.280000pt;}
.y1a_c01217{bottom:105.613333pt;}
.y19_c01217{bottom:127.880000pt;}
.y18_c01217{bottom:149.213333pt;}
.y17_c01217{bottom:171.080000pt;}
.y16_c01217{bottom:196.546667pt;}
.y15_c01217{bottom:216.013333pt;}
.y14_c01217{bottom:237.880000pt;}
.y13_c01217{bottom:262.013333pt;}
.y12_c01217{bottom:282.013333pt;}
.y11_c01217{bottom:304.013333pt;}
.y10_c01217{bottom:324.946667pt;}
.yf_c01217{bottom:346.813333pt;}
.ye_c01217{bottom:367.480000pt;}
.yd_c01217{bottom:389.480000pt;}
.yc_c01217{bottom:410.146667pt;}
.yb_c01217{bottom:432.413333pt;}
.ya_c01217{bottom:453.613333pt;}
.y9_c01217{bottom:475.480000pt;}
.y8_c01217{bottom:497.213333pt;}
.y7_c01217{bottom:519.880000pt;}
.y6_c01217{bottom:540.680000pt;}
.y5_c01217{bottom:562.813333pt;}
.y4_c01217{bottom:584.413333pt;}
.y3_c01217{bottom:606.413333pt;}
.y2_c01217{bottom:628.280000pt;}
.y1_c01217{bottom:650.813333pt;}
.h6_c01217{height:11.733399pt;}
.h7_c01217{height:38.937500pt;}
.h2_c01217{height:73.281250pt;}
.h4_c01217{height:77.654948pt;}
.h3_c01217{height:81.031250pt;}
.h5_c01217{height:97.912760pt;}
.h1_c01217{height:690.666667pt;}
.h0_c01217{height:690.733333pt;}
.w2_c01217{width:93.222667pt;}
.w0_c01217{width:461.733333pt;}
.w1_c01217{width:462.000000pt;}
.x0_c01217{left:0.000000pt;}
.x3_c01217{left:30.933333pt;}
.x5_c01217{left:88.800000pt;}
.x4_c01217{left:89.733333pt;}
.x2_c01217{left:90.800000pt;}
.x1_c01217{left:186.533333pt;}
.x6_c01217{left:188.034871pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_84a2a9303011b195d8814e11.woff2')format("woff");}.ff1_c01218{font-family:ff1_c01218;line-height:1.480469;font-style:normal;font-weight:normal;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_31956cfcfe8b0f29061624da.woff2')format("woff");}.ff2_c01218{font-family:ff2_c01218;line-height:1.568848;font-style:normal;font-weight:normal;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_24fd054321f4a8f338e52d4b.woff2')format("woff");}.ff3_c01218{font-family:ff3_c01218;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01218;src:url('chunks/assets/font_0e026a37a856431d09aeae2a.woff2')format("woff");}.ff4_c01218{font-family:ff4_c01218;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01218;src:url('chunks/assets/font_84b0484574eac7cd71b8b56b.woff2')format("woff");}.ff5_c01218{font-family:ff5_c01218;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01218;src:url('chunks/assets/font_b5b869faff08b6e6da3a60a4.woff2')format("woff");}.ff6_c01218{font-family:ff6_c01218;line-height:1.575000;font-style:normal;font-weight: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_c01218;src:url('chunks/assets/font_42ca6a7f4ee780e6466fa4ba.woff2')format("woff");}.ff7_c01218{font-family:ff7_c01218;line-height:1.575000;font-style:normal;font-weight: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_c01218;src:url('chunks/assets/font_e002a7061c5b9cbdfb3959d7.woff2')format("woff");}.ff8_c01218{font-family:ff8_c01218;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01218;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff9_c01218{font-family:ff9_c01218;line-height:1.219238;font-style: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;}
.ls0_c01218{letter-spacing:0.000000px;}
.ls1_c01218{letter-spacing:3.000000px;}
.sc__c01218{text-shadow:none;}
.sc0_c01218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01218{-webkit-text-stroke:0px transparent;}
.sc0_c01218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01218{word-spacing:-59.775000px;}
.ws0_c01218{word-spacing:-33.192000px;}
.ws3_c01218{word-spacing:-28.512000px;}
.ws2_c01218{word-spacing:-20.250000px;}
.ws4_c01218{word-spacing:0.000000px;}
._13_c01218{margin-left:-15.216000px;}
._18_c01218{margin-left:-13.044000px;}
._12_c01218{margin-left:-12.000000px;}
._e_c01218{margin-left:-10.728000px;}
._f_c01218{margin-left:-9.288000px;}
._10_c01218{margin-left:-7.488000px;}
._17_c01218{margin-left:-6.450000px;}
._a_c01218{margin-left:-4.920000px;}
._d_c01218{margin-left:-3.912000px;}
._c_c01218{margin-left:-2.736000px;}
._9_c01218{margin-left:-1.344000px;}
._b_c01218{width:1.440000px;}
._7_c01218{width:2.976000px;}
._8_c01218{width:4.032000px;}
._5_c01218{width:5.064000px;}
._3_c01218{width:6.768000px;}
._1_c01218{width:7.848000px;}
._15_c01218{width:9.288000px;}
._16_c01218{width:10.572000px;}
._0_c01218{width:12.096000px;}
._4_c01218{width:14.400000px;}
._2_c01218{width:15.696000px;}
._11_c01218{width:17.184000px;}
._1a_c01218{width:23.997000px;}
._19_c01218{width:33.231000px;}
._6_c01218{width:257.472000px;}
._14_c01218{width:264.537000px;}
._1b_c01218{width:360.546000px;}
.fc2_c01218{color:transparent;}
.fc1_c01218{color:rgb(128,128,128);}
.fc0_c01218{color:rgb(0,0,0);}
.fs7_c01218{font-size:48.000000px;}
.fs6_c01218{font-size:54.000000px;}
.fs5_c01218{font-size:57.000000px;}
.fs3_c01218{font-size:66.000000px;}
.fs0_c01218{font-size:72.000000px;}
.fs1_c01218{font-size:75.000000px;}
.fs2_c01218{font-size:81.000000px;}
.fs4_c01218{font-size:96.000000px;}
.y0_c01218{bottom:0.000000px;}
.y1f_c01218{bottom:3.105000px;}
.y1e_c01218{bottom:7.228363px;}
.y1d_c01218{bottom:67.500000px;}
.y1c_c01218{bottom:90.750000px;}
.y1b_c01218{bottom:117.750000px;}
.y1a_c01218{bottom:142.500000px;}
.y19_c01218{bottom:168.450000px;}
.y18_c01218{bottom:193.050000px;}
.y17_c01218{bottom:219.000000px;}
.y16_c01218{bottom:244.350000px;}
.y15_c01218{bottom:267.000000px;}
.y14_c01218{bottom:293.700000px;}
.y13_c01218{bottom:316.650000px;}
.y12_c01218{bottom:341.850000px;}
.y11_c01218{bottom:367.500000px;}
.y10_c01218{bottom:391.200000px;}
.yf_c01218{bottom:416.850000px;}
.ye_c01218{bottom:438.750000px;}
.yd_c01218{bottom:464.100000px;}
.yc_c01218{bottom:489.450000px;}
.yb_c01218{bottom:513.300000px;}
.ya_c01218{bottom:537.300000px;}
.y9_c01218{bottom:562.500000px;}
.y8_c01218{bottom:586.200000px;}
.y7_c01218{bottom:610.800000px;}
.y6_c01218{bottom:636.450000px;}
.y5_c01218{bottom:661.200000px;}
.y4_c01218{bottom:685.500000px;}
.y3_c01218{bottom:709.350000px;}
.y2_c01218{bottom:735.000000px;}
.y1_c01218{bottom:762.450000px;}
.h9_c01218{height:13.200074px;}
.ha_c01218{height:43.804688px;}
.h8_c01218{height:57.618000px;}
.h5_c01218{height:70.422000px;}
.h7_c01218{height:71.022000px;}
.h4_c01218{height:81.632812px;}
.h2_c01218{height:91.160156px;}
.h6_c01218{height:94.218750px;}
.h3_c01218{height:94.958496px;}
.h1_c01218{height:795.000000px;}
.h0_c01218{height:795.150000px;}
.w2_c01218{width:104.875500px;}
.w1_c01218{width:544.500000px;}
.w0_c01218{width:544.575000px;}
.x0_c01218{left:0.000000px;}
.x2_c01218{left:41.850000px;}
.x3_c01218{left:43.800000px;}
.x4_c01218{left:44.850000px;}
.x5_c01218{left:46.200000px;}
.x6_c01218{left:47.250000px;}
.x7_c01218{left:84.000000px;}
.x1_c01218{left:165.450000px;}
.x9_c01218{left:224.101730px;}
.x8_c01218{left:252.750000px;}
@media print{
.v0_c01218{vertical-align:0.000000pt;}
.ls0_c01218{letter-spacing:0.000000pt;}
.ls1_c01218{letter-spacing:2.666667pt;}
.ws1_c01218{word-spacing:-53.133333pt;}
.ws0_c01218{word-spacing:-29.504000pt;}
.ws3_c01218{word-spacing:-25.344000pt;}
.ws2_c01218{word-spacing:-18.000000pt;}
.ws4_c01218{word-spacing:0.000000pt;}
._13_c01218{margin-left:-13.525333pt;}
._18_c01218{margin-left:-11.594667pt;}
._12_c01218{margin-left:-10.666667pt;}
._e_c01218{margin-left:-9.536000pt;}
._f_c01218{margin-left:-8.256000pt;}
._10_c01218{margin-left:-6.656000pt;}
._17_c01218{margin-left:-5.733333pt;}
._a_c01218{margin-left:-4.373333pt;}
._d_c01218{margin-left:-3.477333pt;}
._c_c01218{margin-left:-2.432000pt;}
._9_c01218{margin-left:-1.194667pt;}
._b_c01218{width:1.280000pt;}
._7_c01218{width:2.645333pt;}
._8_c01218{width:3.584000pt;}
._5_c01218{width:4.501333pt;}
._3_c01218{width:6.016000pt;}
._1_c01218{width:6.976000pt;}
._15_c01218{width:8.256000pt;}
._16_c01218{width:9.397333pt;}
._0_c01218{width:10.752000pt;}
._4_c01218{width:12.800000pt;}
._2_c01218{width:13.952000pt;}
._11_c01218{width:15.274667pt;}
._1a_c01218{width:21.330667pt;}
._19_c01218{width:29.538667pt;}
._6_c01218{width:228.864000pt;}
._14_c01218{width:235.144000pt;}
._1b_c01218{width:320.485333pt;}
.fs7_c01218{font-size:42.666667pt;}
.fs6_c01218{font-size:48.000000pt;}
.fs5_c01218{font-size:50.666667pt;}
.fs3_c01218{font-size:58.666667pt;}
.fs0_c01218{font-size:64.000000pt;}
.fs1_c01218{font-size:66.666667pt;}
.fs2_c01218{font-size:72.000000pt;}
.fs4_c01218{font-size:85.333333pt;}
.y0_c01218{bottom:0.000000pt;}
.y1f_c01218{bottom:2.760000pt;}
.y1e_c01218{bottom:6.425212pt;}
.y1d_c01218{bottom:60.000000pt;}
.y1c_c01218{bottom:80.666667pt;}
.y1b_c01218{bottom:104.666667pt;}
.y1a_c01218{bottom:126.666667pt;}
.y19_c01218{bottom:149.733333pt;}
.y18_c01218{bottom:171.600000pt;}
.y17_c01218{bottom:194.666667pt;}
.y16_c01218{bottom:217.200000pt;}
.y15_c01218{bottom:237.333333pt;}
.y14_c01218{bottom:261.066667pt;}
.y13_c01218{bottom:281.466667pt;}
.y12_c01218{bottom:303.866667pt;}
.y11_c01218{bottom:326.666667pt;}
.y10_c01218{bottom:347.733333pt;}
.yf_c01218{bottom:370.533333pt;}
.ye_c01218{bottom:390.000000pt;}
.yd_c01218{bottom:412.533333pt;}
.yc_c01218{bottom:435.066667pt;}
.yb_c01218{bottom:456.266667pt;}
.ya_c01218{bottom:477.600000pt;}
.y9_c01218{bottom:500.000000pt;}
.y8_c01218{bottom:521.066667pt;}
.y7_c01218{bottom:542.933333pt;}
.y6_c01218{bottom:565.733333pt;}
.y5_c01218{bottom:587.733333pt;}
.y4_c01218{bottom:609.333333pt;}
.y3_c01218{bottom:630.533333pt;}
.y2_c01218{bottom:653.333333pt;}
.y1_c01218{bottom:677.733333pt;}
.h9_c01218{height:11.733399pt;}
.ha_c01218{height:38.937500pt;}
.h8_c01218{height:51.216000pt;}
.h5_c01218{height:62.597333pt;}
.h7_c01218{height:63.130667pt;}
.h4_c01218{height:72.562500pt;}
.h2_c01218{height:81.031250pt;}
.h6_c01218{height:83.750000pt;}
.h3_c01218{height:84.407552pt;}
.h1_c01218{height:706.666667pt;}
.h0_c01218{height:706.800000pt;}
.w2_c01218{width:93.222667pt;}
.w1_c01218{width:484.000000pt;}
.w0_c01218{width:484.066667pt;}
.x0_c01218{left:0.000000pt;}
.x2_c01218{left:37.200000pt;}
.x3_c01218{left:38.933333pt;}
.x4_c01218{left:39.866667pt;}
.x5_c01218{left:41.066667pt;}
.x6_c01218{left:42.000000pt;}
.x7_c01218{left:74.666667pt;}
.x1_c01218{left:147.066667pt;}
.x9_c01218{left:199.201538pt;}
.x8_c01218{left:224.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_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_0059127a188c80130db579ed.woff2')format("woff");}.ff1_c01219{font-family:ff1_c01219;line-height:1.568848;font-style:normal;font-weight:normal;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_dca2df349039d8fe2f1d20a5.woff2')format("woff");}.ff2_c01219{font-family:ff2_c01219;line-height:1.480469;font-style:normal;font-weight:normal;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_b7e87ebf885f4c68459ce8da.woff2')format("woff");}.ff3_c01219{font-family:ff3_c01219;line-height:1.568848;font-style:normal;font-weight:normal;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_ba9b59cfc38346f16efd9a44.woff2')format("woff");}.ff4_c01219{font-family:ff4_c01219;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01219{font-family:ff5_c01219;line-height:1.219238;font-style: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;}
.ls3_c01219{letter-spacing:-9.000000px;}
.ls5_c01219{letter-spacing:-6.000000px;}
.ls4_c01219{letter-spacing:0.000000px;}
.ls1_c01219{letter-spacing:2.694000px;}
.ls2_c01219{letter-spacing:3.000000px;}
.ls0_c01219{letter-spacing:5.904000px;}
.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;}
}
.ws4_c01219{word-spacing:-24.051000px;}
.ws1_c01219{word-spacing:-23.256000px;}
.ws2_c01219{word-spacing:-12.724800px;}
.ws5_c01219{word-spacing:0.000000px;}
.ws3_c01219{word-spacing:0.864000px;}
.ws0_c01219{word-spacing:8.136000px;}
._19_c01219{margin-left:-13.320000px;}
._1b_c01219{margin-left:-11.664000px;}
._11_c01219{margin-left:-8.544000px;}
._9_c01219{margin-left:-6.552000px;}
._f_c01219{margin-left:-4.824000px;}
._c_c01219{margin-left:-2.952000px;}
._a_c01219{margin-left:-1.728000px;}
._d_c01219{width:1.008000px;}
._8_c01219{width:2.160000px;}
._7_c01219{width:3.312000px;}
._0_c01219{width:5.256000px;}
._2_c01219{width:6.480000px;}
._15_c01219{width:7.560000px;}
._3_c01219{width:8.568000px;}
._4_c01219{width:10.224000px;}
._b_c01219{width:12.096000px;}
._17_c01219{width:13.968000px;}
._10_c01219{width:15.048000px;}
._e_c01219{width:16.704000px;}
._5_c01219{width:18.648000px;}
._6_c01219{width:21.240000px;}
._16_c01219{width:23.832000px;}
._13_c01219{width:25.056000px;}
._1d_c01219{width:30.576000px;}
._12_c01219{width:31.608000px;}
._14_c01219{width:33.552000px;}
._18_c01219{width:35.352000px;}
._1a_c01219{width:79.272000px;}
._1e_c01219{width:169.788000px;}
._1_c01219{width:369.648000px;}
._1c_c01219{width:465.552000px;}
._1f_c01219{width:619.536000px;}
.fc2_c01219{color:transparent;}
.fc1_c01219{color:rgb(128,128,128);}
.fc0_c01219{color:rgb(0,0,0);}
.fs4_c01219{font-size:48.000000px;}
.fs1_c01219{font-size:52.800000px;}
.fs3_c01219{font-size:63.000000px;}
.fs2_c01219{font-size:66.000000px;}
.fs0_c01219{font-size:72.000000px;}
.y0_c01219{bottom:0.000000px;}
.y1f_c01219{bottom:3.105000px;}
.y1e_c01219{bottom:7.228363px;}
.y1d_c01219{bottom:62.700000px;}
.y1c_c01219{bottom:83.400000px;}
.y1b_c01219{bottom:108.900000px;}
.y1a_c01219{bottom:133.950000px;}
.y19_c01219{bottom:159.000000px;}
.y18_c01219{bottom:184.650000px;}
.y17_c01219{bottom:209.550000px;}
.y16_c01219{bottom:235.800000px;}
.y15_c01219{bottom:260.250000px;}
.y14_c01219{bottom:285.150000px;}
.y13_c01219{bottom:310.800000px;}
.y12_c01219{bottom:335.850000px;}
.y11_c01219{bottom:360.150000px;}
.y10_c01219{bottom:385.050000px;}
.yf_c01219{bottom:409.050000px;}
.ye_c01219{bottom:433.950000px;}
.yd_c01219{bottom:458.550000px;}
.yc_c01219{bottom:482.250000px;}
.yb_c01219{bottom:507.600000px;}
.ya_c01219{bottom:532.500000px;}
.y9_c01219{bottom:557.550000px;}
.y8_c01219{bottom:582.150000px;}
.y7_c01219{bottom:607.200000px;}
.y6_c01219{bottom:632.250000px;}
.y5_c01219{bottom:656.700000px;}
.y4_c01219{bottom:682.350000px;}
.y3_c01219{bottom:706.500000px;}
.y2_c01219{bottom:732.000000px;}
.y1_c01219{bottom:757.650000px;}
.h3_c01219{height:13.200074px;}
.h4_c01219{height:43.804688px;}
.h2_c01219{height:91.160156px;}
.h0_c01219{height:797.850000px;}
.h1_c01219{height:798.000000px;}
.w2_c01219{width:104.875500px;}
.w1_c01219{width:519.000000px;}
.w0_c01219{width:519.225000px;}
.x0_c01219{left:0.000000px;}
.x7_c01219{left:77.250000px;}
.x1_c01219{left:94.800000px;}
.x2_c01219{left:100.800000px;}
.x3_c01219{left:102.300000px;}
.x4_c01219{left:103.650000px;}
.x5_c01219{left:104.850000px;}
.x6_c01219{left:106.200000px;}
.x8_c01219{left:110.700000px;}
.x9_c01219{left:211.426758px;}
@media print{
.v0_c01219{vertical-align:0.000000pt;}
.ls3_c01219{letter-spacing:-8.000000pt;}
.ls5_c01219{letter-spacing:-5.333333pt;}
.ls4_c01219{letter-spacing:0.000000pt;}
.ls1_c01219{letter-spacing:2.394667pt;}
.ls2_c01219{letter-spacing:2.666667pt;}
.ls0_c01219{letter-spacing:5.248000pt;}
.ws4_c01219{word-spacing:-21.378667pt;}
.ws1_c01219{word-spacing:-20.672000pt;}
.ws2_c01219{word-spacing:-11.310933pt;}
.ws5_c01219{word-spacing:0.000000pt;}
.ws3_c01219{word-spacing:0.768000pt;}
.ws0_c01219{word-spacing:7.232000pt;}
._19_c01219{margin-left:-11.840000pt;}
._1b_c01219{margin-left:-10.368000pt;}
._11_c01219{margin-left:-7.594667pt;}
._9_c01219{margin-left:-5.824000pt;}
._f_c01219{margin-left:-4.288000pt;}
._c_c01219{margin-left:-2.624000pt;}
._a_c01219{margin-left:-1.536000pt;}
._d_c01219{width:0.896000pt;}
._8_c01219{width:1.920000pt;}
._7_c01219{width:2.944000pt;}
._0_c01219{width:4.672000pt;}
._2_c01219{width:5.760000pt;}
._15_c01219{width:6.720000pt;}
._3_c01219{width:7.616000pt;}
._4_c01219{width:9.088000pt;}
._b_c01219{width:10.752000pt;}
._17_c01219{width:12.416000pt;}
._10_c01219{width:13.376000pt;}
._e_c01219{width:14.848000pt;}
._5_c01219{width:16.576000pt;}
._6_c01219{width:18.880000pt;}
._16_c01219{width:21.184000pt;}
._13_c01219{width:22.272000pt;}
._1d_c01219{width:27.178667pt;}
._12_c01219{width:28.096000pt;}
._14_c01219{width:29.824000pt;}
._18_c01219{width:31.424000pt;}
._1a_c01219{width:70.464000pt;}
._1e_c01219{width:150.922667pt;}
._1_c01219{width:328.576000pt;}
._1c_c01219{width:413.824000pt;}
._1f_c01219{width:550.698667pt;}
.fs4_c01219{font-size:42.666667pt;}
.fs1_c01219{font-size:46.933333pt;}
.fs3_c01219{font-size:56.000000pt;}
.fs2_c01219{font-size:58.666667pt;}
.fs0_c01219{font-size:64.000000pt;}
.y0_c01219{bottom:0.000000pt;}
.y1f_c01219{bottom:2.760000pt;}
.y1e_c01219{bottom:6.425212pt;}
.y1d_c01219{bottom:55.733333pt;}
.y1c_c01219{bottom:74.133333pt;}
.y1b_c01219{bottom:96.800000pt;}
.y1a_c01219{bottom:119.066667pt;}
.y19_c01219{bottom:141.333333pt;}
.y18_c01219{bottom:164.133333pt;}
.y17_c01219{bottom:186.266667pt;}
.y16_c01219{bottom:209.600000pt;}
.y15_c01219{bottom:231.333333pt;}
.y14_c01219{bottom:253.466667pt;}
.y13_c01219{bottom:276.266667pt;}
.y12_c01219{bottom:298.533333pt;}
.y11_c01219{bottom:320.133333pt;}
.y10_c01219{bottom:342.266667pt;}
.yf_c01219{bottom:363.600000pt;}
.ye_c01219{bottom:385.733333pt;}
.yd_c01219{bottom:407.600000pt;}
.yc_c01219{bottom:428.666667pt;}
.yb_c01219{bottom:451.200000pt;}
.ya_c01219{bottom:473.333333pt;}
.y9_c01219{bottom:495.600000pt;}
.y8_c01219{bottom:517.466667pt;}
.y7_c01219{bottom:539.733333pt;}
.y6_c01219{bottom:562.000000pt;}
.y5_c01219{bottom:583.733333pt;}
.y4_c01219{bottom:606.533333pt;}
.y3_c01219{bottom:628.000000pt;}
.y2_c01219{bottom:650.666667pt;}
.y1_c01219{bottom:673.466667pt;}
.h3_c01219{height:11.733399pt;}
.h4_c01219{height:38.937500pt;}
.h2_c01219{height:81.031250pt;}
.h0_c01219{height:709.200000pt;}
.h1_c01219{height:709.333333pt;}
.w2_c01219{width:93.222667pt;}
.w1_c01219{width:461.333333pt;}
.w0_c01219{width:461.533333pt;}
.x0_c01219{left:0.000000pt;}
.x7_c01219{left:68.666667pt;}
.x1_c01219{left:84.266667pt;}
.x2_c01219{left:89.600000pt;}
.x3_c01219{left:90.933333pt;}
.x4_c01219{left:92.133333pt;}
.x5_c01219{left:93.200000pt;}
.x6_c01219{left:94.400000pt;}
.x8_c01219{left:98.400000pt;}
.x9_c01219{left:187.934896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8422e8aaee64a78ba26a3410.woff2')format("woff");}.ff1_c01220{font-family:ff1_c01220;line-height:1.480469;font-style:normal;font-weight:normal;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_b970e86734190f868ab22044.woff2')format("woff");}.ff2_c01220{font-family:ff2_c01220;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01220{font-family:ff3_c01220;line-height:1.219238;font-style: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;}
.ls2_c01220{letter-spacing:-9.000000px;}
.ls0_c01220{letter-spacing:0.000000px;}
.ls1_c01220{letter-spacing:3.000000px;}
.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;}
}
.ws1_c01220{word-spacing:-24.192000px;}
.ws0_c01220{word-spacing:-15.192000px;}
.ws2_c01220{word-spacing:0.000000px;}
._15_c01220{margin-left:-37.296000px;}
._1c_c01220{margin-left:-12.744000px;}
._19_c01220{margin-left:-11.160000px;}
._1b_c01220{margin-left:-10.152000px;}
._1a_c01220{margin-left:-8.496000px;}
._16_c01220{margin-left:-7.344000px;}
._17_c01220{margin-left:-5.976000px;}
._7_c01220{margin-left:-4.680000px;}
._a_c01220{margin-left:-3.600000px;}
._5_c01220{margin-left:-1.800000px;}
._8_c01220{width:1.656000px;}
._10_c01220{width:2.736000px;}
._4_c01220{width:4.032000px;}
._13_c01220{width:5.064000px;}
._12_c01220{width:6.096000px;}
._e_c01220{width:7.344000px;}
._b_c01220{width:9.144000px;}
._6_c01220{width:10.368000px;}
._1_c01220{width:11.592000px;}
._9_c01220{width:12.960000px;}
._18_c01220{width:14.040000px;}
._d_c01220{width:15.624000px;}
._c_c01220{width:17.136000px;}
._14_c01220{width:18.240000px;}
._2_c01220{width:22.344000px;}
._11_c01220{width:24.048000px;}
._0_c01220{width:25.704000px;}
._1d_c01220{width:30.288000px;}
._22_c01220{width:31.545000px;}
._f_c01220{width:37.008000px;}
._20_c01220{width:39.516000px;}
._1f_c01220{width:61.416000px;}
._1e_c01220{width:105.192000px;}
._23_c01220{width:311.544000px;}
._21_c01220{width:489.048000px;}
._3_c01220{width:690.336000px;}
.fc2_c01220{color:transparent;}
.fc1_c01220{color:rgb(128,128,128);}
.fc0_c01220{color:rgb(0,0,0);}
.fs2_c01220{font-size:48.000000px;}
.fs1_c01220{font-size:63.000000px;}
.fs0_c01220{font-size:72.000000px;}
.y0_c01220{bottom:0.000000px;}
.y1f_c01220{bottom:3.105000px;}
.y1e_c01220{bottom:7.228369px;}
.y1d_c01220{bottom:53.970000px;}
.y1c_c01220{bottom:79.020000px;}
.y1b_c01220{bottom:106.020000px;}
.y1a_c01220{bottom:131.970000px;}
.y19_c01220{bottom:156.870000px;}
.y18_c01220{bottom:180.270000px;}
.y17_c01220{bottom:205.770000px;}
.y16_c01220{bottom:230.220000px;}
.y15_c01220{bottom:255.720000px;}
.y14_c01220{bottom:279.420000px;}
.y13_c01220{bottom:305.670000px;}
.y12_c01220{bottom:329.970000px;}
.y11_c01220{bottom:354.720000px;}
.y10_c01220{bottom:378.720000px;}
.yf_c01220{bottom:403.020000px;}
.ye_c01220{bottom:426.570000px;}
.yd_c01220{bottom:452.220000px;}
.yc_c01220{bottom:476.220000px;}
.yb_c01220{bottom:500.820000px;}
.ya_c01220{bottom:525.120000px;}
.y9_c01220{bottom:549.120000px;}
.y8_c01220{bottom:574.320000px;}
.y7_c01220{bottom:598.320000px;}
.y6_c01220{bottom:623.370000px;}
.y5_c01220{bottom:647.970000px;}
.y4_c01220{bottom:672.870000px;}
.y3_c01220{bottom:697.620000px;}
.y2_c01220{bottom:722.520000px;}
.y1_c01220{bottom:747.570000px;}
.h2_c01220{height:13.200073px;}
.h3_c01220{height:43.804688px;}
.h1_c01220{height:91.160156px;}
.h0_c01220{height:786.750000px;}
.w2_c01220{width:104.875500px;}
.w0_c01220{width:527.850000px;}
.w1_c01220{width:528.000000px;}
.x0_c01220{left:0.000000px;}
.x4_c01220{left:36.150000px;}
.x9_c01220{left:37.500000px;}
.x3_c01220{left:40.200000px;}
.x5_c01220{left:41.250000px;}
.x2_c01220{left:42.300000px;}
.x6_c01220{left:43.500000px;}
.x7_c01220{left:112.500000px;}
.x8_c01220{left:139.500000px;}
.x1_c01220{left:164.100000px;}
.xa_c01220{left:215.739258px;}
@media print{
.v0_c01220{vertical-align:0.000000pt;}
.ls2_c01220{letter-spacing:-8.000000pt;}
.ls0_c01220{letter-spacing:0.000000pt;}
.ls1_c01220{letter-spacing:2.666667pt;}
.ws1_c01220{word-spacing:-21.504000pt;}
.ws0_c01220{word-spacing:-13.504000pt;}
.ws2_c01220{word-spacing:0.000000pt;}
._15_c01220{margin-left:-33.152000pt;}
._1c_c01220{margin-left:-11.328000pt;}
._19_c01220{margin-left:-9.920000pt;}
._1b_c01220{margin-left:-9.024000pt;}
._1a_c01220{margin-left:-7.552000pt;}
._16_c01220{margin-left:-6.528000pt;}
._17_c01220{margin-left:-5.312000pt;}
._7_c01220{margin-left:-4.160000pt;}
._a_c01220{margin-left:-3.200000pt;}
._5_c01220{margin-left:-1.600000pt;}
._8_c01220{width:1.472000pt;}
._10_c01220{width:2.432000pt;}
._4_c01220{width:3.584000pt;}
._13_c01220{width:4.501333pt;}
._12_c01220{width:5.418667pt;}
._e_c01220{width:6.528000pt;}
._b_c01220{width:8.128000pt;}
._6_c01220{width:9.216000pt;}
._1_c01220{width:10.304000pt;}
._9_c01220{width:11.520000pt;}
._18_c01220{width:12.480000pt;}
._d_c01220{width:13.888000pt;}
._c_c01220{width:15.232000pt;}
._14_c01220{width:16.213333pt;}
._2_c01220{width:19.861333pt;}
._11_c01220{width:21.376000pt;}
._0_c01220{width:22.848000pt;}
._1d_c01220{width:26.922667pt;}
._22_c01220{width:28.040000pt;}
._f_c01220{width:32.896000pt;}
._20_c01220{width:35.125333pt;}
._1f_c01220{width:54.592000pt;}
._1e_c01220{width:93.504000pt;}
._23_c01220{width:276.928000pt;}
._21_c01220{width:434.709333pt;}
._3_c01220{width:613.632000pt;}
.fs2_c01220{font-size:42.666667pt;}
.fs1_c01220{font-size:56.000000pt;}
.fs0_c01220{font-size:64.000000pt;}
.y0_c01220{bottom:0.000000pt;}
.y1f_c01220{bottom:2.760000pt;}
.y1e_c01220{bottom:6.425217pt;}
.y1d_c01220{bottom:47.973333pt;}
.y1c_c01220{bottom:70.240000pt;}
.y1b_c01220{bottom:94.240000pt;}
.y1a_c01220{bottom:117.306667pt;}
.y19_c01220{bottom:139.440000pt;}
.y18_c01220{bottom:160.240000pt;}
.y17_c01220{bottom:182.906667pt;}
.y16_c01220{bottom:204.640000pt;}
.y15_c01220{bottom:227.306667pt;}
.y14_c01220{bottom:248.373333pt;}
.y13_c01220{bottom:271.706667pt;}
.y12_c01220{bottom:293.306667pt;}
.y11_c01220{bottom:315.306667pt;}
.y10_c01220{bottom:336.640000pt;}
.yf_c01220{bottom:358.240000pt;}
.ye_c01220{bottom:379.173333pt;}
.yd_c01220{bottom:401.973333pt;}
.yc_c01220{bottom:423.306667pt;}
.yb_c01220{bottom:445.173333pt;}
.ya_c01220{bottom:466.773333pt;}
.y9_c01220{bottom:488.106667pt;}
.y8_c01220{bottom:510.506667pt;}
.y7_c01220{bottom:531.840000pt;}
.y6_c01220{bottom:554.106667pt;}
.y5_c01220{bottom:575.973333pt;}
.y4_c01220{bottom:598.106667pt;}
.y3_c01220{bottom:620.106667pt;}
.y2_c01220{bottom:642.240000pt;}
.y1_c01220{bottom:664.506667pt;}
.h2_c01220{height:11.733399pt;}
.h3_c01220{height:38.937500pt;}
.h1_c01220{height:81.031250pt;}
.h0_c01220{height:699.333333pt;}
.w2_c01220{width:93.222667pt;}
.w0_c01220{width:469.200000pt;}
.w1_c01220{width:469.333333pt;}
.x0_c01220{left:0.000000pt;}
.x4_c01220{left:32.133333pt;}
.x9_c01220{left:33.333333pt;}
.x3_c01220{left:35.733333pt;}
.x5_c01220{left:36.666667pt;}
.x2_c01220{left:37.600000pt;}
.x6_c01220{left:38.666667pt;}
.x7_c01220{left:100.000000pt;}
.x8_c01220{left:124.000000pt;}
.x1_c01220{left:145.866667pt;}
.xa_c01220{left:191.768229pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5c349acbcd81e33b3516feb.woff2')format("woff");}.ff1_c01221{font-family:ff1_c01221;line-height:1.284180;font-style:normal;font-weight:normal;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_bac11bc64aa2ac5bf3a9a361.woff2')format("woff");}.ff2_c01221{font-family:ff2_c01221;line-height:1.284180;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c01221{font-family:ff3_c01221;line-height:1.284668;font-style:normal;font-weight:normal;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_2a5dd1a615bf5fa348bde8aa.woff2')format("woff");}.ff4_c01221{font-family:ff4_c01221;line-height:1.568848;font-style:normal;font-weight:normal;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_c0c4e24aae69cc04d3e0e9ed.woff2')format("woff");}.ff5_c01221{font-family:ff5_c01221;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01221;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01221{font-family:ff6_c01221;line-height:1.219238;font-style: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;}
.ls2_c01221{letter-spacing:-3.000000px;}
.ls1_c01221{letter-spacing:0.000000px;}
.ls0_c01221{letter-spacing:13.686000px;}
.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:-62.814000px;}
.ws1_c01221{word-spacing:-50.251200px;}
.ws3_c01221{word-spacing:-15.183000px;}
.ws2_c01221{word-spacing:-13.629000px;}
.ws4_c01221{word-spacing:0.000000px;}
._15_c01221{margin-left:-21.963600px;}
._4_c01221{margin-left:-16.222200px;}
._19_c01221{margin-left:-15.030000px;}
._14_c01221{margin-left:-8.589000px;}
._1_c01221{margin-left:-6.816000px;}
._0_c01221{margin-left:-5.481000px;}
._13_c01221{margin-left:-3.962400px;}
._11_c01221{margin-left:-1.868400px;}
._5_c01221{width:1.554000px;}
._2_c01221{width:3.201600px;}
._6_c01221{width:4.281600px;}
._3_c01221{width:5.496000px;}
._7_c01221{width:6.947400px;}
._8_c01221{width:8.901000px;}
._16_c01221{width:9.921000px;}
._9_c01221{width:10.947600px;}
._f_c01221{width:12.011400px;}
._b_c01221{width:13.507800px;}
._12_c01221{width:14.629200px;}
._a_c01221{width:18.746400px;}
._10_c01221{width:19.843800px;}
._e_c01221{width:21.130200px;}
._c_c01221{width:25.129800px;}
._17_c01221{width:27.792000px;}
._18_c01221{width:29.342400px;}
._d_c01221{width:30.957600px;}
.fc2_c01221{color:transparent;}
.fc1_c01221{color:rgb(128,128,128);}
.fc0_c01221{color:rgb(0,0,0);}
.fs4_c01221{font-size:48.000000px;}
.fs3_c01221{font-size:63.000000px;}
.fs2_c01221{font-size:69.000000px;}
.fs1_c01221{font-size:69.600000px;}
.fs0_c01221{font-size:87.000000px;}
.y0_c01221{bottom:0.000000px;}
.y1f_c01221{bottom:3.105000px;}
.y1e_c01221{bottom:7.228369px;}
.y1d_c01221{bottom:55.620000px;}
.y1c_c01221{bottom:76.170000px;}
.y1b_c01221{bottom:101.820000px;}
.y1a_c01221{bottom:126.870000px;}
.y19_c01221{bottom:152.520000px;}
.y18_c01221{bottom:177.120000px;}
.y17_c01221{bottom:203.520000px;}
.y16_c01221{bottom:227.820000px;}
.y15_c01221{bottom:254.370000px;}
.y14_c01221{bottom:279.720000px;}
.y13_c01221{bottom:303.120000px;}
.y12_c01221{bottom:328.620000px;}
.y11_c01221{bottom:353.070000px;}
.y10_c01221{bottom:377.370000px;}
.yf_c01221{bottom:401.970000px;}
.ye_c01221{bottom:426.270000px;}
.yd_c01221{bottom:450.570000px;}
.yc_c01221{bottom:474.870000px;}
.yb_c01221{bottom:499.770000px;}
.ya_c01221{bottom:524.820000px;}
.y9_c01221{bottom:550.020000px;}
.y8_c01221{bottom:574.770000px;}
.y7_c01221{bottom:599.070000px;}
.y6_c01221{bottom:624.420000px;}
.y5_c01221{bottom:649.320000px;}
.y4_c01221{bottom:673.620000px;}
.y3_c01221{bottom:699.270000px;}
.y2_c01221{bottom:723.570000px;}
.y1_c01221{bottom:749.820000px;}
.h5_c01221{height:13.200073px;}
.h6_c01221{height:43.804688px;}
.h4_c01221{height:79.765137px;}
.h2_c01221{height:85.385742px;}
.h3_c01221{height:87.361816px;}
.h1_c01221{height:790.500000px;}
.h0_c01221{height:790.800000px;}
.w2_c01221{width:104.875500px;}
.w1_c01221{width:492.750000px;}
.w0_c01221{width:493.050000px;}
.x0_c01221{left:0.000000px;}
.x8_c01221{left:80.550000px;}
.x7_c01221{left:82.050000px;}
.x6_c01221{left:83.250000px;}
.x5_c01221{left:84.300000px;}
.x4_c01221{left:85.650000px;}
.x2_c01221{left:87.000000px;}
.x3_c01221{left:88.050000px;}
.x1_c01221{left:194.700000px;}
.xa_c01221{left:198.339249px;}
.x9_c01221{left:415.500000px;}
@media print{
.v0_c01221{vertical-align:0.000000pt;}
.ls2_c01221{letter-spacing:-2.666667pt;}
.ls1_c01221{letter-spacing:0.000000pt;}
.ls0_c01221{letter-spacing:12.165333pt;}
.ws0_c01221{word-spacing:-55.834667pt;}
.ws1_c01221{word-spacing:-44.667733pt;}
.ws3_c01221{word-spacing:-13.496000pt;}
.ws2_c01221{word-spacing:-12.114667pt;}
.ws4_c01221{word-spacing:0.000000pt;}
._15_c01221{margin-left:-19.523200pt;}
._4_c01221{margin-left:-14.419733pt;}
._19_c01221{margin-left:-13.360000pt;}
._14_c01221{margin-left:-7.634667pt;}
._1_c01221{margin-left:-6.058667pt;}
._0_c01221{margin-left:-4.872000pt;}
._13_c01221{margin-left:-3.522133pt;}
._11_c01221{margin-left:-1.660800pt;}
._5_c01221{width:1.381333pt;}
._2_c01221{width:2.845867pt;}
._6_c01221{width:3.805867pt;}
._3_c01221{width:4.885333pt;}
._7_c01221{width:6.175467pt;}
._8_c01221{width:7.912000pt;}
._16_c01221{width:8.818667pt;}
._9_c01221{width:9.731200pt;}
._f_c01221{width:10.676800pt;}
._b_c01221{width:12.006933pt;}
._12_c01221{width:13.003733pt;}
._a_c01221{width:16.663467pt;}
._10_c01221{width:17.638933pt;}
._e_c01221{width:18.782400pt;}
._c_c01221{width:22.337600pt;}
._17_c01221{width:24.704000pt;}
._18_c01221{width:26.082133pt;}
._d_c01221{width:27.517867pt;}
.fs4_c01221{font-size:42.666667pt;}
.fs3_c01221{font-size:56.000000pt;}
.fs2_c01221{font-size:61.333333pt;}
.fs1_c01221{font-size:61.866667pt;}
.fs0_c01221{font-size:77.333333pt;}
.y0_c01221{bottom:0.000000pt;}
.y1f_c01221{bottom:2.760000pt;}
.y1e_c01221{bottom:6.425217pt;}
.y1d_c01221{bottom:49.440000pt;}
.y1c_c01221{bottom:67.706667pt;}
.y1b_c01221{bottom:90.506667pt;}
.y1a_c01221{bottom:112.773333pt;}
.y19_c01221{bottom:135.573333pt;}
.y18_c01221{bottom:157.440000pt;}
.y17_c01221{bottom:180.906667pt;}
.y16_c01221{bottom:202.506667pt;}
.y15_c01221{bottom:226.106667pt;}
.y14_c01221{bottom:248.640000pt;}
.y13_c01221{bottom:269.440000pt;}
.y12_c01221{bottom:292.106667pt;}
.y11_c01221{bottom:313.840000pt;}
.y10_c01221{bottom:335.440000pt;}
.yf_c01221{bottom:357.306667pt;}
.ye_c01221{bottom:378.906667pt;}
.yd_c01221{bottom:400.506667pt;}
.yc_c01221{bottom:422.106667pt;}
.yb_c01221{bottom:444.240000pt;}
.ya_c01221{bottom:466.506667pt;}
.y9_c01221{bottom:488.906667pt;}
.y8_c01221{bottom:510.906667pt;}
.y7_c01221{bottom:532.506667pt;}
.y6_c01221{bottom:555.040000pt;}
.y5_c01221{bottom:577.173333pt;}
.y4_c01221{bottom:598.773333pt;}
.y3_c01221{bottom:621.573333pt;}
.y2_c01221{bottom:643.173333pt;}
.y1_c01221{bottom:666.506667pt;}
.h5_c01221{height:11.733399pt;}
.h6_c01221{height:38.937500pt;}
.h4_c01221{height:70.902344pt;}
.h2_c01221{height:75.898438pt;}
.h3_c01221{height:77.654948pt;}
.h1_c01221{height:702.666667pt;}
.h0_c01221{height:702.933333pt;}
.w2_c01221{width:93.222667pt;}
.w1_c01221{width:438.000000pt;}
.w0_c01221{width:438.266667pt;}
.x0_c01221{left:0.000000pt;}
.x8_c01221{left:71.600000pt;}
.x7_c01221{left:72.933333pt;}
.x6_c01221{left:74.000000pt;}
.x5_c01221{left:74.933333pt;}
.x4_c01221{left:76.133333pt;}
.x2_c01221{left:77.333333pt;}
.x3_c01221{left:78.266667pt;}
.x1_c01221{left:173.066667pt;}
.xa_c01221{left:176.301554pt;}
.x9_c01221{left:369.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_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_055c2452b6d5efba8a4b45ea.woff2')format("woff");}.ff1_c01222{font-family:ff1_c01222;line-height:1.284180;font-style:normal;font-weight:normal;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_0cf315feedc533231c24c779.woff2')format("woff");}.ff2_c01222{font-family:ff2_c01222;line-height:1.284668;font-style:normal;font-weight:normal;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_c8c426b87c31db7182989f73.woff2')format("woff");}.ff3_c01222{font-family:ff3_c01222;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01222;src:url('chunks/assets/font_dd1b7ecf8c4d6bb03c8872f0.woff2')format("woff");}.ff4_c01222{font-family:ff4_c01222;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01222;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01222{font-family:ff5_c01222;line-height:1.219238;font-style: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;}
.ls0_c01222{letter-spacing:0.000000px;}
.ls1_c01222{letter-spacing:6.000000px;}
.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;}
}
.ws1_c01222{word-spacing:-37.341000px;}
.ws0_c01222{word-spacing:-17.352000px;}
.ws2_c01222{word-spacing:0.000000px;}
._1c_c01222{margin-left:-13.608000px;}
._17_c01222{margin-left:-7.200000px;}
._15_c01222{margin-left:-5.964000px;}
._1b_c01222{margin-left:-4.404000px;}
._1a_c01222{margin-left:-3.318000px;}
._18_c01222{margin-left:-1.575000px;}
._16_c01222{width:1.386000px;}
._4_c01222{width:2.436000px;}
._5_c01222{width:4.368000px;}
._3_c01222{width:5.460000px;}
._1_c01222{width:6.468000px;}
._a_c01222{width:7.581000px;}
._2_c01222{width:8.652000px;}
._8_c01222{width:9.912000px;}
._0_c01222{width:10.920000px;}
._7_c01222{width:11.928000px;}
._13_c01222{width:12.936000px;}
._9_c01222{width:14.091000px;}
._e_c01222{width:16.191000px;}
._12_c01222{width:17.493000px;}
._19_c01222{width:18.585000px;}
._d_c01222{width:19.719000px;}
._14_c01222{width:20.853000px;}
._c_c01222{width:21.861000px;}
._11_c01222{width:23.457000px;}
._b_c01222{width:25.662000px;}
._10_c01222{width:28.287000px;}
._f_c01222{width:31.374000px;}
._1d_c01222{width:40.950000px;}
._1e_c01222{width:342.651000px;}
._6_c01222{width:369.852000px;}
.fc2_c01222{color:transparent;}
.fc1_c01222{color:rgb(128,128,128);}
.fc0_c01222{color:rgb(0,0,0);}
.fs5_c01222{font-size:48.000000px;}
.fs4_c01222{font-size:60.000000px;}
.fs1_c01222{font-size:63.000000px;}
.fs2_c01222{font-size:72.000000px;}
.fs3_c01222{font-size:81.000000px;}
.fs0_c01222{font-size:84.000000px;}
.y0_c01222{bottom:0.000000px;}
.y1f_c01222{bottom:3.105000px;}
.y1e_c01222{bottom:7.228363px;}
.y1d_c01222{bottom:59.850000px;}
.y1c_c01222{bottom:85.050000px;}
.y1b_c01222{bottom:107.400000px;}
.y1a_c01222{bottom:133.650000px;}
.y19_c01222{bottom:159.750000px;}
.y18_c01222{bottom:183.600000px;}
.y17_c01222{bottom:208.500000px;}
.y16_c01222{bottom:234.600000px;}
.y15_c01222{bottom:258.600000px;}
.y14_c01222{bottom:284.550000px;}
.y13_c01222{bottom:308.250000px;}
.y12_c01222{bottom:333.450000px;}
.y11_c01222{bottom:357.450000px;}
.y10_c01222{bottom:381.450000px;}
.yf_c01222{bottom:405.450000px;}
.ye_c01222{bottom:430.650000px;}
.yd_c01222{bottom:454.650000px;}
.yc_c01222{bottom:478.950000px;}
.yb_c01222{bottom:503.550000px;}
.ya_c01222{bottom:527.250000px;}
.y9_c01222{bottom:551.250000px;}
.y8_c01222{bottom:576.150000px;}
.y7_c01222{bottom:601.350000px;}
.y6_c01222{bottom:625.500000px;}
.y5_c01222{bottom:650.250000px;}
.y4_c01222{bottom:675.000000px;}
.y3_c01222{bottom:699.300000px;}
.y2_c01222{bottom:724.500000px;}
.y1_c01222{bottom:750.000000px;}
.h7_c01222{height:13.200074px;}
.h8_c01222{height:43.804688px;}
.h3_c01222{height:79.765137px;}
.h2_c01222{height:82.441406px;}
.h4_c01222{height:91.160156px;}
.h6_c01222{height:94.803223px;}
.h5_c01222{height:102.555176px;}
.h1_c01222{height:795.000000px;}
.h0_c01222{height:795.150000px;}
.w2_c01222{width:104.875500px;}
.w0_c01222{width:539.700000px;}
.w1_c01222{width:540.000000px;}
.x0_c01222{left:0.000000px;}
.xa_c01222{left:40.050000px;}
.x9_c01222{left:41.100000px;}
.x8_c01222{left:43.200000px;}
.x7_c01222{left:45.000000px;}
.x6_c01222{left:46.200000px;}
.x2_c01222{left:47.250000px;}
.x3_c01222{left:48.300000px;}
.x4_c01222{left:49.350000px;}
.x5_c01222{left:50.700000px;}
.x1_c01222{left:143.100000px;}
.xc_c01222{left:221.664230px;}
.xb_c01222{left:253.800000px;}
@media print{
.v0_c01222{vertical-align:0.000000pt;}
.ls0_c01222{letter-spacing:0.000000pt;}
.ls1_c01222{letter-spacing:5.333333pt;}
.ws1_c01222{word-spacing:-33.192000pt;}
.ws0_c01222{word-spacing:-15.424000pt;}
.ws2_c01222{word-spacing:0.000000pt;}
._1c_c01222{margin-left:-12.096000pt;}
._17_c01222{margin-left:-6.400000pt;}
._15_c01222{margin-left:-5.301333pt;}
._1b_c01222{margin-left:-3.914667pt;}
._1a_c01222{margin-left:-2.949333pt;}
._18_c01222{margin-left:-1.400000pt;}
._16_c01222{width:1.232000pt;}
._4_c01222{width:2.165333pt;}
._5_c01222{width:3.882667pt;}
._3_c01222{width:4.853333pt;}
._1_c01222{width:5.749333pt;}
._a_c01222{width:6.738667pt;}
._2_c01222{width:7.690667pt;}
._8_c01222{width:8.810667pt;}
._0_c01222{width:9.706667pt;}
._7_c01222{width:10.602667pt;}
._13_c01222{width:11.498667pt;}
._9_c01222{width:12.525333pt;}
._e_c01222{width:14.392000pt;}
._12_c01222{width:15.549333pt;}
._19_c01222{width:16.520000pt;}
._d_c01222{width:17.528000pt;}
._14_c01222{width:18.536000pt;}
._c_c01222{width:19.432000pt;}
._11_c01222{width:20.850667pt;}
._b_c01222{width:22.810667pt;}
._10_c01222{width:25.144000pt;}
._f_c01222{width:27.888000pt;}
._1d_c01222{width:36.400000pt;}
._1e_c01222{width:304.578667pt;}
._6_c01222{width:328.757333pt;}
.fs5_c01222{font-size:42.666667pt;}
.fs4_c01222{font-size:53.333333pt;}
.fs1_c01222{font-size:56.000000pt;}
.fs2_c01222{font-size:64.000000pt;}
.fs3_c01222{font-size:72.000000pt;}
.fs0_c01222{font-size:74.666667pt;}
.y0_c01222{bottom:0.000000pt;}
.y1f_c01222{bottom:2.760000pt;}
.y1e_c01222{bottom:6.425212pt;}
.y1d_c01222{bottom:53.200000pt;}
.y1c_c01222{bottom:75.600000pt;}
.y1b_c01222{bottom:95.466667pt;}
.y1a_c01222{bottom:118.800000pt;}
.y19_c01222{bottom:142.000000pt;}
.y18_c01222{bottom:163.200000pt;}
.y17_c01222{bottom:185.333333pt;}
.y16_c01222{bottom:208.533333pt;}
.y15_c01222{bottom:229.866667pt;}
.y14_c01222{bottom:252.933333pt;}
.y13_c01222{bottom:274.000000pt;}
.y12_c01222{bottom:296.400000pt;}
.y11_c01222{bottom:317.733333pt;}
.y10_c01222{bottom:339.066667pt;}
.yf_c01222{bottom:360.400000pt;}
.ye_c01222{bottom:382.800000pt;}
.yd_c01222{bottom:404.133333pt;}
.yc_c01222{bottom:425.733333pt;}
.yb_c01222{bottom:447.600000pt;}
.ya_c01222{bottom:468.666667pt;}
.y9_c01222{bottom:490.000000pt;}
.y8_c01222{bottom:512.133333pt;}
.y7_c01222{bottom:534.533333pt;}
.y6_c01222{bottom:556.000000pt;}
.y5_c01222{bottom:578.000000pt;}
.y4_c01222{bottom:600.000000pt;}
.y3_c01222{bottom:621.600000pt;}
.y2_c01222{bottom:644.000000pt;}
.y1_c01222{bottom:666.666667pt;}
.h7_c01222{height:11.733399pt;}
.h8_c01222{height:38.937500pt;}
.h3_c01222{height:70.902344pt;}
.h2_c01222{height:73.281250pt;}
.h4_c01222{height:81.031250pt;}
.h6_c01222{height:84.269531pt;}
.h5_c01222{height:91.160156pt;}
.h1_c01222{height:706.666667pt;}
.h0_c01222{height:706.800000pt;}
.w2_c01222{width:93.222667pt;}
.w0_c01222{width:479.733333pt;}
.w1_c01222{width:480.000000pt;}
.x0_c01222{left:0.000000pt;}
.xa_c01222{left:35.600000pt;}
.x9_c01222{left:36.533333pt;}
.x8_c01222{left:38.400000pt;}
.x7_c01222{left:40.000000pt;}
.x6_c01222{left:41.066667pt;}
.x2_c01222{left:42.000000pt;}
.x3_c01222{left:42.933333pt;}
.x4_c01222{left:43.866667pt;}
.x5_c01222{left:45.066667pt;}
.x1_c01222{left:127.200000pt;}
.xc_c01222{left:197.034871pt;}
.xb_c01222{left:225.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e3525ddc78da49ea63b9d131.woff2')format("woff");}.ff1_c01223{font-family:ff1_c01223;line-height:1.568848;font-style:normal;font-weight:normal;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_404d9b667d72e83287ba65a5.woff2')format("woff");}.ff2_c01223{font-family:ff2_c01223;line-height:1.480469;font-style:normal;font-weight:normal;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_ffacbda071a8add273a64c33.woff2')format("woff");}.ff3_c01223{font-family:ff3_c01223;line-height:1.592000;font-style:normal;font-weight:normal;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_9679f6f91a9bc0e709f4b253.woff2')format("woff");}.ff4_c01223{font-family:ff4_c01223;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01223{font-family:ff5_c01223;line-height:1.219238;font-style: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;}
.ls2_c01223{letter-spacing:0.000000px;}
.ls3_c01223{letter-spacing:3.000000px;}
.ls0_c01223{letter-spacing:3.198000px;}
.ls1_c01223{letter-spacing:9.798000px;}
.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;}
}
.ws3_c01223{word-spacing:-37.341000px;}
.ws1_c01223{word-spacing:-33.192000px;}
.ws2_c01223{word-spacing:-19.500000px;}
.ws0_c01223{word-spacing:-15.936000px;}
.ws4_c01223{word-spacing:0.000000px;}
._19_c01223{margin-left:-15.492000px;}
._15_c01223{margin-left:-10.263000px;}
._1a_c01223{margin-left:-7.938000px;}
._16_c01223{margin-left:-6.618000px;}
._e_c01223{margin-left:-4.680000px;}
._0_c01223{margin-left:-3.264000px;}
._c_c01223{margin-left:-1.896000px;}
._b_c01223{width:1.008000px;}
._a_c01223{width:2.448000px;}
._9_c01223{width:4.032000px;}
._d_c01223{width:5.040000px;}
._6_c01223{width:6.120000px;}
._3_c01223{width:7.416000px;}
._10_c01223{width:8.901000px;}
._12_c01223{width:10.134000px;}
._5_c01223{width:11.160000px;}
._13_c01223{width:12.219000px;}
._4_c01223{width:13.320000px;}
._2_c01223{width:15.192000px;}
._f_c01223{width:16.902000px;}
._11_c01223{width:19.026000px;}
._7_c01223{width:21.024000px;}
._17_c01223{width:22.836000px;}
._14_c01223{width:23.985000px;}
._18_c01223{width:33.255000px;}
._8_c01223{width:65.160000px;}
._1_c01223{width:319.203000px;}
.fc2_c01223{color:transparent;}
.fc1_c01223{color:rgb(128,128,128);}
.fc0_c01223{color:rgb(0,0,0);}
.fs6_c01223{font-size:48.000000px;}
.fs0_c01223{font-size:51.000000px;}
.fs2_c01223{font-size:63.000000px;}
.fs1_c01223{font-size:72.000000px;}
.fs3_c01223{font-size:78.000000px;}
.fs4_c01223{font-size:81.000000px;}
.fs5_c01223{font-size:87.000000px;}
.y0_c01223{bottom:0.000000px;}
.y1e_c01223{bottom:3.105000px;}
.y1d_c01223{bottom:7.228371px;}
.y1c_c01223{bottom:72.315000px;}
.y1b_c01223{bottom:99.615000px;}
.y1a_c01223{bottom:126.015000px;}
.y19_c01223{bottom:150.165000px;}
.y18_c01223{bottom:175.215000px;}
.y17_c01223{bottom:200.115000px;}
.y16_c01223{bottom:225.465000px;}
.y15_c01223{bottom:250.215000px;}
.y14_c01223{bottom:276.465000px;}
.y13_c01223{bottom:300.465000px;}
.y12_c01223{bottom:325.365000px;}
.y11_c01223{bottom:349.965000px;}
.y10_c01223{bottom:375.015000px;}
.yf_c01223{bottom:399.915000px;}
.ye_c01223{bottom:425.265000px;}
.yd_c01223{bottom:447.915000px;}
.yc_c01223{bottom:472.815000px;}
.yb_c01223{bottom:497.565000px;}
.ya_c01223{bottom:522.465000px;}
.y9_c01223{bottom:547.215000px;}
.y8_c01223{bottom:572.865000px;}
.y7_c01223{bottom:597.465000px;}
.y6_c01223{bottom:622.365000px;}
.y5_c01223{bottom:647.115000px;}
.y4_c01223{bottom:672.315000px;}
.y3_c01223{bottom:697.365000px;}
.y2_c01223{bottom:721.365000px;}
.y1_c01223{bottom:747.615000px;}
.h7_c01223{height:13.200074px;}
.h8_c01223{height:43.804688px;}
.h4_c01223{height:79.765137px;}
.h3_c01223{height:84.552000px;}
.h2_c01223{height:91.160156px;}
.h5_c01223{height:94.803223px;}
.h6_c01223{height:110.151855px;}
.h0_c01223{height:786.525000px;}
.h1_c01223{height:786.750000px;}
.w2_c01223{width:104.875500px;}
.w0_c01223{width:508.950000px;}
.w1_c01223{width:509.250000px;}
.x0_c01223{left:0.000000px;}
.x3_c01223{left:87.150000px;}
.x6_c01223{left:91.800000px;}
.x5_c01223{left:92.850000px;}
.x4_c01223{left:94.500000px;}
.x2_c01223{left:96.600000px;}
.x1_c01223{left:127.800000px;}
.x7_c01223{left:206.289230px;}
@media print{
.v0_c01223{vertical-align:0.000000pt;}
.ls2_c01223{letter-spacing:0.000000pt;}
.ls3_c01223{letter-spacing:2.666667pt;}
.ls0_c01223{letter-spacing:2.842667pt;}
.ls1_c01223{letter-spacing:8.709333pt;}
.ws3_c01223{word-spacing:-33.192000pt;}
.ws1_c01223{word-spacing:-29.504000pt;}
.ws2_c01223{word-spacing:-17.333333pt;}
.ws0_c01223{word-spacing:-14.165333pt;}
.ws4_c01223{word-spacing:0.000000pt;}
._19_c01223{margin-left:-13.770667pt;}
._15_c01223{margin-left:-9.122667pt;}
._1a_c01223{margin-left:-7.056000pt;}
._16_c01223{margin-left:-5.882667pt;}
._e_c01223{margin-left:-4.160000pt;}
._0_c01223{margin-left:-2.901333pt;}
._c_c01223{margin-left:-1.685333pt;}
._b_c01223{width:0.896000pt;}
._a_c01223{width:2.176000pt;}
._9_c01223{width:3.584000pt;}
._d_c01223{width:4.480000pt;}
._6_c01223{width:5.440000pt;}
._3_c01223{width:6.592000pt;}
._10_c01223{width:7.912000pt;}
._12_c01223{width:9.008000pt;}
._5_c01223{width:9.920000pt;}
._13_c01223{width:10.861333pt;}
._4_c01223{width:11.840000pt;}
._2_c01223{width:13.504000pt;}
._f_c01223{width:15.024000pt;}
._11_c01223{width:16.912000pt;}
._7_c01223{width:18.688000pt;}
._17_c01223{width:20.298667pt;}
._14_c01223{width:21.320000pt;}
._18_c01223{width:29.560000pt;}
._8_c01223{width:57.920000pt;}
._1_c01223{width:283.736000pt;}
.fs6_c01223{font-size:42.666667pt;}
.fs0_c01223{font-size:45.333333pt;}
.fs2_c01223{font-size:56.000000pt;}
.fs1_c01223{font-size:64.000000pt;}
.fs3_c01223{font-size:69.333333pt;}
.fs4_c01223{font-size:72.000000pt;}
.fs5_c01223{font-size:77.333333pt;}
.y0_c01223{bottom:0.000000pt;}
.y1e_c01223{bottom:2.760000pt;}
.y1d_c01223{bottom:6.425219pt;}
.y1c_c01223{bottom:64.280000pt;}
.y1b_c01223{bottom:88.546667pt;}
.y1a_c01223{bottom:112.013333pt;}
.y19_c01223{bottom:133.480000pt;}
.y18_c01223{bottom:155.746667pt;}
.y17_c01223{bottom:177.880000pt;}
.y16_c01223{bottom:200.413333pt;}
.y15_c01223{bottom:222.413333pt;}
.y14_c01223{bottom:245.746667pt;}
.y13_c01223{bottom:267.080000pt;}
.y12_c01223{bottom:289.213333pt;}
.y11_c01223{bottom:311.080000pt;}
.y10_c01223{bottom:333.346667pt;}
.yf_c01223{bottom:355.480000pt;}
.ye_c01223{bottom:378.013333pt;}
.yd_c01223{bottom:398.146667pt;}
.yc_c01223{bottom:420.280000pt;}
.yb_c01223{bottom:442.280000pt;}
.ya_c01223{bottom:464.413333pt;}
.y9_c01223{bottom:486.413333pt;}
.y8_c01223{bottom:509.213333pt;}
.y7_c01223{bottom:531.080000pt;}
.y6_c01223{bottom:553.213333pt;}
.y5_c01223{bottom:575.213333pt;}
.y4_c01223{bottom:597.613333pt;}
.y3_c01223{bottom:619.880000pt;}
.y2_c01223{bottom:641.213333pt;}
.y1_c01223{bottom:664.546667pt;}
.h7_c01223{height:11.733399pt;}
.h8_c01223{height:38.937500pt;}
.h4_c01223{height:70.902344pt;}
.h3_c01223{height:75.157333pt;}
.h2_c01223{height:81.031250pt;}
.h5_c01223{height:84.269531pt;}
.h6_c01223{height:97.912760pt;}
.h0_c01223{height:699.133333pt;}
.h1_c01223{height:699.333333pt;}
.w2_c01223{width:93.222667pt;}
.w0_c01223{width:452.400000pt;}
.w1_c01223{width:452.666667pt;}
.x0_c01223{left:0.000000pt;}
.x3_c01223{left:77.466667pt;}
.x6_c01223{left:81.600000pt;}
.x5_c01223{left:82.533333pt;}
.x4_c01223{left:84.000000pt;}
.x2_c01223{left:85.866667pt;}
.x1_c01223{left:113.600000pt;}
.x7_c01223{left:183.368205pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a11318c361c3021e21210a3c.woff2')format("woff");}.ff1_c01224{font-family:ff1_c01224;line-height:1.480469;font-style:normal;font-weight:normal;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_43c532818a3e8e97b29ddb7a.woff2')format("woff");}.ff2_c01224{font-family:ff2_c01224;line-height:1.568848;font-style:normal;font-weight:normal;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_610d1a92c0e38f1b8b3ce300.woff2')format("woff");}.ff3_c01224{font-family:ff3_c01224;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01224;src:url('chunks/assets/font_0f0503736f76e556a81c8f62.woff2')format("woff");}.ff4_c01224{font-family:ff4_c01224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01224;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01224{font-family:ff5_c01224;line-height:1.219238;font-style: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;}
.ls1_c01224{letter-spacing:-6.000000px;}
.ls2_c01224{letter-spacing:0.000000px;}
.ls0_c01224{letter-spacing:3.000000px;}
.sc__c01224{text-shadow:none;}
.sc0_c01224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01224{-webkit-text-stroke:0px transparent;}
.sc0_c01224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01224{word-spacing:-20.352000px;}
.ws0_c01224{word-spacing:-9.000000px;}
.ws2_c01224{word-spacing:0.000000px;}
._13_c01224{margin-left:-20.376000px;}
._c_c01224{margin-left:-14.526000px;}
._b_c01224{margin-left:-12.600000px;}
._14_c01224{margin-left:-10.224000px;}
._16_c01224{margin-left:-8.784000px;}
._9_c01224{margin-left:-7.434000px;}
._12_c01224{margin-left:-6.003000px;}
._10_c01224{margin-left:-4.896000px;}
._e_c01224{margin-left:-3.879000px;}
._11_c01224{margin-left:-2.817000px;}
._f_c01224{margin-left:-1.620000px;}
._d_c01224{width:1.224000px;}
._5_c01224{width:2.997000px;}
._3_c01224{width:4.455000px;}
._a_c01224{width:5.544000px;}
._6_c01224{width:6.966000px;}
._7_c01224{width:8.181000px;}
._0_c01224{width:9.639000px;}
._4_c01224{width:11.826000px;}
._15_c01224{width:13.428000px;}
._17_c01224{width:14.715000px;}
._1_c01224{width:15.876000px;}
._2_c01224{width:17.577000px;}
._8_c01224{width:300.705000px;}
.fc2_c01224{color:transparent;}
.fc1_c01224{color:rgb(128,128,128);}
.fc0_c01224{color:rgb(0,0,0);}
.fs4_c01224{font-size:48.000000px;}
.fs3_c01224{font-size:60.000000px;}
.fs1_c01224{font-size:63.000000px;}
.fs2_c01224{font-size:72.000000px;}
.fs0_c01224{font-size:81.000000px;}
.y0_c01224{bottom:0.000000px;}
.y1f_c01224{bottom:3.105000px;}
.y1e_c01224{bottom:7.228355px;}
.y1d_c01224{bottom:50.835000px;}
.y1c_c01224{bottom:75.885000px;}
.y1b_c01224{bottom:104.835000px;}
.y1a_c01224{bottom:130.485000px;}
.y19_c01224{bottom:153.585000px;}
.y18_c01224{bottom:179.535000px;}
.y17_c01224{bottom:205.185000px;}
.y16_c01224{bottom:229.785000px;}
.y15_c01224{bottom:253.035000px;}
.y14_c01224{bottom:279.735000px;}
.y13_c01224{bottom:304.335000px;}
.y12_c01224{bottom:328.635000px;}
.y11_c01224{bottom:352.335000px;}
.y10_c01224{bottom:377.985000px;}
.yf_c01224{bottom:401.835000px;}
.ye_c01224{bottom:426.285000px;}
.yd_c01224{bottom:450.585000px;}
.yc_c01224{bottom:475.485000px;}
.yb_c01224{bottom:499.485000px;}
.ya_c01224{bottom:523.785000px;}
.y9_c01224{bottom:547.635000px;}
.y8_c01224{bottom:572.685000px;}
.y7_c01224{bottom:597.585000px;}
.y6_c01224{bottom:622.035000px;}
.y5_c01224{bottom:646.935000px;}
.y4_c01224{bottom:671.985000px;}
.y3_c01224{bottom:696.135000px;}
.y2_c01224{bottom:721.785000px;}
.y1_c01224{bottom:746.535000px;}
.h5_c01224{height:13.200074px;}
.h6_c01224{height:43.804688px;}
.h4_c01224{height:79.497070px;}
.h3_c01224{height:91.160156px;}
.h2_c01224{height:94.803223px;}
.h0_c01224{height:783.525000px;}
.h1_c01224{height:783.750000px;}
.w2_c01224{width:104.875500px;}
.w0_c01224{width:541.350000px;}
.w1_c01224{width:541.500000px;}
.x0_c01224{left:0.000000px;}
.x6_c01224{left:39.450000px;}
.x7_c01224{left:40.800000px;}
.x2_c01224{left:42.750000px;}
.x3_c01224{left:44.250000px;}
.x4_c01224{left:45.450000px;}
.x5_c01224{left:46.950000px;}
.x1_c01224{left:162.450000px;}
.xa_c01224{left:222.489258px;}
.x8_c01224{left:296.250000px;}
.x9_c01224{left:379.350000px;}
@media print{
.v0_c01224{vertical-align:0.000000pt;}
.ls1_c01224{letter-spacing:-5.333333pt;}
.ls2_c01224{letter-spacing:0.000000pt;}
.ls0_c01224{letter-spacing:2.666667pt;}
.ws1_c01224{word-spacing:-18.090667pt;}
.ws0_c01224{word-spacing:-8.000000pt;}
.ws2_c01224{word-spacing:0.000000pt;}
._13_c01224{margin-left:-18.112000pt;}
._c_c01224{margin-left:-12.912000pt;}
._b_c01224{margin-left:-11.200000pt;}
._14_c01224{margin-left:-9.088000pt;}
._16_c01224{margin-left:-7.808000pt;}
._9_c01224{margin-left:-6.608000pt;}
._12_c01224{margin-left:-5.336000pt;}
._10_c01224{margin-left:-4.352000pt;}
._e_c01224{margin-left:-3.448000pt;}
._11_c01224{margin-left:-2.504000pt;}
._f_c01224{margin-left:-1.440000pt;}
._d_c01224{width:1.088000pt;}
._5_c01224{width:2.664000pt;}
._3_c01224{width:3.960000pt;}
._a_c01224{width:4.928000pt;}
._6_c01224{width:6.192000pt;}
._7_c01224{width:7.272000pt;}
._0_c01224{width:8.568000pt;}
._4_c01224{width:10.512000pt;}
._15_c01224{width:11.936000pt;}
._17_c01224{width:13.080000pt;}
._1_c01224{width:14.112000pt;}
._2_c01224{width:15.624000pt;}
._8_c01224{width:267.293333pt;}
.fs4_c01224{font-size:42.666667pt;}
.fs3_c01224{font-size:53.333333pt;}
.fs1_c01224{font-size:56.000000pt;}
.fs2_c01224{font-size:64.000000pt;}
.fs0_c01224{font-size:72.000000pt;}
.y0_c01224{bottom:0.000000pt;}
.y1f_c01224{bottom:2.760000pt;}
.y1e_c01224{bottom:6.425204pt;}
.y1d_c01224{bottom:45.186667pt;}
.y1c_c01224{bottom:67.453333pt;}
.y1b_c01224{bottom:93.186667pt;}
.y1a_c01224{bottom:115.986667pt;}
.y19_c01224{bottom:136.520000pt;}
.y18_c01224{bottom:159.586667pt;}
.y17_c01224{bottom:182.386667pt;}
.y16_c01224{bottom:204.253333pt;}
.y15_c01224{bottom:224.920000pt;}
.y14_c01224{bottom:248.653333pt;}
.y13_c01224{bottom:270.520000pt;}
.y12_c01224{bottom:292.120000pt;}
.y11_c01224{bottom:313.186667pt;}
.y10_c01224{bottom:335.986667pt;}
.yf_c01224{bottom:357.186667pt;}
.ye_c01224{bottom:378.920000pt;}
.yd_c01224{bottom:400.520000pt;}
.yc_c01224{bottom:422.653333pt;}
.yb_c01224{bottom:443.986667pt;}
.ya_c01224{bottom:465.586667pt;}
.y9_c01224{bottom:486.786667pt;}
.y8_c01224{bottom:509.053333pt;}
.y7_c01224{bottom:531.186667pt;}
.y6_c01224{bottom:552.920000pt;}
.y5_c01224{bottom:575.053333pt;}
.y4_c01224{bottom:597.320000pt;}
.y3_c01224{bottom:618.786667pt;}
.y2_c01224{bottom:641.586667pt;}
.y1_c01224{bottom:663.586667pt;}
.h5_c01224{height:11.733399pt;}
.h6_c01224{height:38.937500pt;}
.h4_c01224{height:70.664062pt;}
.h3_c01224{height:81.031250pt;}
.h2_c01224{height:84.269531pt;}
.h0_c01224{height:696.466667pt;}
.h1_c01224{height:696.666667pt;}
.w2_c01224{width:93.222667pt;}
.w0_c01224{width:481.200000pt;}
.w1_c01224{width:481.333333pt;}
.x0_c01224{left:0.000000pt;}
.x6_c01224{left:35.066667pt;}
.x7_c01224{left:36.266667pt;}
.x2_c01224{left:38.000000pt;}
.x3_c01224{left:39.333333pt;}
.x4_c01224{left:40.400000pt;}
.x5_c01224{left:41.733333pt;}
.x1_c01224{left:144.400000pt;}
.xa_c01224{left:197.768229pt;}
.x8_c01224{left:263.333333pt;}
.x9_c01224{left:337.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_25f66bb9cd3f27266b7036c1.woff2')format("woff");}.ff1_c01225{font-family:ff1_c01225;line-height:1.284180;font-style:normal;font-weight:normal;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_5eb977864cec98cfe3c62b34.woff2')format("woff");}.ff2_c01225{font-family:ff2_c01225;line-height:1.284668;font-style:normal;font-weight:normal;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_d0d398fa42d35fd2f0f2f433.woff2')format("woff");}.ff3_c01225{font-family:ff3_c01225;line-height:1.568848;font-style:normal;font-weight:normal;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_616bf9cb9ab65639c2860dcf.woff2')format("woff");}.ff4_c01225{font-family:ff4_c01225;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01225;src:url('chunks/assets/font_803ea24c44f6566a5d9c1aa9.woff2')format("woff");}.ff5_c01225{font-family:ff5_c01225;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01225;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01225{font-family:ff6_c01225;line-height:1.219238;font-style: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;}
.ls3_c01225{letter-spacing:0.000000px;}
.ls5_c01225{letter-spacing:3.000000px;}
.ls0_c01225{letter-spacing:4.275000px;}
.ls1_c01225{letter-spacing:5.709000px;}
.ls4_c01225{letter-spacing:6.000000px;}
.ls2_c01225{letter-spacing:17.400000px;}
.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;}
}
.ws3_c01225{word-spacing:-62.166000px;}
.ws0_c01225{word-spacing:-30.643200px;}
.ws2_c01225{word-spacing:-20.250000px;}
.ws4_c01225{word-spacing:0.000000px;}
.ws1_c01225{word-spacing:0.867000px;}
._1b_c01225{margin-left:-20.235000px;}
._1a_c01225{margin-left:-18.678000px;}
._0_c01225{margin-left:-14.625000px;}
._6_c01225{margin-left:-13.455000px;}
._5_c01225{margin-left:-12.402000px;}
._3_c01225{margin-left:-10.296000px;}
._2_c01225{margin-left:-9.126000px;}
._4_c01225{margin-left:-7.956000px;}
._1_c01225{margin-left:-5.733000px;}
._14_c01225{margin-left:-3.807000px;}
._13_c01225{margin-left:-2.073000px;}
._1c_c01225{margin-left:-1.041000px;}
._f_c01225{width:1.632000px;}
._e_c01225{width:3.519000px;}
._d_c01225{width:4.692000px;}
._17_c01225{width:5.916000px;}
._b_c01225{width:7.038000px;}
._7_c01225{width:8.517000px;}
._16_c01225{width:9.540000px;}
._c_c01225{width:10.608000px;}
._9_c01225{width:11.628000px;}
._12_c01225{width:12.681000px;}
._8_c01225{width:13.923000px;}
._10_c01225{width:15.624000px;}
._15_c01225{width:17.172000px;}
._a_c01225{width:19.941000px;}
._11_c01225{width:22.287000px;}
._18_c01225{width:23.778000px;}
._19_c01225{width:178.524000px;}
.fc2_c01225{color:transparent;}
.fc1_c01225{color:rgb(128,128,128);}
.fc0_c01225{color:rgb(0,0,0);}
.fs3_c01225{font-size:30.000000px;}
.fs2_c01225{font-size:40.800000px;}
.fs9_c01225{font-size:48.000000px;}
.fs1_c01225{font-size:51.000000px;}
.fs5_c01225{font-size:60.000000px;}
.fs8_c01225{font-size:72.000000px;}
.fs6_c01225{font-size:78.000000px;}
.fs4_c01225{font-size:81.000000px;}
.fs7_c01225{font-size:87.000000px;}
.fs0_c01225{font-size:117.000000px;}
.y0_c01225{bottom:0.000000px;}
.y1e_c01225{bottom:3.105000px;}
.y1d_c01225{bottom:7.228369px;}
.y1c_c01225{bottom:82.320000px;}
.y1b_c01225{bottom:109.320000px;}
.y1a_c01225{bottom:134.970000px;}
.y19_c01225{bottom:158.670000px;}
.y18_c01225{bottom:185.220000px;}
.y17_c01225{bottom:209.820000px;}
.y16_c01225{bottom:235.170000px;}
.y15_c01225{bottom:262.620000px;}
.y14_c01225{bottom:285.120000px;}
.y13_c01225{bottom:311.070000px;}
.y12_c01225{bottom:335.820000px;}
.y11_c01225{bottom:361.020000px;}
.y10_c01225{bottom:385.020000px;}
.yf_c01225{bottom:409.020000px;}
.ye_c01225{bottom:433.020000px;}
.yd_c01225{bottom:456.720000px;}
.yc_c01225{bottom:481.620000px;}
.yb_c01225{bottom:506.520000px;}
.ya_c01225{bottom:531.570000px;}
.y9_c01225{bottom:556.170000px;}
.y8_c01225{bottom:580.770000px;}
.y7_c01225{bottom:605.820000px;}
.y6_c01225{bottom:631.020000px;}
.y5_c01225{bottom:655.470000px;}
.y4_c01225{bottom:680.070000px;}
.y3_c01225{bottom:705.720000px;}
.y2_c01225{bottom:729.720000px;}
.y1_c01225{bottom:755.670000px;}
.h7_c01225{height:13.200073px;}
.h8_c01225{height:43.804688px;}
.h3_c01225{height:64.571777px;}
.h6_c01225{height:91.160156px;}
.h4_c01225{height:98.756836px;}
.h5_c01225{height:110.151855px;}
.h2_c01225{height:114.829102px;}
.h0_c01225{height:794.850000px;}
.h1_c01225{height:795.000000px;}
.w2_c01225{width:104.875500px;}
.w0_c01225{width:512.175000px;}
.w1_c01225{width:512.250000px;}
.x0_c01225{left:0.000000px;}
.x2_c01225{left:90.750000px;}
.x4_c01225{left:91.800000px;}
.x3_c01225{left:93.450000px;}
.x6_c01225{left:94.500000px;}
.x5_c01225{left:95.550000px;}
.x7_c01225{left:96.600000px;}
.x8_c01225{left:97.650000px;}
.x1_c01225{left:207.900000px;}
@media print{
.v0_c01225{vertical-align:0.000000pt;}
.ls3_c01225{letter-spacing:0.000000pt;}
.ls5_c01225{letter-spacing:2.666667pt;}
.ls0_c01225{letter-spacing:3.800000pt;}
.ls1_c01225{letter-spacing:5.074667pt;}
.ls4_c01225{letter-spacing:5.333333pt;}
.ls2_c01225{letter-spacing:15.466667pt;}
.ws3_c01225{word-spacing:-55.258667pt;}
.ws0_c01225{word-spacing:-27.238400pt;}
.ws2_c01225{word-spacing:-18.000000pt;}
.ws4_c01225{word-spacing:0.000000pt;}
.ws1_c01225{word-spacing:0.770667pt;}
._1b_c01225{margin-left:-17.986667pt;}
._1a_c01225{margin-left:-16.602667pt;}
._0_c01225{margin-left:-13.000000pt;}
._6_c01225{margin-left:-11.960000pt;}
._5_c01225{margin-left:-11.024000pt;}
._3_c01225{margin-left:-9.152000pt;}
._2_c01225{margin-left:-8.112000pt;}
._4_c01225{margin-left:-7.072000pt;}
._1_c01225{margin-left:-5.096000pt;}
._14_c01225{margin-left:-3.384000pt;}
._13_c01225{margin-left:-1.842667pt;}
._1c_c01225{margin-left:-0.925333pt;}
._f_c01225{width:1.450667pt;}
._e_c01225{width:3.128000pt;}
._d_c01225{width:4.170667pt;}
._17_c01225{width:5.258667pt;}
._b_c01225{width:6.256000pt;}
._7_c01225{width:7.570667pt;}
._16_c01225{width:8.480000pt;}
._c_c01225{width:9.429333pt;}
._9_c01225{width:10.336000pt;}
._12_c01225{width:11.272000pt;}
._8_c01225{width:12.376000pt;}
._10_c01225{width:13.888000pt;}
._15_c01225{width:15.264000pt;}
._a_c01225{width:17.725333pt;}
._11_c01225{width:19.810667pt;}
._18_c01225{width:21.136000pt;}
._19_c01225{width:158.688000pt;}
.fs3_c01225{font-size:26.666667pt;}
.fs2_c01225{font-size:36.266667pt;}
.fs9_c01225{font-size:42.666667pt;}
.fs1_c01225{font-size:45.333333pt;}
.fs5_c01225{font-size:53.333333pt;}
.fs8_c01225{font-size:64.000000pt;}
.fs6_c01225{font-size:69.333333pt;}
.fs4_c01225{font-size:72.000000pt;}
.fs7_c01225{font-size:77.333333pt;}
.fs0_c01225{font-size:104.000000pt;}
.y0_c01225{bottom:0.000000pt;}
.y1e_c01225{bottom:2.760000pt;}
.y1d_c01225{bottom:6.425217pt;}
.y1c_c01225{bottom:73.173333pt;}
.y1b_c01225{bottom:97.173333pt;}
.y1a_c01225{bottom:119.973333pt;}
.y19_c01225{bottom:141.040000pt;}
.y18_c01225{bottom:164.640000pt;}
.y17_c01225{bottom:186.506667pt;}
.y16_c01225{bottom:209.040000pt;}
.y15_c01225{bottom:233.440000pt;}
.y14_c01225{bottom:253.440000pt;}
.y13_c01225{bottom:276.506667pt;}
.y12_c01225{bottom:298.506667pt;}
.y11_c01225{bottom:320.906667pt;}
.y10_c01225{bottom:342.240000pt;}
.yf_c01225{bottom:363.573333pt;}
.ye_c01225{bottom:384.906667pt;}
.yd_c01225{bottom:405.973333pt;}
.yc_c01225{bottom:428.106667pt;}
.yb_c01225{bottom:450.240000pt;}
.ya_c01225{bottom:472.506667pt;}
.y9_c01225{bottom:494.373333pt;}
.y8_c01225{bottom:516.240000pt;}
.y7_c01225{bottom:538.506667pt;}
.y6_c01225{bottom:560.906667pt;}
.y5_c01225{bottom:582.640000pt;}
.y4_c01225{bottom:604.506667pt;}
.y3_c01225{bottom:627.306667pt;}
.y2_c01225{bottom:648.640000pt;}
.y1_c01225{bottom:671.706667pt;}
.h7_c01225{height:11.733399pt;}
.h8_c01225{height:38.937500pt;}
.h3_c01225{height:57.397135pt;}
.h6_c01225{height:81.031250pt;}
.h4_c01225{height:87.783854pt;}
.h5_c01225{height:97.912760pt;}
.h2_c01225{height:102.070312pt;}
.h0_c01225{height:706.533333pt;}
.h1_c01225{height:706.666667pt;}
.w2_c01225{width:93.222667pt;}
.w0_c01225{width:455.266667pt;}
.w1_c01225{width:455.333333pt;}
.x0_c01225{left:0.000000pt;}
.x2_c01225{left:80.666667pt;}
.x4_c01225{left:81.600000pt;}
.x3_c01225{left:83.066667pt;}
.x6_c01225{left:84.000000pt;}
.x5_c01225{left:84.933333pt;}
.x7_c01225{left:85.866667pt;}
.x8_c01225{left:86.800000pt;}
.x1_c01225{left:184.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4b334cad0b339d8a8276adcb.woff2')format("woff");}.ff1_c01226{font-family:ff1_c01226;line-height:1.568848;font-style:normal;font-weight:normal;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_5c26489e398000a636edc0c2.woff2')format("woff");}.ff2_c01226{font-family:ff2_c01226;line-height:1.480469;font-style:normal;font-weight:normal;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_d66d4e902bb6605b8b646408.woff2')format("woff");}.ff3_c01226{font-family:ff3_c01226;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01226;src:url('chunks/assets/font_b94596b7d327f9cd647e55d1.woff2')format("woff");}.ff4_c01226{font-family:ff4_c01226;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01226;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01226{font-family:ff5_c01226;line-height:1.219238;font-style: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;}
.ls4_c01226{letter-spacing:-3.000000px;}
.ls5_c01226{letter-spacing:0.000000px;}
.ls0_c01226{letter-spacing:0.870000px;}
.ls1_c01226{letter-spacing:3.000000px;}
.ls6_c01226{letter-spacing:6.000000px;}
.ls2_c01226{letter-spacing:25.848000px;}
.ls3_c01226{letter-spacing:27.300000px;}
.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;}
}
.ws4_c01226{word-spacing:-25.521000px;}
.ws1_c01226{word-spacing:-20.352000px;}
.ws0_c01226{word-spacing:-17.352000px;}
.ws2_c01226{word-spacing:-16.629000px;}
.ws3_c01226{word-spacing:-13.629000px;}
.ws5_c01226{word-spacing:0.000000px;}
._6_c01226{margin-left:-24.360000px;}
._14_c01226{margin-left:-15.354000px;}
._15_c01226{margin-left:-12.672000px;}
._11_c01226{margin-left:-10.479000px;}
._d_c01226{margin-left:-8.640000px;}
._10_c01226{margin-left:-7.035000px;}
._f_c01226{margin-left:-5.832000px;}
._8_c01226{margin-left:-4.590000px;}
._0_c01226{margin-left:-3.561000px;}
._b_c01226{margin-left:-1.677000px;}
._1_c01226{width:1.566000px;}
._a_c01226{width:2.592000px;}
._e_c01226{width:3.735000px;}
._7_c01226{width:4.833000px;}
._4_c01226{width:6.003000px;}
._12_c01226{width:7.164000px;}
._c_c01226{width:8.406000px;}
._5_c01226{width:10.005000px;}
._16_c01226{width:11.010000px;}
._9_c01226{width:12.024000px;}
._2_c01226{width:13.224000px;}
._17_c01226{width:17.841000px;}
._13_c01226{width:20.856000px;}
._3_c01226{width:305.487000px;}
.fc2_c01226{color:transparent;}
.fc1_c01226{color:rgb(128,128,128);}
.fc0_c01226{color:rgb(0,0,0);}
.fs5_c01226{font-size:48.000000px;}
.fs2_c01226{font-size:57.000000px;}
.fs3_c01226{font-size:69.000000px;}
.fs1_c01226{font-size:72.000000px;}
.fs4_c01226{font-size:81.000000px;}
.fs0_c01226{font-size:87.000000px;}
.y0_c01226{bottom:0.000000px;}
.y1f_c01226{bottom:3.105000px;}
.y1e_c01226{bottom:7.228371px;}
.y1d_c01226{bottom:37.515000px;}
.y1c_c01226{bottom:63.915000px;}
.y1b_c01226{bottom:87.765000px;}
.y1a_c01226{bottom:115.065000px;}
.y19_c01226{bottom:139.815000px;}
.y18_c01226{bottom:163.665000px;}
.y17_c01226{bottom:190.065000px;}
.y16_c01226{bottom:213.015000px;}
.y15_c01226{bottom:238.665000px;}
.y14_c01226{bottom:263.715000px;}
.y13_c01226{bottom:285.615000px;}
.y12_c01226{bottom:312.165000px;}
.y11_c01226{bottom:336.165000px;}
.y10_c01226{bottom:359.565000px;}
.yf_c01226{bottom:384.165000px;}
.ye_c01226{bottom:409.065000px;}
.yd_c01226{bottom:432.465000px;}
.yc_c01226{bottom:457.065000px;}
.yb_c01226{bottom:480.915000px;}
.ya_c01226{bottom:504.315000px;}
.y9_c01226{bottom:527.265000px;}
.y8_c01226{bottom:552.465000px;}
.y7_c01226{bottom:576.765000px;}
.y6_c01226{bottom:601.065000px;}
.y5_c01226{bottom:625.365000px;}
.y4_c01226{bottom:649.815000px;}
.y3_c01226{bottom:673.665000px;}
.y2_c01226{bottom:698.415000px;}
.y1_c01226{bottom:723.915000px;}
.h6_c01226{height:13.200074px;}
.h7_c01226{height:43.804688px;}
.h4_c01226{height:87.361816px;}
.h3_c01226{height:91.160156px;}
.h5_c01226{height:102.555176px;}
.h2_c01226{height:110.151855px;}
.h0_c01226{height:764.925000px;}
.h1_c01226{height:765.000000px;}
.w1_c01226{width:104.875500px;}
.w0_c01226{width:516.000000px;}
.x0_c01226{left:0.000000px;}
.x6_c01226{left:28.050000px;}
.x2_c01226{left:29.400000px;}
.x3_c01226{left:31.050000px;}
.x4_c01226{left:32.400000px;}
.x5_c01226{left:33.750000px;}
.x1_c01226{left:147.450000px;}
.x7_c01226{left:159.750000px;}
.x9_c01226{left:209.814240px;}
.x8_c01226{left:377.100000px;}
@media print{
.v0_c01226{vertical-align:0.000000pt;}
.ls4_c01226{letter-spacing:-2.666667pt;}
.ls5_c01226{letter-spacing:0.000000pt;}
.ls0_c01226{letter-spacing:0.773333pt;}
.ls1_c01226{letter-spacing:2.666667pt;}
.ls6_c01226{letter-spacing:5.333333pt;}
.ls2_c01226{letter-spacing:22.976000pt;}
.ls3_c01226{letter-spacing:24.266667pt;}
.ws4_c01226{word-spacing:-22.685333pt;}
.ws1_c01226{word-spacing:-18.090667pt;}
.ws0_c01226{word-spacing:-15.424000pt;}
.ws2_c01226{word-spacing:-14.781333pt;}
.ws3_c01226{word-spacing:-12.114667pt;}
.ws5_c01226{word-spacing:0.000000pt;}
._6_c01226{margin-left:-21.653333pt;}
._14_c01226{margin-left:-13.648000pt;}
._15_c01226{margin-left:-11.264000pt;}
._11_c01226{margin-left:-9.314667pt;}
._d_c01226{margin-left:-7.680000pt;}
._10_c01226{margin-left:-6.253333pt;}
._f_c01226{margin-left:-5.184000pt;}
._8_c01226{margin-left:-4.080000pt;}
._0_c01226{margin-left:-3.165333pt;}
._b_c01226{margin-left:-1.490667pt;}
._1_c01226{width:1.392000pt;}
._a_c01226{width:2.304000pt;}
._e_c01226{width:3.320000pt;}
._7_c01226{width:4.296000pt;}
._4_c01226{width:5.336000pt;}
._12_c01226{width:6.368000pt;}
._c_c01226{width:7.472000pt;}
._5_c01226{width:8.893333pt;}
._16_c01226{width:9.786667pt;}
._9_c01226{width:10.688000pt;}
._2_c01226{width:11.754667pt;}
._17_c01226{width:15.858667pt;}
._13_c01226{width:18.538667pt;}
._3_c01226{width:271.544000pt;}
.fs5_c01226{font-size:42.666667pt;}
.fs2_c01226{font-size:50.666667pt;}
.fs3_c01226{font-size:61.333333pt;}
.fs1_c01226{font-size:64.000000pt;}
.fs4_c01226{font-size:72.000000pt;}
.fs0_c01226{font-size:77.333333pt;}
.y0_c01226{bottom:0.000000pt;}
.y1f_c01226{bottom:2.760000pt;}
.y1e_c01226{bottom:6.425219pt;}
.y1d_c01226{bottom:33.346667pt;}
.y1c_c01226{bottom:56.813333pt;}
.y1b_c01226{bottom:78.013333pt;}
.y1a_c01226{bottom:102.280000pt;}
.y19_c01226{bottom:124.280000pt;}
.y18_c01226{bottom:145.480000pt;}
.y17_c01226{bottom:168.946667pt;}
.y16_c01226{bottom:189.346667pt;}
.y15_c01226{bottom:212.146667pt;}
.y14_c01226{bottom:234.413333pt;}
.y13_c01226{bottom:253.880000pt;}
.y12_c01226{bottom:277.480000pt;}
.y11_c01226{bottom:298.813333pt;}
.y10_c01226{bottom:319.613333pt;}
.yf_c01226{bottom:341.480000pt;}
.ye_c01226{bottom:363.613333pt;}
.yd_c01226{bottom:384.413333pt;}
.yc_c01226{bottom:406.280000pt;}
.yb_c01226{bottom:427.480000pt;}
.ya_c01226{bottom:448.280000pt;}
.y9_c01226{bottom:468.680000pt;}
.y8_c01226{bottom:491.080000pt;}
.y7_c01226{bottom:512.680000pt;}
.y6_c01226{bottom:534.280000pt;}
.y5_c01226{bottom:555.880000pt;}
.y4_c01226{bottom:577.613333pt;}
.y3_c01226{bottom:598.813333pt;}
.y2_c01226{bottom:620.813333pt;}
.y1_c01226{bottom:643.480000pt;}
.h6_c01226{height:11.733399pt;}
.h7_c01226{height:38.937500pt;}
.h4_c01226{height:77.654948pt;}
.h3_c01226{height:81.031250pt;}
.h5_c01226{height:91.160156pt;}
.h2_c01226{height:97.912760pt;}
.h0_c01226{height:679.933333pt;}
.h1_c01226{height:680.000000pt;}
.w1_c01226{width:93.222667pt;}
.w0_c01226{width:458.666667pt;}
.x0_c01226{left:0.000000pt;}
.x6_c01226{left:24.933333pt;}
.x2_c01226{left:26.133333pt;}
.x3_c01226{left:27.600000pt;}
.x4_c01226{left:28.800000pt;}
.x5_c01226{left:30.000000pt;}
.x1_c01226{left:131.066667pt;}
.x7_c01226{left:142.000000pt;}
.x9_c01226{left:186.501546pt;}
.x8_c01226{left:335.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9a6122a4f3bb057432be54e9.woff2')format("woff");}.ff1_c01227{font-family:ff1_c01227;line-height:1.284180;font-style:normal;font-weight:normal;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_75cf9e340d2486254578f0fa.woff2')format("woff");}.ff2_c01227{font-family:ff2_c01227;line-height:1.284668;font-style:normal;font-weight:normal;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_7a2be8bef123ea93b5995c2a.woff2')format("woff");}.ff3_c01227{font-family:ff3_c01227;line-height:1.568848;font-style:normal;font-weight:normal;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_d5e75ea1af0cf33aa53f4dde.woff2')format("woff");}.ff4_c01227{font-family:ff4_c01227;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01227;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01227{font-family:ff5_c01227;line-height:1.219238;font-style: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);}
.v1_c01227{vertical-align:-73.800000px;}
.v0_c01227{vertical-align:0.000000px;}
.ls4_c01227{letter-spacing:-6.000000px;}
.ls0_c01227{letter-spacing:0.000000px;}
.ls1_c01227{letter-spacing:3.000000px;}
.ls2_c01227{letter-spacing:6.000000px;}
.ls3_c01227{letter-spacing:30.000000px;}
.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:-47.352000px;}
.ws1_c01227{word-spacing:-16.629000px;}
.ws2_c01227{word-spacing:0.000000px;}
._12_c01227{margin-left:-17.784000px;}
._13_c01227{margin-left:-16.200000px;}
._10_c01227{margin-left:-10.440000px;}
._11_c01227{margin-left:-9.072000px;}
._b_c01227{margin-left:-7.680000px;}
._3_c01227{margin-left:-5.712000px;}
._6_c01227{margin-left:-4.644000px;}
._8_c01227{margin-left:-2.736000px;}
._7_c01227{margin-left:-1.728000px;}
._a_c01227{width:1.032000px;}
._4_c01227{width:2.100000px;}
._5_c01227{width:3.780000px;}
._1_c01227{width:5.460000px;}
._9_c01227{width:6.468000px;}
._d_c01227{width:8.220000px;}
._0_c01227{width:9.324000px;}
._2_c01227{width:10.416000px;}
._c_c01227{width:12.444000px;}
._e_c01227{width:16.020000px;}
._f_c01227{width:17.058000px;}
.fc2_c01227{color:transparent;}
.fc1_c01227{color:rgb(128,128,128);}
.fc0_c01227{color:rgb(0,0,0);}
.fs6_c01227{font-size:48.000000px;}
.fs3_c01227{font-size:57.000000px;}
.fs4_c01227{font-size:63.000000px;}
.fs2_c01227{font-size:66.000000px;}
.fs5_c01227{font-size:69.000000px;}
.fs1_c01227{font-size:72.000000px;}
.fs0_c01227{font-size:84.000000px;}
.y0_c01227{bottom:0.000000px;}
.y1e_c01227{bottom:3.105000px;}
.y1d_c01227{bottom:7.228363px;}
.y1c_c01227{bottom:67.500000px;}
.y1b_c01227{bottom:94.950000px;}
.y1a_c01227{bottom:119.100000px;}
.y19_c01227{bottom:144.150000px;}
.y18_c01227{bottom:170.100000px;}
.y17_c01227{bottom:194.100000px;}
.y16_c01227{bottom:220.350000px;}
.y15_c01227{bottom:244.650000px;}
.y14_c01227{bottom:269.700000px;}
.y13_c01227{bottom:294.600000px;}
.y12_c01227{bottom:320.250000px;}
.y11_c01227{bottom:345.300000px;}
.y10_c01227{bottom:368.850000px;}
.yf_c01227{bottom:393.900000px;}
.ye_c01227{bottom:417.900000px;}
.yd_c01227{bottom:441.900000px;}
.yc_c01227{bottom:467.100000px;}
.yb_c01227{bottom:490.800000px;}
.ya_c01227{bottom:515.700000px;}
.y9_c01227{bottom:540.300000px;}
.y8_c01227{bottom:564.900000px;}
.y7_c01227{bottom:590.100000px;}
.y6_c01227{bottom:614.850000px;}
.y5_c01227{bottom:639.600000px;}
.y4_c01227{bottom:664.500000px;}
.y3_c01227{bottom:689.100000px;}
.y2_c01227{bottom:713.850000px;}
.y1_c01227{bottom:738.900000px;}
.h4_c01227{height:13.200074px;}
.h5_c01227{height:43.804688px;}
.h2_c01227{height:82.441406px;}
.h3_c01227{height:91.160156px;}
.h1_c01227{height:793.500000px;}
.h0_c01227{height:793.800000px;}
.w2_c01227{width:104.875500px;}
.w0_c01227{width:508.950000px;}
.w1_c01227{width:509.250000px;}
.x0_c01227{left:0.000000px;}
.x2_c01227{left:85.950000px;}
.x3_c01227{left:87.300000px;}
.x4_c01227{left:88.350000px;}
.x1_c01227{left:193.050000px;}
.x5_c01227{left:206.289230px;}
@media print{
.v1_c01227{vertical-align:-65.600000pt;}
.v0_c01227{vertical-align:0.000000pt;}
.ls4_c01227{letter-spacing:-5.333333pt;}
.ls0_c01227{letter-spacing:0.000000pt;}
.ls1_c01227{letter-spacing:2.666667pt;}
.ls2_c01227{letter-spacing:5.333333pt;}
.ls3_c01227{letter-spacing:26.666667pt;}
.ws0_c01227{word-spacing:-42.090667pt;}
.ws1_c01227{word-spacing:-14.781333pt;}
.ws2_c01227{word-spacing:0.000000pt;}
._12_c01227{margin-left:-15.808000pt;}
._13_c01227{margin-left:-14.400000pt;}
._10_c01227{margin-left:-9.280000pt;}
._11_c01227{margin-left:-8.064000pt;}
._b_c01227{margin-left:-6.826667pt;}
._3_c01227{margin-left:-5.077333pt;}
._6_c01227{margin-left:-4.128000pt;}
._8_c01227{margin-left:-2.432000pt;}
._7_c01227{margin-left:-1.536000pt;}
._a_c01227{width:0.917333pt;}
._4_c01227{width:1.866667pt;}
._5_c01227{width:3.360000pt;}
._1_c01227{width:4.853333pt;}
._9_c01227{width:5.749333pt;}
._d_c01227{width:7.306667pt;}
._0_c01227{width:8.288000pt;}
._2_c01227{width:9.258667pt;}
._c_c01227{width:11.061333pt;}
._e_c01227{width:14.240000pt;}
._f_c01227{width:15.162667pt;}
.fs6_c01227{font-size:42.666667pt;}
.fs3_c01227{font-size:50.666667pt;}
.fs4_c01227{font-size:56.000000pt;}
.fs2_c01227{font-size:58.666667pt;}
.fs5_c01227{font-size:61.333333pt;}
.fs1_c01227{font-size:64.000000pt;}
.fs0_c01227{font-size:74.666667pt;}
.y0_c01227{bottom:0.000000pt;}
.y1e_c01227{bottom:2.760000pt;}
.y1d_c01227{bottom:6.425212pt;}
.y1c_c01227{bottom:60.000000pt;}
.y1b_c01227{bottom:84.400000pt;}
.y1a_c01227{bottom:105.866667pt;}
.y19_c01227{bottom:128.133333pt;}
.y18_c01227{bottom:151.200000pt;}
.y17_c01227{bottom:172.533333pt;}
.y16_c01227{bottom:195.866667pt;}
.y15_c01227{bottom:217.466667pt;}
.y14_c01227{bottom:239.733333pt;}
.y13_c01227{bottom:261.866667pt;}
.y12_c01227{bottom:284.666667pt;}
.y11_c01227{bottom:306.933333pt;}
.y10_c01227{bottom:327.866667pt;}
.yf_c01227{bottom:350.133333pt;}
.ye_c01227{bottom:371.466667pt;}
.yd_c01227{bottom:392.800000pt;}
.yc_c01227{bottom:415.200000pt;}
.yb_c01227{bottom:436.266667pt;}
.ya_c01227{bottom:458.400000pt;}
.y9_c01227{bottom:480.266667pt;}
.y8_c01227{bottom:502.133333pt;}
.y7_c01227{bottom:524.533333pt;}
.y6_c01227{bottom:546.533333pt;}
.y5_c01227{bottom:568.533333pt;}
.y4_c01227{bottom:590.666667pt;}
.y3_c01227{bottom:612.533333pt;}
.y2_c01227{bottom:634.533333pt;}
.y1_c01227{bottom:656.800000pt;}
.h4_c01227{height:11.733399pt;}
.h5_c01227{height:38.937500pt;}
.h2_c01227{height:73.281250pt;}
.h3_c01227{height:81.031250pt;}
.h1_c01227{height:705.333333pt;}
.h0_c01227{height:705.600000pt;}
.w2_c01227{width:93.222667pt;}
.w0_c01227{width:452.400000pt;}
.w1_c01227{width:452.666667pt;}
.x0_c01227{left:0.000000pt;}
.x2_c01227{left:76.400000pt;}
.x3_c01227{left:77.600000pt;}
.x4_c01227{left:78.533333pt;}
.x1_c01227{left:171.600000pt;}
.x5_c01227{left:183.368205pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6b58a33d57e1f82d3361f944.woff2')format("woff");}.ff1_c01228{font-family:ff1_c01228;line-height:1.568848;font-style:normal;font-weight:normal;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_d61f55008768336fb521f0fb.woff2')format("woff");}.ff2_c01228{font-family:ff2_c01228;line-height:1.480469;font-style:normal;font-weight:normal;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_3afe7ca2e8303cbf2931dcb6.woff2')format("woff");}.ff3_c01228{font-family:ff3_c01228;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01228;src:url('chunks/assets/font_250ab034fd24ad09150f129d.woff2')format("woff");}.ff4_c01228{font-family:ff4_c01228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01228;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01228{font-family:ff5_c01228;line-height:1.219238;font-style: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;}
.ls2_c01228{letter-spacing:-6.000000px;}
.ls1_c01228{letter-spacing:0.000000px;}
.ls0_c01228{letter-spacing:3.000000px;}
.ls3_c01228{letter-spacing:6.000000px;}
.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:-24.051000px;}
.ws1_c01228{word-spacing:-17.352000px;}
.ws2_c01228{word-spacing:0.000000px;}
._1_c01228{margin-left:-14.973000px;}
._2_c01228{margin-left:-13.113000px;}
._18_c01228{margin-left:-11.412000px;}
._19_c01228{margin-left:-9.720000px;}
._17_c01228{margin-left:-8.649000px;}
._3_c01228{margin-left:-7.389000px;}
._14_c01228{margin-left:-6.372000px;}
._10_c01228{margin-left:-5.256000px;}
._a_c01228{margin-left:-4.032000px;}
._c_c01228{margin-left:-2.592000px;}
._b_c01228{margin-left:-1.584000px;}
._d_c01228{width:1.440000px;}
._e_c01228{width:2.952000px;}
._4_c01228{width:4.500000px;}
._15_c01228{width:5.796000px;}
._16_c01228{width:7.668000px;}
._0_c01228{width:9.021000px;}
._1b_c01228{width:10.293000px;}
._6_c01228{width:11.820000px;}
._12_c01228{width:13.248000px;}
._f_c01228{width:14.832000px;}
._1c_c01228{width:16.809000px;}
._5_c01228{width:18.759000px;}
._1a_c01228{width:19.782000px;}
._8_c01228{width:21.540000px;}
._11_c01228{width:24.912000px;}
._13_c01228{width:27.504000px;}
._9_c01228{width:42.000000px;}
._7_c01228{width:302.580000px;}
.fc2_c01228{color:transparent;}
.fc1_c01228{color:rgb(128,128,128);}
.fc0_c01228{color:rgb(0,0,0);}
.fs5_c01228{font-size:48.000000px;}
.fs1_c01228{font-size:60.000000px;}
.fs3_c01228{font-size:63.000000px;}
.fs2_c01228{font-size:72.000000px;}
.fs4_c01228{font-size:84.000000px;}
.fs0_c01228{font-size:93.000000px;}
.y0_c01228{bottom:0.000000px;}
.y1e_c01228{bottom:3.105000px;}
.y1d_c01228{bottom:7.228357px;}
.y1c_c01228{bottom:83.130000px;}
.y1b_c01228{bottom:110.130000px;}
.y1a_c01228{bottom:133.080000px;}
.y19_c01228{bottom:160.080000px;}
.y18_c01228{bottom:184.680000px;}
.y17_c01228{bottom:210.330000px;}
.y16_c01228{bottom:233.580000px;}
.y15_c01228{bottom:259.230000px;}
.y14_c01228{bottom:284.580000px;}
.y13_c01228{bottom:308.430000px;}
.y12_c01228{bottom:331.380000px;}
.y11_c01228{bottom:356.130000px;}
.y10_c01228{bottom:381.480000px;}
.yf_c01228{bottom:404.730000px;}
.ye_c01228{bottom:429.630000px;}
.yd_c01228{bottom:454.380000px;}
.yc_c01228{bottom:479.280000px;}
.yb_c01228{bottom:503.280000px;}
.ya_c01228{bottom:527.280000px;}
.y9_c01228{bottom:551.130000px;}
.y8_c01228{bottom:576.180000px;}
.y7_c01228{bottom:600.180000px;}
.y6_c01228{bottom:625.080000px;}
.y5_c01228{bottom:649.980000px;}
.y4_c01228{bottom:674.730000px;}
.y3_c01228{bottom:699.930000px;}
.y2_c01228{bottom:724.380000px;}
.y1_c01228{bottom:749.580000px;}
.h6_c01228{height:13.200074px;}
.h7_c01228{height:43.804688px;}
.h4_c01228{height:79.765137px;}
.h5_c01228{height:82.441406px;}
.h3_c01228{height:91.160156px;}
.h2_c01228{height:117.748535px;}
.h1_c01228{height:784.500000px;}
.h0_c01228{height:784.650000px;}
.w2_c01228{width:104.875500px;}
.w0_c01228{width:535.425000px;}
.w1_c01228{width:535.500000px;}
.x0_c01228{left:0.000000px;}
.x2_c01228{left:29.700000px;}
.x3_c01228{left:36.150000px;}
.x4_c01228{left:37.200000px;}
.x5_c01228{left:39.150000px;}
.x6_c01228{left:40.800000px;}
.xa_c01228{left:42.900000px;}
.x9_c01228{left:44.250000px;}
.x7_c01228{left:48.000000px;}
.x8_c01228{left:50.700000px;}
.x1_c01228{left:150.600000px;}
.xb_c01228{left:219.526749px;}
@media print{
.v0_c01228{vertical-align:0.000000pt;}
.ls2_c01228{letter-spacing:-5.333333pt;}
.ls1_c01228{letter-spacing:0.000000pt;}
.ls0_c01228{letter-spacing:2.666667pt;}
.ls3_c01228{letter-spacing:5.333333pt;}
.ws0_c01228{word-spacing:-21.378667pt;}
.ws1_c01228{word-spacing:-15.424000pt;}
.ws2_c01228{word-spacing:0.000000pt;}
._1_c01228{margin-left:-13.309333pt;}
._2_c01228{margin-left:-11.656000pt;}
._18_c01228{margin-left:-10.144000pt;}
._19_c01228{margin-left:-8.640000pt;}
._17_c01228{margin-left:-7.688000pt;}
._3_c01228{margin-left:-6.568000pt;}
._14_c01228{margin-left:-5.664000pt;}
._10_c01228{margin-left:-4.672000pt;}
._a_c01228{margin-left:-3.584000pt;}
._c_c01228{margin-left:-2.304000pt;}
._b_c01228{margin-left:-1.408000pt;}
._d_c01228{width:1.280000pt;}
._e_c01228{width:2.624000pt;}
._4_c01228{width:4.000000pt;}
._15_c01228{width:5.152000pt;}
._16_c01228{width:6.816000pt;}
._0_c01228{width:8.018667pt;}
._1b_c01228{width:9.149333pt;}
._6_c01228{width:10.506667pt;}
._12_c01228{width:11.776000pt;}
._f_c01228{width:13.184000pt;}
._1c_c01228{width:14.941333pt;}
._5_c01228{width:16.674667pt;}
._1a_c01228{width:17.584000pt;}
._8_c01228{width:19.146667pt;}
._11_c01228{width:22.144000pt;}
._13_c01228{width:24.448000pt;}
._9_c01228{width:37.333333pt;}
._7_c01228{width:268.960000pt;}
.fs5_c01228{font-size:42.666667pt;}
.fs1_c01228{font-size:53.333333pt;}
.fs3_c01228{font-size:56.000000pt;}
.fs2_c01228{font-size:64.000000pt;}
.fs4_c01228{font-size:74.666667pt;}
.fs0_c01228{font-size:82.666667pt;}
.y0_c01228{bottom:0.000000pt;}
.y1e_c01228{bottom:2.760000pt;}
.y1d_c01228{bottom:6.425206pt;}
.y1c_c01228{bottom:73.893333pt;}
.y1b_c01228{bottom:97.893333pt;}
.y1a_c01228{bottom:118.293333pt;}
.y19_c01228{bottom:142.293333pt;}
.y18_c01228{bottom:164.160000pt;}
.y17_c01228{bottom:186.960000pt;}
.y16_c01228{bottom:207.626667pt;}
.y15_c01228{bottom:230.426667pt;}
.y14_c01228{bottom:252.960000pt;}
.y13_c01228{bottom:274.160000pt;}
.y12_c01228{bottom:294.560000pt;}
.y11_c01228{bottom:316.560000pt;}
.y10_c01228{bottom:339.093333pt;}
.yf_c01228{bottom:359.760000pt;}
.ye_c01228{bottom:381.893333pt;}
.yd_c01228{bottom:403.893333pt;}
.yc_c01228{bottom:426.026667pt;}
.yb_c01228{bottom:447.360000pt;}
.ya_c01228{bottom:468.693333pt;}
.y9_c01228{bottom:489.893333pt;}
.y8_c01228{bottom:512.160000pt;}
.y7_c01228{bottom:533.493333pt;}
.y6_c01228{bottom:555.626667pt;}
.y5_c01228{bottom:577.760000pt;}
.y4_c01228{bottom:599.760000pt;}
.y3_c01228{bottom:622.160000pt;}
.y2_c01228{bottom:643.893333pt;}
.y1_c01228{bottom:666.293333pt;}
.h6_c01228{height:11.733399pt;}
.h7_c01228{height:38.937500pt;}
.h4_c01228{height:70.902344pt;}
.h5_c01228{height:73.281250pt;}
.h3_c01228{height:81.031250pt;}
.h2_c01228{height:104.665365pt;}
.h1_c01228{height:697.333333pt;}
.h0_c01228{height:697.466667pt;}
.w2_c01228{width:93.222667pt;}
.w0_c01228{width:475.933333pt;}
.w1_c01228{width:476.000000pt;}
.x0_c01228{left:0.000000pt;}
.x2_c01228{left:26.400000pt;}
.x3_c01228{left:32.133333pt;}
.x4_c01228{left:33.066667pt;}
.x5_c01228{left:34.800000pt;}
.x6_c01228{left:36.266667pt;}
.xa_c01228{left:38.133333pt;}
.x9_c01228{left:39.333333pt;}
.x7_c01228{left:42.666667pt;}
.x8_c01228{left:45.066667pt;}
.x1_c01228{left:133.866667pt;}
.xb_c01228{left:195.134888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_07935f58c7d55d0594d42cea.woff2')format("woff");}.ff1_c01229{font-family:ff1_c01229;line-height:1.480469;font-style:normal;font-weight:normal;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_604ce642cb80c5e1d7600aee.woff2')format("woff");}.ff2_c01229{font-family:ff2_c01229;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01229{font-family:ff3_c01229;line-height:1.219238;font-style: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;}
.ls1_c01229{letter-spacing:0.000000px;}
.ls0_c01229{letter-spacing:3.000000px;}
.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.352000px;}
.ws1_c01229{word-spacing:0.000000px;}
._14_c01229{margin-left:-16.446000px;}
._13_c01229{margin-left:-12.672000px;}
._16_c01229{margin-left:-11.136000px;}
._15_c01229{margin-left:-9.918000px;}
._c_c01229{margin-left:-6.552000px;}
._f_c01229{margin-left:-5.544000px;}
._e_c01229{margin-left:-4.320000px;}
._4_c01229{margin-left:-2.592000px;}
._5_c01229{margin-left:-1.512000px;}
._6_c01229{width:1.416000px;}
._1_c01229{width:2.592000px;}
._2_c01229{width:4.248000px;}
._0_c01229{width:5.256000px;}
._3_c01229{width:6.336000px;}
._10_c01229{width:7.800000px;}
._a_c01229{width:8.832000px;}
._8_c01229{width:10.296000px;}
._7_c01229{width:11.616000px;}
._11_c01229{width:13.824000px;}
._d_c01229{width:15.936000px;}
._9_c01229{width:17.304000px;}
._12_c01229{width:22.671000px;}
._b_c01229{width:27.840000px;}
._18_c01229{width:688.695000px;}
._17_c01229{width:693.912000px;}
.fc2_c01229{color:transparent;}
.fc1_c01229{color:rgb(128,128,128);}
.fc0_c01229{color:rgb(0,0,0);}
.fs3_c01229{font-size:48.000000px;}
.fs1_c01229{font-size:66.000000px;}
.fs0_c01229{font-size:72.000000px;}
.fs2_c01229{font-size:87.000000px;}
.y0_c01229{bottom:0.000000px;}
.y1f_c01229{bottom:3.105000px;}
.y1e_c01229{bottom:7.228371px;}
.y1d_c01229{bottom:63.165000px;}
.y1c_c01229{bottom:82.365000px;}
.y1b_c01229{bottom:109.365000px;}
.y1a_c01229{bottom:133.365000px;}
.y19_c01229{bottom:158.415000px;}
.y18_c01229{bottom:183.015000px;}
.y17_c01229{bottom:208.665000px;}
.y16_c01229{bottom:232.965000px;}
.y15_c01229{bottom:258.915000px;}
.y14_c01229{bottom:282.165000px;}
.y13_c01229{bottom:307.215000px;}
.y12_c01229{bottom:331.515000px;}
.y11_c01229{bottom:356.115000px;}
.y10_c01229{bottom:380.115000px;}
.yf_c01229{bottom:403.365000px;}
.ye_c01229{bottom:427.065000px;}
.yd_c01229{bottom:450.915000px;}
.yc_c01229{bottom:475.215000px;}
.yb_c01229{bottom:500.265000px;}
.ya_c01229{bottom:524.865000px;}
.y9_c01229{bottom:549.165000px;}
.y8_c01229{bottom:573.465000px;}
.y7_c01229{bottom:598.515000px;}
.y6_c01229{bottom:623.715000px;}
.y5_c01229{bottom:648.315000px;}
.y4_c01229{bottom:673.065000px;}
.y3_c01229{bottom:697.965000px;}
.y2_c01229{bottom:722.565000px;}
.y1_c01229{bottom:748.215000px;}
.h4_c01229{height:13.200074px;}
.h5_c01229{height:43.804688px;}
.h2_c01229{height:91.160156px;}
.h3_c01229{height:110.151855px;}
.h1_c01229{height:782.250000px;}
.h0_c01229{height:782.475000px;}
.w2_c01229{width:104.875500px;}
.w0_c01229{width:508.950000px;}
.w1_c01229{width:509.250000px;}
.x0_c01229{left:0.000000px;}
.xa_c01229{left:82.350000px;}
.x3_c01229{left:83.700000px;}
.x5_c01229{left:85.050000px;}
.x4_c01229{left:86.700000px;}
.x2_c01229{left:88.350000px;}
.x6_c01229{left:89.400000px;}
.x7_c01229{left:90.750000px;}
.x8_c01229{left:91.800000px;}
.x9_c01229{left:92.850000px;}
.x1_c01229{left:207.150000px;}
@media print{
.v0_c01229{vertical-align:0.000000pt;}
.ls1_c01229{letter-spacing:0.000000pt;}
.ls0_c01229{letter-spacing:2.666667pt;}
.ws0_c01229{word-spacing:-15.424000pt;}
.ws1_c01229{word-spacing:0.000000pt;}
._14_c01229{margin-left:-14.618667pt;}
._13_c01229{margin-left:-11.264000pt;}
._16_c01229{margin-left:-9.898667pt;}
._15_c01229{margin-left:-8.816000pt;}
._c_c01229{margin-left:-5.824000pt;}
._f_c01229{margin-left:-4.928000pt;}
._e_c01229{margin-left:-3.840000pt;}
._4_c01229{margin-left:-2.304000pt;}
._5_c01229{margin-left:-1.344000pt;}
._6_c01229{width:1.258667pt;}
._1_c01229{width:2.304000pt;}
._2_c01229{width:3.776000pt;}
._0_c01229{width:4.672000pt;}
._3_c01229{width:5.632000pt;}
._10_c01229{width:6.933333pt;}
._a_c01229{width:7.850667pt;}
._8_c01229{width:9.152000pt;}
._7_c01229{width:10.325333pt;}
._11_c01229{width:12.288000pt;}
._d_c01229{width:14.165333pt;}
._9_c01229{width:15.381333pt;}
._12_c01229{width:20.152000pt;}
._b_c01229{width:24.746667pt;}
._18_c01229{width:612.173333pt;}
._17_c01229{width:616.810667pt;}
.fs3_c01229{font-size:42.666667pt;}
.fs1_c01229{font-size:58.666667pt;}
.fs0_c01229{font-size:64.000000pt;}
.fs2_c01229{font-size:77.333333pt;}
.y0_c01229{bottom:0.000000pt;}
.y1f_c01229{bottom:2.760000pt;}
.y1e_c01229{bottom:6.425219pt;}
.y1d_c01229{bottom:56.146667pt;}
.y1c_c01229{bottom:73.213333pt;}
.y1b_c01229{bottom:97.213333pt;}
.y1a_c01229{bottom:118.546667pt;}
.y19_c01229{bottom:140.813333pt;}
.y18_c01229{bottom:162.680000pt;}
.y17_c01229{bottom:185.480000pt;}
.y16_c01229{bottom:207.080000pt;}
.y15_c01229{bottom:230.146667pt;}
.y14_c01229{bottom:250.813333pt;}
.y13_c01229{bottom:273.080000pt;}
.y12_c01229{bottom:294.680000pt;}
.y11_c01229{bottom:316.546667pt;}
.y10_c01229{bottom:337.880000pt;}
.yf_c01229{bottom:358.546667pt;}
.ye_c01229{bottom:379.613333pt;}
.yd_c01229{bottom:400.813333pt;}
.yc_c01229{bottom:422.413333pt;}
.yb_c01229{bottom:444.680000pt;}
.ya_c01229{bottom:466.546667pt;}
.y9_c01229{bottom:488.146667pt;}
.y8_c01229{bottom:509.746667pt;}
.y7_c01229{bottom:532.013333pt;}
.y6_c01229{bottom:554.413333pt;}
.y5_c01229{bottom:576.280000pt;}
.y4_c01229{bottom:598.280000pt;}
.y3_c01229{bottom:620.413333pt;}
.y2_c01229{bottom:642.280000pt;}
.y1_c01229{bottom:665.080000pt;}
.h4_c01229{height:11.733399pt;}
.h5_c01229{height:38.937500pt;}
.h2_c01229{height:81.031250pt;}
.h3_c01229{height:97.912760pt;}
.h1_c01229{height:695.333333pt;}
.h0_c01229{height:695.533333pt;}
.w2_c01229{width:93.222667pt;}
.w0_c01229{width:452.400000pt;}
.w1_c01229{width:452.666667pt;}
.x0_c01229{left:0.000000pt;}
.xa_c01229{left:73.200000pt;}
.x3_c01229{left:74.400000pt;}
.x5_c01229{left:75.600000pt;}
.x4_c01229{left:77.066667pt;}
.x2_c01229{left:78.533333pt;}
.x6_c01229{left:79.466667pt;}
.x7_c01229{left:80.666667pt;}
.x8_c01229{left:81.600000pt;}
.x9_c01229{left:82.533333pt;}
.x1_c01229{left:184.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4144dd316766f63609e15108.woff2')format("woff");}.ff1_c01230{font-family:ff1_c01230;line-height:1.480469;font-style:normal;font-weight:normal;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_170cd917db4d65af672f5534.woff2')format("woff");}.ff2_c01230{font-family:ff2_c01230;line-height:1.284180;font-style:normal;font-weight:normal;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_12ddc56ac7751126628046ed.woff2')format("woff");}.ff3_c01230{font-family:ff3_c01230;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01230;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01230{font-family:ff4_c01230;line-height:1.219238;font-style: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;}
.ls2_c01230{letter-spacing:-3.000000px;}
.ls3_c01230{letter-spacing:0.000000px;}
.ls0_c01230{letter-spacing:3.000000px;}
.ls1_c01230{letter-spacing:52.704000px;}
.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:-17.352000px;}
.ws1_c01230{word-spacing:0.000000px;}
._17_c01230{margin-left:-17.784000px;}
._8_c01230{margin-left:-13.314000px;}
._5_c01230{margin-left:-11.397000px;}
._14_c01230{margin-left:-8.715000px;}
._c_c01230{margin-left:-7.431000px;}
._12_c01230{margin-left:-6.264000px;}
._2_c01230{margin-left:-4.698000px;}
._d_c01230{margin-left:-3.384000px;}
._10_c01230{margin-left:-2.313000px;}
._9_c01230{margin-left:-1.296000px;}
._6_c01230{width:1.740000px;}
._a_c01230{width:3.372000px;}
._3_c01230{width:4.437000px;}
._f_c01230{width:5.448000px;}
._b_c01230{width:7.248000px;}
._1a_c01230{width:8.316000px;}
._4_c01230{width:9.657000px;}
._1_c01230{width:12.006000px;}
._11_c01230{width:13.011000px;}
._15_c01230{width:15.156000px;}
._13_c01230{width:16.254000px;}
._e_c01230{width:17.604000px;}
._0_c01230{width:19.140000px;}
._18_c01230{width:24.255000px;}
._7_c01230{width:305.631000px;}
._19_c01230{width:327.675000px;}
._16_c01230{width:344.370000px;}
.fc2_c01230{color:transparent;}
.fc1_c01230{color:rgb(128,128,128);}
.fc0_c01230{color:rgb(0,0,0);}
.fs4_c01230{font-size:48.000000px;}
.fs1_c01230{font-size:60.000000px;}
.fs3_c01230{font-size:63.000000px;}
.fs2_c01230{font-size:72.000000px;}
.fs0_c01230{font-size:87.000000px;}
.y0_c01230{bottom:0.000000px;}
.y1f_c01230{bottom:3.105000px;}
.y1e_c01230{bottom:7.228369px;}
.y1d_c01230{bottom:43.770000px;}
.y1c_c01230{bottom:71.520000px;}
.y1b_c01230{bottom:96.120000px;}
.y1a_c01230{bottom:122.070000px;}
.y19_c01230{bottom:147.120000px;}
.y18_c01230{bottom:169.320000px;}
.y17_c01230{bottom:196.770000px;}
.y16_c01230{bottom:221.670000px;}
.y15_c01230{bottom:246.420000px;}
.y14_c01230{bottom:271.020000px;}
.y13_c01230{bottom:295.920000px;}
.y12_c01230{bottom:320.220000px;}
.y11_c01230{bottom:343.620000px;}
.y10_c01230{bottom:369.120000px;}
.yf_c01230{bottom:393.120000px;}
.ye_c01230{bottom:417.720000px;}
.yd_c01230{bottom:442.470000px;}
.yc_c01230{bottom:466.470000px;}
.yb_c01230{bottom:491.670000px;}
.ya_c01230{bottom:515.370000px;}
.y9_c01230{bottom:538.620000px;}
.y8_c01230{bottom:562.620000px;}
.y7_c01230{bottom:588.270000px;}
.y6_c01230{bottom:612.870000px;}
.y5_c01230{bottom:636.870000px;}
.y4_c01230{bottom:663.420000px;}
.y3_c01230{bottom:686.070000px;}
.y2_c01230{bottom:711.120000px;}
.y1_c01230{bottom:735.720000px;}
.h5_c01230{height:13.200073px;}
.h6_c01230{height:43.804688px;}
.h4_c01230{height:79.765137px;}
.h3_c01230{height:91.160156px;}
.h2_c01230{height:101.825684px;}
.h1_c01230{height:785.250000px;}
.h0_c01230{height:785.400000px;}
.w2_c01230{width:104.875500px;}
.w0_c01230{width:539.700000px;}
.w1_c01230{width:540.000000px;}
.x0_c01230{left:0.000000px;}
.x4_c01230{left:22.650000px;}
.x2_c01230{left:25.350000px;}
.xa_c01230{left:27.000000px;}
.x3_c01230{left:28.350000px;}
.x5_c01230{left:29.400000px;}
.x6_c01230{left:30.450000px;}
.x7_c01230{left:31.800000px;}
.x8_c01230{left:33.750000px;}
.x9_c01230{left:35.100000px;}
.xb_c01230{left:75.300000px;}
.x1_c01230{left:132.900000px;}
.xd_c01230{left:221.664230px;}
.xc_c01230{left:247.500000px;}
@media print{
.v0_c01230{vertical-align:0.000000pt;}
.ls2_c01230{letter-spacing:-2.666667pt;}
.ls3_c01230{letter-spacing:0.000000pt;}
.ls0_c01230{letter-spacing:2.666667pt;}
.ls1_c01230{letter-spacing:46.848000pt;}
.ws0_c01230{word-spacing:-15.424000pt;}
.ws1_c01230{word-spacing:0.000000pt;}
._17_c01230{margin-left:-15.808000pt;}
._8_c01230{margin-left:-11.834667pt;}
._5_c01230{margin-left:-10.130667pt;}
._14_c01230{margin-left:-7.746667pt;}
._c_c01230{margin-left:-6.605333pt;}
._12_c01230{margin-left:-5.568000pt;}
._2_c01230{margin-left:-4.176000pt;}
._d_c01230{margin-left:-3.008000pt;}
._10_c01230{margin-left:-2.056000pt;}
._9_c01230{margin-left:-1.152000pt;}
._6_c01230{width:1.546667pt;}
._a_c01230{width:2.997333pt;}
._3_c01230{width:3.944000pt;}
._f_c01230{width:4.842667pt;}
._b_c01230{width:6.442667pt;}
._1a_c01230{width:7.392000pt;}
._4_c01230{width:8.584000pt;}
._1_c01230{width:10.672000pt;}
._11_c01230{width:11.565333pt;}
._15_c01230{width:13.472000pt;}
._13_c01230{width:14.448000pt;}
._e_c01230{width:15.648000pt;}
._0_c01230{width:17.013333pt;}
._18_c01230{width:21.560000pt;}
._7_c01230{width:271.672000pt;}
._19_c01230{width:291.266667pt;}
._16_c01230{width:306.106667pt;}
.fs4_c01230{font-size:42.666667pt;}
.fs1_c01230{font-size:53.333333pt;}
.fs3_c01230{font-size:56.000000pt;}
.fs2_c01230{font-size:64.000000pt;}
.fs0_c01230{font-size:77.333333pt;}
.y0_c01230{bottom:0.000000pt;}
.y1f_c01230{bottom:2.760000pt;}
.y1e_c01230{bottom:6.425217pt;}
.y1d_c01230{bottom:38.906667pt;}
.y1c_c01230{bottom:63.573333pt;}
.y1b_c01230{bottom:85.440000pt;}
.y1a_c01230{bottom:108.506667pt;}
.y19_c01230{bottom:130.773333pt;}
.y18_c01230{bottom:150.506667pt;}
.y17_c01230{bottom:174.906667pt;}
.y16_c01230{bottom:197.040000pt;}
.y15_c01230{bottom:219.040000pt;}
.y14_c01230{bottom:240.906667pt;}
.y13_c01230{bottom:263.040000pt;}
.y12_c01230{bottom:284.640000pt;}
.y11_c01230{bottom:305.440000pt;}
.y10_c01230{bottom:328.106667pt;}
.yf_c01230{bottom:349.440000pt;}
.ye_c01230{bottom:371.306667pt;}
.yd_c01230{bottom:393.306667pt;}
.yc_c01230{bottom:414.640000pt;}
.yb_c01230{bottom:437.040000pt;}
.ya_c01230{bottom:458.106667pt;}
.y9_c01230{bottom:478.773333pt;}
.y8_c01230{bottom:500.106667pt;}
.y7_c01230{bottom:522.906667pt;}
.y6_c01230{bottom:544.773333pt;}
.y5_c01230{bottom:566.106667pt;}
.y4_c01230{bottom:589.706667pt;}
.y3_c01230{bottom:609.840000pt;}
.y2_c01230{bottom:632.106667pt;}
.y1_c01230{bottom:653.973333pt;}
.h5_c01230{height:11.733399pt;}
.h6_c01230{height:38.937500pt;}
.h4_c01230{height:70.902344pt;}
.h3_c01230{height:81.031250pt;}
.h2_c01230{height:90.511719pt;}
.h1_c01230{height:698.000000pt;}
.h0_c01230{height:698.133333pt;}
.w2_c01230{width:93.222667pt;}
.w0_c01230{width:479.733333pt;}
.w1_c01230{width:480.000000pt;}
.x0_c01230{left:0.000000pt;}
.x4_c01230{left:20.133333pt;}
.x2_c01230{left:22.533333pt;}
.xa_c01230{left:24.000000pt;}
.x3_c01230{left:25.200000pt;}
.x5_c01230{left:26.133333pt;}
.x6_c01230{left:27.066667pt;}
.x7_c01230{left:28.266667pt;}
.x8_c01230{left:30.000000pt;}
.x9_c01230{left:31.200000pt;}
.xb_c01230{left:66.933333pt;}
.x1_c01230{left:118.133333pt;}
.xd_c01230{left:197.034871pt;}
.xc_c01230{left:220.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_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_14f7c8881fc3ec21a6b01ede.woff2')format("woff");}.ff1_c01231{font-family:ff1_c01231;line-height:1.480469;font-style:normal;font-weight:normal;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_306643d31088d903c9aa3838.woff2')format("woff");}.ff2_c01231{font-family:ff2_c01231;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01231{font-family:ff3_c01231;line-height:1.219238;font-style: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;}
.ls0_c01231{letter-spacing:-3.000000px;}
.ls1_c01231{letter-spacing:0.000000px;}
.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:-13.629000px;}
.ws2_c01231{word-spacing:0.000000px;}
.ws1_c01231{word-spacing:2.103000px;}
._13_c01231{margin-left:-10.488000px;}
._f_c01231{margin-left:-8.721000px;}
._11_c01231{margin-left:-7.470000px;}
._12_c01231{margin-left:-6.252000px;}
._5_c01231{margin-left:-3.894000px;}
._b_c01231{margin-left:-2.190000px;}
._2_c01231{margin-left:-1.131000px;}
._9_c01231{width:1.410000px;}
._1_c01231{width:2.958000px;}
._6_c01231{width:4.470000px;}
._0_c01231{width:5.742000px;}
._3_c01231{width:7.107000px;}
._4_c01231{width:8.901000px;}
._7_c01231{width:10.515000px;}
._8_c01231{width:11.937000px;}
._c_c01231{width:13.011000px;}
._10_c01231{width:14.715000px;}
._d_c01231{width:17.760000px;}
._e_c01231{width:18.969000px;}
._14_c01231{width:20.985000px;}
._a_c01231{width:22.962000px;}
.fc2_c01231{color:transparent;}
.fc1_c01231{color:rgb(128,128,128);}
.fc0_c01231{color:rgb(0,0,0);}
.fs2_c01231{font-size:48.000000px;}
.fs1_c01231{font-size:69.000000px;}
.fs0_c01231{font-size:87.000000px;}
.y0_c01231{bottom:0.000000px;}
.y1e_c01231{bottom:3.105000px;}
.y1d_c01231{bottom:7.228355px;}
.y1c_c01231{bottom:68.835000px;}
.y1b_c01231{bottom:93.135000px;}
.y1a_c01231{bottom:119.085000px;}
.y19_c01231{bottom:143.985000px;}
.y18_c01231{bottom:169.335000px;}
.y17_c01231{bottom:194.685000px;}
.y16_c01231{bottom:219.285000px;}
.y15_c01231{bottom:244.335000px;}
.y14_c01231{bottom:269.085000px;}
.y13_c01231{bottom:293.985000px;}
.y12_c01231{bottom:318.885000px;}
.y11_c01231{bottom:342.585000px;}
.y10_c01231{bottom:366.885000px;}
.yf_c01231{bottom:391.035000px;}
.ye_c01231{bottom:414.435000px;}
.yd_c01231{bottom:439.335000px;}
.yc_c01231{bottom:462.585000px;}
.yb_c01231{bottom:487.035000px;}
.ya_c01231{bottom:511.935000px;}
.y9_c01231{bottom:536.535000px;}
.y8_c01231{bottom:561.285000px;}
.y7_c01231{bottom:585.585000px;}
.y6_c01231{bottom:610.785000px;}
.y5_c01231{bottom:636.135000px;}
.y4_c01231{bottom:660.135000px;}
.y3_c01231{bottom:684.435000px;}
.y2_c01231{bottom:709.785000px;}
.y1_c01231{bottom:735.285000px;}
.h4_c01231{height:13.200074px;}
.h5_c01231{height:43.804688px;}
.h3_c01231{height:87.361816px;}
.h2_c01231{height:110.151855px;}
.h1_c01231{height:787.500000px;}
.h0_c01231{height:787.575000px;}
.w2_c01231{width:104.875500px;}
.w1_c01231{width:508.500000px;}
.w0_c01231{width:508.650000px;}
.x0_c01231{left:0.000000px;}
.x9_c01231{left:93.150000px;}
.x8_c01231{left:94.500000px;}
.x7_c01231{left:95.550000px;}
.x6_c01231{left:96.900000px;}
.x5_c01231{left:99.150000px;}
.x4_c01231{left:101.250000px;}
.x3_c01231{left:102.300000px;}
.x2_c01231{left:103.650000px;}
.x1_c01231{left:203.550000px;}
.xa_c01231{left:206.139267px;}
@media print{
.v0_c01231{vertical-align:0.000000pt;}
.ls0_c01231{letter-spacing:-2.666667pt;}
.ls1_c01231{letter-spacing:0.000000pt;}
.ws0_c01231{word-spacing:-12.114667pt;}
.ws2_c01231{word-spacing:0.000000pt;}
.ws1_c01231{word-spacing:1.869333pt;}
._13_c01231{margin-left:-9.322667pt;}
._f_c01231{margin-left:-7.752000pt;}
._11_c01231{margin-left:-6.640000pt;}
._12_c01231{margin-left:-5.557333pt;}
._5_c01231{margin-left:-3.461333pt;}
._b_c01231{margin-left:-1.946667pt;}
._2_c01231{margin-left:-1.005333pt;}
._9_c01231{width:1.253333pt;}
._1_c01231{width:2.629333pt;}
._6_c01231{width:3.973333pt;}
._0_c01231{width:5.104000pt;}
._3_c01231{width:6.317333pt;}
._4_c01231{width:7.912000pt;}
._7_c01231{width:9.346667pt;}
._8_c01231{width:10.610667pt;}
._c_c01231{width:11.565333pt;}
._10_c01231{width:13.080000pt;}
._d_c01231{width:15.786667pt;}
._e_c01231{width:16.861333pt;}
._14_c01231{width:18.653333pt;}
._a_c01231{width:20.410667pt;}
.fs2_c01231{font-size:42.666667pt;}
.fs1_c01231{font-size:61.333333pt;}
.fs0_c01231{font-size:77.333333pt;}
.y0_c01231{bottom:0.000000pt;}
.y1e_c01231{bottom:2.760000pt;}
.y1d_c01231{bottom:6.425204pt;}
.y1c_c01231{bottom:61.186667pt;}
.y1b_c01231{bottom:82.786667pt;}
.y1a_c01231{bottom:105.853333pt;}
.y19_c01231{bottom:127.986667pt;}
.y18_c01231{bottom:150.520000pt;}
.y17_c01231{bottom:173.053333pt;}
.y16_c01231{bottom:194.920000pt;}
.y15_c01231{bottom:217.186667pt;}
.y14_c01231{bottom:239.186667pt;}
.y13_c01231{bottom:261.320000pt;}
.y12_c01231{bottom:283.453333pt;}
.y11_c01231{bottom:304.520000pt;}
.y10_c01231{bottom:326.120000pt;}
.yf_c01231{bottom:347.586667pt;}
.ye_c01231{bottom:368.386667pt;}
.yd_c01231{bottom:390.520000pt;}
.yc_c01231{bottom:411.186667pt;}
.yb_c01231{bottom:432.920000pt;}
.ya_c01231{bottom:455.053333pt;}
.y9_c01231{bottom:476.920000pt;}
.y8_c01231{bottom:498.920000pt;}
.y7_c01231{bottom:520.520000pt;}
.y6_c01231{bottom:542.920000pt;}
.y5_c01231{bottom:565.453333pt;}
.y4_c01231{bottom:586.786667pt;}
.y3_c01231{bottom:608.386667pt;}
.y2_c01231{bottom:630.920000pt;}
.y1_c01231{bottom:653.586667pt;}
.h4_c01231{height:11.733399pt;}
.h5_c01231{height:38.937500pt;}
.h3_c01231{height:77.654948pt;}
.h2_c01231{height:97.912760pt;}
.h1_c01231{height:700.000000pt;}
.h0_c01231{height:700.066667pt;}
.w2_c01231{width:93.222667pt;}
.w1_c01231{width:452.000000pt;}
.w0_c01231{width:452.133333pt;}
.x0_c01231{left:0.000000pt;}
.x9_c01231{left:82.800000pt;}
.x8_c01231{left:84.000000pt;}
.x7_c01231{left:84.933333pt;}
.x6_c01231{left:86.133333pt;}
.x5_c01231{left:88.133333pt;}
.x4_c01231{left:90.000000pt;}
.x3_c01231{left:90.933333pt;}
.x2_c01231{left:92.133333pt;}
.x1_c01231{left:180.933333pt;}
.xa_c01231{left:183.234904pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_01e55b05c49e8276bcf735ab.woff2')format("woff");}.ff1_c01232{font-family:ff1_c01232;line-height:1.480469;font-style:normal;font-weight:normal;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_4f0e930e29aec7c313960972.woff2')format("woff");}.ff2_c01232{font-family:ff2_c01232;line-height:1.568848;font-style:normal;font-weight:normal;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_204c54be83dc5084b146110c.woff2')format("woff");}.ff3_c01232{font-family:ff3_c01232;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01232;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01232{font-family:ff4_c01232;line-height:1.219238;font-style: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;}
.ls4_c01232{letter-spacing:-6.000000px;}
.ls1_c01232{letter-spacing:-3.000000px;}
.ls3_c01232{letter-spacing:0.000000px;}
.ls2_c01232{letter-spacing:3.000000px;}
.ls0_c01232{letter-spacing:6.504000px;}
.ls5_c01232{letter-spacing:57.000000px;}
.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;}
}
.ws2_c01232{word-spacing:-24.051000px;}
.ws1_c01232{word-spacing:-20.352000px;}
.ws0_c01232{word-spacing:-17.352000px;}
.ws3_c01232{word-spacing:0.000000px;}
._1a_c01232{margin-left:-21.672000px;}
._16_c01232{margin-left:-15.015000px;}
._17_c01232{margin-left:-11.850000px;}
._12_c01232{margin-left:-10.389000px;}
._c_c01232{margin-left:-9.051000px;}
._14_c01232{margin-left:-7.137000px;}
._f_c01232{margin-left:-5.853000px;}
._1d_c01232{margin-left:-4.830000px;}
._3_c01232{margin-left:-3.828000px;}
._2_c01232{margin-left:-2.349000px;}
._d_c01232{margin-left:-1.023000px;}
._8_c01232{width:1.269000px;}
._5_c01232{width:2.304000px;}
._6_c01232{width:3.528000px;}
._7_c01232{width:5.085000px;}
._e_c01232{width:6.390000px;}
._b_c01232{width:7.704000px;}
._9_c01232{width:8.859000px;}
._1_c01232{width:10.527000px;}
._a_c01232{width:11.658000px;}
._10_c01232{width:13.845000px;}
._13_c01232{width:15.426000px;}
._0_c01232{width:16.704000px;}
._1e_c01232{width:18.144000px;}
._15_c01232{width:23.085000px;}
._19_c01232{width:24.420000px;}
._1c_c01232{width:38.397000px;}
._1b_c01232{width:44.424000px;}
._18_c01232{width:205.680000px;}
._11_c01232{width:232.743000px;}
._4_c01232{width:245.949000px;}
._1f_c01232{width:314.142000px;}
.fc2_c01232{color:transparent;}
.fc1_c01232{color:rgb(128,128,128);}
.fc0_c01232{color:rgb(0,0,0);}
.fs3_c01232{font-size:48.000000px;}
.fs2_c01232{font-size:63.000000px;}
.fs1_c01232{font-size:72.000000px;}
.fs0_c01232{font-size:87.000000px;}
.y0_c01232{bottom:0.000000px;}
.y1f_c01232{bottom:3.105000px;}
.y1e_c01232{bottom:7.228363px;}
.y1d_c01232{bottom:29.400000px;}
.y1c_c01232{bottom:55.350000px;}
.y1b_c01232{bottom:82.050000px;}
.y1a_c01232{bottom:108.000000px;}
.y19_c01232{bottom:133.350000px;}
.y18_c01232{bottom:157.500000px;}
.y17_c01232{bottom:182.700000px;}
.y16_c01232{bottom:208.350000px;}
.y15_c01232{bottom:233.550000px;}
.y14_c01232{bottom:258.300000px;}
.y13_c01232{bottom:283.200000px;}
.y12_c01232{bottom:308.250000px;}
.y11_c01232{bottom:329.700000px;}
.y10_c01232{bottom:356.100000px;}
.yf_c01232{bottom:379.650000px;}
.ye_c01232{bottom:405.000000px;}
.yd_c01232{bottom:429.000000px;}
.yc_c01232{bottom:452.250000px;}
.yb_c01232{bottom:477.600000px;}
.ya_c01232{bottom:501.900000px;}
.y9_c01232{bottom:526.200000px;}
.y8_c01232{bottom:549.900000px;}
.y7_c01232{bottom:575.100000px;}
.y6_c01232{bottom:599.400000px;}
.y5_c01232{bottom:624.000000px;}
.y4_c01232{bottom:648.750000px;}
.y3_c01232{bottom:673.650000px;}
.y2_c01232{bottom:698.250000px;}
.y1_c01232{bottom:722.850000px;}
.h4_c01232{height:13.200074px;}
.h5_c01232{height:43.804688px;}
.h3_c01232{height:91.160156px;}
.h2_c01232{height:101.825684px;}
.h1_c01232{height:793.500000px;}
.h0_c01232{height:793.800000px;}
.w1_c01232{width:104.875500px;}
.w0_c01232{width:526.500000px;}
.x0_c01232{left:0.000000px;}
.xa_c01232{left:8.700000px;}
.x8_c01232{left:13.500000px;}
.xe_c01232{left:18.600000px;}
.xd_c01232{left:20.250000px;}
.xc_c01232{left:21.300000px;}
.x9_c01232{left:24.000000px;}
.xb_c01232{left:25.200000px;}
.x6_c01232{left:27.300000px;}
.x2_c01232{left:28.350000px;}
.x7_c01232{left:29.700000px;}
.x5_c01232{left:30.750000px;}
.x3_c01232{left:32.400000px;}
.x4_c01232{left:33.450000px;}
.xf_c01232{left:134.700000px;}
.x1_c01232{left:148.500000px;}
.x11_c01232{left:215.064240px;}
.x10_c01232{left:220.950000px;}
@media print{
.v0_c01232{vertical-align:0.000000pt;}
.ls4_c01232{letter-spacing:-5.333333pt;}
.ls1_c01232{letter-spacing:-2.666667pt;}
.ls3_c01232{letter-spacing:0.000000pt;}
.ls2_c01232{letter-spacing:2.666667pt;}
.ls0_c01232{letter-spacing:5.781333pt;}
.ls5_c01232{letter-spacing:50.666667pt;}
.ws2_c01232{word-spacing:-21.378667pt;}
.ws1_c01232{word-spacing:-18.090667pt;}
.ws0_c01232{word-spacing:-15.424000pt;}
.ws3_c01232{word-spacing:0.000000pt;}
._1a_c01232{margin-left:-19.264000pt;}
._16_c01232{margin-left:-13.346667pt;}
._17_c01232{margin-left:-10.533333pt;}
._12_c01232{margin-left:-9.234667pt;}
._c_c01232{margin-left:-8.045333pt;}
._14_c01232{margin-left:-6.344000pt;}
._f_c01232{margin-left:-5.202667pt;}
._1d_c01232{margin-left:-4.293333pt;}
._3_c01232{margin-left:-3.402667pt;}
._2_c01232{margin-left:-2.088000pt;}
._d_c01232{margin-left:-0.909333pt;}
._8_c01232{width:1.128000pt;}
._5_c01232{width:2.048000pt;}
._6_c01232{width:3.136000pt;}
._7_c01232{width:4.520000pt;}
._e_c01232{width:5.680000pt;}
._b_c01232{width:6.848000pt;}
._9_c01232{width:7.874667pt;}
._1_c01232{width:9.357333pt;}
._a_c01232{width:10.362667pt;}
._10_c01232{width:12.306667pt;}
._13_c01232{width:13.712000pt;}
._0_c01232{width:14.848000pt;}
._1e_c01232{width:16.128000pt;}
._15_c01232{width:20.520000pt;}
._19_c01232{width:21.706667pt;}
._1c_c01232{width:34.130667pt;}
._1b_c01232{width:39.488000pt;}
._18_c01232{width:182.826667pt;}
._11_c01232{width:206.882667pt;}
._4_c01232{width:218.621333pt;}
._1f_c01232{width:279.237333pt;}
.fs3_c01232{font-size:42.666667pt;}
.fs2_c01232{font-size:56.000000pt;}
.fs1_c01232{font-size:64.000000pt;}
.fs0_c01232{font-size:77.333333pt;}
.y0_c01232{bottom:0.000000pt;}
.y1f_c01232{bottom:2.760000pt;}
.y1e_c01232{bottom:6.425212pt;}
.y1d_c01232{bottom:26.133333pt;}
.y1c_c01232{bottom:49.200000pt;}
.y1b_c01232{bottom:72.933333pt;}
.y1a_c01232{bottom:96.000000pt;}
.y19_c01232{bottom:118.533333pt;}
.y18_c01232{bottom:140.000000pt;}
.y17_c01232{bottom:162.400000pt;}
.y16_c01232{bottom:185.200000pt;}
.y15_c01232{bottom:207.600000pt;}
.y14_c01232{bottom:229.600000pt;}
.y13_c01232{bottom:251.733333pt;}
.y12_c01232{bottom:274.000000pt;}
.y11_c01232{bottom:293.066667pt;}
.y10_c01232{bottom:316.533333pt;}
.yf_c01232{bottom:337.466667pt;}
.ye_c01232{bottom:360.000000pt;}
.yd_c01232{bottom:381.333333pt;}
.yc_c01232{bottom:402.000000pt;}
.yb_c01232{bottom:424.533333pt;}
.ya_c01232{bottom:446.133333pt;}
.y9_c01232{bottom:467.733333pt;}
.y8_c01232{bottom:488.800000pt;}
.y7_c01232{bottom:511.200000pt;}
.y6_c01232{bottom:532.800000pt;}
.y5_c01232{bottom:554.666667pt;}
.y4_c01232{bottom:576.666667pt;}
.y3_c01232{bottom:598.800000pt;}
.y2_c01232{bottom:620.666667pt;}
.y1_c01232{bottom:642.533333pt;}
.h4_c01232{height:11.733399pt;}
.h5_c01232{height:38.937500pt;}
.h3_c01232{height:81.031250pt;}
.h2_c01232{height:90.511719pt;}
.h1_c01232{height:705.333333pt;}
.h0_c01232{height:705.600000pt;}
.w1_c01232{width:93.222667pt;}
.w0_c01232{width:468.000000pt;}
.x0_c01232{left:0.000000pt;}
.xa_c01232{left:7.733333pt;}
.x8_c01232{left:12.000000pt;}
.xe_c01232{left:16.533333pt;}
.xd_c01232{left:18.000000pt;}
.xc_c01232{left:18.933333pt;}
.x9_c01232{left:21.333333pt;}
.xb_c01232{left:22.400000pt;}
.x6_c01232{left:24.266667pt;}
.x2_c01232{left:25.200000pt;}
.x7_c01232{left:26.400000pt;}
.x5_c01232{left:27.333333pt;}
.x3_c01232{left:28.800000pt;}
.x4_c01232{left:29.733333pt;}
.xf_c01232{left:119.733333pt;}
.x1_c01232{left:132.000000pt;}
.x11_c01232{left:191.168213pt;}
.x10_c01232{left:196.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_baf712ed2dc0852a7df1538c.woff2')format("woff");}.ff1_c01233{font-family:ff1_c01233;line-height:1.284180;font-style:normal;font-weight:normal;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_ad8699a2e39c1b83d76edbaa.woff2')format("woff");}.ff2_c01233{font-family:ff2_c01233;line-height:1.568848;font-style:normal;font-weight:normal;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_78f16e65882c44b4ba9dd5b8.woff2')format("woff");}.ff3_c01233{font-family:ff3_c01233;line-height:1.480469;font-style:normal;font-weight:normal;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_0946015fa58839b59581ab7b.woff2')format("woff");}.ff4_c01233{font-family:ff4_c01233;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01233;src:url('chunks/assets/font_4bb71be9cdc78ab036bb3949.woff2')format("woff");}.ff5_c01233{font-family:ff5_c01233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01233;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01233{font-family:ff6_c01233;line-height:1.219238;font-style: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;}
.ls6_c01233{letter-spacing:-6.000000px;}
.ls5_c01233{letter-spacing:0.000000px;}
.ls4_c01233{letter-spacing:0.588000px;}
.ls1_c01233{letter-spacing:3.000000px;}
.ls0_c01233{letter-spacing:3.600000px;}
.ls7_c01233{letter-spacing:6.000000px;}
.ls2_c01233{letter-spacing:6.600000px;}
.ls3_c01233{letter-spacing:24.000000px;}
.sc__c01233{text-shadow:none;}
.sc0_c01233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01233{-webkit-text-stroke:0px transparent;}
.sc0_c01233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01233{word-spacing:-33.192000px;}
.ws2_c01233{word-spacing:-27.660000px;}
.ws0_c01233{word-spacing:-24.051000px;}
.ws4_c01233{word-spacing:-20.352000px;}
.ws3_c01233{word-spacing:-19.629000px;}
.ws5_c01233{word-spacing:0.000000px;}
._0_c01233{margin-left:-24.219000px;}
._1_c01233{margin-left:-17.901000px;}
._2_c01233{margin-left:-16.497000px;}
._3_c01233{margin-left:-14.274000px;}
._5_c01233{margin-left:-12.636000px;}
._f_c01233{margin-left:-11.187000px;}
._15_c01233{margin-left:-9.819000px;}
._d_c01233{margin-left:-8.640000px;}
._4_c01233{margin-left:-6.669000px;}
._e_c01233{margin-left:-5.400000px;}
._b_c01233{margin-left:-3.528000px;}
._c_c01233{margin-left:-1.584000px;}
._6_c01233{width:1.944000px;}
._a_c01233{width:3.744000px;}
._13_c01233{width:5.544000px;}
._12_c01233{width:7.128000px;}
._1b_c01233{width:8.208000px;}
._14_c01233{width:9.432000px;}
._9_c01233{width:10.656000px;}
._10_c01233{width:12.888000px;}
._11_c01233{width:14.229000px;}
._8_c01233{width:16.560000px;}
._7_c01233{width:31.320000px;}
._16_c01233{width:50.583000px;}
._17_c01233{width:62.388000px;}
._19_c01233{width:74.172000px;}
._18_c01233{width:114.282000px;}
._1a_c01233{width:196.212000px;}
.fc2_c01233{color:transparent;}
.fc1_c01233{color:rgb(128,128,128);}
.fc0_c01233{color:rgb(0,0,0);}
.fs6_c01233{font-size:48.000000px;}
.fs4_c01233{font-size:60.000000px;}
.fs2_c01233{font-size:63.000000px;}
.fs3_c01233{font-size:66.000000px;}
.fs5_c01233{font-size:69.000000px;}
.fs1_c01233{font-size:72.000000px;}
.fs0_c01233{font-size:117.000000px;}
.y0_c01233{bottom:0.000000px;}
.y1e_c01233{bottom:3.105000px;}
.y1d_c01233{bottom:7.228357px;}
.y1c_c01233{bottom:59.130000px;}
.y1b_c01233{bottom:84.330000px;}
.y1a_c01233{bottom:110.730000px;}
.y19_c01233{bottom:136.080000px;}
.y18_c01233{bottom:160.680000px;}
.y17_c01233{bottom:181.230000px;}
.y16_c01233{bottom:209.580000px;}
.y15_c01233{bottom:235.680000px;}
.y14_c01233{bottom:262.230000px;}
.y13_c01233{bottom:285.930000px;}
.y12_c01233{bottom:311.130000px;}
.y11_c01233{bottom:335.580000px;}
.y10_c01233{bottom:360.180000px;}
.yf_c01233{bottom:383.730000px;}
.ye_c01233{bottom:407.730000px;}
.yd_c01233{bottom:431.430000px;}
.yc_c01233{bottom:456.030000px;}
.yb_c01233{bottom:479.580000px;}
.ya_c01233{bottom:504.930000px;}
.y9_c01233{bottom:528.180000px;}
.y8_c01233{bottom:554.130000px;}
.y7_c01233{bottom:578.580000px;}
.y6_c01233{bottom:603.780000px;}
.y5_c01233{bottom:628.380000px;}
.y4_c01233{bottom:653.130000px;}
.y3_c01233{bottom:677.730000px;}
.y2_c01233{bottom:702.030000px;}
.y1_c01233{bottom:728.280000px;}
.h6_c01233{height:13.200074px;}
.h7_c01233{height:43.804688px;}
.h4_c01233{height:79.765137px;}
.h5_c01233{height:87.361816px;}
.h3_c01233{height:91.160156px;}
.h2_c01233{height:114.771973px;}
.h0_c01233{height:787.350000px;}
.h1_c01233{height:787.500000px;}
.w2_c01233{width:104.875500px;}
.w0_c01233{width:508.125000px;}
.w1_c01233{width:508.500000px;}
.x0_c01233{left:0.000000px;}
.x8_c01233{left:14.550000px;}
.x6_c01233{left:16.500000px;}
.x7_c01233{left:17.850000px;}
.x4_c01233{left:80.700000px;}
.x5_c01233{left:96.900000px;}
.x2_c01233{left:98.550000px;}
.x3_c01233{left:99.900000px;}
.x1_c01233{left:205.500000px;}
@media print{
.v0_c01233{vertical-align:0.000000pt;}
.ls6_c01233{letter-spacing:-5.333333pt;}
.ls5_c01233{letter-spacing:0.000000pt;}
.ls4_c01233{letter-spacing:0.522667pt;}
.ls1_c01233{letter-spacing:2.666667pt;}
.ls0_c01233{letter-spacing:3.200000pt;}
.ls7_c01233{letter-spacing:5.333333pt;}
.ls2_c01233{letter-spacing:5.866667pt;}
.ls3_c01233{letter-spacing:21.333333pt;}
.ws1_c01233{word-spacing:-29.504000pt;}
.ws2_c01233{word-spacing:-24.586667pt;}
.ws0_c01233{word-spacing:-21.378667pt;}
.ws4_c01233{word-spacing:-18.090667pt;}
.ws3_c01233{word-spacing:-17.448000pt;}
.ws5_c01233{word-spacing:0.000000pt;}
._0_c01233{margin-left:-21.528000pt;}
._1_c01233{margin-left:-15.912000pt;}
._2_c01233{margin-left:-14.664000pt;}
._3_c01233{margin-left:-12.688000pt;}
._5_c01233{margin-left:-11.232000pt;}
._f_c01233{margin-left:-9.944000pt;}
._15_c01233{margin-left:-8.728000pt;}
._d_c01233{margin-left:-7.680000pt;}
._4_c01233{margin-left:-5.928000pt;}
._e_c01233{margin-left:-4.800000pt;}
._b_c01233{margin-left:-3.136000pt;}
._c_c01233{margin-left:-1.408000pt;}
._6_c01233{width:1.728000pt;}
._a_c01233{width:3.328000pt;}
._13_c01233{width:4.928000pt;}
._12_c01233{width:6.336000pt;}
._1b_c01233{width:7.296000pt;}
._14_c01233{width:8.384000pt;}
._9_c01233{width:9.472000pt;}
._10_c01233{width:11.456000pt;}
._11_c01233{width:12.648000pt;}
._8_c01233{width:14.720000pt;}
._7_c01233{width:27.840000pt;}
._16_c01233{width:44.962667pt;}
._17_c01233{width:55.456000pt;}
._19_c01233{width:65.930667pt;}
._18_c01233{width:101.584000pt;}
._1a_c01233{width:174.410667pt;}
.fs6_c01233{font-size:42.666667pt;}
.fs4_c01233{font-size:53.333333pt;}
.fs2_c01233{font-size:56.000000pt;}
.fs3_c01233{font-size:58.666667pt;}
.fs5_c01233{font-size:61.333333pt;}
.fs1_c01233{font-size:64.000000pt;}
.fs0_c01233{font-size:104.000000pt;}
.y0_c01233{bottom:0.000000pt;}
.y1e_c01233{bottom:2.760000pt;}
.y1d_c01233{bottom:6.425206pt;}
.y1c_c01233{bottom:52.560000pt;}
.y1b_c01233{bottom:74.960000pt;}
.y1a_c01233{bottom:98.426667pt;}
.y19_c01233{bottom:120.960000pt;}
.y18_c01233{bottom:142.826667pt;}
.y17_c01233{bottom:161.093333pt;}
.y16_c01233{bottom:186.293333pt;}
.y15_c01233{bottom:209.493333pt;}
.y14_c01233{bottom:233.093333pt;}
.y13_c01233{bottom:254.160000pt;}
.y12_c01233{bottom:276.560000pt;}
.y11_c01233{bottom:298.293333pt;}
.y10_c01233{bottom:320.160000pt;}
.yf_c01233{bottom:341.093333pt;}
.ye_c01233{bottom:362.426667pt;}
.yd_c01233{bottom:383.493333pt;}
.yc_c01233{bottom:405.360000pt;}
.yb_c01233{bottom:426.293333pt;}
.ya_c01233{bottom:448.826667pt;}
.y9_c01233{bottom:469.493333pt;}
.y8_c01233{bottom:492.560000pt;}
.y7_c01233{bottom:514.293333pt;}
.y6_c01233{bottom:536.693333pt;}
.y5_c01233{bottom:558.560000pt;}
.y4_c01233{bottom:580.560000pt;}
.y3_c01233{bottom:602.426667pt;}
.y2_c01233{bottom:624.026667pt;}
.y1_c01233{bottom:647.360000pt;}
.h6_c01233{height:11.733399pt;}
.h7_c01233{height:38.937500pt;}
.h4_c01233{height:70.902344pt;}
.h5_c01233{height:77.654948pt;}
.h3_c01233{height:81.031250pt;}
.h2_c01233{height:102.019531pt;}
.h0_c01233{height:699.866667pt;}
.h1_c01233{height:700.000000pt;}
.w2_c01233{width:93.222667pt;}
.w0_c01233{width:451.666667pt;}
.w1_c01233{width:452.000000pt;}
.x0_c01233{left:0.000000pt;}
.x8_c01233{left:12.933333pt;}
.x6_c01233{left:14.666667pt;}
.x7_c01233{left:15.866667pt;}
.x4_c01233{left:71.733333pt;}
.x5_c01233{left:86.133333pt;}
.x2_c01233{left:87.600000pt;}
.x3_c01233{left:88.800000pt;}
.x1_c01233{left:182.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_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_4a779b88ce926b82493f2ed1.woff2')format("woff");}.ff1_c01234{font-family:ff1_c01234;line-height:1.480469;font-style:normal;font-weight:normal;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_59de89ebb12ece29e919c1aa.woff2')format("woff");}.ff2_c01234{font-family:ff2_c01234;line-height:1.568848;font-style:normal;font-weight:normal;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_2bf71f90b31b2378da7a3c2c.woff2')format("woff");}.ff3_c01234{font-family:ff3_c01234;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01234;src:url('chunks/assets/font_2a403aaea8bd2ac758fb3237.woff2')format("woff");}.ff4_c01234{font-family:ff4_c01234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01234;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01234{font-family:ff5_c01234;line-height:1.219238;font-style: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;}
.ls2_c01234{letter-spacing:0.000000px;}
.ls0_c01234{letter-spacing:3.000000px;}
.ls1_c01234{letter-spacing:8.988000px;}
.ls3_c01234{letter-spacing:9.000000px;}
.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;}
}
.ws1_c01234{word-spacing:-24.183000px;}
.ws0_c01234{word-spacing:-20.250000px;}
.ws2_c01234{word-spacing:0.000000px;}
._14_c01234{margin-left:-25.776000px;}
._15_c01234{margin-left:-17.280000px;}
._19_c01234{margin-left:-14.280000px;}
._16_c01234{margin-left:-12.738000px;}
._12_c01234{margin-left:-11.250000px;}
._13_c01234{margin-left:-9.870000px;}
._f_c01234{margin-left:-8.760000px;}
._11_c01234{margin-left:-7.176000px;}
._a_c01234{margin-left:-6.120000px;}
._b_c01234{margin-left:-5.040000px;}
._c_c01234{margin-left:-4.032000px;}
._9_c01234{margin-left:-2.520000px;}
._8_c01234{margin-left:-1.440000px;}
._5_c01234{width:1.008000px;}
._6_c01234{width:2.016000px;}
._e_c01234{width:3.168000px;}
._7_c01234{width:4.248000px;}
._2_c01234{width:6.240000px;}
._d_c01234{width:7.776000px;}
._10_c01234{width:9.792000px;}
._4_c01234{width:11.040000px;}
._18_c01234{width:12.216000px;}
._3_c01234{width:13.320000px;}
._17_c01234{width:14.640000px;}
._1_c01234{width:17.880000px;}
._1a_c01234{width:22.176000px;}
._0_c01234{width:28.560000px;}
._1b_c01234{width:42.726000px;}
._1c_c01234{width:332.055000px;}
.fc2_c01234{color:transparent;}
.fc1_c01234{color:rgb(128,128,128);}
.fc0_c01234{color:rgb(0,0,0);}
.fs5_c01234{font-size:48.000000px;}
.fs0_c01234{font-size:60.000000px;}
.fs3_c01234{font-size:63.000000px;}
.fs2_c01234{font-size:66.000000px;}
.fs1_c01234{font-size:72.000000px;}
.fs4_c01234{font-size:81.000000px;}
.y0_c01234{bottom:0.000000px;}
.y1f_c01234{bottom:3.105000px;}
.y1e_c01234{bottom:7.228355px;}
.y1d_c01234{bottom:46.785000px;}
.y1c_c01234{bottom:71.835000px;}
.y1b_c01234{bottom:95.535000px;}
.y1a_c01234{bottom:120.435000px;}
.y19_c01234{bottom:148.185000px;}
.y18_c01234{bottom:173.685000px;}
.y17_c01234{bottom:198.435000px;}
.y16_c01234{bottom:222.285000px;}
.y15_c01234{bottom:247.335000px;}
.y14_c01234{bottom:272.985000px;}
.y13_c01234{bottom:297.285000px;}
.y12_c01234{bottom:322.185000px;}
.y11_c01234{bottom:346.635000px;}
.y10_c01234{bottom:370.485000px;}
.yf_c01234{bottom:395.235000px;}
.ye_c01234{bottom:419.535000px;}
.yd_c01234{bottom:444.735000px;}
.yc_c01234{bottom:469.335000px;}
.yb_c01234{bottom:494.385000px;}
.ya_c01234{bottom:517.935000px;}
.y9_c01234{bottom:542.385000px;}
.y8_c01234{bottom:566.985000px;}
.y7_c01234{bottom:591.435000px;}
.y6_c01234{bottom:616.485000px;}
.y5_c01234{bottom:641.535000px;}
.y4_c01234{bottom:665.085000px;}
.y3_c01234{bottom:690.435000px;}
.y2_c01234{bottom:714.735000px;}
.y1_c01234{bottom:740.085000px;}
.h5_c01234{height:13.200074px;}
.h6_c01234{height:43.804688px;}
.h2_c01234{height:70.224609px;}
.h4_c01234{height:79.765137px;}
.h3_c01234{height:91.160156px;}
.h0_c01234{height:782.175000px;}
.h1_c01234{height:782.250000px;}
.w1_c01234{width:104.875500px;}
.w0_c01234{width:536.250000px;}
.x0_c01234{left:0.000000px;}
.x2_c01234{left:34.050000px;}
.x3_c01234{left:35.700000px;}
.x4_c01234{left:37.350000px;}
.x5_c01234{left:38.400000px;}
.x7_c01234{left:39.450000px;}
.x6_c01234{left:40.500000px;}
.x1_c01234{left:156.900000px;}
.x9_c01234{left:219.939240px;}
.x8_c01234{left:255.900000px;}
@media print{
.v0_c01234{vertical-align:0.000000pt;}
.ls2_c01234{letter-spacing:0.000000pt;}
.ls0_c01234{letter-spacing:2.666667pt;}
.ls1_c01234{letter-spacing:7.989333pt;}
.ls3_c01234{letter-spacing:8.000000pt;}
.ws1_c01234{word-spacing:-21.496000pt;}
.ws0_c01234{word-spacing:-18.000000pt;}
.ws2_c01234{word-spacing:0.000000pt;}
._14_c01234{margin-left:-22.912000pt;}
._15_c01234{margin-left:-15.360000pt;}
._19_c01234{margin-left:-12.693333pt;}
._16_c01234{margin-left:-11.322667pt;}
._12_c01234{margin-left:-10.000000pt;}
._13_c01234{margin-left:-8.773333pt;}
._f_c01234{margin-left:-7.786667pt;}
._11_c01234{margin-left:-6.378667pt;}
._a_c01234{margin-left:-5.440000pt;}
._b_c01234{margin-left:-4.480000pt;}
._c_c01234{margin-left:-3.584000pt;}
._9_c01234{margin-left:-2.240000pt;}
._8_c01234{margin-left:-1.280000pt;}
._5_c01234{width:0.896000pt;}
._6_c01234{width:1.792000pt;}
._e_c01234{width:2.816000pt;}
._7_c01234{width:3.776000pt;}
._2_c01234{width:5.546667pt;}
._d_c01234{width:6.912000pt;}
._10_c01234{width:8.704000pt;}
._4_c01234{width:9.813333pt;}
._18_c01234{width:10.858667pt;}
._3_c01234{width:11.840000pt;}
._17_c01234{width:13.013333pt;}
._1_c01234{width:15.893333pt;}
._1a_c01234{width:19.712000pt;}
._0_c01234{width:25.386667pt;}
._1b_c01234{width:37.978667pt;}
._1c_c01234{width:295.160000pt;}
.fs5_c01234{font-size:42.666667pt;}
.fs0_c01234{font-size:53.333333pt;}
.fs3_c01234{font-size:56.000000pt;}
.fs2_c01234{font-size:58.666667pt;}
.fs1_c01234{font-size:64.000000pt;}
.fs4_c01234{font-size:72.000000pt;}
.y0_c01234{bottom:0.000000pt;}
.y1f_c01234{bottom:2.760000pt;}
.y1e_c01234{bottom:6.425204pt;}
.y1d_c01234{bottom:41.586667pt;}
.y1c_c01234{bottom:63.853333pt;}
.y1b_c01234{bottom:84.920000pt;}
.y1a_c01234{bottom:107.053333pt;}
.y19_c01234{bottom:131.720000pt;}
.y18_c01234{bottom:154.386667pt;}
.y17_c01234{bottom:176.386667pt;}
.y16_c01234{bottom:197.586667pt;}
.y15_c01234{bottom:219.853333pt;}
.y14_c01234{bottom:242.653333pt;}
.y13_c01234{bottom:264.253333pt;}
.y12_c01234{bottom:286.386667pt;}
.y11_c01234{bottom:308.120000pt;}
.y10_c01234{bottom:329.320000pt;}
.yf_c01234{bottom:351.320000pt;}
.ye_c01234{bottom:372.920000pt;}
.yd_c01234{bottom:395.320000pt;}
.yc_c01234{bottom:417.186667pt;}
.yb_c01234{bottom:439.453333pt;}
.ya_c01234{bottom:460.386667pt;}
.y9_c01234{bottom:482.120000pt;}
.y8_c01234{bottom:503.986667pt;}
.y7_c01234{bottom:525.720000pt;}
.y6_c01234{bottom:547.986667pt;}
.y5_c01234{bottom:570.253333pt;}
.y4_c01234{bottom:591.186667pt;}
.y3_c01234{bottom:613.720000pt;}
.y2_c01234{bottom:635.320000pt;}
.y1_c01234{bottom:657.853333pt;}
.h5_c01234{height:11.733399pt;}
.h6_c01234{height:38.937500pt;}
.h2_c01234{height:62.421875pt;}
.h4_c01234{height:70.902344pt;}
.h3_c01234{height:81.031250pt;}
.h0_c01234{height:695.266667pt;}
.h1_c01234{height:695.333333pt;}
.w1_c01234{width:93.222667pt;}
.w0_c01234{width:476.666667pt;}
.x0_c01234{left:0.000000pt;}
.x2_c01234{left:30.266667pt;}
.x3_c01234{left:31.733333pt;}
.x4_c01234{left:33.200000pt;}
.x5_c01234{left:34.133333pt;}
.x7_c01234{left:35.066667pt;}
.x6_c01234{left:36.000000pt;}
.x1_c01234{left:139.466667pt;}
.x9_c01234{left:195.501546pt;}
.x8_c01234{left:227.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e97ba990a0b4e0eb19bbfc28.woff2')format("woff");}.ff1_c01235{font-family:ff1_c01235;line-height:1.284180;font-style:normal;font-weight:normal;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_180d26cdfadf009fcfbfe9c2.woff2')format("woff");}.ff2_c01235{font-family:ff2_c01235;line-height:1.284668;font-style:normal;font-weight:normal;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_8cfcda4dba4f6e281ed03e96.woff2')format("woff");}.ff3_c01235{font-family:ff3_c01235;line-height:1.568848;font-style:normal;font-weight:normal;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_31cdd7574bd7f9fe158e1211.woff2')format("woff");}.ff4_c01235{font-family:ff4_c01235;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01235{font-family:ff5_c01235;line-height:1.219238;font-style: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;}
.ls1_c01235{letter-spacing:0.000000px;}
.ls2_c01235{letter-spacing:3.000000px;}
.ls0_c01235{letter-spacing:9.000000px;}
.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:-42.000000px;}
.ws1_c01235{word-spacing:-33.192000px;}
.ws2_c01235{word-spacing:0.000000px;}
._1c_c01235{margin-left:-31.896000px;}
._15_c01235{margin-left:-23.184000px;}
._14_c01235{margin-left:-19.524000px;}
._19_c01235{margin-left:-16.032000px;}
._1a_c01235{margin-left:-14.088000px;}
._10_c01235{margin-left:-11.496000px;}
._e_c01235{margin-left:-9.288000px;}
._11_c01235{margin-left:-8.064000px;}
._6_c01235{margin-left:-6.624000px;}
._16_c01235{margin-left:-5.448000px;}
._b_c01235{margin-left:-4.416000px;}
._3_c01235{margin-left:-2.952000px;}
._4_c01235{margin-left:-1.008000px;}
._5_c01235{width:1.512000px;}
._1_c01235{width:3.024000px;}
._2_c01235{width:4.872000px;}
._18_c01235{width:5.952000px;}
._0_c01235{width:7.140000px;}
._f_c01235{width:8.508000px;}
._9_c01235{width:9.648000px;}
._12_c01235{width:10.788000px;}
._13_c01235{width:12.000000px;}
._a_c01235{width:13.248000px;}
._7_c01235{width:14.832000px;}
._8_c01235{width:18.216000px;}
._c_c01235{width:23.520000px;}
._d_c01235{width:57.240000px;}
._1b_c01235{width:117.504000px;}
._17_c01235{width:247.860000px;}
._1d_c01235{width:811.224000px;}
.fc2_c01235{color:transparent;}
.fc1_c01235{color:rgb(128,128,128);}
.fc0_c01235{color:rgb(0,0,0);}
.fs3_c01235{font-size:48.000000px;}
.fs2_c01235{font-size:69.000000px;}
.fs1_c01235{font-size:72.000000px;}
.fs0_c01235{font-size:84.000000px;}
.y0_c01235{bottom:0.000000px;}
.y1f_c01235{bottom:3.105000px;}
.y1e_c01235{bottom:7.228357px;}
.y1d_c01235{bottom:54.330000px;}
.y1c_c01235{bottom:74.880000px;}
.y1b_c01235{bottom:100.230000px;}
.y1a_c01235{bottom:126.180000px;}
.y19_c01235{bottom:150.630000px;}
.y18_c01235{bottom:175.530000px;}
.y17_c01235{bottom:200.430000px;}
.y16_c01235{bottom:226.080000px;}
.y15_c01235{bottom:250.380000px;}
.y14_c01235{bottom:275.730000px;}
.y13_c01235{bottom:300.030000px;}
.y12_c01235{bottom:325.380000px;}
.y11_c01235{bottom:350.280000px;}
.y10_c01235{bottom:373.680000px;}
.yf_c01235{bottom:399.030000px;}
.ye_c01235{bottom:422.280000px;}
.yd_c01235{bottom:445.830000px;}
.yc_c01235{bottom:470.130000px;}
.yb_c01235{bottom:494.130000px;}
.ya_c01235{bottom:519.180000px;}
.y9_c01235{bottom:543.780000px;}
.y8_c01235{bottom:567.780000px;}
.y7_c01235{bottom:593.730000px;}
.y6_c01235{bottom:618.030000px;}
.y5_c01235{bottom:642.930000px;}
.y4_c01235{bottom:667.980000px;}
.y3_c01235{bottom:692.280000px;}
.y2_c01235{bottom:717.180000px;}
.y1_c01235{bottom:742.830000px;}
.h4_c01235{height:13.200074px;}
.h5_c01235{height:43.804688px;}
.h2_c01235{height:82.441406px;}
.h3_c01235{height:91.160156px;}
.h0_c01235{height:795.450000px;}
.h1_c01235{height:795.750000px;}
.w2_c01235{width:104.875500px;}
.w0_c01235{width:538.350000px;}
.w1_c01235{width:538.500000px;}
.x0_c01235{left:0.000000px;}
.x5_c01235{left:48.900000px;}
.x8_c01235{left:106.650000px;}
.x7_c01235{left:108.000000px;}
.x6_c01235{left:109.050000px;}
.x4_c01235{left:110.250000px;}
.x3_c01235{left:111.750000px;}
.x2_c01235{left:112.950000px;}
.x9_c01235{left:199.500000px;}
.x1_c01235{left:214.350000px;}
.xa_c01235{left:220.989258px;}
@media print{
.v0_c01235{vertical-align:0.000000pt;}
.ls1_c01235{letter-spacing:0.000000pt;}
.ls2_c01235{letter-spacing:2.666667pt;}
.ls0_c01235{letter-spacing:8.000000pt;}
.ws0_c01235{word-spacing:-37.333333pt;}
.ws1_c01235{word-spacing:-29.504000pt;}
.ws2_c01235{word-spacing:0.000000pt;}
._1c_c01235{margin-left:-28.352000pt;}
._15_c01235{margin-left:-20.608000pt;}
._14_c01235{margin-left:-17.354667pt;}
._19_c01235{margin-left:-14.250667pt;}
._1a_c01235{margin-left:-12.522667pt;}
._10_c01235{margin-left:-10.218667pt;}
._e_c01235{margin-left:-8.256000pt;}
._11_c01235{margin-left:-7.168000pt;}
._6_c01235{margin-left:-5.888000pt;}
._16_c01235{margin-left:-4.842667pt;}
._b_c01235{margin-left:-3.925333pt;}
._3_c01235{margin-left:-2.624000pt;}
._4_c01235{margin-left:-0.896000pt;}
._5_c01235{width:1.344000pt;}
._1_c01235{width:2.688000pt;}
._2_c01235{width:4.330667pt;}
._18_c01235{width:5.290667pt;}
._0_c01235{width:6.346667pt;}
._f_c01235{width:7.562667pt;}
._9_c01235{width:8.576000pt;}
._12_c01235{width:9.589333pt;}
._13_c01235{width:10.666667pt;}
._a_c01235{width:11.776000pt;}
._7_c01235{width:13.184000pt;}
._8_c01235{width:16.192000pt;}
._c_c01235{width:20.906667pt;}
._d_c01235{width:50.880000pt;}
._1b_c01235{width:104.448000pt;}
._17_c01235{width:220.320000pt;}
._1d_c01235{width:721.088000pt;}
.fs3_c01235{font-size:42.666667pt;}
.fs2_c01235{font-size:61.333333pt;}
.fs1_c01235{font-size:64.000000pt;}
.fs0_c01235{font-size:74.666667pt;}
.y0_c01235{bottom:0.000000pt;}
.y1f_c01235{bottom:2.760000pt;}
.y1e_c01235{bottom:6.425206pt;}
.y1d_c01235{bottom:48.293333pt;}
.y1c_c01235{bottom:66.560000pt;}
.y1b_c01235{bottom:89.093333pt;}
.y1a_c01235{bottom:112.160000pt;}
.y19_c01235{bottom:133.893333pt;}
.y18_c01235{bottom:156.026667pt;}
.y17_c01235{bottom:178.160000pt;}
.y16_c01235{bottom:200.960000pt;}
.y15_c01235{bottom:222.560000pt;}
.y14_c01235{bottom:245.093333pt;}
.y13_c01235{bottom:266.693333pt;}
.y12_c01235{bottom:289.226667pt;}
.y11_c01235{bottom:311.360000pt;}
.y10_c01235{bottom:332.160000pt;}
.yf_c01235{bottom:354.693333pt;}
.ye_c01235{bottom:375.360000pt;}
.yd_c01235{bottom:396.293333pt;}
.yc_c01235{bottom:417.893333pt;}
.yb_c01235{bottom:439.226667pt;}
.ya_c01235{bottom:461.493333pt;}
.y9_c01235{bottom:483.360000pt;}
.y8_c01235{bottom:504.693333pt;}
.y7_c01235{bottom:527.760000pt;}
.y6_c01235{bottom:549.360000pt;}
.y5_c01235{bottom:571.493333pt;}
.y4_c01235{bottom:593.760000pt;}
.y3_c01235{bottom:615.360000pt;}
.y2_c01235{bottom:637.493333pt;}
.y1_c01235{bottom:660.293333pt;}
.h4_c01235{height:11.733399pt;}
.h5_c01235{height:38.937500pt;}
.h2_c01235{height:73.281250pt;}
.h3_c01235{height:81.031250pt;}
.h0_c01235{height:707.066667pt;}
.h1_c01235{height:707.333333pt;}
.w2_c01235{width:93.222667pt;}
.w0_c01235{width:478.533333pt;}
.w1_c01235{width:478.666667pt;}
.x0_c01235{left:0.000000pt;}
.x5_c01235{left:43.466667pt;}
.x8_c01235{left:94.800000pt;}
.x7_c01235{left:96.000000pt;}
.x6_c01235{left:96.933333pt;}
.x4_c01235{left:98.000000pt;}
.x3_c01235{left:99.333333pt;}
.x2_c01235{left:100.400000pt;}
.x9_c01235{left:177.333333pt;}
.x1_c01235{left:190.533333pt;}
.xa_c01235{left:196.434896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e9cc6c6525452518ad6e5370.woff2')format("woff");}.ff1_c01236{font-family:ff1_c01236;line-height:1.284180;font-style:normal;font-weight:normal;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_1db424e0894e4ebd6a8163d8.woff2')format("woff");}.ff2_c01236{font-family:ff2_c01236;line-height:1.480469;font-style:normal;font-weight:normal;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_7bdb588ed20aacf7f810665f.woff2')format("woff");}.ff3_c01236{font-family:ff3_c01236;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01236;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01236{font-family:ff4_c01236;line-height:1.219238;font-style: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;}
.ls0_c01236{letter-spacing:0.000000px;}
.ls1_c01236{letter-spacing:3.000000px;}
.ls2_c01236{letter-spacing:6.000000px;}
.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:-33.192000px;}
.ws1_c01236{word-spacing:0.000000px;}
._11_c01236{margin-left:-15.048000px;}
._10_c01236{margin-left:-13.392000px;}
._12_c01236{margin-left:-12.312000px;}
._f_c01236{margin-left:-11.304000px;}
._14_c01236{margin-left:-10.020000px;}
._13_c01236{margin-left:-8.952000px;}
._d_c01236{margin-left:-7.344000px;}
._e_c01236{margin-left:-5.688000px;}
._b_c01236{margin-left:-4.548000px;}
._a_c01236{margin-left:-3.132000px;}
._9_c01236{margin-left:-1.236000px;}
._8_c01236{width:1.440000px;}
._4_c01236{width:3.024000px;}
._2_c01236{width:4.200000px;}
._5_c01236{width:5.376000px;}
._1_c01236{width:6.804000px;}
._3_c01236{width:7.812000px;}
._16_c01236{width:9.072000px;}
._0_c01236{width:11.088000px;}
._c_c01236{width:12.840000px;}
._17_c01236{width:14.940000px;}
._15_c01236{width:16.284000px;}
._7_c01236{width:22.260000px;}
._18_c01236{width:33.444000px;}
._19_c01236{width:310.464000px;}
._6_c01236{width:321.216000px;}
.fc2_c01236{color:transparent;}
.fc1_c01236{color:rgb(128,128,128);}
.fc0_c01236{color:rgb(0,0,0);}
.fs3_c01236{font-size:48.000000px;}
.fs2_c01236{font-size:63.000000px;}
.fs1_c01236{font-size:72.000000px;}
.fs0_c01236{font-size:84.000000px;}
.y0_c01236{bottom:0.000000px;}
.y1f_c01236{bottom:3.105000px;}
.y1e_c01236{bottom:7.228357px;}
.y1d_c01236{bottom:51.930000px;}
.y1c_c01236{bottom:79.380000px;}
.y1b_c01236{bottom:105.330000px;}
.y1a_c01236{bottom:130.680000px;}
.y19_c01236{bottom:156.630000px;}
.y18_c01236{bottom:181.680000px;}
.y17_c01236{bottom:206.880000px;}
.y16_c01236{bottom:230.280000px;}
.y15_c01236{bottom:253.830000px;}
.y14_c01236{bottom:280.530000px;}
.y13_c01236{bottom:305.880000px;}
.y12_c01236{bottom:330.180000px;}
.y11_c01236{bottom:355.380000px;}
.y10_c01236{bottom:379.380000px;}
.yf_c01236{bottom:404.280000px;}
.ye_c01236{bottom:428.280000px;}
.yd_c01236{bottom:452.280000px;}
.yc_c01236{bottom:477.330000px;}
.yb_c01236{bottom:501.480000px;}
.ya_c01236{bottom:525.780000px;}
.y9_c01236{bottom:548.430000px;}
.y8_c01236{bottom:574.380000px;}
.y7_c01236{bottom:598.080000px;}
.y6_c01236{bottom:623.430000px;}
.y5_c01236{bottom:647.730000px;}
.y4_c01236{bottom:672.780000px;}
.y3_c01236{bottom:697.380000px;}
.y2_c01236{bottom:721.980000px;}
.y1_c01236{bottom:747.930000px;}
.h4_c01236{height:13.200074px;}
.h5_c01236{height:43.804688px;}
.h2_c01236{height:82.400391px;}
.h3_c01236{height:91.160156px;}
.h0_c01236{height:795.450000px;}
.h1_c01236{height:795.750000px;}
.w2_c01236{width:104.875500px;}
.w1_c01236{width:540.750000px;}
.w0_c01236{width:541.050000px;}
.x0_c01236{left:0.000000px;}
.xf_c01236{left:24.300000px;}
.xe_c01236{left:25.950000px;}
.xc_c01236{left:27.600000px;}
.xd_c01236{left:28.950000px;}
.xb_c01236{left:30.300000px;}
.x8_c01236{left:31.650000px;}
.xa_c01236{left:33.000000px;}
.x9_c01236{left:36.000000px;}
.x7_c01236{left:37.800000px;}
.x5_c01236{left:38.850000px;}
.x6_c01236{left:40.050000px;}
.x4_c01236{left:41.100000px;}
.x3_c01236{left:42.450000px;}
.x2_c01236{left:43.500000px;}
.x1_c01236{left:152.550000px;}
.x10_c01236{left:221.400000px;}
@media print{
.v0_c01236{vertical-align:0.000000pt;}
.ls0_c01236{letter-spacing:0.000000pt;}
.ls1_c01236{letter-spacing:2.666667pt;}
.ls2_c01236{letter-spacing:5.333333pt;}
.ws0_c01236{word-spacing:-29.504000pt;}
.ws1_c01236{word-spacing:0.000000pt;}
._11_c01236{margin-left:-13.376000pt;}
._10_c01236{margin-left:-11.904000pt;}
._12_c01236{margin-left:-10.944000pt;}
._f_c01236{margin-left:-10.048000pt;}
._14_c01236{margin-left:-8.906667pt;}
._13_c01236{margin-left:-7.957333pt;}
._d_c01236{margin-left:-6.528000pt;}
._e_c01236{margin-left:-5.056000pt;}
._b_c01236{margin-left:-4.042667pt;}
._a_c01236{margin-left:-2.784000pt;}
._9_c01236{margin-left:-1.098667pt;}
._8_c01236{width:1.280000pt;}
._4_c01236{width:2.688000pt;}
._2_c01236{width:3.733333pt;}
._5_c01236{width:4.778667pt;}
._1_c01236{width:6.048000pt;}
._3_c01236{width:6.944000pt;}
._16_c01236{width:8.064000pt;}
._0_c01236{width:9.856000pt;}
._c_c01236{width:11.413333pt;}
._17_c01236{width:13.280000pt;}
._15_c01236{width:14.474667pt;}
._7_c01236{width:19.786667pt;}
._18_c01236{width:29.728000pt;}
._19_c01236{width:275.968000pt;}
._6_c01236{width:285.525333pt;}
.fs3_c01236{font-size:42.666667pt;}
.fs2_c01236{font-size:56.000000pt;}
.fs1_c01236{font-size:64.000000pt;}
.fs0_c01236{font-size:74.666667pt;}
.y0_c01236{bottom:0.000000pt;}
.y1f_c01236{bottom:2.760000pt;}
.y1e_c01236{bottom:6.425206pt;}
.y1d_c01236{bottom:46.160000pt;}
.y1c_c01236{bottom:70.560000pt;}
.y1b_c01236{bottom:93.626667pt;}
.y1a_c01236{bottom:116.160000pt;}
.y19_c01236{bottom:139.226667pt;}
.y18_c01236{bottom:161.493333pt;}
.y17_c01236{bottom:183.893333pt;}
.y16_c01236{bottom:204.693333pt;}
.y15_c01236{bottom:225.626667pt;}
.y14_c01236{bottom:249.360000pt;}
.y13_c01236{bottom:271.893333pt;}
.y12_c01236{bottom:293.493333pt;}
.y11_c01236{bottom:315.893333pt;}
.y10_c01236{bottom:337.226667pt;}
.yf_c01236{bottom:359.360000pt;}
.ye_c01236{bottom:380.693333pt;}
.yd_c01236{bottom:402.026667pt;}
.yc_c01236{bottom:424.293333pt;}
.yb_c01236{bottom:445.760000pt;}
.ya_c01236{bottom:467.360000pt;}
.y9_c01236{bottom:487.493333pt;}
.y8_c01236{bottom:510.560000pt;}
.y7_c01236{bottom:531.626667pt;}
.y6_c01236{bottom:554.160000pt;}
.y5_c01236{bottom:575.760000pt;}
.y4_c01236{bottom:598.026667pt;}
.y3_c01236{bottom:619.893333pt;}
.y2_c01236{bottom:641.760000pt;}
.y1_c01236{bottom:664.826667pt;}
.h4_c01236{height:11.733399pt;}
.h5_c01236{height:38.937500pt;}
.h2_c01236{height:73.244792pt;}
.h3_c01236{height:81.031250pt;}
.h0_c01236{height:707.066667pt;}
.h1_c01236{height:707.333333pt;}
.w2_c01236{width:93.222667pt;}
.w1_c01236{width:480.666667pt;}
.w0_c01236{width:480.933333pt;}
.x0_c01236{left:0.000000pt;}
.xf_c01236{left:21.600000pt;}
.xe_c01236{left:23.066667pt;}
.xc_c01236{left:24.533333pt;}
.xd_c01236{left:25.733333pt;}
.xb_c01236{left:26.933333pt;}
.x8_c01236{left:28.133333pt;}
.xa_c01236{left:29.333333pt;}
.x9_c01236{left:32.000000pt;}
.x7_c01236{left:33.600000pt;}
.x5_c01236{left:34.533333pt;}
.x6_c01236{left:35.600000pt;}
.x4_c01236{left:36.533333pt;}
.x3_c01236{left:37.733333pt;}
.x2_c01236{left:38.666667pt;}
.x1_c01236{left:135.600000pt;}
.x10_c01236{left:196.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_38989cfc0c6f43c3bddf4f39.woff2')format("woff");}.ff1_c01237{font-family:ff1_c01237;line-height:1.284180;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01237{font-family:ff2_c01237;line-height:1.284668;font-style:normal;font-weight:normal;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_e8d635c1b2df0362409523f0.woff2')format("woff");}.ff3_c01237{font-family:ff3_c01237;line-height:1.568848;font-style:normal;font-weight:normal;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_bf05c32e81a0c12f5468f818.woff2')format("woff");}.ff4_c01237{font-family:ff4_c01237;line-height:1.568848;font-style:normal;font-weight:normal;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_83803ee65733bd3f861f3d40.woff2')format("woff");}.ff5_c01237{font-family:ff5_c01237;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01237{font-family:ff6_c01237;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01237{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01237{vertical-align:0.000000px;}
.ls3_c01237{letter-spacing:0.000000px;}
.ls6_c01237{letter-spacing:3.000000px;}
.ls0_c01237{letter-spacing:5.556000px;}
.ls4_c01237{letter-spacing:6.000000px;}
.ls1_c01237{letter-spacing:6.630000px;}
.ls5_c01237{letter-spacing:9.000000px;}
.ls2_c01237{letter-spacing:18.984000px;}
.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;}
}
.ws3_c01237{word-spacing:-105.204000px;}
.ws5_c01237{word-spacing:-20.352000px;}
.ws4_c01237{word-spacing:-12.750000px;}
.ws1_c01237{word-spacing:-2.550000px;}
.ws2_c01237{word-spacing:-1.134000px;}
.ws0_c01237{word-spacing:-0.765000px;}
.ws6_c01237{word-spacing:0.000000px;}
._21_c01237{margin-left:-55.632000px;}
._20_c01237{margin-left:-42.468000px;}
._1d_c01237{margin-left:-20.829000px;}
._1e_c01237{margin-left:-19.470000px;}
._1f_c01237{margin-left:-17.367000px;}
._12_c01237{margin-left:-16.053000px;}
._13_c01237{margin-left:-14.322000px;}
._e_c01237{margin-left:-13.266000px;}
._11_c01237{margin-left:-12.012000px;}
._f_c01237{margin-left:-10.467000px;}
._10_c01237{margin-left:-9.240000px;}
._1b_c01237{margin-left:-8.226000px;}
._14_c01237{margin-left:-7.089000px;}
._d_c01237{margin-left:-6.033000px;}
._3_c01237{margin-left:-4.131000px;}
._16_c01237{margin-left:-3.129000px;}
._b_c01237{margin-left:-2.046000px;}
._1a_c01237{margin-left:-1.020000px;}
._a_c01237{width:1.518000px;}
._c_c01237{width:2.772000px;}
._17_c01237{width:3.798000px;}
._15_c01237{width:4.818000px;}
._1c_c01237{width:6.015000px;}
._4_c01237{width:7.038000px;}
._19_c01237{width:8.154000px;}
._8_c01237{width:9.231000px;}
._1_c01237{width:11.016000px;}
._18_c01237{width:12.282000px;}
._5_c01237{width:15.759000px;}
._6_c01237{width:17.493000px;}
._2_c01237{width:20.145000px;}
._7_c01237{width:21.624000px;}
._9_c01237{width:27.540000px;}
._0_c01237{width:28.560000px;}
.fc2_c01237{color:transparent;}
.fc1_c01237{color:rgb(128,128,128);}
.fc0_c01237{color:rgb(0,0,0);}
.fs2_c01237{font-size:42.000000px;}
.fs5_c01237{font-size:48.000000px;}
.fs0_c01237{font-size:51.000000px;}
.fs1_c01237{font-size:66.000000px;}
.fs4_c01237{font-size:72.000000px;}
.fs3_c01237{font-size:132.000000px;}
.y0_c01237{bottom:0.000000px;}
.y1f_c01237{bottom:3.105000px;}
.y1e_c01237{bottom:7.228369px;}
.y1d_c01237{bottom:57.270000px;}
.y1c_c01237{bottom:79.620000px;}
.y1b_c01237{bottom:106.920000px;}
.y1a_c01237{bottom:131.220000px;}
.y19_c01237{bottom:157.320000px;}
.y18_c01237{bottom:181.170000px;}
.y17_c01237{bottom:206.220000px;}
.y16_c01237{bottom:231.420000px;}
.y15_c01237{bottom:256.470000px;}
.y14_c01237{bottom:282.420000px;}
.y13_c01237{bottom:305.670000px;}
.y12_c01237{bottom:330.720000px;}
.y11_c01237{bottom:355.320000px;}
.y10_c01237{bottom:378.720000px;}
.yf_c01237{bottom:403.020000px;}
.ye_c01237{bottom:427.920000px;}
.yd_c01237{bottom:451.470000px;}
.yc_c01237{bottom:475.470000px;}
.yb_c01237{bottom:500.520000px;}
.ya_c01237{bottom:525.270000px;}
.y9_c01237{bottom:550.020000px;}
.y8_c01237{bottom:574.770000px;}
.y7_c01237{bottom:599.370000px;}
.y6_c01237{bottom:623.970000px;}
.y5_c01237{bottom:648.720000px;}
.y4_c01237{bottom:673.920000px;}
.y3_c01237{bottom:698.520000px;}
.y2_c01237{bottom:722.820000px;}
.y1_c01237{bottom:748.470000px;}
.h6_c01237{height:13.200073px;}
.h7_c01237{height:43.804688px;}
.h2_c01237{height:50.053711px;}
.h3_c01237{height:83.563477px;}
.h5_c01237{height:91.160156px;}
.h4_c01237{height:167.126953px;}
.h1_c01237{height:797.250000px;}
.h0_c01237{height:797.550000px;}
.w1_c01237{width:104.875500px;}
.w0_c01237{width:510.000000px;}
.x0_c01237{left:0.000000px;}
.x2_c01237{left:78.750000px;}
.x3_c01237{left:79.950000px;}
.x4_c01237{left:81.750000px;}
.x5_c01237{left:82.800000px;}
.x6_c01237{left:84.000000px;}
.x7_c01237{left:85.800000px;}
.x8_c01237{left:87.150000px;}
.x9_c01237{left:88.200000px;}
.xa_c01237{left:89.550000px;}
.xb_c01237{left:90.750000px;}
.xc_c01237{left:92.100000px;}
.xd_c01237{left:93.450000px;}
.xe_c01237{left:94.500000px;}
.xf_c01237{left:96.600000px;}
.x11_c01237{left:97.950000px;}
.x10_c01237{left:123.600000px;}
.x1_c01237{left:187.200000px;}
.x13_c01237{left:206.814240px;}
.x12_c01237{left:432.750000px;}
@media print{
.v0_c01237{vertical-align:0.000000pt;}
.ls3_c01237{letter-spacing:0.000000pt;}
.ls6_c01237{letter-spacing:2.666667pt;}
.ls0_c01237{letter-spacing:4.938667pt;}
.ls4_c01237{letter-spacing:5.333333pt;}
.ls1_c01237{letter-spacing:5.893333pt;}
.ls5_c01237{letter-spacing:8.000000pt;}
.ls2_c01237{letter-spacing:16.874667pt;}
.ws3_c01237{word-spacing:-93.514667pt;}
.ws5_c01237{word-spacing:-18.090667pt;}
.ws4_c01237{word-spacing:-11.333333pt;}
.ws1_c01237{word-spacing:-2.266667pt;}
.ws2_c01237{word-spacing:-1.008000pt;}
.ws0_c01237{word-spacing:-0.680000pt;}
.ws6_c01237{word-spacing:0.000000pt;}
._21_c01237{margin-left:-49.450667pt;}
._20_c01237{margin-left:-37.749333pt;}
._1d_c01237{margin-left:-18.514667pt;}
._1e_c01237{margin-left:-17.306667pt;}
._1f_c01237{margin-left:-15.437333pt;}
._12_c01237{margin-left:-14.269333pt;}
._13_c01237{margin-left:-12.730667pt;}
._e_c01237{margin-left:-11.792000pt;}
._11_c01237{margin-left:-10.677333pt;}
._f_c01237{margin-left:-9.304000pt;}
._10_c01237{margin-left:-8.213333pt;}
._1b_c01237{margin-left:-7.312000pt;}
._14_c01237{margin-left:-6.301333pt;}
._d_c01237{margin-left:-5.362667pt;}
._3_c01237{margin-left:-3.672000pt;}
._16_c01237{margin-left:-2.781333pt;}
._b_c01237{margin-left:-1.818667pt;}
._1a_c01237{margin-left:-0.906667pt;}
._a_c01237{width:1.349333pt;}
._c_c01237{width:2.464000pt;}
._17_c01237{width:3.376000pt;}
._15_c01237{width:4.282667pt;}
._1c_c01237{width:5.346667pt;}
._4_c01237{width:6.256000pt;}
._19_c01237{width:7.248000pt;}
._8_c01237{width:8.205333pt;}
._1_c01237{width:9.792000pt;}
._18_c01237{width:10.917333pt;}
._5_c01237{width:14.008000pt;}
._6_c01237{width:15.549333pt;}
._2_c01237{width:17.906667pt;}
._7_c01237{width:19.221333pt;}
._9_c01237{width:24.480000pt;}
._0_c01237{width:25.386667pt;}
.fs2_c01237{font-size:37.333333pt;}
.fs5_c01237{font-size:42.666667pt;}
.fs0_c01237{font-size:45.333333pt;}
.fs1_c01237{font-size:58.666667pt;}
.fs4_c01237{font-size:64.000000pt;}
.fs3_c01237{font-size:117.333333pt;}
.y0_c01237{bottom:0.000000pt;}
.y1f_c01237{bottom:2.760000pt;}
.y1e_c01237{bottom:6.425217pt;}
.y1d_c01237{bottom:50.906667pt;}
.y1c_c01237{bottom:70.773333pt;}
.y1b_c01237{bottom:95.040000pt;}
.y1a_c01237{bottom:116.640000pt;}
.y19_c01237{bottom:139.840000pt;}
.y18_c01237{bottom:161.040000pt;}
.y17_c01237{bottom:183.306667pt;}
.y16_c01237{bottom:205.706667pt;}
.y15_c01237{bottom:227.973333pt;}
.y14_c01237{bottom:251.040000pt;}
.y13_c01237{bottom:271.706667pt;}
.y12_c01237{bottom:293.973333pt;}
.y11_c01237{bottom:315.840000pt;}
.y10_c01237{bottom:336.640000pt;}
.yf_c01237{bottom:358.240000pt;}
.ye_c01237{bottom:380.373333pt;}
.yd_c01237{bottom:401.306667pt;}
.yc_c01237{bottom:422.640000pt;}
.yb_c01237{bottom:444.906667pt;}
.ya_c01237{bottom:466.906667pt;}
.y9_c01237{bottom:488.906667pt;}
.y8_c01237{bottom:510.906667pt;}
.y7_c01237{bottom:532.773333pt;}
.y6_c01237{bottom:554.640000pt;}
.y5_c01237{bottom:576.640000pt;}
.y4_c01237{bottom:599.040000pt;}
.y3_c01237{bottom:620.906667pt;}
.y2_c01237{bottom:642.506667pt;}
.y1_c01237{bottom:665.306667pt;}
.h6_c01237{height:11.733399pt;}
.h7_c01237{height:38.937500pt;}
.h2_c01237{height:44.492188pt;}
.h3_c01237{height:74.278646pt;}
.h5_c01237{height:81.031250pt;}
.h4_c01237{height:148.557292pt;}
.h1_c01237{height:708.666667pt;}
.h0_c01237{height:708.933333pt;}
.w1_c01237{width:93.222667pt;}
.w0_c01237{width:453.333333pt;}
.x0_c01237{left:0.000000pt;}
.x2_c01237{left:70.000000pt;}
.x3_c01237{left:71.066667pt;}
.x4_c01237{left:72.666667pt;}
.x5_c01237{left:73.600000pt;}
.x6_c01237{left:74.666667pt;}
.x7_c01237{left:76.266667pt;}
.x8_c01237{left:77.466667pt;}
.x9_c01237{left:78.400000pt;}
.xa_c01237{left:79.600000pt;}
.xb_c01237{left:80.666667pt;}
.xc_c01237{left:81.866667pt;}
.xd_c01237{left:83.066667pt;}
.xe_c01237{left:84.000000pt;}
.xf_c01237{left:85.866667pt;}
.x11_c01237{left:87.066667pt;}
.x10_c01237{left:109.866667pt;}
.x1_c01237{left:166.400000pt;}
.x13_c01237{left:183.834880pt;}
.x12_c01237{left:384.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_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_b7a41b609a592cfe49785b17.woff2')format("woff");}.ff1_c01238{font-family:ff1_c01238;line-height:1.480469;font-style:normal;font-weight:normal;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_5cefede7d6f794499c387e52.woff2')format("woff");}.ff2_c01238{font-family:ff2_c01238;line-height:1.480469;font-style:normal;font-weight:normal;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_ba5b72159ab1eeff562978e2.woff2')format("woff");}.ff3_c01238{font-family:ff3_c01238;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01238;src:url('chunks/assets/font_ca4a04e6dab1c45cd8018bbc.woff2')format("woff");}.ff4_c01238{font-family:ff4_c01238;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01238;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01238{font-family:ff5_c01238;line-height:1.219238;font-style: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;}
.ls2_c01238{letter-spacing:0.000000px;}
.ls0_c01238{letter-spacing:3.000000px;}
.ls1_c01238{letter-spacing:6.000000px;}
.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:-82.200000px;}
.ws1_c01238{word-spacing:-5.496000px;}
.ws2_c01238{word-spacing:0.000000px;}
._16_c01238{margin-left:-22.272000px;}
._12_c01238{margin-left:-20.106000px;}
._15_c01238{margin-left:-15.642000px;}
._5_c01238{margin-left:-14.400000px;}
._f_c01238{margin-left:-13.392000px;}
._10_c01238{margin-left:-11.364000px;}
._e_c01238{margin-left:-10.182000px;}
._9_c01238{margin-left:-8.118000px;}
._11_c01238{margin-left:-7.074000px;}
._8_c01238{margin-left:-5.994000px;}
._6_c01238{margin-left:-4.824000px;}
._7_c01238{margin-left:-2.880000px;}
._2_c01238{margin-left:-1.716000px;}
._d_c01238{width:1.002000px;}
._3_c01238{width:2.106000px;}
._b_c01238{width:3.366000px;}
._13_c01238{width:4.392000px;}
._a_c01238{width:5.400000px;}
._1_c01238{width:6.864000px;}
._c_c01238{width:8.556000px;}
._17_c01238{width:10.038000px;}
._0_c01238{width:11.466000px;}
._14_c01238{width:13.086000px;}
._18_c01238{width:37.842000px;}
._19_c01238{width:75.981000px;}
._4_c01238{width:314.874000px;}
.fc2_c01238{color:transparent;}
.fc1_c01238{color:rgb(128,128,128);}
.fc0_c01238{color:rgb(0,0,0);}
.fs6_c01238{font-size:48.000000px;}
.fs4_c01238{font-size:54.000000px;}
.fs3_c01238{font-size:66.000000px;}
.fs2_c01238{font-size:72.000000px;}
.fs5_c01238{font-size:75.000000px;}
.fs0_c01238{font-size:78.000000px;}
.fs1_c01238{font-size:120.000000px;}
.y0_c01238{bottom:0.000000px;}
.y1f_c01238{bottom:3.105000px;}
.y1e_c01238{bottom:7.228369px;}
.y1d_c01238{bottom:38.370000px;}
.y1c_c01238{bottom:63.120000px;}
.y1b_c01238{bottom:88.470000px;}
.y1a_c01238{bottom:114.420000px;}
.y19_c01238{bottom:139.320000px;}
.y18_c01238{bottom:164.370000px;}
.y17_c01238{bottom:189.570000px;}
.y16_c01238{bottom:214.320000px;}
.y15_c01238{bottom:240.270000px;}
.y14_c01238{bottom:264.870000px;}
.y13_c01238{bottom:289.170000px;}
.y12_c01238{bottom:312.120000px;}
.y11_c01238{bottom:338.220000px;}
.y10_c01238{bottom:362.820000px;}
.yf_c01238{bottom:387.720000px;}
.ye_c01238{bottom:411.720000px;}
.yd_c01238{bottom:436.020000px;}
.yc_c01238{bottom:460.920000px;}
.yb_c01238{bottom:485.370000px;}
.ya_c01238{bottom:509.670000px;}
.y9_c01238{bottom:533.520000px;}
.y8_c01238{bottom:558.570000px;}
.y7_c01238{bottom:583.920000px;}
.y6_c01238{bottom:609.420000px;}
.y5_c01238{bottom:633.120000px;}
.y4_c01238{bottom:657.720000px;}
.y3_c01238{bottom:682.770000px;}
.y2_c01238{bottom:707.370000px;}
.y1_c01238{bottom:732.720000px;}
.h5_c01238{height:13.200073px;}
.h6_c01238{height:43.804688px;}
.h4_c01238{height:73.608398px;}
.h3_c01238{height:83.563477px;}
.h2_c01238{height:91.160156px;}
.h1_c01238{height:140.449219px;}
.h0_c01238{height:780.000000px;}
.w2_c01238{width:104.875500px;}
.w0_c01238{width:524.850000px;}
.w1_c01238{width:525.000000px;}
.x0_c01238{left:0.000000px;}
.x2_c01238{left:25.650000px;}
.x3_c01238{left:26.700000px;}
.x4_c01238{left:27.750000px;}
.x5_c01238{left:29.400000px;}
.x6_c01238{left:32.100000px;}
.x7_c01238{left:33.150000px;}
.x8_c01238{left:34.200000px;}
.x9_c01238{left:35.400000px;}
.xa_c01238{left:36.900000px;}
.xb_c01238{left:38.100000px;}
.xc_c01238{left:39.450000px;}
.x1_c01238{left:133.650000px;}
.xe_c01238{left:214.239258px;}
.xd_c01238{left:225.450000px;}
@media print{
.v0_c01238{vertical-align:0.000000pt;}
.ls2_c01238{letter-spacing:0.000000pt;}
.ls0_c01238{letter-spacing:2.666667pt;}
.ls1_c01238{letter-spacing:5.333333pt;}
.ws0_c01238{word-spacing:-73.066667pt;}
.ws1_c01238{word-spacing:-4.885333pt;}
.ws2_c01238{word-spacing:0.000000pt;}
._16_c01238{margin-left:-19.797333pt;}
._12_c01238{margin-left:-17.872000pt;}
._15_c01238{margin-left:-13.904000pt;}
._5_c01238{margin-left:-12.800000pt;}
._f_c01238{margin-left:-11.904000pt;}
._10_c01238{margin-left:-10.101333pt;}
._e_c01238{margin-left:-9.050667pt;}
._9_c01238{margin-left:-7.216000pt;}
._11_c01238{margin-left:-6.288000pt;}
._8_c01238{margin-left:-5.328000pt;}
._6_c01238{margin-left:-4.288000pt;}
._7_c01238{margin-left:-2.560000pt;}
._2_c01238{margin-left:-1.525333pt;}
._d_c01238{width:0.890667pt;}
._3_c01238{width:1.872000pt;}
._b_c01238{width:2.992000pt;}
._13_c01238{width:3.904000pt;}
._a_c01238{width:4.800000pt;}
._1_c01238{width:6.101333pt;}
._c_c01238{width:7.605333pt;}
._17_c01238{width:8.922667pt;}
._0_c01238{width:10.192000pt;}
._14_c01238{width:11.632000pt;}
._18_c01238{width:33.637333pt;}
._19_c01238{width:67.538667pt;}
._4_c01238{width:279.888000pt;}
.fs6_c01238{font-size:42.666667pt;}
.fs4_c01238{font-size:48.000000pt;}
.fs3_c01238{font-size:58.666667pt;}
.fs2_c01238{font-size:64.000000pt;}
.fs5_c01238{font-size:66.666667pt;}
.fs0_c01238{font-size:69.333333pt;}
.fs1_c01238{font-size:106.666667pt;}
.y0_c01238{bottom:0.000000pt;}
.y1f_c01238{bottom:2.760000pt;}
.y1e_c01238{bottom:6.425217pt;}
.y1d_c01238{bottom:34.106667pt;}
.y1c_c01238{bottom:56.106667pt;}
.y1b_c01238{bottom:78.640000pt;}
.y1a_c01238{bottom:101.706667pt;}
.y19_c01238{bottom:123.840000pt;}
.y18_c01238{bottom:146.106667pt;}
.y17_c01238{bottom:168.506667pt;}
.y16_c01238{bottom:190.506667pt;}
.y15_c01238{bottom:213.573333pt;}
.y14_c01238{bottom:235.440000pt;}
.y13_c01238{bottom:257.040000pt;}
.y12_c01238{bottom:277.440000pt;}
.y11_c01238{bottom:300.640000pt;}
.y10_c01238{bottom:322.506667pt;}
.yf_c01238{bottom:344.640000pt;}
.ye_c01238{bottom:365.973333pt;}
.yd_c01238{bottom:387.573333pt;}
.yc_c01238{bottom:409.706667pt;}
.yb_c01238{bottom:431.440000pt;}
.ya_c01238{bottom:453.040000pt;}
.y9_c01238{bottom:474.240000pt;}
.y8_c01238{bottom:496.506667pt;}
.y7_c01238{bottom:519.040000pt;}
.y6_c01238{bottom:541.706667pt;}
.y5_c01238{bottom:562.773333pt;}
.y4_c01238{bottom:584.640000pt;}
.y3_c01238{bottom:606.906667pt;}
.y2_c01238{bottom:628.773333pt;}
.y1_c01238{bottom:651.306667pt;}
.h5_c01238{height:11.733399pt;}
.h6_c01238{height:38.937500pt;}
.h4_c01238{height:65.429688pt;}
.h3_c01238{height:74.278646pt;}
.h2_c01238{height:81.031250pt;}
.h1_c01238{height:124.843750pt;}
.h0_c01238{height:693.333333pt;}
.w2_c01238{width:93.222667pt;}
.w0_c01238{width:466.533333pt;}
.w1_c01238{width:466.666667pt;}
.x0_c01238{left:0.000000pt;}
.x2_c01238{left:22.800000pt;}
.x3_c01238{left:23.733333pt;}
.x4_c01238{left:24.666667pt;}
.x5_c01238{left:26.133333pt;}
.x6_c01238{left:28.533333pt;}
.x7_c01238{left:29.466667pt;}
.x8_c01238{left:30.400000pt;}
.x9_c01238{left:31.466667pt;}
.xa_c01238{left:32.800000pt;}
.xb_c01238{left:33.866667pt;}
.xc_c01238{left:35.066667pt;}
.x1_c01238{left:118.800000pt;}
.xe_c01238{left:190.434896pt;}
.xd_c01238{left:200.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4d73456814f6b093e19097ac.woff2')format("woff");}.ff1_c01239{font-family:ff1_c01239;line-height:1.592000;font-style:normal;font-weight:normal;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_42ca6a7f4ee780e6466fa4ba.woff2')format("woff");}.ff2_c01239{font-family:ff2_c01239;line-height:1.575000;font-style:normal;font-weight:normal;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_0dcf46663d0348250ac6eea3.woff2')format("woff");}.ff3_c01239{font-family:ff3_c01239;line-height:1.568848;font-style:normal;font-weight:normal;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_615a68bf20a2190dc719fc48.woff2')format("woff");}.ff4_c01239{font-family:ff4_c01239;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01239;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01239{font-family:ff5_c01239;line-height:1.219238;font-style: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;}
.ls1_c01239{letter-spacing:-3.000000px;}
.ls3_c01239{letter-spacing:0.000000px;}
.ls0_c01239{letter-spacing:2.388000px;}
.ls2_c01239{letter-spacing:3.000000px;}
.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:-20.352000px;}
.ws1_c01239{word-spacing:0.000000px;}
._11_c01239{margin-left:-13.140000px;}
._f_c01239{margin-left:-9.768000px;}
._12_c01239{margin-left:-7.488000px;}
._a_c01239{margin-left:-6.264000px;}
._9_c01239{margin-left:-4.632000px;}
._b_c01239{margin-left:-2.952000px;}
._8_c01239{margin-left:-1.560000px;}
._4_c01239{width:1.740000px;}
._c_c01239{width:3.372000px;}
._d_c01239{width:4.908000px;}
._1_c01239{width:6.360000px;}
._e_c01239{width:7.428000px;}
._7_c01239{width:8.940000px;}
._5_c01239{width:9.960000px;}
._6_c01239{width:11.220000px;}
._10_c01239{width:13.380000px;}
._2_c01239{width:18.000000px;}
._3_c01239{width:19.320000px;}
._0_c01239{width:23.820000px;}
.fc2_c01239{color:transparent;}
.fc1_c01239{color:rgb(128,128,128);}
.fc0_c01239{color:rgb(0,0,0);}
.fs3_c01239{font-size:48.000000px;}
.fs0_c01239{font-size:60.000000px;}
.fs2_c01239{font-size:63.000000px;}
.fs1_c01239{font-size:72.000000px;}
.y0_c01239{bottom:0.000000px;}
.y1f_c01239{bottom:3.105000px;}
.y1e_c01239{bottom:7.228357px;}
.y1d_c01239{bottom:43.980000px;}
.y1c_c01239{bottom:67.830000px;}
.y1b_c01239{bottom:88.530000px;}
.y1a_c01239{bottom:115.830000px;}
.y19_c01239{bottom:141.030000px;}
.y18_c01239{bottom:167.130000px;}
.y17_c01239{bottom:191.730000px;}
.y16_c01239{bottom:217.080000px;}
.y15_c01239{bottom:241.680000px;}
.y14_c01239{bottom:267.330000px;}
.y13_c01239{bottom:291.930000px;}
.y12_c01239{bottom:317.880000px;}
.y11_c01239{bottom:342.180000px;}
.y10_c01239{bottom:365.880000px;}
.yf_c01239{bottom:389.430000px;}
.ye_c01239{bottom:413.880000px;}
.yd_c01239{bottom:438.180000px;}
.yc_c01239{bottom:462.030000px;}
.yb_c01239{bottom:486.780000px;}
.ya_c01239{bottom:511.380000px;}
.y9_c01239{bottom:536.730000px;}
.y8_c01239{bottom:561.030000px;}
.y7_c01239{bottom:585.930000px;}
.y6_c01239{bottom:610.830000px;}
.y5_c01239{bottom:635.580000px;}
.y4_c01239{bottom:660.780000px;}
.y3_c01239{bottom:685.230000px;}
.y2_c01239{bottom:710.130000px;}
.y1_c01239{bottom:735.480000px;}
.h4_c01239{height:13.200074px;}
.h5_c01239{height:43.804688px;}
.h2_c01239{height:65.040000px;}
.h3_c01239{height:91.160156px;}
.h0_c01239{height:795.450000px;}
.h1_c01239{height:795.750000px;}
.w2_c01239{width:104.875500px;}
.w1_c01239{width:533.250000px;}
.w0_c01239{width:533.550000px;}
.x0_c01239{left:0.000000px;}
.xb_c01239{left:103.350000px;}
.xa_c01239{left:104.700000px;}
.x8_c01239{left:106.350000px;}
.x9_c01239{left:108.000000px;}
.x7_c01239{left:109.800000px;}
.x5_c01239{left:111.450000px;}
.x6_c01239{left:112.800000px;}
.x4_c01239{left:115.200000px;}
.x3_c01239{left:117.450000px;}
.x2_c01239{left:119.250000px;}
.xc_c01239{left:127.200000px;}
.xe_c01239{left:218.589249px;}
.x1_c01239{left:232.200000px;}
.xd_c01239{left:418.950000px;}
@media print{
.v0_c01239{vertical-align:0.000000pt;}
.ls1_c01239{letter-spacing:-2.666667pt;}
.ls3_c01239{letter-spacing:0.000000pt;}
.ls0_c01239{letter-spacing:2.122667pt;}
.ls2_c01239{letter-spacing:2.666667pt;}
.ws0_c01239{word-spacing:-18.090667pt;}
.ws1_c01239{word-spacing:0.000000pt;}
._11_c01239{margin-left:-11.680000pt;}
._f_c01239{margin-left:-8.682667pt;}
._12_c01239{margin-left:-6.656000pt;}
._a_c01239{margin-left:-5.568000pt;}
._9_c01239{margin-left:-4.117333pt;}
._b_c01239{margin-left:-2.624000pt;}
._8_c01239{margin-left:-1.386667pt;}
._4_c01239{width:1.546667pt;}
._c_c01239{width:2.997333pt;}
._d_c01239{width:4.362667pt;}
._1_c01239{width:5.653333pt;}
._e_c01239{width:6.602667pt;}
._7_c01239{width:7.946667pt;}
._5_c01239{width:8.853333pt;}
._6_c01239{width:9.973333pt;}
._10_c01239{width:11.893333pt;}
._2_c01239{width:16.000000pt;}
._3_c01239{width:17.173333pt;}
._0_c01239{width:21.173333pt;}
.fs3_c01239{font-size:42.666667pt;}
.fs0_c01239{font-size:53.333333pt;}
.fs2_c01239{font-size:56.000000pt;}
.fs1_c01239{font-size:64.000000pt;}
.y0_c01239{bottom:0.000000pt;}
.y1f_c01239{bottom:2.760000pt;}
.y1e_c01239{bottom:6.425206pt;}
.y1d_c01239{bottom:39.093333pt;}
.y1c_c01239{bottom:60.293333pt;}
.y1b_c01239{bottom:78.693333pt;}
.y1a_c01239{bottom:102.960000pt;}
.y19_c01239{bottom:125.360000pt;}
.y18_c01239{bottom:148.560000pt;}
.y17_c01239{bottom:170.426667pt;}
.y16_c01239{bottom:192.960000pt;}
.y15_c01239{bottom:214.826667pt;}
.y14_c01239{bottom:237.626667pt;}
.y13_c01239{bottom:259.493333pt;}
.y12_c01239{bottom:282.560000pt;}
.y11_c01239{bottom:304.160000pt;}
.y10_c01239{bottom:325.226667pt;}
.yf_c01239{bottom:346.160000pt;}
.ye_c01239{bottom:367.893333pt;}
.yd_c01239{bottom:389.493333pt;}
.yc_c01239{bottom:410.693333pt;}
.yb_c01239{bottom:432.693333pt;}
.ya_c01239{bottom:454.560000pt;}
.y9_c01239{bottom:477.093333pt;}
.y8_c01239{bottom:498.693333pt;}
.y7_c01239{bottom:520.826667pt;}
.y6_c01239{bottom:542.960000pt;}
.y5_c01239{bottom:564.960000pt;}
.y4_c01239{bottom:587.360000pt;}
.y3_c01239{bottom:609.093333pt;}
.y2_c01239{bottom:631.226667pt;}
.y1_c01239{bottom:653.760000pt;}
.h4_c01239{height:11.733399pt;}
.h5_c01239{height:38.937500pt;}
.h2_c01239{height:57.813333pt;}
.h3_c01239{height:81.031250pt;}
.h0_c01239{height:707.066667pt;}
.h1_c01239{height:707.333333pt;}
.w2_c01239{width:93.222667pt;}
.w1_c01239{width:474.000000pt;}
.w0_c01239{width:474.266667pt;}
.x0_c01239{left:0.000000pt;}
.xb_c01239{left:91.866667pt;}
.xa_c01239{left:93.066667pt;}
.x8_c01239{left:94.533333pt;}
.x9_c01239{left:96.000000pt;}
.x7_c01239{left:97.600000pt;}
.x5_c01239{left:99.066667pt;}
.x6_c01239{left:100.266667pt;}
.x4_c01239{left:102.400000pt;}
.x3_c01239{left:104.400000pt;}
.x2_c01239{left:106.000000pt;}
.xc_c01239{left:113.066667pt;}
.xe_c01239{left:194.301554pt;}
.x1_c01239{left:206.400000pt;}
.xd_c01239{left:372.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5ddb4fe7d8fb42874c1e6790.woff2')format("woff");}.ff1_c01240{font-family:ff1_c01240;line-height:1.284180;font-style:normal;font-weight:normal;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_3fce045a5a488969d6af5d1c.woff2')format("woff");}.ff2_c01240{font-family:ff2_c01240;line-height:1.568848;font-style:normal;font-weight:normal;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_a1c0e8baf9569087bbf4dc8a.woff2')format("woff");}.ff3_c01240{font-family:ff3_c01240;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01240;src:url('chunks/assets/font_521ab82e49e05761b02fcbab.woff2')format("woff");}.ff4_c01240{font-family:ff4_c01240;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01240;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01240{font-family:ff5_c01240;line-height:1.219238;font-style: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.588000px;}
.ls2_c01240{letter-spacing:3.000000px;}
.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:-42.873000px;}
.ws1_c01240{word-spacing:0.000000px;}
._18_c01240{margin-left:-16.530000px;}
._13_c01240{margin-left:-14.412000px;}
._17_c01240{margin-left:-12.024000px;}
._16_c01240{margin-left:-10.056000px;}
._11_c01240{margin-left:-8.832000px;}
._15_c01240{margin-left:-7.740000px;}
._e_c01240{margin-left:-6.516000px;}
._12_c01240{margin-left:-4.944000px;}
._d_c01240{margin-left:-3.852000px;}
._2_c01240{margin-left:-2.688000px;}
._9_c01240{margin-left:-1.176000px;}
._c_c01240{width:1.368000px;}
._a_c01240{width:2.448000px;}
._5_c01240{width:3.696000px;}
._4_c01240{width:4.788000px;}
._b_c01240{width:6.768000px;}
._1_c01240{width:7.980000px;}
._10_c01240{width:9.435000px;}
._3_c01240{width:10.752000px;}
._0_c01240{width:12.852000px;}
._f_c01240{width:14.157000px;}
._14_c01240{width:15.897000px;}
._19_c01240{width:17.508000px;}
._1a_c01240{width:21.294000px;}
._8_c01240{width:24.696000px;}
._7_c01240{width:38.892000px;}
._6_c01240{width:301.308000px;}
.fc2_c01240{color:transparent;}
.fc1_c01240{color:rgb(128,128,128);}
.fc0_c01240{color:rgb(0,0,0);}
.fs6_c01240{font-size:48.000000px;}
.fs4_c01240{font-size:63.000000px;}
.fs2_c01240{font-size:69.000000px;}
.fs1_c01240{font-size:72.000000px;}
.fs0_c01240{font-size:84.000000px;}
.fs5_c01240{font-size:87.000000px;}
.fs3_c01240{font-size:93.000000px;}
.y0_c01240{bottom:0.000000px;}
.y1e_c01240{bottom:3.105000px;}
.y1d_c01240{bottom:7.228357px;}
.y1c_c01240{bottom:70.530000px;}
.y1b_c01240{bottom:96.180000px;}
.y1a_c01240{bottom:124.230000px;}
.y19_c01240{bottom:149.580000px;}
.y18_c01240{bottom:173.430000px;}
.y17_c01240{bottom:199.830000px;}
.y16_c01240{bottom:222.780000px;}
.y15_c01240{bottom:249.180000px;}
.y14_c01240{bottom:272.730000px;}
.y13_c01240{bottom:298.080000px;}
.y12_c01240{bottom:323.430000px;}
.y11_c01240{bottom:346.980000px;}
.y10_c01240{bottom:371.880000px;}
.yf_c01240{bottom:395.880000px;}
.ye_c01240{bottom:419.880000px;}
.yd_c01240{bottom:444.780000px;}
.yc_c01240{bottom:468.780000px;}
.yb_c01240{bottom:493.380000px;}
.ya_c01240{bottom:517.830000px;}
.y9_c01240{bottom:541.980000px;}
.y8_c01240{bottom:565.980000px;}
.y7_c01240{bottom:590.430000px;}
.y6_c01240{bottom:615.030000px;}
.y5_c01240{bottom:639.630000px;}
.y4_c01240{bottom:664.830000px;}
.y3_c01240{bottom:689.130000px;}
.y2_c01240{bottom:713.880000px;}
.y1_c01240{bottom:739.530000px;}
.h6_c01240{height:13.200074px;}
.h7_c01240{height:43.804688px;}
.h1_c01240{height:82.400391px;}
.h5_c01240{height:87.361816px;}
.h2_c01240{height:91.160156px;}
.h3_c01240{height:108.848145px;}
.h4_c01240{height:110.151855px;}
.h0_c01240{height:779.250000px;}
.w1_c01240{width:104.875500px;}
.w0_c01240{width:523.500000px;}
.x0_c01240{left:0.000000px;}
.x7_c01240{left:20.250000px;}
.x6_c01240{left:21.300000px;}
.x5_c01240{left:22.950000px;}
.x3_c01240{left:25.650000px;}
.x2_c01240{left:26.700000px;}
.x4_c01240{left:28.650000px;}
.x1_c01240{left:137.700000px;}
.x8_c01240{left:192.000000px;}
.x9_c01240{left:213.564240px;}
@media print{
.v0_c01240{vertical-align:0.000000pt;}
.ls1_c01240{letter-spacing:0.000000pt;}
.ls0_c01240{letter-spacing:0.522667pt;}
.ls2_c01240{letter-spacing:2.666667pt;}
.ws0_c01240{word-spacing:-38.109333pt;}
.ws1_c01240{word-spacing:0.000000pt;}
._18_c01240{margin-left:-14.693333pt;}
._13_c01240{margin-left:-12.810667pt;}
._17_c01240{margin-left:-10.688000pt;}
._16_c01240{margin-left:-8.938667pt;}
._11_c01240{margin-left:-7.850667pt;}
._15_c01240{margin-left:-6.880000pt;}
._e_c01240{margin-left:-5.792000pt;}
._12_c01240{margin-left:-4.394667pt;}
._d_c01240{margin-left:-3.424000pt;}
._2_c01240{margin-left:-2.389333pt;}
._9_c01240{margin-left:-1.045333pt;}
._c_c01240{width:1.216000pt;}
._a_c01240{width:2.176000pt;}
._5_c01240{width:3.285333pt;}
._4_c01240{width:4.256000pt;}
._b_c01240{width:6.016000pt;}
._1_c01240{width:7.093333pt;}
._10_c01240{width:8.386667pt;}
._3_c01240{width:9.557333pt;}
._0_c01240{width:11.424000pt;}
._f_c01240{width:12.584000pt;}
._14_c01240{width:14.130667pt;}
._19_c01240{width:15.562667pt;}
._1a_c01240{width:18.928000pt;}
._8_c01240{width:21.952000pt;}
._7_c01240{width:34.570667pt;}
._6_c01240{width:267.829333pt;}
.fs6_c01240{font-size:42.666667pt;}
.fs4_c01240{font-size:56.000000pt;}
.fs2_c01240{font-size:61.333333pt;}
.fs1_c01240{font-size:64.000000pt;}
.fs0_c01240{font-size:74.666667pt;}
.fs5_c01240{font-size:77.333333pt;}
.fs3_c01240{font-size:82.666667pt;}
.y0_c01240{bottom:0.000000pt;}
.y1e_c01240{bottom:2.760000pt;}
.y1d_c01240{bottom:6.425206pt;}
.y1c_c01240{bottom:62.693333pt;}
.y1b_c01240{bottom:85.493333pt;}
.y1a_c01240{bottom:110.426667pt;}
.y19_c01240{bottom:132.960000pt;}
.y18_c01240{bottom:154.160000pt;}
.y17_c01240{bottom:177.626667pt;}
.y16_c01240{bottom:198.026667pt;}
.y15_c01240{bottom:221.493333pt;}
.y14_c01240{bottom:242.426667pt;}
.y13_c01240{bottom:264.960000pt;}
.y12_c01240{bottom:287.493333pt;}
.y11_c01240{bottom:308.426667pt;}
.y10_c01240{bottom:330.560000pt;}
.yf_c01240{bottom:351.893333pt;}
.ye_c01240{bottom:373.226667pt;}
.yd_c01240{bottom:395.360000pt;}
.yc_c01240{bottom:416.693333pt;}
.yb_c01240{bottom:438.560000pt;}
.ya_c01240{bottom:460.293333pt;}
.y9_c01240{bottom:481.760000pt;}
.y8_c01240{bottom:503.093333pt;}
.y7_c01240{bottom:524.826667pt;}
.y6_c01240{bottom:546.693333pt;}
.y5_c01240{bottom:568.560000pt;}
.y4_c01240{bottom:590.960000pt;}
.y3_c01240{bottom:612.560000pt;}
.y2_c01240{bottom:634.560000pt;}
.y1_c01240{bottom:657.360000pt;}
.h6_c01240{height:11.733399pt;}
.h7_c01240{height:38.937500pt;}
.h1_c01240{height:73.244792pt;}
.h5_c01240{height:77.654948pt;}
.h2_c01240{height:81.031250pt;}
.h3_c01240{height:96.753906pt;}
.h4_c01240{height:97.912760pt;}
.h0_c01240{height:692.666667pt;}
.w1_c01240{width:93.222667pt;}
.w0_c01240{width:465.333333pt;}
.x0_c01240{left:0.000000pt;}
.x7_c01240{left:18.000000pt;}
.x6_c01240{left:18.933333pt;}
.x5_c01240{left:20.400000pt;}
.x3_c01240{left:22.800000pt;}
.x2_c01240{left:23.733333pt;}
.x4_c01240{left:25.466667pt;}
.x1_c01240{left:122.400000pt;}
.x8_c01240{left:170.666667pt;}
.x9_c01240{left:189.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7a997577c711921c8d6d4e92.woff2')format("woff");}.ff1_c01241{font-family:ff1_c01241;line-height:1.480469;font-style:normal;font-weight:normal;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_d2ee082f56b0880558bd4298.woff2')format("woff");}.ff2_c01241{font-family:ff2_c01241;line-height:1.568848;font-style:normal;font-weight:normal;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_b9c1c7b8cd0985d10a07aacf.woff2')format("woff");}.ff3_c01241{font-family:ff3_c01241;line-height:1.592000;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c01241{font-family:ff4_c01241;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01241;src:url('chunks/assets/font_6ce240c199c99dd851c1e54d.woff2')format("woff");}.ff5_c01241{font-family:ff5_c01241;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01241;src:url('chunks/assets/font_4e98c32238b02b62b0d3f05a.woff2')format("woff");}.ff6_c01241{font-family:ff6_c01241;line-height:1.284668;font-style:normal;font-weight: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_c01241;src:url('chunks/assets/font_1f7dc42cdfe2c0147baa5308.woff2')format("woff");}.ff7_c01241{font-family:ff7_c01241;line-height:1.575000;font-style:normal;font-weight: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_c01241;src:url('chunks/assets/font_3180edbdc512f0a0a91a2c75.woff2')format("woff");}.ff8_c01241{font-family:ff8_c01241;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01241;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff9_c01241{font-family:ff9_c01241;line-height:1.219238;font-style: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;}
.ls7_c01241{letter-spacing:-9.000000px;}
.ls6_c01241{letter-spacing:-6.000000px;}
.ls5_c01241{letter-spacing:-3.000000px;}
.ls3_c01241{letter-spacing:0.000000px;}
.ls4_c01241{letter-spacing:3.000000px;}
.ls1_c01241{letter-spacing:9.150000px;}
.ls0_c01241{letter-spacing:16.800000px;}
.ls2_c01241{letter-spacing:279.750000px;}
.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;}
}
.ws3_c01241{word-spacing:-51.648000px;}
.ws4_c01241{word-spacing:-39.518400px;}
.ws0_c01241{word-spacing:-33.192000px;}
.ws2_c01241{word-spacing:-24.051000px;}
.ws1_c01241{word-spacing:-14.250000px;}
.ws5_c01241{word-spacing:0.000000px;}
._12_c01241{margin-left:-19.487400px;}
._14_c01241{margin-left:-14.094000px;}
._f_c01241{margin-left:-12.600000px;}
._13_c01241{margin-left:-10.164000px;}
._11_c01241{margin-left:-9.072000px;}
._7_c01241{margin-left:-6.912000px;}
._9_c01241{margin-left:-5.904000px;}
._b_c01241{margin-left:-4.752000px;}
._a_c01241{margin-left:-3.168000px;}
._6_c01241{margin-left:-2.016000px;}
._8_c01241{margin-left:-1.008000px;}
._5_c01241{width:1.944000px;}
._1_c01241{width:3.816000px;}
._2_c01241{width:5.400000px;}
._e_c01241{width:6.417000px;}
._0_c01241{width:7.488000px;}
._3_c01241{width:8.856000px;}
._c_c01241{width:10.008000px;}
._4_c01241{width:12.024000px;}
._d_c01241{width:15.405000px;}
._10_c01241{width:16.920000px;}
._15_c01241{width:1400.004000px;}
.fc2_c01241{color:transparent;}
.fc1_c01241{color:rgb(128,128,128);}
.fc0_c01241{color:rgb(0,0,0);}
.fs8_c01241{font-size:48.000000px;}
.fs1_c01241{font-size:54.000000px;}
.fs3_c01241{font-size:57.000000px;}
.fs2_c01241{font-size:60.000000px;}
.fs4_c01241{font-size:63.000000px;}
.fs7_c01241{font-size:67.200000px;}
.fs0_c01241{font-size:72.000000px;}
.fs5_c01241{font-size:81.000000px;}
.fs6_c01241{font-size:84.000000px;}
.y0_c01241{bottom:0.000000px;}
.y1f_c01241{bottom:3.105000px;}
.y1e_c01241{bottom:7.228369px;}
.y1d_c01241{bottom:52.920000px;}
.y1c_c01241{bottom:73.620000px;}
.y1b_c01241{bottom:100.470000px;}
.y1a_c01241{bottom:125.220000px;}
.y19_c01241{bottom:150.120000px;}
.y18_c01241{bottom:175.470000px;}
.y17_c01241{bottom:200.520000px;}
.y16_c01241{bottom:225.720000px;}
.y15_c01241{bottom:250.770000px;}
.y14_c01241{bottom:275.970000px;}
.y13_c01241{bottom:300.720000px;}
.y12_c01241{bottom:326.970000px;}
.y11_c01241{bottom:350.970000px;}
.y10_c01241{bottom:374.970000px;}
.yf_c01241{bottom:401.520000px;}
.ye_c01241{bottom:425.220000px;}
.yd_c01241{bottom:451.470000px;}
.yc_c01241{bottom:475.170000px;}
.yb_c01241{bottom:499.170000px;}
.ya_c01241{bottom:523.770000px;}
.y9_c01241{bottom:549.720000px;}
.y8_c01241{bottom:574.320000px;}
.y7_c01241{bottom:599.070000px;}
.y6_c01241{bottom:625.020000px;}
.y5_c01241{bottom:649.920000px;}
.y4_c01241{bottom:674.670000px;}
.y3_c01241{bottom:699.570000px;}
.y2_c01241{bottom:723.870000px;}
.y1_c01241{bottom:749.820000px;}
.h5_c01241{height:13.200073px;}
.h6_c01241{height:43.804688px;}
.h4_c01241{height:79.497070px;}
.h3_c01241{height:82.441406px;}
.h2_c01241{height:91.160156px;}
.h1_c01241{height:792.000000px;}
.h0_c01241{height:792.150000px;}
.w1_c01241{width:104.875500px;}
.w0_c01241{width:536.250000px;}
.x0_c01241{left:0.000000px;}
.x9_c01241{left:41.850000px;}
.x8_c01241{left:43.800000px;}
.x7_c01241{left:46.350000px;}
.x5_c01241{left:113.400000px;}
.x4_c01241{left:117.750000px;}
.xb_c01241{left:118.800000px;}
.xd_c01241{left:119.850000px;}
.x3_c01241{left:121.800000px;}
.x2_c01241{left:122.850000px;}
.xe_c01241{left:124.200000px;}
.xc_c01241{left:145.050000px;}
.x6_c01241{left:146.700000px;}
.xa_c01241{left:169.650000px;}
.xf_c01241{left:219.939240px;}
.x1_c01241{left:233.100000px;}
@media print{
.v0_c01241{vertical-align:0.000000pt;}
.ls7_c01241{letter-spacing:-8.000000pt;}
.ls6_c01241{letter-spacing:-5.333333pt;}
.ls5_c01241{letter-spacing:-2.666667pt;}
.ls3_c01241{letter-spacing:0.000000pt;}
.ls4_c01241{letter-spacing:2.666667pt;}
.ls1_c01241{letter-spacing:8.133333pt;}
.ls0_c01241{letter-spacing:14.933333pt;}
.ls2_c01241{letter-spacing:248.666667pt;}
.ws3_c01241{word-spacing:-45.909333pt;}
.ws4_c01241{word-spacing:-35.127467pt;}
.ws0_c01241{word-spacing:-29.504000pt;}
.ws2_c01241{word-spacing:-21.378667pt;}
.ws1_c01241{word-spacing:-12.666667pt;}
.ws5_c01241{word-spacing:0.000000pt;}
._12_c01241{margin-left:-17.322133pt;}
._14_c01241{margin-left:-12.528000pt;}
._f_c01241{margin-left:-11.200000pt;}
._13_c01241{margin-left:-9.034667pt;}
._11_c01241{margin-left:-8.064000pt;}
._7_c01241{margin-left:-6.144000pt;}
._9_c01241{margin-left:-5.248000pt;}
._b_c01241{margin-left:-4.224000pt;}
._a_c01241{margin-left:-2.816000pt;}
._6_c01241{margin-left:-1.792000pt;}
._8_c01241{margin-left:-0.896000pt;}
._5_c01241{width:1.728000pt;}
._1_c01241{width:3.392000pt;}
._2_c01241{width:4.800000pt;}
._e_c01241{width:5.704000pt;}
._0_c01241{width:6.656000pt;}
._3_c01241{width:7.872000pt;}
._c_c01241{width:8.896000pt;}
._4_c01241{width:10.688000pt;}
._d_c01241{width:13.693333pt;}
._10_c01241{width:15.040000pt;}
._15_c01241{width:1244.448000pt;}
.fs8_c01241{font-size:42.666667pt;}
.fs1_c01241{font-size:48.000000pt;}
.fs3_c01241{font-size:50.666667pt;}
.fs2_c01241{font-size:53.333333pt;}
.fs4_c01241{font-size:56.000000pt;}
.fs7_c01241{font-size:59.733333pt;}
.fs0_c01241{font-size:64.000000pt;}
.fs5_c01241{font-size:72.000000pt;}
.fs6_c01241{font-size:74.666667pt;}
.y0_c01241{bottom:0.000000pt;}
.y1f_c01241{bottom:2.760000pt;}
.y1e_c01241{bottom:6.425217pt;}
.y1d_c01241{bottom:47.040000pt;}
.y1c_c01241{bottom:65.440000pt;}
.y1b_c01241{bottom:89.306667pt;}
.y1a_c01241{bottom:111.306667pt;}
.y19_c01241{bottom:133.440000pt;}
.y18_c01241{bottom:155.973333pt;}
.y17_c01241{bottom:178.240000pt;}
.y16_c01241{bottom:200.640000pt;}
.y15_c01241{bottom:222.906667pt;}
.y14_c01241{bottom:245.306667pt;}
.y13_c01241{bottom:267.306667pt;}
.y12_c01241{bottom:290.640000pt;}
.y11_c01241{bottom:311.973333pt;}
.y10_c01241{bottom:333.306667pt;}
.yf_c01241{bottom:356.906667pt;}
.ye_c01241{bottom:377.973333pt;}
.yd_c01241{bottom:401.306667pt;}
.yc_c01241{bottom:422.373333pt;}
.yb_c01241{bottom:443.706667pt;}
.ya_c01241{bottom:465.573333pt;}
.y9_c01241{bottom:488.640000pt;}
.y8_c01241{bottom:510.506667pt;}
.y7_c01241{bottom:532.506667pt;}
.y6_c01241{bottom:555.573333pt;}
.y5_c01241{bottom:577.706667pt;}
.y4_c01241{bottom:599.706667pt;}
.y3_c01241{bottom:621.840000pt;}
.y2_c01241{bottom:643.440000pt;}
.y1_c01241{bottom:666.506667pt;}
.h5_c01241{height:11.733399pt;}
.h6_c01241{height:38.937500pt;}
.h4_c01241{height:70.664062pt;}
.h3_c01241{height:73.281250pt;}
.h2_c01241{height:81.031250pt;}
.h1_c01241{height:704.000000pt;}
.h0_c01241{height:704.133333pt;}
.w1_c01241{width:93.222667pt;}
.w0_c01241{width:476.666667pt;}
.x0_c01241{left:0.000000pt;}
.x9_c01241{left:37.200000pt;}
.x8_c01241{left:38.933333pt;}
.x7_c01241{left:41.200000pt;}
.x5_c01241{left:100.800000pt;}
.x4_c01241{left:104.666667pt;}
.xb_c01241{left:105.600000pt;}
.xd_c01241{left:106.533333pt;}
.x3_c01241{left:108.266667pt;}
.x2_c01241{left:109.200000pt;}
.xe_c01241{left:110.400000pt;}
.xc_c01241{left:128.933333pt;}
.x6_c01241{left:130.400000pt;}
.xa_c01241{left:150.800000pt;}
.xf_c01241{left:195.501546pt;}
.x1_c01241{left:207.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_15a50d59b333ecb23295bfd4.woff2')format("woff");}.ff1_c01242{font-family:ff1_c01242;line-height:1.284180;font-style:normal;font-weight:normal;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_b70edc37a7b8625b5505b706.woff2')format("woff");}.ff2_c01242{font-family:ff2_c01242;line-height:1.568848;font-style:normal;font-weight:normal;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_e8f3e2017240cdef0b4d969e.woff2')format("woff");}.ff3_c01242{font-family:ff3_c01242;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01242;src:url('chunks/assets/font_d52452857c3afaa672205b95.woff2')format("woff");}.ff4_c01242{font-family:ff4_c01242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01242;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01242{font-family:ff5_c01242;line-height:1.219238;font-style: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:3.000000px;}
.ls0_c01242{letter-spacing:4.968000px;}
.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;}
}
.ws1_c01242{word-spacing:-36.000000px;}
.ws0_c01242{word-spacing:-20.352000px;}
.ws2_c01242{word-spacing:0.000000px;}
._18_c01242{margin-left:-19.728000px;}
._1c_c01242{margin-left:-17.892000px;}
._10_c01242{margin-left:-16.344000px;}
._11_c01242{margin-left:-14.112000px;}
._19_c01242{margin-left:-12.972000px;}
._f_c01242{margin-left:-11.844000px;}
._16_c01242{margin-left:-10.776000px;}
._1a_c01242{margin-left:-9.132000px;}
._8_c01242{margin-left:-7.980000px;}
._c_c01242{margin-left:-6.288000px;}
._d_c01242{margin-left:-4.896000px;}
._2_c01242{margin-left:-3.864000px;}
._a_c01242{margin-left:-2.160000px;}
._b_c01242{margin-left:-1.152000px;}
._e_c01242{width:1.104000px;}
._3_c01242{width:2.688000px;}
._4_c01242{width:3.864000px;}
._5_c01242{width:4.872000px;}
._6_c01242{width:5.964000px;}
._14_c01242{width:6.984000px;}
._1_c01242{width:8.316000px;}
._12_c01242{width:9.420000px;}
._9_c01242{width:11.088000px;}
._13_c01242{width:12.240000px;}
._0_c01242{width:14.028000px;}
._15_c01242{width:15.084000px;}
._17_c01242{width:16.884000px;}
._1b_c01242{width:24.384000px;}
._7_c01242{width:284.340000px;}
._1d_c01242{width:1312.128000px;}
.fc2_c01242{color:transparent;}
.fc1_c01242{color:rgb(128,128,128);}
.fc0_c01242{color:rgb(0,0,0);}
.fs3_c01242{font-size:48.000000px;}
.fs2_c01242{font-size:69.000000px;}
.fs1_c01242{font-size:72.000000px;}
.fs0_c01242{font-size:84.000000px;}
.y0_c01242{bottom:0.000000px;}
.y1f_c01242{bottom:3.105000px;}
.y1e_c01242{bottom:7.228357px;}
.y1d_c01242{bottom:34.830000px;}
.y1c_c01242{bottom:62.880000px;}
.y1b_c01242{bottom:89.130000px;}
.y1a_c01242{bottom:114.180000px;}
.y19_c01242{bottom:138.030000px;}
.y18_c01242{bottom:163.680000px;}
.y17_c01242{bottom:190.080000px;}
.y16_c01242{bottom:214.380000px;}
.y15_c01242{bottom:239.730000px;}
.y14_c01242{bottom:264.930000px;}
.y13_c01242{bottom:291.030000px;}
.y12_c01242{bottom:316.230000px;}
.y11_c01242{bottom:340.530000px;}
.y10_c01242{bottom:365.130000px;}
.yf_c01242{bottom:389.580000px;}
.ye_c01242{bottom:414.180000px;}
.yd_c01242{bottom:438.480000px;}
.yc_c01242{bottom:463.380000px;}
.yb_c01242{bottom:487.980000px;}
.ya_c01242{bottom:512.280000px;}
.y9_c01242{bottom:536.280000px;}
.y8_c01242{bottom:560.280000px;}
.y7_c01242{bottom:584.880000px;}
.y6_c01242{bottom:609.480000px;}
.y5_c01242{bottom:634.230000px;}
.y4_c01242{bottom:658.830000px;}
.y3_c01242{bottom:683.730000px;}
.y2_c01242{bottom:708.780000px;}
.y1_c01242{bottom:733.080000px;}
.h4_c01242{height:13.200074px;}
.h5_c01242{height:43.804688px;}
.h2_c01242{height:82.400391px;}
.h3_c01242{height:91.160156px;}
.h0_c01242{height:795.450000px;}
.h1_c01242{height:795.750000px;}
.w2_c01242{width:104.875500px;}
.w0_c01242{width:529.200000px;}
.w1_c01242{width:529.500000px;}
.x0_c01242{left:0.000000px;}
.x2_c01242{left:35.400000px;}
.x3_c01242{left:37.500000px;}
.x4_c01242{left:39.150000px;}
.x5_c01242{left:40.800000px;}
.x6_c01242{left:42.150000px;}
.x8_c01242{left:44.250000px;}
.x9_c01242{left:45.450000px;}
.xa_c01242{left:46.950000px;}
.xb_c01242{left:51.750000px;}
.x7_c01242{left:68.400000px;}
.x1_c01242{left:147.600000px;}
.xc_c01242{left:216.414230px;}
@media print{
.v0_c01242{vertical-align:0.000000pt;}
.ls2_c01242{letter-spacing:0.000000pt;}
.ls1_c01242{letter-spacing:2.666667pt;}
.ls0_c01242{letter-spacing:4.416000pt;}
.ws1_c01242{word-spacing:-32.000000pt;}
.ws0_c01242{word-spacing:-18.090667pt;}
.ws2_c01242{word-spacing:0.000000pt;}
._18_c01242{margin-left:-17.536000pt;}
._1c_c01242{margin-left:-15.904000pt;}
._10_c01242{margin-left:-14.528000pt;}
._11_c01242{margin-left:-12.544000pt;}
._19_c01242{margin-left:-11.530667pt;}
._f_c01242{margin-left:-10.528000pt;}
._16_c01242{margin-left:-9.578667pt;}
._1a_c01242{margin-left:-8.117333pt;}
._8_c01242{margin-left:-7.093333pt;}
._c_c01242{margin-left:-5.589333pt;}
._d_c01242{margin-left:-4.352000pt;}
._2_c01242{margin-left:-3.434667pt;}
._a_c01242{margin-left:-1.920000pt;}
._b_c01242{margin-left:-1.024000pt;}
._e_c01242{width:0.981333pt;}
._3_c01242{width:2.389333pt;}
._4_c01242{width:3.434667pt;}
._5_c01242{width:4.330667pt;}
._6_c01242{width:5.301333pt;}
._14_c01242{width:6.208000pt;}
._1_c01242{width:7.392000pt;}
._12_c01242{width:8.373333pt;}
._9_c01242{width:9.856000pt;}
._13_c01242{width:10.880000pt;}
._0_c01242{width:12.469333pt;}
._15_c01242{width:13.408000pt;}
._17_c01242{width:15.008000pt;}
._1b_c01242{width:21.674667pt;}
._7_c01242{width:252.746667pt;}
._1d_c01242{width:1166.336000pt;}
.fs3_c01242{font-size:42.666667pt;}
.fs2_c01242{font-size:61.333333pt;}
.fs1_c01242{font-size:64.000000pt;}
.fs0_c01242{font-size:74.666667pt;}
.y0_c01242{bottom:0.000000pt;}
.y1f_c01242{bottom:2.760000pt;}
.y1e_c01242{bottom:6.425206pt;}
.y1d_c01242{bottom:30.960000pt;}
.y1c_c01242{bottom:55.893333pt;}
.y1b_c01242{bottom:79.226667pt;}
.y1a_c01242{bottom:101.493333pt;}
.y19_c01242{bottom:122.693333pt;}
.y18_c01242{bottom:145.493333pt;}
.y17_c01242{bottom:168.960000pt;}
.y16_c01242{bottom:190.560000pt;}
.y15_c01242{bottom:213.093333pt;}
.y14_c01242{bottom:235.493333pt;}
.y13_c01242{bottom:258.693333pt;}
.y12_c01242{bottom:281.093333pt;}
.y11_c01242{bottom:302.693333pt;}
.y10_c01242{bottom:324.560000pt;}
.yf_c01242{bottom:346.293333pt;}
.ye_c01242{bottom:368.160000pt;}
.yd_c01242{bottom:389.760000pt;}
.yc_c01242{bottom:411.893333pt;}
.yb_c01242{bottom:433.760000pt;}
.ya_c01242{bottom:455.360000pt;}
.y9_c01242{bottom:476.693333pt;}
.y8_c01242{bottom:498.026667pt;}
.y7_c01242{bottom:519.893333pt;}
.y6_c01242{bottom:541.760000pt;}
.y5_c01242{bottom:563.760000pt;}
.y4_c01242{bottom:585.626667pt;}
.y3_c01242{bottom:607.760000pt;}
.y2_c01242{bottom:630.026667pt;}
.y1_c01242{bottom:651.626667pt;}
.h4_c01242{height:11.733399pt;}
.h5_c01242{height:38.937500pt;}
.h2_c01242{height:73.244792pt;}
.h3_c01242{height:81.031250pt;}
.h0_c01242{height:707.066667pt;}
.h1_c01242{height:707.333333pt;}
.w2_c01242{width:93.222667pt;}
.w0_c01242{width:470.400000pt;}
.w1_c01242{width:470.666667pt;}
.x0_c01242{left:0.000000pt;}
.x2_c01242{left:31.466667pt;}
.x3_c01242{left:33.333333pt;}
.x4_c01242{left:34.800000pt;}
.x5_c01242{left:36.266667pt;}
.x6_c01242{left:37.466667pt;}
.x8_c01242{left:39.333333pt;}
.x9_c01242{left:40.400000pt;}
.xa_c01242{left:41.733333pt;}
.xb_c01242{left:46.000000pt;}
.x7_c01242{left:60.800000pt;}
.x1_c01242{left:131.200000pt;}
.xc_c01242{left:192.368205pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e6fe47d42dca98aaa2c55b3.woff2')format("woff");}.ff1_c01243{font-family:ff1_c01243;line-height:1.480469;font-style:normal;font-weight:normal;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_c04d7b27e8b81f2413a01375.woff2')format("woff");}.ff2_c01243{font-family:ff2_c01243;line-height:1.568848;font-style:normal;font-weight:normal;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_7f77112c68ac0f02e8f5b748.woff2')format("woff");}.ff3_c01243{font-family:ff3_c01243;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01243{font-family:ff4_c01243;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c01243{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,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;}
.ls1_c01243{letter-spacing:3.000000px;}
.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:-17.352000px;}
.ws1_c01243{word-spacing:0.000000px;}
._a_c01243{margin-left:-10.008000px;}
._6_c01243{margin-left:-8.208000px;}
._5_c01243{margin-left:-6.552000px;}
._7_c01243{margin-left:-4.752000px;}
._b_c01243{margin-left:-3.600000px;}
._8_c01243{margin-left:-2.592000px;}
._4_c01243{margin-left:-1.368000px;}
._0_c01243{width:1.368000px;}
._1_c01243{width:2.448000px;}
._2_c01243{width:4.248000px;}
._3_c01243{width:6.048000px;}
._d_c01243{width:7.560000px;}
._9_c01243{width:9.216000px;}
._11_c01243{width:10.377000px;}
._e_c01243{width:11.520000px;}
._c_c01243{width:13.248000px;}
._10_c01243{width:17.190000px;}
._12_c01243{width:18.882000px;}
._f_c01243{width:23.688000px;}
._13_c01243{width:27.306000px;}
.fc2_c01243{color:transparent;}
.fc1_c01243{color:rgb(128,128,128);}
.fc0_c01243{color:rgb(0,0,0);}
.fs3_c01243{font-size:48.000000px;}
.fs2_c01243{font-size:63.000000px;}
.fs0_c01243{font-size:72.000000px;}
.fs1_c01243{font-size:183.000000px;}
.y0_c01243{bottom:0.000000px;}
.y1f_c01243{bottom:3.105000px;}
.y1e_c01243{bottom:7.228355px;}
.y1d_c01243{bottom:56.385000px;}
.y1c_c01243{bottom:83.235000px;}
.y1b_c01243{bottom:108.585000px;}
.y1a_c01243{bottom:135.885000px;}
.y19_c01243{bottom:159.285000px;}
.y18_c01243{bottom:185.235000px;}
.y16_c01243{bottom:187.785000px;}
.y17_c01243{bottom:211.185000px;}
.y15_c01243{bottom:233.835000px;}
.y14_c01243{bottom:259.485000px;}
.y13_c01243{bottom:284.835000px;}
.y12_c01243{bottom:308.835000px;}
.y11_c01243{bottom:334.485000px;}
.y10_c01243{bottom:358.035000px;}
.yf_c01243{bottom:382.635000px;}
.ye_c01243{bottom:407.385000px;}
.yd_c01243{bottom:430.335000px;}
.yc_c01243{bottom:455.535000px;}
.yb_c01243{bottom:479.235000px;}
.ya_c01243{bottom:504.435000px;}
.y9_c01243{bottom:528.885000px;}
.y8_c01243{bottom:554.385000px;}
.y7_c01243{bottom:580.035000px;}
.y6_c01243{bottom:604.485000px;}
.y5_c01243{bottom:629.985000px;}
.y4_c01243{bottom:655.035000px;}
.y3_c01243{bottom:679.035000px;}
.y2_c01243{bottom:704.685000px;}
.y1_c01243{bottom:730.035000px;}
.h5_c01243{height:13.200074px;}
.h6_c01243{height:43.804688px;}
.h4_c01243{height:79.765137px;}
.h2_c01243{height:91.160156px;}
.h3_c01243{height:231.698730px;}
.h0_c01243{height:791.625000px;}
.h1_c01243{height:792.000000px;}
.w1_c01243{width:104.875500px;}
.w0_c01243{width:526.500000px;}
.x0_c01243{left:0.000000px;}
.x7_c01243{left:85.500000px;}
.xa_c01243{left:96.300000px;}
.x9_c01243{left:97.950000px;}
.x8_c01243{left:99.000000px;}
.x6_c01243{left:100.200000px;}
.x5_c01243{left:102.000000px;}
.x4_c01243{left:104.400000px;}
.x3_c01243{left:105.600000px;}
.x2_c01243{left:107.100000px;}
.xb_c01243{left:215.064240px;}
.x1_c01243{left:238.950000px;}
@media print{
.v0_c01243{vertical-align:0.000000pt;}
.ls0_c01243{letter-spacing:0.000000pt;}
.ls1_c01243{letter-spacing:2.666667pt;}
.ws0_c01243{word-spacing:-15.424000pt;}
.ws1_c01243{word-spacing:0.000000pt;}
._a_c01243{margin-left:-8.896000pt;}
._6_c01243{margin-left:-7.296000pt;}
._5_c01243{margin-left:-5.824000pt;}
._7_c01243{margin-left:-4.224000pt;}
._b_c01243{margin-left:-3.200000pt;}
._8_c01243{margin-left:-2.304000pt;}
._4_c01243{margin-left:-1.216000pt;}
._0_c01243{width:1.216000pt;}
._1_c01243{width:2.176000pt;}
._2_c01243{width:3.776000pt;}
._3_c01243{width:5.376000pt;}
._d_c01243{width:6.720000pt;}
._9_c01243{width:8.192000pt;}
._11_c01243{width:9.224000pt;}
._e_c01243{width:10.240000pt;}
._c_c01243{width:11.776000pt;}
._10_c01243{width:15.280000pt;}
._12_c01243{width:16.784000pt;}
._f_c01243{width:21.056000pt;}
._13_c01243{width:24.272000pt;}
.fs3_c01243{font-size:42.666667pt;}
.fs2_c01243{font-size:56.000000pt;}
.fs0_c01243{font-size:64.000000pt;}
.fs1_c01243{font-size:162.666667pt;}
.y0_c01243{bottom:0.000000pt;}
.y1f_c01243{bottom:2.760000pt;}
.y1e_c01243{bottom:6.425204pt;}
.y1d_c01243{bottom:50.120000pt;}
.y1c_c01243{bottom:73.986667pt;}
.y1b_c01243{bottom:96.520000pt;}
.y1a_c01243{bottom:120.786667pt;}
.y19_c01243{bottom:141.586667pt;}
.y18_c01243{bottom:164.653333pt;}
.y16_c01243{bottom:166.920000pt;}
.y17_c01243{bottom:187.720000pt;}
.y15_c01243{bottom:207.853333pt;}
.y14_c01243{bottom:230.653333pt;}
.y13_c01243{bottom:253.186667pt;}
.y12_c01243{bottom:274.520000pt;}
.y11_c01243{bottom:297.320000pt;}
.y10_c01243{bottom:318.253333pt;}
.yf_c01243{bottom:340.120000pt;}
.ye_c01243{bottom:362.120000pt;}
.yd_c01243{bottom:382.520000pt;}
.yc_c01243{bottom:404.920000pt;}
.yb_c01243{bottom:425.986667pt;}
.ya_c01243{bottom:448.386667pt;}
.y9_c01243{bottom:470.120000pt;}
.y8_c01243{bottom:492.786667pt;}
.y7_c01243{bottom:515.586667pt;}
.y6_c01243{bottom:537.320000pt;}
.y5_c01243{bottom:559.986667pt;}
.y4_c01243{bottom:582.253333pt;}
.y3_c01243{bottom:603.586667pt;}
.y2_c01243{bottom:626.386667pt;}
.y1_c01243{bottom:648.920000pt;}
.h5_c01243{height:11.733399pt;}
.h6_c01243{height:38.937500pt;}
.h4_c01243{height:70.902344pt;}
.h2_c01243{height:81.031250pt;}
.h3_c01243{height:205.954427pt;}
.h0_c01243{height:703.666667pt;}
.h1_c01243{height:704.000000pt;}
.w1_c01243{width:93.222667pt;}
.w0_c01243{width:468.000000pt;}
.x0_c01243{left:0.000000pt;}
.x7_c01243{left:76.000000pt;}
.xa_c01243{left:85.600000pt;}
.x9_c01243{left:87.066667pt;}
.x8_c01243{left:88.000000pt;}
.x6_c01243{left:89.066667pt;}
.x5_c01243{left:90.666667pt;}
.x4_c01243{left:92.800000pt;}
.x3_c01243{left:93.866667pt;}
.x2_c01243{left:95.200000pt;}
.xb_c01243{left:191.168213pt;}
.x1_c01243{left:212.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d2dbf4aa81bd43343918365c.woff2')format("woff");}.ff1_c01244{font-family:ff1_c01244;line-height:1.480469;font-style:normal;font-weight:normal;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_30bdd3c6e91d0a0e59977d7b.woff2')format("woff");}.ff2_c01244{font-family:ff2_c01244;line-height:1.568848;font-style:normal;font-weight:normal;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_bc0b26ab157e3ac4d636d018.woff2')format("woff");}.ff3_c01244{font-family:ff3_c01244;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01244;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01244{font-family:ff4_c01244;line-height:1.219238;font-style: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;}
.v1_c01244{vertical-align:71.400000px;}
.ls3_c01244{letter-spacing:-9.000000px;}
.ls0_c01244{letter-spacing:-6.000000px;}
.ls2_c01244{letter-spacing:0.000000px;}
.ls1_c01244{letter-spacing:3.000000px;}
.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;}
}
.ws3_c01244{word-spacing:-20.967000px;}
.ws1_c01244{word-spacing:-19.521000px;}
.ws2_c01244{word-spacing:-11.967000px;}
.ws0_c01244{word-spacing:-0.153000px;}
.ws4_c01244{word-spacing:0.000000px;}
._1a_c01244{margin-left:-17.103000px;}
._1_c01244{margin-left:-12.240000px;}
._12_c01244{margin-left:-10.080000px;}
._11_c01244{margin-left:-8.538000px;}
._0_c01244{margin-left:-7.344000px;}
._2_c01244{margin-left:-5.814000px;}
._6_c01244{margin-left:-4.590000px;}
._4_c01244{margin-left:-3.570000px;}
._3_c01244{margin-left:-2.040000px;}
._e_c01244{margin-left:-1.020000px;}
._a_c01244{width:1.134000px;}
._9_c01244{width:2.664000px;}
._8_c01244{width:3.936000px;}
._7_c01244{width:5.376000px;}
._d_c01244{width:6.960000px;}
._13_c01244{width:8.166000px;}
._c_c01244{width:9.864000px;}
._10_c01244{width:11.154000px;}
._14_c01244{width:12.225000px;}
._f_c01244{width:13.488000px;}
._b_c01244{width:15.840000px;}
._19_c01244{width:17.025000px;}
._15_c01244{width:18.054000px;}
._18_c01244{width:19.086000px;}
._17_c01244{width:21.420000px;}
._1b_c01244{width:83.091000px;}
._16_c01244{width:244.593000px;}
._5_c01244{width:275.502000px;}
.fc2_c01244{color:transparent;}
.fc1_c01244{color:rgb(128,128,128);}
.fc0_c01244{color:rgb(0,0,0);}
.fs6_c01244{font-size:48.000000px;}
.fs3_c01244{font-size:63.000000px;}
.fs1_c01244{font-size:72.000000px;}
.fs4_c01244{font-size:81.000000px;}
.fs5_c01244{font-size:87.000000px;}
.fs0_c01244{font-size:102.000000px;}
.fs2_c01244{font-size:153.000000px;}
.y0_c01244{bottom:0.000000px;}
.y1f_c01244{bottom:3.105000px;}
.y1e_c01244{bottom:7.228357px;}
.y1d_c01244{bottom:50.730000px;}
.y1c_c01244{bottom:76.230000px;}
.y1b_c01244{bottom:103.380000px;}
.y1a_c01244{bottom:129.930000px;}
.y19_c01244{bottom:154.680000px;}
.y18_c01244{bottom:179.280000px;}
.y17_c01244{bottom:205.230000px;}
.y16_c01244{bottom:229.830000px;}
.y15_c01244{bottom:255.930000px;}
.y14_c01244{bottom:280.530000px;}
.y13_c01244{bottom:303.780000px;}
.y12_c01244{bottom:328.680000px;}
.y11_c01244{bottom:336.630000px;}
.y10_c01244{bottom:379.380000px;}
.yf_c01244{bottom:403.080000px;}
.ye_c01244{bottom:427.980000px;}
.yd_c01244{bottom:452.280000px;}
.yc_c01244{bottom:477.330000px;}
.yb_c01244{bottom:500.880000px;}
.ya_c01244{bottom:524.430000px;}
.y9_c01244{bottom:549.180000px;}
.y8_c01244{bottom:573.780000px;}
.y7_c01244{bottom:598.680000px;}
.y6_c01244{bottom:623.130000px;}
.y5_c01244{bottom:647.730000px;}
.y4_c01244{bottom:673.380000px;}
.y3_c01244{bottom:697.680000px;}
.y2_c01244{bottom:723.030000px;}
.y1_c01244{bottom:747.930000px;}
.h8_c01244{height:13.200074px;}
.h9_c01244{height:43.804688px;}
.h5_c01244{height:79.765137px;}
.h3_c01244{height:91.160156px;}
.h6_c01244{height:94.803223px;}
.h7_c01244{height:110.151855px;}
.h2_c01244{height:119.381836px;}
.h4_c01244{height:163.251000px;}
.h0_c01244{height:800.850000px;}
.h1_c01244{height:801.000000px;}
.w2_c01244{width:104.875500px;}
.w1_c01244{width:528.750000px;}
.w0_c01244{width:528.900000px;}
.x0_c01244{left:0.000000px;}
.xc_c01244{left:13.800000px;}
.xb_c01244{left:15.450000px;}
.xa_c01244{left:17.100000px;}
.x9_c01244{left:19.200000px;}
.x7_c01244{left:20.250000px;}
.x6_c01244{left:22.500000px;}
.x5_c01244{left:24.600000px;}
.x3_c01244{left:26.550000px;}
.x4_c01244{left:27.900000px;}
.x2_c01244{left:28.950000px;}
.x8_c01244{left:37.050000px;}
.x1_c01244{left:150.150000px;}
.xf_c01244{left:216.264267px;}
.xd_c01244{left:220.650000px;}
.xe_c01244{left:335.400000px;}
@media print{
.v0_c01244{vertical-align:0.000000pt;}
.v1_c01244{vertical-align:63.466667pt;}
.ls3_c01244{letter-spacing:-8.000000pt;}
.ls0_c01244{letter-spacing:-5.333333pt;}
.ls2_c01244{letter-spacing:0.000000pt;}
.ls1_c01244{letter-spacing:2.666667pt;}
.ws3_c01244{word-spacing:-18.637333pt;}
.ws1_c01244{word-spacing:-17.352000pt;}
.ws2_c01244{word-spacing:-10.637333pt;}
.ws0_c01244{word-spacing:-0.136000pt;}
.ws4_c01244{word-spacing:0.000000pt;}
._1a_c01244{margin-left:-15.202667pt;}
._1_c01244{margin-left:-10.880000pt;}
._12_c01244{margin-left:-8.960000pt;}
._11_c01244{margin-left:-7.589333pt;}
._0_c01244{margin-left:-6.528000pt;}
._2_c01244{margin-left:-5.168000pt;}
._6_c01244{margin-left:-4.080000pt;}
._4_c01244{margin-left:-3.173333pt;}
._3_c01244{margin-left:-1.813333pt;}
._e_c01244{margin-left:-0.906667pt;}
._a_c01244{width:1.008000pt;}
._9_c01244{width:2.368000pt;}
._8_c01244{width:3.498667pt;}
._7_c01244{width:4.778667pt;}
._d_c01244{width:6.186667pt;}
._13_c01244{width:7.258667pt;}
._c_c01244{width:8.768000pt;}
._10_c01244{width:9.914667pt;}
._14_c01244{width:10.866667pt;}
._f_c01244{width:11.989333pt;}
._b_c01244{width:14.080000pt;}
._19_c01244{width:15.133333pt;}
._15_c01244{width:16.048000pt;}
._18_c01244{width:16.965333pt;}
._17_c01244{width:19.040000pt;}
._1b_c01244{width:73.858667pt;}
._16_c01244{width:217.416000pt;}
._5_c01244{width:244.890667pt;}
.fs6_c01244{font-size:42.666667pt;}
.fs3_c01244{font-size:56.000000pt;}
.fs1_c01244{font-size:64.000000pt;}
.fs4_c01244{font-size:72.000000pt;}
.fs5_c01244{font-size:77.333333pt;}
.fs0_c01244{font-size:90.666667pt;}
.fs2_c01244{font-size:136.000000pt;}
.y0_c01244{bottom:0.000000pt;}
.y1f_c01244{bottom:2.760000pt;}
.y1e_c01244{bottom:6.425206pt;}
.y1d_c01244{bottom:45.093333pt;}
.y1c_c01244{bottom:67.760000pt;}
.y1b_c01244{bottom:91.893333pt;}
.y1a_c01244{bottom:115.493333pt;}
.y19_c01244{bottom:137.493333pt;}
.y18_c01244{bottom:159.360000pt;}
.y17_c01244{bottom:182.426667pt;}
.y16_c01244{bottom:204.293333pt;}
.y15_c01244{bottom:227.493333pt;}
.y14_c01244{bottom:249.360000pt;}
.y13_c01244{bottom:270.026667pt;}
.y12_c01244{bottom:292.160000pt;}
.y11_c01244{bottom:299.226667pt;}
.y10_c01244{bottom:337.226667pt;}
.yf_c01244{bottom:358.293333pt;}
.ye_c01244{bottom:380.426667pt;}
.yd_c01244{bottom:402.026667pt;}
.yc_c01244{bottom:424.293333pt;}
.yb_c01244{bottom:445.226667pt;}
.ya_c01244{bottom:466.160000pt;}
.y9_c01244{bottom:488.160000pt;}
.y8_c01244{bottom:510.026667pt;}
.y7_c01244{bottom:532.160000pt;}
.y6_c01244{bottom:553.893333pt;}
.y5_c01244{bottom:575.760000pt;}
.y4_c01244{bottom:598.560000pt;}
.y3_c01244{bottom:620.160000pt;}
.y2_c01244{bottom:642.693333pt;}
.y1_c01244{bottom:664.826667pt;}
.h8_c01244{height:11.733399pt;}
.h9_c01244{height:38.937500pt;}
.h5_c01244{height:70.902344pt;}
.h3_c01244{height:81.031250pt;}
.h6_c01244{height:84.269531pt;}
.h7_c01244{height:97.912760pt;}
.h2_c01244{height:106.117188pt;}
.h4_c01244{height:145.112000pt;}
.h0_c01244{height:711.866667pt;}
.h1_c01244{height:712.000000pt;}
.w2_c01244{width:93.222667pt;}
.w1_c01244{width:470.000000pt;}
.w0_c01244{width:470.133333pt;}
.x0_c01244{left:0.000000pt;}
.xc_c01244{left:12.266667pt;}
.xb_c01244{left:13.733333pt;}
.xa_c01244{left:15.200000pt;}
.x9_c01244{left:17.066667pt;}
.x7_c01244{left:18.000000pt;}
.x6_c01244{left:20.000000pt;}
.x5_c01244{left:21.866667pt;}
.x3_c01244{left:23.600000pt;}
.x4_c01244{left:24.800000pt;}
.x2_c01244{left:25.733333pt;}
.x8_c01244{left:32.933333pt;}
.x1_c01244{left:133.466667pt;}
.xf_c01244{left:192.234904pt;}
.xd_c01244{left:196.133333pt;}
.xe_c01244{left:298.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6de2dc33fbdfdb2cf11163c2.woff2')format("woff");}.ff1_c01245{font-family:ff1_c01245;line-height:1.480469;font-style:normal;font-weight:normal;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_68f5f69e68434351baa85a49.woff2')format("woff");}.ff2_c01245{font-family:ff2_c01245;line-height:1.568848;font-style:normal;font-weight:normal;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_eae04edf7eef72b5af79e741.woff2')format("woff");}.ff3_c01245{font-family:ff3_c01245;line-height:1.284668;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01245{font-family:ff4_c01245;line-height:1.219238;font-style: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;}
.ls1_c01245{letter-spacing:0.000000px;}
.ls0_c01245{letter-spacing:3.000000px;}
.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:-33.192000px;}
.ws1_c01245{word-spacing:-6.249000px;}
.ws2_c01245{word-spacing:0.000000px;}
._11_c01245{margin-left:-16.176000px;}
._10_c01245{margin-left:-8.136000px;}
._b_c01245{margin-left:-6.552000px;}
._a_c01245{margin-left:-4.728000px;}
._8_c01245{margin-left:-3.024000px;}
._6_c01245{margin-left:-1.800000px;}
._1_c01245{width:1.080000px;}
._0_c01245{width:2.808000px;}
._2_c01245{width:3.816000px;}
._7_c01245{width:4.824000px;}
._3_c01245{width:5.904000px;}
._d_c01245{width:7.296000px;}
._c_c01245{width:8.496000px;}
._e_c01245{width:9.504000px;}
._5_c01245{width:10.512000px;}
._f_c01245{width:12.456000px;}
._4_c01245{width:13.680000px;}
._9_c01245{width:15.840000px;}
.fc2_c01245{color:transparent;}
.fc1_c01245{color:rgb(128,128,128);}
.fc0_c01245{color:rgb(0,0,0);}
.fs4_c01245{font-size:48.000000px;}
.fs3_c01245{font-size:57.000000px;}
.fs2_c01245{font-size:66.000000px;}
.fs0_c01245{font-size:72.000000px;}
.fs1_c01245{font-size:84.000000px;}
.y0_c01245{bottom:0.000000px;}
.y1c_c01245{bottom:3.105000px;}
.y1b_c01245{bottom:7.228371px;}
.y1a_c01245{bottom:119.865000px;}
.y19_c01245{bottom:145.515000px;}
.y18_c01245{bottom:170.565000px;}
.y17_c01245{bottom:196.815000px;}
.y16_c01245{bottom:223.515000px;}
.y15_c01245{bottom:246.765000px;}
.y14_c01245{bottom:272.415000px;}
.y13_c01245{bottom:297.465000px;}
.y12_c01245{bottom:322.665000px;}
.y11_c01245{bottom:346.665000px;}
.y10_c01245{bottom:369.915000px;}
.yf_c01245{bottom:394.215000px;}
.ye_c01245{bottom:419.265000px;}
.yd_c01245{bottom:445.215000px;}
.yc_c01245{bottom:467.565000px;}
.yb_c01245{bottom:493.215000px;}
.ya_c01245{bottom:518.415000px;}
.y9_c01245{bottom:543.165000px;}
.y8_c01245{bottom:568.065000px;}
.y7_c01245{bottom:593.115000px;}
.y6_c01245{bottom:618.315000px;}
.y5_c01245{bottom:642.915000px;}
.y4_c01245{bottom:667.215000px;}
.y3_c01245{bottom:692.865000px;}
.y2_c01245{bottom:717.615000px;}
.y1_c01245{bottom:742.965000px;}
.h4_c01245{height:13.200074px;}
.h5_c01245{height:43.804688px;}
.h3_c01245{height:83.563477px;}
.h2_c01245{height:91.160156px;}
.h0_c01245{height:787.875000px;}
.h1_c01245{height:788.250000px;}
.w2_c01245{width:104.875500px;}
.w1_c01245{width:513.750000px;}
.w0_c01245{width:514.050000px;}
.x0_c01245{left:0.000000px;}
.x3_c01245{left:90.750000px;}
.x5_c01245{left:92.700000px;}
.x2_c01245{left:100.950000px;}
.x4_c01245{left:102.150000px;}
.x6_c01245{left:103.950000px;}
.x7_c01245{left:105.000000px;}
.x1_c01245{left:206.100000px;}
.x8_c01245{left:208.839249px;}
@media print{
.v0_c01245{vertical-align:0.000000pt;}
.ls1_c01245{letter-spacing:0.000000pt;}
.ls0_c01245{letter-spacing:2.666667pt;}
.ws0_c01245{word-spacing:-29.504000pt;}
.ws1_c01245{word-spacing:-5.554667pt;}
.ws2_c01245{word-spacing:0.000000pt;}
._11_c01245{margin-left:-14.378667pt;}
._10_c01245{margin-left:-7.232000pt;}
._b_c01245{margin-left:-5.824000pt;}
._a_c01245{margin-left:-4.202667pt;}
._8_c01245{margin-left:-2.688000pt;}
._6_c01245{margin-left:-1.600000pt;}
._1_c01245{width:0.960000pt;}
._0_c01245{width:2.496000pt;}
._2_c01245{width:3.392000pt;}
._7_c01245{width:4.288000pt;}
._3_c01245{width:5.248000pt;}
._d_c01245{width:6.485333pt;}
._c_c01245{width:7.552000pt;}
._e_c01245{width:8.448000pt;}
._5_c01245{width:9.344000pt;}
._f_c01245{width:11.072000pt;}
._4_c01245{width:12.160000pt;}
._9_c01245{width:14.080000pt;}
.fs4_c01245{font-size:42.666667pt;}
.fs3_c01245{font-size:50.666667pt;}
.fs2_c01245{font-size:58.666667pt;}
.fs0_c01245{font-size:64.000000pt;}
.fs1_c01245{font-size:74.666667pt;}
.y0_c01245{bottom:0.000000pt;}
.y1c_c01245{bottom:2.760000pt;}
.y1b_c01245{bottom:6.425219pt;}
.y1a_c01245{bottom:106.546667pt;}
.y19_c01245{bottom:129.346667pt;}
.y18_c01245{bottom:151.613333pt;}
.y17_c01245{bottom:174.946667pt;}
.y16_c01245{bottom:198.680000pt;}
.y15_c01245{bottom:219.346667pt;}
.y14_c01245{bottom:242.146667pt;}
.y13_c01245{bottom:264.413333pt;}
.y12_c01245{bottom:286.813333pt;}
.y11_c01245{bottom:308.146667pt;}
.y10_c01245{bottom:328.813333pt;}
.yf_c01245{bottom:350.413333pt;}
.ye_c01245{bottom:372.680000pt;}
.yd_c01245{bottom:395.746667pt;}
.yc_c01245{bottom:415.613333pt;}
.yb_c01245{bottom:438.413333pt;}
.ya_c01245{bottom:460.813333pt;}
.y9_c01245{bottom:482.813333pt;}
.y8_c01245{bottom:504.946667pt;}
.y7_c01245{bottom:527.213333pt;}
.y6_c01245{bottom:549.613333pt;}
.y5_c01245{bottom:571.480000pt;}
.y4_c01245{bottom:593.080000pt;}
.y3_c01245{bottom:615.880000pt;}
.y2_c01245{bottom:637.880000pt;}
.y1_c01245{bottom:660.413333pt;}
.h4_c01245{height:11.733399pt;}
.h5_c01245{height:38.937500pt;}
.h3_c01245{height:74.278646pt;}
.h2_c01245{height:81.031250pt;}
.h0_c01245{height:700.333333pt;}
.h1_c01245{height:700.666667pt;}
.w2_c01245{width:93.222667pt;}
.w1_c01245{width:456.666667pt;}
.w0_c01245{width:456.933333pt;}
.x0_c01245{left:0.000000pt;}
.x3_c01245{left:80.666667pt;}
.x5_c01245{left:82.400000pt;}
.x2_c01245{left:89.733333pt;}
.x4_c01245{left:90.800000pt;}
.x6_c01245{left:92.400000pt;}
.x7_c01245{left:93.333333pt;}
.x1_c01245{left:183.200000pt;}
.x8_c01245{left:185.634888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7ebf978c6ad755c2a750b55c.woff2')format("woff");}.ff1_c01246{font-family:ff1_c01246;line-height:1.592000;font-style:normal;font-weight:normal;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_8db3389c20bcf99219880d16.woff2')format("woff");}.ff2_c01246{font-family:ff2_c01246;line-height:1.568848;font-style:normal;font-weight:normal;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_dfaba53b26d4df246364a42c.woff2')format("woff");}.ff3_c01246{font-family:ff3_c01246;line-height:1.284668;font-style:normal;font-weight:normal;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_cd9970442a4b4291107594cd.woff2')format("woff");}.ff4_c01246{font-family:ff4_c01246;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01246;src:url('chunks/assets/font_f7b24b2e39e03b8e149ad3b1.woff2')format("woff");}.ff5_c01246{font-family:ff5_c01246;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01246;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01246{font-family:ff6_c01246;line-height:1.219238;font-style: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;}
.ls3_c01246{letter-spacing:-6.000000px;}
.ls0_c01246{letter-spacing:-3.000000px;}
.ls2_c01246{letter-spacing:0.000000px;}
.ls1_c01246{letter-spacing:3.000000px;}
.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:-33.192000px;}
.ws2_c01246{word-spacing:-24.051000px;}
.ws1_c01246{word-spacing:-20.352000px;}
.ws3_c01246{word-spacing:0.000000px;}
._15_c01246{margin-left:-34.848000px;}
._10_c01246{margin-left:-30.336000px;}
._19_c01246{margin-left:-22.032000px;}
._1b_c01246{margin-left:-13.752000px;}
._12_c01246{margin-left:-12.384000px;}
._e_c01246{margin-left:-10.944000px;}
._1c_c01246{margin-left:-9.216000px;}
._11_c01246{margin-left:-7.800000px;}
._16_c01246{margin-left:-6.432000px;}
._d_c01246{margin-left:-4.872000px;}
._f_c01246{margin-left:-2.880000px;}
._9_c01246{margin-left:-1.224000px;}
._8_c01246{width:1.728000px;}
._a_c01246{width:3.312000px;}
._c_c01246{width:4.536000px;}
._13_c01246{width:5.736000px;}
._4_c01246{width:6.960000px;}
._b_c01246{width:7.992000px;}
._0_c01246{width:9.360000px;}
._6_c01246{width:10.800000px;}
._5_c01246{width:12.300000px;}
._14_c01246{width:14.040000px;}
._18_c01246{width:15.144000px;}
._2_c01246{width:19.620000px;}
._3_c01246{width:21.420000px;}
._1_c01246{width:24.000000px;}
._17_c01246{width:26.055000px;}
._1a_c01246{width:32.472000px;}
._1e_c01246{width:315.948000px;}
._7_c01246{width:447.720000px;}
._1d_c01246{width:690.924000px;}
.fc2_c01246{color:transparent;}
.fc1_c01246{color:rgb(128,128,128);}
.fc0_c01246{color:rgb(0,0,0);}
.fs5_c01246{font-size:48.000000px;}
.fs3_c01246{font-size:57.000000px;}
.fs0_c01246{font-size:60.000000px;}
.fs4_c01246{font-size:63.000000px;}
.fs1_c01246{font-size:72.000000px;}
.fs2_c01246{font-size:78.000000px;}
.y0_c01246{bottom:0.000000px;}
.y1f_c01246{bottom:3.105000px;}
.y1e_c01246{bottom:7.228357px;}
.y1d_c01246{bottom:39.480000px;}
.y1c_c01246{bottom:65.880000px;}
.y1b_c01246{bottom:92.430000px;}
.y1a_c01246{bottom:116.880000px;}
.y19_c01246{bottom:139.830000px;}
.y18_c01246{bottom:168.030000px;}
.y17_c01246{bottom:192.780000px;}
.y16_c01246{bottom:217.380000px;}
.y15_c01246{bottom:242.430000px;}
.y14_c01246{bottom:267.630000px;}
.y13_c01246{bottom:292.680000px;}
.y12_c01246{bottom:316.230000px;}
.y11_c01246{bottom:341.280000px;}
.y10_c01246{bottom:365.880000px;}
.yf_c01246{bottom:390.180000px;}
.ye_c01246{bottom:415.080000px;}
.yd_c01246{bottom:438.780000px;}
.yc_c01246{bottom:463.080000px;}
.yb_c01246{bottom:487.380000px;}
.ya_c01246{bottom:512.280000px;}
.y9_c01246{bottom:535.680000px;}
.y8_c01246{bottom:560.280000px;}
.y7_c01246{bottom:585.180000px;}
.y6_c01246{bottom:610.230000px;}
.y5_c01246{bottom:634.530000px;}
.y4_c01246{bottom:659.880000px;}
.y3_c01246{bottom:683.730000px;}
.y2_c01246{bottom:709.080000px;}
.y1_c01246{bottom:734.430000px;}
.h4_c01246{height:13.200074px;}
.h5_c01246{height:43.804688px;}
.h2_c01246{height:65.040000px;}
.h3_c01246{height:91.160156px;}
.h0_c01246{height:780.600000px;}
.h1_c01246{height:780.750000px;}
.w1_c01246{width:104.875500px;}
.w0_c01246{width:523.500000px;}
.x0_c01246{left:0.000000px;}
.x6_c01246{left:26.700000px;}
.x5_c01246{left:28.650000px;}
.x2_c01246{left:29.700000px;}
.x3_c01246{left:30.750000px;}
.x4_c01246{left:32.700000px;}
.x7_c01246{left:76.200000px;}
.x1_c01246{left:171.600000px;}
.x8_c01246{left:213.564240px;}
@media print{
.v0_c01246{vertical-align:0.000000pt;}
.ls3_c01246{letter-spacing:-5.333333pt;}
.ls0_c01246{letter-spacing:-2.666667pt;}
.ls2_c01246{letter-spacing:0.000000pt;}
.ls1_c01246{letter-spacing:2.666667pt;}
.ws0_c01246{word-spacing:-29.504000pt;}
.ws2_c01246{word-spacing:-21.378667pt;}
.ws1_c01246{word-spacing:-18.090667pt;}
.ws3_c01246{word-spacing:0.000000pt;}
._15_c01246{margin-left:-30.976000pt;}
._10_c01246{margin-left:-26.965333pt;}
._19_c01246{margin-left:-19.584000pt;}
._1b_c01246{margin-left:-12.224000pt;}
._12_c01246{margin-left:-11.008000pt;}
._e_c01246{margin-left:-9.728000pt;}
._1c_c01246{margin-left:-8.192000pt;}
._11_c01246{margin-left:-6.933333pt;}
._16_c01246{margin-left:-5.717333pt;}
._d_c01246{margin-left:-4.330667pt;}
._f_c01246{margin-left:-2.560000pt;}
._9_c01246{margin-left:-1.088000pt;}
._8_c01246{width:1.536000pt;}
._a_c01246{width:2.944000pt;}
._c_c01246{width:4.032000pt;}
._13_c01246{width:5.098667pt;}
._4_c01246{width:6.186667pt;}
._b_c01246{width:7.104000pt;}
._0_c01246{width:8.320000pt;}
._6_c01246{width:9.600000pt;}
._5_c01246{width:10.933333pt;}
._14_c01246{width:12.480000pt;}
._18_c01246{width:13.461333pt;}
._2_c01246{width:17.440000pt;}
._3_c01246{width:19.040000pt;}
._1_c01246{width:21.333333pt;}
._17_c01246{width:23.160000pt;}
._1a_c01246{width:28.864000pt;}
._1e_c01246{width:280.842667pt;}
._7_c01246{width:397.973333pt;}
._1d_c01246{width:614.154667pt;}
.fs5_c01246{font-size:42.666667pt;}
.fs3_c01246{font-size:50.666667pt;}
.fs0_c01246{font-size:53.333333pt;}
.fs4_c01246{font-size:56.000000pt;}
.fs1_c01246{font-size:64.000000pt;}
.fs2_c01246{font-size:69.333333pt;}
.y0_c01246{bottom:0.000000pt;}
.y1f_c01246{bottom:2.760000pt;}
.y1e_c01246{bottom:6.425206pt;}
.y1d_c01246{bottom:35.093333pt;}
.y1c_c01246{bottom:58.560000pt;}
.y1b_c01246{bottom:82.160000pt;}
.y1a_c01246{bottom:103.893333pt;}
.y19_c01246{bottom:124.293333pt;}
.y18_c01246{bottom:149.360000pt;}
.y17_c01246{bottom:171.360000pt;}
.y16_c01246{bottom:193.226667pt;}
.y15_c01246{bottom:215.493333pt;}
.y14_c01246{bottom:237.893333pt;}
.y13_c01246{bottom:260.160000pt;}
.y12_c01246{bottom:281.093333pt;}
.y11_c01246{bottom:303.360000pt;}
.y10_c01246{bottom:325.226667pt;}
.yf_c01246{bottom:346.826667pt;}
.ye_c01246{bottom:368.960000pt;}
.yd_c01246{bottom:390.026667pt;}
.yc_c01246{bottom:411.626667pt;}
.yb_c01246{bottom:433.226667pt;}
.ya_c01246{bottom:455.360000pt;}
.y9_c01246{bottom:476.160000pt;}
.y8_c01246{bottom:498.026667pt;}
.y7_c01246{bottom:520.160000pt;}
.y6_c01246{bottom:542.426667pt;}
.y5_c01246{bottom:564.026667pt;}
.y4_c01246{bottom:586.560000pt;}
.y3_c01246{bottom:607.760000pt;}
.y2_c01246{bottom:630.293333pt;}
.y1_c01246{bottom:652.826667pt;}
.h4_c01246{height:11.733399pt;}
.h5_c01246{height:38.937500pt;}
.h2_c01246{height:57.813333pt;}
.h3_c01246{height:81.031250pt;}
.h0_c01246{height:693.866667pt;}
.h1_c01246{height:694.000000pt;}
.w1_c01246{width:93.222667pt;}
.w0_c01246{width:465.333333pt;}
.x0_c01246{left:0.000000pt;}
.x6_c01246{left:23.733333pt;}
.x5_c01246{left:25.466667pt;}
.x2_c01246{left:26.400000pt;}
.x3_c01246{left:27.333333pt;}
.x4_c01246{left:29.066667pt;}
.x7_c01246{left:67.733333pt;}
.x1_c01246{left:152.533333pt;}
.x8_c01246{left:189.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_89a75061860517cee59c36f1.woff2')format("woff");}.ff1_c01247{font-family:ff1_c01247;line-height:1.480469;font-style:normal;font-weight:normal;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_0c220526f92c27bbdc65aeee.woff2')format("woff");}.ff2_c01247{font-family:ff2_c01247;line-height:1.568848;font-style:normal;font-weight:normal;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_86de5710fa58f19724ba7507.woff2')format("woff");}.ff3_c01247{font-family:ff3_c01247;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01247{font-family:ff4_c01247;line-height:1.219238;font-style: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);}
.v1_c01247{vertical-align:-79.800000px;}
.v0_c01247{vertical-align:0.000000px;}
.ls5_c01247{letter-spacing:-6.000000px;}
.ls2_c01247{letter-spacing:-3.000000px;}
.ls3_c01247{letter-spacing:0.000000px;}
.ls1_c01247{letter-spacing:2.280000px;}
.ls4_c01247{letter-spacing:3.000000px;}
.ls0_c01247{letter-spacing:7.344000px;}
.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;}
}
.ws1_c01247{word-spacing:-24.051000px;}
.ws2_c01247{word-spacing:-20.352000px;}
.ws0_c01247{word-spacing:-17.352000px;}
.ws3_c01247{word-spacing:0.000000px;}
._13_c01247{margin-left:-21.531000px;}
._16_c01247{margin-left:-15.795000px;}
._15_c01247{margin-left:-14.565000px;}
._14_c01247{margin-left:-13.482000px;}
._12_c01247{margin-left:-11.853000px;}
._b_c01247{margin-left:-10.446000px;}
._c_c01247{margin-left:-8.619000px;}
._9_c01247{margin-left:-7.344000px;}
._a_c01247{margin-left:-5.856000px;}
._d_c01247{margin-left:-4.782000px;}
._0_c01247{margin-left:-3.480000px;}
._1_c01247{margin-left:-1.479000px;}
._7_c01247{width:1.635000px;}
._3_c01247{width:2.664000px;}
._6_c01247{width:3.672000px;}
._5_c01247{width:4.680000px;}
._e_c01247{width:5.691000px;}
._4_c01247{width:6.696000px;}
._8_c01247{width:7.992000px;}
._10_c01247{width:9.144000px;}
._11_c01247{width:10.290000px;}
._f_c01247{width:11.376000px;}
._2_c01247{width:15.336000px;}
._17_c01247{width:92.424000px;}
._19_c01247{width:162.210000px;}
._18_c01247{width:277.050000px;}
.fc2_c01247{color:transparent;}
.fc1_c01247{color:rgb(128,128,128);}
.fc0_c01247{color:rgb(0,0,0);}
.fs3_c01247{font-size:48.000000px;}
.fs2_c01247{font-size:63.000000px;}
.fs1_c01247{font-size:72.000000px;}
.fs0_c01247{font-size:87.000000px;}
.y0_c01247{bottom:0.000000px;}
.y1e_c01247{bottom:3.105000px;}
.y1d_c01247{bottom:7.228371px;}
.y1c_c01247{bottom:84.765000px;}
.y1b_c01247{bottom:111.765000px;}
.y1a_c01247{bottom:138.165000px;}
.y19_c01247{bottom:161.115000px;}
.y18_c01247{bottom:186.765000px;}
.y17_c01247{bottom:211.965000px;}
.y16_c01247{bottom:237.315000px;}
.y15_c01247{bottom:262.665000px;}
.y14_c01247{bottom:287.865000px;}
.y13_c01247{bottom:312.315000px;}
.y12_c01247{bottom:337.815000px;}
.y11_c01247{bottom:362.115000px;}
.y10_c01247{bottom:385.215000px;}
.yf_c01247{bottom:410.115000px;}
.ye_c01247{bottom:433.815000px;}
.yd_c01247{bottom:457.065000px;}
.yc_c01247{bottom:481.065000px;}
.yb_c01247{bottom:506.565000px;}
.ya_c01247{bottom:530.865000px;}
.y9_c01247{bottom:555.915000px;}
.y8_c01247{bottom:580.515000px;}
.y7_c01247{bottom:605.115000px;}
.y6_c01247{bottom:630.465000px;}
.y5_c01247{bottom:655.215000px;}
.y4_c01247{bottom:680.415000px;}
.y3_c01247{bottom:704.715000px;}
.y2_c01247{bottom:729.015000px;}
.y1_c01247{bottom:754.965000px;}
.h4_c01247{height:13.200074px;}
.h5_c01247{height:43.804688px;}
.h3_c01247{height:91.160156px;}
.h2_c01247{height:110.151855px;}
.h1_c01247{height:802.500000px;}
.h0_c01247{height:802.725000px;}
.w2_c01247{width:104.875500px;}
.w0_c01247{width:521.100000px;}
.w1_c01247{width:521.250000px;}
.x0_c01247{left:0.000000px;}
.x4_c01247{left:101.250000px;}
.x2_c01247{left:103.050000px;}
.x3_c01247{left:104.250000px;}
.x6_c01247{left:146.400000px;}
.x5_c01247{left:163.650000px;}
.x1_c01247{left:213.000000px;}
@media print{
.v1_c01247{vertical-align:-70.933333pt;}
.v0_c01247{vertical-align:0.000000pt;}
.ls5_c01247{letter-spacing:-5.333333pt;}
.ls2_c01247{letter-spacing:-2.666667pt;}
.ls3_c01247{letter-spacing:0.000000pt;}
.ls1_c01247{letter-spacing:2.026667pt;}
.ls4_c01247{letter-spacing:2.666667pt;}
.ls0_c01247{letter-spacing:6.528000pt;}
.ws1_c01247{word-spacing:-21.378667pt;}
.ws2_c01247{word-spacing:-18.090667pt;}
.ws0_c01247{word-spacing:-15.424000pt;}
.ws3_c01247{word-spacing:0.000000pt;}
._13_c01247{margin-left:-19.138667pt;}
._16_c01247{margin-left:-14.040000pt;}
._15_c01247{margin-left:-12.946667pt;}
._14_c01247{margin-left:-11.984000pt;}
._12_c01247{margin-left:-10.536000pt;}
._b_c01247{margin-left:-9.285333pt;}
._c_c01247{margin-left:-7.661333pt;}
._9_c01247{margin-left:-6.528000pt;}
._a_c01247{margin-left:-5.205333pt;}
._d_c01247{margin-left:-4.250667pt;}
._0_c01247{margin-left:-3.093333pt;}
._1_c01247{margin-left:-1.314667pt;}
._7_c01247{width:1.453333pt;}
._3_c01247{width:2.368000pt;}
._6_c01247{width:3.264000pt;}
._5_c01247{width:4.160000pt;}
._e_c01247{width:5.058667pt;}
._4_c01247{width:5.952000pt;}
._8_c01247{width:7.104000pt;}
._10_c01247{width:8.128000pt;}
._11_c01247{width:9.146667pt;}
._f_c01247{width:10.112000pt;}
._2_c01247{width:13.632000pt;}
._17_c01247{width:82.154667pt;}
._19_c01247{width:144.186667pt;}
._18_c01247{width:246.266667pt;}
.fs3_c01247{font-size:42.666667pt;}
.fs2_c01247{font-size:56.000000pt;}
.fs1_c01247{font-size:64.000000pt;}
.fs0_c01247{font-size:77.333333pt;}
.y0_c01247{bottom:0.000000pt;}
.y1e_c01247{bottom:2.760000pt;}
.y1d_c01247{bottom:6.425219pt;}
.y1c_c01247{bottom:75.346667pt;}
.y1b_c01247{bottom:99.346667pt;}
.y1a_c01247{bottom:122.813333pt;}
.y19_c01247{bottom:143.213333pt;}
.y18_c01247{bottom:166.013333pt;}
.y17_c01247{bottom:188.413333pt;}
.y16_c01247{bottom:210.946667pt;}
.y15_c01247{bottom:233.480000pt;}
.y14_c01247{bottom:255.880000pt;}
.y13_c01247{bottom:277.613333pt;}
.y12_c01247{bottom:300.280000pt;}
.y11_c01247{bottom:321.880000pt;}
.y10_c01247{bottom:342.413333pt;}
.yf_c01247{bottom:364.546667pt;}
.ye_c01247{bottom:385.613333pt;}
.yd_c01247{bottom:406.280000pt;}
.yc_c01247{bottom:427.613333pt;}
.yb_c01247{bottom:450.280000pt;}
.ya_c01247{bottom:471.880000pt;}
.y9_c01247{bottom:494.146667pt;}
.y8_c01247{bottom:516.013333pt;}
.y7_c01247{bottom:537.880000pt;}
.y6_c01247{bottom:560.413333pt;}
.y5_c01247{bottom:582.413333pt;}
.y4_c01247{bottom:604.813333pt;}
.y3_c01247{bottom:626.413333pt;}
.y2_c01247{bottom:648.013333pt;}
.y1_c01247{bottom:671.080000pt;}
.h4_c01247{height:11.733399pt;}
.h5_c01247{height:38.937500pt;}
.h3_c01247{height:81.031250pt;}
.h2_c01247{height:97.912760pt;}
.h1_c01247{height:713.333333pt;}
.h0_c01247{height:713.533333pt;}
.w2_c01247{width:93.222667pt;}
.w0_c01247{width:463.200000pt;}
.w1_c01247{width:463.333333pt;}
.x0_c01247{left:0.000000pt;}
.x4_c01247{left:90.000000pt;}
.x2_c01247{left:91.600000pt;}
.x3_c01247{left:92.666667pt;}
.x6_c01247{left:130.133333pt;}
.x5_c01247{left:145.466667pt;}
.x1_c01247{left:189.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_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_99585b7b06a0a7df16f4d17c.woff2')format("woff");}.ff1_c01248{font-family:ff1_c01248;line-height:1.480469;font-style:normal;font-weight:normal;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_c391c9473e2c00ee0e2236fa.woff2')format("woff");}.ff2_c01248{font-family:ff2_c01248;line-height:1.568848;font-style:normal;font-weight:normal;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_9c4d5aba064e94b49ece8286.woff2')format("woff");}.ff3_c01248{font-family:ff3_c01248;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01248;src:url('chunks/assets/font_0d696e7fe308daf3591c9df1.woff2')format("woff");}.ff4_c01248{font-family:ff4_c01248;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01248;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01248{font-family:ff5_c01248;line-height:1.219238;font-style: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);}
.v0_c01248{vertical-align:0.000000px;}
.ls3_c01248{letter-spacing:-6.000000px;}
.ls0_c01248{letter-spacing:0.000000px;}
.ls1_c01248{letter-spacing:3.000000px;}
.ls2_c01248{letter-spacing:12.000000px;}
.sc__c01248{text-shadow:none;}
.sc0_c01248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01248{-webkit-text-stroke:0px transparent;}
.sc0_c01248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01248{word-spacing:-24.051000px;}
.ws1_c01248{word-spacing:-20.352000px;}
.ws0_c01248{word-spacing:-17.352000px;}
.ws3_c01248{word-spacing:0.000000px;}
._17_c01248{margin-left:-33.096000px;}
._11_c01248{margin-left:-22.020000px;}
._10_c01248{margin-left:-19.530000px;}
._d_c01248{margin-left:-12.024000px;}
._f_c01248{margin-left:-9.792000px;}
._15_c01248{margin-left:-8.568000px;}
._e_c01248{margin-left:-6.984000px;}
._13_c01248{margin-left:-5.544000px;}
._9_c01248{margin-left:-4.248000px;}
._12_c01248{margin-left:-2.952000px;}
._c_c01248{margin-left:-1.728000px;}
._a_c01248{width:1.296000px;}
._b_c01248{width:2.304000px;}
._2_c01248{width:4.032000px;}
._5_c01248{width:5.688000px;}
._1_c01248{width:6.840000px;}
._3_c01248{width:8.568000px;}
._4_c01248{width:10.080000px;}
._0_c01248{width:11.160000px;}
._14_c01248{width:13.032000px;}
._16_c01248{width:18.072000px;}
._7_c01248{width:20.160000px;}
._8_c01248{width:23.760000px;}
._18_c01248{width:40.935000px;}
._6_c01248{width:278.280000px;}
._19_c01248{width:323.265000px;}
.fc2_c01248{color:transparent;}
.fc1_c01248{color:rgb(128,128,128);}
.fc0_c01248{color:rgb(0,0,0);}
.fs4_c01248{font-size:48.000000px;}
.fs2_c01248{font-size:63.000000px;}
.fs3_c01248{font-size:69.000000px;}
.fs0_c01248{font-size:72.000000px;}
.fs1_c01248{font-size:93.000000px;}
.y0_c01248{bottom:0.000000px;}
.y1f_c01248{bottom:3.105000px;}
.y1e_c01248{bottom:7.228369px;}
.y1d_c01248{bottom:42.870000px;}
.y1c_c01248{bottom:71.520000px;}
.y1b_c01248{bottom:96.570000px;}
.y1a_c01248{bottom:121.470000px;}
.y19_c01248{bottom:147.420000px;}
.y18_c01248{bottom:172.020000px;}
.y17_c01248{bottom:198.120000px;}
.y16_c01248{bottom:222.720000px;}
.y15_c01248{bottom:247.620000px;}
.y14_c01248{bottom:271.920000px;}
.y13_c01248{bottom:297.720000px;}
.y12_c01248{bottom:322.320000px;}
.y11_c01248{bottom:347.220000px;}
.y10_c01248{bottom:370.920000px;}
.yf_c01248{bottom:396.270000px;}
.ye_c01248{bottom:419.820000px;}
.yd_c01248{bottom:443.820000px;}
.yc_c01248{bottom:469.020000px;}
.yb_c01248{bottom:493.020000px;}
.ya_c01248{bottom:517.770000px;}
.y9_c01248{bottom:541.620000px;}
.y8_c01248{bottom:566.220000px;}
.y7_c01248{bottom:590.670000px;}
.y6_c01248{bottom:615.270000px;}
.y5_c01248{bottom:640.470000px;}
.y4_c01248{bottom:664.920000px;}
.y3_c01248{bottom:689.820000px;}
.y2_c01248{bottom:714.720000px;}
.y1_c01248{bottom:740.370000px;}
.h4_c01248{height:13.200073px;}
.h5_c01248{height:43.804688px;}
.h3_c01248{height:87.361816px;}
.h1_c01248{height:91.160156px;}
.h2_c01248{height:93.726562px;}
.h0_c01248{height:800.250000px;}
.w2_c01248{width:104.875500px;}
.w1_c01248{width:514.500000px;}
.w0_c01248{width:514.650000px;}
.x0_c01248{left:0.000000px;}
.xb_c01248{left:18.150000px;}
.xc_c01248{left:20.550000px;}
.xa_c01248{left:22.200000px;}
.x9_c01248{left:25.200000px;}
.x8_c01248{left:27.300000px;}
.x7_c01248{left:28.350000px;}
.x6_c01248{left:29.400000px;}
.x3_c01248{left:31.050000px;}
.x2_c01248{left:32.100000px;}
.x5_c01248{left:33.300000px;}
.x4_c01248{left:57.300000px;}
.x1_c01248{left:150.600000px;}
.xe_c01248{left:209.139267px;}
.xd_c01248{left:238.200000px;}
@media print{
.v0_c01248{vertical-align:0.000000pt;}
.ls3_c01248{letter-spacing:-5.333333pt;}
.ls0_c01248{letter-spacing:0.000000pt;}
.ls1_c01248{letter-spacing:2.666667pt;}
.ls2_c01248{letter-spacing:10.666667pt;}
.ws2_c01248{word-spacing:-21.378667pt;}
.ws1_c01248{word-spacing:-18.090667pt;}
.ws0_c01248{word-spacing:-15.424000pt;}
.ws3_c01248{word-spacing:0.000000pt;}
._17_c01248{margin-left:-29.418667pt;}
._11_c01248{margin-left:-19.573333pt;}
._10_c01248{margin-left:-17.360000pt;}
._d_c01248{margin-left:-10.688000pt;}
._f_c01248{margin-left:-8.704000pt;}
._15_c01248{margin-left:-7.616000pt;}
._e_c01248{margin-left:-6.208000pt;}
._13_c01248{margin-left:-4.928000pt;}
._9_c01248{margin-left:-3.776000pt;}
._12_c01248{margin-left:-2.624000pt;}
._c_c01248{margin-left:-1.536000pt;}
._a_c01248{width:1.152000pt;}
._b_c01248{width:2.048000pt;}
._2_c01248{width:3.584000pt;}
._5_c01248{width:5.056000pt;}
._1_c01248{width:6.080000pt;}
._3_c01248{width:7.616000pt;}
._4_c01248{width:8.960000pt;}
._0_c01248{width:9.920000pt;}
._14_c01248{width:11.584000pt;}
._16_c01248{width:16.064000pt;}
._7_c01248{width:17.920000pt;}
._8_c01248{width:21.120000pt;}
._18_c01248{width:36.386667pt;}
._6_c01248{width:247.360000pt;}
._19_c01248{width:287.346667pt;}
.fs4_c01248{font-size:42.666667pt;}
.fs2_c01248{font-size:56.000000pt;}
.fs3_c01248{font-size:61.333333pt;}
.fs0_c01248{font-size:64.000000pt;}
.fs1_c01248{font-size:82.666667pt;}
.y0_c01248{bottom:0.000000pt;}
.y1f_c01248{bottom:2.760000pt;}
.y1e_c01248{bottom:6.425217pt;}
.y1d_c01248{bottom:38.106667pt;}
.y1c_c01248{bottom:63.573333pt;}
.y1b_c01248{bottom:85.840000pt;}
.y1a_c01248{bottom:107.973333pt;}
.y19_c01248{bottom:131.040000pt;}
.y18_c01248{bottom:152.906667pt;}
.y17_c01248{bottom:176.106667pt;}
.y16_c01248{bottom:197.973333pt;}
.y15_c01248{bottom:220.106667pt;}
.y14_c01248{bottom:241.706667pt;}
.y13_c01248{bottom:264.640000pt;}
.y12_c01248{bottom:286.506667pt;}
.y11_c01248{bottom:308.640000pt;}
.y10_c01248{bottom:329.706667pt;}
.yf_c01248{bottom:352.240000pt;}
.ye_c01248{bottom:373.173333pt;}
.yd_c01248{bottom:394.506667pt;}
.yc_c01248{bottom:416.906667pt;}
.yb_c01248{bottom:438.240000pt;}
.ya_c01248{bottom:460.240000pt;}
.y9_c01248{bottom:481.440000pt;}
.y8_c01248{bottom:503.306667pt;}
.y7_c01248{bottom:525.040000pt;}
.y6_c01248{bottom:546.906667pt;}
.y5_c01248{bottom:569.306667pt;}
.y4_c01248{bottom:591.040000pt;}
.y3_c01248{bottom:613.173333pt;}
.y2_c01248{bottom:635.306667pt;}
.y1_c01248{bottom:658.106667pt;}
.h4_c01248{height:11.733399pt;}
.h5_c01248{height:38.937500pt;}
.h3_c01248{height:77.654948pt;}
.h1_c01248{height:81.031250pt;}
.h2_c01248{height:83.312500pt;}
.h0_c01248{height:711.333333pt;}
.w2_c01248{width:93.222667pt;}
.w1_c01248{width:457.333333pt;}
.w0_c01248{width:457.466667pt;}
.x0_c01248{left:0.000000pt;}
.xb_c01248{left:16.133333pt;}
.xc_c01248{left:18.266667pt;}
.xa_c01248{left:19.733333pt;}
.x9_c01248{left:22.400000pt;}
.x8_c01248{left:24.266667pt;}
.x7_c01248{left:25.200000pt;}
.x6_c01248{left:26.133333pt;}
.x3_c01248{left:27.600000pt;}
.x2_c01248{left:28.533333pt;}
.x5_c01248{left:29.600000pt;}
.x4_c01248{left:50.933333pt;}
.x1_c01248{left:133.866667pt;}
.xe_c01248{left:185.901571pt;}
.xd_c01248{left:211.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a64a1da30dc4e2625066d79d.woff2')format("woff");}.ff1_c01249{font-family:ff1_c01249;line-height:1.568848;font-style:normal;font-weight:normal;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_096f3dfb09743efe28d1109c.woff2')format("woff");}.ff2_c01249{font-family:ff2_c01249;line-height:1.480469;font-style:normal;font-weight:normal;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_b421c754a71e90331185ee9a.woff2')format("woff");}.ff3_c01249{font-family:ff3_c01249;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01249{font-family:ff4_c01249;line-height:1.219238;font-style: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;}
.ls1_c01249{letter-spacing:0.000000px;}
.ls0_c01249{letter-spacing:3.000000px;}
.ls2_c01249{letter-spacing:6.000000px;}
.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:-33.192000px;}
.ws1_c01249{word-spacing:0.000000px;}
._10_c01249{margin-left:-26.856000px;}
._16_c01249{margin-left:-19.800000px;}
._15_c01249{margin-left:-16.929000px;}
._14_c01249{margin-left:-13.941000px;}
._13_c01249{margin-left:-12.186000px;}
._17_c01249{margin-left:-11.097000px;}
._b_c01249{margin-left:-10.080000px;}
._f_c01249{margin-left:-8.496000px;}
._4_c01249{margin-left:-6.336000px;}
._c_c01249{margin-left:-4.896000px;}
._3_c01249{margin-left:-3.888000px;}
._2_c01249{margin-left:-2.808000px;}
._8_c01249{margin-left:-1.224000px;}
._9_c01249{width:1.008000px;}
._5_c01249{width:2.016000px;}
._1_c01249{width:3.168000px;}
._0_c01249{width:5.112000px;}
._e_c01249{width:6.384000px;}
._d_c01249{width:7.632000px;}
._7_c01249{width:9.648000px;}
._6_c01249{width:10.656000px;}
._a_c01249{width:12.552000px;}
._12_c01249{width:14.304000px;}
._11_c01249{width:18.750000px;}
.fc2_c01249{color:transparent;}
.fc1_c01249{color:rgb(128,128,128);}
.fc0_c01249{color:rgb(0,0,0);}
.fs3_c01249{font-size:48.000000px;}
.fs1_c01249{font-size:66.000000px;}
.fs0_c01249{font-size:72.000000px;}
.fs2_c01249{font-size:81.000000px;}
.y0_c01249{bottom:0.000000px;}
.y1d_c01249{bottom:3.105000px;}
.y1c_c01249{bottom:7.228369px;}
.y1b_c01249{bottom:79.620000px;}
.y1a_c01249{bottom:107.220000px;}
.y19_c01249{bottom:130.170000px;}
.y18_c01249{bottom:154.620000px;}
.y17_c01249{bottom:180.870000px;}
.y16_c01249{bottom:206.220000px;}
.y15_c01249{bottom:230.520000px;}
.y14_c01249{bottom:255.870000px;}
.y13_c01249{bottom:281.820000px;}
.y12_c01249{bottom:306.720000px;}
.y11_c01249{bottom:331.320000px;}
.y10_c01249{bottom:358.770000px;}
.yf_c01249{bottom:380.970000px;}
.ye_c01249{bottom:405.270000px;}
.yd_c01249{bottom:430.920000px;}
.yc_c01249{bottom:452.820000px;}
.yb_c01249{bottom:477.120000px;}
.ya_c01249{bottom:502.170000px;}
.y9_c01249{bottom:527.220000px;}
.y8_c01249{bottom:551.820000px;}
.y7_c01249{bottom:576.720000px;}
.y6_c01249{bottom:602.070000px;}
.y5_c01249{bottom:626.970000px;}
.y4_c01249{bottom:652.320000px;}
.y3_c01249{bottom:677.070000px;}
.y2_c01249{bottom:701.670000px;}
.y1_c01249{bottom:725.520000px;}
.h5_c01249{height:13.200073px;}
.h6_c01249{height:43.804688px;}
.h3_c01249{height:83.563477px;}
.h2_c01249{height:91.160156px;}
.h4_c01249{height:102.555176px;}
.h0_c01249{height:808.350000px;}
.h1_c01249{height:808.500000px;}
.w1_c01249{width:104.875500px;}
.w0_c01249{width:536.250000px;}
.x0_c01249{left:0.000000px;}
.x1_c01249{left:115.200000px;}
.x2_c01249{left:116.550000px;}
.x3_c01249{left:118.200000px;}
.x4_c01249{left:119.400000px;}
.x5_c01249{left:120.450000px;}
.x6_c01249{left:219.939240px;}
@media print{
.v0_c01249{vertical-align:0.000000pt;}
.ls1_c01249{letter-spacing:0.000000pt;}
.ls0_c01249{letter-spacing:2.666667pt;}
.ls2_c01249{letter-spacing:5.333333pt;}
.ws0_c01249{word-spacing:-29.504000pt;}
.ws1_c01249{word-spacing:0.000000pt;}
._10_c01249{margin-left:-23.872000pt;}
._16_c01249{margin-left:-17.600000pt;}
._15_c01249{margin-left:-15.048000pt;}
._14_c01249{margin-left:-12.392000pt;}
._13_c01249{margin-left:-10.832000pt;}
._17_c01249{margin-left:-9.864000pt;}
._b_c01249{margin-left:-8.960000pt;}
._f_c01249{margin-left:-7.552000pt;}
._4_c01249{margin-left:-5.632000pt;}
._c_c01249{margin-left:-4.352000pt;}
._3_c01249{margin-left:-3.456000pt;}
._2_c01249{margin-left:-2.496000pt;}
._8_c01249{margin-left:-1.088000pt;}
._9_c01249{width:0.896000pt;}
._5_c01249{width:1.792000pt;}
._1_c01249{width:2.816000pt;}
._0_c01249{width:4.544000pt;}
._e_c01249{width:5.674667pt;}
._d_c01249{width:6.784000pt;}
._7_c01249{width:8.576000pt;}
._6_c01249{width:9.472000pt;}
._a_c01249{width:11.157333pt;}
._12_c01249{width:12.714667pt;}
._11_c01249{width:16.666667pt;}
.fs3_c01249{font-size:42.666667pt;}
.fs1_c01249{font-size:58.666667pt;}
.fs0_c01249{font-size:64.000000pt;}
.fs2_c01249{font-size:72.000000pt;}
.y0_c01249{bottom:0.000000pt;}
.y1d_c01249{bottom:2.760000pt;}
.y1c_c01249{bottom:6.425217pt;}
.y1b_c01249{bottom:70.773333pt;}
.y1a_c01249{bottom:95.306667pt;}
.y19_c01249{bottom:115.706667pt;}
.y18_c01249{bottom:137.440000pt;}
.y17_c01249{bottom:160.773333pt;}
.y16_c01249{bottom:183.306667pt;}
.y15_c01249{bottom:204.906667pt;}
.y14_c01249{bottom:227.440000pt;}
.y13_c01249{bottom:250.506667pt;}
.y12_c01249{bottom:272.640000pt;}
.y11_c01249{bottom:294.506667pt;}
.y10_c01249{bottom:318.906667pt;}
.yf_c01249{bottom:338.640000pt;}
.ye_c01249{bottom:360.240000pt;}
.yd_c01249{bottom:383.040000pt;}
.yc_c01249{bottom:402.506667pt;}
.yb_c01249{bottom:424.106667pt;}
.ya_c01249{bottom:446.373333pt;}
.y9_c01249{bottom:468.640000pt;}
.y8_c01249{bottom:490.506667pt;}
.y7_c01249{bottom:512.640000pt;}
.y6_c01249{bottom:535.173333pt;}
.y5_c01249{bottom:557.306667pt;}
.y4_c01249{bottom:579.840000pt;}
.y3_c01249{bottom:601.840000pt;}
.y2_c01249{bottom:623.706667pt;}
.y1_c01249{bottom:644.906667pt;}
.h5_c01249{height:11.733399pt;}
.h6_c01249{height:38.937500pt;}
.h3_c01249{height:74.278646pt;}
.h2_c01249{height:81.031250pt;}
.h4_c01249{height:91.160156pt;}
.h0_c01249{height:718.533333pt;}
.h1_c01249{height:718.666667pt;}
.w1_c01249{width:93.222667pt;}
.w0_c01249{width:476.666667pt;}
.x0_c01249{left:0.000000pt;}
.x1_c01249{left:102.400000pt;}
.x2_c01249{left:103.600000pt;}
.x3_c01249{left:105.066667pt;}
.x4_c01249{left:106.133333pt;}
.x5_c01249{left:107.066667pt;}
.x6_c01249{left:195.501546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc9b74b9825a75abfed1f8ff.woff2')format("woff");}.ff1_c01250{font-family:ff1_c01250;line-height:1.480469;font-style:normal;font-weight:normal;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_b8772058435cbd8d5d98bf4f.woff2')format("woff");}.ff2_c01250{font-family:ff2_c01250;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01250{font-family:ff3_c01250;line-height:1.219238;font-style: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);}
.v0_c01250{vertical-align:0.000000px;}
.ls1_c01250{letter-spacing:0.000000px;}
.ls0_c01250{letter-spacing:3.000000px;}
.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;}
}
.ws1_c01250{word-spacing:-19.629000px;}
.ws0_c01250{word-spacing:-17.352000px;}
.ws2_c01250{word-spacing:0.000000px;}
._a_c01250{margin-left:-15.900000px;}
._19_c01250{margin-left:-9.660000px;}
._15_c01250{margin-left:-8.148000px;}
._14_c01250{margin-left:-6.972000px;}
._10_c01250{margin-left:-5.328000px;}
._f_c01250{margin-left:-3.540000px;}
._13_c01250{margin-left:-2.328000px;}
._3_c01250{margin-left:-1.200000px;}
._b_c01250{width:1.104000px;}
._e_c01250{width:2.784000px;}
._7_c01250{width:4.380000px;}
._5_c01250{width:5.460000px;}
._6_c01250{width:6.600000px;}
._4_c01250{width:8.220000px;}
._d_c01250{width:9.288000px;}
._2_c01250{width:10.380000px;}
._12_c01250{width:11.700000px;}
._16_c01250{width:13.668000px;}
._1_c01250{width:15.180000px;}
._11_c01250{width:16.560000px;}
._c_c01250{width:18.840000px;}
._9_c01250{width:20.880000px;}
._0_c01250{width:23.760000px;}
._18_c01250{width:27.648000px;}
._17_c01250{width:40.860000px;}
._1a_c01250{width:42.828000px;}
._8_c01250{width:277.920000px;}
._1b_c01250{width:323.628000px;}
.fc2_c01250{color:transparent;}
.fc1_c01250{color:rgb(128,128,128);}
.fc0_c01250{color:rgb(0,0,0);}
.fs3_c01250{font-size:48.000000px;}
.fs0_c01250{font-size:60.000000px;}
.fs2_c01250{font-size:69.000000px;}
.fs1_c01250{font-size:72.000000px;}
.y0_c01250{bottom:0.000000px;}
.y1f_c01250{bottom:3.105000px;}
.y1e_c01250{bottom:7.228371px;}
.y1d_c01250{bottom:55.815000px;}
.y1c_c01250{bottom:84.015000px;}
.y1b_c01250{bottom:106.365000px;}
.y1a_c01250{bottom:133.665000px;}
.y19_c01250{bottom:157.065000px;}
.y18_c01250{bottom:182.565000px;}
.y17_c01250{bottom:209.265000px;}
.y16_c01250{bottom:234.315000px;}
.y15_c01250{bottom:259.665000px;}
.y14_c01250{bottom:283.815000px;}
.y13_c01250{bottom:309.915000px;}
.y12_c01250{bottom:335.115000px;}
.y11_c01250{bottom:359.565000px;}
.y10_c01250{bottom:383.715000px;}
.yf_c01250{bottom:408.765000px;}
.ye_c01250{bottom:433.365000px;}
.yd_c01250{bottom:458.115000px;}
.yc_c01250{bottom:483.015000px;}
.yb_c01250{bottom:507.615000px;}
.ya_c01250{bottom:532.215000px;}
.y9_c01250{bottom:556.215000px;}
.y8_c01250{bottom:581.265000px;}
.y7_c01250{bottom:606.165000px;}
.y6_c01250{bottom:630.765000px;}
.y5_c01250{bottom:655.515000px;}
.y4_c01250{bottom:680.415000px;}
.y3_c01250{bottom:705.765000px;}
.y2_c01250{bottom:730.365000px;}
.y1_c01250{bottom:756.315000px;}
.h5_c01250{height:13.200074px;}
.h6_c01250{height:43.804688px;}
.h2_c01250{height:70.224609px;}
.h4_c01250{height:87.361816px;}
.h3_c01250{height:91.160156px;}
.h0_c01250{height:808.125000px;}
.h1_c01250{height:808.500000px;}
.w1_c01250{width:104.875500px;}
.w0_c01250{width:550.500000px;}
.x0_c01250{left:0.000000px;}
.x2_c01250{left:41.850000px;}
.x7_c01250{left:43.500000px;}
.x4_c01250{left:44.850000px;}
.x5_c01250{left:45.900000px;}
.x6_c01250{left:46.950000px;}
.x3_c01250{left:67.500000px;}
.x1_c01250{left:163.050000px;}
.x9_c01250{left:227.064240px;}
.x8_c01250{left:236.850000px;}
@media print{
.v0_c01250{vertical-align:0.000000pt;}
.ls1_c01250{letter-spacing:0.000000pt;}
.ls0_c01250{letter-spacing:2.666667pt;}
.ws1_c01250{word-spacing:-17.448000pt;}
.ws0_c01250{word-spacing:-15.424000pt;}
.ws2_c01250{word-spacing:0.000000pt;}
._a_c01250{margin-left:-14.133333pt;}
._19_c01250{margin-left:-8.586667pt;}
._15_c01250{margin-left:-7.242667pt;}
._14_c01250{margin-left:-6.197333pt;}
._10_c01250{margin-left:-4.736000pt;}
._f_c01250{margin-left:-3.146667pt;}
._13_c01250{margin-left:-2.069333pt;}
._3_c01250{margin-left:-1.066667pt;}
._b_c01250{width:0.981333pt;}
._e_c01250{width:2.474667pt;}
._7_c01250{width:3.893333pt;}
._5_c01250{width:4.853333pt;}
._6_c01250{width:5.866667pt;}
._4_c01250{width:7.306667pt;}
._d_c01250{width:8.256000pt;}
._2_c01250{width:9.226667pt;}
._12_c01250{width:10.400000pt;}
._16_c01250{width:12.149333pt;}
._1_c01250{width:13.493333pt;}
._11_c01250{width:14.720000pt;}
._c_c01250{width:16.746667pt;}
._9_c01250{width:18.560000pt;}
._0_c01250{width:21.120000pt;}
._18_c01250{width:24.576000pt;}
._17_c01250{width:36.320000pt;}
._1a_c01250{width:38.069333pt;}
._8_c01250{width:247.040000pt;}
._1b_c01250{width:287.669333pt;}
.fs3_c01250{font-size:42.666667pt;}
.fs0_c01250{font-size:53.333333pt;}
.fs2_c01250{font-size:61.333333pt;}
.fs1_c01250{font-size:64.000000pt;}
.y0_c01250{bottom:0.000000pt;}
.y1f_c01250{bottom:2.760000pt;}
.y1e_c01250{bottom:6.425219pt;}
.y1d_c01250{bottom:49.613333pt;}
.y1c_c01250{bottom:74.680000pt;}
.y1b_c01250{bottom:94.546667pt;}
.y1a_c01250{bottom:118.813333pt;}
.y19_c01250{bottom:139.613333pt;}
.y18_c01250{bottom:162.280000pt;}
.y17_c01250{bottom:186.013333pt;}
.y16_c01250{bottom:208.280000pt;}
.y15_c01250{bottom:230.813333pt;}
.y14_c01250{bottom:252.280000pt;}
.y13_c01250{bottom:275.480000pt;}
.y12_c01250{bottom:297.880000pt;}
.y11_c01250{bottom:319.613333pt;}
.y10_c01250{bottom:341.080000pt;}
.yf_c01250{bottom:363.346667pt;}
.ye_c01250{bottom:385.213333pt;}
.yd_c01250{bottom:407.213333pt;}
.yc_c01250{bottom:429.346667pt;}
.yb_c01250{bottom:451.213333pt;}
.ya_c01250{bottom:473.080000pt;}
.y9_c01250{bottom:494.413333pt;}
.y8_c01250{bottom:516.680000pt;}
.y7_c01250{bottom:538.813333pt;}
.y6_c01250{bottom:560.680000pt;}
.y5_c01250{bottom:582.680000pt;}
.y4_c01250{bottom:604.813333pt;}
.y3_c01250{bottom:627.346667pt;}
.y2_c01250{bottom:649.213333pt;}
.y1_c01250{bottom:672.280000pt;}
.h5_c01250{height:11.733399pt;}
.h6_c01250{height:38.937500pt;}
.h2_c01250{height:62.421875pt;}
.h4_c01250{height:77.654948pt;}
.h3_c01250{height:81.031250pt;}
.h0_c01250{height:718.333333pt;}
.h1_c01250{height:718.666667pt;}
.w1_c01250{width:93.222667pt;}
.w0_c01250{width:489.333333pt;}
.x0_c01250{left:0.000000pt;}
.x2_c01250{left:37.200000pt;}
.x7_c01250{left:38.666667pt;}
.x4_c01250{left:39.866667pt;}
.x5_c01250{left:40.800000pt;}
.x6_c01250{left:41.733333pt;}
.x3_c01250{left:60.000000pt;}
.x1_c01250{left:144.933333pt;}
.x9_c01250{left:201.834880pt;}
.x8_c01250{left:210.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fafa16896ff8a2eae5f7b587.woff2')format("woff");}.ff1_c01251{font-family:ff1_c01251;line-height:1.284180;font-style:normal;font-weight:normal;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_99dd3411015901f168063f34.woff2')format("woff");}.ff2_c01251{font-family:ff2_c01251;line-height:1.284668;font-style:normal;font-weight:normal;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_e1d5aa54cdae521daa564dee.woff2')format("woff");}.ff3_c01251{font-family:ff3_c01251;line-height:1.480469;font-style:normal;font-weight:normal;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_868d2fdbaca4a4d6a959fcf6.woff2')format("woff");}.ff4_c01251{font-family:ff4_c01251;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01251{font-family:ff5_c01251;line-height:1.219238;font-style: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;}
.ls0_c01251{letter-spacing:0.000000px;}
.ls1_c01251{letter-spacing:3.000000px;}
.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:-33.192000px;}
.ws1_c01251{word-spacing:-20.352000px;}
.ws3_c01251{word-spacing:0.000000px;}
.ws2_c01251{word-spacing:26.280000px;}
._17_c01251{margin-left:-16.848000px;}
._13_c01251{margin-left:-15.756000px;}
._2_c01251{margin-left:-10.500000px;}
._11_c01251{margin-left:-6.984000px;}
._12_c01251{margin-left:-5.940000px;}
._e_c01251{margin-left:-4.884000px;}
._7_c01251{margin-left:-3.744000px;}
._1_c01251{margin-left:-2.436000px;}
._0_c01251{margin-left:-1.428000px;}
._a_c01251{width:1.152000px;}
._9_c01251{width:2.160000px;}
._3_c01251{width:3.360000px;}
._f_c01251{width:4.380000px;}
._c_c01251{width:5.460000px;}
._4_c01251{width:6.468000px;}
._5_c01251{width:7.476000px;}
._15_c01251{width:8.820000px;}
._d_c01251{width:9.852000px;}
._6_c01251{width:11.508000px;}
._b_c01251{width:13.800000px;}
._14_c01251{width:15.852000px;}
._10_c01251{width:17.124000px;}
._18_c01251{width:22.548000px;}
._16_c01251{width:41.904000px;}
._8_c01251{width:105.084000px;}
.fc2_c01251{color:transparent;}
.fc1_c01251{color:rgb(128,128,128);}
.fc0_c01251{color:rgb(0,0,0);}
.fs3_c01251{font-size:48.000000px;}
.fs2_c01251{font-size:57.000000px;}
.fs1_c01251{font-size:72.000000px;}
.fs0_c01251{font-size:84.000000px;}
.y0_c01251{bottom:0.000000px;}
.y15_c01251{bottom:3.105000px;}
.y14_c01251{bottom:7.228355px;}
.y13_c01251{bottom:242.235000px;}
.y12_c01251{bottom:296.985000px;}
.y11_c01251{bottom:321.285000px;}
.y10_c01251{bottom:346.485000px;}
.yf_c01251{bottom:370.785000px;}
.ye_c01251{bottom:395.535000px;}
.yd_c01251{bottom:419.535000px;}
.yc_c01251{bottom:444.135000px;}
.yb_c01251{bottom:469.335000px;}
.ya_c01251{bottom:494.085000px;}
.y9_c01251{bottom:519.435000px;}
.y8_c01251{bottom:544.335000px;}
.y7_c01251{bottom:569.235000px;}
.y6_c01251{bottom:594.135000px;}
.y5_c01251{bottom:618.885000px;}
.y4_c01251{bottom:643.635000px;}
.y3_c01251{bottom:669.585000px;}
.y2_c01251{bottom:693.585000px;}
.y1_c01251{bottom:719.535000px;}
.h5_c01251{height:13.200074px;}
.h6_c01251{height:43.804688px;}
.h2_c01251{height:82.441406px;}
.h4_c01251{height:84.269531px;}
.h3_c01251{height:91.160156px;}
.h0_c01251{height:761.925000px;}
.h1_c01251{height:762.000000px;}
.w2_c01251{width:104.875500px;}
.w0_c01251{width:534.600000px;}
.w1_c01251{width:534.750000px;}
.x0_c01251{left:0.000000px;}
.x3_c01251{left:30.300000px;}
.x2_c01251{left:34.050000px;}
.x4_c01251{left:110.700000px;}
.x5_c01251{left:111.750000px;}
.x6_c01251{left:112.950000px;}
.x7_c01251{left:139.350000px;}
.x8_c01251{left:172.350000px;}
.x1_c01251{left:220.050000px;}
.x9_c01251{left:233.850000px;}
.xa_c01251{left:291.150000px;}
.xb_c01251{left:440.400000px;}
@media print{
.v0_c01251{vertical-align:0.000000pt;}
.ls0_c01251{letter-spacing:0.000000pt;}
.ls1_c01251{letter-spacing:2.666667pt;}
.ws0_c01251{word-spacing:-29.504000pt;}
.ws1_c01251{word-spacing:-18.090667pt;}
.ws3_c01251{word-spacing:0.000000pt;}
.ws2_c01251{word-spacing:23.360000pt;}
._17_c01251{margin-left:-14.976000pt;}
._13_c01251{margin-left:-14.005333pt;}
._2_c01251{margin-left:-9.333333pt;}
._11_c01251{margin-left:-6.208000pt;}
._12_c01251{margin-left:-5.280000pt;}
._e_c01251{margin-left:-4.341333pt;}
._7_c01251{margin-left:-3.328000pt;}
._1_c01251{margin-left:-2.165333pt;}
._0_c01251{margin-left:-1.269333pt;}
._a_c01251{width:1.024000pt;}
._9_c01251{width:1.920000pt;}
._3_c01251{width:2.986667pt;}
._f_c01251{width:3.893333pt;}
._c_c01251{width:4.853333pt;}
._4_c01251{width:5.749333pt;}
._5_c01251{width:6.645333pt;}
._15_c01251{width:7.840000pt;}
._d_c01251{width:8.757333pt;}
._6_c01251{width:10.229333pt;}
._b_c01251{width:12.266667pt;}
._14_c01251{width:14.090667pt;}
._10_c01251{width:15.221333pt;}
._18_c01251{width:20.042667pt;}
._16_c01251{width:37.248000pt;}
._8_c01251{width:93.408000pt;}
.fs3_c01251{font-size:42.666667pt;}
.fs2_c01251{font-size:50.666667pt;}
.fs1_c01251{font-size:64.000000pt;}
.fs0_c01251{font-size:74.666667pt;}
.y0_c01251{bottom:0.000000pt;}
.y15_c01251{bottom:2.760000pt;}
.y14_c01251{bottom:6.425204pt;}
.y13_c01251{bottom:215.320000pt;}
.y12_c01251{bottom:263.986667pt;}
.y11_c01251{bottom:285.586667pt;}
.y10_c01251{bottom:307.986667pt;}
.yf_c01251{bottom:329.586667pt;}
.ye_c01251{bottom:351.586667pt;}
.yd_c01251{bottom:372.920000pt;}
.yc_c01251{bottom:394.786667pt;}
.yb_c01251{bottom:417.186667pt;}
.ya_c01251{bottom:439.186667pt;}
.y9_c01251{bottom:461.720000pt;}
.y8_c01251{bottom:483.853333pt;}
.y7_c01251{bottom:505.986667pt;}
.y6_c01251{bottom:528.120000pt;}
.y5_c01251{bottom:550.120000pt;}
.y4_c01251{bottom:572.120000pt;}
.y3_c01251{bottom:595.186667pt;}
.y2_c01251{bottom:616.520000pt;}
.y1_c01251{bottom:639.586667pt;}
.h5_c01251{height:11.733399pt;}
.h6_c01251{height:38.937500pt;}
.h2_c01251{height:73.281250pt;}
.h4_c01251{height:74.906250pt;}
.h3_c01251{height:81.031250pt;}
.h0_c01251{height:677.266667pt;}
.h1_c01251{height:677.333333pt;}
.w2_c01251{width:93.222667pt;}
.w0_c01251{width:475.200000pt;}
.w1_c01251{width:475.333333pt;}
.x0_c01251{left:0.000000pt;}
.x3_c01251{left:26.933333pt;}
.x2_c01251{left:30.266667pt;}
.x4_c01251{left:98.400000pt;}
.x5_c01251{left:99.333333pt;}
.x6_c01251{left:100.400000pt;}
.x7_c01251{left:123.866667pt;}
.x8_c01251{left:153.200000pt;}
.x1_c01251{left:195.600000pt;}
.x9_c01251{left:207.866667pt;}
.xa_c01251{left:258.800000pt;}
.xb_c01251{left:391.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_27836a15397e8620a4b0b2c3.woff2')format("woff");}.ff1_c01252{font-family:ff1_c01252;line-height:1.480469;font-style:normal;font-weight:normal;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_c131b8849108851c956957c5.woff2')format("woff");}.ff2_c01252{font-family:ff2_c01252;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01252;src:url('chunks/assets/font_78f114ece12482304dc3f8c5.woff2')format("woff");}.ff3_c01252{font-family:ff3_c01252;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01252;src:url('chunks/assets/font_f58f84cc633bd9dbc314988d.woff2')format("woff");}.ff4_c01252{font-family:ff4_c01252;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01252;src:url('chunks/assets/font_8790e9bba4e7d323ca720408.woff2')format("woff");}.ff5_c01252{font-family:ff5_c01252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01252;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01252{font-family:ff6_c01252;line-height:1.219238;font-style: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;}
.ls5_c01252{letter-spacing:-9.000000px;}
.ls3_c01252{letter-spacing:0.000000px;}
.ls6_c01252{letter-spacing:3.000000px;}
.ls7_c01252{letter-spacing:6.000000px;}
.ls1_c01252{letter-spacing:10.848000px;}
.ls2_c01252{letter-spacing:13.963200px;}
.ls4_c01252{letter-spacing:15.000000px;}
.ls0_c01252{letter-spacing:43.363200px;}
.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:-28.080000px;}
.ws1_c01252{word-spacing:-21.000000px;}
.ws2_c01252{word-spacing:-8.352000px;}
.ws3_c01252{word-spacing:0.000000px;}
._1e_c01252{margin-left:-22.002000px;}
._1f_c01252{margin-left:-20.316000px;}
._18_c01252{margin-left:-16.296000px;}
._1a_c01252{margin-left:-14.112000px;}
._16_c01252{margin-left:-11.934000px;}
._17_c01252{margin-left:-9.600000px;}
._19_c01252{margin-left:-8.004000px;}
._1c_c01252{margin-left:-6.780000px;}
._c_c01252{margin-left:-5.712000px;}
._0_c01252{margin-left:-4.440000px;}
._1d_c01252{margin-left:-3.216000px;}
._d_c01252{margin-left:-2.100000px;}
._20_c01252{margin-left:-1.020000px;}
._11_c01252{width:1.020000px;}
._10_c01252{width:2.688000px;}
._f_c01252{width:4.116000px;}
._13_c01252{width:5.124000px;}
._e_c01252{width:6.132000px;}
._12_c01252{width:7.860000px;}
._3_c01252{width:9.144000px;}
._14_c01252{width:11.004000px;}
._9_c01252{width:13.416000px;}
._1_c01252{width:14.904000px;}
._4_c01252{width:15.912000px;}
._2_c01252{width:17.496000px;}
._6_c01252{width:18.504000px;}
._7_c01252{width:21.744000px;}
._5_c01252{width:23.256000px;}
._8_c01252{width:25.128000px;}
._23_c01252{width:27.720000px;}
._15_c01252{width:34.248000px;}
._21_c01252{width:55.584000px;}
._b_c01252{width:65.940000px;}
._a_c01252{width:74.928000px;}
._1b_c01252{width:118.977000px;}
._24_c01252{width:330.036000px;}
._22_c01252{width:638.472000px;}
.fc2_c01252{color:transparent;}
.fc1_c01252{color:rgb(128,128,128);}
.fc0_c01252{color:rgb(0,0,0);}
.fs5_c01252{font-size:48.000000px;}
.fs0_c01252{font-size:57.600000px;}
.fs1_c01252{font-size:72.000000px;}
.fs4_c01252{font-size:75.000000px;}
.fs3_c01252{font-size:81.000000px;}
.fs2_c01252{font-size:84.000000px;}
.y0_c01252{bottom:0.000000px;}
.y1c_c01252{bottom:3.105000px;}
.y1b_c01252{bottom:7.228371px;}
.y1a_c01252{bottom:38.865000px;}
.y19_c01252{bottom:65.565000px;}
.y18_c01252{bottom:91.515000px;}
.y17_c01252{bottom:116.115000px;}
.y16_c01252{bottom:139.365000px;}
.y15_c01252{bottom:166.515000px;}
.y14_c01252{bottom:192.465000px;}
.y13_c01252{bottom:217.365000px;}
.y12_c01252{bottom:243.015000px;}
.y11_c01252{bottom:267.315000px;}
.y10_c01252{bottom:291.915000px;}
.yf_c01252{bottom:317.565000px;}
.ye_c01252{bottom:342.015000px;}
.yd_c01252{bottom:365.565000px;}
.yc_c01252{bottom:391.815000px;}
.yb_c01252{bottom:415.815000px;}
.ya_c01252{bottom:466.065000px;}
.y9_c01252{bottom:516.015000px;}
.y8_c01252{bottom:543.465000px;}
.y7_c01252{bottom:571.365000px;}
.y6_c01252{bottom:599.415000px;}
.y5_c01252{bottom:626.715000px;}
.y4_c01252{bottom:654.465000px;}
.y3_c01252{bottom:681.765000px;}
.y2_c01252{bottom:709.515000px;}
.y1_c01252{bottom:738.765000px;}
.h6_c01252{height:13.200074px;}
.h7_c01252{height:43.804688px;}
.h5_c01252{height:82.400391px;}
.h4_c01252{height:82.441406px;}
.h3_c01252{height:84.269531px;}
.h2_c01252{height:91.160156px;}
.h1_c01252{height:790.500000px;}
.h0_c01252{height:790.575000px;}
.w1_c01252{width:104.875500px;}
.w0_c01252{width:536.250000px;}
.x0_c01252{left:0.000000px;}
.xe_c01252{left:40.800000px;}
.xd_c01252{left:42.750000px;}
.x2_c01252{left:44.100000px;}
.x3_c01252{left:45.450000px;}
.x4_c01252{left:61.650000px;}
.x5_c01252{left:104.400000px;}
.x6_c01252{left:163.050000px;}
.xc_c01252{left:188.250000px;}
.xb_c01252{left:189.750000px;}
.x9_c01252{left:191.400000px;}
.x8_c01252{left:198.900000px;}
.x7_c01252{left:207.300000px;}
.xf_c01252{left:219.939240px;}
.xa_c01252{left:241.350000px;}
.x1_c01252{left:389.100000px;}
@media print{
.v0_c01252{vertical-align:0.000000pt;}
.ls5_c01252{letter-spacing:-8.000000pt;}
.ls3_c01252{letter-spacing:0.000000pt;}
.ls6_c01252{letter-spacing:2.666667pt;}
.ls7_c01252{letter-spacing:5.333333pt;}
.ls1_c01252{letter-spacing:9.642667pt;}
.ls2_c01252{letter-spacing:12.411733pt;}
.ls4_c01252{letter-spacing:13.333333pt;}
.ls0_c01252{letter-spacing:38.545067pt;}
.ws0_c01252{word-spacing:-24.960000pt;}
.ws1_c01252{word-spacing:-18.666667pt;}
.ws2_c01252{word-spacing:-7.424000pt;}
.ws3_c01252{word-spacing:0.000000pt;}
._1e_c01252{margin-left:-19.557333pt;}
._1f_c01252{margin-left:-18.058667pt;}
._18_c01252{margin-left:-14.485333pt;}
._1a_c01252{margin-left:-12.544000pt;}
._16_c01252{margin-left:-10.608000pt;}
._17_c01252{margin-left:-8.533333pt;}
._19_c01252{margin-left:-7.114667pt;}
._1c_c01252{margin-left:-6.026667pt;}
._c_c01252{margin-left:-5.077333pt;}
._0_c01252{margin-left:-3.946667pt;}
._1d_c01252{margin-left:-2.858667pt;}
._d_c01252{margin-left:-1.866667pt;}
._20_c01252{margin-left:-0.906667pt;}
._11_c01252{width:0.906667pt;}
._10_c01252{width:2.389333pt;}
._f_c01252{width:3.658667pt;}
._13_c01252{width:4.554667pt;}
._e_c01252{width:5.450667pt;}
._12_c01252{width:6.986667pt;}
._3_c01252{width:8.128000pt;}
._14_c01252{width:9.781333pt;}
._9_c01252{width:11.925333pt;}
._1_c01252{width:13.248000pt;}
._4_c01252{width:14.144000pt;}
._2_c01252{width:15.552000pt;}
._6_c01252{width:16.448000pt;}
._7_c01252{width:19.328000pt;}
._5_c01252{width:20.672000pt;}
._8_c01252{width:22.336000pt;}
._23_c01252{width:24.640000pt;}
._15_c01252{width:30.442667pt;}
._21_c01252{width:49.408000pt;}
._b_c01252{width:58.613333pt;}
._a_c01252{width:66.602667pt;}
._1b_c01252{width:105.757333pt;}
._24_c01252{width:293.365333pt;}
._22_c01252{width:567.530667pt;}
.fs5_c01252{font-size:42.666667pt;}
.fs0_c01252{font-size:51.200000pt;}
.fs1_c01252{font-size:64.000000pt;}
.fs4_c01252{font-size:66.666667pt;}
.fs3_c01252{font-size:72.000000pt;}
.fs2_c01252{font-size:74.666667pt;}
.y0_c01252{bottom:0.000000pt;}
.y1c_c01252{bottom:2.760000pt;}
.y1b_c01252{bottom:6.425219pt;}
.y1a_c01252{bottom:34.546667pt;}
.y19_c01252{bottom:58.280000pt;}
.y18_c01252{bottom:81.346667pt;}
.y17_c01252{bottom:103.213333pt;}
.y16_c01252{bottom:123.880000pt;}
.y15_c01252{bottom:148.013333pt;}
.y14_c01252{bottom:171.080000pt;}
.y13_c01252{bottom:193.213333pt;}
.y12_c01252{bottom:216.013333pt;}
.y11_c01252{bottom:237.613333pt;}
.y10_c01252{bottom:259.480000pt;}
.yf_c01252{bottom:282.280000pt;}
.ye_c01252{bottom:304.013333pt;}
.yd_c01252{bottom:324.946667pt;}
.yc_c01252{bottom:348.280000pt;}
.yb_c01252{bottom:369.613333pt;}
.ya_c01252{bottom:414.280000pt;}
.y9_c01252{bottom:458.680000pt;}
.y8_c01252{bottom:483.080000pt;}
.y7_c01252{bottom:507.880000pt;}
.y6_c01252{bottom:532.813333pt;}
.y5_c01252{bottom:557.080000pt;}
.y4_c01252{bottom:581.746667pt;}
.y3_c01252{bottom:606.013333pt;}
.y2_c01252{bottom:630.680000pt;}
.y1_c01252{bottom:656.680000pt;}
.h6_c01252{height:11.733399pt;}
.h7_c01252{height:38.937500pt;}
.h5_c01252{height:73.244792pt;}
.h4_c01252{height:73.281250pt;}
.h3_c01252{height:74.906250pt;}
.h2_c01252{height:81.031250pt;}
.h1_c01252{height:702.666667pt;}
.h0_c01252{height:702.733333pt;}
.w1_c01252{width:93.222667pt;}
.w0_c01252{width:476.666667pt;}
.x0_c01252{left:0.000000pt;}
.xe_c01252{left:36.266667pt;}
.xd_c01252{left:38.000000pt;}
.x2_c01252{left:39.200000pt;}
.x3_c01252{left:40.400000pt;}
.x4_c01252{left:54.800000pt;}
.x5_c01252{left:92.800000pt;}
.x6_c01252{left:144.933333pt;}
.xc_c01252{left:167.333333pt;}
.xb_c01252{left:168.666667pt;}
.x9_c01252{left:170.133333pt;}
.x8_c01252{left:176.800000pt;}
.x7_c01252{left:184.266667pt;}
.xf_c01252{left:195.501546pt;}
.xa_c01252{left:214.533333pt;}
.x1_c01252{left:345.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_34dd8ef07451e7c9776687da.woff2')format("woff");}.ff1_c01253{font-family:ff1_c01253;line-height:1.480469;font-style:normal;font-weight:normal;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_fe1de25978629bd999951442.woff2')format("woff");}.ff2_c01253{font-family:ff2_c01253;line-height:1.592000;font-style:normal;font-weight:normal;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_42ca6a7f4ee780e6466fa4ba.woff2')format("woff");}.ff3_c01253{font-family:ff3_c01253;line-height:1.575000;font-style:normal;font-weight:normal;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_2a9dae98284b4acbbd2c093b.woff2')format("woff");}.ff4_c01253{font-family:ff4_c01253;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01253;src:url('chunks/assets/font_6f1d6eddcbc24c7f14d8c90d.woff2')format("woff");}.ff5_c01253{font-family:ff5_c01253;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01253;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01253{font-family:ff6_c01253;line-height:1.219238;font-style: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;}
.ls3_c01253{letter-spacing:-6.000000px;}
.ls1_c01253{letter-spacing:-3.000000px;}
.ls4_c01253{letter-spacing:0.000000px;}
.ls2_c01253{letter-spacing:3.000000px;}
.ls0_c01253{letter-spacing:9.000000px;}
.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;}
}
.ws1_c01253{word-spacing:-30.804000px;}
.ws2_c01253{word-spacing:-24.051000px;}
.ws4_c01253{word-spacing:-20.352000px;}
.ws0_c01253{word-spacing:-19.845000px;}
.ws3_c01253{word-spacing:-17.352000px;}
.ws5_c01253{word-spacing:0.000000px;}
._1_c01253{margin-left:-30.132000px;}
._2_c01253{margin-left:-27.864000px;}
._1b_c01253{margin-left:-21.456000px;}
._1d_c01253{margin-left:-18.768000px;}
._1c_c01253{margin-left:-17.184000px;}
._1a_c01253{margin-left:-14.976000px;}
._13_c01253{margin-left:-12.348000px;}
._14_c01253{margin-left:-10.920000px;}
._19_c01253{margin-left:-9.888000px;}
._15_c01253{margin-left:-8.496000px;}
._0_c01253{margin-left:-7.020000px;}
._18_c01253{margin-left:-5.976000px;}
._10_c01253{margin-left:-4.632000px;}
._f_c01253{margin-left:-3.552000px;}
._e_c01253{margin-left:-1.992000px;}
._c_c01253{width:1.296000px;}
._d_c01253{width:2.808000px;}
._a_c01253{width:4.560000px;}
._12_c01253{width:5.844000px;}
._4_c01253{width:7.560000px;}
._11_c01253{width:10.188000px;}
._7_c01253{width:11.580000px;}
._8_c01253{width:13.260000px;}
._9_c01253{width:17.820000px;}
._b_c01253{width:19.800000px;}
._5_c01253{width:21.000000px;}
._6_c01253{width:22.020000px;}
._16_c01253{width:24.708000px;}
._3_c01253{width:28.320000px;}
._17_c01253{width:382.872000px;}
.fc2_c01253{color:transparent;}
.fc1_c01253{color:rgb(128,128,128);}
.fc0_c01253{color:rgb(0,0,0);}
.fs0_c01253{font-size:45.000000px;}
.fs5_c01253{font-size:48.000000px;}
.fs2_c01253{font-size:60.000000px;}
.fs4_c01253{font-size:63.000000px;}
.fs3_c01253{font-size:72.000000px;}
.fs1_c01253{font-size:108.000000px;}
.y0_c01253{bottom:0.000000px;}
.y21_c01253{bottom:3.105000px;}
.y20_c01253{bottom:7.228355px;}
.y1f_c01253{bottom:45.435000px;}
.y1e_c01253{bottom:68.535000px;}
.y1d_c01253{bottom:94.485000px;}
.y1c_c01253{bottom:119.685000px;}
.y1b_c01253{bottom:144.735000px;}
.y1a_c01253{bottom:170.385000px;}
.y19_c01253{bottom:195.885000px;}
.y18_c01253{bottom:220.935000px;}
.y17_c01253{bottom:245.985000px;}
.y16_c01253{bottom:270.885000px;}
.y15_c01253{bottom:295.935000px;}
.y14_c01253{bottom:321.285000px;}
.y13_c01253{bottom:346.185000px;}
.y12_c01253{bottom:371.535000px;}
.y11_c01253{bottom:396.135000px;}
.y10_c01253{bottom:422.235000px;}
.yf_c01253{bottom:445.785000px;}
.ye_c01253{bottom:470.385000px;}
.yd_c01253{bottom:495.135000px;}
.y2_c01253{bottom:505.935000px;}
.yc_c01253{bottom:521.985000px;}
.y1_c01253{bottom:527.085000px;}
.yb_c01253{bottom:546.285000px;}
.ya_c01253{bottom:569.985000px;}
.y9_c01253{bottom:595.035000px;}
.y8_c01253{bottom:620.235000px;}
.y7_c01253{bottom:644.985000px;}
.y6_c01253{bottom:669.885000px;}
.y5_c01253{bottom:694.785000px;}
.y4_c01253{bottom:719.835000px;}
.y3_c01253{bottom:744.885000px;}
.h6_c01253{height:13.200074px;}
.h7_c01253{height:43.804688px;}
.h2_c01253{height:52.668457px;}
.h4_c01253{height:65.040000px;}
.h5_c01253{height:91.160156px;}
.h3_c01253{height:117.072000px;}
.h0_c01253{height:791.625000px;}
.h1_c01253{height:792.000000px;}
.w2_c01253{width:104.875500px;}
.w0_c01253{width:523.275000px;}
.w1_c01253{width:523.500000px;}
.x0_c01253{left:0.000000px;}
.x1_c01253{left:9.150000px;}
.x6_c01253{left:11.700000px;}
.x7_c01253{left:30.000000px;}
.x3_c01253{left:83.250000px;}
.x4_c01253{left:84.750000px;}
.x5_c01253{left:87.450000px;}
.x8_c01253{left:89.400000px;}
.x9_c01253{left:90.750000px;}
.xa_c01253{left:92.700000px;}
.xb_c01253{left:94.050000px;}
.xc_c01253{left:95.400000px;}
.xd_c01253{left:96.450000px;}
.xe_c01253{left:97.500000px;}
.xf_c01253{left:98.550000px;}
.x2_c01253{left:180.300000px;}
.x11_c01253{left:213.451767px;}
.x10_c01253{left:451.950000px;}
@media print{
.v0_c01253{vertical-align:0.000000pt;}
.ls3_c01253{letter-spacing:-5.333333pt;}
.ls1_c01253{letter-spacing:-2.666667pt;}
.ls4_c01253{letter-spacing:0.000000pt;}
.ls2_c01253{letter-spacing:2.666667pt;}
.ls0_c01253{letter-spacing:8.000000pt;}
.ws1_c01253{word-spacing:-27.381333pt;}
.ws2_c01253{word-spacing:-21.378667pt;}
.ws4_c01253{word-spacing:-18.090667pt;}
.ws0_c01253{word-spacing:-17.640000pt;}
.ws3_c01253{word-spacing:-15.424000pt;}
.ws5_c01253{word-spacing:0.000000pt;}
._1_c01253{margin-left:-26.784000pt;}
._2_c01253{margin-left:-24.768000pt;}
._1b_c01253{margin-left:-19.072000pt;}
._1d_c01253{margin-left:-16.682667pt;}
._1c_c01253{margin-left:-15.274667pt;}
._1a_c01253{margin-left:-13.312000pt;}
._13_c01253{margin-left:-10.976000pt;}
._14_c01253{margin-left:-9.706667pt;}
._19_c01253{margin-left:-8.789333pt;}
._15_c01253{margin-left:-7.552000pt;}
._0_c01253{margin-left:-6.240000pt;}
._18_c01253{margin-left:-5.312000pt;}
._10_c01253{margin-left:-4.117333pt;}
._f_c01253{margin-left:-3.157333pt;}
._e_c01253{margin-left:-1.770667pt;}
._c_c01253{width:1.152000pt;}
._d_c01253{width:2.496000pt;}
._a_c01253{width:4.053333pt;}
._12_c01253{width:5.194667pt;}
._4_c01253{width:6.720000pt;}
._11_c01253{width:9.056000pt;}
._7_c01253{width:10.293333pt;}
._8_c01253{width:11.786667pt;}
._9_c01253{width:15.840000pt;}
._b_c01253{width:17.600000pt;}
._5_c01253{width:18.666667pt;}
._6_c01253{width:19.573333pt;}
._16_c01253{width:21.962667pt;}
._3_c01253{width:25.173333pt;}
._17_c01253{width:340.330667pt;}
.fs0_c01253{font-size:40.000000pt;}
.fs5_c01253{font-size:42.666667pt;}
.fs2_c01253{font-size:53.333333pt;}
.fs4_c01253{font-size:56.000000pt;}
.fs3_c01253{font-size:64.000000pt;}
.fs1_c01253{font-size:96.000000pt;}
.y0_c01253{bottom:0.000000pt;}
.y21_c01253{bottom:2.760000pt;}
.y20_c01253{bottom:6.425204pt;}
.y1f_c01253{bottom:40.386667pt;}
.y1e_c01253{bottom:60.920000pt;}
.y1d_c01253{bottom:83.986667pt;}
.y1c_c01253{bottom:106.386667pt;}
.y1b_c01253{bottom:128.653333pt;}
.y1a_c01253{bottom:151.453333pt;}
.y19_c01253{bottom:174.120000pt;}
.y18_c01253{bottom:196.386667pt;}
.y17_c01253{bottom:218.653333pt;}
.y16_c01253{bottom:240.786667pt;}
.y15_c01253{bottom:263.053333pt;}
.y14_c01253{bottom:285.586667pt;}
.y13_c01253{bottom:307.720000pt;}
.y12_c01253{bottom:330.253333pt;}
.y11_c01253{bottom:352.120000pt;}
.y10_c01253{bottom:375.320000pt;}
.yf_c01253{bottom:396.253333pt;}
.ye_c01253{bottom:418.120000pt;}
.yd_c01253{bottom:440.120000pt;}
.y2_c01253{bottom:449.720000pt;}
.yc_c01253{bottom:463.986667pt;}
.y1_c01253{bottom:468.520000pt;}
.yb_c01253{bottom:485.586667pt;}
.ya_c01253{bottom:506.653333pt;}
.y9_c01253{bottom:528.920000pt;}
.y8_c01253{bottom:551.320000pt;}
.y7_c01253{bottom:573.320000pt;}
.y6_c01253{bottom:595.453333pt;}
.y5_c01253{bottom:617.586667pt;}
.y4_c01253{bottom:639.853333pt;}
.y3_c01253{bottom:662.120000pt;}
.h6_c01253{height:11.733399pt;}
.h7_c01253{height:38.937500pt;}
.h2_c01253{height:46.816406pt;}
.h4_c01253{height:57.813333pt;}
.h5_c01253{height:81.031250pt;}
.h3_c01253{height:104.064000pt;}
.h0_c01253{height:703.666667pt;}
.h1_c01253{height:704.000000pt;}
.w2_c01253{width:93.222667pt;}
.w0_c01253{width:465.133333pt;}
.w1_c01253{width:465.333333pt;}
.x0_c01253{left:0.000000pt;}
.x1_c01253{left:8.133333pt;}
.x6_c01253{left:10.400000pt;}
.x7_c01253{left:26.666667pt;}
.x3_c01253{left:74.000000pt;}
.x4_c01253{left:75.333333pt;}
.x5_c01253{left:77.733333pt;}
.x8_c01253{left:79.466667pt;}
.x9_c01253{left:80.666667pt;}
.xa_c01253{left:82.400000pt;}
.xb_c01253{left:83.600000pt;}
.xc_c01253{left:84.800000pt;}
.xd_c01253{left:85.733333pt;}
.xe_c01253{left:86.666667pt;}
.xf_c01253{left:87.600000pt;}
.x2_c01253{left:160.266667pt;}
.x11_c01253{left:189.734904pt;}
.x10_c01253{left:401.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0a09f8cee2425b12f5155e44.woff2')format("woff");}.ff1_c01254{font-family:ff1_c01254;line-height:1.480469;font-style:normal;font-weight:normal;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_a002d2cb288937f66cb68961.woff2')format("woff");}.ff2_c01254{font-family:ff2_c01254;line-height:1.592000;font-style:normal;font-weight:normal;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_85d8ec77ede152e90a29f073.woff2')format("woff");}.ff3_c01254{font-family:ff3_c01254;line-height:1.568848;font-style:normal;font-weight:normal;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_4b9c2b8377d4a4a5329e87cf.woff2')format("woff");}.ff4_c01254{font-family:ff4_c01254;line-height:1.480469;font-style:normal;font-weight:normal;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_a7a09a7331966efb47ba8019.woff2')format("woff");}.ff5_c01254{font-family:ff5_c01254;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01254;src:url('chunks/assets/font_665cce4e33d3a7a39266a454.woff2')format("woff");}.ff6_c01254{font-family:ff6_c01254;line-height:1.284180;font-style:normal;font-weight: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_c01254;src:url('chunks/assets/font_27bf2fa0e378958b92e4f878.woff2')format("woff");}.ff7_c01254{font-family:ff7_c01254;line-height:1.284668;font-style:normal;font-weight: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_c01254;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff8_c01254{font-family:ff8_c01254;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01254{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01254{vertical-align:0.000000px;}
.ls2_c01254{letter-spacing:0.000000px;}
.ls0_c01254{letter-spacing:2.736000px;}
.ls1_c01254{letter-spacing:3.000000px;}
.ls3_c01254{letter-spacing:15.000000px;}
.sc__c01254{text-shadow:none;}
.sc0_c01254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01254{-webkit-text-stroke:0px transparent;}
.sc0_c01254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01254{word-spacing:-54.000000px;}
.ws2_c01254{word-spacing:-42.000000px;}
.ws3_c01254{word-spacing:-35.250000px;}
.ws0_c01254{word-spacing:-33.192000px;}
.ws4_c01254{word-spacing:0.000000px;}
._14_c01254{margin-left:-33.279000px;}
._15_c01254{margin-left:-17.811000px;}
._16_c01254{margin-left:-16.020000px;}
._12_c01254{margin-left:-14.688000px;}
._4_c01254{margin-left:-13.365000px;}
._8_c01254{margin-left:-11.745000px;}
._6_c01254{margin-left:-8.910000px;}
._7_c01254{margin-left:-7.533000px;}
._5_c01254{margin-left:-6.156000px;}
._3_c01254{margin-left:-4.563000px;}
._2_c01254{margin-left:-3.483000px;}
._d_c01254{margin-left:-1.638000px;}
._f_c01254{width:1.107000px;}
._c_c01254{width:2.520000px;}
._e_c01254{width:3.600000px;}
._1_c01254{width:4.698000px;}
._0_c01254{width:6.561000px;}
._10_c01254{width:8.505000px;}
._a_c01254{width:9.720000px;}
._17_c01254{width:12.123000px;}
._11_c01254{width:13.590000px;}
._b_c01254{width:19.278000px;}
._9_c01254{width:276.291000px;}
._13_c01254{width:282.249000px;}
._19_c01254{width:318.357000px;}
._18_c01254{width:455.109000px;}
.fc2_c01254{color:transparent;}
.fc1_c01254{color:rgb(128,128,128);}
.fc0_c01254{color:rgb(0,0,0);}
.fs4_c01254{font-size:48.000000px;}
.fs1_c01254{font-size:72.000000px;}
.fs2_c01254{font-size:78.000000px;}
.fs0_c01254{font-size:81.000000px;}
.fs3_c01254{font-size:84.000000px;}
.y0_c01254{bottom:0.000000px;}
.y1f_c01254{bottom:3.105000px;}
.y1e_c01254{bottom:7.228371px;}
.y1d_c01254{bottom:51.015000px;}
.y1c_c01254{bottom:76.665000px;}
.y1b_c01254{bottom:100.365000px;}
.y1a_c01254{bottom:126.615000px;}
.y19_c01254{bottom:153.315000px;}
.y18_c01254{bottom:178.215000px;}
.y17_c01254{bottom:203.565000px;}
.y16_c01254{bottom:228.915000px;}
.y15_c01254{bottom:252.915000px;}
.y14_c01254{bottom:278.865000px;}
.y13_c01254{bottom:304.065000px;}
.y12_c01254{bottom:329.865000px;}
.y11_c01254{bottom:354.765000px;}
.y10_c01254{bottom:378.315000px;}
.yf_c01254{bottom:404.115000px;}
.ye_c01254{bottom:429.015000px;}
.yd_c01254{bottom:452.265000px;}
.yc_c01254{bottom:478.365000px;}
.yb_c01254{bottom:503.265000px;}
.ya_c01254{bottom:527.565000px;}
.y9_c01254{bottom:551.865000px;}
.y8_c01254{bottom:577.215000px;}
.y7_c01254{bottom:602.115000px;}
.y6_c01254{bottom:626.715000px;}
.y5_c01254{bottom:651.765000px;}
.y4_c01254{bottom:676.365000px;}
.y3_c01254{bottom:701.415000px;}
.y2_c01254{bottom:726.615000px;}
.y1_c01254{bottom:750.615000px;}
.h6_c01254{height:13.200074px;}
.h7_c01254{height:43.804688px;}
.h5_c01254{height:79.497070px;}
.h4_c01254{height:82.400391px;}
.h3_c01254{height:91.160156px;}
.h2_c01254{height:94.803223px;}
.h0_c01254{height:806.775000px;}
.h1_c01254{height:807.000000px;}
.w2_c01254{width:104.875500px;}
.w0_c01254{width:532.950000px;}
.w1_c01254{width:533.250000px;}
.x0_c01254{left:0.000000px;}
.x3_c01254{left:32.400000px;}
.x4_c01254{left:33.450000px;}
.x5_c01254{left:35.550000px;}
.x6_c01254{left:37.200000px;}
.x7_c01254{left:38.550000px;}
.x8_c01254{left:39.600000px;}
.x9_c01254{left:40.950000px;}
.xa_c01254{left:43.500000px;}
.xb_c01254{left:44.550000px;}
.xc_c01254{left:45.600000px;}
.x2_c01254{left:129.600000px;}
.xd_c01254{left:144.750000px;}
.xe_c01254{left:147.600000px;}
.x1_c01254{left:149.400000px;}
.x10_c01254{left:218.289230px;}
.xf_c01254{left:246.000000px;}
@media print{
.v0_c01254{vertical-align:0.000000pt;}
.ls2_c01254{letter-spacing:0.000000pt;}
.ls0_c01254{letter-spacing:2.432000pt;}
.ls1_c01254{letter-spacing:2.666667pt;}
.ls3_c01254{letter-spacing:13.333333pt;}
.ws1_c01254{word-spacing:-48.000000pt;}
.ws2_c01254{word-spacing:-37.333333pt;}
.ws3_c01254{word-spacing:-31.333333pt;}
.ws0_c01254{word-spacing:-29.504000pt;}
.ws4_c01254{word-spacing:0.000000pt;}
._14_c01254{margin-left:-29.581333pt;}
._15_c01254{margin-left:-15.832000pt;}
._16_c01254{margin-left:-14.240000pt;}
._12_c01254{margin-left:-13.056000pt;}
._4_c01254{margin-left:-11.880000pt;}
._8_c01254{margin-left:-10.440000pt;}
._6_c01254{margin-left:-7.920000pt;}
._7_c01254{margin-left:-6.696000pt;}
._5_c01254{margin-left:-5.472000pt;}
._3_c01254{margin-left:-4.056000pt;}
._2_c01254{margin-left:-3.096000pt;}
._d_c01254{margin-left:-1.456000pt;}
._f_c01254{width:0.984000pt;}
._c_c01254{width:2.240000pt;}
._e_c01254{width:3.200000pt;}
._1_c01254{width:4.176000pt;}
._0_c01254{width:5.832000pt;}
._10_c01254{width:7.560000pt;}
._a_c01254{width:8.640000pt;}
._17_c01254{width:10.776000pt;}
._11_c01254{width:12.080000pt;}
._b_c01254{width:17.136000pt;}
._9_c01254{width:245.592000pt;}
._13_c01254{width:250.888000pt;}
._19_c01254{width:282.984000pt;}
._18_c01254{width:404.541333pt;}
.fs4_c01254{font-size:42.666667pt;}
.fs1_c01254{font-size:64.000000pt;}
.fs2_c01254{font-size:69.333333pt;}
.fs0_c01254{font-size:72.000000pt;}
.fs3_c01254{font-size:74.666667pt;}
.y0_c01254{bottom:0.000000pt;}
.y1f_c01254{bottom:2.760000pt;}
.y1e_c01254{bottom:6.425219pt;}
.y1d_c01254{bottom:45.346667pt;}
.y1c_c01254{bottom:68.146667pt;}
.y1b_c01254{bottom:89.213333pt;}
.y1a_c01254{bottom:112.546667pt;}
.y19_c01254{bottom:136.280000pt;}
.y18_c01254{bottom:158.413333pt;}
.y17_c01254{bottom:180.946667pt;}
.y16_c01254{bottom:203.480000pt;}
.y15_c01254{bottom:224.813333pt;}
.y14_c01254{bottom:247.880000pt;}
.y13_c01254{bottom:270.280000pt;}
.y12_c01254{bottom:293.213333pt;}
.y11_c01254{bottom:315.346667pt;}
.y10_c01254{bottom:336.280000pt;}
.yf_c01254{bottom:359.213333pt;}
.ye_c01254{bottom:381.346667pt;}
.yd_c01254{bottom:402.013333pt;}
.yc_c01254{bottom:425.213333pt;}
.yb_c01254{bottom:447.346667pt;}
.ya_c01254{bottom:468.946667pt;}
.y9_c01254{bottom:490.546667pt;}
.y8_c01254{bottom:513.080000pt;}
.y7_c01254{bottom:535.213333pt;}
.y6_c01254{bottom:557.080000pt;}
.y5_c01254{bottom:579.346667pt;}
.y4_c01254{bottom:601.213333pt;}
.y3_c01254{bottom:623.480000pt;}
.y2_c01254{bottom:645.880000pt;}
.y1_c01254{bottom:667.213333pt;}
.h6_c01254{height:11.733399pt;}
.h7_c01254{height:38.937500pt;}
.h5_c01254{height:70.664062pt;}
.h4_c01254{height:73.244792pt;}
.h3_c01254{height:81.031250pt;}
.h2_c01254{height:84.269531pt;}
.h0_c01254{height:717.133333pt;}
.h1_c01254{height:717.333333pt;}
.w2_c01254{width:93.222667pt;}
.w0_c01254{width:473.733333pt;}
.w1_c01254{width:474.000000pt;}
.x0_c01254{left:0.000000pt;}
.x3_c01254{left:28.800000pt;}
.x4_c01254{left:29.733333pt;}
.x5_c01254{left:31.600000pt;}
.x6_c01254{left:33.066667pt;}
.x7_c01254{left:34.266667pt;}
.x8_c01254{left:35.200000pt;}
.x9_c01254{left:36.400000pt;}
.xa_c01254{left:38.666667pt;}
.xb_c01254{left:39.600000pt;}
.xc_c01254{left:40.533333pt;}
.x2_c01254{left:115.200000pt;}
.xd_c01254{left:128.666667pt;}
.xe_c01254{left:131.200000pt;}
.x1_c01254{left:132.800000pt;}
.x10_c01254{left:194.034871pt;}
.xf_c01254{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_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_257fd798412ddbfb3e1d8332.woff2')format("woff");}.ff1_c01255{font-family:ff1_c01255;line-height:1.568848;font-style:normal;font-weight:normal;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_869e4a20dd997c48d4555197.woff2')format("woff");}.ff2_c01255{font-family:ff2_c01255;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01255{font-family:ff3_c01255;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01255{vertical-align:0.000000px;}
.ls1_c01255{letter-spacing:0.000000px;}
.ls0_c01255{letter-spacing:3.000000px;}
.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:-33.192000px;}
.ws1_c01255{word-spacing:0.000000px;}
._12_c01255{margin-left:-24.096000px;}
._14_c01255{margin-left:-18.216000px;}
._8_c01255{margin-left:-15.024000px;}
._d_c01255{margin-left:-12.072000px;}
._c_c01255{margin-left:-9.768000px;}
._9_c01255{margin-left:-7.272000px;}
._6_c01255{margin-left:-5.616000px;}
._5_c01255{margin-left:-3.936000px;}
._4_c01255{margin-left:-2.016000px;}
._f_c01255{margin-left:-1.008000px;}
._0_c01255{width:1.656000px;}
._3_c01255{width:3.480000px;}
._2_c01255{width:5.472000px;}
._b_c01255{width:6.504000px;}
._7_c01255{width:8.232000px;}
._a_c01255{width:10.224000px;}
._e_c01255{width:11.976000px;}
._10_c01255{width:13.008000px;}
._11_c01255{width:14.664000px;}
._1_c01255{width:114.048000px;}
._13_c01255{width:121.296000px;}
._17_c01255{width:220.824000px;}
._15_c01255{width:303.984000px;}
._16_c01255{width:479.880000px;}
.fc2_c01255{color:transparent;}
.fc1_c01255{color:rgb(128,128,128);}
.fc0_c01255{color:rgb(0,0,0);}
.fs1_c01255{font-size:48.000000px;}
.fs0_c01255{font-size:72.000000px;}
.y0_c01255{bottom:0.000000px;}
.y1e_c01255{bottom:3.105000px;}
.y1d_c01255{bottom:7.228371px;}
.y1c_c01255{bottom:37.515000px;}
.y1b_c01255{bottom:59.115000px;}
.y1a_c01255{bottom:86.115000px;}
.y19_c01255{bottom:111.465000px;}
.y18_c01255{bottom:136.665000px;}
.y17_c01255{bottom:162.765000px;}
.y16_c01255{bottom:187.365000px;}
.y15_c01255{bottom:213.015000px;}
.y14_c01255{bottom:238.665000px;}
.y13_c01255{bottom:262.965000px;}
.y12_c01255{bottom:287.865000px;}
.y11_c01255{bottom:313.215000px;}
.y10_c01255{bottom:338.265000px;}
.yf_c01255{bottom:362.865000px;}
.ye_c01255{bottom:388.215000px;}
.yd_c01255{bottom:412.215000px;}
.yc_c01255{bottom:437.865000px;}
.yb_c01255{bottom:462.015000px;}
.ya_c01255{bottom:486.765000px;}
.y9_c01255{bottom:512.415000px;}
.y8_c01255{bottom:537.015000px;}
.y7_c01255{bottom:562.665000px;}
.y6_c01255{bottom:587.265000px;}
.y5_c01255{bottom:612.015000px;}
.y4_c01255{bottom:636.915000px;}
.y3_c01255{bottom:661.815000px;}
.y2_c01255{bottom:687.465000px;}
.y1_c01255{bottom:712.215000px;}
.h3_c01255{height:13.200074px;}
.h4_c01255{height:43.804688px;}
.h2_c01255{height:91.160156px;}
.h0_c01255{height:793.275000px;}
.h1_c01255{height:793.500000px;}
.w2_c01255{width:104.875500px;}
.w1_c01255{width:511.500000px;}
.w0_c01255{width:511.650000px;}
.x0_c01255{left:0.000000px;}
.x5_c01255{left:69.900000px;}
.x3_c01255{left:72.150000px;}
.x4_c01255{left:73.200000px;}
.x1_c01255{left:74.250000px;}
.x2_c01255{left:75.600000px;}
.x6_c01255{left:96.750000px;}
.x7_c01255{left:207.639267px;}
@media print{
.v0_c01255{vertical-align:0.000000pt;}
.ls1_c01255{letter-spacing:0.000000pt;}
.ls0_c01255{letter-spacing:2.666667pt;}
.ws0_c01255{word-spacing:-29.504000pt;}
.ws1_c01255{word-spacing:0.000000pt;}
._12_c01255{margin-left:-21.418667pt;}
._14_c01255{margin-left:-16.192000pt;}
._8_c01255{margin-left:-13.354667pt;}
._d_c01255{margin-left:-10.730667pt;}
._c_c01255{margin-left:-8.682667pt;}
._9_c01255{margin-left:-6.464000pt;}
._6_c01255{margin-left:-4.992000pt;}
._5_c01255{margin-left:-3.498667pt;}
._4_c01255{margin-left:-1.792000pt;}
._f_c01255{margin-left:-0.896000pt;}
._0_c01255{width:1.472000pt;}
._3_c01255{width:3.093333pt;}
._2_c01255{width:4.864000pt;}
._b_c01255{width:5.781333pt;}
._7_c01255{width:7.317333pt;}
._a_c01255{width:9.088000pt;}
._e_c01255{width:10.645333pt;}
._10_c01255{width:11.562667pt;}
._11_c01255{width:13.034667pt;}
._1_c01255{width:101.376000pt;}
._13_c01255{width:107.818667pt;}
._17_c01255{width:196.288000pt;}
._15_c01255{width:270.208000pt;}
._16_c01255{width:426.560000pt;}
.fs1_c01255{font-size:42.666667pt;}
.fs0_c01255{font-size:64.000000pt;}
.y0_c01255{bottom:0.000000pt;}
.y1e_c01255{bottom:2.760000pt;}
.y1d_c01255{bottom:6.425219pt;}
.y1c_c01255{bottom:33.346667pt;}
.y1b_c01255{bottom:52.546667pt;}
.y1a_c01255{bottom:76.546667pt;}
.y19_c01255{bottom:99.080000pt;}
.y18_c01255{bottom:121.480000pt;}
.y17_c01255{bottom:144.680000pt;}
.y16_c01255{bottom:166.546667pt;}
.y15_c01255{bottom:189.346667pt;}
.y14_c01255{bottom:212.146667pt;}
.y13_c01255{bottom:233.746667pt;}
.y12_c01255{bottom:255.880000pt;}
.y11_c01255{bottom:278.413333pt;}
.y10_c01255{bottom:300.680000pt;}
.yf_c01255{bottom:322.546667pt;}
.ye_c01255{bottom:345.080000pt;}
.yd_c01255{bottom:366.413333pt;}
.yc_c01255{bottom:389.213333pt;}
.yb_c01255{bottom:410.680000pt;}
.ya_c01255{bottom:432.680000pt;}
.y9_c01255{bottom:455.480000pt;}
.y8_c01255{bottom:477.346667pt;}
.y7_c01255{bottom:500.146667pt;}
.y6_c01255{bottom:522.013333pt;}
.y5_c01255{bottom:544.013333pt;}
.y4_c01255{bottom:566.146667pt;}
.y3_c01255{bottom:588.280000pt;}
.y2_c01255{bottom:611.080000pt;}
.y1_c01255{bottom:633.080000pt;}
.h3_c01255{height:11.733399pt;}
.h4_c01255{height:38.937500pt;}
.h2_c01255{height:81.031250pt;}
.h0_c01255{height:705.133333pt;}
.h1_c01255{height:705.333333pt;}
.w2_c01255{width:93.222667pt;}
.w1_c01255{width:454.666667pt;}
.w0_c01255{width:454.800000pt;}
.x0_c01255{left:0.000000pt;}
.x5_c01255{left:62.133333pt;}
.x3_c01255{left:64.133333pt;}
.x4_c01255{left:65.066667pt;}
.x1_c01255{left:66.000000pt;}
.x2_c01255{left:67.200000pt;}
.x6_c01255{left:86.000000pt;}
.x7_c01255{left:184.568237pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f7a881c9e540e2f7466d44d.woff2')format("woff");}.ff1_c01256{font-family:ff1_c01256;line-height:1.480469;font-style:normal;font-weight:normal;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_a7a09a7331966efb47ba8019.woff2')format("woff");}.ff2_c01256{font-family:ff2_c01256;line-height:1.284180;font-style:normal;font-weight:normal;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_5c835f0becac46009b21aced.woff2')format("woff");}.ff3_c01256{font-family:ff3_c01256;line-height:1.568848;font-style:normal;font-weight:normal;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_9ef1a5098f6fe349d0d761da.woff2')format("woff");}.ff4_c01256{font-family:ff4_c01256;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01256{font-family:ff5_c01256;line-height:1.219238;font-style: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);}
.v0_c01256{vertical-align:0.000000px;}
.ls5_c01256{letter-spacing:-6.000000px;}
.ls3_c01256{letter-spacing:0.000000px;}
.ls1_c01256{letter-spacing:2.388000px;}
.ls4_c01256{letter-spacing:3.000000px;}
.ls2_c01256{letter-spacing:19.788000px;}
.ls0_c01256{letter-spacing:28.800000px;}
.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;}
}
.ws1_c01256{word-spacing:-24.051000px;}
.ws0_c01256{word-spacing:-17.352000px;}
.ws2_c01256{word-spacing:0.000000px;}
._1a_c01256{margin-left:-24.048000px;}
._1b_c01256{margin-left:-17.808000px;}
._1d_c01256{margin-left:-16.272000px;}
._1e_c01256{margin-left:-14.517000px;}
._17_c01256{margin-left:-13.104000px;}
._10_c01256{margin-left:-11.952000px;}
._1c_c01256{margin-left:-10.944000px;}
._18_c01256{margin-left:-9.576000px;}
._15_c01256{margin-left:-8.352000px;}
._12_c01256{margin-left:-6.264000px;}
._14_c01256{margin-left:-5.184000px;}
._f_c01256{margin-left:-3.528000px;}
._e_c01256{margin-left:-2.376000px;}
._11_c01256{margin-left:-1.008000px;}
._d_c01256{width:1.296000px;}
._9_c01256{width:2.376000px;}
._a_c01256{width:3.960000px;}
._b_c01256{width:5.184000px;}
._8_c01256{width:6.480000px;}
._5_c01256{width:7.560000px;}
._3_c01256{width:8.712000px;}
._16_c01256{width:9.936000px;}
._c_c01256{width:11.520000px;}
._0_c01256{width:12.816000px;}
._4_c01256{width:14.472000px;}
._6_c01256{width:15.984000px;}
._13_c01256{width:17.424000px;}
._1_c01256{width:20.304000px;}
._2_c01256{width:23.400000px;}
._19_c01256{width:107.496000px;}
._7_c01256{width:317.976000px;}
.fc2_c01256{color:transparent;}
.fc1_c01256{color:rgb(128,128,128);}
.fc0_c01256{color:rgb(0,0,0);}
.fs3_c01256{font-size:48.000000px;}
.fs2_c01256{font-size:63.000000px;}
.fs0_c01256{font-size:72.000000px;}
.fs1_c01256{font-size:78.000000px;}
.y0_c01256{bottom:0.000000px;}
.y1e_c01256{bottom:3.105000px;}
.y1d_c01256{bottom:7.228355px;}
.y1c_c01256{bottom:72.135000px;}
.y1b_c01256{bottom:99.135000px;}
.y1a_c01256{bottom:124.485000px;}
.y19_c01256{bottom:149.385000px;}
.y18_c01256{bottom:174.735000px;}
.y17_c01256{bottom:199.785000px;}
.y16_c01256{bottom:225.435000px;}
.y15_c01256{bottom:250.035000px;}
.y14_c01256{bottom:275.085000px;}
.y13_c01256{bottom:299.985000px;}
.y12_c01256{bottom:324.585000px;}
.y11_c01256{bottom:350.235000px;}
.y10_c01256{bottom:374.985000px;}
.yf_c01256{bottom:398.835000px;}
.ye_c01256{bottom:424.185000px;}
.yd_c01256{bottom:449.835000px;}
.yc_c01256{bottom:475.485000px;}
.yb_c01256{bottom:499.185000px;}
.ya_c01256{bottom:523.335000px;}
.y9_c01256{bottom:547.785000px;}
.y8_c01256{bottom:572.385000px;}
.y7_c01256{bottom:596.685000px;}
.y6_c01256{bottom:622.035000px;}
.y5_c01256{bottom:648.285000px;}
.y4_c01256{bottom:671.535000px;}
.y3_c01256{bottom:696.585000px;}
.y2_c01256{bottom:721.785000px;}
.y1_c01256{bottom:746.235000px;}
.h4_c01256{height:13.200074px;}
.h5_c01256{height:43.804688px;}
.h2_c01256{height:84.269531px;}
.h3_c01256{height:91.160156px;}
.h0_c01256{height:790.275000px;}
.h1_c01256{height:790.500000px;}
.w2_c01256{width:104.875500px;}
.w1_c01256{width:526.500000px;}
.w0_c01256{width:526.800000px;}
.x0_c01256{left:0.000000px;}
.x2_c01256{left:41.400000px;}
.x3_c01256{left:42.750000px;}
.x4_c01256{left:44.250000px;}
.x5_c01256{left:45.450000px;}
.x6_c01256{left:46.950000px;}
.x7_c01256{left:48.300000px;}
.x9_c01256{left:49.950000px;}
.xa_c01256{left:51.300000px;}
.x8_c01256{left:52.350000px;}
.xc_c01256{left:53.550000px;}
.xb_c01256{left:55.650000px;}
.xd_c01256{left:57.300000px;}
.xe_c01256{left:58.650000px;}
.xf_c01256{left:60.000000px;}
.x1_c01256{left:148.800000px;}
.x10_c01256{left:215.214249px;}
@media print{
.v0_c01256{vertical-align:0.000000pt;}
.ls5_c01256{letter-spacing:-5.333333pt;}
.ls3_c01256{letter-spacing:0.000000pt;}
.ls1_c01256{letter-spacing:2.122667pt;}
.ls4_c01256{letter-spacing:2.666667pt;}
.ls2_c01256{letter-spacing:17.589333pt;}
.ls0_c01256{letter-spacing:25.600000pt;}
.ws1_c01256{word-spacing:-21.378667pt;}
.ws0_c01256{word-spacing:-15.424000pt;}
.ws2_c01256{word-spacing:0.000000pt;}
._1a_c01256{margin-left:-21.376000pt;}
._1b_c01256{margin-left:-15.829333pt;}
._1d_c01256{margin-left:-14.464000pt;}
._1e_c01256{margin-left:-12.904000pt;}
._17_c01256{margin-left:-11.648000pt;}
._10_c01256{margin-left:-10.624000pt;}
._1c_c01256{margin-left:-9.728000pt;}
._18_c01256{margin-left:-8.512000pt;}
._15_c01256{margin-left:-7.424000pt;}
._12_c01256{margin-left:-5.568000pt;}
._14_c01256{margin-left:-4.608000pt;}
._f_c01256{margin-left:-3.136000pt;}
._e_c01256{margin-left:-2.112000pt;}
._11_c01256{margin-left:-0.896000pt;}
._d_c01256{width:1.152000pt;}
._9_c01256{width:2.112000pt;}
._a_c01256{width:3.520000pt;}
._b_c01256{width:4.608000pt;}
._8_c01256{width:5.760000pt;}
._5_c01256{width:6.720000pt;}
._3_c01256{width:7.744000pt;}
._16_c01256{width:8.832000pt;}
._c_c01256{width:10.240000pt;}
._0_c01256{width:11.392000pt;}
._4_c01256{width:12.864000pt;}
._6_c01256{width:14.208000pt;}
._13_c01256{width:15.488000pt;}
._1_c01256{width:18.048000pt;}
._2_c01256{width:20.800000pt;}
._19_c01256{width:95.552000pt;}
._7_c01256{width:282.645333pt;}
.fs3_c01256{font-size:42.666667pt;}
.fs2_c01256{font-size:56.000000pt;}
.fs0_c01256{font-size:64.000000pt;}
.fs1_c01256{font-size:69.333333pt;}
.y0_c01256{bottom:0.000000pt;}
.y1e_c01256{bottom:2.760000pt;}
.y1d_c01256{bottom:6.425204pt;}
.y1c_c01256{bottom:64.120000pt;}
.y1b_c01256{bottom:88.120000pt;}
.y1a_c01256{bottom:110.653333pt;}
.y19_c01256{bottom:132.786667pt;}
.y18_c01256{bottom:155.320000pt;}
.y17_c01256{bottom:177.586667pt;}
.y16_c01256{bottom:200.386667pt;}
.y15_c01256{bottom:222.253333pt;}
.y14_c01256{bottom:244.520000pt;}
.y13_c01256{bottom:266.653333pt;}
.y12_c01256{bottom:288.520000pt;}
.y11_c01256{bottom:311.320000pt;}
.y10_c01256{bottom:333.320000pt;}
.yf_c01256{bottom:354.520000pt;}
.ye_c01256{bottom:377.053333pt;}
.yd_c01256{bottom:399.853333pt;}
.yc_c01256{bottom:422.653333pt;}
.yb_c01256{bottom:443.720000pt;}
.ya_c01256{bottom:465.186667pt;}
.y9_c01256{bottom:486.920000pt;}
.y8_c01256{bottom:508.786667pt;}
.y7_c01256{bottom:530.386667pt;}
.y6_c01256{bottom:552.920000pt;}
.y5_c01256{bottom:576.253333pt;}
.y4_c01256{bottom:596.920000pt;}
.y3_c01256{bottom:619.186667pt;}
.y2_c01256{bottom:641.586667pt;}
.y1_c01256{bottom:663.320000pt;}
.h4_c01256{height:11.733399pt;}
.h5_c01256{height:38.937500pt;}
.h2_c01256{height:74.906250pt;}
.h3_c01256{height:81.031250pt;}
.h0_c01256{height:702.466667pt;}
.h1_c01256{height:702.666667pt;}
.w2_c01256{width:93.222667pt;}
.w1_c01256{width:468.000000pt;}
.w0_c01256{width:468.266667pt;}
.x0_c01256{left:0.000000pt;}
.x2_c01256{left:36.800000pt;}
.x3_c01256{left:38.000000pt;}
.x4_c01256{left:39.333333pt;}
.x5_c01256{left:40.400000pt;}
.x6_c01256{left:41.733333pt;}
.x7_c01256{left:42.933333pt;}
.x9_c01256{left:44.400000pt;}
.xa_c01256{left:45.600000pt;}
.x8_c01256{left:46.533333pt;}
.xc_c01256{left:47.600000pt;}
.xb_c01256{left:49.466667pt;}
.xd_c01256{left:50.933333pt;}
.xe_c01256{left:52.133333pt;}
.xf_c01256{left:53.333333pt;}
.x1_c01256{left:132.266667pt;}
.x10_c01256{left:191.301554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_759073318daa692c6de63fdf.woff2')format("woff");}.ff1_c01257{font-family:ff1_c01257;line-height:1.568848;font-style:normal;font-weight:normal;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_1791957247df5f751fd0d1b5.woff2')format("woff");}.ff2_c01257{font-family:ff2_c01257;line-height:1.480469;font-style:normal;font-weight:normal;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_51fd0dc10752e415ce8c76e4.woff2')format("woff");}.ff3_c01257{font-family:ff3_c01257;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01257{font-family:ff4_c01257;line-height:1.219238;font-style: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;}
.ls1_c01257{letter-spacing:-3.000000px;}
.ls0_c01257{letter-spacing:0.000000px;}
.ls2_c01257{letter-spacing:3.000000px;}
.ls3_c01257{letter-spacing:6.000000px;}
.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:-37.107000px;}
.ws1_c01257{word-spacing:-20.352000px;}
.ws2_c01257{word-spacing:0.000000px;}
._0_c01257{margin-left:-40.977000px;}
._14_c01257{margin-left:-14.016000px;}
._11_c01257{margin-left:-11.175000px;}
._4_c01257{margin-left:-9.273000px;}
._10_c01257{margin-left:-8.022000px;}
._b_c01257{margin-left:-6.828000px;}
._d_c01257{margin-left:-5.640000px;}
._c_c01257{margin-left:-4.455000px;}
._5_c01257{margin-left:-3.285000px;}
._8_c01257{margin-left:-1.629000px;}
._2_c01257{width:1.653000px;}
._3_c01257{width:2.667000px;}
._6_c01257{width:3.963000px;}
._9_c01257{width:5.256000px;}
._7_c01257{width:6.768000px;}
._a_c01257{width:8.190000px;}
._f_c01257{width:9.654000px;}
._e_c01257{width:11.019000px;}
._13_c01257{width:15.615000px;}
._12_c01257{width:22.881000px;}
._1_c01257{width:384.069000px;}
.fc2_c01257{color:transparent;}
.fc1_c01257{color:rgb(128,128,128);}
.fc0_c01257{color:rgb(0,0,0);}
.fs4_c01257{font-size:48.000000px;}
.fs2_c01257{font-size:63.000000px;}
.fs3_c01257{font-size:66.000000px;}
.fs1_c01257{font-size:72.000000px;}
.fs0_c01257{font-size:87.000000px;}
.y0_c01257{bottom:0.000000px;}
.y1f_c01257{bottom:3.105000px;}
.y1e_c01257{bottom:7.228357px;}
.y1d_c01257{bottom:46.680000px;}
.y1c_c01257{bottom:69.180000px;}
.y1b_c01257{bottom:97.230000px;}
.y1a_c01257{bottom:120.480000px;}
.y19_c01257{bottom:145.530000px;}
.y18_c01257{bottom:170.880000px;}
.y17_c01257{bottom:197.130000px;}
.y16_c01257{bottom:222.030000px;}
.y15_c01257{bottom:246.780000px;}
.y14_c01257{bottom:272.430000px;}
.y13_c01257{bottom:297.630000px;}
.y12_c01257{bottom:322.980000px;}
.y11_c01257{bottom:347.730000px;}
.y10_c01257{bottom:373.230000px;}
.yf_c01257{bottom:398.280000px;}
.ye_c01257{bottom:421.830000px;}
.yd_c01257{bottom:446.280000px;}
.yc_c01257{bottom:471.180000px;}
.yb_c01257{bottom:496.230000px;}
.ya_c01257{bottom:521.430000px;}
.y9_c01257{bottom:546.180000px;}
.y8_c01257{bottom:571.380000px;}
.y7_c01257{bottom:596.430000px;}
.y6_c01257{bottom:621.630000px;}
.y5_c01257{bottom:646.380000px;}
.y4_c01257{bottom:671.580000px;}
.y3_c01257{bottom:696.030000px;}
.y2_c01257{bottom:721.530000px;}
.y1_c01257{bottom:747.330000px;}
.h5_c01257{height:13.200074px;}
.h6_c01257{height:43.804688px;}
.h4_c01257{height:70.422000px;}
.h3_c01257{height:91.160156px;}
.h2_c01257{height:110.151855px;}
.h1_c01257{height:798.000000px;}
.h0_c01257{height:798.150000px;}
.w2_c01257{width:104.875500px;}
.w1_c01257{width:528.000000px;}
.w0_c01257{width:528.150000px;}
.x0_c01257{left:0.000000px;}
.x4_c01257{left:102.300000px;}
.x5_c01257{left:103.650000px;}
.x3_c01257{left:104.850000px;}
.x2_c01257{left:106.650000px;}
.x1_c01257{left:108.000000px;}
.x6_c01257{left:109.050000px;}
.x7_c01257{left:110.700000px;}
.x9_c01257{left:215.889267px;}
.x8_c01257{left:440.550000px;}
@media print{
.v0_c01257{vertical-align:0.000000pt;}
.ls1_c01257{letter-spacing:-2.666667pt;}
.ls0_c01257{letter-spacing:0.000000pt;}
.ls2_c01257{letter-spacing:2.666667pt;}
.ls3_c01257{letter-spacing:5.333333pt;}
.ws0_c01257{word-spacing:-32.984000pt;}
.ws1_c01257{word-spacing:-18.090667pt;}
.ws2_c01257{word-spacing:0.000000pt;}
._0_c01257{margin-left:-36.424000pt;}
._14_c01257{margin-left:-12.458667pt;}
._11_c01257{margin-left:-9.933333pt;}
._4_c01257{margin-left:-8.242667pt;}
._10_c01257{margin-left:-7.130667pt;}
._b_c01257{margin-left:-6.069333pt;}
._d_c01257{margin-left:-5.013333pt;}
._c_c01257{margin-left:-3.960000pt;}
._5_c01257{margin-left:-2.920000pt;}
._8_c01257{margin-left:-1.448000pt;}
._2_c01257{width:1.469333pt;}
._3_c01257{width:2.370667pt;}
._6_c01257{width:3.522667pt;}
._9_c01257{width:4.672000pt;}
._7_c01257{width:6.016000pt;}
._a_c01257{width:7.280000pt;}
._f_c01257{width:8.581333pt;}
._e_c01257{width:9.794667pt;}
._13_c01257{width:13.880000pt;}
._12_c01257{width:20.338667pt;}
._1_c01257{width:341.394667pt;}
.fs4_c01257{font-size:42.666667pt;}
.fs2_c01257{font-size:56.000000pt;}
.fs3_c01257{font-size:58.666667pt;}
.fs1_c01257{font-size:64.000000pt;}
.fs0_c01257{font-size:77.333333pt;}
.y0_c01257{bottom:0.000000pt;}
.y1f_c01257{bottom:2.760000pt;}
.y1e_c01257{bottom:6.425206pt;}
.y1d_c01257{bottom:41.493333pt;}
.y1c_c01257{bottom:61.493333pt;}
.y1b_c01257{bottom:86.426667pt;}
.y1a_c01257{bottom:107.093333pt;}
.y19_c01257{bottom:129.360000pt;}
.y18_c01257{bottom:151.893333pt;}
.y17_c01257{bottom:175.226667pt;}
.y16_c01257{bottom:197.360000pt;}
.y15_c01257{bottom:219.360000pt;}
.y14_c01257{bottom:242.160000pt;}
.y13_c01257{bottom:264.560000pt;}
.y12_c01257{bottom:287.093333pt;}
.y11_c01257{bottom:309.093333pt;}
.y10_c01257{bottom:331.760000pt;}
.yf_c01257{bottom:354.026667pt;}
.ye_c01257{bottom:374.960000pt;}
.yd_c01257{bottom:396.693333pt;}
.yc_c01257{bottom:418.826667pt;}
.yb_c01257{bottom:441.093333pt;}
.ya_c01257{bottom:463.493333pt;}
.y9_c01257{bottom:485.493333pt;}
.y8_c01257{bottom:507.893333pt;}
.y7_c01257{bottom:530.160000pt;}
.y6_c01257{bottom:552.560000pt;}
.y5_c01257{bottom:574.560000pt;}
.y4_c01257{bottom:596.960000pt;}
.y3_c01257{bottom:618.693333pt;}
.y2_c01257{bottom:641.360000pt;}
.y1_c01257{bottom:664.293333pt;}
.h5_c01257{height:11.733399pt;}
.h6_c01257{height:38.937500pt;}
.h4_c01257{height:62.597333pt;}
.h3_c01257{height:81.031250pt;}
.h2_c01257{height:97.912760pt;}
.h1_c01257{height:709.333333pt;}
.h0_c01257{height:709.466667pt;}
.w2_c01257{width:93.222667pt;}
.w1_c01257{width:469.333333pt;}
.w0_c01257{width:469.466667pt;}
.x0_c01257{left:0.000000pt;}
.x4_c01257{left:90.933333pt;}
.x5_c01257{left:92.133333pt;}
.x3_c01257{left:93.200000pt;}
.x2_c01257{left:94.800000pt;}
.x1_c01257{left:96.000000pt;}
.x6_c01257{left:96.933333pt;}
.x7_c01257{left:98.400000pt;}
.x9_c01257{left:191.901571pt;}
.x8_c01257{left:391.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ddf0a5ee0c1e1ebdc2f403a.woff2')format("woff");}.ff1_c01258{font-family:ff1_c01258;line-height:1.480469;font-style:normal;font-weight:normal;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_aecfe2f7c50f63e64374902c.woff2')format("woff");}.ff2_c01258{font-family:ff2_c01258;line-height:1.568848;font-style:normal;font-weight:normal;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_eafb0d2a1daf6b26d166dc22.woff2')format("woff");}.ff3_c01258{font-family:ff3_c01258;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01258{font-family:ff4_c01258;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01258{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01258{vertical-align:0.000000px;}
.ls1_c01258{letter-spacing:0.000000px;}
.ls0_c01258{letter-spacing:3.000000px;}
.ls2_c01258{letter-spacing:6.000000px;}
.sc__c01258{text-shadow:none;}
.sc0_c01258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01258{-webkit-text-stroke:0px transparent;}
.sc0_c01258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01258{word-spacing:-23.352000px;}
.ws0_c01258{word-spacing:-21.183000px;}
.ws3_c01258{word-spacing:-20.352000px;}
.ws2_c01258{word-spacing:-12.207000px;}
.ws4_c01258{word-spacing:0.000000px;}
._9_c01258{margin-left:-20.181000px;}
._17_c01258{margin-left:-16.920000px;}
._18_c01258{margin-left:-15.624000px;}
._c_c01258{margin-left:-11.625000px;}
._7_c01258{margin-left:-10.044000px;}
._16_c01258{margin-left:-8.910000px;}
._b_c01258{margin-left:-7.905000px;}
._11_c01258{margin-left:-6.048000px;}
._10_c01258{margin-left:-4.470000px;}
._a_c01258{margin-left:-2.883000px;}
._2_c01258{margin-left:-1.080000px;}
._e_c01258{width:1.656000px;}
._d_c01258{width:3.528000px;}
._f_c01258{width:4.536000px;}
._4_c01258{width:5.760000px;}
._5_c01258{width:7.500000px;}
._3_c01258{width:9.720000px;}
._13_c01258{width:10.800000px;}
._12_c01258{width:12.492000px;}
._14_c01258{width:14.055000px;}
._15_c01258{width:15.267000px;}
._1_c01258{width:22.980000px;}
._0_c01258{width:35.460000px;}
._6_c01258{width:68.877000px;}
._19_c01258{width:102.099000px;}
._8_c01258{width:173.166000px;}
.fc2_c01258{color:transparent;}
.fc1_c01258{color:rgb(128,128,128);}
.fc0_c01258{color:rgb(0,0,0);}
.fs4_c01258{font-size:39.000000px;}
.fs6_c01258{font-size:48.000000px;}
.fs0_c01258{font-size:60.000000px;}
.fs3_c01258{font-size:63.000000px;}
.fs5_c01258{font-size:66.000000px;}
.fs2_c01258{font-size:72.000000px;}
.fs1_c01258{font-size:93.000000px;}
.y0_c01258{bottom:0.000000px;}
.y1f_c01258{bottom:3.105000px;}
.y1e_c01258{bottom:7.228363px;}
.y1d_c01258{bottom:38.250000px;}
.y1c_c01258{bottom:67.200000px;}
.y1b_c01258{bottom:92.250000px;}
.y1a_c01258{bottom:117.450000px;}
.y19_c01258{bottom:143.550000px;}
.y18_c01258{bottom:165.450000px;}
.y17_c01258{bottom:193.350000px;}
.y16_c01258{bottom:219.000000px;}
.y15_c01258{bottom:243.750000px;}
.y14_c01258{bottom:268.350000px;}
.y13_c01258{bottom:292.350000px;}
.y12_c01258{bottom:318.600000px;}
.y11_c01258{bottom:342.900000px;}
.y10_c01258{bottom:367.500000px;}
.yf_c01258{bottom:392.100000px;}
.ye_c01258{bottom:415.500000px;}
.yd_c01258{bottom:440.100000px;}
.yc_c01258{bottom:465.150000px;}
.yb_c01258{bottom:489.750000px;}
.ya_c01258{bottom:514.050000px;}
.y9_c01258{bottom:537.900000px;}
.y8_c01258{bottom:562.650000px;}
.y7_c01258{bottom:587.850000px;}
.y6_c01258{bottom:611.850000px;}
.y5_c01258{bottom:636.900000px;}
.y4_c01258{bottom:661.800000px;}
.y3_c01258{bottom:686.550000px;}
.y2_c01258{bottom:711.750000px;}
.y1_c01258{bottom:736.800000px;}
.h5_c01258{height:13.200074px;}
.h6_c01258{height:43.804688px;}
.h4_c01258{height:83.563477px;}
.h3_c01258{height:91.160156px;}
.h2_c01258{height:117.748535px;}
.h1_c01258{height:786.750000px;}
.h0_c01258{height:787.050000px;}
.w2_c01258{width:104.875500px;}
.w1_c01258{width:531.750000px;}
.w0_c01258{width:531.900000px;}
.x0_c01258{left:0.000000px;}
.x2_c01258{left:34.500000px;}
.x3_c01258{left:41.250000px;}
.x4_c01258{left:42.900000px;}
.x5_c01258{left:44.850000px;}
.x6_c01258{left:45.900000px;}
.x7_c01258{left:65.850000px;}
.x1_c01258{left:150.600000px;}
.x9_c01258{left:217.764267px;}
.x8_c01258{left:390.600000px;}
@media print{
.v0_c01258{vertical-align:0.000000pt;}
.ls1_c01258{letter-spacing:0.000000pt;}
.ls0_c01258{letter-spacing:2.666667pt;}
.ls2_c01258{letter-spacing:5.333333pt;}
.ws1_c01258{word-spacing:-20.757333pt;}
.ws0_c01258{word-spacing:-18.829333pt;}
.ws3_c01258{word-spacing:-18.090667pt;}
.ws2_c01258{word-spacing:-10.850667pt;}
.ws4_c01258{word-spacing:0.000000pt;}
._9_c01258{margin-left:-17.938667pt;}
._17_c01258{margin-left:-15.040000pt;}
._18_c01258{margin-left:-13.888000pt;}
._c_c01258{margin-left:-10.333333pt;}
._7_c01258{margin-left:-8.928000pt;}
._16_c01258{margin-left:-7.920000pt;}
._b_c01258{margin-left:-7.026667pt;}
._11_c01258{margin-left:-5.376000pt;}
._10_c01258{margin-left:-3.973333pt;}
._a_c01258{margin-left:-2.562667pt;}
._2_c01258{margin-left:-0.960000pt;}
._e_c01258{width:1.472000pt;}
._d_c01258{width:3.136000pt;}
._f_c01258{width:4.032000pt;}
._4_c01258{width:5.120000pt;}
._5_c01258{width:6.666667pt;}
._3_c01258{width:8.640000pt;}
._13_c01258{width:9.600000pt;}
._12_c01258{width:11.104000pt;}
._14_c01258{width:12.493333pt;}
._15_c01258{width:13.570667pt;}
._1_c01258{width:20.426667pt;}
._0_c01258{width:31.520000pt;}
._6_c01258{width:61.224000pt;}
._19_c01258{width:90.754667pt;}
._8_c01258{width:153.925333pt;}
.fs4_c01258{font-size:34.666667pt;}
.fs6_c01258{font-size:42.666667pt;}
.fs0_c01258{font-size:53.333333pt;}
.fs3_c01258{font-size:56.000000pt;}
.fs5_c01258{font-size:58.666667pt;}
.fs2_c01258{font-size:64.000000pt;}
.fs1_c01258{font-size:82.666667pt;}
.y0_c01258{bottom:0.000000pt;}
.y1f_c01258{bottom:2.760000pt;}
.y1e_c01258{bottom:6.425212pt;}
.y1d_c01258{bottom:34.000000pt;}
.y1c_c01258{bottom:59.733333pt;}
.y1b_c01258{bottom:82.000000pt;}
.y1a_c01258{bottom:104.400000pt;}
.y19_c01258{bottom:127.600000pt;}
.y18_c01258{bottom:147.066667pt;}
.y17_c01258{bottom:171.866667pt;}
.y16_c01258{bottom:194.666667pt;}
.y15_c01258{bottom:216.666667pt;}
.y14_c01258{bottom:238.533333pt;}
.y13_c01258{bottom:259.866667pt;}
.y12_c01258{bottom:283.200000pt;}
.y11_c01258{bottom:304.800000pt;}
.y10_c01258{bottom:326.666667pt;}
.yf_c01258{bottom:348.533333pt;}
.ye_c01258{bottom:369.333333pt;}
.yd_c01258{bottom:391.200000pt;}
.yc_c01258{bottom:413.466667pt;}
.yb_c01258{bottom:435.333333pt;}
.ya_c01258{bottom:456.933333pt;}
.y9_c01258{bottom:478.133333pt;}
.y8_c01258{bottom:500.133333pt;}
.y7_c01258{bottom:522.533333pt;}
.y6_c01258{bottom:543.866667pt;}
.y5_c01258{bottom:566.133333pt;}
.y4_c01258{bottom:588.266667pt;}
.y3_c01258{bottom:610.266667pt;}
.y2_c01258{bottom:632.666667pt;}
.y1_c01258{bottom:654.933333pt;}
.h5_c01258{height:11.733399pt;}
.h6_c01258{height:38.937500pt;}
.h4_c01258{height:74.278646pt;}
.h3_c01258{height:81.031250pt;}
.h2_c01258{height:104.665365pt;}
.h1_c01258{height:699.333333pt;}
.h0_c01258{height:699.600000pt;}
.w2_c01258{width:93.222667pt;}
.w1_c01258{width:472.666667pt;}
.w0_c01258{width:472.800000pt;}
.x0_c01258{left:0.000000pt;}
.x2_c01258{left:30.666667pt;}
.x3_c01258{left:36.666667pt;}
.x4_c01258{left:38.133333pt;}
.x5_c01258{left:39.866667pt;}
.x6_c01258{left:40.800000pt;}
.x7_c01258{left:58.533333pt;}
.x1_c01258{left:133.866667pt;}
.x9_c01258{left:193.568237pt;}
.x8_c01258{left:347.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a36fbe2fbf609e04c8923c71.woff2')format("woff");}.ff1_c01259{font-family:ff1_c01259;line-height:1.480469;font-style:normal;font-weight:normal;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_1ca102d80950897e164a3083.woff2')format("woff");}.ff2_c01259{font-family:ff2_c01259;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01259{font-family:ff3_c01259;line-height:1.219238;font-style: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;}
.ls1_c01259{letter-spacing:-3.000000px;}
.ls3_c01259{letter-spacing:0.000000px;}
.ls0_c01259{letter-spacing:0.417000px;}
.ls2_c01259{letter-spacing:3.000000px;}
.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;}
}
.ws2_c01259{word-spacing:-20.352000px;}
.ws1_c01259{word-spacing:-19.521000px;}
.ws3_c01259{word-spacing:-16.629000px;}
.ws4_c01259{word-spacing:0.000000px;}
.ws0_c01259{word-spacing:8.160000px;}
._f_c01259{margin-left:-11.319000px;}
._15_c01259{margin-left:-10.299000px;}
._a_c01259{margin-left:-8.658000px;}
._11_c01259{margin-left:-7.188000px;}
._b_c01259{margin-left:-6.081000px;}
._c_c01259{margin-left:-5.046000px;}
._8_c01259{margin-left:-4.035000px;}
._6_c01259{margin-left:-3.024000px;}
._2_c01259{margin-left:-1.914000px;}
._0_c01259{width:1.131000px;}
._1_c01259{width:2.262000px;}
._d_c01259{width:3.339000px;}
._3_c01259{width:4.350000px;}
._5_c01259{width:6.261000px;}
._4_c01259{width:7.872000px;}
._7_c01259{width:9.414000px;}
._9_c01259{width:10.632000px;}
._12_c01259{width:12.528000px;}
._14_c01259{width:13.530000px;}
._e_c01259{width:18.744000px;}
._10_c01259{width:29.058000px;}
._17_c01259{width:31.824000px;}
._16_c01259{width:39.810000px;}
._13_c01259{width:193.611000px;}
.fc2_c01259{color:transparent;}
.fc1_c01259{color:rgb(128,128,128);}
.fc0_c01259{color:rgb(0,0,0);}
.fs5_c01259{font-size:48.000000px;}
.fs3_c01259{font-size:63.000000px;}
.fs4_c01259{font-size:69.000000px;}
.fs1_c01259{font-size:72.000000px;}
.fs2_c01259{font-size:81.000000px;}
.fs0_c01259{font-size:87.000000px;}
.y0_c01259{bottom:0.000000px;}
.y1f_c01259{bottom:3.105000px;}
.y1e_c01259{bottom:7.228355px;}
.y1d_c01259{bottom:35.685000px;}
.y1c_c01259{bottom:57.585000px;}
.y1b_c01259{bottom:81.885000px;}
.y1a_c01259{bottom:107.685000px;}
.y19_c01259{bottom:133.185000px;}
.y18_c01259{bottom:157.935000px;}
.y17_c01259{bottom:184.185000px;}
.y16_c01259{bottom:208.785000px;}
.y15_c01259{bottom:233.235000px;}
.y14_c01259{bottom:258.735000px;}
.y13_c01259{bottom:284.385000px;}
.y12_c01259{bottom:308.835000px;}
.y11_c01259{bottom:334.185000px;}
.y10_c01259{bottom:358.785000px;}
.yf_c01259{bottom:383.385000px;}
.ye_c01259{bottom:407.685000px;}
.yd_c01259{bottom:432.285000px;}
.yc_c01259{bottom:456.585000px;}
.yb_c01259{bottom:481.935000px;}
.ya_c01259{bottom:506.835000px;}
.y9_c01259{bottom:531.585000px;}
.y8_c01259{bottom:556.185000px;}
.y7_c01259{bottom:581.385000px;}
.y6_c01259{bottom:606.735000px;}
.y5_c01259{bottom:630.435000px;}
.y4_c01259{bottom:654.435000px;}
.y3_c01259{bottom:680.685000px;}
.y2_c01259{bottom:704.685000px;}
.y1_c01259{bottom:731.235000px;}
.h6_c01259{height:13.200074px;}
.h7_c01259{height:43.804688px;}
.h5_c01259{height:87.361816px;}
.h3_c01259{height:91.160156px;}
.h4_c01259{height:94.803223px;}
.h2_c01259{height:110.151855px;}
.h0_c01259{height:790.275000px;}
.h1_c01259{height:790.500000px;}
.w2_c01259{width:104.875500px;}
.w1_c01259{width:521.250000px;}
.w0_c01259{width:521.400000px;}
.x0_c01259{left:0.000000px;}
.x8_c01259{left:103.650000px;}
.x7_c01259{left:105.000000px;}
.x6_c01259{left:106.650000px;}
.x5_c01259{left:108.600000px;}
.x4_c01259{left:109.950000px;}
.x3_c01259{left:111.600000px;}
.x2_c01259{left:112.800000px;}
.xa_c01259{left:212.514267px;}
.x1_c01259{left:220.350000px;}
.x9_c01259{left:456.900000px;}
@media print{
.v0_c01259{vertical-align:0.000000pt;}
.ls1_c01259{letter-spacing:-2.666667pt;}
.ls3_c01259{letter-spacing:0.000000pt;}
.ls0_c01259{letter-spacing:0.370667pt;}
.ls2_c01259{letter-spacing:2.666667pt;}
.ws2_c01259{word-spacing:-18.090667pt;}
.ws1_c01259{word-spacing:-17.352000pt;}
.ws3_c01259{word-spacing:-14.781333pt;}
.ws4_c01259{word-spacing:0.000000pt;}
.ws0_c01259{word-spacing:7.253333pt;}
._f_c01259{margin-left:-10.061333pt;}
._15_c01259{margin-left:-9.154667pt;}
._a_c01259{margin-left:-7.696000pt;}
._11_c01259{margin-left:-6.389333pt;}
._b_c01259{margin-left:-5.405333pt;}
._c_c01259{margin-left:-4.485333pt;}
._8_c01259{margin-left:-3.586667pt;}
._6_c01259{margin-left:-2.688000pt;}
._2_c01259{margin-left:-1.701333pt;}
._0_c01259{width:1.005333pt;}
._1_c01259{width:2.010667pt;}
._d_c01259{width:2.968000pt;}
._3_c01259{width:3.866667pt;}
._5_c01259{width:5.565333pt;}
._4_c01259{width:6.997333pt;}
._7_c01259{width:8.368000pt;}
._9_c01259{width:9.450667pt;}
._12_c01259{width:11.136000pt;}
._14_c01259{width:12.026667pt;}
._e_c01259{width:16.661333pt;}
._10_c01259{width:25.829333pt;}
._17_c01259{width:28.288000pt;}
._16_c01259{width:35.386667pt;}
._13_c01259{width:172.098667pt;}
.fs5_c01259{font-size:42.666667pt;}
.fs3_c01259{font-size:56.000000pt;}
.fs4_c01259{font-size:61.333333pt;}
.fs1_c01259{font-size:64.000000pt;}
.fs2_c01259{font-size:72.000000pt;}
.fs0_c01259{font-size:77.333333pt;}
.y0_c01259{bottom:0.000000pt;}
.y1f_c01259{bottom:2.760000pt;}
.y1e_c01259{bottom:6.425204pt;}
.y1d_c01259{bottom:31.720000pt;}
.y1c_c01259{bottom:51.186667pt;}
.y1b_c01259{bottom:72.786667pt;}
.y1a_c01259{bottom:95.720000pt;}
.y19_c01259{bottom:118.386667pt;}
.y18_c01259{bottom:140.386667pt;}
.y17_c01259{bottom:163.720000pt;}
.y16_c01259{bottom:185.586667pt;}
.y15_c01259{bottom:207.320000pt;}
.y14_c01259{bottom:229.986667pt;}
.y13_c01259{bottom:252.786667pt;}
.y12_c01259{bottom:274.520000pt;}
.y11_c01259{bottom:297.053333pt;}
.y10_c01259{bottom:318.920000pt;}
.yf_c01259{bottom:340.786667pt;}
.ye_c01259{bottom:362.386667pt;}
.yd_c01259{bottom:384.253333pt;}
.yc_c01259{bottom:405.853333pt;}
.yb_c01259{bottom:428.386667pt;}
.ya_c01259{bottom:450.520000pt;}
.y9_c01259{bottom:472.520000pt;}
.y8_c01259{bottom:494.386667pt;}
.y7_c01259{bottom:516.786667pt;}
.y6_c01259{bottom:539.320000pt;}
.y5_c01259{bottom:560.386667pt;}
.y4_c01259{bottom:581.720000pt;}
.y3_c01259{bottom:605.053333pt;}
.y2_c01259{bottom:626.386667pt;}
.y1_c01259{bottom:649.986667pt;}
.h6_c01259{height:11.733399pt;}
.h7_c01259{height:38.937500pt;}
.h5_c01259{height:77.654948pt;}
.h3_c01259{height:81.031250pt;}
.h4_c01259{height:84.269531pt;}
.h2_c01259{height:97.912760pt;}
.h0_c01259{height:702.466667pt;}
.h1_c01259{height:702.666667pt;}
.w2_c01259{width:93.222667pt;}
.w1_c01259{width:463.333333pt;}
.w0_c01259{width:463.466667pt;}
.x0_c01259{left:0.000000pt;}
.x8_c01259{left:92.133333pt;}
.x7_c01259{left:93.333333pt;}
.x6_c01259{left:94.800000pt;}
.x5_c01259{left:96.533333pt;}
.x4_c01259{left:97.733333pt;}
.x3_c01259{left:99.200000pt;}
.x2_c01259{left:100.266667pt;}
.xa_c01259{left:188.901571pt;}
.x1_c01259{left:195.866667pt;}
.x9_c01259{left:406.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f928b75bb564ac848d0c6301.woff2')format("woff");}.ff1_c01260{font-family:ff1_c01260;line-height:1.284180;font-style:normal;font-weight:normal;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_8e5db88e9053f3d7f496626a.woff2')format("woff");}.ff2_c01260{font-family:ff2_c01260;line-height:1.284668;font-style:normal;font-weight:normal;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_169517c8e6ba98d9af157979.woff2')format("woff");}.ff3_c01260{font-family:ff3_c01260;line-height:1.568848;font-style:normal;font-weight:normal;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_ab5813a39c953422c8eb5ba4.woff2')format("woff");}.ff4_c01260{font-family:ff4_c01260;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01260{font-family:ff5_c01260;line-height:1.219238;font-style: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);}
.v0_c01260{vertical-align:0.000000px;}
.ls3_c01260{letter-spacing:0.000000px;}
.ls1_c01260{letter-spacing:2.388000px;}
.ls2_c01260{letter-spacing:3.000000px;}
.ls4_c01260{letter-spacing:6.000000px;}
.ls0_c01260{letter-spacing:19.188000px;}
.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;}
}
.ws0_c01260{word-spacing:-22.629000px;}
.ws1_c01260{word-spacing:0.000000px;}
._19_c01260{margin-left:-39.804000px;}
._18_c01260{margin-left:-25.272000px;}
._17_c01260{margin-left:-22.476000px;}
._13_c01260{margin-left:-15.444000px;}
._1a_c01260{margin-left:-14.235000px;}
._15_c01260{margin-left:-12.888000px;}
._11_c01260{margin-left:-11.712000px;}
._14_c01260{margin-left:-9.948000px;}
._c_c01260{margin-left:-8.808000px;}
._e_c01260{margin-left:-7.212000px;}
._8_c01260{margin-left:-5.964000px;}
._2_c01260{margin-left:-4.788000px;}
._f_c01260{margin-left:-3.540000px;}
._a_c01260{margin-left:-2.376000px;}
._9_c01260{margin-left:-1.332000px;}
._b_c01260{width:1.092000px;}
._3_c01260{width:2.184000px;}
._4_c01260{width:3.864000px;}
._5_c01260{width:5.460000px;}
._1_c01260{width:6.468000px;}
._d_c01260{width:8.292000px;}
._0_c01260{width:10.752000px;}
._7_c01260{width:12.012000px;}
._10_c01260{width:14.154000px;}
._12_c01260{width:63.480000px;}
._16_c01260{width:115.560000px;}
._6_c01260{width:304.500000px;}
.fc2_c01260{color:transparent;}
.fc1_c01260{color:rgb(128,128,128);}
.fc0_c01260{color:rgb(0,0,0);}
.fs6_c01260{font-size:48.000000px;}
.fs3_c01260{font-size:57.000000px;}
.fs4_c01260{font-size:63.000000px;}
.fs5_c01260{font-size:69.000000px;}
.fs2_c01260{font-size:72.000000px;}
.fs1_c01260{font-size:81.000000px;}
.fs0_c01260{font-size:84.000000px;}
.y0_c01260{bottom:0.000000px;}
.y1f_c01260{bottom:3.105000px;}
.y1e_c01260{bottom:7.228355px;}
.y1d_c01260{bottom:47.535000px;}
.y1c_c01260{bottom:73.185000px;}
.y1b_c01260{bottom:99.885000px;}
.y1a_c01260{bottom:125.535000px;}
.y19_c01260{bottom:150.735000px;}
.y18_c01260{bottom:176.085000px;}
.y17_c01260{bottom:200.685000px;}
.y16_c01260{bottom:226.035000px;}
.y15_c01260{bottom:250.635000px;}
.y14_c01260{bottom:276.285000px;}
.y13_c01260{bottom:301.335000px;}
.y12_c01260{bottom:325.635000px;}
.y11_c01260{bottom:350.235000px;}
.y10_c01260{bottom:374.835000px;}
.yf_c01260{bottom:399.285000px;}
.ye_c01260{bottom:423.135000px;}
.yd_c01260{bottom:447.435000px;}
.yc_c01260{bottom:471.735000px;}
.yb_c01260{bottom:496.335000px;}
.ya_c01260{bottom:521.685000px;}
.y9_c01260{bottom:544.335000px;}
.y8_c01260{bottom:568.935000px;}
.y7_c01260{bottom:593.535000px;}
.y6_c01260{bottom:617.835000px;}
.y5_c01260{bottom:642.885000px;}
.y4_c01260{bottom:667.785000px;}
.y3_c01260{bottom:692.235000px;}
.y2_c01260{bottom:717.135000px;}
.y1_c01260{bottom:742.485000px;}
.h5_c01260{height:13.200074px;}
.h6_c01260{height:43.804688px;}
.h2_c01260{height:82.400391px;}
.h4_c01260{height:87.361816px;}
.h3_c01260{height:91.160156px;}
.h1_c01260{height:779.250000px;}
.h0_c01260{height:779.475000px;}
.w2_c01260{width:104.875500px;}
.w0_c01260{width:515.700000px;}
.w1_c01260{width:516.000000px;}
.x0_c01260{left:0.000000px;}
.x7_c01260{left:22.200000px;}
.x6_c01260{left:23.250000px;}
.x2_c01260{left:24.600000px;}
.x3_c01260{left:25.950000px;}
.x5_c01260{left:27.000000px;}
.x4_c01260{left:28.050000px;}
.x1_c01260{left:134.550000px;}
.x9_c01260{left:209.664230px;}
.x8_c01260{left:362.100000px;}
@media print{
.v0_c01260{vertical-align:0.000000pt;}
.ls3_c01260{letter-spacing:0.000000pt;}
.ls1_c01260{letter-spacing:2.122667pt;}
.ls2_c01260{letter-spacing:2.666667pt;}
.ls4_c01260{letter-spacing:5.333333pt;}
.ls0_c01260{letter-spacing:17.056000pt;}
.ws0_c01260{word-spacing:-20.114667pt;}
.ws1_c01260{word-spacing:0.000000pt;}
._19_c01260{margin-left:-35.381333pt;}
._18_c01260{margin-left:-22.464000pt;}
._17_c01260{margin-left:-19.978667pt;}
._13_c01260{margin-left:-13.728000pt;}
._1a_c01260{margin-left:-12.653333pt;}
._15_c01260{margin-left:-11.456000pt;}
._11_c01260{margin-left:-10.410667pt;}
._14_c01260{margin-left:-8.842667pt;}
._c_c01260{margin-left:-7.829333pt;}
._e_c01260{margin-left:-6.410667pt;}
._8_c01260{margin-left:-5.301333pt;}
._2_c01260{margin-left:-4.256000pt;}
._f_c01260{margin-left:-3.146667pt;}
._a_c01260{margin-left:-2.112000pt;}
._9_c01260{margin-left:-1.184000pt;}
._b_c01260{width:0.970667pt;}
._3_c01260{width:1.941333pt;}
._4_c01260{width:3.434667pt;}
._5_c01260{width:4.853333pt;}
._1_c01260{width:5.749333pt;}
._d_c01260{width:7.370667pt;}
._0_c01260{width:9.557333pt;}
._7_c01260{width:10.677333pt;}
._10_c01260{width:12.581333pt;}
._12_c01260{width:56.426667pt;}
._16_c01260{width:102.720000pt;}
._6_c01260{width:270.666667pt;}
.fs6_c01260{font-size:42.666667pt;}
.fs3_c01260{font-size:50.666667pt;}
.fs4_c01260{font-size:56.000000pt;}
.fs5_c01260{font-size:61.333333pt;}
.fs2_c01260{font-size:64.000000pt;}
.fs1_c01260{font-size:72.000000pt;}
.fs0_c01260{font-size:74.666667pt;}
.y0_c01260{bottom:0.000000pt;}
.y1f_c01260{bottom:2.760000pt;}
.y1e_c01260{bottom:6.425204pt;}
.y1d_c01260{bottom:42.253333pt;}
.y1c_c01260{bottom:65.053333pt;}
.y1b_c01260{bottom:88.786667pt;}
.y1a_c01260{bottom:111.586667pt;}
.y19_c01260{bottom:133.986667pt;}
.y18_c01260{bottom:156.520000pt;}
.y17_c01260{bottom:178.386667pt;}
.y16_c01260{bottom:200.920000pt;}
.y15_c01260{bottom:222.786667pt;}
.y14_c01260{bottom:245.586667pt;}
.y13_c01260{bottom:267.853333pt;}
.y12_c01260{bottom:289.453333pt;}
.y11_c01260{bottom:311.320000pt;}
.y10_c01260{bottom:333.186667pt;}
.yf_c01260{bottom:354.920000pt;}
.ye_c01260{bottom:376.120000pt;}
.yd_c01260{bottom:397.720000pt;}
.yc_c01260{bottom:419.320000pt;}
.yb_c01260{bottom:441.186667pt;}
.ya_c01260{bottom:463.720000pt;}
.y9_c01260{bottom:483.853333pt;}
.y8_c01260{bottom:505.720000pt;}
.y7_c01260{bottom:527.586667pt;}
.y6_c01260{bottom:549.186667pt;}
.y5_c01260{bottom:571.453333pt;}
.y4_c01260{bottom:593.586667pt;}
.y3_c01260{bottom:615.320000pt;}
.y2_c01260{bottom:637.453333pt;}
.y1_c01260{bottom:659.986667pt;}
.h5_c01260{height:11.733399pt;}
.h6_c01260{height:38.937500pt;}
.h2_c01260{height:73.244792pt;}
.h4_c01260{height:77.654948pt;}
.h3_c01260{height:81.031250pt;}
.h1_c01260{height:692.666667pt;}
.h0_c01260{height:692.866667pt;}
.w2_c01260{width:93.222667pt;}
.w0_c01260{width:458.400000pt;}
.w1_c01260{width:458.666667pt;}
.x0_c01260{left:0.000000pt;}
.x7_c01260{left:19.733333pt;}
.x6_c01260{left:20.666667pt;}
.x2_c01260{left:21.866667pt;}
.x3_c01260{left:23.066667pt;}
.x5_c01260{left:24.000000pt;}
.x4_c01260{left:24.933333pt;}
.x1_c01260{left:119.600000pt;}
.x9_c01260{left:186.368205pt;}
.x8_c01260{left:321.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3540f8677c471bbc0eb7befe.woff2')format("woff");}.ff1_c01261{font-family:ff1_c01261;line-height:1.592000;font-style:normal;font-weight:normal;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_b9f6390e08d6e0b437bc2cb1.woff2')format("woff");}.ff2_c01261{font-family:ff2_c01261;line-height:1.284180;font-style:normal;font-weight:normal;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_42ca6a7f4ee780e6466fa4ba.woff2')format("woff");}.ff3_c01261{font-family:ff3_c01261;line-height:1.575000;font-style:normal;font-weight:normal;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_26ad6d2dd5be00b432904e9f.woff2')format("woff");}.ff4_c01261{font-family:ff4_c01261;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01261{font-family:ff5_c01261;line-height:1.219238;font-style: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;}
.ls0_c01261{letter-spacing:-3.000000px;}
.ls1_c01261{letter-spacing:0.000000px;}
.ls3_c01261{letter-spacing:3.000000px;}
.ls2_c01261{letter-spacing:6.000000px;}
.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:-42.000000px;}
.ws1_c01261{word-spacing:-15.780000px;}
.ws2_c01261{word-spacing:0.000000px;}
._6_c01261{margin-left:-22.800000px;}
._f_c01261{margin-left:-9.708000px;}
._d_c01261{margin-left:-7.458000px;}
._c_c01261{margin-left:-5.544000px;}
._e_c01261{margin-left:-4.416000px;}
._b_c01261{margin-left:-2.928000px;}
._9_c01261{margin-left:-1.890000px;}
._3_c01261{width:1.860000px;}
._8_c01261{width:3.396000px;}
._a_c01261{width:4.662000px;}
._13_c01261{width:5.730000px;}
._10_c01261{width:7.032000px;}
._1_c01261{width:8.280000px;}
._7_c01261{width:9.300000px;}
._11_c01261{width:10.734000px;}
._5_c01261{width:12.240000px;}
._2_c01261{width:14.160000px;}
._4_c01261{width:17.940000px;}
._0_c01261{width:19.920000px;}
._12_c01261{width:21.789000px;}
._14_c01261{width:93.084000px;}
._15_c01261{width:1155.792000px;}
.fc2_c01261{color:transparent;}
.fc1_c01261{color:rgb(128,128,128);}
.fc0_c01261{color:rgb(0,0,0);}
.fs5_c01261{font-size:27.000000px;}
.fs6_c01261{font-size:48.000000px;}
.fs0_c01261{font-size:60.000000px;}
.fs3_c01261{font-size:63.000000px;}
.fs2_c01261{font-size:66.000000px;}
.fs4_c01261{font-size:72.000000px;}
.fs1_c01261{font-size:84.000000px;}
.y0_c01261{bottom:0.000000px;}
.y1f_c01261{bottom:3.105000px;}
.y1e_c01261{bottom:7.228369px;}
.y1d_c01261{bottom:50.970000px;}
.y1c_c01261{bottom:74.820000px;}
.y1b_c01261{bottom:101.220000px;}
.y1a_c01261{bottom:126.870000px;}
.y19_c01261{bottom:151.470000px;}
.y18_c01261{bottom:177.570000px;}
.y17_c01261{bottom:202.770000px;}
.y16_c01261{bottom:229.770000px;}
.y15_c01261{bottom:252.720000px;}
.y14_c01261{bottom:277.470000px;}
.y13_c01261{bottom:302.970000px;}
.y12_c01261{bottom:328.020000px;}
.y11_c01261{bottom:353.370000px;}
.y10_c01261{bottom:376.920000px;}
.yf_c01261{bottom:400.920000px;}
.ye_c01261{bottom:425.520000px;}
.yd_c01261{bottom:451.170000px;}
.yc_c01261{bottom:474.120000px;}
.yb_c01261{bottom:500.220000px;}
.ya_c01261{bottom:524.520000px;}
.y9_c01261{bottom:549.420000px;}
.y8_c01261{bottom:575.370000px;}
.y7_c01261{bottom:599.070000px;}
.y6_c01261{bottom:624.270000px;}
.y5_c01261{bottom:649.320000px;}
.y4_c01261{bottom:674.220000px;}
.y3_c01261{bottom:698.520000px;}
.y2_c01261{bottom:723.570000px;}
.y1_c01261{bottom:749.820000px;}
.h4_c01261{height:13.200073px;}
.h5_c01261{height:43.804688px;}
.h1_c01261{height:82.400391px;}
.h2_c01261{height:83.563477px;}
.h3_c01261{height:91.160156px;}
.h0_c01261{height:800.250000px;}
.w2_c01261{width:104.875500px;}
.w1_c01261{width:528.000000px;}
.w0_c01261{width:528.150000px;}
.x0_c01261{left:0.000000px;}
.x4_c01261{left:108.900000px;}
.x2_c01261{left:109.950000px;}
.x3_c01261{left:111.000000px;}
.x5_c01261{left:112.050000px;}
.x6_c01261{left:114.000000px;}
.x1_c01261{left:209.250000px;}
.x7_c01261{left:215.889267px;}
@media print{
.v0_c01261{vertical-align:0.000000pt;}
.ls0_c01261{letter-spacing:-2.666667pt;}
.ls1_c01261{letter-spacing:0.000000pt;}
.ls3_c01261{letter-spacing:2.666667pt;}
.ls2_c01261{letter-spacing:5.333333pt;}
.ws0_c01261{word-spacing:-37.333333pt;}
.ws1_c01261{word-spacing:-14.026667pt;}
.ws2_c01261{word-spacing:0.000000pt;}
._6_c01261{margin-left:-20.266667pt;}
._f_c01261{margin-left:-8.629333pt;}
._d_c01261{margin-left:-6.629333pt;}
._c_c01261{margin-left:-4.928000pt;}
._e_c01261{margin-left:-3.925333pt;}
._b_c01261{margin-left:-2.602667pt;}
._9_c01261{margin-left:-1.680000pt;}
._3_c01261{width:1.653333pt;}
._8_c01261{width:3.018667pt;}
._a_c01261{width:4.144000pt;}
._13_c01261{width:5.093333pt;}
._10_c01261{width:6.250667pt;}
._1_c01261{width:7.360000pt;}
._7_c01261{width:8.266667pt;}
._11_c01261{width:9.541333pt;}
._5_c01261{width:10.880000pt;}
._2_c01261{width:12.586667pt;}
._4_c01261{width:15.946667pt;}
._0_c01261{width:17.706667pt;}
._12_c01261{width:19.368000pt;}
._14_c01261{width:82.741333pt;}
._15_c01261{width:1027.370667pt;}
.fs5_c01261{font-size:24.000000pt;}
.fs6_c01261{font-size:42.666667pt;}
.fs0_c01261{font-size:53.333333pt;}
.fs3_c01261{font-size:56.000000pt;}
.fs2_c01261{font-size:58.666667pt;}
.fs4_c01261{font-size:64.000000pt;}
.fs1_c01261{font-size:74.666667pt;}
.y0_c01261{bottom:0.000000pt;}
.y1f_c01261{bottom:2.760000pt;}
.y1e_c01261{bottom:6.425217pt;}
.y1d_c01261{bottom:45.306667pt;}
.y1c_c01261{bottom:66.506667pt;}
.y1b_c01261{bottom:89.973333pt;}
.y1a_c01261{bottom:112.773333pt;}
.y19_c01261{bottom:134.640000pt;}
.y18_c01261{bottom:157.840000pt;}
.y17_c01261{bottom:180.240000pt;}
.y16_c01261{bottom:204.240000pt;}
.y15_c01261{bottom:224.640000pt;}
.y14_c01261{bottom:246.640000pt;}
.y13_c01261{bottom:269.306667pt;}
.y12_c01261{bottom:291.573333pt;}
.y11_c01261{bottom:314.106667pt;}
.y10_c01261{bottom:335.040000pt;}
.yf_c01261{bottom:356.373333pt;}
.ye_c01261{bottom:378.240000pt;}
.yd_c01261{bottom:401.040000pt;}
.yc_c01261{bottom:421.440000pt;}
.yb_c01261{bottom:444.640000pt;}
.ya_c01261{bottom:466.240000pt;}
.y9_c01261{bottom:488.373333pt;}
.y8_c01261{bottom:511.440000pt;}
.y7_c01261{bottom:532.506667pt;}
.y6_c01261{bottom:554.906667pt;}
.y5_c01261{bottom:577.173333pt;}
.y4_c01261{bottom:599.306667pt;}
.y3_c01261{bottom:620.906667pt;}
.y2_c01261{bottom:643.173333pt;}
.y1_c01261{bottom:666.506667pt;}
.h4_c01261{height:11.733399pt;}
.h5_c01261{height:38.937500pt;}
.h1_c01261{height:73.244792pt;}
.h2_c01261{height:74.278646pt;}
.h3_c01261{height:81.031250pt;}
.h0_c01261{height:711.333333pt;}
.w2_c01261{width:93.222667pt;}
.w1_c01261{width:469.333333pt;}
.w0_c01261{width:469.466667pt;}
.x0_c01261{left:0.000000pt;}
.x4_c01261{left:96.800000pt;}
.x2_c01261{left:97.733333pt;}
.x3_c01261{left:98.666667pt;}
.x5_c01261{left:99.600000pt;}
.x6_c01261{left:101.333333pt;}
.x1_c01261{left:186.000000pt;}
.x7_c01261{left:191.901571pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_73d4e877b26ef43741c0c8e3.woff2')format("woff");}.ff1_c01262{font-family:ff1_c01262;line-height:1.480469;font-style:normal;font-weight:normal;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_691a803ed5538954acc47bee.woff2')format("woff");}.ff2_c01262{font-family:ff2_c01262;line-height:1.568848;font-style:normal;font-weight:normal;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_137086de002b03de17bb4b73.woff2')format("woff");}.ff3_c01262{font-family:ff3_c01262;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01262;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01262{font-family:ff4_c01262;line-height:1.219238;font-style: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);}
.v0_c01262{vertical-align:0.000000px;}
.ls1_c01262{letter-spacing:-3.000000px;}
.ls2_c01262{letter-spacing:0.000000px;}
.ls0_c01262{letter-spacing:3.000000px;}
.ls3_c01262{letter-spacing:6.000000px;}
.ls4_c01262{letter-spacing:12.000000px;}
.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;}
}
.ws3_c01262{word-spacing:-20.352000px;}
.ws0_c01262{word-spacing:-17.967000px;}
.ws1_c01262{word-spacing:-17.352000px;}
.ws2_c01262{word-spacing:-16.629000px;}
.ws4_c01262{word-spacing:0.000000px;}
._6_c01262{margin-left:-18.879000px;}
._16_c01262{margin-left:-16.389000px;}
._14_c01262{margin-left:-14.283000px;}
._15_c01262{margin-left:-13.170000px;}
._e_c01262{margin-left:-10.632000px;}
._10_c01262{margin-left:-7.830000px;}
._17_c01262{margin-left:-6.633000px;}
._d_c01262{margin-left:-5.604000px;}
._2_c01262{margin-left:-4.176000px;}
._b_c01262{margin-left:-2.487000px;}
._7_c01262{margin-left:-1.209000px;}
._4_c01262{width:1.653000px;}
._3_c01262{width:2.784000px;}
._8_c01262{width:4.017000px;}
._a_c01262{width:5.199000px;}
._1_c01262{width:6.351000px;}
._9_c01262{width:7.527000px;}
._c_c01262{width:9.411000px;}
._0_c01262{width:10.440000px;}
._11_c01262{width:12.057000px;}
._f_c01262{width:14.124000px;}
._13_c01262{width:15.444000px;}
._12_c01262{width:23.355000px;}
._5_c01262{width:295.533000px;}
._18_c01262{width:297.702000px;}
.fc2_c01262{color:transparent;}
.fc1_c01262{color:rgb(128,128,128);}
.fc0_c01262{color:rgb(0,0,0);}
.fs5_c01262{font-size:48.000000px;}
.fs2_c01262{font-size:66.000000px;}
.fs3_c01262{font-size:69.000000px;}
.fs1_c01262{font-size:72.000000px;}
.fs0_c01262{font-size:87.000000px;}
.fs4_c01262{font-size:93.000000px;}
.y0_c01262{bottom:0.000000px;}
.y1f_c01262{bottom:3.105000px;}
.y1e_c01262{bottom:7.228357px;}
.y1d_c01262{bottom:38.880000px;}
.y1c_c01262{bottom:65.130000px;}
.y1b_c01262{bottom:91.530000px;}
.y1a_c01262{bottom:115.830000px;}
.y19_c01262{bottom:141.780000px;}
.y18_c01262{bottom:166.830000px;}
.y17_c01262{bottom:191.730000px;}
.y16_c01262{bottom:216.780000px;}
.y15_c01262{bottom:242.430000px;}
.y14_c01262{bottom:265.980000px;}
.y13_c01262{bottom:291.930000px;}
.y12_c01262{bottom:316.530000px;}
.y11_c01262{bottom:341.280000px;}
.y10_c01262{bottom:365.580000px;}
.yf_c01262{bottom:389.580000px;}
.ye_c01262{bottom:414.180000px;}
.yd_c01262{bottom:438.780000px;}
.yc_c01262{bottom:463.680000px;}
.yb_c01262{bottom:487.980000px;}
.ya_c01262{bottom:511.980000px;}
.y9_c01262{bottom:535.680000px;}
.y8_c01262{bottom:560.880000px;}
.y7_c01262{bottom:585.180000px;}
.y6_c01262{bottom:609.930000px;}
.y5_c01262{bottom:634.530000px;}
.y4_c01262{bottom:659.430000px;}
.y3_c01262{bottom:684.480000px;}
.y2_c01262{bottom:708.780000px;}
.y1_c01262{bottom:735.030000px;}
.h5_c01262{height:13.200074px;}
.h6_c01262{height:43.804688px;}
.h3_c01262{height:91.160156px;}
.h4_c01262{height:93.726562px;}
.h2_c01262{height:110.151855px;}
.h1_c01262{height:777.750000px;}
.h0_c01262{height:777.900000px;}
.w2_c01262{width:104.875500px;}
.w1_c01262{width:512.250000px;}
.w0_c01262{width:512.475000px;}
.x0_c01262{left:0.000000px;}
.x9_c01262{left:15.900000px;}
.x6_c01262{left:17.550000px;}
.x8_c01262{left:18.600000px;}
.x7_c01262{left:19.800000px;}
.x5_c01262{left:22.500000px;}
.x3_c01262{left:23.550000px;}
.x4_c01262{left:24.600000px;}
.x2_c01262{left:25.650000px;}
.x1_c01262{left:143.850000px;}
.xb_c01262{left:208.051758px;}
.xa_c01262{left:223.350000px;}
@media print{
.v0_c01262{vertical-align:0.000000pt;}
.ls1_c01262{letter-spacing:-2.666667pt;}
.ls2_c01262{letter-spacing:0.000000pt;}
.ls0_c01262{letter-spacing:2.666667pt;}
.ls3_c01262{letter-spacing:5.333333pt;}
.ls4_c01262{letter-spacing:10.666667pt;}
.ws3_c01262{word-spacing:-18.090667pt;}
.ws0_c01262{word-spacing:-15.970667pt;}
.ws1_c01262{word-spacing:-15.424000pt;}
.ws2_c01262{word-spacing:-14.781333pt;}
.ws4_c01262{word-spacing:0.000000pt;}
._6_c01262{margin-left:-16.781333pt;}
._16_c01262{margin-left:-14.568000pt;}
._14_c01262{margin-left:-12.696000pt;}
._15_c01262{margin-left:-11.706667pt;}
._e_c01262{margin-left:-9.450667pt;}
._10_c01262{margin-left:-6.960000pt;}
._17_c01262{margin-left:-5.896000pt;}
._d_c01262{margin-left:-4.981333pt;}
._2_c01262{margin-left:-3.712000pt;}
._b_c01262{margin-left:-2.210667pt;}
._7_c01262{margin-left:-1.074667pt;}
._4_c01262{width:1.469333pt;}
._3_c01262{width:2.474667pt;}
._8_c01262{width:3.570667pt;}
._a_c01262{width:4.621333pt;}
._1_c01262{width:5.645333pt;}
._9_c01262{width:6.690667pt;}
._c_c01262{width:8.365333pt;}
._0_c01262{width:9.280000pt;}
._11_c01262{width:10.717333pt;}
._f_c01262{width:12.554667pt;}
._13_c01262{width:13.728000pt;}
._12_c01262{width:20.760000pt;}
._5_c01262{width:262.696000pt;}
._18_c01262{width:264.624000pt;}
.fs5_c01262{font-size:42.666667pt;}
.fs2_c01262{font-size:58.666667pt;}
.fs3_c01262{font-size:61.333333pt;}
.fs1_c01262{font-size:64.000000pt;}
.fs0_c01262{font-size:77.333333pt;}
.fs4_c01262{font-size:82.666667pt;}
.y0_c01262{bottom:0.000000pt;}
.y1f_c01262{bottom:2.760000pt;}
.y1e_c01262{bottom:6.425206pt;}
.y1d_c01262{bottom:34.560000pt;}
.y1c_c01262{bottom:57.893333pt;}
.y1b_c01262{bottom:81.360000pt;}
.y1a_c01262{bottom:102.960000pt;}
.y19_c01262{bottom:126.026667pt;}
.y18_c01262{bottom:148.293333pt;}
.y17_c01262{bottom:170.426667pt;}
.y16_c01262{bottom:192.693333pt;}
.y15_c01262{bottom:215.493333pt;}
.y14_c01262{bottom:236.426667pt;}
.y13_c01262{bottom:259.493333pt;}
.y12_c01262{bottom:281.360000pt;}
.y11_c01262{bottom:303.360000pt;}
.y10_c01262{bottom:324.960000pt;}
.yf_c01262{bottom:346.293333pt;}
.ye_c01262{bottom:368.160000pt;}
.yd_c01262{bottom:390.026667pt;}
.yc_c01262{bottom:412.160000pt;}
.yb_c01262{bottom:433.760000pt;}
.ya_c01262{bottom:455.093333pt;}
.y9_c01262{bottom:476.160000pt;}
.y8_c01262{bottom:498.560000pt;}
.y7_c01262{bottom:520.160000pt;}
.y6_c01262{bottom:542.160000pt;}
.y5_c01262{bottom:564.026667pt;}
.y4_c01262{bottom:586.160000pt;}
.y3_c01262{bottom:608.426667pt;}
.y2_c01262{bottom:630.026667pt;}
.y1_c01262{bottom:653.360000pt;}
.h5_c01262{height:11.733399pt;}
.h6_c01262{height:38.937500pt;}
.h3_c01262{height:81.031250pt;}
.h4_c01262{height:83.312500pt;}
.h2_c01262{height:97.912760pt;}
.h1_c01262{height:691.333333pt;}
.h0_c01262{height:691.466667pt;}
.w2_c01262{width:93.222667pt;}
.w1_c01262{width:455.333333pt;}
.w0_c01262{width:455.533333pt;}
.x0_c01262{left:0.000000pt;}
.x9_c01262{left:14.133333pt;}
.x6_c01262{left:15.600000pt;}
.x8_c01262{left:16.533333pt;}
.x7_c01262{left:17.600000pt;}
.x5_c01262{left:20.000000pt;}
.x3_c01262{left:20.933333pt;}
.x4_c01262{left:21.866667pt;}
.x2_c01262{left:22.800000pt;}
.x1_c01262{left:127.866667pt;}
.xb_c01262{left:184.934896pt;}
.xa_c01262{left:198.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_287b94c98bcdaa94a37f9cc3.woff2')format("woff");}.ff1_c01263{font-family:ff1_c01263;line-height:1.568848;font-style:normal;font-weight:normal;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_60d606604fb8dd2e70c8fc1f.woff2')format("woff");}.ff2_c01263{font-family:ff2_c01263;line-height:1.480469;font-style:normal;font-weight:normal;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_768c57afa34d6eb1db890679.woff2')format("woff");}.ff3_c01263{font-family:ff3_c01263;line-height:1.592000;font-style:normal;font-weight:normal;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_d42a8f0dda75e0a5f0e7c0b2.woff2')format("woff");}.ff4_c01263{font-family:ff4_c01263;line-height:1.402354;font-style:normal;font-weight:normal;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_f079bfbcc20ba87281342002.woff2')format("woff");}.ff5_c01263{font-family:ff5_c01263;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01263;src:url('chunks/assets/font_b019c63e8e484b8dde8945fc.woff2')format("woff");}.ff6_c01263{font-family:ff6_c01263;line-height:1.575000;font-style:normal;font-weight: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_c01263;src:url('chunks/assets/font_bfd93b850f303a34e4e0d8ac.woff2')format("woff");}.ff7_c01263{font-family:ff7_c01263;line-height:1.575000;font-style:normal;font-weight: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_c01263;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff8_c01263{font-family:ff8_c01263;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01263{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01263{vertical-align:0.000000px;}
.ls3_c01263{letter-spacing:-9.000000px;}
.ls4_c01263{letter-spacing:-3.000000px;}
.ls1_c01263{letter-spacing:0.000000px;}
.ls2_c01263{letter-spacing:3.000000px;}
.ls0_c01263{letter-spacing:15.771000px;}
.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;}
}
.ws3_c01263{word-spacing:-33.340800px;}
.ws1_c01263{word-spacing:-16.629000px;}
.ws0_c01263{word-spacing:-0.150000px;}
.ws4_c01263{word-spacing:0.000000px;}
.ws2_c01263{word-spacing:8.568000px;}
._7_c01263{margin-left:-46.617000px;}
._17_c01263{margin-left:-23.352000px;}
._1d_c01263{margin-left:-13.134000px;}
._1a_c01263{margin-left:-11.325000px;}
._1c_c01263{margin-left:-10.230000px;}
._f_c01263{margin-left:-9.027000px;}
._13_c01263{margin-left:-7.782000px;}
._10_c01263{margin-left:-6.093000px;}
._19_c01263{margin-left:-5.091000px;}
._2_c01263{margin-left:-4.041000px;}
._a_c01263{margin-left:-2.238000px;}
._b_c01263{margin-left:-1.221000px;}
._8_c01263{width:1.080000px;}
._6_c01263{width:2.967000px;}
._16_c01263{width:4.011000px;}
._5_c01263{width:5.037000px;}
._15_c01263{width:6.222000px;}
._3_c01263{width:7.797000px;}
._1b_c01263{width:8.823000px;}
._1_c01263{width:9.867000px;}
._0_c01263{width:11.523000px;}
._4_c01263{width:13.317000px;}
._c_c01263{width:14.442000px;}
._18_c01263{width:15.873000px;}
._12_c01263{width:16.998000px;}
._9_c01263{width:18.318000px;}
._14_c01263{width:22.995000px;}
._d_c01263{width:24.996000px;}
._11_c01263{width:27.966000px;}
._e_c01263{width:29.181000px;}
.fc2_c01263{color:transparent;}
.fc1_c01263{color:rgb(128,128,128);}
.fc0_c01263{color:rgb(0,0,0);}
.fs6_c01263{font-size:48.000000px;}
.fs3_c01263{font-size:55.200000px;}
.fs5_c01263{font-size:66.000000px;}
.fs0_c01263{font-size:69.000000px;}
.fs2_c01263{font-size:72.000000px;}
.fs4_c01263{font-size:87.000000px;}
.fs1_c01263{font-size:150.000000px;}
.y0_c01263{bottom:0.000000px;}
.y1e_c01263{bottom:3.105000px;}
.y1d_c01263{bottom:7.228363px;}
.y1c_c01263{bottom:73.800000px;}
.y1b_c01263{bottom:99.600000px;}
.y1a_c01263{bottom:126.600000px;}
.y19_c01263{bottom:151.200000px;}
.y18_c01263{bottom:177.750000px;}
.y17_c01263{bottom:202.050000px;}
.y16_c01263{bottom:226.350000px;}
.y15_c01263{bottom:254.100000px;}
.y14_c01263{bottom:277.050000px;}
.y13_c01263{bottom:301.650000px;}
.y12_c01263{bottom:326.400000px;}
.y11_c01263{bottom:350.700000px;}
.y10_c01263{bottom:374.850000px;}
.yf_c01263{bottom:397.800000px;}
.ye_c01263{bottom:422.550000px;}
.yd_c01263{bottom:446.400000px;}
.yc_c01263{bottom:469.800000px;}
.yb_c01263{bottom:494.400000px;}
.ya_c01263{bottom:519.450000px;}
.y9_c01263{bottom:544.050000px;}
.y8_c01263{bottom:568.950000px;}
.y7_c01263{bottom:594.000000px;}
.y6_c01263{bottom:618.300000px;}
.y5_c01263{bottom:643.200000px;}
.y4_c01263{bottom:667.950000px;}
.y3_c01263{bottom:692.250000px;}
.y2_c01263{bottom:717.300000px;}
.y1_c01263{bottom:743.250000px;}
.h7_c01263{height:13.200074px;}
.h8_c01263{height:43.804688px;}
.h6_c01263{height:70.422000px;}
.h4_c01263{height:87.361816px;}
.h3_c01263{height:91.160156px;}
.h5_c01263{height:92.829000px;}
.h2_c01263{height:162.600000px;}
.h1_c01263{height:786.750000px;}
.h0_c01263{height:787.050000px;}
.w2_c01263{width:104.875500px;}
.w0_c01263{width:520.275000px;}
.w1_c01263{width:520.500000px;}
.x0_c01263{left:0.000000px;}
.x2_c01263{left:93.450000px;}
.x4_c01263{left:96.900000px;}
.x3_c01263{left:98.100000px;}
.x5_c01263{left:100.200000px;}
.x6_c01263{left:102.600000px;}
.x9_c01263{left:103.950000px;}
.x7_c01263{left:105.900000px;}
.x8_c01263{left:107.550000px;}
.xb_c01263{left:110.250000px;}
.xa_c01263{left:146.400000px;}
.x1_c01263{left:194.400000px;}
.xc_c01263{left:211.951767px;}
@media print{
.v0_c01263{vertical-align:0.000000pt;}
.ls3_c01263{letter-spacing:-8.000000pt;}
.ls4_c01263{letter-spacing:-2.666667pt;}
.ls1_c01263{letter-spacing:0.000000pt;}
.ls2_c01263{letter-spacing:2.666667pt;}
.ls0_c01263{letter-spacing:14.018667pt;}
.ws3_c01263{word-spacing:-29.636267pt;}
.ws1_c01263{word-spacing:-14.781333pt;}
.ws0_c01263{word-spacing:-0.133333pt;}
.ws4_c01263{word-spacing:0.000000pt;}
.ws2_c01263{word-spacing:7.616000pt;}
._7_c01263{margin-left:-41.437333pt;}
._17_c01263{margin-left:-20.757333pt;}
._1d_c01263{margin-left:-11.674667pt;}
._1a_c01263{margin-left:-10.066667pt;}
._1c_c01263{margin-left:-9.093333pt;}
._f_c01263{margin-left:-8.024000pt;}
._13_c01263{margin-left:-6.917333pt;}
._10_c01263{margin-left:-5.416000pt;}
._19_c01263{margin-left:-4.525333pt;}
._2_c01263{margin-left:-3.592000pt;}
._a_c01263{margin-left:-1.989333pt;}
._b_c01263{margin-left:-1.085333pt;}
._8_c01263{width:0.960000pt;}
._6_c01263{width:2.637333pt;}
._16_c01263{width:3.565333pt;}
._5_c01263{width:4.477333pt;}
._15_c01263{width:5.530667pt;}
._3_c01263{width:6.930667pt;}
._1b_c01263{width:7.842667pt;}
._1_c01263{width:8.770667pt;}
._0_c01263{width:10.242667pt;}
._4_c01263{width:11.837333pt;}
._c_c01263{width:12.837333pt;}
._18_c01263{width:14.109333pt;}
._12_c01263{width:15.109333pt;}
._9_c01263{width:16.282667pt;}
._14_c01263{width:20.440000pt;}
._d_c01263{width:22.218667pt;}
._11_c01263{width:24.858667pt;}
._e_c01263{width:25.938667pt;}
.fs6_c01263{font-size:42.666667pt;}
.fs3_c01263{font-size:49.066667pt;}
.fs5_c01263{font-size:58.666667pt;}
.fs0_c01263{font-size:61.333333pt;}
.fs2_c01263{font-size:64.000000pt;}
.fs4_c01263{font-size:77.333333pt;}
.fs1_c01263{font-size:133.333333pt;}
.y0_c01263{bottom:0.000000pt;}
.y1e_c01263{bottom:2.760000pt;}
.y1d_c01263{bottom:6.425212pt;}
.y1c_c01263{bottom:65.600000pt;}
.y1b_c01263{bottom:88.533333pt;}
.y1a_c01263{bottom:112.533333pt;}
.y19_c01263{bottom:134.400000pt;}
.y18_c01263{bottom:158.000000pt;}
.y17_c01263{bottom:179.600000pt;}
.y16_c01263{bottom:201.200000pt;}
.y15_c01263{bottom:225.866667pt;}
.y14_c01263{bottom:246.266667pt;}
.y13_c01263{bottom:268.133333pt;}
.y12_c01263{bottom:290.133333pt;}
.y11_c01263{bottom:311.733333pt;}
.y10_c01263{bottom:333.200000pt;}
.yf_c01263{bottom:353.600000pt;}
.ye_c01263{bottom:375.600000pt;}
.yd_c01263{bottom:396.800000pt;}
.yc_c01263{bottom:417.600000pt;}
.yb_c01263{bottom:439.466667pt;}
.ya_c01263{bottom:461.733333pt;}
.y9_c01263{bottom:483.600000pt;}
.y8_c01263{bottom:505.733333pt;}
.y7_c01263{bottom:528.000000pt;}
.y6_c01263{bottom:549.600000pt;}
.y5_c01263{bottom:571.733333pt;}
.y4_c01263{bottom:593.733333pt;}
.y3_c01263{bottom:615.333333pt;}
.y2_c01263{bottom:637.600000pt;}
.y1_c01263{bottom:660.666667pt;}
.h7_c01263{height:11.733399pt;}
.h8_c01263{height:38.937500pt;}
.h6_c01263{height:62.597333pt;}
.h4_c01263{height:77.654948pt;}
.h3_c01263{height:81.031250pt;}
.h5_c01263{height:82.514667pt;}
.h2_c01263{height:144.533333pt;}
.h1_c01263{height:699.333333pt;}
.h0_c01263{height:699.600000pt;}
.w2_c01263{width:93.222667pt;}
.w0_c01263{width:462.466667pt;}
.w1_c01263{width:462.666667pt;}
.x0_c01263{left:0.000000pt;}
.x2_c01263{left:83.066667pt;}
.x4_c01263{left:86.133333pt;}
.x3_c01263{left:87.200000pt;}
.x5_c01263{left:89.066667pt;}
.x6_c01263{left:91.200000pt;}
.x9_c01263{left:92.400000pt;}
.x7_c01263{left:94.133333pt;}
.x8_c01263{left:95.600000pt;}
.xb_c01263{left:98.000000pt;}
.xa_c01263{left:130.133333pt;}
.x1_c01263{left:172.800000pt;}
.xc_c01263{left:188.401571pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c9faebd718daa838b2b31b87.woff2')format("woff");}.ff1_c01264{font-family:ff1_c01264;line-height:1.480469;font-style:normal;font-weight:normal;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_12a024444232811f9ced91e1.woff2')format("woff");}.ff2_c01264{font-family:ff2_c01264;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01264;src:url('chunks/assets/font_e52d57b4de429faa504da03f.woff2')format("woff");}.ff3_c01264{font-family:ff3_c01264;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01264;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01264{font-family:ff4_c01264;line-height:1.219238;font-style: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;}
.ls2_c01264{letter-spacing:-9.000000px;}
.ls1_c01264{letter-spacing:0.000000px;}
.ls3_c01264{letter-spacing:3.000000px;}
.ls0_c01264{letter-spacing:26.988000px;}
.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;}
}
.ws1_c01264{word-spacing:-17.352000px;}
.ws0_c01264{word-spacing:-8.352000px;}
.ws2_c01264{word-spacing:0.000000px;}
._10_c01264{margin-left:-17.784000px;}
._14_c01264{margin-left:-14.184000px;}
._11_c01264{margin-left:-10.728000px;}
._12_c01264{margin-left:-8.784000px;}
._e_c01264{margin-left:-6.696000px;}
._f_c01264{margin-left:-5.328000px;}
._c_c01264{margin-left:-4.104000px;}
._b_c01264{margin-left:-3.024000px;}
._9_c01264{margin-left:-1.080000px;}
._8_c01264{width:1.872000px;}
._a_c01264{width:3.240000px;}
._7_c01264{width:4.608000px;}
._2_c01264{width:6.192000px;}
._4_c01264{width:7.272000px;}
._13_c01264{width:8.352000px;}
._1_c01264{width:9.792000px;}
._d_c01264{width:10.872000px;}
._3_c01264{width:12.456000px;}
._5_c01264{width:14.256000px;}
._0_c01264{width:15.984000px;}
._1c_c01264{width:17.568000px;}
._19_c01264{width:22.536000px;}
._18_c01264{width:24.192000px;}
._17_c01264{width:25.704000px;}
._15_c01264{width:26.712000px;}
._1a_c01264{width:30.192000px;}
._1d_c01264{width:31.536000px;}
._16_c01264{width:38.016000px;}
._1b_c01264{width:42.480000px;}
._1e_c01264{width:229.584000px;}
._6_c01264{width:253.560000px;}
.fc2_c01264{color:transparent;}
.fc1_c01264{color:rgb(128,128,128);}
.fc0_c01264{color:rgb(0,0,0);}
.fs2_c01264{font-size:48.000000px;}
.fs1_c01264{font-size:63.000000px;}
.fs0_c01264{font-size:72.000000px;}
.y0_c01264{bottom:0.000000px;}
.y1f_c01264{bottom:3.105000px;}
.y1e_c01264{bottom:7.228357px;}
.y1d_c01264{bottom:39.930000px;}
.y1c_c01264{bottom:66.180000px;}
.y1b_c01264{bottom:92.130000px;}
.y1a_c01264{bottom:118.530000px;}
.y19_c01264{bottom:143.880000px;}
.y18_c01264{bottom:168.780000px;}
.y17_c01264{bottom:193.830000px;}
.y16_c01264{bottom:219.030000px;}
.y15_c01264{bottom:243.780000px;}
.y14_c01264{bottom:269.430000px;}
.y13_c01264{bottom:294.930000px;}
.y12_c01264{bottom:319.980000px;}
.y11_c01264{bottom:344.880000px;}
.y10_c01264{bottom:369.180000px;}
.yf_c01264{bottom:393.630000px;}
.ye_c01264{bottom:417.780000px;}
.yd_c01264{bottom:441.780000px;}
.yc_c01264{bottom:466.530000px;}
.yb_c01264{bottom:490.680000px;}
.ya_c01264{bottom:516.030000px;}
.y9_c01264{bottom:540.030000px;}
.y8_c01264{bottom:564.180000px;}
.y7_c01264{bottom:589.230000px;}
.y6_c01264{bottom:614.280000px;}
.y5_c01264{bottom:639.180000px;}
.y4_c01264{bottom:663.630000px;}
.y3_c01264{bottom:688.530000px;}
.y2_c01264{bottom:713.430000px;}
.y1_c01264{bottom:739.080000px;}
.h3_c01264{height:13.200074px;}
.h4_c01264{height:43.804688px;}
.h2_c01264{height:91.160156px;}
.h1_c01264{height:789.750000px;}
.h0_c01264{height:790.050000px;}
.w2_c01264{width:104.875500px;}
.w0_c01264{width:549.450000px;}
.w1_c01264{width:549.750000px;}
.x0_c01264{left:0.000000px;}
.x3_c01264{left:33.150000px;}
.x2_c01264{left:34.350000px;}
.x4_c01264{left:35.550000px;}
.x5_c01264{left:36.900000px;}
.x6_c01264{left:56.700000px;}
.x1_c01264{left:156.900000px;}
.x7_c01264{left:173.100000px;}
.x9_c01264{left:226.539230px;}
.x8_c01264{left:245.700000px;}
@media print{
.v0_c01264{vertical-align:0.000000pt;}
.ls2_c01264{letter-spacing:-8.000000pt;}
.ls1_c01264{letter-spacing:0.000000pt;}
.ls3_c01264{letter-spacing:2.666667pt;}
.ls0_c01264{letter-spacing:23.989333pt;}
.ws1_c01264{word-spacing:-15.424000pt;}
.ws0_c01264{word-spacing:-7.424000pt;}
.ws2_c01264{word-spacing:0.000000pt;}
._10_c01264{margin-left:-15.808000pt;}
._14_c01264{margin-left:-12.608000pt;}
._11_c01264{margin-left:-9.536000pt;}
._12_c01264{margin-left:-7.808000pt;}
._e_c01264{margin-left:-5.952000pt;}
._f_c01264{margin-left:-4.736000pt;}
._c_c01264{margin-left:-3.648000pt;}
._b_c01264{margin-left:-2.688000pt;}
._9_c01264{margin-left:-0.960000pt;}
._8_c01264{width:1.664000pt;}
._a_c01264{width:2.880000pt;}
._7_c01264{width:4.096000pt;}
._2_c01264{width:5.504000pt;}
._4_c01264{width:6.464000pt;}
._13_c01264{width:7.424000pt;}
._1_c01264{width:8.704000pt;}
._d_c01264{width:9.664000pt;}
._3_c01264{width:11.072000pt;}
._5_c01264{width:12.672000pt;}
._0_c01264{width:14.208000pt;}
._1c_c01264{width:15.616000pt;}
._19_c01264{width:20.032000pt;}
._18_c01264{width:21.504000pt;}
._17_c01264{width:22.848000pt;}
._15_c01264{width:23.744000pt;}
._1a_c01264{width:26.837333pt;}
._1d_c01264{width:28.032000pt;}
._16_c01264{width:33.792000pt;}
._1b_c01264{width:37.760000pt;}
._1e_c01264{width:204.074667pt;}
._6_c01264{width:225.386667pt;}
.fs2_c01264{font-size:42.666667pt;}
.fs1_c01264{font-size:56.000000pt;}
.fs0_c01264{font-size:64.000000pt;}
.y0_c01264{bottom:0.000000pt;}
.y1f_c01264{bottom:2.760000pt;}
.y1e_c01264{bottom:6.425206pt;}
.y1d_c01264{bottom:35.493333pt;}
.y1c_c01264{bottom:58.826667pt;}
.y1b_c01264{bottom:81.893333pt;}
.y1a_c01264{bottom:105.360000pt;}
.y19_c01264{bottom:127.893333pt;}
.y18_c01264{bottom:150.026667pt;}
.y17_c01264{bottom:172.293333pt;}
.y16_c01264{bottom:194.693333pt;}
.y15_c01264{bottom:216.693333pt;}
.y14_c01264{bottom:239.493333pt;}
.y13_c01264{bottom:262.160000pt;}
.y12_c01264{bottom:284.426667pt;}
.y11_c01264{bottom:306.560000pt;}
.y10_c01264{bottom:328.160000pt;}
.yf_c01264{bottom:349.893333pt;}
.ye_c01264{bottom:371.360000pt;}
.yd_c01264{bottom:392.693333pt;}
.yc_c01264{bottom:414.693333pt;}
.yb_c01264{bottom:436.160000pt;}
.ya_c01264{bottom:458.693333pt;}
.y9_c01264{bottom:480.026667pt;}
.y8_c01264{bottom:501.493333pt;}
.y7_c01264{bottom:523.760000pt;}
.y6_c01264{bottom:546.026667pt;}
.y5_c01264{bottom:568.160000pt;}
.y4_c01264{bottom:589.893333pt;}
.y3_c01264{bottom:612.026667pt;}
.y2_c01264{bottom:634.160000pt;}
.y1_c01264{bottom:656.960000pt;}
.h3_c01264{height:11.733399pt;}
.h4_c01264{height:38.937500pt;}
.h2_c01264{height:81.031250pt;}
.h1_c01264{height:702.000000pt;}
.h0_c01264{height:702.266667pt;}
.w2_c01264{width:93.222667pt;}
.w0_c01264{width:488.400000pt;}
.w1_c01264{width:488.666667pt;}
.x0_c01264{left:0.000000pt;}
.x3_c01264{left:29.466667pt;}
.x2_c01264{left:30.533333pt;}
.x4_c01264{left:31.600000pt;}
.x5_c01264{left:32.800000pt;}
.x6_c01264{left:50.400000pt;}
.x1_c01264{left:139.466667pt;}
.x7_c01264{left:153.866667pt;}
.x9_c01264{left:201.368205pt;}
.x8_c01264{left:218.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_84f60efc9d0a0b57eaecfbe8.woff2')format("woff");}.ff1_c01265{font-family:ff1_c01265;line-height:1.480469;font-style:normal;font-weight:normal;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_c5a18aad7f11e6b441a7896c.woff2')format("woff");}.ff2_c01265{font-family:ff2_c01265;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01265{font-family:ff3_c01265;line-height:1.219238;font-style: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);}
.v0_c01265{vertical-align:0.000000px;}
.ls0_c01265{letter-spacing:0.000000px;}
.ls1_c01265{letter-spacing:3.000000px;}
.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;}
}
.ws0_c01265{word-spacing:-33.192000px;}
.ws1_c01265{word-spacing:-20.352000px;}
.ws2_c01265{word-spacing:0.000000px;}
._f_c01265{margin-left:-28.080000px;}
._11_c01265{margin-left:-25.776000px;}
._1c_c01265{margin-left:-14.184000px;}
._1a_c01265{margin-left:-12.456000px;}
._1b_c01265{margin-left:-11.088000px;}
._17_c01265{margin-left:-9.936000px;}
._12_c01265{margin-left:-8.424000px;}
._16_c01265{margin-left:-6.336000px;}
._9_c01265{margin-left:-5.040000px;}
._19_c01265{margin-left:-3.960000px;}
._e_c01265{margin-left:-2.952000px;}
._d_c01265{margin-left:-1.224000px;}
._13_c01265{width:1.008000px;}
._6_c01265{width:2.016000px;}
._1_c01265{width:3.528000px;}
._4_c01265{width:4.680000px;}
._2_c01265{width:5.832000px;}
._3_c01265{width:6.912000px;}
._5_c01265{width:7.992000px;}
._0_c01265{width:9.648000px;}
._b_c01265{width:11.376000px;}
._7_c01265{width:12.744000px;}
._8_c01265{width:14.184000px;}
._a_c01265{width:15.912000px;}
._15_c01265{width:18.216000px;}
._10_c01265{width:21.456000px;}
._c_c01265{width:23.328000px;}
._18_c01265{width:26.760000px;}
._14_c01265{width:29.952000px;}
._1d_c01265{width:310.824000px;}
.fc2_c01265{color:transparent;}
.fc1_c01265{color:rgb(128,128,128);}
.fc0_c01265{color:rgb(0,0,0);}
.fs1_c01265{font-size:48.000000px;}
.fs0_c01265{font-size:72.000000px;}
.y0_c01265{bottom:0.000000px;}
.y1f_c01265{bottom:3.105000px;}
.y1e_c01265{bottom:7.228371px;}
.y1d_c01265{bottom:39.615000px;}
.y1c_c01265{bottom:60.765000px;}
.y1b_c01265{bottom:86.715000px;}
.y1a_c01265{bottom:114.165000px;}
.y19_c01265{bottom:138.465000px;}
.y18_c01265{bottom:163.065000px;}
.y17_c01265{bottom:188.715000px;}
.y16_c01265{bottom:213.615000px;}
.y15_c01265{bottom:238.965000px;}
.y14_c01265{bottom:263.715000px;}
.y13_c01265{bottom:288.915000px;}
.y12_c01265{bottom:313.965000px;}
.y11_c01265{bottom:338.865000px;}
.y10_c01265{bottom:362.265000px;}
.yf_c01265{bottom:386.415000px;}
.ye_c01265{bottom:410.715000px;}
.yd_c01265{bottom:435.015000px;}
.yc_c01265{bottom:458.715000px;}
.yb_c01265{bottom:483.615000px;}
.ya_c01265{bottom:508.065000px;}
.y9_c01265{bottom:532.965000px;}
.y8_c01265{bottom:558.315000px;}
.y7_c01265{bottom:583.215000px;}
.y6_c01265{bottom:607.965000px;}
.y5_c01265{bottom:632.565000px;}
.y4_c01265{bottom:657.765000px;}
.y3_c01265{bottom:682.515000px;}
.y2_c01265{bottom:707.115000px;}
.y1_c01265{bottom:732.765000px;}
.h3_c01265{height:13.200074px;}
.h4_c01265{height:43.804688px;}
.h2_c01265{height:91.160156px;}
.h0_c01265{height:786.525000px;}
.h1_c01265{height:786.750000px;}
.w2_c01265{width:104.875500px;}
.w0_c01265{width:515.175000px;}
.w1_c01265{width:515.250000px;}
.x0_c01265{left:0.000000px;}
.xc_c01265{left:103.200000px;}
.xb_c01265{left:104.250000px;}
.xa_c01265{left:105.300000px;}
.x9_c01265{left:107.250000px;}
.x6_c01265{left:108.300000px;}
.x7_c01265{left:109.350000px;}
.x5_c01265{left:110.400000px;}
.x4_c01265{left:111.750000px;}
.x3_c01265{left:113.100000px;}
.x2_c01265{left:115.350000px;}
.x8_c01265{left:121.200000px;}
.xe_c01265{left:209.401749px;}
.x1_c01265{left:219.150000px;}
.xd_c01265{left:441.000000px;}
@media print{
.v0_c01265{vertical-align:0.000000pt;}
.ls0_c01265{letter-spacing:0.000000pt;}
.ls1_c01265{letter-spacing:2.666667pt;}
.ws0_c01265{word-spacing:-29.504000pt;}
.ws1_c01265{word-spacing:-18.090667pt;}
.ws2_c01265{word-spacing:0.000000pt;}
._f_c01265{margin-left:-24.960000pt;}
._11_c01265{margin-left:-22.912000pt;}
._1c_c01265{margin-left:-12.608000pt;}
._1a_c01265{margin-left:-11.072000pt;}
._1b_c01265{margin-left:-9.856000pt;}
._17_c01265{margin-left:-8.832000pt;}
._12_c01265{margin-left:-7.488000pt;}
._16_c01265{margin-left:-5.632000pt;}
._9_c01265{margin-left:-4.480000pt;}
._19_c01265{margin-left:-3.520000pt;}
._e_c01265{margin-left:-2.624000pt;}
._d_c01265{margin-left:-1.088000pt;}
._13_c01265{width:0.896000pt;}
._6_c01265{width:1.792000pt;}
._1_c01265{width:3.136000pt;}
._4_c01265{width:4.160000pt;}
._2_c01265{width:5.184000pt;}
._3_c01265{width:6.144000pt;}
._5_c01265{width:7.104000pt;}
._0_c01265{width:8.576000pt;}
._b_c01265{width:10.112000pt;}
._7_c01265{width:11.328000pt;}
._8_c01265{width:12.608000pt;}
._a_c01265{width:14.144000pt;}
._15_c01265{width:16.192000pt;}
._10_c01265{width:19.072000pt;}
._c_c01265{width:20.736000pt;}
._18_c01265{width:23.786667pt;}
._14_c01265{width:26.624000pt;}
._1d_c01265{width:276.288000pt;}
.fs1_c01265{font-size:42.666667pt;}
.fs0_c01265{font-size:64.000000pt;}
.y0_c01265{bottom:0.000000pt;}
.y1f_c01265{bottom:2.760000pt;}
.y1e_c01265{bottom:6.425219pt;}
.y1d_c01265{bottom:35.213333pt;}
.y1c_c01265{bottom:54.013333pt;}
.y1b_c01265{bottom:77.080000pt;}
.y1a_c01265{bottom:101.480000pt;}
.y19_c01265{bottom:123.080000pt;}
.y18_c01265{bottom:144.946667pt;}
.y17_c01265{bottom:167.746667pt;}
.y16_c01265{bottom:189.880000pt;}
.y15_c01265{bottom:212.413333pt;}
.y14_c01265{bottom:234.413333pt;}
.y13_c01265{bottom:256.813333pt;}
.y12_c01265{bottom:279.080000pt;}
.y11_c01265{bottom:301.213333pt;}
.y10_c01265{bottom:322.013333pt;}
.yf_c01265{bottom:343.480000pt;}
.ye_c01265{bottom:365.080000pt;}
.yd_c01265{bottom:386.680000pt;}
.yc_c01265{bottom:407.746667pt;}
.yb_c01265{bottom:429.880000pt;}
.ya_c01265{bottom:451.613333pt;}
.y9_c01265{bottom:473.746667pt;}
.y8_c01265{bottom:496.280000pt;}
.y7_c01265{bottom:518.413333pt;}
.y6_c01265{bottom:540.413333pt;}
.y5_c01265{bottom:562.280000pt;}
.y4_c01265{bottom:584.680000pt;}
.y3_c01265{bottom:606.680000pt;}
.y2_c01265{bottom:628.546667pt;}
.y1_c01265{bottom:651.346667pt;}
.h3_c01265{height:11.733399pt;}
.h4_c01265{height:38.937500pt;}
.h2_c01265{height:81.031250pt;}
.h0_c01265{height:699.133333pt;}
.h1_c01265{height:699.333333pt;}
.w2_c01265{width:93.222667pt;}
.w0_c01265{width:457.933333pt;}
.w1_c01265{width:458.000000pt;}
.x0_c01265{left:0.000000pt;}
.xc_c01265{left:91.733333pt;}
.xb_c01265{left:92.666667pt;}
.xa_c01265{left:93.600000pt;}
.x9_c01265{left:95.333333pt;}
.x6_c01265{left:96.266667pt;}
.x7_c01265{left:97.200000pt;}
.x5_c01265{left:98.133333pt;}
.x4_c01265{left:99.333333pt;}
.x3_c01265{left:100.533333pt;}
.x2_c01265{left:102.533333pt;}
.x8_c01265{left:107.733333pt;}
.xe_c01265{left:186.134888pt;}
.x1_c01265{left:194.800000pt;}
.xd_c01265{left:392.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_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_f1c5ca35a99d8cba76dfec29.woff2')format("woff");}.ff1_c01266{font-family:ff1_c01266;line-height:1.568848;font-style:normal;font-weight:normal;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_ca29d960f0549f93c99f042b.woff2')format("woff");}.ff2_c01266{font-family:ff2_c01266;line-height:1.480469;font-style:normal;font-weight:normal;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_c51372a781aed163757acb68.woff2')format("woff");}.ff3_c01266{font-family:ff3_c01266;line-height:1.284668;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01266{font-family:ff4_c01266;line-height:1.219238;font-style: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);}
.v0_c01266{vertical-align:0.000000px;}
.ls1_c01266{letter-spacing:-3.000000px;}
.ls0_c01266{letter-spacing:0.000000px;}
.ls2_c01266{letter-spacing:3.000000px;}
.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;}
}
.ws0_c01266{word-spacing:0.000000px;}
._6_c01266{margin-left:-17.052000px;}
._17_c01266{margin-left:-13.680000px;}
._9_c01266{margin-left:-12.615000px;}
._1_c01266{margin-left:-8.178000px;}
._2_c01266{margin-left:-7.047000px;}
._12_c01266{margin-left:-5.973000px;}
._0_c01266{margin-left:-4.176000px;}
._11_c01266{margin-left:-3.003000px;}
._10_c01266{margin-left:-1.248000px;}
._3_c01266{width:1.416000px;}
._8_c01266{width:2.523000px;}
._7_c01266{width:3.654000px;}
._b_c01266{width:4.698000px;}
._13_c01266{width:6.060000px;}
._5_c01266{width:7.569000px;}
._a_c01266{width:9.570000px;}
._f_c01266{width:12.198000px;}
._e_c01266{width:13.794000px;}
._15_c01266{width:14.991000px;}
._14_c01266{width:18.981000px;}
._d_c01266{width:20.697000px;}
._4_c01266{width:21.726000px;}
._16_c01266{width:33.066000px;}
._c_c01266{width:260.391000px;}
._18_c01266{width:403.272000px;}
.fc2_c01266{color:transparent;}
.fc1_c01266{color:rgb(128,128,128);}
.fc0_c01266{color:rgb(0,0,0);}
.fs3_c01266{font-size:48.000000px;}
.fs1_c01266{font-size:57.000000px;}
.fs2_c01266{font-size:72.000000px;}
.fs0_c01266{font-size:87.000000px;}
.y0_c01266{bottom:0.000000px;}
.y1f_c01266{bottom:3.105000px;}
.y1e_c01266{bottom:7.228369px;}
.y1d_c01266{bottom:52.620000px;}
.y1c_c01266{bottom:78.270000px;}
.y1b_c01266{bottom:104.220000px;}
.y1a_c01266{bottom:128.820000px;}
.y19_c01266{bottom:153.570000px;}
.y18_c01266{bottom:177.120000px;}
.y17_c01266{bottom:203.820000px;}
.y16_c01266{bottom:228.720000px;}
.y15_c01266{bottom:254.370000px;}
.y14_c01266{bottom:278.820000px;}
.y13_c01266{bottom:301.620000px;}
.y12_c01266{bottom:328.320000px;}
.y11_c01266{bottom:352.320000px;}
.y10_c01266{bottom:376.920000px;}
.yf_c01266{bottom:401.220000px;}
.ye_c01266{bottom:425.220000px;}
.yd_c01266{bottom:449.520000px;}
.yc_c01266{bottom:474.570000px;}
.yb_c01266{bottom:498.720000px;}
.ya_c01266{bottom:523.020000px;}
.y9_c01266{bottom:546.420000px;}
.y8_c01266{bottom:571.770000px;}
.y7_c01266{bottom:596.370000px;}
.y6_c01266{bottom:621.270000px;}
.y5_c01266{bottom:645.270000px;}
.y4_c01266{bottom:670.320000px;}
.y3_c01266{bottom:694.920000px;}
.y2_c01266{bottom:719.820000px;}
.y1_c01266{bottom:744.870000px;}
.h4_c01266{height:13.200073px;}
.h5_c01266{height:43.804688px;}
.h3_c01266{height:91.160156px;}
.h2_c01266{height:110.151855px;}
.h1_c01266{height:783.750000px;}
.h0_c01266{height:784.050000px;}
.w2_c01266{width:104.875500px;}
.w0_c01266{width:542.700000px;}
.w1_c01266{width:543.000000px;}
.x0_c01266{left:0.000000px;}
.x2_c01266{left:42.150000px;}
.x3_c01266{left:44.100000px;}
.x4_c01266{left:99.450000px;}
.x1_c01266{left:163.950000px;}
.x5_c01266{left:209.550000px;}
.x6_c01266{left:223.164230px;}
@media print{
.v0_c01266{vertical-align:0.000000pt;}
.ls1_c01266{letter-spacing:-2.666667pt;}
.ls0_c01266{letter-spacing:0.000000pt;}
.ls2_c01266{letter-spacing:2.666667pt;}
.ws0_c01266{word-spacing:0.000000pt;}
._6_c01266{margin-left:-15.157333pt;}
._17_c01266{margin-left:-12.160000pt;}
._9_c01266{margin-left:-11.213333pt;}
._1_c01266{margin-left:-7.269333pt;}
._2_c01266{margin-left:-6.264000pt;}
._12_c01266{margin-left:-5.309333pt;}
._0_c01266{margin-left:-3.712000pt;}
._11_c01266{margin-left:-2.669333pt;}
._10_c01266{margin-left:-1.109333pt;}
._3_c01266{width:1.258667pt;}
._8_c01266{width:2.242667pt;}
._7_c01266{width:3.248000pt;}
._b_c01266{width:4.176000pt;}
._13_c01266{width:5.386667pt;}
._5_c01266{width:6.728000pt;}
._a_c01266{width:8.506667pt;}
._f_c01266{width:10.842667pt;}
._e_c01266{width:12.261333pt;}
._15_c01266{width:13.325333pt;}
._14_c01266{width:16.872000pt;}
._d_c01266{width:18.397333pt;}
._4_c01266{width:19.312000pt;}
._16_c01266{width:29.392000pt;}
._c_c01266{width:231.458667pt;}
._18_c01266{width:358.464000pt;}
.fs3_c01266{font-size:42.666667pt;}
.fs1_c01266{font-size:50.666667pt;}
.fs2_c01266{font-size:64.000000pt;}
.fs0_c01266{font-size:77.333333pt;}
.y0_c01266{bottom:0.000000pt;}
.y1f_c01266{bottom:2.760000pt;}
.y1e_c01266{bottom:6.425217pt;}
.y1d_c01266{bottom:46.773333pt;}
.y1c_c01266{bottom:69.573333pt;}
.y1b_c01266{bottom:92.640000pt;}
.y1a_c01266{bottom:114.506667pt;}
.y19_c01266{bottom:136.506667pt;}
.y18_c01266{bottom:157.440000pt;}
.y17_c01266{bottom:181.173333pt;}
.y16_c01266{bottom:203.306667pt;}
.y15_c01266{bottom:226.106667pt;}
.y14_c01266{bottom:247.840000pt;}
.y13_c01266{bottom:268.106667pt;}
.y12_c01266{bottom:291.840000pt;}
.y11_c01266{bottom:313.173333pt;}
.y10_c01266{bottom:335.040000pt;}
.yf_c01266{bottom:356.640000pt;}
.ye_c01266{bottom:377.973333pt;}
.yd_c01266{bottom:399.573333pt;}
.yc_c01266{bottom:421.840000pt;}
.yb_c01266{bottom:443.306667pt;}
.ya_c01266{bottom:464.906667pt;}
.y9_c01266{bottom:485.706667pt;}
.y8_c01266{bottom:508.240000pt;}
.y7_c01266{bottom:530.106667pt;}
.y6_c01266{bottom:552.240000pt;}
.y5_c01266{bottom:573.573333pt;}
.y4_c01266{bottom:595.840000pt;}
.y3_c01266{bottom:617.706667pt;}
.y2_c01266{bottom:639.840000pt;}
.y1_c01266{bottom:662.106667pt;}
.h4_c01266{height:11.733399pt;}
.h5_c01266{height:38.937500pt;}
.h3_c01266{height:81.031250pt;}
.h2_c01266{height:97.912760pt;}
.h1_c01266{height:696.666667pt;}
.h0_c01266{height:696.933333pt;}
.w2_c01266{width:93.222667pt;}
.w0_c01266{width:482.400000pt;}
.w1_c01266{width:482.666667pt;}
.x0_c01266{left:0.000000pt;}
.x2_c01266{left:37.466667pt;}
.x3_c01266{left:39.200000pt;}
.x4_c01266{left:88.400000pt;}
.x1_c01266{left:145.733333pt;}
.x5_c01266{left:186.266667pt;}
.x6_c01266{left:198.368205pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d6fd0ac0ca944ffabaa56925.woff2')format("woff");}.ff1_c01267{font-family:ff1_c01267;line-height:1.480469;font-style:normal;font-weight:normal;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_8c4360a325291c2609f8dc83.woff2')format("woff");}.ff2_c01267{font-family:ff2_c01267;line-height:1.568848;font-style:normal;font-weight:normal;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_041935d21f9f09aab904a027.woff2')format("woff");}.ff3_c01267{font-family:ff3_c01267;line-height:1.284668;font-style:normal;font-weight:normal;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_595297fc3f2bb8e4cfbbe1b1.woff2')format("woff");}.ff4_c01267{font-family:ff4_c01267;line-height:1.284668;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01267{font-family:ff5_c01267;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01267{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01267{vertical-align:0.000000px;}
.v1_c01267{vertical-align:5.400000px;}
.ls4_c01267{letter-spacing:-3.000000px;}
.ls2_c01267{letter-spacing:0.000000px;}
.ls3_c01267{letter-spacing:3.000000px;}
.ls0_c01267{letter-spacing:4.026000px;}
.ls1_c01267{letter-spacing:21.540000px;}
.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:-20.352000px;}
.ws1_c01267{word-spacing:-15.600000px;}
.ws0_c01267{word-spacing:-14.352000px;}
.ws3_c01267{word-spacing:0.000000px;}
._16_c01267{margin-left:-27.216000px;}
._13_c01267{margin-left:-10.998000px;}
._14_c01267{margin-left:-9.516000px;}
._12_c01267{margin-left:-7.531200px;}
._11_c01267{margin-left:-5.652000px;}
._c_c01267{margin-left:-4.260000px;}
._b_c01267{margin-left:-2.784000px;}
._a_c01267{margin-left:-1.740000px;}
._9_c01267{width:1.224000px;}
._6_c01267{width:2.376000px;}
._7_c01267{width:3.456000px;}
._8_c01267{width:5.112000px;}
._d_c01267{width:7.128000px;}
._19_c01267{width:8.256000px;}
._1_c01267{width:9.480000px;}
._f_c01267{width:10.872000px;}
._5_c01267{width:12.180000px;}
._4_c01267{width:13.320000px;}
._e_c01267{width:14.976000px;}
._3_c01267{width:17.580000px;}
._2_c01267{width:18.720000px;}
._0_c01267{width:20.220000px;}
._1a_c01267{width:21.366000px;}
._1c_c01267{width:22.464000px;}
._1b_c01267{width:23.892000px;}
._10_c01267{width:24.984000px;}
._17_c01267{width:29.028000px;}
._1d_c01267{width:49.680000px;}
._15_c01267{width:55.116000px;}
._18_c01267{width:380.242800px;}
.fc2_c01267{color:transparent;}
.fc1_c01267{color:rgb(128,128,128);}
.fc0_c01267{color:rgb(0,0,0);}
.fs4_c01267{font-size:48.000000px;}
.fs0_c01267{font-size:60.000000px;}
.fs3_c01267{font-size:62.400000px;}
.fs1_c01267{font-size:72.000000px;}
.fs2_c01267{font-size:78.000000px;}
.y0_c01267{bottom:0.000000px;}
.y1f_c01267{bottom:3.105000px;}
.y1e_c01267{bottom:7.228355px;}
.y1d_c01267{bottom:55.635000px;}
.y1c_c01267{bottom:77.535000px;}
.y1b_c01267{bottom:103.185000px;}
.y1a_c01267{bottom:128.235000px;}
.y19_c01267{bottom:152.535000px;}
.y18_c01267{bottom:177.735000px;}
.y17_c01267{bottom:202.485000px;}
.y16_c01267{bottom:227.685000px;}
.y15_c01267{bottom:251.985000px;}
.y14_c01267{bottom:277.635000px;}
.y13_c01267{bottom:302.085000px;}
.y12_c01267{bottom:326.985000px;}
.y11_c01267{bottom:350.535000px;}
.y10_c01267{bottom:374.535000px;}
.yf_c01267{bottom:396.585000px;}
.ye_c01267{bottom:422.235000px;}
.yd_c01267{bottom:446.835000px;}
.yc_c01267{bottom:470.385000px;}
.yb_c01267{bottom:495.135000px;}
.ya_c01267{bottom:520.035000px;}
.y9_c01267{bottom:544.935000px;}
.y8_c01267{bottom:569.385000px;}
.y7_c01267{bottom:594.285000px;}
.y6_c01267{bottom:618.585000px;}
.y5_c01267{bottom:643.635000px;}
.y4_c01267{bottom:666.585000px;}
.y3_c01267{bottom:692.535000px;}
.y2_c01267{bottom:716.835000px;}
.y1_c01267{bottom:742.785000px;}
.h5_c01267{height:13.200074px;}
.h6_c01267{height:43.804688px;}
.h2_c01267{height:75.966797px;}
.h3_c01267{height:91.160156px;}
.h4_c01267{height:96.560156px;}
.h1_c01267{height:787.500000px;}
.h0_c01267{height:787.575000px;}
.w2_c01267{width:104.875500px;}
.w0_c01267{width:529.200000px;}
.w1_c01267{width:529.500000px;}
.x0_c01267{left:0.000000px;}
.x6_c01267{left:107.100000px;}
.x9_c01267{left:111.000000px;}
.x8_c01267{left:112.950000px;}
.x7_c01267{left:114.450000px;}
.x2_c01267{left:117.150000px;}
.x3_c01267{left:118.800000px;}
.x4_c01267{left:119.850000px;}
.x5_c01267{left:131.400000px;}
.xb_c01267{left:216.414230px;}
.x1_c01267{left:231.450000px;}
.xa_c01267{left:473.550000px;}
@media print{
.v0_c01267{vertical-align:0.000000pt;}
.v1_c01267{vertical-align:4.800000pt;}
.ls4_c01267{letter-spacing:-2.666667pt;}
.ls2_c01267{letter-spacing:0.000000pt;}
.ls3_c01267{letter-spacing:2.666667pt;}
.ls0_c01267{letter-spacing:3.578667pt;}
.ls1_c01267{letter-spacing:19.146667pt;}
.ws2_c01267{word-spacing:-18.090667pt;}
.ws1_c01267{word-spacing:-13.866667pt;}
.ws0_c01267{word-spacing:-12.757333pt;}
.ws3_c01267{word-spacing:0.000000pt;}
._16_c01267{margin-left:-24.192000pt;}
._13_c01267{margin-left:-9.776000pt;}
._14_c01267{margin-left:-8.458667pt;}
._12_c01267{margin-left:-6.694400pt;}
._11_c01267{margin-left:-5.024000pt;}
._c_c01267{margin-left:-3.786667pt;}
._b_c01267{margin-left:-2.474667pt;}
._a_c01267{margin-left:-1.546667pt;}
._9_c01267{width:1.088000pt;}
._6_c01267{width:2.112000pt;}
._7_c01267{width:3.072000pt;}
._8_c01267{width:4.544000pt;}
._d_c01267{width:6.336000pt;}
._19_c01267{width:7.338667pt;}
._1_c01267{width:8.426667pt;}
._f_c01267{width:9.664000pt;}
._5_c01267{width:10.826667pt;}
._4_c01267{width:11.840000pt;}
._e_c01267{width:13.312000pt;}
._3_c01267{width:15.626667pt;}
._2_c01267{width:16.640000pt;}
._0_c01267{width:17.973333pt;}
._1a_c01267{width:18.992000pt;}
._1c_c01267{width:19.968000pt;}
._1b_c01267{width:21.237333pt;}
._10_c01267{width:22.208000pt;}
._17_c01267{width:25.802667pt;}
._1d_c01267{width:44.160000pt;}
._15_c01267{width:48.992000pt;}
._18_c01267{width:337.993600pt;}
.fs4_c01267{font-size:42.666667pt;}
.fs0_c01267{font-size:53.333333pt;}
.fs3_c01267{font-size:55.466667pt;}
.fs1_c01267{font-size:64.000000pt;}
.fs2_c01267{font-size:69.333333pt;}
.y0_c01267{bottom:0.000000pt;}
.y1f_c01267{bottom:2.760000pt;}
.y1e_c01267{bottom:6.425204pt;}
.y1d_c01267{bottom:49.453333pt;}
.y1c_c01267{bottom:68.920000pt;}
.y1b_c01267{bottom:91.720000pt;}
.y1a_c01267{bottom:113.986667pt;}
.y19_c01267{bottom:135.586667pt;}
.y18_c01267{bottom:157.986667pt;}
.y17_c01267{bottom:179.986667pt;}
.y16_c01267{bottom:202.386667pt;}
.y15_c01267{bottom:223.986667pt;}
.y14_c01267{bottom:246.786667pt;}
.y13_c01267{bottom:268.520000pt;}
.y12_c01267{bottom:290.653333pt;}
.y11_c01267{bottom:311.586667pt;}
.y10_c01267{bottom:332.920000pt;}
.yf_c01267{bottom:352.520000pt;}
.ye_c01267{bottom:375.320000pt;}
.yd_c01267{bottom:397.186667pt;}
.yc_c01267{bottom:418.120000pt;}
.yb_c01267{bottom:440.120000pt;}
.ya_c01267{bottom:462.253333pt;}
.y9_c01267{bottom:484.386667pt;}
.y8_c01267{bottom:506.120000pt;}
.y7_c01267{bottom:528.253333pt;}
.y6_c01267{bottom:549.853333pt;}
.y5_c01267{bottom:572.120000pt;}
.y4_c01267{bottom:592.520000pt;}
.y3_c01267{bottom:615.586667pt;}
.y2_c01267{bottom:637.186667pt;}
.y1_c01267{bottom:660.253333pt;}
.h5_c01267{height:11.733399pt;}
.h6_c01267{height:38.937500pt;}
.h2_c01267{height:67.526042pt;}
.h3_c01267{height:81.031250pt;}
.h4_c01267{height:85.831250pt;}
.h1_c01267{height:700.000000pt;}
.h0_c01267{height:700.066667pt;}
.w2_c01267{width:93.222667pt;}
.w0_c01267{width:470.400000pt;}
.w1_c01267{width:470.666667pt;}
.x0_c01267{left:0.000000pt;}
.x6_c01267{left:95.200000pt;}
.x9_c01267{left:98.666667pt;}
.x8_c01267{left:100.400000pt;}
.x7_c01267{left:101.733333pt;}
.x2_c01267{left:104.133333pt;}
.x3_c01267{left:105.600000pt;}
.x4_c01267{left:106.533333pt;}
.x5_c01267{left:116.800000pt;}
.xb_c01267{left:192.368205pt;}
.x1_c01267{left:205.733333pt;}
.xa_c01267{left:420.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e2f12b9d1614e600d870d5a7.woff2')format("woff");}.ff1_c01268{font-family:ff1_c01268;line-height:1.480469;font-style:normal;font-weight:normal;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_af254576df3cbf1b587f206c.woff2')format("woff");}.ff2_c01268{font-family:ff2_c01268;line-height:1.568848;font-style:normal;font-weight:normal;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_ca1751bd2a9567a5a61be994.woff2')format("woff");}.ff3_c01268{font-family:ff3_c01268;line-height:1.284668;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01268{font-family:ff4_c01268;line-height:1.219238;font-style: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);}
.v0_c01268{vertical-align:0.000000px;}
.ls0_c01268{letter-spacing:0.000000px;}
.ls1_c01268{letter-spacing:3.000000px;}
.ls2_c01268{letter-spacing:6.000000px;}
.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:0.000000px;}
._1b_c01268{margin-left:-25.545000px;}
._18_c01268{margin-left:-18.711000px;}
._1a_c01268{margin-left:-13.248000px;}
._19_c01268{margin-left:-10.800000px;}
._1f_c01268{margin-left:-9.078000px;}
._16_c01268{margin-left:-8.052000px;}
._12_c01268{margin-left:-5.688000px;}
._a_c01268{margin-left:-4.569000px;}
._b_c01268{margin-left:-2.847000px;}
._2_c01268{margin-left:-1.587000px;}
._8_c01268{width:1.338000px;}
._3_c01268{width:2.622000px;}
._0_c01268{width:3.726000px;}
._c_c01268{width:5.355000px;}
._1_c01268{width:7.245000px;}
._9_c01268{width:8.742000px;}
._7_c01268{width:10.212000px;}
._10_c01268{width:11.412000px;}
._15_c01268{width:12.948000px;}
._d_c01268{width:14.244000px;}
._17_c01268{width:15.627000px;}
._f_c01268{width:16.776000px;}
._e_c01268{width:18.852000px;}
._5_c01268{width:20.700000px;}
._6_c01268{width:22.149000px;}
._13_c01268{width:23.544000px;}
._14_c01268{width:24.969000px;}
._11_c01268{width:26.589000px;}
._1d_c01268{width:27.729000px;}
._1c_c01268{width:29.040000px;}
._1e_c01268{width:32.964000px;}
._4_c01268{width:256.110000px;}
._20_c01268{width:303.255000px;}
.fc2_c01268{color:transparent;}
.fc1_c01268{color:rgb(128,128,128);}
.fc0_c01268{color:rgb(0,0,0);}
.fs5_c01268{font-size:48.000000px;}
.fs2_c01268{font-size:57.000000px;}
.fs3_c01268{font-size:63.000000px;}
.fs0_c01268{font-size:69.000000px;}
.fs1_c01268{font-size:72.000000px;}
.fs4_c01268{font-size:84.000000px;}
.y0_c01268{bottom:0.000000px;}
.y1f_c01268{bottom:3.105000px;}
.y1e_c01268{bottom:7.228363px;}
.y1d_c01268{bottom:51.300000px;}
.y1c_c01268{bottom:76.950000px;}
.y1b_c01268{bottom:104.250000px;}
.y1a_c01268{bottom:128.700000px;}
.y19_c01268{bottom:151.950000px;}
.y18_c01268{bottom:178.200000px;}
.y17_c01268{bottom:203.550000px;}
.y16_c01268{bottom:227.850000px;}
.y15_c01268{bottom:252.450000px;}
.y14_c01268{bottom:278.400000px;}
.y13_c01268{bottom:301.800000px;}
.y12_c01268{bottom:327.150000px;}
.y11_c01268{bottom:350.100000px;}
.y10_c01268{bottom:375.750000px;}
.yf_c01268{bottom:399.300000px;}
.ye_c01268{bottom:423.300000px;}
.yd_c01268{bottom:447.150000px;}
.yc_c01268{bottom:471.900000px;}
.yb_c01268{bottom:496.500000px;}
.ya_c01268{bottom:520.200000px;}
.y9_c01268{bottom:544.050000px;}
.y8_c01268{bottom:568.650000px;}
.y7_c01268{bottom:593.250000px;}
.y6_c01268{bottom:617.400000px;}
.y5_c01268{bottom:642.000000px;}
.y4_c01268{bottom:666.600000px;}
.y3_c01268{bottom:692.100000px;}
.y2_c01268{bottom:715.200000px;}
.y1_c01268{bottom:741.450000px;}
.h5_c01268{height:13.200074px;}
.h6_c01268{height:43.804688px;}
.h4_c01268{height:82.441406px;}
.h2_c01268{height:87.361816px;}
.h3_c01268{height:91.160156px;}
.h1_c01268{height:781.500000px;}
.h0_c01268{height:781.650000px;}
.w1_c01268{width:104.875500px;}
.w0_c01268{width:533.250000px;}
.x0_c01268{left:0.000000px;}
.x3_c01268{left:40.500000px;}
.x2_c01268{left:42.150000px;}
.x4_c01268{left:43.800000px;}
.x5_c01268{left:45.450000px;}
.x6_c01268{left:46.500000px;}
.x1_c01268{left:202.800000px;}
.x8_c01268{left:218.439240px;}
.x7_c01268{left:229.500000px;}
@media print{
.v0_c01268{vertical-align:0.000000pt;}
.ls0_c01268{letter-spacing:0.000000pt;}
.ls1_c01268{letter-spacing:2.666667pt;}
.ls2_c01268{letter-spacing:5.333333pt;}
.ws0_c01268{word-spacing:0.000000pt;}
._1b_c01268{margin-left:-22.706667pt;}
._18_c01268{margin-left:-16.632000pt;}
._1a_c01268{margin-left:-11.776000pt;}
._19_c01268{margin-left:-9.600000pt;}
._1f_c01268{margin-left:-8.069333pt;}
._16_c01268{margin-left:-7.157333pt;}
._12_c01268{margin-left:-5.056000pt;}
._a_c01268{margin-left:-4.061333pt;}
._b_c01268{margin-left:-2.530667pt;}
._2_c01268{margin-left:-1.410667pt;}
._8_c01268{width:1.189333pt;}
._3_c01268{width:2.330667pt;}
._0_c01268{width:3.312000pt;}
._c_c01268{width:4.760000pt;}
._1_c01268{width:6.440000pt;}
._9_c01268{width:7.770667pt;}
._7_c01268{width:9.077333pt;}
._10_c01268{width:10.144000pt;}
._15_c01268{width:11.509333pt;}
._d_c01268{width:12.661333pt;}
._17_c01268{width:13.890667pt;}
._f_c01268{width:14.912000pt;}
._e_c01268{width:16.757333pt;}
._5_c01268{width:18.400000pt;}
._6_c01268{width:19.688000pt;}
._13_c01268{width:20.928000pt;}
._14_c01268{width:22.194667pt;}
._11_c01268{width:23.634667pt;}
._1d_c01268{width:24.648000pt;}
._1c_c01268{width:25.813333pt;}
._1e_c01268{width:29.301333pt;}
._4_c01268{width:227.653333pt;}
._20_c01268{width:269.560000pt;}
.fs5_c01268{font-size:42.666667pt;}
.fs2_c01268{font-size:50.666667pt;}
.fs3_c01268{font-size:56.000000pt;}
.fs0_c01268{font-size:61.333333pt;}
.fs1_c01268{font-size:64.000000pt;}
.fs4_c01268{font-size:74.666667pt;}
.y0_c01268{bottom:0.000000pt;}
.y1f_c01268{bottom:2.760000pt;}
.y1e_c01268{bottom:6.425212pt;}
.y1d_c01268{bottom:45.600000pt;}
.y1c_c01268{bottom:68.400000pt;}
.y1b_c01268{bottom:92.666667pt;}
.y1a_c01268{bottom:114.400000pt;}
.y19_c01268{bottom:135.066667pt;}
.y18_c01268{bottom:158.400000pt;}
.y17_c01268{bottom:180.933333pt;}
.y16_c01268{bottom:202.533333pt;}
.y15_c01268{bottom:224.400000pt;}
.y14_c01268{bottom:247.466667pt;}
.y13_c01268{bottom:268.266667pt;}
.y12_c01268{bottom:290.800000pt;}
.y11_c01268{bottom:311.200000pt;}
.y10_c01268{bottom:334.000000pt;}
.yf_c01268{bottom:354.933333pt;}
.ye_c01268{bottom:376.266667pt;}
.yd_c01268{bottom:397.466667pt;}
.yc_c01268{bottom:419.466667pt;}
.yb_c01268{bottom:441.333333pt;}
.ya_c01268{bottom:462.400000pt;}
.y9_c01268{bottom:483.600000pt;}
.y8_c01268{bottom:505.466667pt;}
.y7_c01268{bottom:527.333333pt;}
.y6_c01268{bottom:548.800000pt;}
.y5_c01268{bottom:570.666667pt;}
.y4_c01268{bottom:592.533333pt;}
.y3_c01268{bottom:615.200000pt;}
.y2_c01268{bottom:635.733333pt;}
.y1_c01268{bottom:659.066667pt;}
.h5_c01268{height:11.733399pt;}
.h6_c01268{height:38.937500pt;}
.h4_c01268{height:73.281250pt;}
.h2_c01268{height:77.654948pt;}
.h3_c01268{height:81.031250pt;}
.h1_c01268{height:694.666667pt;}
.h0_c01268{height:694.800000pt;}
.w1_c01268{width:93.222667pt;}
.w0_c01268{width:474.000000pt;}
.x0_c01268{left:0.000000pt;}
.x3_c01268{left:36.000000pt;}
.x2_c01268{left:37.466667pt;}
.x4_c01268{left:38.933333pt;}
.x5_c01268{left:40.400000pt;}
.x6_c01268{left:41.333333pt;}
.x1_c01268{left:180.266667pt;}
.x8_c01268{left:194.168213pt;}
.x7_c01268{left:204.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_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_8326cfb676cce02d46b6f566.woff2')format("woff");}.ff1_c01269{font-family:ff1_c01269;line-height:1.480469;font-style:normal;font-weight:normal;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_ed2ed1614509d944064ffa45.woff2')format("woff");}.ff2_c01269{font-family:ff2_c01269;line-height:1.568848;font-style:normal;font-weight:normal;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_cc392c1243da2c63471b2d92.woff2')format("woff");}.ff3_c01269{font-family:ff3_c01269;line-height:1.284668;font-style:normal;font-weight:normal;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_bc655175e660211276b463d8.woff2')format("woff");}.ff4_c01269{font-family:ff4_c01269;line-height:1.284180;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01269{font-family:ff5_c01269;line-height:1.219238;font-style: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);}
.v0_c01269{vertical-align:0.000000px;}
.ls0_c01269{letter-spacing:0.000000px;}
.ls2_c01269{letter-spacing:3.000000px;}
.ls1_c01269{letter-spacing:6.000000px;}
.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;}
}
.ws0_c01269{word-spacing:-21.846000px;}
.ws3_c01269{word-spacing:-20.352000px;}
.ws1_c01269{word-spacing:-19.521000px;}
.ws2_c01269{word-spacing:-8.565000px;}
.ws4_c01269{word-spacing:0.000000px;}
._19_c01269{margin-left:-19.401000px;}
._17_c01269{margin-left:-16.077000px;}
._15_c01269{margin-left:-14.277000px;}
._14_c01269{margin-left:-13.083000px;}
._16_c01269{margin-left:-12.027000px;}
._10_c01269{margin-left:-10.146000px;}
._13_c01269{margin-left:-8.550000px;}
._18_c01269{margin-left:-7.092000px;}
._12_c01269{margin-left:-5.958000px;}
._0_c01269{margin-left:-4.134000px;}
._1_c01269{margin-left:-2.808000px;}
._c_c01269{margin-left:-1.083000px;}
._b_c01269{width:1.140000px;}
._9_c01269{width:2.223000px;}
._6_c01269{width:3.249000px;}
._f_c01269{width:4.305000px;}
._7_c01269{width:5.358000px;}
._3_c01269{width:7.125000px;}
._8_c01269{width:8.379000px;}
._4_c01269{width:9.462000px;}
._5_c01269{width:10.602000px;}
._d_c01269{width:12.312000px;}
._2_c01269{width:14.022000px;}
._e_c01269{width:15.048000px;}
._a_c01269{width:16.872000px;}
._11_c01269{width:18.255000px;}
._1a_c01269{width:25.821000px;}
.fc2_c01269{color:transparent;}
.fc1_c01269{color:rgb(128,128,128);}
.fc0_c01269{color:rgb(0,0,0);}
.fs5_c01269{font-size:48.000000px;}
.fs1_c01269{font-size:57.000000px;}
.fs4_c01269{font-size:72.000000px;}
.fs0_c01269{font-size:78.000000px;}
.fs3_c01269{font-size:81.000000px;}
.fs2_c01269{font-size:87.000000px;}
.y0_c01269{bottom:0.000000px;}
.y1f_c01269{bottom:3.105000px;}
.y1e_c01269{bottom:7.228369px;}
.y1d_c01269{bottom:58.620000px;}
.y1c_c01269{bottom:80.670000px;}
.y1b_c01269{bottom:107.670000px;}
.y1a_c01269{bottom:131.220000px;}
.y19_c01269{bottom:156.870000px;}
.y18_c01269{bottom:181.620000px;}
.y17_c01269{bottom:207.120000px;}
.y16_c01269{bottom:230.820000px;}
.y15_c01269{bottom:255.870000px;}
.y14_c01269{bottom:280.470000px;}
.y13_c01269{bottom:306.420000px;}
.y12_c01269{bottom:328.770000px;}
.y11_c01269{bottom:353.670000px;}
.y10_c01269{bottom:377.220000px;}
.yf_c01269{bottom:400.920000px;}
.ye_c01269{bottom:425.220000px;}
.yd_c01269{bottom:448.920000px;}
.yc_c01269{bottom:473.220000px;}
.yb_c01269{bottom:498.120000px;}
.ya_c01269{bottom:522.420000px;}
.y9_c01269{bottom:547.320000px;}
.y8_c01269{bottom:572.370000px;}
.y7_c01269{bottom:596.370000px;}
.y6_c01269{bottom:621.570000px;}
.y5_c01269{bottom:645.870000px;}
.y4_c01269{bottom:670.320000px;}
.y3_c01269{bottom:695.220000px;}
.y2_c01269{bottom:719.520000px;}
.y1_c01269{bottom:744.570000px;}
.h6_c01269{height:13.200073px;}
.h7_c01269{height:43.804688px;}
.h2_c01269{height:55.942383px;}
.h5_c01269{height:91.160156px;}
.h1_c01269{height:98.756836px;}
.h4_c01269{height:102.555176px;}
.h3_c01269{height:110.151855px;}
.h0_c01269{height:800.250000px;}
.w2_c01269{width:104.875500px;}
.w0_c01269{width:526.200000px;}
.w1_c01269{width:526.500000px;}
.x0_c01269{left:0.000000px;}
.x3_c01269{left:102.600000px;}
.x2_c01269{left:103.650000px;}
.x4_c01269{left:105.000000px;}
.x5_c01269{left:107.550000px;}
.x1_c01269{left:209.850000px;}
.x7_c01269{left:214.914230px;}
.x6_c01269{left:463.350000px;}
@media print{
.v0_c01269{vertical-align:0.000000pt;}
.ls0_c01269{letter-spacing:0.000000pt;}
.ls2_c01269{letter-spacing:2.666667pt;}
.ls1_c01269{letter-spacing:5.333333pt;}
.ws0_c01269{word-spacing:-19.418667pt;}
.ws3_c01269{word-spacing:-18.090667pt;}
.ws1_c01269{word-spacing:-17.352000pt;}
.ws2_c01269{word-spacing:-7.613333pt;}
.ws4_c01269{word-spacing:0.000000pt;}
._19_c01269{margin-left:-17.245333pt;}
._17_c01269{margin-left:-14.290667pt;}
._15_c01269{margin-left:-12.690667pt;}
._14_c01269{margin-left:-11.629333pt;}
._16_c01269{margin-left:-10.690667pt;}
._10_c01269{margin-left:-9.018667pt;}
._13_c01269{margin-left:-7.600000pt;}
._18_c01269{margin-left:-6.304000pt;}
._12_c01269{margin-left:-5.296000pt;}
._0_c01269{margin-left:-3.674667pt;}
._1_c01269{margin-left:-2.496000pt;}
._c_c01269{margin-left:-0.962667pt;}
._b_c01269{width:1.013333pt;}
._9_c01269{width:1.976000pt;}
._6_c01269{width:2.888000pt;}
._f_c01269{width:3.826667pt;}
._7_c01269{width:4.762667pt;}
._3_c01269{width:6.333333pt;}
._8_c01269{width:7.448000pt;}
._4_c01269{width:8.410667pt;}
._5_c01269{width:9.424000pt;}
._d_c01269{width:10.944000pt;}
._2_c01269{width:12.464000pt;}
._e_c01269{width:13.376000pt;}
._a_c01269{width:14.997333pt;}
._11_c01269{width:16.226667pt;}
._1a_c01269{width:22.952000pt;}
.fs5_c01269{font-size:42.666667pt;}
.fs1_c01269{font-size:50.666667pt;}
.fs4_c01269{font-size:64.000000pt;}
.fs0_c01269{font-size:69.333333pt;}
.fs3_c01269{font-size:72.000000pt;}
.fs2_c01269{font-size:77.333333pt;}
.y0_c01269{bottom:0.000000pt;}
.y1f_c01269{bottom:2.760000pt;}
.y1e_c01269{bottom:6.425217pt;}
.y1d_c01269{bottom:52.106667pt;}
.y1c_c01269{bottom:71.706667pt;}
.y1b_c01269{bottom:95.706667pt;}
.y1a_c01269{bottom:116.640000pt;}
.y19_c01269{bottom:139.440000pt;}
.y18_c01269{bottom:161.440000pt;}
.y17_c01269{bottom:184.106667pt;}
.y16_c01269{bottom:205.173333pt;}
.y15_c01269{bottom:227.440000pt;}
.y14_c01269{bottom:249.306667pt;}
.y13_c01269{bottom:272.373333pt;}
.y12_c01269{bottom:292.240000pt;}
.y11_c01269{bottom:314.373333pt;}
.y10_c01269{bottom:335.306667pt;}
.yf_c01269{bottom:356.373333pt;}
.ye_c01269{bottom:377.973333pt;}
.yd_c01269{bottom:399.040000pt;}
.yc_c01269{bottom:420.640000pt;}
.yb_c01269{bottom:442.773333pt;}
.ya_c01269{bottom:464.373333pt;}
.y9_c01269{bottom:486.506667pt;}
.y8_c01269{bottom:508.773333pt;}
.y7_c01269{bottom:530.106667pt;}
.y6_c01269{bottom:552.506667pt;}
.y5_c01269{bottom:574.106667pt;}
.y4_c01269{bottom:595.840000pt;}
.y3_c01269{bottom:617.973333pt;}
.y2_c01269{bottom:639.573333pt;}
.y1_c01269{bottom:661.840000pt;}
.h6_c01269{height:11.733399pt;}
.h7_c01269{height:38.937500pt;}
.h2_c01269{height:49.726562pt;}
.h5_c01269{height:81.031250pt;}
.h1_c01269{height:87.783854pt;}
.h4_c01269{height:91.160156pt;}
.h3_c01269{height:97.912760pt;}
.h0_c01269{height:711.333333pt;}
.w2_c01269{width:93.222667pt;}
.w0_c01269{width:467.733333pt;}
.w1_c01269{width:468.000000pt;}
.x0_c01269{left:0.000000pt;}
.x3_c01269{left:91.200000pt;}
.x2_c01269{left:92.133333pt;}
.x4_c01269{left:93.333333pt;}
.x5_c01269{left:95.600000pt;}
.x1_c01269{left:186.533333pt;}
.x7_c01269{left:191.034871pt;}
.x6_c01269{left:411.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a091c0aa72b7baea6e518a1f.woff2')format("woff");}.ff1_c01270{font-family:ff1_c01270;line-height:1.284180;font-style:normal;font-weight:normal;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_fd145a03020356b98fb5c587.woff2')format("woff");}.ff2_c01270{font-family:ff2_c01270;line-height:1.284668;font-style:normal;font-weight:normal;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_cfe319ae5e7229169a935402.woff2')format("woff");}.ff3_c01270{font-family:ff3_c01270;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01270{font-family:ff4_c01270;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01270{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01270{vertical-align:0.000000px;}
.ls0_c01270{letter-spacing:0.000000px;}
.ls1_c01270{letter-spacing:3.000000px;}
.ls2_c01270{letter-spacing:6.000000px;}
.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;}
}
.ws0_c01270{word-spacing:0.000000px;}
._11_c01270{margin-left:-15.780000px;}
._e_c01270{margin-left:-13.680000px;}
._f_c01270{margin-left:-10.512000px;}
._12_c01270{margin-left:-8.652000px;}
._c_c01270{margin-left:-6.912000px;}
._10_c01270{margin-left:-5.832000px;}
._2_c01270{margin-left:-4.788000px;}
._b_c01270{margin-left:-2.928000px;}
._9_c01270{margin-left:-1.368000px;}
._3_c01270{width:1.176000px;}
._4_c01270{width:2.436000px;}
._6_c01270{width:3.444000px;}
._1_c01270{width:4.704000px;}
._d_c01270{width:5.976000px;}
._0_c01270{width:7.476000px;}
._a_c01270{width:9.510000px;}
._13_c01270{width:11.172000px;}
._5_c01270{width:12.600000px;}
._8_c01270{width:14.985000px;}
._7_c01270{width:292.086000px;}
.fc2_c01270{color:transparent;}
.fc1_c01270{color:rgb(128,128,128);}
.fc0_c01270{color:rgb(0,0,0);}
.fs4_c01270{font-size:48.000000px;}
.fs3_c01270{font-size:57.000000px;}
.fs2_c01270{font-size:72.000000px;}
.fs1_c01270{font-size:81.000000px;}
.fs0_c01270{font-size:84.000000px;}
.y0_c01270{bottom:0.000000px;}
.y1e_c01270{bottom:3.105000px;}
.y1d_c01270{bottom:7.228357px;}
.y1c_c01270{bottom:79.080000px;}
.y1b_c01270{bottom:104.280000px;}
.y1a_c01270{bottom:129.330000px;}
.y19_c01270{bottom:152.580000px;}
.y18_c01270{bottom:179.280000px;}
.y17_c01270{bottom:204.180000px;}
.y16_c01270{bottom:228.180000px;}
.y15_c01270{bottom:253.230000px;}
.y14_c01270{bottom:276.180000px;}
.y13_c01270{bottom:301.830000px;}
.y12_c01270{bottom:327.330000px;}
.y11_c01270{bottom:351.330000px;}
.y10_c01270{bottom:375.330000px;}
.yf_c01270{bottom:397.530000px;}
.ye_c01270{bottom:422.280000px;}
.yd_c01270{bottom:446.280000px;}
.yc_c01270{bottom:471.780000px;}
.yb_c01270{bottom:495.780000px;}
.ya_c01270{bottom:520.380000px;}
.y9_c01270{bottom:544.080000px;}
.y8_c01270{bottom:568.380000px;}
.y7_c01270{bottom:592.680000px;}
.y6_c01270{bottom:617.280000px;}
.y5_c01270{bottom:641.880000px;}
.y4_c01270{bottom:666.180000px;}
.y3_c01270{bottom:690.630000px;}
.y2_c01270{bottom:715.230000px;}
.y1_c01270{bottom:740.880000px;}
.h3_c01270{height:13.200074px;}
.h4_c01270{height:43.804688px;}
.h1_c01270{height:82.400391px;}
.h2_c01270{height:91.160156px;}
.h0_c01270{height:786.000000px;}
.w2_c01270{width:104.875500px;}
.w0_c01270{width:539.175000px;}
.w1_c01270{width:539.250000px;}
.x0_c01270{left:0.000000px;}
.x7_c01270{left:42.750000px;}
.x6_c01270{left:44.250000px;}
.x2_c01270{left:45.450000px;}
.x3_c01270{left:46.950000px;}
.x5_c01270{left:48.150000px;}
.x4_c01270{left:49.200000px;}
.x8_c01270{left:111.750000px;}
.x1_c01270{left:163.650000px;}
.x9_c01270{left:221.401749px;}
@media print{
.v0_c01270{vertical-align:0.000000pt;}
.ls0_c01270{letter-spacing:0.000000pt;}
.ls1_c01270{letter-spacing:2.666667pt;}
.ls2_c01270{letter-spacing:5.333333pt;}
.ws0_c01270{word-spacing:0.000000pt;}
._11_c01270{margin-left:-14.026667pt;}
._e_c01270{margin-left:-12.160000pt;}
._f_c01270{margin-left:-9.344000pt;}
._12_c01270{margin-left:-7.690667pt;}
._c_c01270{margin-left:-6.144000pt;}
._10_c01270{margin-left:-5.184000pt;}
._2_c01270{margin-left:-4.256000pt;}
._b_c01270{margin-left:-2.602667pt;}
._9_c01270{margin-left:-1.216000pt;}
._3_c01270{width:1.045333pt;}
._4_c01270{width:2.165333pt;}
._6_c01270{width:3.061333pt;}
._1_c01270{width:4.181333pt;}
._d_c01270{width:5.312000pt;}
._0_c01270{width:6.645333pt;}
._a_c01270{width:8.453333pt;}
._13_c01270{width:9.930667pt;}
._5_c01270{width:11.200000pt;}
._8_c01270{width:13.320000pt;}
._7_c01270{width:259.632000pt;}
.fs4_c01270{font-size:42.666667pt;}
.fs3_c01270{font-size:50.666667pt;}
.fs2_c01270{font-size:64.000000pt;}
.fs1_c01270{font-size:72.000000pt;}
.fs0_c01270{font-size:74.666667pt;}
.y0_c01270{bottom:0.000000pt;}
.y1e_c01270{bottom:2.760000pt;}
.y1d_c01270{bottom:6.425206pt;}
.y1c_c01270{bottom:70.293333pt;}
.y1b_c01270{bottom:92.693333pt;}
.y1a_c01270{bottom:114.960000pt;}
.y19_c01270{bottom:135.626667pt;}
.y18_c01270{bottom:159.360000pt;}
.y17_c01270{bottom:181.493333pt;}
.y16_c01270{bottom:202.826667pt;}
.y15_c01270{bottom:225.093333pt;}
.y14_c01270{bottom:245.493333pt;}
.y13_c01270{bottom:268.293333pt;}
.y12_c01270{bottom:290.960000pt;}
.y11_c01270{bottom:312.293333pt;}
.y10_c01270{bottom:333.626667pt;}
.yf_c01270{bottom:353.360000pt;}
.ye_c01270{bottom:375.360000pt;}
.yd_c01270{bottom:396.693333pt;}
.yc_c01270{bottom:419.360000pt;}
.yb_c01270{bottom:440.693333pt;}
.ya_c01270{bottom:462.560000pt;}
.y9_c01270{bottom:483.626667pt;}
.y8_c01270{bottom:505.226667pt;}
.y7_c01270{bottom:526.826667pt;}
.y6_c01270{bottom:548.693333pt;}
.y5_c01270{bottom:570.560000pt;}
.y4_c01270{bottom:592.160000pt;}
.y3_c01270{bottom:613.893333pt;}
.y2_c01270{bottom:635.760000pt;}
.y1_c01270{bottom:658.560000pt;}
.h3_c01270{height:11.733399pt;}
.h4_c01270{height:38.937500pt;}
.h1_c01270{height:73.244792pt;}
.h2_c01270{height:81.031250pt;}
.h0_c01270{height:698.666667pt;}
.w2_c01270{width:93.222667pt;}
.w0_c01270{width:479.266667pt;}
.w1_c01270{width:479.333333pt;}
.x0_c01270{left:0.000000pt;}
.x7_c01270{left:38.000000pt;}
.x6_c01270{left:39.333333pt;}
.x2_c01270{left:40.400000pt;}
.x3_c01270{left:41.733333pt;}
.x5_c01270{left:42.800000pt;}
.x4_c01270{left:43.733333pt;}
.x8_c01270{left:99.333333pt;}
.x1_c01270{left:145.466667pt;}
.x9_c01270{left:196.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_359a08000a2a82eadbee5b26.woff2')format("woff");}.ff1_c01271{font-family:ff1_c01271;line-height:1.284180;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01271{font-family:ff2_c01271;line-height:1.284668;font-style:normal;font-weight:normal;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_00338ce754b697fc603b7bd2.woff2')format("woff");}.ff3_c01271{font-family:ff3_c01271;line-height:1.568848;font-style:normal;font-weight:normal;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_2b21d627bf438db57d804234.woff2')format("woff");}.ff4_c01271{font-family:ff4_c01271;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01271;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01271{font-family:ff5_c01271;line-height:1.219238;font-style: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;}
.ls4_c01271{letter-spacing:-3.000000px;}
.ls2_c01271{letter-spacing:0.000000px;}
.ls1_c01271{letter-spacing:2.160000px;}
.ls3_c01271{letter-spacing:3.000000px;}
.ls0_c01271{letter-spacing:55.878000px;}
.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:-42.000000px;}
.ws1_c01271{word-spacing:-30.192000px;}
.ws3_c01271{word-spacing:-15.183000px;}
.ws2_c01271{word-spacing:-6.618000px;}
.ws4_c01271{word-spacing:0.000000px;}
._8_c01271{margin-left:-15.336000px;}
._a_c01271{margin-left:-13.236000px;}
._7_c01271{margin-left:-9.492000px;}
._12_c01271{margin-left:-8.412000px;}
._e_c01271{margin-left:-6.492000px;}
._9_c01271{margin-left:-5.244000px;}
._5_c01271{margin-left:-3.312000px;}
._d_c01271{margin-left:-2.220000px;}
._4_c01271{margin-left:-1.212000px;}
._3_c01271{width:1.080000px;}
._1_c01271{width:2.940000px;}
._0_c01271{width:4.788000px;}
._10_c01271{width:5.964000px;}
._2_c01271{width:7.224000px;}
._11_c01271{width:8.868000px;}
._c_c01271{width:10.632000px;}
._f_c01271{width:11.916000px;}
._14_c01271{width:13.062000px;}
._b_c01271{width:14.124000px;}
._6_c01271{width:16.536000px;}
._13_c01271{width:22.152000px;}
._18_c01271{width:27.456000px;}
._16_c01271{width:37.368000px;}
._15_c01271{width:55.824000px;}
._17_c01271{width:398.808000px;}
.fc2_c01271{color:transparent;}
.fc1_c01271{color:rgb(128,128,128);}
.fc0_c01271{color:rgb(0,0,0);}
.fs3_c01271{font-size:42.000000px;}
.fs5_c01271{font-size:48.000000px;}
.fs2_c01271{font-size:60.000000px;}
.fs4_c01271{font-size:63.000000px;}
.fs1_c01271{font-size:72.000000px;}
.fs0_c01271{font-size:84.000000px;}
.y0_c01271{bottom:0.000000px;}
.y1f_c01271{bottom:3.105000px;}
.y1e_c01271{bottom:7.228357px;}
.y1d_c01271{bottom:56.730000px;}
.y1c_c01271{bottom:79.980000px;}
.y1b_c01271{bottom:103.380000px;}
.y1a_c01271{bottom:128.880000px;}
.y19_c01271{bottom:153.330000px;}
.y18_c01271{bottom:177.930000px;}
.y17_c01271{bottom:202.830000px;}
.y16_c01271{bottom:227.430000px;}
.y15_c01271{bottom:251.880000px;}
.y14_c01271{bottom:276.780000px;}
.y13_c01271{bottom:301.680000px;}
.y12_c01271{bottom:326.430000px;}
.y11_c01271{bottom:350.730000px;}
.y10_c01271{bottom:374.580000px;}
.yf_c01271{bottom:399.630000px;}
.ye_c01271{bottom:423.330000px;}
.yd_c01271{bottom:446.580000px;}
.yc_c01271{bottom:470.580000px;}
.yb_c01271{bottom:495.780000px;}
.ya_c01271{bottom:520.380000px;}
.y9_c01271{bottom:544.380000px;}
.y8_c01271{bottom:568.980000px;}
.y7_c01271{bottom:594.330000px;}
.y6_c01271{bottom:618.030000px;}
.y5_c01271{bottom:643.230000px;}
.y4_c01271{bottom:667.530000px;}
.y3_c01271{bottom:690.630000px;}
.y2_c01271{bottom:716.280000px;}
.y1_c01271{bottom:741.780000px;}
.h5_c01271{height:13.200074px;}
.h6_c01271{height:43.804688px;}
.h4_c01271{height:79.765137px;}
.h2_c01271{height:82.441406px;}
.h3_c01271{height:91.160156px;}
.h1_c01271{height:789.750000px;}
.h0_c01271{height:790.050000px;}
.w1_c01271{width:104.875500px;}
.w0_c01271{width:543.000000px;}
.x0_c01271{left:0.000000px;}
.x6_c01271{left:30.450000px;}
.x5_c01271{left:32.100000px;}
.x4_c01271{left:47.250000px;}
.x3_c01271{left:108.000000px;}
.x2_c01271{left:109.650000px;}
.x7_c01271{left:111.000000px;}
.x8_c01271{left:113.700000px;}
.xa_c01271{left:223.314240px;}
.x1_c01271{left:302.100000px;}
.x9_c01271{left:462.000000px;}
@media print{
.v0_c01271{vertical-align:0.000000pt;}
.ls4_c01271{letter-spacing:-2.666667pt;}
.ls2_c01271{letter-spacing:0.000000pt;}
.ls1_c01271{letter-spacing:1.920000pt;}
.ls3_c01271{letter-spacing:2.666667pt;}
.ls0_c01271{letter-spacing:49.669333pt;}
.ws0_c01271{word-spacing:-37.333333pt;}
.ws1_c01271{word-spacing:-26.837333pt;}
.ws3_c01271{word-spacing:-13.496000pt;}
.ws2_c01271{word-spacing:-5.882667pt;}
.ws4_c01271{word-spacing:0.000000pt;}
._8_c01271{margin-left:-13.632000pt;}
._a_c01271{margin-left:-11.765333pt;}
._7_c01271{margin-left:-8.437333pt;}
._12_c01271{margin-left:-7.477333pt;}
._e_c01271{margin-left:-5.770667pt;}
._9_c01271{margin-left:-4.661333pt;}
._5_c01271{margin-left:-2.944000pt;}
._d_c01271{margin-left:-1.973333pt;}
._4_c01271{margin-left:-1.077333pt;}
._3_c01271{width:0.960000pt;}
._1_c01271{width:2.613333pt;}
._0_c01271{width:4.256000pt;}
._10_c01271{width:5.301333pt;}
._2_c01271{width:6.421333pt;}
._11_c01271{width:7.882667pt;}
._c_c01271{width:9.450667pt;}
._f_c01271{width:10.592000pt;}
._14_c01271{width:11.610667pt;}
._b_c01271{width:12.554667pt;}
._6_c01271{width:14.698667pt;}
._13_c01271{width:19.690667pt;}
._18_c01271{width:24.405333pt;}
._16_c01271{width:33.216000pt;}
._15_c01271{width:49.621333pt;}
._17_c01271{width:354.496000pt;}
.fs3_c01271{font-size:37.333333pt;}
.fs5_c01271{font-size:42.666667pt;}
.fs2_c01271{font-size:53.333333pt;}
.fs4_c01271{font-size:56.000000pt;}
.fs1_c01271{font-size:64.000000pt;}
.fs0_c01271{font-size:74.666667pt;}
.y0_c01271{bottom:0.000000pt;}
.y1f_c01271{bottom:2.760000pt;}
.y1e_c01271{bottom:6.425206pt;}
.y1d_c01271{bottom:50.426667pt;}
.y1c_c01271{bottom:71.093333pt;}
.y1b_c01271{bottom:91.893333pt;}
.y1a_c01271{bottom:114.560000pt;}
.y19_c01271{bottom:136.293333pt;}
.y18_c01271{bottom:158.160000pt;}
.y17_c01271{bottom:180.293333pt;}
.y16_c01271{bottom:202.160000pt;}
.y15_c01271{bottom:223.893333pt;}
.y14_c01271{bottom:246.026667pt;}
.y13_c01271{bottom:268.160000pt;}
.y12_c01271{bottom:290.160000pt;}
.y11_c01271{bottom:311.760000pt;}
.y10_c01271{bottom:332.960000pt;}
.yf_c01271{bottom:355.226667pt;}
.ye_c01271{bottom:376.293333pt;}
.yd_c01271{bottom:396.960000pt;}
.yc_c01271{bottom:418.293333pt;}
.yb_c01271{bottom:440.693333pt;}
.ya_c01271{bottom:462.560000pt;}
.y9_c01271{bottom:483.893333pt;}
.y8_c01271{bottom:505.760000pt;}
.y7_c01271{bottom:528.293333pt;}
.y6_c01271{bottom:549.360000pt;}
.y5_c01271{bottom:571.760000pt;}
.y4_c01271{bottom:593.360000pt;}
.y3_c01271{bottom:613.893333pt;}
.y2_c01271{bottom:636.693333pt;}
.y1_c01271{bottom:659.360000pt;}
.h5_c01271{height:11.733399pt;}
.h6_c01271{height:38.937500pt;}
.h4_c01271{height:70.902344pt;}
.h2_c01271{height:73.281250pt;}
.h3_c01271{height:81.031250pt;}
.h1_c01271{height:702.000000pt;}
.h0_c01271{height:702.266667pt;}
.w1_c01271{width:93.222667pt;}
.w0_c01271{width:482.666667pt;}
.x0_c01271{left:0.000000pt;}
.x6_c01271{left:27.066667pt;}
.x5_c01271{left:28.533333pt;}
.x4_c01271{left:42.000000pt;}
.x3_c01271{left:96.000000pt;}
.x2_c01271{left:97.466667pt;}
.x7_c01271{left:98.666667pt;}
.x8_c01271{left:101.066667pt;}
.xa_c01271{left:198.501546pt;}
.x1_c01271{left:268.533333pt;}
.x9_c01271{left:410.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_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_be51ee57c20625ce34bd02d1.woff2')format("woff");}.ff1_c01272{font-family:ff1_c01272;line-height:1.284180;font-style:normal;font-weight:normal;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_c5a60eb4ac2a45152ba59115.woff2')format("woff");}.ff2_c01272{font-family:ff2_c01272;line-height:1.284668;font-style:normal;font-weight:normal;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_a6d3ce66a751d288255083a7.woff2')format("woff");}.ff3_c01272{font-family:ff3_c01272;line-height:1.568848;font-style:normal;font-weight:normal;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_39523de539f25413848340e4.woff2')format("woff");}.ff4_c01272{font-family:ff4_c01272;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01272{font-family:ff5_c01272;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01272{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01272{vertical-align:0.000000px;}
.ls1_c01272{letter-spacing:0.000000px;}
.ls2_c01272{letter-spacing:3.000000px;}
.ls3_c01272{letter-spacing:6.000000px;}
.ls0_c01272{letter-spacing:17.388000px;}
.sc__c01272{text-shadow:none;}
.sc0_c01272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01272{-webkit-text-stroke:0px transparent;}
.sc0_c01272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01272{word-spacing:-20.352000px;}
.ws1_c01272{word-spacing:0.000000px;}
._17_c01272{margin-left:-16.344000px;}
._16_c01272{margin-left:-13.500000px;}
._18_c01272{margin-left:-12.408000px;}
._d_c01272{margin-left:-10.308000px;}
._e_c01272{margin-left:-9.072000px;}
._a_c01272{margin-left:-7.560000px;}
._14_c01272{margin-left:-6.321000px;}
._0_c01272{margin-left:-4.872000px;}
._8_c01272{margin-left:-3.696000px;}
._1_c01272{margin-left:-2.352000px;}
._9_c01272{margin-left:-1.284000px;}
._b_c01272{width:1.272000px;}
._3_c01272{width:2.352000px;}
._4_c01272{width:3.864000px;}
._2_c01272{width:5.460000px;}
._7_c01272{width:6.480000px;}
._f_c01272{width:7.560000px;}
._13_c01272{width:9.540000px;}
._c_c01272{width:10.728000px;}
._10_c01272{width:12.132000px;}
._15_c01272{width:13.632000px;}
._11_c01272{width:15.060000px;}
._12_c01272{width:17.475000px;}
._6_c01272{width:19.035000px;}
._5_c01272{width:264.462000px;}
.fc2_c01272{color:transparent;}
.fc1_c01272{color:rgb(128,128,128);}
.fc0_c01272{color:rgb(0,0,0);}
.fs5_c01272{font-size:48.000000px;}
.fs4_c01272{font-size:57.000000px;}
.fs3_c01272{font-size:63.000000px;}
.fs2_c01272{font-size:72.000000px;}
.fs1_c01272{font-size:81.000000px;}
.fs0_c01272{font-size:84.000000px;}
.y0_c01272{bottom:0.000000px;}
.y1f_c01272{bottom:3.105000px;}
.y1e_c01272{bottom:7.228363px;}
.y1d_c01272{bottom:40.200000px;}
.y1c_c01272{bottom:66.150000px;}
.y1b_c01272{bottom:91.200000px;}
.y1a_c01272{bottom:116.400000px;}
.y19_c01272{bottom:142.200000px;}
.y18_c01272{bottom:166.500000px;}
.y17_c01272{bottom:191.400000px;}
.y16_c01272{bottom:216.450000px;}
.y15_c01272{bottom:241.350000px;}
.y14_c01272{bottom:264.600000px;}
.y13_c01272{bottom:290.250000px;}
.y12_c01272{bottom:313.650000px;}
.y11_c01272{bottom:337.200000px;}
.y10_c01272{bottom:363.600000px;}
.yf_c01272{bottom:386.550000px;}
.ye_c01272{bottom:411.750000px;}
.yd_c01272{bottom:435.750000px;}
.yc_c01272{bottom:460.350000px;}
.yb_c01272{bottom:484.950000px;}
.ya_c01272{bottom:508.950000px;}
.y9_c01272{bottom:532.650000px;}
.y8_c01272{bottom:557.100000px;}
.y7_c01272{bottom:581.850000px;}
.y6_c01272{bottom:606.150000px;}
.y5_c01272{bottom:630.900000px;}
.y4_c01272{bottom:655.800000px;}
.y3_c01272{bottom:679.500000px;}
.y2_c01272{bottom:704.250000px;}
.y1_c01272{bottom:730.650000px;}
.h4_c01272{height:13.200074px;}
.h5_c01272{height:43.804688px;}
.h2_c01272{height:82.400391px;}
.h3_c01272{height:91.160156px;}
.h0_c01272{height:765.450000px;}
.h1_c01272{height:765.750000px;}
.w2_c01272{width:104.875500px;}
.w1_c01272{width:512.250000px;}
.w0_c01272{width:512.475000px;}
.x0_c01272{left:0.000000px;}
.x2_c01272{left:44.550000px;}
.x6_c01272{left:45.600000px;}
.x3_c01272{left:46.650000px;}
.x4_c01272{left:48.600000px;}
.x5_c01272{left:49.650000px;}
.x7_c01272{left:99.900000px;}
.x1_c01272{left:186.000000px;}
.x9_c01272{left:208.051758px;}
.x8_c01272{left:386.100000px;}
@media print{
.v0_c01272{vertical-align:0.000000pt;}
.ls1_c01272{letter-spacing:0.000000pt;}
.ls2_c01272{letter-spacing:2.666667pt;}
.ls3_c01272{letter-spacing:5.333333pt;}
.ls0_c01272{letter-spacing:15.456000pt;}
.ws0_c01272{word-spacing:-18.090667pt;}
.ws1_c01272{word-spacing:0.000000pt;}
._17_c01272{margin-left:-14.528000pt;}
._16_c01272{margin-left:-12.000000pt;}
._18_c01272{margin-left:-11.029333pt;}
._d_c01272{margin-left:-9.162667pt;}
._e_c01272{margin-left:-8.064000pt;}
._a_c01272{margin-left:-6.720000pt;}
._14_c01272{margin-left:-5.618667pt;}
._0_c01272{margin-left:-4.330667pt;}
._8_c01272{margin-left:-3.285333pt;}
._1_c01272{margin-left:-2.090667pt;}
._9_c01272{margin-left:-1.141333pt;}
._b_c01272{width:1.130667pt;}
._3_c01272{width:2.090667pt;}
._4_c01272{width:3.434667pt;}
._2_c01272{width:4.853333pt;}
._7_c01272{width:5.760000pt;}
._f_c01272{width:6.720000pt;}
._13_c01272{width:8.480000pt;}
._c_c01272{width:9.536000pt;}
._10_c01272{width:10.784000pt;}
._15_c01272{width:12.117333pt;}
._11_c01272{width:13.386667pt;}
._12_c01272{width:15.533333pt;}
._6_c01272{width:16.920000pt;}
._5_c01272{width:235.077333pt;}
.fs5_c01272{font-size:42.666667pt;}
.fs4_c01272{font-size:50.666667pt;}
.fs3_c01272{font-size:56.000000pt;}
.fs2_c01272{font-size:64.000000pt;}
.fs1_c01272{font-size:72.000000pt;}
.fs0_c01272{font-size:74.666667pt;}
.y0_c01272{bottom:0.000000pt;}
.y1f_c01272{bottom:2.760000pt;}
.y1e_c01272{bottom:6.425212pt;}
.y1d_c01272{bottom:35.733333pt;}
.y1c_c01272{bottom:58.800000pt;}
.y1b_c01272{bottom:81.066667pt;}
.y1a_c01272{bottom:103.466667pt;}
.y19_c01272{bottom:126.400000pt;}
.y18_c01272{bottom:148.000000pt;}
.y17_c01272{bottom:170.133333pt;}
.y16_c01272{bottom:192.400000pt;}
.y15_c01272{bottom:214.533333pt;}
.y14_c01272{bottom:235.200000pt;}
.y13_c01272{bottom:258.000000pt;}
.y12_c01272{bottom:278.800000pt;}
.y11_c01272{bottom:299.733333pt;}
.y10_c01272{bottom:323.200000pt;}
.yf_c01272{bottom:343.600000pt;}
.ye_c01272{bottom:366.000000pt;}
.yd_c01272{bottom:387.333333pt;}
.yc_c01272{bottom:409.200000pt;}
.yb_c01272{bottom:431.066667pt;}
.ya_c01272{bottom:452.400000pt;}
.y9_c01272{bottom:473.466667pt;}
.y8_c01272{bottom:495.200000pt;}
.y7_c01272{bottom:517.200000pt;}
.y6_c01272{bottom:538.800000pt;}
.y5_c01272{bottom:560.800000pt;}
.y4_c01272{bottom:582.933333pt;}
.y3_c01272{bottom:604.000000pt;}
.y2_c01272{bottom:626.000000pt;}
.y1_c01272{bottom:649.466667pt;}
.h4_c01272{height:11.733399pt;}
.h5_c01272{height:38.937500pt;}
.h2_c01272{height:73.244792pt;}
.h3_c01272{height:81.031250pt;}
.h0_c01272{height:680.400000pt;}
.h1_c01272{height:680.666667pt;}
.w2_c01272{width:93.222667pt;}
.w1_c01272{width:455.333333pt;}
.w0_c01272{width:455.533333pt;}
.x0_c01272{left:0.000000pt;}
.x2_c01272{left:39.600000pt;}
.x6_c01272{left:40.533333pt;}
.x3_c01272{left:41.466667pt;}
.x4_c01272{left:43.200000pt;}
.x5_c01272{left:44.133333pt;}
.x7_c01272{left:88.800000pt;}
.x1_c01272{left:165.333333pt;}
.x9_c01272{left:184.934896pt;}
.x8_c01272{left:343.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c9bc44e7104cfa1115f510ed.woff2')format("woff");}.ff1_c01273{font-family:ff1_c01273;line-height:1.284180;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01273{font-family:ff2_c01273;line-height:1.284668;font-style:normal;font-weight:normal;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_1b6a4dd55bee5a7b7f68a1a6.woff2')format("woff");}.ff3_c01273{font-family:ff3_c01273;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01273;src:url('chunks/assets/font_ee24220c2a48a53c434d5ecb.woff2')format("woff");}.ff4_c01273{font-family:ff4_c01273;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01273;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01273{font-family:ff5_c01273;line-height:1.219238;font-style: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;}
.ls0_c01273{letter-spacing:3.000000px;}
.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:-20.352000px;}
.ws1_c01273{word-spacing:0.000000px;}
._f_c01273{margin-left:-9.060000px;}
._e_c01273{margin-left:-7.272000px;}
._10_c01273{margin-left:-6.084000px;}
._c_c01273{margin-left:-5.040000px;}
._a_c01273{margin-left:-3.240000px;}
._8_c01273{margin-left:-1.584000px;}
._0_c01273{width:1.596000px;}
._1_c01273{width:2.856000px;}
._3_c01273{width:4.200000px;}
._4_c01273{width:5.964000px;}
._6_c01273{width:7.848000px;}
._d_c01273{width:10.176000px;}
._2_c01273{width:11.340000px;}
._b_c01273{width:13.080000px;}
._9_c01273{width:15.048000px;}
._5_c01273{width:16.164000px;}
._7_c01273{width:17.460000px;}
.fc2_c01273{color:transparent;}
.fc1_c01273{color:rgb(128,128,128);}
.fc0_c01273{color:rgb(0,0,0);}
.fs3_c01273{font-size:48.000000px;}
.fs1_c01273{font-size:72.000000px;}
.fs2_c01273{font-size:81.000000px;}
.fs0_c01273{font-size:84.000000px;}
.y0_c01273{bottom:0.000000px;}
.y1f_c01273{bottom:3.105000px;}
.y1e_c01273{bottom:7.228363px;}
.y1d_c01273{bottom:59.400000px;}
.y1c_c01273{bottom:80.250000px;}
.y1b_c01273{bottom:105.900000px;}
.y1a_c01273{bottom:130.500000px;}
.y19_c01273{bottom:155.550000px;}
.y18_c01273{bottom:179.550000px;}
.y17_c01273{bottom:204.900000px;}
.y16_c01273{bottom:229.950000px;}
.y15_c01273{bottom:254.700000px;}
.y14_c01273{bottom:279.450000px;}
.y13_c01273{bottom:304.350000px;}
.y12_c01273{bottom:328.950000px;}
.y11_c01273{bottom:352.650000px;}
.y10_c01273{bottom:376.350000px;}
.yf_c01273{bottom:399.150000px;}
.ye_c01273{bottom:424.800000px;}
.yd_c01273{bottom:447.900000px;}
.yc_c01273{bottom:472.200000px;}
.yb_c01273{bottom:496.500000px;}
.ya_c01273{bottom:521.550000px;}
.y9_c01273{bottom:546.000000px;}
.y8_c01273{bottom:570.750000px;}
.y7_c01273{bottom:595.050000px;}
.y6_c01273{bottom:619.650000px;}
.y5_c01273{bottom:644.400000px;}
.y4_c01273{bottom:668.550000px;}
.y3_c01273{bottom:693.600000px;}
.y2_c01273{bottom:718.200000px;}
.y1_c01273{bottom:743.550000px;}
.h3_c01273{height:13.200074px;}
.h4_c01273{height:43.804688px;}
.h1_c01273{height:82.441406px;}
.h2_c01273{height:91.160156px;}
.h0_c01273{height:789.750000px;}
.w2_c01273{width:104.875500px;}
.w1_c01273{width:513.000000px;}
.w0_c01273{width:513.300000px;}
.x0_c01273{left:0.000000px;}
.x2_c01273{left:93.150000px;}
.x3_c01273{left:94.500000px;}
.x4_c01273{left:95.550000px;}
.x1_c01273{left:188.550000px;}
.x6_c01273{left:208.464249px;}
.x5_c01273{left:455.250000px;}
@media print{
.v0_c01273{vertical-align:0.000000pt;}
.ls1_c01273{letter-spacing:0.000000pt;}
.ls0_c01273{letter-spacing:2.666667pt;}
.ws0_c01273{word-spacing:-18.090667pt;}
.ws1_c01273{word-spacing:0.000000pt;}
._f_c01273{margin-left:-8.053333pt;}
._e_c01273{margin-left:-6.464000pt;}
._10_c01273{margin-left:-5.408000pt;}
._c_c01273{margin-left:-4.480000pt;}
._a_c01273{margin-left:-2.880000pt;}
._8_c01273{margin-left:-1.408000pt;}
._0_c01273{width:1.418667pt;}
._1_c01273{width:2.538667pt;}
._3_c01273{width:3.733333pt;}
._4_c01273{width:5.301333pt;}
._6_c01273{width:6.976000pt;}
._d_c01273{width:9.045333pt;}
._2_c01273{width:10.080000pt;}
._b_c01273{width:11.626667pt;}
._9_c01273{width:13.376000pt;}
._5_c01273{width:14.368000pt;}
._7_c01273{width:15.520000pt;}
.fs3_c01273{font-size:42.666667pt;}
.fs1_c01273{font-size:64.000000pt;}
.fs2_c01273{font-size:72.000000pt;}
.fs0_c01273{font-size:74.666667pt;}
.y0_c01273{bottom:0.000000pt;}
.y1f_c01273{bottom:2.760000pt;}
.y1e_c01273{bottom:6.425212pt;}
.y1d_c01273{bottom:52.800000pt;}
.y1c_c01273{bottom:71.333333pt;}
.y1b_c01273{bottom:94.133333pt;}
.y1a_c01273{bottom:116.000000pt;}
.y19_c01273{bottom:138.266667pt;}
.y18_c01273{bottom:159.600000pt;}
.y17_c01273{bottom:182.133333pt;}
.y16_c01273{bottom:204.400000pt;}
.y15_c01273{bottom:226.400000pt;}
.y14_c01273{bottom:248.400000pt;}
.y13_c01273{bottom:270.533333pt;}
.y12_c01273{bottom:292.400000pt;}
.y11_c01273{bottom:313.466667pt;}
.y10_c01273{bottom:334.533333pt;}
.yf_c01273{bottom:354.800000pt;}
.ye_c01273{bottom:377.600000pt;}
.yd_c01273{bottom:398.133333pt;}
.yc_c01273{bottom:419.733333pt;}
.yb_c01273{bottom:441.333333pt;}
.ya_c01273{bottom:463.600000pt;}
.y9_c01273{bottom:485.333333pt;}
.y8_c01273{bottom:507.333333pt;}
.y7_c01273{bottom:528.933333pt;}
.y6_c01273{bottom:550.800000pt;}
.y5_c01273{bottom:572.800000pt;}
.y4_c01273{bottom:594.266667pt;}
.y3_c01273{bottom:616.533333pt;}
.y2_c01273{bottom:638.400000pt;}
.y1_c01273{bottom:660.933333pt;}
.h3_c01273{height:11.733399pt;}
.h4_c01273{height:38.937500pt;}
.h1_c01273{height:73.281250pt;}
.h2_c01273{height:81.031250pt;}
.h0_c01273{height:702.000000pt;}
.w2_c01273{width:93.222667pt;}
.w1_c01273{width:456.000000pt;}
.w0_c01273{width:456.266667pt;}
.x0_c01273{left:0.000000pt;}
.x2_c01273{left:82.800000pt;}
.x3_c01273{left:84.000000pt;}
.x4_c01273{left:84.933333pt;}
.x1_c01273{left:167.600000pt;}
.x6_c01273{left:185.301554pt;}
.x5_c01273{left:404.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_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_254d4724b02c20e6e8c43f54.woff2')format("woff");}.ff1_c01274{font-family:ff1_c01274;line-height:1.284180;font-style:normal;font-weight:normal;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_33ec4d50eec764b56290298a.woff2')format("woff");}.ff2_c01274{font-family:ff2_c01274;line-height:1.568848;font-style:normal;font-weight:normal;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_d55c32857c2c364a2657be20.woff2')format("woff");}.ff3_c01274{font-family:ff3_c01274;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01274;src:url('chunks/assets/font_69d26e068cb653abdcd9994b.woff2')format("woff");}.ff4_c01274{font-family:ff4_c01274;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01274;src:url('chunks/assets/font_ea73d7660bd84699791b514f.woff2')format("woff");}.ff5_c01274{font-family:ff5_c01274;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01274;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01274{font-family:ff6_c01274;line-height:1.219238;font-style: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;}
.ls4_c01274{letter-spacing:-9.000000px;}
.ls3_c01274{letter-spacing:-3.000000px;}
.ls0_c01274{letter-spacing:0.000000px;}
.ls1_c01274{letter-spacing:3.000000px;}
.ls2_c01274{letter-spacing:6.000000px;}
.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:-20.352000px;}
.ws1_c01274{word-spacing:0.000000px;}
._12_c01274{margin-left:-21.672000px;}
._10_c01274{margin-left:-17.727000px;}
._11_c01274{margin-left:-15.408000px;}
._e_c01274{margin-left:-12.390000px;}
._18_c01274{margin-left:-11.196000px;}
._19_c01274{margin-left:-9.474000px;}
._1a_c01274{margin-left:-8.316000px;}
._13_c01274{margin-left:-7.260000px;}
._8_c01274{margin-left:-5.688000px;}
._f_c01274{margin-left:-4.656000px;}
._d_c01274{margin-left:-3.621000px;}
._7_c01274{margin-left:-2.484000px;}
._b_c01274{margin-left:-1.080000px;}
._1_c01274{width:1.428000px;}
._0_c01274{width:3.276000px;}
._5_c01274{width:4.680000px;}
._4_c01274{width:5.904000px;}
._6_c01274{width:7.488000px;}
._c_c01274{width:8.721000px;}
._3_c01274{width:10.164000px;}
._16_c01274{width:11.337000px;}
._a_c01274{width:12.636000px;}
._9_c01274{width:16.272000px;}
._14_c01274{width:18.000000px;}
._17_c01274{width:19.245000px;}
._15_c01274{width:159.798000px;}
._2_c01274{width:356.160000px;}
._1b_c01274{width:984.408000px;}
.fc2_c01274{color:transparent;}
.fc1_c01274{color:rgb(128,128,128);}
.fc0_c01274{color:rgb(0,0,0);}
.fs3_c01274{font-size:48.000000px;}
.fs2_c01274{font-size:57.000000px;}
.fs1_c01274{font-size:72.000000px;}
.fs0_c01274{font-size:84.000000px;}
.y0_c01274{bottom:0.000000px;}
.y1f_c01274{bottom:3.105000px;}
.y1e_c01274{bottom:7.228355px;}
.y1d_c01274{bottom:46.485000px;}
.y1c_c01274{bottom:72.135000px;}
.y1b_c01274{bottom:97.185000px;}
.y1a_c01274{bottom:122.385000px;}
.y19_c01274{bottom:146.835000px;}
.y18_c01274{bottom:172.035000px;}
.y17_c01274{bottom:196.785000px;}
.y16_c01274{bottom:221.985000px;}
.y15_c01274{bottom:246.735000px;}
.y14_c01274{bottom:271.335000px;}
.y13_c01274{bottom:296.535000px;}
.y12_c01274{bottom:320.535000px;}
.y11_c01274{bottom:345.135000px;}
.y10_c01274{bottom:369.435000px;}
.yf_c01274{bottom:392.835000px;}
.ye_c01274{bottom:418.185000px;}
.yd_c01274{bottom:440.685000px;}
.yc_c01274{bottom:465.735000px;}
.yb_c01274{bottom:491.385000px;}
.ya_c01274{bottom:514.335000px;}
.y9_c01274{bottom:537.285000px;}
.y8_c01274{bottom:562.185000px;}
.y7_c01274{bottom:585.585000px;}
.y6_c01274{bottom:610.485000px;}
.y5_c01274{bottom:635.385000px;}
.y4_c01274{bottom:659.685000px;}
.y3_c01274{bottom:683.985000px;}
.y2_c01274{bottom:708.435000px;}
.y1_c01274{bottom:733.035000px;}
.h4_c01274{height:13.200074px;}
.h5_c01274{height:43.804688px;}
.h2_c01274{height:82.400391px;}
.h3_c01274{height:91.160156px;}
.h0_c01274{height:782.175000px;}
.h1_c01274{height:782.250000px;}
.w2_c01274{width:104.875500px;}
.w0_c01274{width:548.100000px;}
.w1_c01274{width:548.250000px;}
.x0_c01274{left:0.000000px;}
.x2_c01274{left:42.900000px;}
.x3_c01274{left:44.550000px;}
.x5_c01274{left:46.650000px;}
.x4_c01274{left:47.850000px;}
.x6_c01274{left:49.050000px;}
.x7_c01274{left:50.250000px;}
.x9_c01274{left:51.300000px;}
.x8_c01274{left:52.950000px;}
.x1_c01274{left:140.550000px;}
.xa_c01274{left:158.400000px;}
.xb_c01274{left:225.864258px;}
@media print{
.v0_c01274{vertical-align:0.000000pt;}
.ls4_c01274{letter-spacing:-8.000000pt;}
.ls3_c01274{letter-spacing:-2.666667pt;}
.ls0_c01274{letter-spacing:0.000000pt;}
.ls1_c01274{letter-spacing:2.666667pt;}
.ls2_c01274{letter-spacing:5.333333pt;}
.ws0_c01274{word-spacing:-18.090667pt;}
.ws1_c01274{word-spacing:0.000000pt;}
._12_c01274{margin-left:-19.264000pt;}
._10_c01274{margin-left:-15.757333pt;}
._11_c01274{margin-left:-13.696000pt;}
._e_c01274{margin-left:-11.013333pt;}
._18_c01274{margin-left:-9.952000pt;}
._19_c01274{margin-left:-8.421333pt;}
._1a_c01274{margin-left:-7.392000pt;}
._13_c01274{margin-left:-6.453333pt;}
._8_c01274{margin-left:-5.056000pt;}
._f_c01274{margin-left:-4.138667pt;}
._d_c01274{margin-left:-3.218667pt;}
._7_c01274{margin-left:-2.208000pt;}
._b_c01274{margin-left:-0.960000pt;}
._1_c01274{width:1.269333pt;}
._0_c01274{width:2.912000pt;}
._5_c01274{width:4.160000pt;}
._4_c01274{width:5.248000pt;}
._6_c01274{width:6.656000pt;}
._c_c01274{width:7.752000pt;}
._3_c01274{width:9.034667pt;}
._16_c01274{width:10.077333pt;}
._a_c01274{width:11.232000pt;}
._9_c01274{width:14.464000pt;}
._14_c01274{width:16.000000pt;}
._17_c01274{width:17.106667pt;}
._15_c01274{width:142.042667pt;}
._2_c01274{width:316.586667pt;}
._1b_c01274{width:875.029333pt;}
.fs3_c01274{font-size:42.666667pt;}
.fs2_c01274{font-size:50.666667pt;}
.fs1_c01274{font-size:64.000000pt;}
.fs0_c01274{font-size:74.666667pt;}
.y0_c01274{bottom:0.000000pt;}
.y1f_c01274{bottom:2.760000pt;}
.y1e_c01274{bottom:6.425204pt;}
.y1d_c01274{bottom:41.320000pt;}
.y1c_c01274{bottom:64.120000pt;}
.y1b_c01274{bottom:86.386667pt;}
.y1a_c01274{bottom:108.786667pt;}
.y19_c01274{bottom:130.520000pt;}
.y18_c01274{bottom:152.920000pt;}
.y17_c01274{bottom:174.920000pt;}
.y16_c01274{bottom:197.320000pt;}
.y15_c01274{bottom:219.320000pt;}
.y14_c01274{bottom:241.186667pt;}
.y13_c01274{bottom:263.586667pt;}
.y12_c01274{bottom:284.920000pt;}
.y11_c01274{bottom:306.786667pt;}
.y10_c01274{bottom:328.386667pt;}
.yf_c01274{bottom:349.186667pt;}
.ye_c01274{bottom:371.720000pt;}
.yd_c01274{bottom:391.720000pt;}
.yc_c01274{bottom:413.986667pt;}
.yb_c01274{bottom:436.786667pt;}
.ya_c01274{bottom:457.186667pt;}
.y9_c01274{bottom:477.586667pt;}
.y8_c01274{bottom:499.720000pt;}
.y7_c01274{bottom:520.520000pt;}
.y6_c01274{bottom:542.653333pt;}
.y5_c01274{bottom:564.786667pt;}
.y4_c01274{bottom:586.386667pt;}
.y3_c01274{bottom:607.986667pt;}
.y2_c01274{bottom:629.720000pt;}
.y1_c01274{bottom:651.586667pt;}
.h4_c01274{height:11.733399pt;}
.h5_c01274{height:38.937500pt;}
.h2_c01274{height:73.244792pt;}
.h3_c01274{height:81.031250pt;}
.h0_c01274{height:695.266667pt;}
.h1_c01274{height:695.333333pt;}
.w2_c01274{width:93.222667pt;}
.w0_c01274{width:487.200000pt;}
.w1_c01274{width:487.333333pt;}
.x0_c01274{left:0.000000pt;}
.x2_c01274{left:38.133333pt;}
.x3_c01274{left:39.600000pt;}
.x5_c01274{left:41.466667pt;}
.x4_c01274{left:42.533333pt;}
.x6_c01274{left:43.600000pt;}
.x7_c01274{left:44.666667pt;}
.x9_c01274{left:45.600000pt;}
.x8_c01274{left:47.066667pt;}
.x1_c01274{left:124.933333pt;}
.xa_c01274{left:140.800000pt;}
.xb_c01274{left:200.768229pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_56a626b75dea2db398dd6954.woff2')format("woff");}.ff1_c01275{font-family:ff1_c01275;line-height:1.480469;font-style:normal;font-weight:normal;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_fed4ae755ee3fda10fa3c707.woff2')format("woff");}.ff2_c01275{font-family:ff2_c01275;line-height:1.568848;font-style:normal;font-weight:normal;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_c0822e8b500004c3ebacc666.woff2')format("woff");}.ff3_c01275{font-family:ff3_c01275;line-height:1.284668;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01275{font-family:ff4_c01275;line-height:1.219238;font-style: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;}
.ls0_c01275{letter-spacing:-3.000000px;}
.ls3_c01275{letter-spacing:0.000000px;}
.ls1_c01275{letter-spacing:3.000000px;}
.ls2_c01275{letter-spacing:6.000000px;}
.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;}
}
.ws1_c01275{word-spacing:-20.352000px;}
.ws0_c01275{word-spacing:-14.352000px;}
.ws2_c01275{word-spacing:0.000000px;}
._10_c01275{margin-left:-19.296000px;}
._15_c01275{margin-left:-15.840000px;}
._13_c01275{margin-left:-13.104000px;}
._5_c01275{margin-left:-7.416000px;}
._b_c01275{margin-left:-6.336000px;}
._6_c01275{margin-left:-4.752000px;}
._7_c01275{margin-left:-3.744000px;}
._8_c01275{margin-left:-2.016000px;}
._c_c01275{margin-left:-1.008000px;}
._a_c01275{width:1.008000px;}
._9_c01275{width:2.016000px;}
._3_c01275{width:3.456000px;}
._1_c01275{width:4.536000px;}
._2_c01275{width:6.336000px;}
._0_c01275{width:8.208000px;}
._4_c01275{width:9.648000px;}
._e_c01275{width:10.872000px;}
._f_c01275{width:12.888000px;}
._d_c01275{width:15.048000px;}
._11_c01275{width:40.392000px;}
._16_c01275{width:58.536000px;}
._17_c01275{width:95.472000px;}
._14_c01275{width:186.912000px;}
._12_c01275{width:587.736000px;}
.fc2_c01275{color:transparent;}
.fc1_c01275{color:rgb(128,128,128);}
.fc0_c01275{color:rgb(0,0,0);}
.fs2_c01275{font-size:48.000000px;}
.fs1_c01275{font-size:57.000000px;}
.fs0_c01275{font-size:72.000000px;}
.y0_c01275{bottom:0.000000px;}
.y1f_c01275{bottom:3.105000px;}
.y1e_c01275{bottom:7.228363px;}
.y1d_c01275{bottom:51.600000px;}
.y1c_c01275{bottom:64.800000px;}
.y1b_c01275{bottom:90.750000px;}
.y1a_c01275{bottom:116.100000px;}
.y19_c01275{bottom:141.000000px;}
.y18_c01275{bottom:165.750000px;}
.y17_c01275{bottom:190.650000px;}
.y16_c01275{bottom:215.250000px;}
.y15_c01275{bottom:240.300000px;}
.y14_c01275{bottom:265.950000px;}
.y13_c01275{bottom:289.800000px;}
.y12_c01275{bottom:314.850000px;}
.y11_c01275{bottom:340.200000px;}
.y10_c01275{bottom:364.200000px;}
.yf_c01275{bottom:389.850000px;}
.ye_c01275{bottom:413.100000px;}
.yd_c01275{bottom:438.000000px;}
.yc_c01275{bottom:460.950000px;}
.yb_c01275{bottom:485.700000px;}
.ya_c01275{bottom:510.600000px;}
.y9_c01275{bottom:535.950000px;}
.y8_c01275{bottom:560.250000px;}
.y7_c01275{bottom:584.550000px;}
.y6_c01275{bottom:609.150000px;}
.y5_c01275{bottom:634.050000px;}
.y4_c01275{bottom:658.800000px;}
.y3_c01275{bottom:683.400000px;}
.y2_c01275{bottom:707.700000px;}
.y1_c01275{bottom:733.350000px;}
.h3_c01275{height:13.200074px;}
.h4_c01275{height:43.804688px;}
.h1_c01275{height:84.269531px;}
.h2_c01275{height:91.160156px;}
.h0_c01275{height:789.750000px;}
.w1_c01275{width:104.875500px;}
.w0_c01275{width:530.250000px;}
.x0_c01275{left:0.000000px;}
.x5_c01275{left:87.750000px;}
.x2_c01275{left:96.300000px;}
.x3_c01275{left:97.650000px;}
.x4_c01275{left:98.850000px;}
.x6_c01275{left:100.500000px;}
.x7_c01275{left:110.400000px;}
.x1_c01275{left:201.450000px;}
.x8_c01275{left:216.939240px;}
@media print{
.v0_c01275{vertical-align:0.000000pt;}
.ls0_c01275{letter-spacing:-2.666667pt;}
.ls3_c01275{letter-spacing:0.000000pt;}
.ls1_c01275{letter-spacing:2.666667pt;}
.ls2_c01275{letter-spacing:5.333333pt;}
.ws1_c01275{word-spacing:-18.090667pt;}
.ws0_c01275{word-spacing:-12.757333pt;}
.ws2_c01275{word-spacing:0.000000pt;}
._10_c01275{margin-left:-17.152000pt;}
._15_c01275{margin-left:-14.080000pt;}
._13_c01275{margin-left:-11.648000pt;}
._5_c01275{margin-left:-6.592000pt;}
._b_c01275{margin-left:-5.632000pt;}
._6_c01275{margin-left:-4.224000pt;}
._7_c01275{margin-left:-3.328000pt;}
._8_c01275{margin-left:-1.792000pt;}
._c_c01275{margin-left:-0.896000pt;}
._a_c01275{width:0.896000pt;}
._9_c01275{width:1.792000pt;}
._3_c01275{width:3.072000pt;}
._1_c01275{width:4.032000pt;}
._2_c01275{width:5.632000pt;}
._0_c01275{width:7.296000pt;}
._4_c01275{width:8.576000pt;}
._e_c01275{width:9.664000pt;}
._f_c01275{width:11.456000pt;}
._d_c01275{width:13.376000pt;}
._11_c01275{width:35.904000pt;}
._16_c01275{width:52.032000pt;}
._17_c01275{width:84.864000pt;}
._14_c01275{width:166.144000pt;}
._12_c01275{width:522.432000pt;}
.fs2_c01275{font-size:42.666667pt;}
.fs1_c01275{font-size:50.666667pt;}
.fs0_c01275{font-size:64.000000pt;}
.y0_c01275{bottom:0.000000pt;}
.y1f_c01275{bottom:2.760000pt;}
.y1e_c01275{bottom:6.425212pt;}
.y1d_c01275{bottom:45.866667pt;}
.y1c_c01275{bottom:57.600000pt;}
.y1b_c01275{bottom:80.666667pt;}
.y1a_c01275{bottom:103.200000pt;}
.y19_c01275{bottom:125.333333pt;}
.y18_c01275{bottom:147.333333pt;}
.y17_c01275{bottom:169.466667pt;}
.y16_c01275{bottom:191.333333pt;}
.y15_c01275{bottom:213.600000pt;}
.y14_c01275{bottom:236.400000pt;}
.y13_c01275{bottom:257.600000pt;}
.y12_c01275{bottom:279.866667pt;}
.y11_c01275{bottom:302.400000pt;}
.y10_c01275{bottom:323.733333pt;}
.yf_c01275{bottom:346.533333pt;}
.ye_c01275{bottom:367.200000pt;}
.yd_c01275{bottom:389.333333pt;}
.yc_c01275{bottom:409.733333pt;}
.yb_c01275{bottom:431.733333pt;}
.ya_c01275{bottom:453.866667pt;}
.y9_c01275{bottom:476.400000pt;}
.y8_c01275{bottom:498.000000pt;}
.y7_c01275{bottom:519.600000pt;}
.y6_c01275{bottom:541.466667pt;}
.y5_c01275{bottom:563.600000pt;}
.y4_c01275{bottom:585.600000pt;}
.y3_c01275{bottom:607.466667pt;}
.y2_c01275{bottom:629.066667pt;}
.y1_c01275{bottom:651.866667pt;}
.h3_c01275{height:11.733399pt;}
.h4_c01275{height:38.937500pt;}
.h1_c01275{height:74.906250pt;}
.h2_c01275{height:81.031250pt;}
.h0_c01275{height:702.000000pt;}
.w1_c01275{width:93.222667pt;}
.w0_c01275{width:471.333333pt;}
.x0_c01275{left:0.000000pt;}
.x5_c01275{left:78.000000pt;}
.x2_c01275{left:85.600000pt;}
.x3_c01275{left:86.800000pt;}
.x4_c01275{left:87.866667pt;}
.x6_c01275{left:89.333333pt;}
.x7_c01275{left:98.133333pt;}
.x1_c01275{left:179.066667pt;}
.x8_c01275{left:192.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_186560b9eab3ad77fb8a4c84.woff2')format("woff");}.ff1_c01276{font-family:ff1_c01276;line-height:1.480469;font-style:normal;font-weight:normal;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_3cfef0c0be71da6d15abab11.woff2')format("woff");}.ff2_c01276{font-family:ff2_c01276;line-height:1.568848;font-style:normal;font-weight:normal;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_fba91e135be20b30307fa275.woff2')format("woff");}.ff3_c01276{font-family:ff3_c01276;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01276;src:url('chunks/assets/font_e5b193c95ab49afe96b47398.woff2')format("woff");}.ff4_c01276{font-family:ff4_c01276;line-height:1.284668;font-style:normal;font-weight:normal;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_1a8bef34993d8f9a48a89c86.woff2')format("woff");}.ff5_c01276{font-family:ff5_c01276;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01276;src:url('chunks/assets/font_d1d447b1a5c19def32212a01.woff2')format("woff");}.ff6_c01276{font-family:ff6_c01276;line-height:1.575000;font-style:normal;font-weight: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_c01276;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c01276{font-family:ff7_c01276;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01276{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01276{vertical-align:0.000000px;}
.ls2_c01276{letter-spacing:0.000000px;}
.ls3_c01276{letter-spacing:3.000000px;}
.ls1_c01276{letter-spacing:6.000000px;}
.ls0_c01276{letter-spacing:15.291000px;}
.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;}
}
.ws2_c01276{word-spacing:-23.157000px;}
.ws3_c01276{word-spacing:-20.352000px;}
.ws0_c01276{word-spacing:-9.192000px;}
.ws4_c01276{word-spacing:0.000000px;}
.ws1_c01276{word-spacing:6.858000px;}
._16_c01276{margin-left:-14.421000px;}
._14_c01276{margin-left:-13.107000px;}
._11_c01276{margin-left:-9.663000px;}
._10_c01276{margin-left:-7.824000px;}
._17_c01276{margin-left:-5.589000px;}
._a_c01276{margin-left:-3.744000px;}
._f_c01276{margin-left:-1.872000px;}
._b_c01276{width:1.200000px;}
._e_c01276{width:2.448000px;}
._c_c01276{width:4.176000px;}
._d_c01276{width:5.400000px;}
._7_c01276{width:6.480000px;}
._5_c01276{width:7.992000px;}
._12_c01276{width:9.048000px;}
._3_c01276{width:10.512000px;}
._9_c01276{width:11.808000px;}
._6_c01276{width:13.608000px;}
._1_c01276{width:15.552000px;}
._13_c01276{width:16.833000px;}
._18_c01276{width:17.859000px;}
._4_c01276{width:20.448000px;}
._0_c01276{width:22.464000px;}
._2_c01276{width:25.344000px;}
._15_c01276{width:209.922000px;}
._8_c01276{width:292.608000px;}
.fc2_c01276{color:transparent;}
.fc1_c01276{color:rgb(128,128,128);}
.fc0_c01276{color:rgb(0,0,0);}
.fs5_c01276{font-size:48.000000px;}
.fs3_c01276{font-size:54.000000px;}
.fs2_c01276{font-size:57.000000px;}
.fs4_c01276{font-size:66.000000px;}
.fs0_c01276{font-size:72.000000px;}
.fs1_c01276{font-size:102.000000px;}
.y0_c01276{bottom:0.000000px;}
.y1e_c01276{bottom:3.105000px;}
.y1d_c01276{bottom:7.228371px;}
.y1c_c01276{bottom:66.615000px;}
.y1b_c01276{bottom:92.565000px;}
.y1a_c01276{bottom:116.415000px;}
.y19_c01276{bottom:142.215000px;}
.y18_c01276{bottom:167.415000px;}
.y17_c01276{bottom:191.715000px;}
.y16_c01276{bottom:216.015000px;}
.y15_c01276{bottom:241.065000px;}
.y14_c01276{bottom:265.965000px;}
.y13_c01276{bottom:290.715000px;}
.y12_c01276{bottom:315.315000px;}
.y11_c01276{bottom:338.865000px;}
.y10_c01276{bottom:363.915000px;}
.yf_c01276{bottom:388.215000px;}
.ye_c01276{bottom:411.765000px;}
.yd_c01276{bottom:435.765000px;}
.yc_c01276{bottom:460.815000px;}
.yb_c01276{bottom:484.965000px;}
.ya_c01276{bottom:509.415000px;}
.y9_c01276{bottom:532.665000px;}
.y8_c01276{bottom:557.565000px;}
.y7_c01276{bottom:583.215000px;}
.y6_c01276{bottom:606.615000px;}
.y5_c01276{bottom:632.115000px;}
.y4_c01276{bottom:655.215000px;}
.y3_c01276{bottom:679.515000px;}
.y2_c01276{bottom:705.015000px;}
.y1_c01276{bottom:730.365000px;}
.h6_c01276{height:13.200074px;}
.h7_c01276{height:43.804688px;}
.h5_c01276{height:55.942383px;}
.h4_c01276{height:68.370117px;}
.h3_c01276{height:91.160156px;}
.h2_c01276{height:102.796875px;}
.h0_c01276{height:773.025000px;}
.h1_c01276{height:773.250000px;}
.w2_c01276{width:104.875500px;}
.w0_c01276{width:538.950000px;}
.w1_c01276{width:539.250000px;}
.x0_c01276{left:0.000000px;}
.x2_c01276{left:38.100000px;}
.x3_c01276{left:39.600000px;}
.x4_c01276{left:44.250000px;}
.x5_c01276{left:45.900000px;}
.x6_c01276{left:47.250000px;}
.x8_c01276{left:48.900000px;}
.x7_c01276{left:49.950000px;}
.x9_c01276{left:70.200000px;}
.x1_c01276{left:155.700000px;}
.xa_c01276{left:221.289230px;}
@media print{
.v0_c01276{vertical-align:0.000000pt;}
.ls2_c01276{letter-spacing:0.000000pt;}
.ls3_c01276{letter-spacing:2.666667pt;}
.ls1_c01276{letter-spacing:5.333333pt;}
.ls0_c01276{letter-spacing:13.592000pt;}
.ws2_c01276{word-spacing:-20.584000pt;}
.ws3_c01276{word-spacing:-18.090667pt;}
.ws0_c01276{word-spacing:-8.170667pt;}
.ws4_c01276{word-spacing:0.000000pt;}
.ws1_c01276{word-spacing:6.096000pt;}
._16_c01276{margin-left:-12.818667pt;}
._14_c01276{margin-left:-11.650667pt;}
._11_c01276{margin-left:-8.589333pt;}
._10_c01276{margin-left:-6.954667pt;}
._17_c01276{margin-left:-4.968000pt;}
._a_c01276{margin-left:-3.328000pt;}
._f_c01276{margin-left:-1.664000pt;}
._b_c01276{width:1.066667pt;}
._e_c01276{width:2.176000pt;}
._c_c01276{width:3.712000pt;}
._d_c01276{width:4.800000pt;}
._7_c01276{width:5.760000pt;}
._5_c01276{width:7.104000pt;}
._12_c01276{width:8.042667pt;}
._3_c01276{width:9.344000pt;}
._9_c01276{width:10.496000pt;}
._6_c01276{width:12.096000pt;}
._1_c01276{width:13.824000pt;}
._13_c01276{width:14.962667pt;}
._18_c01276{width:15.874667pt;}
._4_c01276{width:18.176000pt;}
._0_c01276{width:19.968000pt;}
._2_c01276{width:22.528000pt;}
._15_c01276{width:186.597333pt;}
._8_c01276{width:260.096000pt;}
.fs5_c01276{font-size:42.666667pt;}
.fs3_c01276{font-size:48.000000pt;}
.fs2_c01276{font-size:50.666667pt;}
.fs4_c01276{font-size:58.666667pt;}
.fs0_c01276{font-size:64.000000pt;}
.fs1_c01276{font-size:90.666667pt;}
.y0_c01276{bottom:0.000000pt;}
.y1e_c01276{bottom:2.760000pt;}
.y1d_c01276{bottom:6.425219pt;}
.y1c_c01276{bottom:59.213333pt;}
.y1b_c01276{bottom:82.280000pt;}
.y1a_c01276{bottom:103.480000pt;}
.y19_c01276{bottom:126.413333pt;}
.y18_c01276{bottom:148.813333pt;}
.y17_c01276{bottom:170.413333pt;}
.y16_c01276{bottom:192.013333pt;}
.y15_c01276{bottom:214.280000pt;}
.y14_c01276{bottom:236.413333pt;}
.y13_c01276{bottom:258.413333pt;}
.y12_c01276{bottom:280.280000pt;}
.y11_c01276{bottom:301.213333pt;}
.y10_c01276{bottom:323.480000pt;}
.yf_c01276{bottom:345.080000pt;}
.ye_c01276{bottom:366.013333pt;}
.yd_c01276{bottom:387.346667pt;}
.yc_c01276{bottom:409.613333pt;}
.yb_c01276{bottom:431.080000pt;}
.ya_c01276{bottom:452.813333pt;}
.y9_c01276{bottom:473.480000pt;}
.y8_c01276{bottom:495.613333pt;}
.y7_c01276{bottom:518.413333pt;}
.y6_c01276{bottom:539.213333pt;}
.y5_c01276{bottom:561.880000pt;}
.y4_c01276{bottom:582.413333pt;}
.y3_c01276{bottom:604.013333pt;}
.y2_c01276{bottom:626.680000pt;}
.y1_c01276{bottom:649.213333pt;}
.h6_c01276{height:11.733399pt;}
.h7_c01276{height:38.937500pt;}
.h5_c01276{height:49.726562pt;}
.h4_c01276{height:60.773438pt;}
.h3_c01276{height:81.031250pt;}
.h2_c01276{height:91.375000pt;}
.h0_c01276{height:687.133333pt;}
.h1_c01276{height:687.333333pt;}
.w2_c01276{width:93.222667pt;}
.w0_c01276{width:479.066667pt;}
.w1_c01276{width:479.333333pt;}
.x0_c01276{left:0.000000pt;}
.x2_c01276{left:33.866667pt;}
.x3_c01276{left:35.200000pt;}
.x4_c01276{left:39.333333pt;}
.x5_c01276{left:40.800000pt;}
.x6_c01276{left:42.000000pt;}
.x8_c01276{left:43.466667pt;}
.x7_c01276{left:44.400000pt;}
.x9_c01276{left:62.400000pt;}
.x1_c01276{left:138.400000pt;}
.xa_c01276{left:196.701538pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_97549c89bbc872c27cc164a8.woff2')format("woff");}.ff1_c01277{font-family:ff1_c01277;line-height:1.480469;font-style:normal;font-weight:normal;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_69c21298859faa04909dac8b.woff2')format("woff");}.ff2_c01277{font-family:ff2_c01277;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01277{font-family:ff3_c01277;line-height:1.219238;font-style: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);}
.v0_c01277{vertical-align:0.000000px;}
.ls0_c01277{letter-spacing:-3.000000px;}
.ls2_c01277{letter-spacing:0.000000px;}
.ls1_c01277{letter-spacing:3.000000px;}
.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;}
}
.ws1_c01277{word-spacing:-30.192000px;}
.ws0_c01277{word-spacing:-13.200000px;}
.ws2_c01277{word-spacing:0.000000px;}
._12_c01277{margin-left:-11.952000px;}
._14_c01277{margin-left:-9.720000px;}
._c_c01277{margin-left:-7.632000px;}
._13_c01277{margin-left:-6.264000px;}
._b_c01277{margin-left:-5.112000px;}
._d_c01277{margin-left:-3.384000px;}
._9_c01277{margin-left:-2.088000px;}
._f_c01277{margin-left:-1.008000px;}
._5_c01277{width:1.800000px;}
._6_c01277{width:2.952000px;}
._7_c01277{width:4.248000px;}
._1_c01277{width:5.544000px;}
._8_c01277{width:6.552000px;}
._a_c01277{width:7.632000px;}
._e_c01277{width:8.928000px;}
._3_c01277{width:10.008000px;}
._2_c01277{width:12.024000px;}
._0_c01277{width:13.392000px;}
._11_c01277{width:14.544000px;}
._4_c01277{width:18.936000px;}
._15_c01277{width:24.624000px;}
._10_c01277{width:34.128000px;}
._16_c01277{width:1189.296000px;}
.fc2_c01277{color:transparent;}
.fc1_c01277{color:rgb(128,128,128);}
.fc0_c01277{color:rgb(0,0,0);}
.fs1_c01277{font-size:48.000000px;}
.fs0_c01277{font-size:72.000000px;}
.y0_c01277{bottom:0.000000px;}
.y1f_c01277{bottom:3.105000px;}
.y1e_c01277{bottom:7.228363px;}
.y1d_c01277{bottom:50.400000px;}
.y1c_c01277{bottom:73.650000px;}
.y1b_c01277{bottom:95.850000px;}
.y1a_c01277{bottom:120.900000px;}
.y19_c01277{bottom:146.100000px;}
.y18_c01277{bottom:170.700000px;}
.y17_c01277{bottom:196.050000px;}
.y16_c01277{bottom:222.300000px;}
.y15_c01277{bottom:245.400000px;}
.y14_c01277{bottom:270.300000px;}
.y13_c01277{bottom:294.750000px;}
.y12_c01277{bottom:319.650000px;}
.y11_c01277{bottom:343.950000px;}
.y10_c01277{bottom:368.550000px;}
.yf_c01277{bottom:391.800000px;}
.ye_c01277{bottom:415.800000px;}
.yd_c01277{bottom:440.550000px;}
.yc_c01277{bottom:463.800000px;}
.yb_c01277{bottom:488.400000px;}
.ya_c01277{bottom:513.600000px;}
.y9_c01277{bottom:537.750000px;}
.y8_c01277{bottom:562.950000px;}
.y7_c01277{bottom:587.250000px;}
.y6_c01277{bottom:612.000000px;}
.y5_c01277{bottom:636.150000px;}
.y4_c01277{bottom:661.500000px;}
.y3_c01277{bottom:685.800000px;}
.y2_c01277{bottom:710.400000px;}
.y1_c01277{bottom:736.350000px;}
.h3_c01277{height:13.200074px;}
.h4_c01277{height:43.804688px;}
.h2_c01277{height:91.160156px;}
.h0_c01277{height:785.700000px;}
.h1_c01277{height:786.000000px;}
.w2_c01277{width:104.875500px;}
.w1_c01277{width:520.500000px;}
.w0_c01277{width:520.800000px;}
.x0_c01277{left:0.000000px;}
.xa_c01277{left:99.450000px;}
.x9_c01277{left:100.800000px;}
.x7_c01277{left:102.000000px;}
.x8_c01277{left:103.350000px;}
.x6_c01277{left:104.700000px;}
.x5_c01277{left:105.750000px;}
.x4_c01277{left:107.100000px;}
.x3_c01277{left:108.750000px;}
.x2_c01277{left:111.000000px;}
.xb_c01277{left:212.214249px;}
.x1_c01277{left:219.600000px;}
@media print{
.v0_c01277{vertical-align:0.000000pt;}
.ls0_c01277{letter-spacing:-2.666667pt;}
.ls2_c01277{letter-spacing:0.000000pt;}
.ls1_c01277{letter-spacing:2.666667pt;}
.ws1_c01277{word-spacing:-26.837333pt;}
.ws0_c01277{word-spacing:-11.733333pt;}
.ws2_c01277{word-spacing:0.000000pt;}
._12_c01277{margin-left:-10.624000pt;}
._14_c01277{margin-left:-8.640000pt;}
._c_c01277{margin-left:-6.784000pt;}
._13_c01277{margin-left:-5.568000pt;}
._b_c01277{margin-left:-4.544000pt;}
._d_c01277{margin-left:-3.008000pt;}
._9_c01277{margin-left:-1.856000pt;}
._f_c01277{margin-left:-0.896000pt;}
._5_c01277{width:1.600000pt;}
._6_c01277{width:2.624000pt;}
._7_c01277{width:3.776000pt;}
._1_c01277{width:4.928000pt;}
._8_c01277{width:5.824000pt;}
._a_c01277{width:6.784000pt;}
._e_c01277{width:7.936000pt;}
._3_c01277{width:8.896000pt;}
._2_c01277{width:10.688000pt;}
._0_c01277{width:11.904000pt;}
._11_c01277{width:12.928000pt;}
._4_c01277{width:16.832000pt;}
._15_c01277{width:21.888000pt;}
._10_c01277{width:30.336000pt;}
._16_c01277{width:1057.152000pt;}
.fs1_c01277{font-size:42.666667pt;}
.fs0_c01277{font-size:64.000000pt;}
.y0_c01277{bottom:0.000000pt;}
.y1f_c01277{bottom:2.760000pt;}
.y1e_c01277{bottom:6.425212pt;}
.y1d_c01277{bottom:44.800000pt;}
.y1c_c01277{bottom:65.466667pt;}
.y1b_c01277{bottom:85.200000pt;}
.y1a_c01277{bottom:107.466667pt;}
.y19_c01277{bottom:129.866667pt;}
.y18_c01277{bottom:151.733333pt;}
.y17_c01277{bottom:174.266667pt;}
.y16_c01277{bottom:197.600000pt;}
.y15_c01277{bottom:218.133333pt;}
.y14_c01277{bottom:240.266667pt;}
.y13_c01277{bottom:262.000000pt;}
.y12_c01277{bottom:284.133333pt;}
.y11_c01277{bottom:305.733333pt;}
.y10_c01277{bottom:327.600000pt;}
.yf_c01277{bottom:348.266667pt;}
.ye_c01277{bottom:369.600000pt;}
.yd_c01277{bottom:391.600000pt;}
.yc_c01277{bottom:412.266667pt;}
.yb_c01277{bottom:434.133333pt;}
.ya_c01277{bottom:456.533333pt;}
.y9_c01277{bottom:478.000000pt;}
.y8_c01277{bottom:500.400000pt;}
.y7_c01277{bottom:522.000000pt;}
.y6_c01277{bottom:544.000000pt;}
.y5_c01277{bottom:565.466667pt;}
.y4_c01277{bottom:588.000000pt;}
.y3_c01277{bottom:609.600000pt;}
.y2_c01277{bottom:631.466667pt;}
.y1_c01277{bottom:654.533333pt;}
.h3_c01277{height:11.733399pt;}
.h4_c01277{height:38.937500pt;}
.h2_c01277{height:81.031250pt;}
.h0_c01277{height:698.400000pt;}
.h1_c01277{height:698.666667pt;}
.w2_c01277{width:93.222667pt;}
.w1_c01277{width:462.666667pt;}
.w0_c01277{width:462.933333pt;}
.x0_c01277{left:0.000000pt;}
.xa_c01277{left:88.400000pt;}
.x9_c01277{left:89.600000pt;}
.x7_c01277{left:90.666667pt;}
.x8_c01277{left:91.866667pt;}
.x6_c01277{left:93.066667pt;}
.x5_c01277{left:94.000000pt;}
.x4_c01277{left:95.200000pt;}
.x3_c01277{left:96.666667pt;}
.x2_c01277{left:98.666667pt;}
.xb_c01277{left:188.634888pt;}
.x1_c01277{left:195.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_acbac5a04f27f0c5b7e82037.woff2')format("woff");}.ff1_c01278{font-family:ff1_c01278;line-height:1.568848;font-style:normal;font-weight:normal;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_31be4b5807d9af5e80b67dbd.woff2')format("woff");}.ff2_c01278{font-family:ff2_c01278;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01278{font-family:ff3_c01278;line-height:1.219238;font-style: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:-3.000000px;}
.ls2_c01278{letter-spacing:0.000000px;}
.ls0_c01278{letter-spacing:3.000000px;}
.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:-14.352000px;}
.ws1_c01278{word-spacing:0.000000px;}
._9_c01278{margin-left:-19.296000px;}
._2_c01278{margin-left:-15.840000px;}
._17_c01278{margin-left:-10.152000px;}
._16_c01278{margin-left:-8.856000px;}
._3_c01278{margin-left:-7.776000px;}
._15_c01278{margin-left:-6.696000px;}
._12_c01278{margin-left:-5.616000px;}
._d_c01278{margin-left:-3.816000px;}
._5_c01278{margin-left:-2.160000px;}
._e_c01278{margin-left:-1.080000px;}
._c_c01278{width:1.584000px;}
._b_c01278{width:2.952000px;}
._10_c01278{width:4.032000px;}
._4_c01278{width:5.040000px;}
._14_c01278{width:6.408000px;}
._1_c01278{width:7.488000px;}
._6_c01278{width:9.432000px;}
._0_c01278{width:10.728000px;}
._8_c01278{width:12.096000px;}
._13_c01278{width:13.824000px;}
._11_c01278{width:14.904000px;}
._f_c01278{width:16.920000px;}
._a_c01278{width:18.624000px;}
._18_c01278{width:240.576000px;}
._7_c01278{width:263.976000px;}
.fc2_c01278{color:transparent;}
.fc1_c01278{color:rgb(128,128,128);}
.fc0_c01278{color:rgb(0,0,0);}
.fs1_c01278{font-size:48.000000px;}
.fs0_c01278{font-size:72.000000px;}
.y0_c01278{bottom:0.000000px;}
.y1f_c01278{bottom:3.105000px;}
.y1e_c01278{bottom:7.228357px;}
.y1d_c01278{bottom:51.030000px;}
.y1c_c01278{bottom:79.380000px;}
.y1b_c01278{bottom:103.980000px;}
.y1a_c01278{bottom:128.580000px;}
.y19_c01278{bottom:153.630000px;}
.y18_c01278{bottom:176.880000px;}
.y17_c01278{bottom:201.780000px;}
.y16_c01278{bottom:228.180000px;}
.y15_c01278{bottom:249.780000px;}
.y14_c01278{bottom:277.380000px;}
.y13_c01278{bottom:302.730000px;}
.y12_c01278{bottom:325.980000px;}
.y11_c01278{bottom:350.430000px;}
.y10_c01278{bottom:374.280000px;}
.yf_c01278{bottom:397.680000px;}
.ye_c01278{bottom:421.830000px;}
.yd_c01278{bottom:446.130000px;}
.yc_c01278{bottom:470.430000px;}
.yb_c01278{bottom:494.430000px;}
.ya_c01278{bottom:518.430000px;}
.y9_c01278{bottom:542.130000px;}
.y8_c01278{bottom:566.730000px;}
.y7_c01278{bottom:590.730000px;}
.y6_c01278{bottom:615.030000px;}
.y5_c01278{bottom:639.930000px;}
.y4_c01278{bottom:664.230000px;}
.y3_c01278{bottom:688.230000px;}
.y2_c01278{bottom:712.830000px;}
.y1_c01278{bottom:738.480000px;}
.h3_c01278{height:13.200074px;}
.h4_c01278{height:43.804688px;}
.h2_c01278{height:91.160156px;}
.h0_c01278{height:780.600000px;}
.h1_c01278{height:780.750000px;}
.w2_c01278{width:104.875500px;}
.w1_c01278{width:528.750000px;}
.w0_c01278{width:528.900000px;}
.x0_c01278{left:0.000000px;}
.x3_c01278{left:29.400000px;}
.x4_c01278{left:30.450000px;}
.x2_c01278{left:31.950000px;}
.x5_c01278{left:33.450000px;}
.x1_c01278{left:151.800000px;}
.x7_c01278{left:216.264267px;}
.x6_c01278{left:260.550000px;}
@media print{
.v0_c01278{vertical-align:0.000000pt;}
.ls1_c01278{letter-spacing:-2.666667pt;}
.ls2_c01278{letter-spacing:0.000000pt;}
.ls0_c01278{letter-spacing:2.666667pt;}
.ws0_c01278{word-spacing:-12.757333pt;}
.ws1_c01278{word-spacing:0.000000pt;}
._9_c01278{margin-left:-17.152000pt;}
._2_c01278{margin-left:-14.080000pt;}
._17_c01278{margin-left:-9.024000pt;}
._16_c01278{margin-left:-7.872000pt;}
._3_c01278{margin-left:-6.912000pt;}
._15_c01278{margin-left:-5.952000pt;}
._12_c01278{margin-left:-4.992000pt;}
._d_c01278{margin-left:-3.392000pt;}
._5_c01278{margin-left:-1.920000pt;}
._e_c01278{margin-left:-0.960000pt;}
._c_c01278{width:1.408000pt;}
._b_c01278{width:2.624000pt;}
._10_c01278{width:3.584000pt;}
._4_c01278{width:4.480000pt;}
._14_c01278{width:5.696000pt;}
._1_c01278{width:6.656000pt;}
._6_c01278{width:8.384000pt;}
._0_c01278{width:9.536000pt;}
._8_c01278{width:10.752000pt;}
._13_c01278{width:12.288000pt;}
._11_c01278{width:13.248000pt;}
._f_c01278{width:15.040000pt;}
._a_c01278{width:16.554667pt;}
._18_c01278{width:213.845333pt;}
._7_c01278{width:234.645333pt;}
.fs1_c01278{font-size:42.666667pt;}
.fs0_c01278{font-size:64.000000pt;}
.y0_c01278{bottom:0.000000pt;}
.y1f_c01278{bottom:2.760000pt;}
.y1e_c01278{bottom:6.425206pt;}
.y1d_c01278{bottom:45.360000pt;}
.y1c_c01278{bottom:70.560000pt;}
.y1b_c01278{bottom:92.426667pt;}
.y1a_c01278{bottom:114.293333pt;}
.y19_c01278{bottom:136.560000pt;}
.y18_c01278{bottom:157.226667pt;}
.y17_c01278{bottom:179.360000pt;}
.y16_c01278{bottom:202.826667pt;}
.y15_c01278{bottom:222.026667pt;}
.y14_c01278{bottom:246.560000pt;}
.y13_c01278{bottom:269.093333pt;}
.y12_c01278{bottom:289.760000pt;}
.y11_c01278{bottom:311.493333pt;}
.y10_c01278{bottom:332.693333pt;}
.yf_c01278{bottom:353.493333pt;}
.ye_c01278{bottom:374.960000pt;}
.yd_c01278{bottom:396.560000pt;}
.yc_c01278{bottom:418.160000pt;}
.yb_c01278{bottom:439.493333pt;}
.ya_c01278{bottom:460.826667pt;}
.y9_c01278{bottom:481.893333pt;}
.y8_c01278{bottom:503.760000pt;}
.y7_c01278{bottom:525.093333pt;}
.y6_c01278{bottom:546.693333pt;}
.y5_c01278{bottom:568.826667pt;}
.y4_c01278{bottom:590.426667pt;}
.y3_c01278{bottom:611.760000pt;}
.y2_c01278{bottom:633.626667pt;}
.y1_c01278{bottom:656.426667pt;}
.h3_c01278{height:11.733399pt;}
.h4_c01278{height:38.937500pt;}
.h2_c01278{height:81.031250pt;}
.h0_c01278{height:693.866667pt;}
.h1_c01278{height:694.000000pt;}
.w2_c01278{width:93.222667pt;}
.w1_c01278{width:470.000000pt;}
.w0_c01278{width:470.133333pt;}
.x0_c01278{left:0.000000pt;}
.x3_c01278{left:26.133333pt;}
.x4_c01278{left:27.066667pt;}
.x2_c01278{left:28.400000pt;}
.x5_c01278{left:29.733333pt;}
.x1_c01278{left:134.933333pt;}
.x7_c01278{left:192.234904pt;}
.x6_c01278{left:231.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_30499e00f475f5b7970c3618.woff2')format("woff");}.ff1_c01279{font-family:ff1_c01279;line-height:1.284180;font-style:normal;font-weight:normal;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_a36c50499a220109ce03de2e.woff2')format("woff");}.ff2_c01279{font-family:ff2_c01279;line-height:1.284668;font-style:normal;font-weight:normal;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_f1b16eff4a4a57c0caeb2103.woff2')format("woff");}.ff3_c01279{font-family:ff3_c01279;line-height:1.568848;font-style:normal;font-weight:normal;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_524ff149598322494280f85f.woff2')format("woff");}.ff4_c01279{font-family:ff4_c01279;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01279{font-family:ff5_c01279;line-height:1.219238;font-style: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);}
.v1_c01279{vertical-align:-73.200000px;}
.v0_c01279{vertical-align:0.000000px;}
.ls1_c01279{letter-spacing:0.000000px;}
.ls0_c01279{letter-spacing:3.000000px;}
.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:-20.250000px;}
.ws1_c01279{word-spacing:0.000000px;}
._15_c01279{margin-left:-14.514000px;}
._10_c01279{margin-left:-11.664000px;}
._12_c01279{margin-left:-10.008000px;}
._13_c01279{margin-left:-8.742000px;}
._7_c01279{margin-left:-7.476000px;}
._11_c01279{margin-left:-6.030000px;}
._9_c01279{margin-left:-4.626000px;}
._3_c01279{margin-left:-2.688000px;}
._6_c01279{margin-left:-1.560000px;}
._5_c01279{width:1.596000px;}
._4_c01279{width:3.024000px;}
._1_c01279{width:4.536000px;}
._a_c01279{width:6.156000px;}
._2_c01279{width:7.224000px;}
._0_c01279{width:8.400000px;}
._d_c01279{width:9.792000px;}
._b_c01279{width:11.232000px;}
._e_c01279{width:12.384000px;}
._c_c01279{width:14.448000px;}
._8_c01279{width:16.224000px;}
._f_c01279{width:17.712000px;}
._14_c01279{width:18.972000px;}
._16_c01279{width:324.105000px;}
.fc2_c01279{color:transparent;}
.fc1_c01279{color:rgb(128,128,128);}
.fc0_c01279{color:rgb(0,0,0);}
.fs5_c01279{font-size:48.000000px;}
.fs3_c01279{font-size:63.000000px;}
.fs2_c01279{font-size:69.000000px;}
.fs1_c01279{font-size:72.000000px;}
.fs4_c01279{font-size:81.000000px;}
.fs0_c01279{font-size:84.000000px;}
.y0_c01279{bottom:0.000000px;}
.y1e_c01279{bottom:3.105000px;}
.y1d_c01279{bottom:7.228357px;}
.y1c_c01279{bottom:76.980000px;}
.y1b_c01279{bottom:103.380000px;}
.y1a_c01279{bottom:129.630000px;}
.y19_c01279{bottom:153.630000px;}
.y18_c01279{bottom:178.830000px;}
.y17_c01279{bottom:203.130000px;}
.y16_c01279{bottom:227.880000px;}
.y15_c01279{bottom:252.180000px;}
.y14_c01279{bottom:277.080000px;}
.y13_c01279{bottom:303.030000px;}
.y12_c01279{bottom:326.430000px;}
.y11_c01279{bottom:352.080000px;}
.y10_c01279{bottom:375.330000px;}
.yf_c01279{bottom:397.980000px;}
.ye_c01279{bottom:423.180000px;}
.yd_c01279{bottom:446.280000px;}
.yc_c01279{bottom:469.530000px;}
.yb_c01279{bottom:494.130000px;}
.ya_c01279{bottom:519.030000px;}
.y9_c01279{bottom:543.480000px;}
.y8_c01279{bottom:568.080000px;}
.y7_c01279{bottom:592.680000px;}
.y6_c01279{bottom:616.680000px;}
.y5_c01279{bottom:641.580000px;}
.y4_c01279{bottom:665.880000px;}
.y3_c01279{bottom:690.480000px;}
.y2_c01279{bottom:714.930000px;}
.y1_c01279{bottom:740.130000px;}
.h5_c01279{height:13.200074px;}
.h6_c01279{height:43.804688px;}
.h4_c01279{height:79.497070px;}
.h2_c01279{height:82.441406px;}
.h3_c01279{height:91.160156px;}
.h1_c01279{height:783.000000px;}
.h0_c01279{height:783.300000px;}
.w2_c01279{width:104.875500px;}
.w1_c01279{width:523.500000px;}
.w0_c01279{width:523.800000px;}
.x0_c01279{left:0.000000px;}
.x2_c01279{left:96.150000px;}
.x3_c01279{left:97.500000px;}
.x4_c01279{left:98.550000px;}
.x5_c01279{left:100.200000px;}
.x6_c01279{left:101.250000px;}
.x7_c01279{left:102.900000px;}
.x1_c01279{left:201.450000px;}
.x8_c01279{left:213.714249px;}
@media print{
.v1_c01279{vertical-align:-65.066667pt;}
.v0_c01279{vertical-align:0.000000pt;}
.ls1_c01279{letter-spacing:0.000000pt;}
.ls0_c01279{letter-spacing:2.666667pt;}
.ws0_c01279{word-spacing:-18.000000pt;}
.ws1_c01279{word-spacing:0.000000pt;}
._15_c01279{margin-left:-12.901333pt;}
._10_c01279{margin-left:-10.368000pt;}
._12_c01279{margin-left:-8.896000pt;}
._13_c01279{margin-left:-7.770667pt;}
._7_c01279{margin-left:-6.645333pt;}
._11_c01279{margin-left:-5.360000pt;}
._9_c01279{margin-left:-4.112000pt;}
._3_c01279{margin-left:-2.389333pt;}
._6_c01279{margin-left:-1.386667pt;}
._5_c01279{width:1.418667pt;}
._4_c01279{width:2.688000pt;}
._1_c01279{width:4.032000pt;}
._a_c01279{width:5.472000pt;}
._2_c01279{width:6.421333pt;}
._0_c01279{width:7.466667pt;}
._d_c01279{width:8.704000pt;}
._b_c01279{width:9.984000pt;}
._e_c01279{width:11.008000pt;}
._c_c01279{width:12.842667pt;}
._8_c01279{width:14.421333pt;}
._f_c01279{width:15.744000pt;}
._14_c01279{width:16.864000pt;}
._16_c01279{width:288.093333pt;}
.fs5_c01279{font-size:42.666667pt;}
.fs3_c01279{font-size:56.000000pt;}
.fs2_c01279{font-size:61.333333pt;}
.fs1_c01279{font-size:64.000000pt;}
.fs4_c01279{font-size:72.000000pt;}
.fs0_c01279{font-size:74.666667pt;}
.y0_c01279{bottom:0.000000pt;}
.y1e_c01279{bottom:2.760000pt;}
.y1d_c01279{bottom:6.425206pt;}
.y1c_c01279{bottom:68.426667pt;}
.y1b_c01279{bottom:91.893333pt;}
.y1a_c01279{bottom:115.226667pt;}
.y19_c01279{bottom:136.560000pt;}
.y18_c01279{bottom:158.960000pt;}
.y17_c01279{bottom:180.560000pt;}
.y16_c01279{bottom:202.560000pt;}
.y15_c01279{bottom:224.160000pt;}
.y14_c01279{bottom:246.293333pt;}
.y13_c01279{bottom:269.360000pt;}
.y12_c01279{bottom:290.160000pt;}
.y11_c01279{bottom:312.960000pt;}
.y10_c01279{bottom:333.626667pt;}
.yf_c01279{bottom:353.760000pt;}
.ye_c01279{bottom:376.160000pt;}
.yd_c01279{bottom:396.693333pt;}
.yc_c01279{bottom:417.360000pt;}
.yb_c01279{bottom:439.226667pt;}
.ya_c01279{bottom:461.360000pt;}
.y9_c01279{bottom:483.093333pt;}
.y8_c01279{bottom:504.960000pt;}
.y7_c01279{bottom:526.826667pt;}
.y6_c01279{bottom:548.160000pt;}
.y5_c01279{bottom:570.293333pt;}
.y4_c01279{bottom:591.893333pt;}
.y3_c01279{bottom:613.760000pt;}
.y2_c01279{bottom:635.493333pt;}
.y1_c01279{bottom:657.893333pt;}
.h5_c01279{height:11.733399pt;}
.h6_c01279{height:38.937500pt;}
.h4_c01279{height:70.664062pt;}
.h2_c01279{height:73.281250pt;}
.h3_c01279{height:81.031250pt;}
.h1_c01279{height:696.000000pt;}
.h0_c01279{height:696.266667pt;}
.w2_c01279{width:93.222667pt;}
.w1_c01279{width:465.333333pt;}
.w0_c01279{width:465.600000pt;}
.x0_c01279{left:0.000000pt;}
.x2_c01279{left:85.466667pt;}
.x3_c01279{left:86.666667pt;}
.x4_c01279{left:87.600000pt;}
.x5_c01279{left:89.066667pt;}
.x6_c01279{left:90.000000pt;}
.x7_c01279{left:91.466667pt;}
.x1_c01279{left:179.066667pt;}
.x8_c01279{left:189.968221pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b3fb2502dba758387949ec72.woff2')format("woff");}.ff1_c01280{font-family:ff1_c01280;line-height:1.480469;font-style:normal;font-weight:normal;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_a84769f10fbb60d914640579.woff2')format("woff");}.ff2_c01280{font-family:ff2_c01280;line-height:1.568848;font-style:normal;font-weight:normal;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_64f3b6cd8fdf71030d1ceef0.woff2')format("woff");}.ff3_c01280{font-family:ff3_c01280;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01280;src:url('chunks/assets/font_dc6c226aeccd8a3ed0d03809.woff2')format("woff");}.ff4_c01280{font-family:ff4_c01280;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01280;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01280{font-family:ff5_c01280;line-height:1.219238;font-style: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;}
.ls4_c01280{letter-spacing:-3.000000px;}
.ls2_c01280{letter-spacing:0.000000px;}
.ls3_c01280{letter-spacing:3.000000px;}
.ls1_c01280{letter-spacing:3.588000px;}
.ls0_c01280{letter-spacing:15.600000px;}
.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;}
}
.ws1_c01280{word-spacing:-20.352000px;}
.ws3_c01280{word-spacing:-15.183000px;}
.ws0_c01280{word-spacing:-14.352000px;}
.ws4_c01280{word-spacing:0.000000px;}
.ws2_c01280{word-spacing:8.760000px;}
._11_c01280{margin-left:-14.172000px;}
._10_c01280{margin-left:-12.570000px;}
._14_c01280{margin-left:-11.130000px;}
._13_c01280{margin-left:-8.922000px;}
._d_c01280{margin-left:-7.764000px;}
._c_c01280{margin-left:-5.784000px;}
._8_c01280{margin-left:-4.278000px;}
._a_c01280{margin-left:-3.102000px;}
._3_c01280{margin-left:-1.380000px;}
._b_c01280{width:1.704000px;}
._9_c01280{width:3.312000px;}
._e_c01280{width:4.392000px;}
._6_c01280{width:5.451000px;}
._5_c01280{width:6.831000px;}
._2_c01280{width:7.935000px;}
._f_c01280{width:9.144000px;}
._17_c01280{width:10.212000px;}
._4_c01280{width:11.454000px;}
._1_c01280{width:13.593000px;}
._12_c01280{width:15.120000px;}
._19_c01280{width:17.607000px;}
._18_c01280{width:19.293000px;}
._0_c01280{width:21.252000px;}
._15_c01280{width:24.342000px;}
._16_c01280{width:26.013000px;}
._7_c01280{width:294.273000px;}
.fc2_c01280{color:transparent;}
.fc1_c01280{color:rgb(128,128,128);}
.fc0_c01280{color:rgb(0,0,0);}
.fs4_c01280{font-size:48.000000px;}
.fs3_c01280{font-size:57.000000px;}
.fs2_c01280{font-size:63.000000px;}
.fs0_c01280{font-size:69.000000px;}
.fs1_c01280{font-size:72.000000px;}
.y0_c01280{bottom:0.000000px;}
.y1f_c01280{bottom:3.105000px;}
.y1e_c01280{bottom:7.228355px;}
.y1d_c01280{bottom:45.885000px;}
.y1c_c01280{bottom:76.635000px;}
.y1b_c01280{bottom:103.185000px;}
.y1a_c01280{bottom:127.785000px;}
.y19_c01280{bottom:152.235000px;}
.y18_c01280{bottom:171.435000px;}
.y17_c01280{bottom:202.185000px;}
.y16_c01280{bottom:226.785000px;}
.y15_c01280{bottom:251.385000px;}
.y14_c01280{bottom:275.085000px;}
.y13_c01280{bottom:299.685000px;}
.y12_c01280{bottom:324.885000px;}
.y11_c01280{bottom:345.285000px;}
.y10_c01280{bottom:373.935000px;}
.yf_c01280{bottom:397.785000px;}
.ye_c01280{bottom:421.785000px;}
.yd_c01280{bottom:446.085000px;}
.yc_c01280{bottom:470.085000px;}
.yb_c01280{bottom:493.635000px;}
.ya_c01280{bottom:518.085000px;}
.y9_c01280{bottom:542.235000px;}
.y8_c01280{bottom:565.935000px;}
.y7_c01280{bottom:589.635000px;}
.y6_c01280{bottom:615.135000px;}
.y5_c01280{bottom:638.835000px;}
.y4_c01280{bottom:663.135000px;}
.y3_c01280{bottom:688.035000px;}
.y2_c01280{bottom:712.335000px;}
.y1_c01280{bottom:737.685000px;}
.h5_c01280{height:13.200074px;}
.h6_c01280{height:43.804688px;}
.h4_c01280{height:79.765137px;}
.h2_c01280{height:87.361816px;}
.h3_c01280{height:91.160156px;}
.h0_c01280{height:783.525000px;}
.h1_c01280{height:783.750000px;}
.w1_c01280{width:104.875500px;}
.w0_c01280{width:533.250000px;}
.x0_c01280{left:0.000000px;}
.x6_c01280{left:27.600000px;}
.x5_c01280{left:29.250000px;}
.x3_c01280{left:30.600000px;}
.x2_c01280{left:31.800000px;}
.x4_c01280{left:33.000000px;}
.x1_c01280{left:146.100000px;}
.x8_c01280{left:218.439240px;}
.x7_c01280{left:377.700000px;}
@media print{
.v0_c01280{vertical-align:0.000000pt;}
.ls4_c01280{letter-spacing:-2.666667pt;}
.ls2_c01280{letter-spacing:0.000000pt;}
.ls3_c01280{letter-spacing:2.666667pt;}
.ls1_c01280{letter-spacing:3.189333pt;}
.ls0_c01280{letter-spacing:13.866667pt;}
.ws1_c01280{word-spacing:-18.090667pt;}
.ws3_c01280{word-spacing:-13.496000pt;}
.ws0_c01280{word-spacing:-12.757333pt;}
.ws4_c01280{word-spacing:0.000000pt;}
.ws2_c01280{word-spacing:7.786667pt;}
._11_c01280{margin-left:-12.597333pt;}
._10_c01280{margin-left:-11.173333pt;}
._14_c01280{margin-left:-9.893333pt;}
._13_c01280{margin-left:-7.930667pt;}
._d_c01280{margin-left:-6.901333pt;}
._c_c01280{margin-left:-5.141333pt;}
._8_c01280{margin-left:-3.802667pt;}
._a_c01280{margin-left:-2.757333pt;}
._3_c01280{margin-left:-1.226667pt;}
._b_c01280{width:1.514667pt;}
._9_c01280{width:2.944000pt;}
._e_c01280{width:3.904000pt;}
._6_c01280{width:4.845333pt;}
._5_c01280{width:6.072000pt;}
._2_c01280{width:7.053333pt;}
._f_c01280{width:8.128000pt;}
._17_c01280{width:9.077333pt;}
._4_c01280{width:10.181333pt;}
._1_c01280{width:12.082667pt;}
._12_c01280{width:13.440000pt;}
._19_c01280{width:15.650667pt;}
._18_c01280{width:17.149333pt;}
._0_c01280{width:18.890667pt;}
._15_c01280{width:21.637333pt;}
._16_c01280{width:23.122667pt;}
._7_c01280{width:261.576000pt;}
.fs4_c01280{font-size:42.666667pt;}
.fs3_c01280{font-size:50.666667pt;}
.fs2_c01280{font-size:56.000000pt;}
.fs0_c01280{font-size:61.333333pt;}
.fs1_c01280{font-size:64.000000pt;}
.y0_c01280{bottom:0.000000pt;}
.y1f_c01280{bottom:2.760000pt;}
.y1e_c01280{bottom:6.425204pt;}
.y1d_c01280{bottom:40.786667pt;}
.y1c_c01280{bottom:68.120000pt;}
.y1b_c01280{bottom:91.720000pt;}
.y1a_c01280{bottom:113.586667pt;}
.y19_c01280{bottom:135.320000pt;}
.y18_c01280{bottom:152.386667pt;}
.y17_c01280{bottom:179.720000pt;}
.y16_c01280{bottom:201.586667pt;}
.y15_c01280{bottom:223.453333pt;}
.y14_c01280{bottom:244.520000pt;}
.y13_c01280{bottom:266.386667pt;}
.y12_c01280{bottom:288.786667pt;}
.y11_c01280{bottom:306.920000pt;}
.y10_c01280{bottom:332.386667pt;}
.yf_c01280{bottom:353.586667pt;}
.ye_c01280{bottom:374.920000pt;}
.yd_c01280{bottom:396.520000pt;}
.yc_c01280{bottom:417.853333pt;}
.yb_c01280{bottom:438.786667pt;}
.ya_c01280{bottom:460.520000pt;}
.y9_c01280{bottom:481.986667pt;}
.y8_c01280{bottom:503.053333pt;}
.y7_c01280{bottom:524.120000pt;}
.y6_c01280{bottom:546.786667pt;}
.y5_c01280{bottom:567.853333pt;}
.y4_c01280{bottom:589.453333pt;}
.y3_c01280{bottom:611.586667pt;}
.y2_c01280{bottom:633.186667pt;}
.y1_c01280{bottom:655.720000pt;}
.h5_c01280{height:11.733399pt;}
.h6_c01280{height:38.937500pt;}
.h4_c01280{height:70.902344pt;}
.h2_c01280{height:77.654948pt;}
.h3_c01280{height:81.031250pt;}
.h0_c01280{height:696.466667pt;}
.h1_c01280{height:696.666667pt;}
.w1_c01280{width:93.222667pt;}
.w0_c01280{width:474.000000pt;}
.x0_c01280{left:0.000000pt;}
.x6_c01280{left:24.533333pt;}
.x5_c01280{left:26.000000pt;}
.x3_c01280{left:27.200000pt;}
.x2_c01280{left:28.266667pt;}
.x4_c01280{left:29.333333pt;}
.x1_c01280{left:129.866667pt;}
.x8_c01280{left:194.168213pt;}
.x7_c01280{left:335.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f75bfe8739f44c89ba056418.woff2')format("woff");}.ff1_c01281{font-family:ff1_c01281;line-height:1.284180;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01281{font-family:ff2_c01281;line-height:1.284668;font-style:normal;font-weight:normal;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_2c495f679b0eebc3e4ca77d5.woff2')format("woff");}.ff3_c01281{font-family:ff3_c01281;line-height:1.568848;font-style:normal;font-weight:normal;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_4e57bdcd4e1e5f007c628820.woff2')format("woff");}.ff4_c01281{font-family:ff4_c01281;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01281;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01281{font-family:ff5_c01281;line-height:1.219238;font-style: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;}
.ls2_c01281{letter-spacing:-3.000000px;}
.ls0_c01281{letter-spacing:0.000000px;}
.ls1_c01281{letter-spacing:3.000000px;}
.ls3_c01281{letter-spacing:9.000000px;}
.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;}
}
.ws1_c01281{word-spacing:-20.352000px;}
.ws0_c01281{word-spacing:-14.352000px;}
.ws2_c01281{word-spacing:0.000000px;}
._17_c01281{margin-left:-11.076000px;}
._b_c01281{margin-left:-9.624000px;}
._8_c01281{margin-left:-8.352000px;}
._13_c01281{margin-left:-6.480000px;}
._a_c01281{margin-left:-4.920000px;}
._7_c01281{margin-left:-3.108000px;}
._6_c01281{margin-left:-1.464000px;}
._1_c01281{width:1.848000px;}
._2_c01281{width:2.940000px;}
._0_c01281{width:4.032000px;}
._4_c01281{width:5.184000px;}
._5_c01281{width:7.140000px;}
._11_c01281{width:8.652000px;}
._12_c01281{width:9.876000px;}
._c_c01281{width:10.884000px;}
._3_c01281{width:12.348000px;}
._10_c01281{width:13.608000px;}
._15_c01281{width:14.652000px;}
._e_c01281{width:15.720000px;}
._9_c01281{width:17.628000px;}
._d_c01281{width:18.816000px;}
._19_c01281{width:21.648000px;}
._16_c01281{width:23.628000px;}
._1a_c01281{width:26.352000px;}
._18_c01281{width:28.344000px;}
._1b_c01281{width:35.652000px;}
._f_c01281{width:67.416000px;}
._14_c01281{width:123.120000px;}
.fc2_c01281{color:transparent;}
.fc1_c01281{color:rgb(128,128,128);}
.fc0_c01281{color:rgb(0,0,0);}
.fs2_c01281{font-size:42.000000px;}
.fs3_c01281{font-size:48.000000px;}
.fs1_c01281{font-size:72.000000px;}
.fs0_c01281{font-size:84.000000px;}
.y0_c01281{bottom:0.000000px;}
.y1f_c01281{bottom:3.105000px;}
.y1e_c01281{bottom:7.228369px;}
.y1d_c01281{bottom:55.920000px;}
.y1c_c01281{bottom:76.620000px;}
.y1b_c01281{bottom:101.520000px;}
.y1a_c01281{bottom:126.120000px;}
.y19_c01281{bottom:151.470000px;}
.y18_c01281{bottom:176.070000px;}
.y17_c01281{bottom:202.470000px;}
.y16_c01281{bottom:226.020000px;}
.y15_c01281{bottom:250.470000px;}
.y14_c01281{bottom:275.070000px;}
.y13_c01281{bottom:299.970000px;}
.y12_c01281{bottom:324.270000px;}
.y11_c01281{bottom:348.870000px;}
.y10_c01281{bottom:372.570000px;}
.yf_c01281{bottom:396.870000px;}
.ye_c01281{bottom:420.570000px;}
.yd_c01281{bottom:444.720000px;}
.yc_c01281{bottom:467.070000px;}
.yb_c01281{bottom:492.420000px;}
.ya_c01281{bottom:515.670000px;}
.y9_c01281{bottom:539.670000px;}
.y8_c01281{bottom:565.920000px;}
.y7_c01281{bottom:590.220000px;}
.y6_c01281{bottom:614.970000px;}
.y5_c01281{bottom:639.270000px;}
.y4_c01281{bottom:663.570000px;}
.y3_c01281{bottom:687.870000px;}
.y2_c01281{bottom:713.070000px;}
.y1_c01281{bottom:738.420000px;}
.h4_c01281{height:13.200073px;}
.h5_c01281{height:43.804688px;}
.h2_c01281{height:82.441406px;}
.h3_c01281{height:91.160156px;}
.h1_c01281{height:785.250000px;}
.h0_c01281{height:785.400000px;}
.w2_c01281{width:104.875500px;}
.w0_c01281{width:528.375000px;}
.w1_c01281{width:528.750000px;}
.x0_c01281{left:0.000000px;}
.x5_c01281{left:33.750000px;}
.x4_c01281{left:36.150000px;}
.x3_c01281{left:37.200000px;}
.x2_c01281{left:111.750000px;}
.x6_c01281{left:113.400000px;}
.x7_c01281{left:114.450000px;}
.x1_c01281{left:208.350000px;}
.x9_c01281{left:216.001740px;}
.x8_c01281{left:434.700000px;}
@media print{
.v0_c01281{vertical-align:0.000000pt;}
.ls2_c01281{letter-spacing:-2.666667pt;}
.ls0_c01281{letter-spacing:0.000000pt;}
.ls1_c01281{letter-spacing:2.666667pt;}
.ls3_c01281{letter-spacing:8.000000pt;}
.ws1_c01281{word-spacing:-18.090667pt;}
.ws0_c01281{word-spacing:-12.757333pt;}
.ws2_c01281{word-spacing:0.000000pt;}
._17_c01281{margin-left:-9.845333pt;}
._b_c01281{margin-left:-8.554667pt;}
._8_c01281{margin-left:-7.424000pt;}
._13_c01281{margin-left:-5.760000pt;}
._a_c01281{margin-left:-4.373333pt;}
._7_c01281{margin-left:-2.762667pt;}
._6_c01281{margin-left:-1.301333pt;}
._1_c01281{width:1.642667pt;}
._2_c01281{width:2.613333pt;}
._0_c01281{width:3.584000pt;}
._4_c01281{width:4.608000pt;}
._5_c01281{width:6.346667pt;}
._11_c01281{width:7.690667pt;}
._12_c01281{width:8.778667pt;}
._c_c01281{width:9.674667pt;}
._3_c01281{width:10.976000pt;}
._10_c01281{width:12.096000pt;}
._15_c01281{width:13.024000pt;}
._e_c01281{width:13.973333pt;}
._9_c01281{width:15.669333pt;}
._d_c01281{width:16.725333pt;}
._19_c01281{width:19.242667pt;}
._16_c01281{width:21.002667pt;}
._1a_c01281{width:23.424000pt;}
._18_c01281{width:25.194667pt;}
._1b_c01281{width:31.690667pt;}
._f_c01281{width:59.925333pt;}
._14_c01281{width:109.440000pt;}
.fs2_c01281{font-size:37.333333pt;}
.fs3_c01281{font-size:42.666667pt;}
.fs1_c01281{font-size:64.000000pt;}
.fs0_c01281{font-size:74.666667pt;}
.y0_c01281{bottom:0.000000pt;}
.y1f_c01281{bottom:2.760000pt;}
.y1e_c01281{bottom:6.425217pt;}
.y1d_c01281{bottom:49.706667pt;}
.y1c_c01281{bottom:68.106667pt;}
.y1b_c01281{bottom:90.240000pt;}
.y1a_c01281{bottom:112.106667pt;}
.y19_c01281{bottom:134.640000pt;}
.y18_c01281{bottom:156.506667pt;}
.y17_c01281{bottom:179.973333pt;}
.y16_c01281{bottom:200.906667pt;}
.y15_c01281{bottom:222.640000pt;}
.y14_c01281{bottom:244.506667pt;}
.y13_c01281{bottom:266.640000pt;}
.y12_c01281{bottom:288.240000pt;}
.y11_c01281{bottom:310.106667pt;}
.y10_c01281{bottom:331.173333pt;}
.yf_c01281{bottom:352.773333pt;}
.ye_c01281{bottom:373.840000pt;}
.yd_c01281{bottom:395.306667pt;}
.yc_c01281{bottom:415.173333pt;}
.yb_c01281{bottom:437.706667pt;}
.ya_c01281{bottom:458.373333pt;}
.y9_c01281{bottom:479.706667pt;}
.y8_c01281{bottom:503.040000pt;}
.y7_c01281{bottom:524.640000pt;}
.y6_c01281{bottom:546.640000pt;}
.y5_c01281{bottom:568.240000pt;}
.y4_c01281{bottom:589.840000pt;}
.y3_c01281{bottom:611.440000pt;}
.y2_c01281{bottom:633.840000pt;}
.y1_c01281{bottom:656.373333pt;}
.h4_c01281{height:11.733399pt;}
.h5_c01281{height:38.937500pt;}
.h2_c01281{height:73.281250pt;}
.h3_c01281{height:81.031250pt;}
.h1_c01281{height:698.000000pt;}
.h0_c01281{height:698.133333pt;}
.w2_c01281{width:93.222667pt;}
.w0_c01281{width:469.666667pt;}
.w1_c01281{width:470.000000pt;}
.x0_c01281{left:0.000000pt;}
.x5_c01281{left:30.000000pt;}
.x4_c01281{left:32.133333pt;}
.x3_c01281{left:33.066667pt;}
.x2_c01281{left:99.333333pt;}
.x6_c01281{left:100.800000pt;}
.x7_c01281{left:101.733333pt;}
.x1_c01281{left:185.200000pt;}
.x9_c01281{left:192.001546pt;}
.x8_c01281{left:386.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_84eb862d9bbe37e9a14fc5f0.woff2')format("woff");}.ff1_c01282{font-family:ff1_c01282;line-height:1.568848;font-style:normal;font-weight:normal;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_bdc194163a1d4100b47395d4.woff2')format("woff");}.ff2_c01282{font-family:ff2_c01282;line-height:1.480469;font-style:normal;font-weight:normal;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_d4d079e8f979fab0b7207ce5.woff2')format("woff");}.ff3_c01282{font-family:ff3_c01282;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01282;src:url('chunks/assets/font_bd734f5119ba96156d61cf6d.woff2')format("woff");}.ff4_c01282{font-family:ff4_c01282;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01282;src:url('chunks/assets/font_dff614f709b8510b1f94f067.woff2')format("woff");}.ff5_c01282{font-family:ff5_c01282;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01282;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6_c01282{font-family:ff6_c01282;line-height:1.284668;font-style:normal;font-weight: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_c01282;src:url('chunks/assets/font_19a1b0ff9851c901a491cd85.woff2')format("woff");}.ff7_c01282{font-family:ff7_c01282;line-height:1.568848;font-style:normal;font-weight: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_c01282;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff8_c01282{font-family:ff8_c01282;line-height:1.219238;font-style: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;}
.ls1_c01282{letter-spacing:-3.000000px;}
.ls2_c01282{letter-spacing:0.000000px;}
.ls0_c01282{letter-spacing:3.000000px;}
.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;}
}
.ws4_c01282{word-spacing:-83.685000px;}
.ws2_c01282{word-spacing:-18.000000px;}
.ws1_c01282{word-spacing:-17.250000px;}
.ws3_c01282{word-spacing:-14.352000px;}
.ws0_c01282{word-spacing:-13.629000px;}
.ws5_c01282{word-spacing:0.000000px;}
._22_c01282{margin-left:-36.171000px;}
._18_c01282{margin-left:-19.842000px;}
._0_c01282{margin-left:-17.424000px;}
._20_c01282{margin-left:-16.353000px;}
._1a_c01282{margin-left:-14.088000px;}
._16_c01282{margin-left:-12.534000px;}
._15_c01282{margin-left:-10.089000px;}
._11_c01282{margin-left:-8.142000px;}
._12_c01282{margin-left:-6.279000px;}
._10_c01282{margin-left:-4.416000px;}
._d_c01282{margin-left:-3.312000px;}
._13_c01282{margin-left:-2.139000px;}
._f_c01282{margin-left:-1.128000px;}
._b_c01282{width:1.380000px;}
._5_c01282{width:2.736000px;}
._8_c01282{width:4.392000px;}
._e_c01282{width:5.817000px;}
._6_c01282{width:7.488000px;}
._7_c01282{width:9.144000px;}
._a_c01282{width:11.088000px;}
._17_c01282{width:12.384000px;}
._14_c01282{width:14.214000px;}
._3_c01282{width:16.128000px;}
._1f_c01282{width:17.505000px;}
._1c_c01282{width:20.160000px;}
._c_c01282{width:22.449000px;}
._1b_c01282{width:23.775000px;}
._2_c01282{width:37.080000px;}
._4_c01282{width:44.280000px;}
._1d_c01282{width:46.281000px;}
._1_c01282{width:113.736000px;}
._9_c01282{width:244.536000px;}
._23_c01282{width:359.904000px;}
._21_c01282{width:612.582000px;}
._19_c01282{width:876.072000px;}
._1e_c01282{width:932.952000px;}
.fc2_c01282{color:transparent;}
.fc1_c01282{color:rgb(128,128,128);}
.fc0_c01282{color:rgb(0,0,0);}
.fs5_c01282{font-size:48.000000px;}
.fs1_c01282{font-size:69.000000px;}
.fs0_c01282{font-size:72.000000px;}
.fs2_c01282{font-size:75.000000px;}
.fs3_c01282{font-size:78.000000px;}
.fs4_c01282{font-size:105.000000px;}
.y0_c01282{bottom:0.000000px;}
.y1f_c01282{bottom:3.105000px;}
.y1e_c01282{bottom:7.228355px;}
.y1d_c01282{bottom:52.935000px;}
.y1c_c01282{bottom:77.985000px;}
.y1b_c01282{bottom:103.485000px;}
.y1a_c01282{bottom:129.285000px;}
.y19_c01282{bottom:154.485000px;}
.y18_c01282{bottom:178.785000px;}
.y17_c01282{bottom:205.785000px;}
.y16_c01282{bottom:230.085000px;}
.y15_c01282{bottom:255.435000px;}
.y14_c01282{bottom:280.485000px;}
.y13_c01282{bottom:304.635000px;}
.y12_c01282{bottom:329.385000px;}
.y11_c01282{bottom:354.735000px;}
.y10_c01282{bottom:378.285000px;}
.yf_c01282{bottom:401.535000px;}
.ye_c01282{bottom:426.885000px;}
.yd_c01282{bottom:451.485000px;}
.yc_c01282{bottom:476.085000px;}
.yb_c01282{bottom:499.785000px;}
.ya_c01282{bottom:523.335000px;}
.y9_c01282{bottom:546.735000px;}
.y8_c01282{bottom:571.335000px;}
.y7_c01282{bottom:596.235000px;}
.y6_c01282{bottom:620.685000px;}
.y5_c01282{bottom:644.835000px;}
.y4_c01282{bottom:669.885000px;}
.y3_c01282{bottom:694.785000px;}
.y2_c01282{bottom:718.785000px;}
.y1_c01282{bottom:744.735000px;}
.h9_c01282{height:13.200074px;}
.ha_c01282{height:43.804688px;}
.h4_c01282{height:70.628906px;}
.h5_c01282{height:73.571777px;}
.h6_c01282{height:78.609375px;}
.h7_c01282{height:84.269531px;}
.h3_c01282{height:87.361816px;}
.h2_c01282{height:91.160156px;}
.h8_c01282{height:132.941895px;}
.h1_c01282{height:780.750000px;}
.h0_c01282{height:780.825000px;}
.w2_c01282{width:104.875500px;}
.w1_c01282{width:537.750000px;}
.w0_c01282{width:537.825000px;}
.x0_c01282{left:0.000000px;}
.x8_c01282{left:37.500000px;}
.x3_c01282{left:39.150000px;}
.x6_c01282{left:40.200000px;}
.x4_c01282{left:41.550000px;}
.x5_c01282{left:42.600000px;}
.x2_c01282{left:43.650000px;}
.xb_c01282{left:89.100000px;}
.x7_c01282{left:116.550000px;}
.x1_c01282{left:131.550000px;}
.xa_c01282{left:135.000000px;}
.x9_c01282{left:139.350000px;}
.xc_c01282{left:220.726730px;}
@media print{
.v0_c01282{vertical-align:0.000000pt;}
.ls1_c01282{letter-spacing:-2.666667pt;}
.ls2_c01282{letter-spacing:0.000000pt;}
.ls0_c01282{letter-spacing:2.666667pt;}
.ws4_c01282{word-spacing:-74.386667pt;}
.ws2_c01282{word-spacing:-16.000000pt;}
.ws1_c01282{word-spacing:-15.333333pt;}
.ws3_c01282{word-spacing:-12.757333pt;}
.ws0_c01282{word-spacing:-12.114667pt;}
.ws5_c01282{word-spacing:0.000000pt;}
._22_c01282{margin-left:-32.152000pt;}
._18_c01282{margin-left:-17.637333pt;}
._0_c01282{margin-left:-15.488000pt;}
._20_c01282{margin-left:-14.536000pt;}
._1a_c01282{margin-left:-12.522667pt;}
._16_c01282{margin-left:-11.141333pt;}
._15_c01282{margin-left:-8.968000pt;}
._11_c01282{margin-left:-7.237333pt;}
._12_c01282{margin-left:-5.581333pt;}
._10_c01282{margin-left:-3.925333pt;}
._d_c01282{margin-left:-2.944000pt;}
._13_c01282{margin-left:-1.901333pt;}
._f_c01282{margin-left:-1.002667pt;}
._b_c01282{width:1.226667pt;}
._5_c01282{width:2.432000pt;}
._8_c01282{width:3.904000pt;}
._e_c01282{width:5.170667pt;}
._6_c01282{width:6.656000pt;}
._7_c01282{width:8.128000pt;}
._a_c01282{width:9.856000pt;}
._17_c01282{width:11.008000pt;}
._14_c01282{width:12.634667pt;}
._3_c01282{width:14.336000pt;}
._1f_c01282{width:15.560000pt;}
._1c_c01282{width:17.920000pt;}
._c_c01282{width:19.954667pt;}
._1b_c01282{width:21.133333pt;}
._2_c01282{width:32.960000pt;}
._4_c01282{width:39.360000pt;}
._1d_c01282{width:41.138667pt;}
._1_c01282{width:101.098667pt;}
._9_c01282{width:217.365333pt;}
._23_c01282{width:319.914667pt;}
._21_c01282{width:544.517333pt;}
._19_c01282{width:778.730667pt;}
._1e_c01282{width:829.290667pt;}
.fs5_c01282{font-size:42.666667pt;}
.fs1_c01282{font-size:61.333333pt;}
.fs0_c01282{font-size:64.000000pt;}
.fs2_c01282{font-size:66.666667pt;}
.fs3_c01282{font-size:69.333333pt;}
.fs4_c01282{font-size:93.333333pt;}
.y0_c01282{bottom:0.000000pt;}
.y1f_c01282{bottom:2.760000pt;}
.y1e_c01282{bottom:6.425204pt;}
.y1d_c01282{bottom:47.053333pt;}
.y1c_c01282{bottom:69.320000pt;}
.y1b_c01282{bottom:91.986667pt;}
.y1a_c01282{bottom:114.920000pt;}
.y19_c01282{bottom:137.320000pt;}
.y18_c01282{bottom:158.920000pt;}
.y17_c01282{bottom:182.920000pt;}
.y16_c01282{bottom:204.520000pt;}
.y15_c01282{bottom:227.053333pt;}
.y14_c01282{bottom:249.320000pt;}
.y13_c01282{bottom:270.786667pt;}
.y12_c01282{bottom:292.786667pt;}
.y11_c01282{bottom:315.320000pt;}
.y10_c01282{bottom:336.253333pt;}
.yf_c01282{bottom:356.920000pt;}
.ye_c01282{bottom:379.453333pt;}
.yd_c01282{bottom:401.320000pt;}
.yc_c01282{bottom:423.186667pt;}
.yb_c01282{bottom:444.253333pt;}
.ya_c01282{bottom:465.186667pt;}
.y9_c01282{bottom:485.986667pt;}
.y8_c01282{bottom:507.853333pt;}
.y7_c01282{bottom:529.986667pt;}
.y6_c01282{bottom:551.720000pt;}
.y5_c01282{bottom:573.186667pt;}
.y4_c01282{bottom:595.453333pt;}
.y3_c01282{bottom:617.586667pt;}
.y2_c01282{bottom:638.920000pt;}
.y1_c01282{bottom:661.986667pt;}
.h9_c01282{height:11.733399pt;}
.ha_c01282{height:38.937500pt;}
.h4_c01282{height:62.781250pt;}
.h5_c01282{height:65.397135pt;}
.h6_c01282{height:69.875000pt;}
.h7_c01282{height:74.906250pt;}
.h3_c01282{height:77.654948pt;}
.h2_c01282{height:81.031250pt;}
.h8_c01282{height:118.170573pt;}
.h1_c01282{height:694.000000pt;}
.h0_c01282{height:694.066667pt;}
.w2_c01282{width:93.222667pt;}
.w1_c01282{width:478.000000pt;}
.w0_c01282{width:478.066667pt;}
.x0_c01282{left:0.000000pt;}
.x8_c01282{left:33.333333pt;}
.x3_c01282{left:34.800000pt;}
.x6_c01282{left:35.733333pt;}
.x4_c01282{left:36.933333pt;}
.x5_c01282{left:37.866667pt;}
.x2_c01282{left:38.800000pt;}
.xb_c01282{left:79.200000pt;}
.x7_c01282{left:103.600000pt;}
.x1_c01282{left:116.933333pt;}
.xa_c01282{left:120.000000pt;}
.x9_c01282{left:123.866667pt;}
.xc_c01282{left:196.201538pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c83452c952228be3d13ce1ae.woff2')format("woff");}.ff1_c01283{font-family:ff1_c01283;line-height:1.480469;font-style:normal;font-weight:normal;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_bb46c70b426dd694542e3110.woff2')format("woff");}.ff2_c01283{font-family:ff2_c01283;line-height:1.568848;font-style:normal;font-weight:normal;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_3b27607ba28dbb8e7412c727.woff2')format("woff");}.ff3_c01283{font-family:ff3_c01283;line-height:1.284180;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c01283{font-family:ff4_c01283;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01283;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01283{font-family:ff5_c01283;line-height:1.219238;font-style: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;}
.ls1_c01283{letter-spacing:0.000000px;}
.ls0_c01283{letter-spacing:3.000000px;}
.ls2_c01283{letter-spacing:6.000000px;}
.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;}
._f_c01283{margin-left:-26.322000px;}
._11_c01283{margin-left:-23.985000px;}
._10_c01283{margin-left:-21.132000px;}
._7_c01283{margin-left:-18.984000px;}
._12_c01283{margin-left:-13.908000px;}
._3_c01283{margin-left:-12.768000px;}
._15_c01283{margin-left:-11.178000px;}
._6_c01283{margin-left:-9.828000px;}
._4_c01283{margin-left:-7.728000px;}
._5_c01283{margin-left:-6.720000px;}
._e_c01283{margin-left:-4.278000px;}
._0_c01283{margin-left:-2.856000px;}
._1_c01283{margin-left:-1.008000px;}
._b_c01283{width:1.254000px;}
._c_c01283{width:2.640000px;}
._9_c01283{width:3.960000px;}
._a_c01283{width:5.424000px;}
._18_c01283{width:6.516000px;}
._8_c01283{width:8.136000px;}
._14_c01283{width:10.152000px;}
._2_c01283{width:11.844000px;}
._13_c01283{width:12.900000px;}
._17_c01283{width:14.556000px;}
._d_c01283{width:15.876000px;}
._1a_c01283{width:17.136000px;}
._16_c01283{width:18.216000px;}
._1b_c01283{width:22.248000px;}
._19_c01283{width:302.526000px;}
.fc2_c01283{color:transparent;}
.fc1_c01283{color:rgb(128,128,128);}
.fc0_c01283{color:rgb(0,0,0);}
.fs5_c01283{font-size:48.000000px;}
.fs4_c01283{font-size:57.000000px;}
.fs2_c01283{font-size:66.000000px;}
.fs1_c01283{font-size:72.000000px;}
.fs0_c01283{font-size:84.000000px;}
.fs3_c01283{font-size:117.000000px;}
.y0_c01283{bottom:0.000000px;}
.y1e_c01283{bottom:3.105000px;}
.y1d_c01283{bottom:7.228357px;}
.y1c_c01283{bottom:81.630000px;}
.y1b_c01283{bottom:106.380000px;}
.y1a_c01283{bottom:132.330000px;}
.y19_c01283{bottom:157.230000px;}
.y18_c01283{bottom:181.980000px;}
.y17_c01283{bottom:207.330000px;}
.y16_c01283{bottom:232.980000px;}
.y15_c01283{bottom:256.530000px;}
.y14_c01283{bottom:281.430000px;}
.y13_c01283{bottom:305.880000px;}
.y12_c01283{bottom:331.080000px;}
.y11_c01283{bottom:355.080000px;}
.y10_c01283{bottom:379.680000px;}
.yf_c01283{bottom:404.430000px;}
.ye_c01283{bottom:427.680000px;}
.yd_c01283{bottom:450.330000px;}
.yc_c01283{bottom:473.880000px;}
.yb_c01283{bottom:498.930000px;}
.ya_c01283{bottom:523.530000px;}
.y9_c01283{bottom:548.130000px;}
.y8_c01283{bottom:572.730000px;}
.y7_c01283{bottom:597.330000px;}
.y6_c01283{bottom:621.780000px;}
.y5_c01283{bottom:646.380000px;}
.y4_c01283{bottom:670.680000px;}
.y3_c01283{bottom:694.680000px;}
.y2_c01283{bottom:720.180000px;}
.y1_c01283{bottom:745.230000px;}
.h5_c01283{height:13.200074px;}
.h6_c01283{height:43.804688px;}
.h4_c01283{height:91.160156px;}
.h2_c01283{height:106.353516px;}
.h3_c01283{height:114.829102px;}
.h0_c01283{height:787.350000px;}
.h1_c01283{height:787.500000px;}
.w2_c01283{width:104.875500px;}
.w0_c01283{width:519.450000px;}
.w1_c01283{width:519.750000px;}
.x0_c01283{left:0.000000px;}
.x2_c01283{left:102.150000px;}
.x3_c01283{left:103.950000px;}
.x4_c01283{left:105.000000px;}
.x5_c01283{left:211.539230px;}
.x1_c01283{left:214.350000px;}
@media print{
.v0_c01283{vertical-align:0.000000pt;}
.ls1_c01283{letter-spacing:0.000000pt;}
.ls0_c01283{letter-spacing:2.666667pt;}
.ls2_c01283{letter-spacing:5.333333pt;}
.ws0_c01283{word-spacing:0.000000pt;}
._f_c01283{margin-left:-23.397333pt;}
._11_c01283{margin-left:-21.320000pt;}
._10_c01283{margin-left:-18.784000pt;}
._7_c01283{margin-left:-16.874667pt;}
._12_c01283{margin-left:-12.362667pt;}
._3_c01283{margin-left:-11.349333pt;}
._15_c01283{margin-left:-9.936000pt;}
._6_c01283{margin-left:-8.736000pt;}
._4_c01283{margin-left:-6.869333pt;}
._5_c01283{margin-left:-5.973333pt;}
._e_c01283{margin-left:-3.802667pt;}
._0_c01283{margin-left:-2.538667pt;}
._1_c01283{margin-left:-0.896000pt;}
._b_c01283{width:1.114667pt;}
._c_c01283{width:2.346667pt;}
._9_c01283{width:3.520000pt;}
._a_c01283{width:4.821333pt;}
._18_c01283{width:5.792000pt;}
._8_c01283{width:7.232000pt;}
._14_c01283{width:9.024000pt;}
._2_c01283{width:10.528000pt;}
._13_c01283{width:11.466667pt;}
._17_c01283{width:12.938667pt;}
._d_c01283{width:14.112000pt;}
._1a_c01283{width:15.232000pt;}
._16_c01283{width:16.192000pt;}
._1b_c01283{width:19.776000pt;}
._19_c01283{width:268.912000pt;}
.fs5_c01283{font-size:42.666667pt;}
.fs4_c01283{font-size:50.666667pt;}
.fs2_c01283{font-size:58.666667pt;}
.fs1_c01283{font-size:64.000000pt;}
.fs0_c01283{font-size:74.666667pt;}
.fs3_c01283{font-size:104.000000pt;}
.y0_c01283{bottom:0.000000pt;}
.y1e_c01283{bottom:2.760000pt;}
.y1d_c01283{bottom:6.425206pt;}
.y1c_c01283{bottom:72.560000pt;}
.y1b_c01283{bottom:94.560000pt;}
.y1a_c01283{bottom:117.626667pt;}
.y19_c01283{bottom:139.760000pt;}
.y18_c01283{bottom:161.760000pt;}
.y17_c01283{bottom:184.293333pt;}
.y16_c01283{bottom:207.093333pt;}
.y15_c01283{bottom:228.026667pt;}
.y14_c01283{bottom:250.160000pt;}
.y13_c01283{bottom:271.893333pt;}
.y12_c01283{bottom:294.293333pt;}
.y11_c01283{bottom:315.626667pt;}
.y10_c01283{bottom:337.493333pt;}
.yf_c01283{bottom:359.493333pt;}
.ye_c01283{bottom:380.160000pt;}
.yd_c01283{bottom:400.293333pt;}
.yc_c01283{bottom:421.226667pt;}
.yb_c01283{bottom:443.493333pt;}
.ya_c01283{bottom:465.360000pt;}
.y9_c01283{bottom:487.226667pt;}
.y8_c01283{bottom:509.093333pt;}
.y7_c01283{bottom:530.960000pt;}
.y6_c01283{bottom:552.693333pt;}
.y5_c01283{bottom:574.560000pt;}
.y4_c01283{bottom:596.160000pt;}
.y3_c01283{bottom:617.493333pt;}
.y2_c01283{bottom:640.160000pt;}
.y1_c01283{bottom:662.426667pt;}
.h5_c01283{height:11.733399pt;}
.h6_c01283{height:38.937500pt;}
.h4_c01283{height:81.031250pt;}
.h2_c01283{height:94.536458pt;}
.h3_c01283{height:102.070312pt;}
.h0_c01283{height:699.866667pt;}
.h1_c01283{height:700.000000pt;}
.w2_c01283{width:93.222667pt;}
.w0_c01283{width:461.733333pt;}
.w1_c01283{width:462.000000pt;}
.x0_c01283{left:0.000000pt;}
.x2_c01283{left:90.800000pt;}
.x3_c01283{left:92.400000pt;}
.x4_c01283{left:93.333333pt;}
.x5_c01283{left:188.034871pt;}
.x1_c01283{left:190.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e5c24f0787199f59ae3dd7d5.woff2')format("woff");}.ff1_c01284{font-family:ff1_c01284;line-height:1.284180;font-style:normal;font-weight:normal;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_77be93f1a6d3c3feb1b6a772.woff2')format("woff");}.ff2_c01284{font-family:ff2_c01284;line-height:1.284668;font-style:normal;font-weight:normal;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_e30c261dfae2b6694de7c085.woff2')format("woff");}.ff3_c01284{font-family:ff3_c01284;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01284;src:url('chunks/assets/font_95dea3822b8d231b5f96dc87.woff2')format("woff");}.ff4_c01284{font-family:ff4_c01284;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01284;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01284{font-family:ff5_c01284;line-height:1.219238;font-style: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;}
.ls1_c01284{letter-spacing:-3.000000px;}
.ls0_c01284{letter-spacing:0.000000px;}
.ls2_c01284{letter-spacing:3.000000px;}
.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:-30.192000px;}
.ws1_c01284{word-spacing:0.000000px;}
._18_c01284{margin-left:-14.652000px;}
._12_c01284{margin-left:-11.007000px;}
._14_c01284{margin-left:-9.864000px;}
._13_c01284{margin-left:-6.756000px;}
._2_c01284{margin-left:-4.788000px;}
._d_c01284{margin-left:-3.132000px;}
._c_c01284{margin-left:-1.668000px;}
._3_c01284{width:1.260000px;}
._4_c01284{width:2.352000px;}
._6_c01284{width:3.372000px;}
._a_c01284{width:4.536000px;}
._1_c01284{width:6.468000px;}
._10_c01284{width:7.488000px;}
._5_c01284{width:8.568000px;}
._8_c01284{width:9.639000px;}
._0_c01284{width:11.088000px;}
._b_c01284{width:12.948000px;}
._e_c01284{width:14.976000px;}
._15_c01284{width:16.068000px;}
._16_c01284{width:17.112000px;}
._9_c01284{width:18.240000px;}
._f_c01284{width:22.596000px;}
._11_c01284{width:24.132000px;}
._17_c01284{width:25.932000px;}
._1a_c01284{width:30.444000px;}
._1b_c01284{width:232.668000px;}
._7_c01284{width:288.117000px;}
._19_c01284{width:719.604000px;}
.fc2_c01284{color:transparent;}
.fc1_c01284{color:rgb(128,128,128);}
.fc0_c01284{color:rgb(0,0,0);}
.fs4_c01284{font-size:48.000000px;}
.fs2_c01284{font-size:72.000000px;}
.fs1_c01284{font-size:81.000000px;}
.fs0_c01284{font-size:84.000000px;}
.fs3_c01284{font-size:87.000000px;}
.y0_c01284{bottom:0.000000px;}
.y1f_c01284{bottom:3.105000px;}
.y1e_c01284{bottom:7.228355px;}
.y1d_c01284{bottom:48.135000px;}
.y1c_c01284{bottom:75.285000px;}
.y1b_c01284{bottom:100.785000px;}
.y1a_c01284{bottom:125.535000px;}
.y19_c01284{bottom:150.735000px;}
.y18_c01284{bottom:175.485000px;}
.y17_c01284{bottom:200.385000px;}
.y16_c01284{bottom:224.685000px;}
.y15_c01284{bottom:249.435000px;}
.y14_c01284{bottom:274.035000px;}
.y13_c01284{bottom:299.235000px;}
.y12_c01284{bottom:323.985000px;}
.y11_c01284{bottom:347.985000px;}
.y10_c01284{bottom:371.235000px;}
.yf_c01284{bottom:394.485000px;}
.ye_c01284{bottom:419.085000px;}
.yd_c01284{bottom:443.685000px;}
.yc_c01284{bottom:467.685000px;}
.yb_c01284{bottom:491.985000px;}
.ya_c01284{bottom:515.985000px;}
.y9_c01284{bottom:539.985000px;}
.y8_c01284{bottom:564.585000px;}
.y7_c01284{bottom:588.285000px;}
.y6_c01284{bottom:612.585000px;}
.y5_c01284{bottom:636.735000px;}
.y4_c01284{bottom:660.735000px;}
.y3_c01284{bottom:685.485000px;}
.y2_c01284{bottom:710.385000px;}
.y1_c01284{bottom:735.735000px;}
.h5_c01284{height:13.200074px;}
.h6_c01284{height:43.804688px;}
.h2_c01284{height:82.400391px;}
.h3_c01284{height:91.160156px;}
.h4_c01284{height:110.151855px;}
.h1_c01284{height:780.750000px;}
.h0_c01284{height:780.825000px;}
.w2_c01284{width:104.875500px;}
.w0_c01284{width:532.950000px;}
.w1_c01284{width:533.250000px;}
.x0_c01284{left:0.000000px;}
.x3_c01284{left:49.500000px;}
.x4_c01284{left:51.000000px;}
.x2_c01284{left:52.650000px;}
.x1_c01284{left:171.750000px;}
.x5_c01284{left:218.289230px;}
@media print{
.v0_c01284{vertical-align:0.000000pt;}
.ls1_c01284{letter-spacing:-2.666667pt;}
.ls0_c01284{letter-spacing:0.000000pt;}
.ls2_c01284{letter-spacing:2.666667pt;}
.ws0_c01284{word-spacing:-26.837333pt;}
.ws1_c01284{word-spacing:0.000000pt;}
._18_c01284{margin-left:-13.024000pt;}
._12_c01284{margin-left:-9.784000pt;}
._14_c01284{margin-left:-8.768000pt;}
._13_c01284{margin-left:-6.005333pt;}
._2_c01284{margin-left:-4.256000pt;}
._d_c01284{margin-left:-2.784000pt;}
._c_c01284{margin-left:-1.482667pt;}
._3_c01284{width:1.120000pt;}
._4_c01284{width:2.090667pt;}
._6_c01284{width:2.997333pt;}
._a_c01284{width:4.032000pt;}
._1_c01284{width:5.749333pt;}
._10_c01284{width:6.656000pt;}
._5_c01284{width:7.616000pt;}
._8_c01284{width:8.568000pt;}
._0_c01284{width:9.856000pt;}
._b_c01284{width:11.509333pt;}
._e_c01284{width:13.312000pt;}
._15_c01284{width:14.282667pt;}
._16_c01284{width:15.210667pt;}
._9_c01284{width:16.213333pt;}
._f_c01284{width:20.085333pt;}
._11_c01284{width:21.450667pt;}
._17_c01284{width:23.050667pt;}
._1a_c01284{width:27.061333pt;}
._1b_c01284{width:206.816000pt;}
._7_c01284{width:256.104000pt;}
._19_c01284{width:639.648000pt;}
.fs4_c01284{font-size:42.666667pt;}
.fs2_c01284{font-size:64.000000pt;}
.fs1_c01284{font-size:72.000000pt;}
.fs0_c01284{font-size:74.666667pt;}
.fs3_c01284{font-size:77.333333pt;}
.y0_c01284{bottom:0.000000pt;}
.y1f_c01284{bottom:2.760000pt;}
.y1e_c01284{bottom:6.425204pt;}
.y1d_c01284{bottom:42.786667pt;}
.y1c_c01284{bottom:66.920000pt;}
.y1b_c01284{bottom:89.586667pt;}
.y1a_c01284{bottom:111.586667pt;}
.y19_c01284{bottom:133.986667pt;}
.y18_c01284{bottom:155.986667pt;}
.y17_c01284{bottom:178.120000pt;}
.y16_c01284{bottom:199.720000pt;}
.y15_c01284{bottom:221.720000pt;}
.y14_c01284{bottom:243.586667pt;}
.y13_c01284{bottom:265.986667pt;}
.y12_c01284{bottom:287.986667pt;}
.y11_c01284{bottom:309.320000pt;}
.y10_c01284{bottom:329.986667pt;}
.yf_c01284{bottom:350.653333pt;}
.ye_c01284{bottom:372.520000pt;}
.yd_c01284{bottom:394.386667pt;}
.yc_c01284{bottom:415.720000pt;}
.yb_c01284{bottom:437.320000pt;}
.ya_c01284{bottom:458.653333pt;}
.y9_c01284{bottom:479.986667pt;}
.y8_c01284{bottom:501.853333pt;}
.y7_c01284{bottom:522.920000pt;}
.y6_c01284{bottom:544.520000pt;}
.y5_c01284{bottom:565.986667pt;}
.y4_c01284{bottom:587.320000pt;}
.y3_c01284{bottom:609.320000pt;}
.y2_c01284{bottom:631.453333pt;}
.y1_c01284{bottom:653.986667pt;}
.h5_c01284{height:11.733399pt;}
.h6_c01284{height:38.937500pt;}
.h2_c01284{height:73.244792pt;}
.h3_c01284{height:81.031250pt;}
.h4_c01284{height:97.912760pt;}
.h1_c01284{height:694.000000pt;}
.h0_c01284{height:694.066667pt;}
.w2_c01284{width:93.222667pt;}
.w0_c01284{width:473.733333pt;}
.w1_c01284{width:474.000000pt;}
.x0_c01284{left:0.000000pt;}
.x3_c01284{left:44.000000pt;}
.x4_c01284{left:45.333333pt;}
.x2_c01284{left:46.800000pt;}
.x1_c01284{left:152.666667pt;}
.x5_c01284{left:194.034871pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_02de037b28888e8d2b85684b.woff2')format("woff");}.ff1_c01285{font-family:ff1_c01285;line-height:1.284180;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01285{font-family:ff2_c01285;line-height:1.284668;font-style:normal;font-weight:normal;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_55522094c9f5e71ce6f9866a.woff2')format("woff");}.ff3_c01285{font-family:ff3_c01285;line-height:1.568848;font-style:normal;font-weight:normal;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_129b0b007b7fdedb52537c50.woff2')format("woff");}.ff4_c01285{font-family:ff4_c01285;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01285;src:url('chunks/assets/font_13ba25df88ce274ea8e055be.woff2')format("woff");}.ff5_c01285{font-family:ff5_c01285;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01285;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01285{font-family:ff6_c01285;line-height:1.219238;font-style: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;}
.ls2_c01285{letter-spacing:0.000000px;}
.ls3_c01285{letter-spacing:3.000000px;}
.ls4_c01285{letter-spacing:6.000000px;}
.ls0_c01285{letter-spacing:6.900000px;}
.ls1_c01285{letter-spacing:22.500000px;}
.sc__c01285{text-shadow:none;}
.sc0_c01285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01285{-webkit-text-stroke:0px transparent;}
.sc0_c01285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01285{word-spacing:-36.051000px;}
.ws0_c01285{word-spacing:-20.352000px;}
.ws2_c01285{word-spacing:-18.000000px;}
.ws3_c01285{word-spacing:0.000000px;}
._15_c01285{margin-left:-23.448000px;}
._9_c01285{margin-left:-18.000000px;}
._8_c01285{margin-left:-15.852000px;}
._a_c01285{margin-left:-13.536000px;}
._1c_c01285{margin-left:-12.504000px;}
._19_c01285{margin-left:-10.872000px;}
._b_c01285{margin-left:-8.712000px;}
._f_c01285{margin-left:-7.704000px;}
._17_c01285{margin-left:-6.168000px;}
._c_c01285{margin-left:-5.064000px;}
._d_c01285{margin-left:-3.168000px;}
._3_c01285{margin-left:-1.800000px;}
._7_c01285{width:1.440000px;}
._6_c01285{width:2.952000px;}
._5_c01285{width:4.824000px;}
._1_c01285{width:6.408000px;}
._1d_c01285{width:7.416000px;}
._4_c01285{width:8.424000px;}
._e_c01285{width:9.720000px;}
._2_c01285{width:11.088000px;}
._16_c01285{width:12.264000px;}
._13_c01285{width:13.536000px;}
._0_c01285{width:15.192000px;}
._18_c01285{width:16.776000px;}
._11_c01285{width:23.400000px;}
._1b_c01285{width:25.632000px;}
._10_c01285{width:54.060000px;}
._12_c01285{width:59.328000px;}
._1a_c01285{width:132.480000px;}
._14_c01285{width:133.848000px;}
._1e_c01285{width:450.072000px;}
._1f_c01285{width:717.024000px;}
.fc2_c01285{color:transparent;}
.fc1_c01285{color:rgb(128,128,128);}
.fc0_c01285{color:rgb(0,0,0);}
.fs4_c01285{font-size:48.000000px;}
.fs1_c01285{font-size:63.000000px;}
.fs3_c01285{font-size:69.000000px;}
.fs0_c01285{font-size:72.000000px;}
.fs2_c01285{font-size:78.000000px;}
.y0_c01285{bottom:0.000000px;}
.y1f_c01285{bottom:3.105000px;}
.y1e_c01285{bottom:7.228363px;}
.y1d_c01285{bottom:48.300000px;}
.y1c_c01285{bottom:69.600000px;}
.y1b_c01285{bottom:95.250000px;}
.y1a_c01285{bottom:120.150000px;}
.y19_c01285{bottom:145.500000px;}
.y18_c01285{bottom:171.450000px;}
.y17_c01285{bottom:196.200000px;}
.y16_c01285{bottom:220.500000px;}
.y15_c01285{bottom:245.400000px;}
.y14_c01285{bottom:270.450000px;}
.y13_c01285{bottom:295.950000px;}
.y12_c01285{bottom:320.700000px;}
.y11_c01285{bottom:346.050000px;}
.y10_c01285{bottom:370.200000px;}
.yf_c01285{bottom:394.950000px;}
.ye_c01285{bottom:418.950000px;}
.yd_c01285{bottom:443.850000px;}
.yc_c01285{bottom:466.500000px;}
.yb_c01285{bottom:491.100000px;}
.ya_c01285{bottom:515.700000px;}
.y9_c01285{bottom:541.650000px;}
.y8_c01285{bottom:566.100000px;}
.y7_c01285{bottom:589.650000px;}
.y6_c01285{bottom:616.350000px;}
.y5_c01285{bottom:641.550000px;}
.y4_c01285{bottom:665.550000px;}
.y3_c01285{bottom:691.500000px;}
.y2_c01285{bottom:716.100000px;}
.y1_c01285{bottom:741.450000px;}
.h5_c01285{height:13.200074px;}
.h6_c01285{height:43.804688px;}
.h2_c01285{height:70.664062px;}
.h4_c01285{height:78.609375px;}
.h3_c01285{height:91.160156px;}
.h1_c01285{height:788.250000px;}
.h0_c01285{height:788.400000px;}
.w2_c01285{width:104.875500px;}
.w1_c01285{width:517.500000px;}
.w0_c01285{width:517.575000px;}
.x0_c01285{left:0.000000px;}
.x8_c01285{left:92.550000px;}
.x9_c01285{left:93.600000px;}
.x5_c01285{left:94.800000px;}
.x7_c01285{left:96.600000px;}
.x6_c01285{left:97.650000px;}
.x2_c01285{left:100.350000px;}
.xa_c01285{left:105.300000px;}
.x4_c01285{left:121.800000px;}
.x3_c01285{left:129.900000px;}
.x1_c01285{left:203.400000px;}
.xb_c01285{left:210.601730px;}
@media print{
.v0_c01285{vertical-align:0.000000pt;}
.ls2_c01285{letter-spacing:0.000000pt;}
.ls3_c01285{letter-spacing:2.666667pt;}
.ls4_c01285{letter-spacing:5.333333pt;}
.ls0_c01285{letter-spacing:6.133333pt;}
.ls1_c01285{letter-spacing:20.000000pt;}
.ws1_c01285{word-spacing:-32.045333pt;}
.ws0_c01285{word-spacing:-18.090667pt;}
.ws2_c01285{word-spacing:-16.000000pt;}
.ws3_c01285{word-spacing:0.000000pt;}
._15_c01285{margin-left:-20.842667pt;}
._9_c01285{margin-left:-16.000000pt;}
._8_c01285{margin-left:-14.090667pt;}
._a_c01285{margin-left:-12.032000pt;}
._1c_c01285{margin-left:-11.114667pt;}
._19_c01285{margin-left:-9.664000pt;}
._b_c01285{margin-left:-7.744000pt;}
._f_c01285{margin-left:-6.848000pt;}
._17_c01285{margin-left:-5.482667pt;}
._c_c01285{margin-left:-4.501333pt;}
._d_c01285{margin-left:-2.816000pt;}
._3_c01285{margin-left:-1.600000pt;}
._7_c01285{width:1.280000pt;}
._6_c01285{width:2.624000pt;}
._5_c01285{width:4.288000pt;}
._1_c01285{width:5.696000pt;}
._1d_c01285{width:6.592000pt;}
._4_c01285{width:7.488000pt;}
._e_c01285{width:8.640000pt;}
._2_c01285{width:9.856000pt;}
._16_c01285{width:10.901333pt;}
._13_c01285{width:12.032000pt;}
._0_c01285{width:13.504000pt;}
._18_c01285{width:14.912000pt;}
._11_c01285{width:20.800000pt;}
._1b_c01285{width:22.784000pt;}
._10_c01285{width:48.053333pt;}
._12_c01285{width:52.736000pt;}
._1a_c01285{width:117.760000pt;}
._14_c01285{width:118.976000pt;}
._1e_c01285{width:400.064000pt;}
._1f_c01285{width:637.354667pt;}
.fs4_c01285{font-size:42.666667pt;}
.fs1_c01285{font-size:56.000000pt;}
.fs3_c01285{font-size:61.333333pt;}
.fs0_c01285{font-size:64.000000pt;}
.fs2_c01285{font-size:69.333333pt;}
.y0_c01285{bottom:0.000000pt;}
.y1f_c01285{bottom:2.760000pt;}
.y1e_c01285{bottom:6.425212pt;}
.y1d_c01285{bottom:42.933333pt;}
.y1c_c01285{bottom:61.866667pt;}
.y1b_c01285{bottom:84.666667pt;}
.y1a_c01285{bottom:106.800000pt;}
.y19_c01285{bottom:129.333333pt;}
.y18_c01285{bottom:152.400000pt;}
.y17_c01285{bottom:174.400000pt;}
.y16_c01285{bottom:196.000000pt;}
.y15_c01285{bottom:218.133333pt;}
.y14_c01285{bottom:240.400000pt;}
.y13_c01285{bottom:263.066667pt;}
.y12_c01285{bottom:285.066667pt;}
.y11_c01285{bottom:307.600000pt;}
.y10_c01285{bottom:329.066667pt;}
.yf_c01285{bottom:351.066667pt;}
.ye_c01285{bottom:372.400000pt;}
.yd_c01285{bottom:394.533333pt;}
.yc_c01285{bottom:414.666667pt;}
.yb_c01285{bottom:436.533333pt;}
.ya_c01285{bottom:458.400000pt;}
.y9_c01285{bottom:481.466667pt;}
.y8_c01285{bottom:503.200000pt;}
.y7_c01285{bottom:524.133333pt;}
.y6_c01285{bottom:547.866667pt;}
.y5_c01285{bottom:570.266667pt;}
.y4_c01285{bottom:591.600000pt;}
.y3_c01285{bottom:614.666667pt;}
.y2_c01285{bottom:636.533333pt;}
.y1_c01285{bottom:659.066667pt;}
.h5_c01285{height:11.733399pt;}
.h6_c01285{height:38.937500pt;}
.h2_c01285{height:62.812500pt;}
.h4_c01285{height:69.875000pt;}
.h3_c01285{height:81.031250pt;}
.h1_c01285{height:700.666667pt;}
.h0_c01285{height:700.800000pt;}
.w2_c01285{width:93.222667pt;}
.w1_c01285{width:460.000000pt;}
.w0_c01285{width:460.066667pt;}
.x0_c01285{left:0.000000pt;}
.x8_c01285{left:82.266667pt;}
.x9_c01285{left:83.200000pt;}
.x5_c01285{left:84.266667pt;}
.x7_c01285{left:85.866667pt;}
.x6_c01285{left:86.800000pt;}
.x2_c01285{left:89.200000pt;}
.xa_c01285{left:93.600000pt;}
.x4_c01285{left:108.266667pt;}
.x3_c01285{left:115.466667pt;}
.x1_c01285{left:180.800000pt;}
.xb_c01285{left:187.201538pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9123cc4fa884f072dcebac86.woff2')format("woff");}.ff1_c01286{font-family:ff1_c01286;line-height:1.480469;font-style:normal;font-weight:normal;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_c862a297f889bf0b2cbd0b88.woff2')format("woff");}.ff2_c01286{font-family:ff2_c01286;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01286{font-family:ff3_c01286;line-height:1.219238;font-style: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;}
.ls0_c01286{letter-spacing:-3.000000px;}
.ls2_c01286{letter-spacing:0.000000px;}
.ls1_c01286{letter-spacing:3.000000px;}
.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:-14.352000px;}
.ws1_c01286{word-spacing:0.000000px;}
._1f_c01286{margin-left:-29.520000px;}
._1e_c01286{margin-left:-24.192000px;}
._16_c01286{margin-left:-18.072000px;}
._17_c01286{margin-left:-14.976000px;}
._14_c01286{margin-left:-13.824000px;}
._1c_c01286{margin-left:-11.016000px;}
._1b_c01286{margin-left:-9.720000px;}
._13_c01286{margin-left:-8.280000px;}
._12_c01286{margin-left:-7.248000px;}
._c_c01286{margin-left:-5.328000px;}
._e_c01286{margin-left:-4.176000px;}
._10_c01286{margin-left:-3.168000px;}
._11_c01286{margin-left:-2.160000px;}
._d_c01286{margin-left:-1.152000px;}
._b_c01286{width:1.728000px;}
._a_c01286{width:3.096000px;}
._2_c01286{width:5.040000px;}
._f_c01286{width:6.408000px;}
._5_c01286{width:7.416000px;}
._3_c01286{width:8.424000px;}
._18_c01286{width:9.792000px;}
._1_c01286{width:11.016000px;}
._6_c01286{width:12.024000px;}
._19_c01286{width:13.104000px;}
._9_c01286{width:14.328000px;}
._8_c01286{width:16.344000px;}
._0_c01286{width:18.648000px;}
._4_c01286{width:20.088000px;}
._15_c01286{width:29.592000px;}
._1a_c01286{width:34.200000px;}
._1d_c01286{width:42.255000px;}
._7_c01286{width:294.240000px;}
._20_c01286{width:314.424000px;}
.fc2_c01286{color:transparent;}
.fc1_c01286{color:rgb(128,128,128);}
.fc0_c01286{color:rgb(0,0,0);}
.fs2_c01286{font-size:48.000000px;}
.fs1_c01286{font-size:63.000000px;}
.fs0_c01286{font-size:72.000000px;}
.y0_c01286{bottom:0.000000px;}
.y1f_c01286{bottom:3.105000px;}
.y1e_c01286{bottom:7.228363px;}
.y1d_c01286{bottom:38.550000px;}
.y1c_c01286{bottom:63.450000px;}
.y1b_c01286{bottom:89.400000px;}
.y1a_c01286{bottom:114.450000px;}
.y19_c01286{bottom:139.050000px;}
.y18_c01286{bottom:164.400000px;}
.y17_c01286{bottom:188.400000px;}
.y16_c01286{bottom:214.350000px;}
.y15_c01286{bottom:239.250000px;}
.y14_c01286{bottom:263.700000px;}
.y13_c01286{bottom:288.900000px;}
.y12_c01286{bottom:313.500000px;}
.y11_c01286{bottom:337.800000px;}
.y10_c01286{bottom:362.850000px;}
.yf_c01286{bottom:386.400000px;}
.ye_c01286{bottom:410.850000px;}
.yd_c01286{bottom:435.450000px;}
.yc_c01286{bottom:459.750000px;}
.yb_c01286{bottom:484.950000px;}
.ya_c01286{bottom:509.400000px;}
.y9_c01286{bottom:534.300000px;}
.y8_c01286{bottom:558.300000px;}
.y7_c01286{bottom:582.900000px;}
.y6_c01286{bottom:608.250000px;}
.y5_c01286{bottom:632.250000px;}
.y4_c01286{bottom:656.550000px;}
.y3_c01286{bottom:681.750000px;}
.y2_c01286{bottom:706.500000px;}
.y1_c01286{bottom:731.700000px;}
.h2_c01286{height:13.200074px;}
.h3_c01286{height:43.804688px;}
.h1_c01286{height:91.160156px;}
.h0_c01286{height:769.500000px;}
.w2_c01286{width:104.875500px;}
.w1_c01286{width:537.000000px;}
.w0_c01286{width:537.300000px;}
.x0_c01286{left:0.000000px;}
.x8_c01286{left:30.150000px;}
.x7_c01286{left:34.050000px;}
.x2_c01286{left:35.850000px;}
.x3_c01286{left:37.200000px;}
.x4_c01286{left:38.550000px;}
.x5_c01286{left:39.600000px;}
.x6_c01286{left:40.800000px;}
.x1_c01286{left:151.950000px;}
.xa_c01286{left:220.464249px;}
.x9_c01286{left:244.950000px;}
@media print{
.v0_c01286{vertical-align:0.000000pt;}
.ls0_c01286{letter-spacing:-2.666667pt;}
.ls2_c01286{letter-spacing:0.000000pt;}
.ls1_c01286{letter-spacing:2.666667pt;}
.ws0_c01286{word-spacing:-12.757333pt;}
.ws1_c01286{word-spacing:0.000000pt;}
._1f_c01286{margin-left:-26.240000pt;}
._1e_c01286{margin-left:-21.504000pt;}
._16_c01286{margin-left:-16.064000pt;}
._17_c01286{margin-left:-13.312000pt;}
._14_c01286{margin-left:-12.288000pt;}
._1c_c01286{margin-left:-9.792000pt;}
._1b_c01286{margin-left:-8.640000pt;}
._13_c01286{margin-left:-7.360000pt;}
._12_c01286{margin-left:-6.442667pt;}
._c_c01286{margin-left:-4.736000pt;}
._e_c01286{margin-left:-3.712000pt;}
._10_c01286{margin-left:-2.816000pt;}
._11_c01286{margin-left:-1.920000pt;}
._d_c01286{margin-left:-1.024000pt;}
._b_c01286{width:1.536000pt;}
._a_c01286{width:2.752000pt;}
._2_c01286{width:4.480000pt;}
._f_c01286{width:5.696000pt;}
._5_c01286{width:6.592000pt;}
._3_c01286{width:7.488000pt;}
._18_c01286{width:8.704000pt;}
._1_c01286{width:9.792000pt;}
._6_c01286{width:10.688000pt;}
._19_c01286{width:11.648000pt;}
._9_c01286{width:12.736000pt;}
._8_c01286{width:14.528000pt;}
._0_c01286{width:16.576000pt;}
._4_c01286{width:17.856000pt;}
._15_c01286{width:26.304000pt;}
._1a_c01286{width:30.400000pt;}
._1d_c01286{width:37.560000pt;}
._7_c01286{width:261.546667pt;}
._20_c01286{width:279.488000pt;}
.fs2_c01286{font-size:42.666667pt;}
.fs1_c01286{font-size:56.000000pt;}
.fs0_c01286{font-size:64.000000pt;}
.y0_c01286{bottom:0.000000pt;}
.y1f_c01286{bottom:2.760000pt;}
.y1e_c01286{bottom:6.425212pt;}
.y1d_c01286{bottom:34.266667pt;}
.y1c_c01286{bottom:56.400000pt;}
.y1b_c01286{bottom:79.466667pt;}
.y1a_c01286{bottom:101.733333pt;}
.y19_c01286{bottom:123.600000pt;}
.y18_c01286{bottom:146.133333pt;}
.y17_c01286{bottom:167.466667pt;}
.y16_c01286{bottom:190.533333pt;}
.y15_c01286{bottom:212.666667pt;}
.y14_c01286{bottom:234.400000pt;}
.y13_c01286{bottom:256.800000pt;}
.y12_c01286{bottom:278.666667pt;}
.y11_c01286{bottom:300.266667pt;}
.y10_c01286{bottom:322.533333pt;}
.yf_c01286{bottom:343.466667pt;}
.ye_c01286{bottom:365.200000pt;}
.yd_c01286{bottom:387.066667pt;}
.yc_c01286{bottom:408.666667pt;}
.yb_c01286{bottom:431.066667pt;}
.ya_c01286{bottom:452.800000pt;}
.y9_c01286{bottom:474.933333pt;}
.y8_c01286{bottom:496.266667pt;}
.y7_c01286{bottom:518.133333pt;}
.y6_c01286{bottom:540.666667pt;}
.y5_c01286{bottom:562.000000pt;}
.y4_c01286{bottom:583.600000pt;}
.y3_c01286{bottom:606.000000pt;}
.y2_c01286{bottom:628.000000pt;}
.y1_c01286{bottom:650.400000pt;}
.h2_c01286{height:11.733399pt;}
.h3_c01286{height:38.937500pt;}
.h1_c01286{height:81.031250pt;}
.h0_c01286{height:684.000000pt;}
.w2_c01286{width:93.222667pt;}
.w1_c01286{width:477.333333pt;}
.w0_c01286{width:477.600000pt;}
.x0_c01286{left:0.000000pt;}
.x8_c01286{left:26.800000pt;}
.x7_c01286{left:30.266667pt;}
.x2_c01286{left:31.866667pt;}
.x3_c01286{left:33.066667pt;}
.x4_c01286{left:34.266667pt;}
.x5_c01286{left:35.200000pt;}
.x6_c01286{left:36.266667pt;}
.x1_c01286{left:135.066667pt;}
.xa_c01286{left:195.968221pt;}
.x9_c01286{left:217.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bf7ec5ae9a133c1645a9077a.woff2')format("woff");}.ff1_c01287{font-family:ff1_c01287;line-height:1.284180;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01287{font-family:ff2_c01287;line-height:1.284668;font-style:normal;font-weight:normal;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_3185255244ce24b28a0294b0.woff2')format("woff");}.ff3_c01287{font-family:ff3_c01287;line-height:1.568848;font-style:normal;font-weight:normal;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_272d85a281c4fa522f68cec6.woff2')format("woff");}.ff4_c01287{font-family:ff4_c01287;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01287;src:url('chunks/assets/font_4dea76f9838308812ceb9843.woff2')format("woff");}.ff5_c01287{font-family:ff5_c01287;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01287;src:url('chunks/assets/font_2797107b8be5406bdc0238e3.woff2')format("woff");}.ff6_c01287{font-family:ff6_c01287;line-height:1.592000;font-style:normal;font-weight: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_c01287;src:url('chunks/assets/font_42b9e6e47d069a721ef28444.woff2')format("woff");}.ff7_c01287{font-family:ff7_c01287;line-height:1.284180;font-style:normal;font-weight: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_c01287;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff8_c01287{font-family:ff8_c01287;line-height:1.219238;font-style: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;}
.ls4_c01287{letter-spacing:-6.000000px;}
.ls2_c01287{letter-spacing:-3.000000px;}
.ls1_c01287{letter-spacing:0.000000px;}
.ls0_c01287{letter-spacing:3.000000px;}
.ls5_c01287{letter-spacing:6.000000px;}
.ls3_c01287{letter-spacing:36.000000px;}
.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;}
}
.ws1_c01287{word-spacing:-45.000000px;}
.ws0_c01287{word-spacing:-30.192000px;}
.ws2_c01287{word-spacing:0.000000px;}
._18_c01287{margin-left:-80.394000px;}
._16_c01287{margin-left:-36.975000px;}
._a_c01287{margin-left:-14.112000px;}
._b_c01287{margin-left:-12.528000px;}
._15_c01287{margin-left:-7.704000px;}
._f_c01287{margin-left:-6.432000px;}
._3_c01287{margin-left:-5.376000px;}
._c_c01287{margin-left:-3.528000px;}
._8_c01287{margin-left:-2.400000px;}
._4_c01287{margin-left:-1.260000px;}
._5_c01287{width:1.296000px;}
._6_c01287{width:2.352000px;}
._1_c01287{width:3.612000px;}
._12_c01287{width:4.620000px;}
._2_c01287{width:5.628000px;}
._d_c01287{width:6.648000px;}
._10_c01287{width:7.728000px;}
._0_c01287{width:8.988000px;}
._9_c01287{width:10.116000px;}
._7_c01287{width:11.928000px;}
._11_c01287{width:13.908000px;}
._e_c01287{width:15.516000px;}
._13_c01287{width:21.432000px;}
._14_c01287{width:32.496000px;}
._1b_c01287{width:102.885000px;}
._17_c01287{width:223.938000px;}
._1a_c01287{width:546.021000px;}
._1c_c01287{width:603.699000px;}
._19_c01287{width:938.970000px;}
.fc2_c01287{color:transparent;}
.fc1_c01287{color:rgb(128,128,128);}
.fc0_c01287{color:rgb(0,0,0);}
.fs5_c01287{font-size:27.000000px;}
.fs7_c01287{font-size:48.000000px;}
.fs2_c01287{font-size:63.000000px;}
.fs1_c01287{font-size:72.000000px;}
.fs6_c01287{font-size:78.000000px;}
.fs0_c01287{font-size:84.000000px;}
.fs3_c01287{font-size:87.000000px;}
.fs4_c01287{font-size:90.000000px;}
.y0_c01287{bottom:0.000000px;}
.y20_c01287{bottom:3.105000px;}
.y1f_c01287{bottom:7.228355px;}
.y1e_c01287{bottom:48.585000px;}
.y1d_c01287{bottom:61.035000px;}
.y1c_c01287{bottom:77.235000px;}
.y1b_c01287{bottom:103.185000px;}
.y1a_c01287{bottom:127.785000px;}
.y19_c01287{bottom:154.185000px;}
.y18_c01287{bottom:178.185000px;}
.y17_c01287{bottom:203.085000px;}
.y16_c01287{bottom:228.435000px;}
.y15_c01287{bottom:252.135000px;}
.y14_c01287{bottom:277.785000px;}
.y13_c01287{bottom:302.685000px;}
.y12_c01287{bottom:327.585000px;}
.y11_c01287{bottom:352.935000px;}
.y10_c01287{bottom:376.185000px;}
.yf_c01287{bottom:399.885000px;}
.ye_c01287{bottom:425.535000px;}
.yd_c01287{bottom:446.835000px;}
.yc_c01287{bottom:471.135000px;}
.yb_c01287{bottom:496.035000px;}
.ya_c01287{bottom:520.785000px;}
.y9_c01287{bottom:545.385000px;}
.y8_c01287{bottom:570.285000px;}
.y7_c01287{bottom:595.335000px;}
.y6_c01287{bottom:619.335000px;}
.y5_c01287{bottom:644.985000px;}
.y4_c01287{bottom:668.835000px;}
.y3_c01287{bottom:693.435000px;}
.y2_c01287{bottom:718.185000px;}
.y1_c01287{bottom:743.535000px;}
.h6_c01287{height:13.200074px;}
.h7_c01287{height:43.804688px;}
.h5_c01287{height:76.514648px;}
.h2_c01287{height:82.441406px;}
.h4_c01287{height:90.703125px;}
.h3_c01287{height:91.160156px;}
.h1_c01287{height:792.750000px;}
.h0_c01287{height:792.975000px;}
.w2_c01287{width:104.875500px;}
.w0_c01287{width:521.625000px;}
.w1_c01287{width:522.000000px;}
.x0_c01287{left:0.000000px;}
.x3_c01287{left:92.850000px;}
.x4_c01287{left:94.200000px;}
.x5_c01287{left:95.400000px;}
.x2_c01287{left:96.900000px;}
.x6_c01287{left:98.100000px;}
.x8_c01287{left:99.150000px;}
.x7_c01287{left:100.200000px;}
.x9_c01287{left:101.250000px;}
.xa_c01287{left:103.950000px;}
.xb_c01287{left:111.600000px;}
.x1_c01287{left:201.600000px;}
.xc_c01287{left:212.626740px;}
@media print{
.v0_c01287{vertical-align:0.000000pt;}
.ls4_c01287{letter-spacing:-5.333333pt;}
.ls2_c01287{letter-spacing:-2.666667pt;}
.ls1_c01287{letter-spacing:0.000000pt;}
.ls0_c01287{letter-spacing:2.666667pt;}
.ls5_c01287{letter-spacing:5.333333pt;}
.ls3_c01287{letter-spacing:32.000000pt;}
.ws1_c01287{word-spacing:-40.000000pt;}
.ws0_c01287{word-spacing:-26.837333pt;}
.ws2_c01287{word-spacing:0.000000pt;}
._18_c01287{margin-left:-71.461333pt;}
._16_c01287{margin-left:-32.866667pt;}
._a_c01287{margin-left:-12.544000pt;}
._b_c01287{margin-left:-11.136000pt;}
._15_c01287{margin-left:-6.848000pt;}
._f_c01287{margin-left:-5.717333pt;}
._3_c01287{margin-left:-4.778667pt;}
._c_c01287{margin-left:-3.136000pt;}
._8_c01287{margin-left:-2.133333pt;}
._4_c01287{margin-left:-1.120000pt;}
._5_c01287{width:1.152000pt;}
._6_c01287{width:2.090667pt;}
._1_c01287{width:3.210667pt;}
._12_c01287{width:4.106667pt;}
._2_c01287{width:5.002667pt;}
._d_c01287{width:5.909333pt;}
._10_c01287{width:6.869333pt;}
._0_c01287{width:7.989333pt;}
._9_c01287{width:8.992000pt;}
._7_c01287{width:10.602667pt;}
._11_c01287{width:12.362667pt;}
._e_c01287{width:13.792000pt;}
._13_c01287{width:19.050667pt;}
._14_c01287{width:28.885333pt;}
._1b_c01287{width:91.453333pt;}
._17_c01287{width:199.056000pt;}
._1a_c01287{width:485.352000pt;}
._1c_c01287{width:536.621333pt;}
._19_c01287{width:834.640000pt;}
.fs5_c01287{font-size:24.000000pt;}
.fs7_c01287{font-size:42.666667pt;}
.fs2_c01287{font-size:56.000000pt;}
.fs1_c01287{font-size:64.000000pt;}
.fs6_c01287{font-size:69.333333pt;}
.fs0_c01287{font-size:74.666667pt;}
.fs3_c01287{font-size:77.333333pt;}
.fs4_c01287{font-size:80.000000pt;}
.y0_c01287{bottom:0.000000pt;}
.y20_c01287{bottom:2.760000pt;}
.y1f_c01287{bottom:6.425204pt;}
.y1e_c01287{bottom:43.186667pt;}
.y1d_c01287{bottom:54.253333pt;}
.y1c_c01287{bottom:68.653333pt;}
.y1b_c01287{bottom:91.720000pt;}
.y1a_c01287{bottom:113.586667pt;}
.y19_c01287{bottom:137.053333pt;}
.y18_c01287{bottom:158.386667pt;}
.y17_c01287{bottom:180.520000pt;}
.y16_c01287{bottom:203.053333pt;}
.y15_c01287{bottom:224.120000pt;}
.y14_c01287{bottom:246.920000pt;}
.y13_c01287{bottom:269.053333pt;}
.y12_c01287{bottom:291.186667pt;}
.y11_c01287{bottom:313.720000pt;}
.y10_c01287{bottom:334.386667pt;}
.yf_c01287{bottom:355.453333pt;}
.ye_c01287{bottom:378.253333pt;}
.yd_c01287{bottom:397.186667pt;}
.yc_c01287{bottom:418.786667pt;}
.yb_c01287{bottom:440.920000pt;}
.ya_c01287{bottom:462.920000pt;}
.y9_c01287{bottom:484.786667pt;}
.y8_c01287{bottom:506.920000pt;}
.y7_c01287{bottom:529.186667pt;}
.y6_c01287{bottom:550.520000pt;}
.y5_c01287{bottom:573.320000pt;}
.y4_c01287{bottom:594.520000pt;}
.y3_c01287{bottom:616.386667pt;}
.y2_c01287{bottom:638.386667pt;}
.y1_c01287{bottom:660.920000pt;}
.h6_c01287{height:11.733399pt;}
.h7_c01287{height:38.937500pt;}
.h5_c01287{height:68.013021pt;}
.h2_c01287{height:73.281250pt;}
.h4_c01287{height:80.625000pt;}
.h3_c01287{height:81.031250pt;}
.h1_c01287{height:704.666667pt;}
.h0_c01287{height:704.866667pt;}
.w2_c01287{width:93.222667pt;}
.w0_c01287{width:463.666667pt;}
.w1_c01287{width:464.000000pt;}
.x0_c01287{left:0.000000pt;}
.x3_c01287{left:82.533333pt;}
.x4_c01287{left:83.733333pt;}
.x5_c01287{left:84.800000pt;}
.x2_c01287{left:86.133333pt;}
.x6_c01287{left:87.200000pt;}
.x8_c01287{left:88.133333pt;}
.x7_c01287{left:89.066667pt;}
.x9_c01287{left:90.000000pt;}
.xa_c01287{left:92.400000pt;}
.xb_c01287{left:99.200000pt;}
.x1_c01287{left:179.200000pt;}
.xc_c01287{left:189.001546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f52b7d8ae927286598a97a1a.woff2')format("woff");}.ff1_c01288{font-family:ff1_c01288;line-height:1.480469;font-style:normal;font-weight:normal;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_9a9a60b74af87be420fcdbd1.woff2')format("woff");}.ff2_c01288{font-family:ff2_c01288;line-height:1.284180;font-style:normal;font-weight:normal;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_404b02359faefd7cfd787910.woff2')format("woff");}.ff3_c01288{font-family:ff3_c01288;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01288;src:url('chunks/assets/font_91925b9d599669980ffb24ed.woff2')format("woff");}.ff4_c01288{font-family:ff4_c01288;line-height:1.004883;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01288;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01288{font-family:ff5_c01288;line-height:1.219238;font-style: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;}
.v1_c01288{vertical-align:119.400000px;}
.ls1_c01288{letter-spacing:-3.000000px;}
.ls3_c01288{letter-spacing:0.000000px;}
.ls0_c01288{letter-spacing:3.000000px;}
.ls2_c01288{letter-spacing:6.000000px;}
.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:-27.918000px;}
.ws1_c01288{word-spacing:-0.204000px;}
.ws2_c01288{word-spacing:0.000000px;}
._14_c01288{margin-left:-17.736000px;}
._1b_c01288{margin-left:-16.452000px;}
._15_c01288{margin-left:-11.232000px;}
._16_c01288{margin-left:-9.504000px;}
._12_c01288{margin-left:-7.248000px;}
._10_c01288{margin-left:-5.856000px;}
._a_c01288{margin-left:-4.392000px;}
._8_c01288{margin-left:-2.880000px;}
._7_c01288{margin-left:-1.728000px;}
._9_c01288{width:1.944000px;}
._d_c01288{width:3.096000px;}
._4_c01288{width:4.248000px;}
._2_c01288{width:5.616000px;}
._17_c01288{width:6.744000px;}
._0_c01288{width:7.848000px;}
._1_c01288{width:9.408000px;}
._3_c01288{width:11.232000px;}
._f_c01288{width:12.240000px;}
._c_c01288{width:13.848000px;}
._6_c01288{width:14.976000px;}
._b_c01288{width:16.128000px;}
._18_c01288{width:17.304000px;}
._e_c01288{width:18.432000px;}
._1d_c01288{width:20.808000px;}
._13_c01288{width:21.840000px;}
._19_c01288{width:23.304000px;}
._11_c01288{width:25.704000px;}
._1a_c01288{width:27.552000px;}
._1c_c01288{width:29.952000px;}
._1e_c01288{width:37.272000px;}
._5_c01288{width:360.552000px;}
.fc2_c01288{color:transparent;}
.fc1_c01288{color:rgb(128,128,128);}
.fc0_c01288{color:rgb(0,0,0);}
.fs3_c01288{font-size:48.000000px;}
.fs0_c01288{font-size:72.000000px;}
.fs1_c01288{font-size:78.000000px;}
.fs2_c01288{font-size:204.000000px;}
.y0_c01288{bottom:0.000000px;}
.y1e_c01288{bottom:3.105000px;}
.y1d_c01288{bottom:7.228363px;}
.y1c_c01288{bottom:66.150000px;}
.y1a_c01288{bottom:87.600000px;}
.y1b_c01288{bottom:92.100000px;}
.y19_c01288{bottom:142.650000px;}
.y18_c01288{bottom:167.100000px;}
.y17_c01288{bottom:192.150000px;}
.y16_c01288{bottom:217.050000px;}
.y15_c01288{bottom:241.050000px;}
.y14_c01288{bottom:266.400000px;}
.y13_c01288{bottom:291.300000px;}
.y12_c01288{bottom:314.550000px;}
.y11_c01288{bottom:336.900000px;}
.y10_c01288{bottom:360.900000px;}
.yf_c01288{bottom:385.050000px;}
.ye_c01288{bottom:410.700000px;}
.yd_c01288{bottom:434.400000px;}
.yc_c01288{bottom:459.000000px;}
.yb_c01288{bottom:484.200000px;}
.ya_c01288{bottom:508.950000px;}
.y9_c01288{bottom:534.000000px;}
.y8_c01288{bottom:558.000000px;}
.y7_c01288{bottom:583.200000px;}
.y6_c01288{bottom:607.200000px;}
.y5_c01288{bottom:632.100000px;}
.y4_c01288{bottom:657.000000px;}
.y3_c01288{bottom:682.350000px;}
.y2_c01288{bottom:706.500000px;}
.y1_c01288{bottom:730.650000px;}
.h5_c01288{height:13.200074px;}
.h6_c01288{height:43.804688px;}
.h2_c01288{height:84.269531px;}
.h3_c01288{height:91.160156px;}
.h4_c01288{height:210.560156px;}
.h1_c01288{height:768.000000px;}
.h0_c01288{height:768.150000px;}
.w2_c01288{width:104.875500px;}
.w1_c01288{width:528.750000px;}
.w0_c01288{width:528.900000px;}
.x0_c01288{left:0.000000px;}
.x2_c01288{left:31.350000px;}
.x3_c01288{left:32.400000px;}
.x4_c01288{left:33.450000px;}
.x5_c01288{left:35.700000px;}
.x6_c01288{left:37.350000px;}
.x7_c01288{left:38.400000px;}
.x8_c01288{left:40.050000px;}
.x9_c01288{left:51.000000px;}
.x1_c01288{left:129.300000px;}
.xa_c01288{left:216.264267px;}
@media print{
.v0_c01288{vertical-align:0.000000pt;}
.v1_c01288{vertical-align:106.133333pt;}
.ls1_c01288{letter-spacing:-2.666667pt;}
.ls3_c01288{letter-spacing:0.000000pt;}
.ls0_c01288{letter-spacing:2.666667pt;}
.ls2_c01288{letter-spacing:5.333333pt;}
.ws0_c01288{word-spacing:-24.816000pt;}
.ws1_c01288{word-spacing:-0.181333pt;}
.ws2_c01288{word-spacing:0.000000pt;}
._14_c01288{margin-left:-15.765333pt;}
._1b_c01288{margin-left:-14.624000pt;}
._15_c01288{margin-left:-9.984000pt;}
._16_c01288{margin-left:-8.448000pt;}
._12_c01288{margin-left:-6.442667pt;}
._10_c01288{margin-left:-5.205333pt;}
._a_c01288{margin-left:-3.904000pt;}
._8_c01288{margin-left:-2.560000pt;}
._7_c01288{margin-left:-1.536000pt;}
._9_c01288{width:1.728000pt;}
._d_c01288{width:2.752000pt;}
._4_c01288{width:3.776000pt;}
._2_c01288{width:4.992000pt;}
._17_c01288{width:5.994667pt;}
._0_c01288{width:6.976000pt;}
._1_c01288{width:8.362667pt;}
._3_c01288{width:9.984000pt;}
._f_c01288{width:10.880000pt;}
._c_c01288{width:12.309333pt;}
._6_c01288{width:13.312000pt;}
._b_c01288{width:14.336000pt;}
._18_c01288{width:15.381333pt;}
._e_c01288{width:16.384000pt;}
._1d_c01288{width:18.496000pt;}
._13_c01288{width:19.413333pt;}
._19_c01288{width:20.714667pt;}
._11_c01288{width:22.848000pt;}
._1a_c01288{width:24.490667pt;}
._1c_c01288{width:26.624000pt;}
._1e_c01288{width:33.130667pt;}
._5_c01288{width:320.490667pt;}
.fs3_c01288{font-size:42.666667pt;}
.fs0_c01288{font-size:64.000000pt;}
.fs1_c01288{font-size:69.333333pt;}
.fs2_c01288{font-size:181.333333pt;}
.y0_c01288{bottom:0.000000pt;}
.y1e_c01288{bottom:2.760000pt;}
.y1d_c01288{bottom:6.425212pt;}
.y1c_c01288{bottom:58.800000pt;}
.y1a_c01288{bottom:77.866667pt;}
.y1b_c01288{bottom:81.866667pt;}
.y19_c01288{bottom:126.800000pt;}
.y18_c01288{bottom:148.533333pt;}
.y17_c01288{bottom:170.800000pt;}
.y16_c01288{bottom:192.933333pt;}
.y15_c01288{bottom:214.266667pt;}
.y14_c01288{bottom:236.800000pt;}
.y13_c01288{bottom:258.933333pt;}
.y12_c01288{bottom:279.600000pt;}
.y11_c01288{bottom:299.466667pt;}
.y10_c01288{bottom:320.800000pt;}
.yf_c01288{bottom:342.266667pt;}
.ye_c01288{bottom:365.066667pt;}
.yd_c01288{bottom:386.133333pt;}
.yc_c01288{bottom:408.000000pt;}
.yb_c01288{bottom:430.400000pt;}
.ya_c01288{bottom:452.400000pt;}
.y9_c01288{bottom:474.666667pt;}
.y8_c01288{bottom:496.000000pt;}
.y7_c01288{bottom:518.400000pt;}
.y6_c01288{bottom:539.733333pt;}
.y5_c01288{bottom:561.866667pt;}
.y4_c01288{bottom:584.000000pt;}
.y3_c01288{bottom:606.533333pt;}
.y2_c01288{bottom:628.000000pt;}
.y1_c01288{bottom:649.466667pt;}
.h5_c01288{height:11.733399pt;}
.h6_c01288{height:38.937500pt;}
.h2_c01288{height:74.906250pt;}
.h3_c01288{height:81.031250pt;}
.h4_c01288{height:187.164583pt;}
.h1_c01288{height:682.666667pt;}
.h0_c01288{height:682.800000pt;}
.w2_c01288{width:93.222667pt;}
.w1_c01288{width:470.000000pt;}
.w0_c01288{width:470.133333pt;}
.x0_c01288{left:0.000000pt;}
.x2_c01288{left:27.866667pt;}
.x3_c01288{left:28.800000pt;}
.x4_c01288{left:29.733333pt;}
.x5_c01288{left:31.733333pt;}
.x6_c01288{left:33.200000pt;}
.x7_c01288{left:34.133333pt;}
.x8_c01288{left:35.600000pt;}
.x9_c01288{left:45.333333pt;}
.x1_c01288{left:114.933333pt;}
.xa_c01288{left:192.234904pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7a750334d2c31ee67550cce3.woff2')format("woff");}.ff1_c01289{font-family:ff1_c01289;line-height:1.480469;font-style:normal;font-weight:normal;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_df744db958878d42a330592b.woff2')format("woff");}.ff2_c01289{font-family:ff2_c01289;line-height:1.568848;font-style:normal;font-weight:normal;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_3bfdf6adac566defda0886f3.woff2')format("woff");}.ff3_c01289{font-family:ff3_c01289;line-height:1.284180;font-style:normal;font-weight:normal;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_bf9cf5423c1a5d7f22826b67.woff2')format("woff");}.ff4_c01289{font-family:ff4_c01289;line-height:1.480469;font-style:normal;font-weight:normal;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_7d22d457dac6d3e2985bd133.woff2')format("woff");}.ff5_c01289{font-family:ff5_c01289;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01289;src:url('chunks/assets/font_1d07494ad76e09c50b4068c0.woff2')format("woff");}.ff6_c01289{font-family:ff6_c01289;line-height:1.575000;font-style:normal;font-weight: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_c01289;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c01289{font-family:ff7_c01289;line-height:1.219238;font-style: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);}
.v1_c01289{vertical-align:-28.200000px;}
.v0_c01289{vertical-align:0.000000px;}
.ls2_c01289{letter-spacing:-3.000000px;}
.ls4_c01289{letter-spacing:0.000000px;}
.ls3_c01289{letter-spacing:3.000000px;}
.ls5_c01289{letter-spacing:6.000000px;}
.ls0_c01289{letter-spacing:6.600000px;}
.ls1_c01289{letter-spacing:329.352000px;}
.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;}
}
.ws4_c01289{word-spacing:-36.051000px;}
.ws3_c01289{word-spacing:-20.352000px;}
.ws1_c01289{word-spacing:-18.000000px;}
.ws2_c01289{word-spacing:-14.352000px;}
.ws5_c01289{word-spacing:0.000000px;}
.ws0_c01289{word-spacing:4.224000px;}
._26_c01289{margin-left:-17.712000px;}
._25_c01289{margin-left:-15.408000px;}
._22_c01289{margin-left:-13.488000px;}
._1b_c01289{margin-left:-11.664000px;}
._23_c01289{margin-left:-10.152000px;}
._17_c01289{margin-left:-8.568000px;}
._15_c01289{margin-left:-7.560000px;}
._12_c01289{margin-left:-6.408000px;}
._d_c01289{margin-left:-5.400000px;}
._c_c01289{margin-left:-4.104000px;}
._5_c01289{margin-left:-2.448000px;}
._6_c01289{margin-left:-1.368000px;}
._9_c01289{width:1.728000px;}
._b_c01289{width:3.168000px;}
._a_c01289{width:4.320000px;}
._1_c01289{width:5.904000px;}
._4_c01289{width:6.984000px;}
._13_c01289{width:8.088000px;}
._3_c01289{width:9.216000px;}
._2_c01289{width:10.584000px;}
._0_c01289{width:12.528000px;}
._24_c01289{width:13.752000px;}
._f_c01289{width:15.264000px;}
._29_c01289{width:16.632000px;}
._28_c01289{width:18.480000px;}
._16_c01289{width:22.224000px;}
._8_c01289{width:24.192000px;}
._7_c01289{width:25.632000px;}
._11_c01289{width:27.480000px;}
._10_c01289{width:30.456000px;}
._2a_c01289{width:32.208000px;}
._14_c01289{width:34.632000px;}
._20_c01289{width:38.064000px;}
._18_c01289{width:42.984000px;}
._2b_c01289{width:48.888000px;}
._21_c01289{width:52.704000px;}
._e_c01289{width:69.504000px;}
._27_c01289{width:130.632000px;}
._1d_c01289{width:153.576000px;}
._1e_c01289{width:200.952000px;}
._1c_c01289{width:209.736000px;}
._1f_c01289{width:233.712000px;}
._2c_c01289{width:309.840000px;}
._19_c01289{width:328.632000px;}
._1a_c01289{width:459.480000px;}
._2d_c01289{width:713.376000px;}
.fc2_c01289{color:transparent;}
.fc1_c01289{color:rgb(128,128,128);}
.fc0_c01289{color:rgb(0,0,0);}
.fs4_c01289{font-size:48.000000px;}
.fs2_c01289{font-size:57.000000px;}
.fs1_c01289{font-size:57.600000px;}
.fs3_c01289{font-size:63.000000px;}
.fs0_c01289{font-size:72.000000px;}
.y0_c01289{bottom:0.000000px;}
.y20_c01289{bottom:3.105000px;}
.y1f_c01289{bottom:7.228355px;}
.y1e_c01289{bottom:55.635000px;}
.y1d_c01289{bottom:76.935000px;}
.y1c_c01289{bottom:104.985000px;}
.y1b_c01289{bottom:130.485000px;}
.y1a_c01289{bottom:155.235000px;}
.y19_c01289{bottom:180.435000px;}
.y18_c01289{bottom:206.235000px;}
.y17_c01289{bottom:230.085000px;}
.y16_c01289{bottom:254.835000px;}
.y15_c01289{bottom:278.985000px;}
.y14_c01289{bottom:304.785000px;}
.y13_c01289{bottom:329.685000px;}
.y12_c01289{bottom:354.285000px;}
.y11_c01289{bottom:378.585000px;}
.y10_c01289{bottom:401.835000px;}
.yf_c01289{bottom:426.285000px;}
.ye_c01289{bottom:448.485000px;}
.yd_c01289{bottom:472.785000px;}
.yc_c01289{bottom:497.685000px;}
.yb_c01289{bottom:522.735000px;}
.ya_c01289{bottom:547.635000px;}
.y9_c01289{bottom:571.635000px;}
.y8_c01289{bottom:596.235000px;}
.y7_c01289{bottom:610.785000px;}
.y6_c01289{bottom:623.985000px;}
.y5_c01289{bottom:653.385000px;}
.y4_c01289{bottom:671.535000px;}
.y3_c01289{bottom:695.835000px;}
.y2_c01289{bottom:720.435000px;}
.y1_c01289{bottom:745.485000px;}
.h4_c01289{height:13.200074px;}
.h5_c01289{height:43.804688px;}
.h3_c01289{height:84.269531px;}
.h2_c01289{height:91.160156px;}
.h0_c01289{height:791.625000px;}
.h1_c01289{height:792.000000px;}
.w2_c01289{width:104.875500px;}
.w1_c01289{width:517.500000px;}
.w0_c01289{width:517.575000px;}
.x0_c01289{left:0.000000px;}
.x5_c01289{left:13.950000px;}
.x4_c01289{left:16.800000px;}
.x7_c01289{left:18.150000px;}
.x6_c01289{left:21.300000px;}
.x3_c01289{left:36.450000px;}
.x8_c01289{left:93.150000px;}
.x2_c01289{left:95.100000px;}
.xc_c01289{left:97.200000px;}
.xb_c01289{left:98.850000px;}
.xd_c01289{left:100.950000px;}
.xe_c01289{left:103.650000px;}
.xa_c01289{left:135.300000px;}
.x1_c01289{left:204.450000px;}
.xf_c01289{left:210.601730px;}
.x9_c01289{left:303.750000px;}
@media print{
.v1_c01289{vertical-align:-25.066667pt;}
.v0_c01289{vertical-align:0.000000pt;}
.ls2_c01289{letter-spacing:-2.666667pt;}
.ls4_c01289{letter-spacing:0.000000pt;}
.ls3_c01289{letter-spacing:2.666667pt;}
.ls5_c01289{letter-spacing:5.333333pt;}
.ls0_c01289{letter-spacing:5.866667pt;}
.ls1_c01289{letter-spacing:292.757333pt;}
.ws4_c01289{word-spacing:-32.045333pt;}
.ws3_c01289{word-spacing:-18.090667pt;}
.ws1_c01289{word-spacing:-16.000000pt;}
.ws2_c01289{word-spacing:-12.757333pt;}
.ws5_c01289{word-spacing:0.000000pt;}
.ws0_c01289{word-spacing:3.754667pt;}
._26_c01289{margin-left:-15.744000pt;}
._25_c01289{margin-left:-13.696000pt;}
._22_c01289{margin-left:-11.989333pt;}
._1b_c01289{margin-left:-10.368000pt;}
._23_c01289{margin-left:-9.024000pt;}
._17_c01289{margin-left:-7.616000pt;}
._15_c01289{margin-left:-6.720000pt;}
._12_c01289{margin-left:-5.696000pt;}
._d_c01289{margin-left:-4.800000pt;}
._c_c01289{margin-left:-3.648000pt;}
._5_c01289{margin-left:-2.176000pt;}
._6_c01289{margin-left:-1.216000pt;}
._9_c01289{width:1.536000pt;}
._b_c01289{width:2.816000pt;}
._a_c01289{width:3.840000pt;}
._1_c01289{width:5.248000pt;}
._4_c01289{width:6.208000pt;}
._13_c01289{width:7.189333pt;}
._3_c01289{width:8.192000pt;}
._2_c01289{width:9.408000pt;}
._0_c01289{width:11.136000pt;}
._24_c01289{width:12.224000pt;}
._f_c01289{width:13.568000pt;}
._29_c01289{width:14.784000pt;}
._28_c01289{width:16.426667pt;}
._16_c01289{width:19.754667pt;}
._8_c01289{width:21.504000pt;}
._7_c01289{width:22.784000pt;}
._11_c01289{width:24.426667pt;}
._10_c01289{width:27.072000pt;}
._2a_c01289{width:28.629333pt;}
._14_c01289{width:30.784000pt;}
._20_c01289{width:33.834667pt;}
._18_c01289{width:38.208000pt;}
._2b_c01289{width:43.456000pt;}
._21_c01289{width:46.848000pt;}
._e_c01289{width:61.781333pt;}
._27_c01289{width:116.117333pt;}
._1d_c01289{width:136.512000pt;}
._1e_c01289{width:178.624000pt;}
._1c_c01289{width:186.432000pt;}
._1f_c01289{width:207.744000pt;}
._2c_c01289{width:275.413333pt;}
._19_c01289{width:292.117333pt;}
._1a_c01289{width:408.426667pt;}
._2d_c01289{width:634.112000pt;}
.fs4_c01289{font-size:42.666667pt;}
.fs2_c01289{font-size:50.666667pt;}
.fs1_c01289{font-size:51.200000pt;}
.fs3_c01289{font-size:56.000000pt;}
.fs0_c01289{font-size:64.000000pt;}
.y0_c01289{bottom:0.000000pt;}
.y20_c01289{bottom:2.760000pt;}
.y1f_c01289{bottom:6.425204pt;}
.y1e_c01289{bottom:49.453333pt;}
.y1d_c01289{bottom:68.386667pt;}
.y1c_c01289{bottom:93.320000pt;}
.y1b_c01289{bottom:115.986667pt;}
.y1a_c01289{bottom:137.986667pt;}
.y19_c01289{bottom:160.386667pt;}
.y18_c01289{bottom:183.320000pt;}
.y17_c01289{bottom:204.520000pt;}
.y16_c01289{bottom:226.520000pt;}
.y15_c01289{bottom:247.986667pt;}
.y14_c01289{bottom:270.920000pt;}
.y13_c01289{bottom:293.053333pt;}
.y12_c01289{bottom:314.920000pt;}
.y11_c01289{bottom:336.520000pt;}
.y10_c01289{bottom:357.186667pt;}
.yf_c01289{bottom:378.920000pt;}
.ye_c01289{bottom:398.653333pt;}
.yd_c01289{bottom:420.253333pt;}
.yc_c01289{bottom:442.386667pt;}
.yb_c01289{bottom:464.653333pt;}
.ya_c01289{bottom:486.786667pt;}
.y9_c01289{bottom:508.120000pt;}
.y8_c01289{bottom:529.986667pt;}
.y7_c01289{bottom:542.920000pt;}
.y6_c01289{bottom:554.653333pt;}
.y5_c01289{bottom:580.786667pt;}
.y4_c01289{bottom:596.920000pt;}
.y3_c01289{bottom:618.520000pt;}
.y2_c01289{bottom:640.386667pt;}
.y1_c01289{bottom:662.653333pt;}
.h4_c01289{height:11.733399pt;}
.h5_c01289{height:38.937500pt;}
.h3_c01289{height:74.906250pt;}
.h2_c01289{height:81.031250pt;}
.h0_c01289{height:703.666667pt;}
.h1_c01289{height:704.000000pt;}
.w2_c01289{width:93.222667pt;}
.w1_c01289{width:460.000000pt;}
.w0_c01289{width:460.066667pt;}
.x0_c01289{left:0.000000pt;}
.x5_c01289{left:12.400000pt;}
.x4_c01289{left:14.933333pt;}
.x7_c01289{left:16.133333pt;}
.x6_c01289{left:18.933333pt;}
.x3_c01289{left:32.400000pt;}
.x8_c01289{left:82.800000pt;}
.x2_c01289{left:84.533333pt;}
.xc_c01289{left:86.400000pt;}
.xb_c01289{left:87.866667pt;}
.xd_c01289{left:89.733333pt;}
.xe_c01289{left:92.133333pt;}
.xa_c01289{left:120.266667pt;}
.x1_c01289{left:181.733333pt;}
.xf_c01289{left:187.201538pt;}
.x9_c01289{left:270.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_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_e0cf18b9d76bb990e81ee630.woff2')format("woff");}.ff1_c01290{font-family:ff1_c01290;line-height:1.284180;font-style:normal;font-weight:normal;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_f9cbbe30ca49aec05803e79e.woff2')format("woff");}.ff2_c01290{font-family:ff2_c01290;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01290;src:url('chunks/assets/font_1bc61e4a361dc1ab739aeeb3.woff2')format("woff");}.ff3_c01290{font-family:ff3_c01290;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01290;src:url('chunks/assets/font_2c5b395578d14d27c8c81080.woff2')format("woff");}.ff4_c01290{font-family:ff4_c01290;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01290;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01290{font-family:ff5_c01290;line-height:1.219238;font-style: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;}
.ls2_c01290{letter-spacing:0.000000px;}
.ls3_c01290{letter-spacing:3.000000px;}
.ls1_c01290{letter-spacing:10.788000px;}
.ls0_c01290{letter-spacing:14.388000px;}
.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:-20.352000px;}
.ws1_c01290{word-spacing:0.000000px;}
._e_c01290{margin-left:-9.288000px;}
._1b_c01290{margin-left:-7.065000px;}
._1_c01290{margin-left:-6.048000px;}
._b_c01290{margin-left:-4.032000px;}
._a_c01290{margin-left:-2.184000px;}
._c_c01290{margin-left:-1.080000px;}
._2_c01290{width:1.848000px;}
._3_c01290{width:3.024000px;}
._9_c01290{width:4.896000px;}
._4_c01290{width:5.964000px;}
._6_c01290{width:7.680000px;}
._5_c01290{width:9.072000px;}
._18_c01290{width:10.392000px;}
._0_c01290{width:11.592000px;}
._8_c01290{width:13.113000px;}
._f_c01290{width:14.244000px;}
._d_c01290{width:15.408000px;}
._15_c01290{width:16.752000px;}
._16_c01290{width:18.552000px;}
._10_c01290{width:21.672000px;}
._17_c01290{width:23.820000px;}
._19_c01290{width:26.220000px;}
._12_c01290{width:27.720000px;}
._1a_c01290{width:28.776000px;}
._11_c01290{width:30.504000px;}
._13_c01290{width:34.599000px;}
._14_c01290{width:39.288000px;}
._7_c01290{width:256.041000px;}
.fc2_c01290{color:transparent;}
.fc1_c01290{color:rgb(128,128,128);}
.fc0_c01290{color:rgb(0,0,0);}
.fs4_c01290{font-size:48.000000px;}
.fs3_c01290{font-size:63.000000px;}
.fs2_c01290{font-size:72.000000px;}
.fs1_c01290{font-size:81.000000px;}
.fs0_c01290{font-size:84.000000px;}
.y0_c01290{bottom:0.000000px;}
.y1e_c01290{bottom:3.105000px;}
.y1d_c01290{bottom:7.228355px;}
.y1c_c01290{bottom:79.335000px;}
.y1b_c01290{bottom:104.835000px;}
.y1a_c01290{bottom:130.185000px;}
.y19_c01290{bottom:155.235000px;}
.y18_c01290{bottom:180.135000px;}
.y17_c01290{bottom:204.135000px;}
.y16_c01290{bottom:230.085000px;}
.y15_c01290{bottom:254.085000px;}
.y14_c01290{bottom:279.135000px;}
.y13_c01290{bottom:302.985000px;}
.y12_c01290{bottom:326.985000px;}
.y11_c01290{bottom:350.235000px;}
.y10_c01290{bottom:373.935000px;}
.yf_c01290{bottom:396.585000px;}
.ye_c01290{bottom:422.085000px;}
.yd_c01290{bottom:446.085000px;}
.yc_c01290{bottom:469.785000px;}
.yb_c01290{bottom:494.685000px;}
.ya_c01290{bottom:520.335000px;}
.y9_c01290{bottom:544.035000px;}
.y8_c01290{bottom:569.235000px;}
.y7_c01290{bottom:593.685000px;}
.y6_c01290{bottom:618.585000px;}
.y5_c01290{bottom:641.835000px;}
.y4_c01290{bottom:667.185000px;}
.y3_c01290{bottom:691.785000px;}
.y2_c01290{bottom:716.085000px;}
.y1_c01290{bottom:741.735000px;}
.h4_c01290{height:13.200074px;}
.h5_c01290{height:43.804688px;}
.h2_c01290{height:82.400391px;}
.h3_c01290{height:91.160156px;}
.h0_c01290{height:778.125000px;}
.h1_c01290{height:778.500000px;}
.w2_c01290{width:104.875500px;}
.w1_c01290{width:531.750000px;}
.w0_c01290{width:531.900000px;}
.x0_c01290{left:0.000000px;}
.x2_c01290{left:39.150000px;}
.x3_c01290{left:40.200000px;}
.x4_c01290{left:42.150000px;}
.x5_c01290{left:43.500000px;}
.x6_c01290{left:44.850000px;}
.x7_c01290{left:46.200000px;}
.x1_c01290{left:158.550000px;}
.x8_c01290{left:217.764267px;}
@media print{
.v0_c01290{vertical-align:0.000000pt;}
.ls2_c01290{letter-spacing:0.000000pt;}
.ls3_c01290{letter-spacing:2.666667pt;}
.ls1_c01290{letter-spacing:9.589333pt;}
.ls0_c01290{letter-spacing:12.789333pt;}
.ws0_c01290{word-spacing:-18.090667pt;}
.ws1_c01290{word-spacing:0.000000pt;}
._e_c01290{margin-left:-8.256000pt;}
._1b_c01290{margin-left:-6.280000pt;}
._1_c01290{margin-left:-5.376000pt;}
._b_c01290{margin-left:-3.584000pt;}
._a_c01290{margin-left:-1.941333pt;}
._c_c01290{margin-left:-0.960000pt;}
._2_c01290{width:1.642667pt;}
._3_c01290{width:2.688000pt;}
._9_c01290{width:4.352000pt;}
._4_c01290{width:5.301333pt;}
._6_c01290{width:6.826667pt;}
._5_c01290{width:8.064000pt;}
._18_c01290{width:9.237333pt;}
._0_c01290{width:10.304000pt;}
._8_c01290{width:11.656000pt;}
._f_c01290{width:12.661333pt;}
._d_c01290{width:13.696000pt;}
._15_c01290{width:14.890667pt;}
._16_c01290{width:16.490667pt;}
._10_c01290{width:19.264000pt;}
._17_c01290{width:21.173333pt;}
._19_c01290{width:23.306667pt;}
._12_c01290{width:24.640000pt;}
._1a_c01290{width:25.578667pt;}
._11_c01290{width:27.114667pt;}
._13_c01290{width:30.754667pt;}
._14_c01290{width:34.922667pt;}
._7_c01290{width:227.592000pt;}
.fs4_c01290{font-size:42.666667pt;}
.fs3_c01290{font-size:56.000000pt;}
.fs2_c01290{font-size:64.000000pt;}
.fs1_c01290{font-size:72.000000pt;}
.fs0_c01290{font-size:74.666667pt;}
.y0_c01290{bottom:0.000000pt;}
.y1e_c01290{bottom:2.760000pt;}
.y1d_c01290{bottom:6.425204pt;}
.y1c_c01290{bottom:70.520000pt;}
.y1b_c01290{bottom:93.186667pt;}
.y1a_c01290{bottom:115.720000pt;}
.y19_c01290{bottom:137.986667pt;}
.y18_c01290{bottom:160.120000pt;}
.y17_c01290{bottom:181.453333pt;}
.y16_c01290{bottom:204.520000pt;}
.y15_c01290{bottom:225.853333pt;}
.y14_c01290{bottom:248.120000pt;}
.y13_c01290{bottom:269.320000pt;}
.y12_c01290{bottom:290.653333pt;}
.y11_c01290{bottom:311.320000pt;}
.y10_c01290{bottom:332.386667pt;}
.yf_c01290{bottom:352.520000pt;}
.ye_c01290{bottom:375.186667pt;}
.yd_c01290{bottom:396.520000pt;}
.yc_c01290{bottom:417.586667pt;}
.yb_c01290{bottom:439.720000pt;}
.ya_c01290{bottom:462.520000pt;}
.y9_c01290{bottom:483.586667pt;}
.y8_c01290{bottom:505.986667pt;}
.y7_c01290{bottom:527.720000pt;}
.y6_c01290{bottom:549.853333pt;}
.y5_c01290{bottom:570.520000pt;}
.y4_c01290{bottom:593.053333pt;}
.y3_c01290{bottom:614.920000pt;}
.y2_c01290{bottom:636.520000pt;}
.y1_c01290{bottom:659.320000pt;}
.h4_c01290{height:11.733399pt;}
.h5_c01290{height:38.937500pt;}
.h2_c01290{height:73.244792pt;}
.h3_c01290{height:81.031250pt;}
.h0_c01290{height:691.666667pt;}
.h1_c01290{height:692.000000pt;}
.w2_c01290{width:93.222667pt;}
.w1_c01290{width:472.666667pt;}
.w0_c01290{width:472.800000pt;}
.x0_c01290{left:0.000000pt;}
.x2_c01290{left:34.800000pt;}
.x3_c01290{left:35.733333pt;}
.x4_c01290{left:37.466667pt;}
.x5_c01290{left:38.666667pt;}
.x6_c01290{left:39.866667pt;}
.x7_c01290{left:41.066667pt;}
.x1_c01290{left:140.933333pt;}
.x8_c01290{left:193.568237pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c8cf1c557c17bd96b3d73491.woff2')format("woff");}.ff1_c01291{font-family:ff1_c01291;line-height:1.480469;font-style:normal;font-weight:normal;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_d22707d6fd5858faf71de071.woff2')format("woff");}.ff2_c01291{font-family:ff2_c01291;line-height:1.568848;font-style:normal;font-weight:normal;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_a97d25cdebfda711bd4daf7c.woff2')format("woff");}.ff3_c01291{font-family:ff3_c01291;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01291{font-family:ff4_c01291;line-height:1.219238;font-style: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;}
.ls0_c01291{letter-spacing:-3.000000px;}
.ls2_c01291{letter-spacing:0.000000px;}
.ls1_c01291{letter-spacing:3.000000px;}
.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;}
}
.ws2_c01291{word-spacing:-52.548000px;}
.ws3_c01291{word-spacing:-42.038400px;}
.ws4_c01291{word-spacing:-20.352000px;}
.ws1_c01291{word-spacing:-14.352000px;}
.ws5_c01291{word-spacing:0.000000px;}
.ws0_c01291{word-spacing:6.960000px;}
._1b_c01291{margin-left:-41.887800px;}
._1d_c01291{margin-left:-23.870400px;}
._1c_c01291{margin-left:-16.564800px;}
._13_c01291{margin-left:-12.672000px;}
._15_c01291{margin-left:-11.592000px;}
._14_c01291{margin-left:-10.440000px;}
._11_c01291{margin-left:-8.136000px;}
._0_c01291{margin-left:-6.840000px;}
._6_c01291{margin-left:-5.328000px;}
._7_c01291{margin-left:-4.248000px;}
._8_c01291{margin-left:-2.376000px;}
._f_c01291{margin-left:-1.296000px;}
._a_c01291{width:1.008000px;}
._b_c01291{width:2.088000px;}
._c_c01291{width:3.168000px;}
._9_c01291{width:4.752000px;}
._e_c01291{width:5.832000px;}
._2_c01291{width:6.840000px;}
._d_c01291{width:8.496000px;}
._16_c01291{width:9.648000px;}
._1a_c01291{width:10.800000px;}
._4_c01291{width:12.024000px;}
._3_c01291{width:13.608000px;}
._19_c01291{width:15.408000px;}
._1_c01291{width:18.360000px;}
._18_c01291{width:23.640000px;}
._12_c01291{width:28.080000px;}
._10_c01291{width:32.472000px;}
._5_c01291{width:34.992000px;}
._1e_c01291{width:188.328000px;}
._17_c01291{width:274.752000px;}
.fc2_c01291{color:transparent;}
.fc1_c01291{color:rgb(128,128,128);}
.fc0_c01291{color:rgb(0,0,0);}
.fs3_c01291{font-size:45.000000px;}
.fs4_c01291{font-size:48.000000px;}
.fs2_c01291{font-size:69.600000px;}
.fs0_c01291{font-size:72.000000px;}
.fs1_c01291{font-size:87.000000px;}
.y0_c01291{bottom:0.000000px;}
.y1f_c01291{bottom:3.105000px;}
.y1e_c01291{bottom:7.228369px;}
.y1d_c01291{bottom:56.970000px;}
.y1c_c01291{bottom:77.220000px;}
.y1b_c01291{bottom:103.620000px;}
.y1a_c01291{bottom:129.570000px;}
.y19_c01291{bottom:153.570000px;}
.y18_c01291{bottom:178.470000px;}
.y17_c01291{bottom:203.820000px;}
.y16_c01291{bottom:228.120000px;}
.y15_c01291{bottom:253.770000px;}
.y14_c01291{bottom:277.770000px;}
.y13_c01291{bottom:302.070000px;}
.y12_c01291{bottom:326.070000px;}
.y11_c01291{bottom:353.370000px;}
.y10_c01291{bottom:377.370000px;}
.yf_c01291{bottom:398.970000px;}
.ye_c01291{bottom:423.570000px;}
.yd_c01291{bottom:447.120000px;}
.yc_c01291{bottom:471.420000px;}
.yb_c01291{bottom:496.020000px;}
.ya_c01291{bottom:520.320000px;}
.y9_c01291{bottom:545.070000px;}
.y8_c01291{bottom:570.420000px;}
.y7_c01291{bottom:594.570000px;}
.y6_c01291{bottom:619.020000px;}
.y5_c01291{bottom:643.170000px;}
.y4_c01291{bottom:667.470000px;}
.y3_c01291{bottom:691.920000px;}
.y2_c01291{bottom:716.520000px;}
.y1_c01291{bottom:742.470000px;}
.h4_c01291{height:13.200073px;}
.h5_c01291{height:43.804688px;}
.h2_c01291{height:91.160156px;}
.h3_c01291{height:110.151855px;}
.h0_c01291{height:789.450000px;}
.h1_c01291{height:789.750000px;}
.w2_c01291{width:104.875500px;}
.w0_c01291{width:542.175000px;}
.w1_c01291{width:542.250000px;}
.x0_c01291{left:0.000000px;}
.x7_c01291{left:29.100000px;}
.x6_c01291{left:30.450000px;}
.x5_c01291{left:31.500000px;}
.x2_c01291{left:105.300000px;}
.x3_c01291{left:108.000000px;}
.x4_c01291{left:109.650000px;}
.x8_c01291{left:110.700000px;}
.x9_c01291{left:112.050000px;}
.xa_c01291{left:113.100000px;}
.xb_c01291{left:114.150000px;}
.xc_c01291{left:115.500000px;}
.x1_c01291{left:211.950000px;}
.xe_c01291{left:222.901749px;}
.xd_c01291{left:388.350000px;}
@media print{
.v0_c01291{vertical-align:0.000000pt;}
.ls0_c01291{letter-spacing:-2.666667pt;}
.ls2_c01291{letter-spacing:0.000000pt;}
.ls1_c01291{letter-spacing:2.666667pt;}
.ws2_c01291{word-spacing:-46.709333pt;}
.ws3_c01291{word-spacing:-37.367467pt;}
.ws4_c01291{word-spacing:-18.090667pt;}
.ws1_c01291{word-spacing:-12.757333pt;}
.ws5_c01291{word-spacing:0.000000pt;}
.ws0_c01291{word-spacing:6.186667pt;}
._1b_c01291{margin-left:-37.233600pt;}
._1d_c01291{margin-left:-21.218133pt;}
._1c_c01291{margin-left:-14.724267pt;}
._13_c01291{margin-left:-11.264000pt;}
._15_c01291{margin-left:-10.304000pt;}
._14_c01291{margin-left:-9.280000pt;}
._11_c01291{margin-left:-7.232000pt;}
._0_c01291{margin-left:-6.080000pt;}
._6_c01291{margin-left:-4.736000pt;}
._7_c01291{margin-left:-3.776000pt;}
._8_c01291{margin-left:-2.112000pt;}
._f_c01291{margin-left:-1.152000pt;}
._a_c01291{width:0.896000pt;}
._b_c01291{width:1.856000pt;}
._c_c01291{width:2.816000pt;}
._9_c01291{width:4.224000pt;}
._e_c01291{width:5.184000pt;}
._2_c01291{width:6.080000pt;}
._d_c01291{width:7.552000pt;}
._16_c01291{width:8.576000pt;}
._1a_c01291{width:9.600000pt;}
._4_c01291{width:10.688000pt;}
._3_c01291{width:12.096000pt;}
._19_c01291{width:13.696000pt;}
._1_c01291{width:16.320000pt;}
._18_c01291{width:21.013333pt;}
._12_c01291{width:24.960000pt;}
._10_c01291{width:28.864000pt;}
._5_c01291{width:31.104000pt;}
._1e_c01291{width:167.402667pt;}
._17_c01291{width:244.224000pt;}
.fs3_c01291{font-size:40.000000pt;}
.fs4_c01291{font-size:42.666667pt;}
.fs2_c01291{font-size:61.866667pt;}
.fs0_c01291{font-size:64.000000pt;}
.fs1_c01291{font-size:77.333333pt;}
.y0_c01291{bottom:0.000000pt;}
.y1f_c01291{bottom:2.760000pt;}
.y1e_c01291{bottom:6.425217pt;}
.y1d_c01291{bottom:50.640000pt;}
.y1c_c01291{bottom:68.640000pt;}
.y1b_c01291{bottom:92.106667pt;}
.y1a_c01291{bottom:115.173333pt;}
.y19_c01291{bottom:136.506667pt;}
.y18_c01291{bottom:158.640000pt;}
.y17_c01291{bottom:181.173333pt;}
.y16_c01291{bottom:202.773333pt;}
.y15_c01291{bottom:225.573333pt;}
.y14_c01291{bottom:246.906667pt;}
.y13_c01291{bottom:268.506667pt;}
.y12_c01291{bottom:289.840000pt;}
.y11_c01291{bottom:314.106667pt;}
.y10_c01291{bottom:335.440000pt;}
.yf_c01291{bottom:354.640000pt;}
.ye_c01291{bottom:376.506667pt;}
.yd_c01291{bottom:397.440000pt;}
.yc_c01291{bottom:419.040000pt;}
.yb_c01291{bottom:440.906667pt;}
.ya_c01291{bottom:462.506667pt;}
.y9_c01291{bottom:484.506667pt;}
.y8_c01291{bottom:507.040000pt;}
.y7_c01291{bottom:528.506667pt;}
.y6_c01291{bottom:550.240000pt;}
.y5_c01291{bottom:571.706667pt;}
.y4_c01291{bottom:593.306667pt;}
.y3_c01291{bottom:615.040000pt;}
.y2_c01291{bottom:636.906667pt;}
.y1_c01291{bottom:659.973333pt;}
.h4_c01291{height:11.733399pt;}
.h5_c01291{height:38.937500pt;}
.h2_c01291{height:81.031250pt;}
.h3_c01291{height:97.912760pt;}
.h0_c01291{height:701.733333pt;}
.h1_c01291{height:702.000000pt;}
.w2_c01291{width:93.222667pt;}
.w0_c01291{width:481.933333pt;}
.w1_c01291{width:482.000000pt;}
.x0_c01291{left:0.000000pt;}
.x7_c01291{left:25.866667pt;}
.x6_c01291{left:27.066667pt;}
.x5_c01291{left:28.000000pt;}
.x2_c01291{left:93.600000pt;}
.x3_c01291{left:96.000000pt;}
.x4_c01291{left:97.466667pt;}
.x8_c01291{left:98.400000pt;}
.x9_c01291{left:99.600000pt;}
.xa_c01291{left:100.533333pt;}
.xb_c01291{left:101.466667pt;}
.xc_c01291{left:102.666667pt;}
.x1_c01291{left:188.400000pt;}
.xe_c01291{left:198.134888pt;}
.xd_c01291{left:345.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_927f0707f40f5c94367a01d1.woff2')format("woff");}.ff1_c01292{font-family:ff1_c01292;line-height:1.480469;font-style:normal;font-weight:normal;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_3569ed5cc17a15360322da55.woff2')format("woff");}.ff2_c01292{font-family:ff2_c01292;line-height:1.480469;font-style:normal;font-weight:normal;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_3790b47164fc52bb098193bc.woff2')format("woff");}.ff3_c01292{font-family:ff3_c01292;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01292;src:url('chunks/assets/font_83acd3d0cb86c7dfc6370f8b.woff2')format("woff");}.ff4_c01292{font-family:ff4_c01292;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01292;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01292{font-family:ff5_c01292;line-height:1.219238;font-style: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;}
.ls5_c01292{letter-spacing:-3.000000px;}
.ls1_c01292{letter-spacing:0.000000px;}
.ls3_c01292{letter-spacing:3.000000px;}
.ls0_c01292{letter-spacing:4.080000px;}
.ls4_c01292{letter-spacing:6.000000px;}
.ls2_c01292{letter-spacing:15.000000px;}
.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:-80.760000px;}
.ws1_c01292{word-spacing:-36.051000px;}
.ws3_c01292{word-spacing:-15.183000px;}
.ws2_c01292{word-spacing:-14.352000px;}
.ws4_c01292{word-spacing:0.000000px;}
._9_c01292{margin-left:-13.728000px;}
._20_c01292{margin-left:-12.552000px;}
._a_c01292{margin-left:-11.040000px;}
._1e_c01292{margin-left:-9.864000px;}
._18_c01292{margin-left:-8.088000px;}
._11_c01292{margin-left:-6.912000px;}
._14_c01292{margin-left:-5.472000px;}
._13_c01292{margin-left:-3.924000px;}
._15_c01292{margin-left:-2.916000px;}
._e_c01292{margin-left:-1.416000px;}
._c_c01292{width:1.368000px;}
._f_c01292{width:2.508000px;}
._b_c01292{width:3.672000px;}
._7_c01292{width:5.580000px;}
._4_c01292{width:7.140000px;}
._17_c01292{width:8.172000px;}
._d_c01292{width:9.360000px;}
._5_c01292{width:10.440000px;}
._19_c01292{width:11.664000px;}
._2_c01292{width:12.780000px;}
._12_c01292{width:14.112000px;}
._16_c01292{width:15.876000px;}
._6_c01292{width:17.340000px;}
._1_c01292{width:19.380000px;}
._10_c01292{width:21.540000px;}
._1d_c01292{width:22.560000px;}
._3_c01292{width:24.120000px;}
._0_c01292{width:30.960000px;}
._1b_c01292{width:33.048000px;}
._1c_c01292{width:37.824000px;}
._1a_c01292{width:281.892000px;}
._8_c01292{width:364.740000px;}
._1f_c01292{width:428.352000px;}
.fc2_c01292{color:transparent;}
.fc1_c01292{color:rgb(128,128,128);}
.fc0_c01292{color:rgb(0,0,0);}
.fs4_c01292{font-size:48.000000px;}
.fs0_c01292{font-size:60.000000px;}
.fs3_c01292{font-size:63.000000px;}
.fs2_c01292{font-size:72.000000px;}
.fs1_c01292{font-size:96.000000px;}
.y0_c01292{bottom:0.000000px;}
.y1f_c01292{bottom:3.105000px;}
.y1e_c01292{bottom:7.228371px;}
.y1d_c01292{bottom:27.765000px;}
.y1c_c01292{bottom:54.015000px;}
.y1b_c01292{bottom:81.765000px;}
.y1a_c01292{bottom:106.665000px;}
.y19_c01292{bottom:131.415000px;}
.y18_c01292{bottom:156.315000px;}
.y17_c01292{bottom:180.615000px;}
.y16_c01292{bottom:205.665000px;}
.y15_c01292{bottom:230.265000px;}
.y14_c01292{bottom:254.865000px;}
.y13_c01292{bottom:279.915000px;}
.y12_c01292{bottom:304.515000px;}
.y11_c01292{bottom:327.765000px;}
.y10_c01292{bottom:349.965000px;}
.yf_c01292{bottom:373.665000px;}
.ye_c01292{bottom:397.665000px;}
.yd_c01292{bottom:422.265000px;}
.yc_c01292{bottom:446.865000px;}
.yb_c01292{bottom:471.165000px;}
.ya_c01292{bottom:495.765000px;}
.y9_c01292{bottom:520.065000px;}
.y8_c01292{bottom:544.515000px;}
.y7_c01292{bottom:569.415000px;}
.y6_c01292{bottom:594.465000px;}
.y5_c01292{bottom:618.615000px;}
.y4_c01292{bottom:643.965000px;}
.y3_c01292{bottom:667.665000px;}
.y2_c01292{bottom:691.665000px;}
.y1_c01292{bottom:717.165000px;}
.h5_c01292{height:13.200074px;}
.h6_c01292{height:43.804688px;}
.h4_c01292{height:79.765137px;}
.h3_c01292{height:91.160156px;}
.h2_c01292{height:112.359375px;}
.h0_c01292{height:760.875000px;}
.h1_c01292{height:761.250000px;}
.w2_c01292{width:104.875500px;}
.w1_c01292{width:519.750000px;}
.w0_c01292{width:520.050000px;}
.x0_c01292{left:0.000000px;}
.x2_c01292{left:26.400000px;}
.x3_c01292{left:28.650000px;}
.x4_c01292{left:29.700000px;}
.x5_c01292{left:31.950000px;}
.x6_c01292{left:33.450000px;}
.x1_c01292{left:121.800000px;}
.x8_c01292{left:211.839249px;}
.x7_c01292{left:350.550000px;}
@media print{
.v0_c01292{vertical-align:0.000000pt;}
.ls5_c01292{letter-spacing:-2.666667pt;}
.ls1_c01292{letter-spacing:0.000000pt;}
.ls3_c01292{letter-spacing:2.666667pt;}
.ls0_c01292{letter-spacing:3.626667pt;}
.ls4_c01292{letter-spacing:5.333333pt;}
.ls2_c01292{letter-spacing:13.333333pt;}
.ws0_c01292{word-spacing:-71.786667pt;}
.ws1_c01292{word-spacing:-32.045333pt;}
.ws3_c01292{word-spacing:-13.496000pt;}
.ws2_c01292{word-spacing:-12.757333pt;}
.ws4_c01292{word-spacing:0.000000pt;}
._9_c01292{margin-left:-12.202667pt;}
._20_c01292{margin-left:-11.157333pt;}
._a_c01292{margin-left:-9.813333pt;}
._1e_c01292{margin-left:-8.768000pt;}
._18_c01292{margin-left:-7.189333pt;}
._11_c01292{margin-left:-6.144000pt;}
._14_c01292{margin-left:-4.864000pt;}
._13_c01292{margin-left:-3.488000pt;}
._15_c01292{margin-left:-2.592000pt;}
._e_c01292{margin-left:-1.258667pt;}
._c_c01292{width:1.216000pt;}
._f_c01292{width:2.229333pt;}
._b_c01292{width:3.264000pt;}
._7_c01292{width:4.960000pt;}
._4_c01292{width:6.346667pt;}
._17_c01292{width:7.264000pt;}
._d_c01292{width:8.320000pt;}
._5_c01292{width:9.280000pt;}
._19_c01292{width:10.368000pt;}
._2_c01292{width:11.360000pt;}
._12_c01292{width:12.544000pt;}
._16_c01292{width:14.112000pt;}
._6_c01292{width:15.413333pt;}
._1_c01292{width:17.226667pt;}
._10_c01292{width:19.146667pt;}
._1d_c01292{width:20.053333pt;}
._3_c01292{width:21.440000pt;}
._0_c01292{width:27.520000pt;}
._1b_c01292{width:29.376000pt;}
._1c_c01292{width:33.621333pt;}
._1a_c01292{width:250.570667pt;}
._8_c01292{width:324.213333pt;}
._1f_c01292{width:380.757333pt;}
.fs4_c01292{font-size:42.666667pt;}
.fs0_c01292{font-size:53.333333pt;}
.fs3_c01292{font-size:56.000000pt;}
.fs2_c01292{font-size:64.000000pt;}
.fs1_c01292{font-size:85.333333pt;}
.y0_c01292{bottom:0.000000pt;}
.y1f_c01292{bottom:2.760000pt;}
.y1e_c01292{bottom:6.425219pt;}
.y1d_c01292{bottom:24.680000pt;}
.y1c_c01292{bottom:48.013333pt;}
.y1b_c01292{bottom:72.680000pt;}
.y1a_c01292{bottom:94.813333pt;}
.y19_c01292{bottom:116.813333pt;}
.y18_c01292{bottom:138.946667pt;}
.y17_c01292{bottom:160.546667pt;}
.y16_c01292{bottom:182.813333pt;}
.y15_c01292{bottom:204.680000pt;}
.y14_c01292{bottom:226.546667pt;}
.y13_c01292{bottom:248.813333pt;}
.y12_c01292{bottom:270.680000pt;}
.y11_c01292{bottom:291.346667pt;}
.y10_c01292{bottom:311.080000pt;}
.yf_c01292{bottom:332.146667pt;}
.ye_c01292{bottom:353.480000pt;}
.yd_c01292{bottom:375.346667pt;}
.yc_c01292{bottom:397.213333pt;}
.yb_c01292{bottom:418.813333pt;}
.ya_c01292{bottom:440.680000pt;}
.y9_c01292{bottom:462.280000pt;}
.y8_c01292{bottom:484.013333pt;}
.y7_c01292{bottom:506.146667pt;}
.y6_c01292{bottom:528.413333pt;}
.y5_c01292{bottom:549.880000pt;}
.y4_c01292{bottom:572.413333pt;}
.y3_c01292{bottom:593.480000pt;}
.y2_c01292{bottom:614.813333pt;}
.y1_c01292{bottom:637.480000pt;}
.h5_c01292{height:11.733399pt;}
.h6_c01292{height:38.937500pt;}
.h4_c01292{height:70.902344pt;}
.h3_c01292{height:81.031250pt;}
.h2_c01292{height:99.875000pt;}
.h0_c01292{height:676.333333pt;}
.h1_c01292{height:676.666667pt;}
.w2_c01292{width:93.222667pt;}
.w1_c01292{width:462.000000pt;}
.w0_c01292{width:462.266667pt;}
.x0_c01292{left:0.000000pt;}
.x2_c01292{left:23.466667pt;}
.x3_c01292{left:25.466667pt;}
.x4_c01292{left:26.400000pt;}
.x5_c01292{left:28.400000pt;}
.x6_c01292{left:29.733333pt;}
.x1_c01292{left:108.266667pt;}
.x8_c01292{left:188.301554pt;}
.x7_c01292{left:311.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f1a04a6a6d8cec11a0716b19.woff2')format("woff");}.ff1_c01293{font-family:ff1_c01293;line-height:1.284180;font-style:normal;font-weight:normal;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_7c1ec39985e3b8bd295aee4b.woff2')format("woff");}.ff2_c01293{font-family:ff2_c01293;line-height:1.568848;font-style:normal;font-weight:normal;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_fc35e101a88d51dc5f597b5a.woff2')format("woff");}.ff3_c01293{font-family:ff3_c01293;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01293{font-family:ff4_c01293;line-height:1.219238;font-style: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);}
.v1_c01293{vertical-align:-76.800000px;}
.v0_c01293{vertical-align:0.000000px;}
.ls3_c01293{letter-spacing:-3.000000px;}
.ls1_c01293{letter-spacing:0.000000px;}
.ls2_c01293{letter-spacing:3.000000px;}
.ls0_c01293{letter-spacing:5.016000px;}
.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:-30.192000px;}
.ws1_c01293{word-spacing:0.000000px;}
._5_c01293{margin-left:-22.932000px;}
._3_c01293{margin-left:-16.029000px;}
._0_c01293{margin-left:-14.859000px;}
._2_c01293{margin-left:-9.945000px;}
._4_c01293{margin-left:-8.424000px;}
._13_c01293{margin-left:-7.272000px;}
._1_c01293{margin-left:-5.850000px;}
._b_c01293{margin-left:-4.176000px;}
._e_c01293{margin-left:-2.520000px;}
._6_c01293{margin-left:-1.008000px;}
._a_c01293{width:1.440000px;}
._8_c01293{width:3.024000px;}
._9_c01293{width:4.464000px;}
._16_c01293{width:5.472000px;}
._11_c01293{width:6.696000px;}
._10_c01293{width:8.352000px;}
._c_c01293{width:9.936000px;}
._d_c01293{width:11.241000px;}
._7_c01293{width:12.456000px;}
._12_c01293{width:13.824000px;}
._f_c01293{width:16.056000px;}
._15_c01293{width:18.360000px;}
._14_c01293{width:29.952000px;}
._17_c01293{width:58.656000px;}
.fc2_c01293{color:transparent;}
.fc1_c01293{color:rgb(128,128,128);}
.fc0_c01293{color:rgb(0,0,0);}
.fs2_c01293{font-size:48.000000px;}
.fs1_c01293{font-size:72.000000px;}
.fs0_c01293{font-size:117.000000px;}
.y0_c01293{bottom:0.000000px;}
.y1e_c01293{bottom:3.105000px;}
.y1d_c01293{bottom:7.228357px;}
.y1c_c01293{bottom:69.930000px;}
.y1b_c01293{bottom:96.180000px;}
.y1a_c01293{bottom:120.480000px;}
.y19_c01293{bottom:145.830000px;}
.y18_c01293{bottom:170.880000px;}
.y17_c01293{bottom:195.180000px;}
.y16_c01293{bottom:220.830000px;}
.y15_c01293{bottom:245.730000px;}
.y14_c01293{bottom:270.630000px;}
.y13_c01293{bottom:294.330000px;}
.y12_c01293{bottom:319.230000px;}
.y11_c01293{bottom:343.980000px;}
.y10_c01293{bottom:367.530000px;}
.yf_c01293{bottom:390.930000px;}
.ye_c01293{bottom:415.080000px;}
.yd_c01293{bottom:438.780000px;}
.yc_c01293{bottom:461.730000px;}
.yb_c01293{bottom:486.630000px;}
.ya_c01293{bottom:511.080000px;}
.y9_c01293{bottom:536.280000px;}
.y8_c01293{bottom:560.580000px;}
.y7_c01293{bottom:584.880000px;}
.y6_c01293{bottom:609.180000px;}
.y5_c01293{bottom:633.930000px;}
.y4_c01293{bottom:658.230000px;}
.y3_c01293{bottom:682.830000px;}
.y2_c01293{bottom:707.130000px;}
.y1_c01293{bottom:731.730000px;}
.h4_c01293{height:13.200074px;}
.h5_c01293{height:43.804688px;}
.h3_c01293{height:91.160156px;}
.h2_c01293{height:114.771973px;}
.h0_c01293{height:773.850000px;}
.h1_c01293{height:774.000000px;}
.w2_c01293{width:104.875500px;}
.w1_c01293{width:518.250000px;}
.w0_c01293{width:518.400000px;}
.x0_c01293{left:0.000000px;}
.x5_c01293{left:104.400000px;}
.x4_c01293{left:106.350000px;}
.x3_c01293{left:108.300000px;}
.x2_c01293{left:110.100000px;}
.x6_c01293{left:211.014267px;}
.x1_c01293{left:212.400000px;}
@media print{
.v1_c01293{vertical-align:-68.266667pt;}
.v0_c01293{vertical-align:0.000000pt;}
.ls3_c01293{letter-spacing:-2.666667pt;}
.ls1_c01293{letter-spacing:0.000000pt;}
.ls2_c01293{letter-spacing:2.666667pt;}
.ls0_c01293{letter-spacing:4.458667pt;}
.ws0_c01293{word-spacing:-26.837333pt;}
.ws1_c01293{word-spacing:0.000000pt;}
._5_c01293{margin-left:-20.384000pt;}
._3_c01293{margin-left:-14.248000pt;}
._0_c01293{margin-left:-13.208000pt;}
._2_c01293{margin-left:-8.840000pt;}
._4_c01293{margin-left:-7.488000pt;}
._13_c01293{margin-left:-6.464000pt;}
._1_c01293{margin-left:-5.200000pt;}
._b_c01293{margin-left:-3.712000pt;}
._e_c01293{margin-left:-2.240000pt;}
._6_c01293{margin-left:-0.896000pt;}
._a_c01293{width:1.280000pt;}
._8_c01293{width:2.688000pt;}
._9_c01293{width:3.968000pt;}
._16_c01293{width:4.864000pt;}
._11_c01293{width:5.952000pt;}
._10_c01293{width:7.424000pt;}
._c_c01293{width:8.832000pt;}
._d_c01293{width:9.992000pt;}
._7_c01293{width:11.072000pt;}
._12_c01293{width:12.288000pt;}
._f_c01293{width:14.272000pt;}
._15_c01293{width:16.320000pt;}
._14_c01293{width:26.624000pt;}
._17_c01293{width:52.138667pt;}
.fs2_c01293{font-size:42.666667pt;}
.fs1_c01293{font-size:64.000000pt;}
.fs0_c01293{font-size:104.000000pt;}
.y0_c01293{bottom:0.000000pt;}
.y1e_c01293{bottom:2.760000pt;}
.y1d_c01293{bottom:6.425206pt;}
.y1c_c01293{bottom:62.160000pt;}
.y1b_c01293{bottom:85.493333pt;}
.y1a_c01293{bottom:107.093333pt;}
.y19_c01293{bottom:129.626667pt;}
.y18_c01293{bottom:151.893333pt;}
.y17_c01293{bottom:173.493333pt;}
.y16_c01293{bottom:196.293333pt;}
.y15_c01293{bottom:218.426667pt;}
.y14_c01293{bottom:240.560000pt;}
.y13_c01293{bottom:261.626667pt;}
.y12_c01293{bottom:283.760000pt;}
.y11_c01293{bottom:305.760000pt;}
.y10_c01293{bottom:326.693333pt;}
.yf_c01293{bottom:347.493333pt;}
.ye_c01293{bottom:368.960000pt;}
.yd_c01293{bottom:390.026667pt;}
.yc_c01293{bottom:410.426667pt;}
.yb_c01293{bottom:432.560000pt;}
.ya_c01293{bottom:454.293333pt;}
.y9_c01293{bottom:476.693333pt;}
.y8_c01293{bottom:498.293333pt;}
.y7_c01293{bottom:519.893333pt;}
.y6_c01293{bottom:541.493333pt;}
.y5_c01293{bottom:563.493333pt;}
.y4_c01293{bottom:585.093333pt;}
.y3_c01293{bottom:606.960000pt;}
.y2_c01293{bottom:628.560000pt;}
.y1_c01293{bottom:650.426667pt;}
.h4_c01293{height:11.733399pt;}
.h5_c01293{height:38.937500pt;}
.h3_c01293{height:81.031250pt;}
.h2_c01293{height:102.019531pt;}
.h0_c01293{height:687.866667pt;}
.h1_c01293{height:688.000000pt;}
.w2_c01293{width:93.222667pt;}
.w1_c01293{width:460.666667pt;}
.w0_c01293{width:460.800000pt;}
.x0_c01293{left:0.000000pt;}
.x5_c01293{left:92.800000pt;}
.x4_c01293{left:94.533333pt;}
.x3_c01293{left:96.266667pt;}
.x2_c01293{left:97.866667pt;}
.x6_c01293{left:187.568237pt;}
.x1_c01293{left:188.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5f9397005a965695f852d227.woff2')format("woff");}.ff1_c01294{font-family:ff1_c01294;line-height:1.480469;font-style:normal;font-weight:normal;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_c89f97c6dbb21734ceeb983d.woff2')format("woff");}.ff2_c01294{font-family:ff2_c01294;line-height:1.284668;font-style:normal;font-weight:normal;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_887d7990d6f5a6c6925f8306.woff2')format("woff");}.ff3_c01294{font-family:ff3_c01294;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01294;src:url('chunks/assets/font_3dd3aab2c7a0e0ea45e6d6a1.woff2')format("woff");}.ff4_c01294{font-family:ff4_c01294;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01294;src:url('chunks/assets/font_2a56b2f940860e354f03f04f.woff2')format("woff");}.ff5_c01294{font-family:ff5_c01294;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01294;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01294{font-family:ff6_c01294;line-height:1.219238;font-style: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;}
.ls2_c01294{letter-spacing:-3.000000px;}
.ls3_c01294{letter-spacing:0.000000px;}
.ls1_c01294{letter-spacing:2.388000px;}
.ls0_c01294{letter-spacing:3.000000px;}
.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;}
}
.ws3_c01294{word-spacing:-20.352000px;}
.ws1_c01294{word-spacing:-19.521000px;}
.ws2_c01294{word-spacing:-19.500000px;}
.ws0_c01294{word-spacing:-14.352000px;}
.ws4_c01294{word-spacing:0.000000px;}
._e_c01294{margin-left:-67.680000px;}
._18_c01294{margin-left:-29.520000px;}
._1e_c01294{margin-left:-22.896000px;}
._17_c01294{margin-left:-19.260000px;}
._23_c01294{margin-left:-16.746000px;}
._20_c01294{margin-left:-15.492000px;}
._21_c01294{margin-left:-13.776000px;}
._a_c01294{margin-left:-12.744000px;}
._1a_c01294{margin-left:-11.664000px;}
._5_c01294{margin-left:-10.494000px;}
._8_c01294{margin-left:-8.712000px;}
._1b_c01294{margin-left:-7.560000px;}
._9_c01294{margin-left:-6.552000px;}
._15_c01294{margin-left:-5.520000px;}
._3_c01294{margin-left:-4.248000px;}
._4_c01294{margin-left:-2.880000px;}
._6_c01294{margin-left:-1.008000px;}
._0_c01294{width:1.368000px;}
._1_c01294{width:2.880000px;}
._2_c01294{width:4.680000px;}
._d_c01294{width:6.384000px;}
._13_c01294{width:8.364000px;}
._b_c01294{width:9.792000px;}
._16_c01294{width:10.842000px;}
._c_c01294{width:12.024000px;}
._1c_c01294{width:13.512000px;}
._7_c01294{width:15.336000px;}
._22_c01294{width:16.629000px;}
._12_c01294{width:18.936000px;}
._11_c01294{width:22.392000px;}
._10_c01294{width:24.840000px;}
._f_c01294{width:27.360000px;}
._14_c01294{width:54.702000px;}
._19_c01294{width:149.280000px;}
._1d_c01294{width:206.928000px;}
._25_c01294{width:249.330000px;}
._24_c01294{width:252.630000px;}
._26_c01294{width:315.084000px;}
._1f_c01294{width:482.760000px;}
.fc2_c01294{color:transparent;}
.fc1_c01294{color:rgb(128,128,128);}
.fc0_c01294{color:rgb(0,0,0);}
.fs5_c01294{font-size:48.000000px;}
.fs2_c01294{font-size:63.000000px;}
.fs0_c01294{font-size:72.000000px;}
.fs1_c01294{font-size:78.000000px;}
.fs3_c01294{font-size:81.000000px;}
.fs4_c01294{font-size:90.000000px;}
.y0_c01294{bottom:0.000000px;}
.y1e_c01294{bottom:3.105000px;}
.y1d_c01294{bottom:7.228369px;}
.y1c_c01294{bottom:38.070000px;}
.y1b_c01294{bottom:64.020000px;}
.y1a_c01294{bottom:88.770000px;}
.y19_c01294{bottom:115.020000px;}
.y18_c01294{bottom:140.070000px;}
.y17_c01294{bottom:164.670000px;}
.y16_c01294{bottom:190.620000px;}
.y15_c01294{bottom:215.370000px;}
.y14_c01294{bottom:239.220000px;}
.y13_c01294{bottom:263.520000px;}
.y12_c01294{bottom:288.270000px;}
.y11_c01294{bottom:313.770000px;}
.y10_c01294{bottom:340.170000px;}
.yf_c01294{bottom:361.170000px;}
.ye_c01294{bottom:385.320000px;}
.yd_c01294{bottom:410.070000px;}
.yc_c01294{bottom:434.070000px;}
.yb_c01294{bottom:458.220000px;}
.ya_c01294{bottom:483.270000px;}
.y9_c01294{bottom:508.170000px;}
.y8_c01294{bottom:532.470000px;}
.y7_c01294{bottom:557.520000px;}
.y6_c01294{bottom:582.570000px;}
.y5_c01294{bottom:606.420000px;}
.y4_c01294{bottom:631.470000px;}
.y3_c01294{bottom:655.320000px;}
.y2_c01294{bottom:681.120000px;}
.y1_c01294{bottom:703.920000px;}
.h8_c01294{height:13.200073px;}
.h9_c01294{height:43.804688px;}
.h6_c01294{height:76.552734px;}
.h7_c01294{height:79.765137px;}
.h2_c01294{height:84.269531px;}
.h5_c01294{height:90.703125px;}
.h3_c01294{height:91.160156px;}
.h4_c01294{height:102.555176px;}
.h0_c01294{height:769.200000px;}
.h1_c01294{height:769.500000px;}
.w2_c01294{width:104.875500px;}
.w1_c01294{width:508.500000px;}
.w0_c01294{width:508.650000px;}
.x0_c01294{left:0.000000px;}
.x1_c01294{left:18.450000px;}
.x2_c01294{left:20.550000px;}
.x3_c01294{left:22.050000px;}
.x4_c01294{left:23.250000px;}
.x5_c01294{left:24.750000px;}
.x6_c01294{left:25.950000px;}
.x7_c01294{left:27.000000px;}
.x8_c01294{left:28.350000px;}
.x9_c01294{left:29.400000px;}
.xb_c01294{left:206.139267px;}
.xa_c01294{left:255.450000px;}
@media print{
.v0_c01294{vertical-align:0.000000pt;}
.ls2_c01294{letter-spacing:-2.666667pt;}
.ls3_c01294{letter-spacing:0.000000pt;}
.ls1_c01294{letter-spacing:2.122667pt;}
.ls0_c01294{letter-spacing:2.666667pt;}
.ws3_c01294{word-spacing:-18.090667pt;}
.ws1_c01294{word-spacing:-17.352000pt;}
.ws2_c01294{word-spacing:-17.333333pt;}
.ws0_c01294{word-spacing:-12.757333pt;}
.ws4_c01294{word-spacing:0.000000pt;}
._e_c01294{margin-left:-60.160000pt;}
._18_c01294{margin-left:-26.240000pt;}
._1e_c01294{margin-left:-20.352000pt;}
._17_c01294{margin-left:-17.120000pt;}
._23_c01294{margin-left:-14.885333pt;}
._20_c01294{margin-left:-13.770667pt;}
._21_c01294{margin-left:-12.245333pt;}
._a_c01294{margin-left:-11.328000pt;}
._1a_c01294{margin-left:-10.368000pt;}
._5_c01294{margin-left:-9.328000pt;}
._8_c01294{margin-left:-7.744000pt;}
._1b_c01294{margin-left:-6.720000pt;}
._9_c01294{margin-left:-5.824000pt;}
._15_c01294{margin-left:-4.906667pt;}
._3_c01294{margin-left:-3.776000pt;}
._4_c01294{margin-left:-2.560000pt;}
._6_c01294{margin-left:-0.896000pt;}
._0_c01294{width:1.216000pt;}
._1_c01294{width:2.560000pt;}
._2_c01294{width:4.160000pt;}
._d_c01294{width:5.674667pt;}
._13_c01294{width:7.434667pt;}
._b_c01294{width:8.704000pt;}
._16_c01294{width:9.637333pt;}
._c_c01294{width:10.688000pt;}
._1c_c01294{width:12.010667pt;}
._7_c01294{width:13.632000pt;}
._22_c01294{width:14.781333pt;}
._12_c01294{width:16.832000pt;}
._11_c01294{width:19.904000pt;}
._10_c01294{width:22.080000pt;}
._f_c01294{width:24.320000pt;}
._14_c01294{width:48.624000pt;}
._19_c01294{width:132.693333pt;}
._1d_c01294{width:183.936000pt;}
._25_c01294{width:221.626667pt;}
._24_c01294{width:224.560000pt;}
._26_c01294{width:280.074667pt;}
._1f_c01294{width:429.120000pt;}
.fs5_c01294{font-size:42.666667pt;}
.fs2_c01294{font-size:56.000000pt;}
.fs0_c01294{font-size:64.000000pt;}
.fs1_c01294{font-size:69.333333pt;}
.fs3_c01294{font-size:72.000000pt;}
.fs4_c01294{font-size:80.000000pt;}
.y0_c01294{bottom:0.000000pt;}
.y1e_c01294{bottom:2.760000pt;}
.y1d_c01294{bottom:6.425217pt;}
.y1c_c01294{bottom:33.840000pt;}
.y1b_c01294{bottom:56.906667pt;}
.y1a_c01294{bottom:78.906667pt;}
.y19_c01294{bottom:102.240000pt;}
.y18_c01294{bottom:124.506667pt;}
.y17_c01294{bottom:146.373333pt;}
.y16_c01294{bottom:169.440000pt;}
.y15_c01294{bottom:191.440000pt;}
.y14_c01294{bottom:212.640000pt;}
.y13_c01294{bottom:234.240000pt;}
.y12_c01294{bottom:256.240000pt;}
.y11_c01294{bottom:278.906667pt;}
.y10_c01294{bottom:302.373333pt;}
.yf_c01294{bottom:321.040000pt;}
.ye_c01294{bottom:342.506667pt;}
.yd_c01294{bottom:364.506667pt;}
.yc_c01294{bottom:385.840000pt;}
.yb_c01294{bottom:407.306667pt;}
.ya_c01294{bottom:429.573333pt;}
.y9_c01294{bottom:451.706667pt;}
.y8_c01294{bottom:473.306667pt;}
.y7_c01294{bottom:495.573333pt;}
.y6_c01294{bottom:517.840000pt;}
.y5_c01294{bottom:539.040000pt;}
.y4_c01294{bottom:561.306667pt;}
.y3_c01294{bottom:582.506667pt;}
.y2_c01294{bottom:605.440000pt;}
.y1_c01294{bottom:625.706667pt;}
.h8_c01294{height:11.733399pt;}
.h9_c01294{height:38.937500pt;}
.h6_c01294{height:68.046875pt;}
.h7_c01294{height:70.902344pt;}
.h2_c01294{height:74.906250pt;}
.h5_c01294{height:80.625000pt;}
.h3_c01294{height:81.031250pt;}
.h4_c01294{height:91.160156pt;}
.h0_c01294{height:683.733333pt;}
.h1_c01294{height:684.000000pt;}
.w2_c01294{width:93.222667pt;}
.w1_c01294{width:452.000000pt;}
.w0_c01294{width:452.133333pt;}
.x0_c01294{left:0.000000pt;}
.x1_c01294{left:16.400000pt;}
.x2_c01294{left:18.266667pt;}
.x3_c01294{left:19.600000pt;}
.x4_c01294{left:20.666667pt;}
.x5_c01294{left:22.000000pt;}
.x6_c01294{left:23.066667pt;}
.x7_c01294{left:24.000000pt;}
.x8_c01294{left:25.200000pt;}
.x9_c01294{left:26.133333pt;}
.xb_c01294{left:183.234904pt;}
.xa_c01294{left:227.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_75454dd3f9bda5783c94fa33.woff2')format("woff");}.ff1_c01295{font-family:ff1_c01295;line-height:1.480469;font-style:normal;font-weight:normal;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_926aaca62dcbc888da81b47c.woff2')format("woff");}.ff2_c01295{font-family:ff2_c01295;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01295{font-family:ff3_c01295;line-height:1.219238;font-style: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;}
.ls2_c01295{letter-spacing:-3.000000px;}
.ls3_c01295{letter-spacing:0.000000px;}
.ls0_c01295{letter-spacing:3.000000px;}
.ls1_c01295{letter-spacing:44.940000px;}
.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;}
}
.ws2_c01295{word-spacing:-20.352000px;}
.ws3_c01295{word-spacing:-14.352000px;}
.ws5_c01295{word-spacing:0.000000px;}
.ws4_c01295{word-spacing:3.072000px;}
.ws0_c01295{word-spacing:4.224000px;}
.ws1_c01295{word-spacing:8.688000px;}
._24_c01295{margin-left:-64.728000px;}
._14_c01295{margin-left:-23.112000px;}
._15_c01295{margin-left:-18.504000px;}
._11_c01295{margin-left:-14.976000px;}
._13_c01295{margin-left:-13.104000px;}
._10_c01295{margin-left:-11.520000px;}
._12_c01295{margin-left:-10.368000px;}
._d_c01295{margin-left:-8.496000px;}
._9_c01295{margin-left:-7.344000px;}
._f_c01295{margin-left:-5.400000px;}
._b_c01295{margin-left:-3.816000px;}
._e_c01295{margin-left:-2.664000px;}
._a_c01295{margin-left:-1.152000px;}
._7_c01295{width:1.800000px;}
._8_c01295{width:2.952000px;}
._c_c01295{width:4.320000px;}
._4_c01295{width:5.832000px;}
._16_c01295{width:7.488000px;}
._2_c01295{width:8.856000px;}
._1_c01295{width:10.728000px;}
._20_c01295{width:11.760000px;}
._21_c01295{width:12.888000px;}
._1c_c01295{width:14.328000px;}
._6_c01295{width:15.696000px;}
._22_c01295{width:16.872000px;}
._5_c01295{width:19.656000px;}
._3_c01295{width:21.528000px;}
._1a_c01295{width:22.872000px;}
._19_c01295{width:23.976000px;}
._0_c01295{width:24.984000px;}
._1f_c01295{width:26.568000px;}
._17_c01295{width:27.768000px;}
._23_c01295{width:30.384000px;}
._1e_c01295{width:31.992000px;}
._1d_c01295{width:33.360000px;}
._1b_c01295{width:42.192000px;}
._18_c01295{width:44.952000px;}
.fc2_c01295{color:transparent;}
.fc1_c01295{color:rgb(128,128,128);}
.fc0_c01295{color:rgb(0,0,0);}
.fs1_c01295{font-size:24.000000px;}
.fs3_c01295{font-size:48.000000px;}
.fs2_c01295{font-size:60.000000px;}
.fs0_c01295{font-size:72.000000px;}
.y0_c01295{bottom:0.000000px;}
.y1f_c01295{bottom:3.105000px;}
.y1e_c01295{bottom:7.228357px;}
.y1d_c01295{bottom:48.930000px;}
.y1c_c01295{bottom:72.180000px;}
.y1b_c01295{bottom:95.580000px;}
.y1a_c01295{bottom:120.930000px;}
.y19_c01295{bottom:146.130000px;}
.y18_c01295{bottom:170.880000px;}
.y17_c01295{bottom:196.080000px;}
.y16_c01295{bottom:221.430000px;}
.y15_c01295{bottom:246.480000px;}
.y14_c01295{bottom:271.980000px;}
.y13_c01295{bottom:296.430000px;}
.y12_c01295{bottom:321.330000px;}
.y11_c01295{bottom:346.230000px;}
.y10_c01295{bottom:369.930000px;}
.yf_c01295{bottom:393.630000px;}
.ye_c01295{bottom:418.230000px;}
.yd_c01295{bottom:442.230000px;}
.yc_c01295{bottom:465.030000px;}
.yb_c01295{bottom:490.080000px;}
.ya_c01295{bottom:514.980000px;}
.y9_c01295{bottom:539.730000px;}
.y8_c01295{bottom:563.580000px;}
.y7_c01295{bottom:588.630000px;}
.y6_c01295{bottom:612.930000px;}
.y5_c01295{bottom:637.980000px;}
.y4_c01295{bottom:663.180000px;}
.y3_c01295{bottom:687.930000px;}
.y2_c01295{bottom:712.230000px;}
.y1_c01295{bottom:738.480000px;}
.h3_c01295{height:13.200074px;}
.h4_c01295{height:43.804688px;}
.h2_c01295{height:91.160156px;}
.h0_c01295{height:787.350000px;}
.h1_c01295{height:787.500000px;}
.w2_c01295{width:104.875500px;}
.w0_c01295{width:505.425000px;}
.w1_c01295{width:505.500000px;}
.x0_c01295{left:0.000000px;}
.x2_c01295{left:83.250000px;}
.x3_c01295{left:85.950000px;}
.x4_c01295{left:87.450000px;}
.x5_c01295{left:88.500000px;}
.x6_c01295{left:90.150000px;}
.x7_c01295{left:92.100000px;}
.x8_c01295{left:93.450000px;}
.x9_c01295{left:94.500000px;}
.xa_c01295{left:95.850000px;}
.x1_c01295{left:180.600000px;}
.xc_c01295{left:204.526749px;}
.xb_c01295{left:420.150000px;}
@media print{
.v0_c01295{vertical-align:0.000000pt;}
.ls2_c01295{letter-spacing:-2.666667pt;}
.ls3_c01295{letter-spacing:0.000000pt;}
.ls0_c01295{letter-spacing:2.666667pt;}
.ls1_c01295{letter-spacing:39.946667pt;}
.ws2_c01295{word-spacing:-18.090667pt;}
.ws3_c01295{word-spacing:-12.757333pt;}
.ws5_c01295{word-spacing:0.000000pt;}
.ws4_c01295{word-spacing:2.730667pt;}
.ws0_c01295{word-spacing:3.754667pt;}
.ws1_c01295{word-spacing:7.722667pt;}
._24_c01295{margin-left:-57.536000pt;}
._14_c01295{margin-left:-20.544000pt;}
._15_c01295{margin-left:-16.448000pt;}
._11_c01295{margin-left:-13.312000pt;}
._13_c01295{margin-left:-11.648000pt;}
._10_c01295{margin-left:-10.240000pt;}
._12_c01295{margin-left:-9.216000pt;}
._d_c01295{margin-left:-7.552000pt;}
._9_c01295{margin-left:-6.528000pt;}
._f_c01295{margin-left:-4.800000pt;}
._b_c01295{margin-left:-3.392000pt;}
._e_c01295{margin-left:-2.368000pt;}
._a_c01295{margin-left:-1.024000pt;}
._7_c01295{width:1.600000pt;}
._8_c01295{width:2.624000pt;}
._c_c01295{width:3.840000pt;}
._4_c01295{width:5.184000pt;}
._16_c01295{width:6.656000pt;}
._2_c01295{width:7.872000pt;}
._1_c01295{width:9.536000pt;}
._20_c01295{width:10.453333pt;}
._21_c01295{width:11.456000pt;}
._1c_c01295{width:12.736000pt;}
._6_c01295{width:13.952000pt;}
._22_c01295{width:14.997333pt;}
._5_c01295{width:17.472000pt;}
._3_c01295{width:19.136000pt;}
._1a_c01295{width:20.330667pt;}
._19_c01295{width:21.312000pt;}
._0_c01295{width:22.208000pt;}
._1f_c01295{width:23.616000pt;}
._17_c01295{width:24.682667pt;}
._23_c01295{width:27.008000pt;}
._1e_c01295{width:28.437333pt;}
._1d_c01295{width:29.653333pt;}
._1b_c01295{width:37.504000pt;}
._18_c01295{width:39.957333pt;}
.fs1_c01295{font-size:21.333333pt;}
.fs3_c01295{font-size:42.666667pt;}
.fs2_c01295{font-size:53.333333pt;}
.fs0_c01295{font-size:64.000000pt;}
.y0_c01295{bottom:0.000000pt;}
.y1f_c01295{bottom:2.760000pt;}
.y1e_c01295{bottom:6.425206pt;}
.y1d_c01295{bottom:43.493333pt;}
.y1c_c01295{bottom:64.160000pt;}
.y1b_c01295{bottom:84.960000pt;}
.y1a_c01295{bottom:107.493333pt;}
.y19_c01295{bottom:129.893333pt;}
.y18_c01295{bottom:151.893333pt;}
.y17_c01295{bottom:174.293333pt;}
.y16_c01295{bottom:196.826667pt;}
.y15_c01295{bottom:219.093333pt;}
.y14_c01295{bottom:241.760000pt;}
.y13_c01295{bottom:263.493333pt;}
.y12_c01295{bottom:285.626667pt;}
.y11_c01295{bottom:307.760000pt;}
.y10_c01295{bottom:328.826667pt;}
.yf_c01295{bottom:349.893333pt;}
.ye_c01295{bottom:371.760000pt;}
.yd_c01295{bottom:393.093333pt;}
.yc_c01295{bottom:413.360000pt;}
.yb_c01295{bottom:435.626667pt;}
.ya_c01295{bottom:457.760000pt;}
.y9_c01295{bottom:479.760000pt;}
.y8_c01295{bottom:500.960000pt;}
.y7_c01295{bottom:523.226667pt;}
.y6_c01295{bottom:544.826667pt;}
.y5_c01295{bottom:567.093333pt;}
.y4_c01295{bottom:589.493333pt;}
.y3_c01295{bottom:611.493333pt;}
.y2_c01295{bottom:633.093333pt;}
.y1_c01295{bottom:656.426667pt;}
.h3_c01295{height:11.733399pt;}
.h4_c01295{height:38.937500pt;}
.h2_c01295{height:81.031250pt;}
.h0_c01295{height:699.866667pt;}
.h1_c01295{height:700.000000pt;}
.w2_c01295{width:93.222667pt;}
.w0_c01295{width:449.266667pt;}
.w1_c01295{width:449.333333pt;}
.x0_c01295{left:0.000000pt;}
.x2_c01295{left:74.000000pt;}
.x3_c01295{left:76.400000pt;}
.x4_c01295{left:77.733333pt;}
.x5_c01295{left:78.666667pt;}
.x6_c01295{left:80.133333pt;}
.x7_c01295{left:81.866667pt;}
.x8_c01295{left:83.066667pt;}
.x9_c01295{left:84.000000pt;}
.xa_c01295{left:85.200000pt;}
.x1_c01295{left:160.533333pt;}
.xc_c01295{left:181.801554pt;}
.xb_c01295{left:373.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_881d6b56d0177ad5d61082fc.woff2')format("woff");}.ff1_c01296{font-family:ff1_c01296;line-height:1.568848;font-style:normal;font-weight:normal;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_23f237c40c7710a9887e4e3c.woff2')format("woff");}.ff2_c01296{font-family:ff2_c01296;line-height:1.575000;font-style:normal;font-weight:normal;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_5e5b313973496e586bb6df1c.woff2')format("woff");}.ff3_c01296{font-family:ff3_c01296;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01296;src:url('chunks/assets/font_318c8341f223f400cb77c57f.woff2')format("woff");}.ff4_c01296{font-family:ff4_c01296;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01296;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01296{font-family:ff5_c01296;line-height:1.219238;font-style: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);}
.v1_c01296{vertical-align:-12.600000px;}
.v0_c01296{vertical-align:0.000000px;}
.ls4_c01296{letter-spacing:-3.000000px;}
.ls2_c01296{letter-spacing:0.000000px;}
.ls0_c01296{letter-spacing:3.000000px;}
.ls3_c01296{letter-spacing:6.000000px;}
.ls1_c01296{letter-spacing:358.248000px;}
.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;}
}
.ws1_c01296{word-spacing:-36.051000px;}
.ws3_c01296{word-spacing:-30.192000px;}
.ws0_c01296{word-spacing:-20.352000px;}
.ws2_c01296{word-spacing:-16.881600px;}
.ws4_c01296{word-spacing:0.000000px;}
._1c_c01296{margin-left:-22.332000px;}
._19_c01296{margin-left:-18.780000px;}
._c_c01296{margin-left:-16.284000px;}
._b_c01296{margin-left:-14.184000px;}
._9_c01296{margin-left:-12.900000px;}
._a_c01296{margin-left:-10.788000px;}
._4_c01296{margin-left:-7.644000px;}
._7_c01296{margin-left:-5.928000px;}
._5_c01296{margin-left:-4.524000px;}
._6_c01296{margin-left:-3.120000px;}
._2_c01296{margin-left:-1.950000px;}
._0_c01296{width:1.092000px;}
._8_c01296{width:3.042000px;}
._d_c01296{width:4.536000px;}
._e_c01296{width:6.030000px;}
._f_c01296{width:7.908000px;}
._3_c01296{width:8.970000px;}
._15_c01296{width:10.020000px;}
._10_c01296{width:11.874000px;}
._16_c01296{width:13.698000px;}
._18_c01296{width:14.910000px;}
._1_c01296{width:16.146000px;}
._17_c01296{width:22.392000px;}
._13_c01296{width:28.008000px;}
._14_c01296{width:31.464000px;}
._1d_c01296{width:39.009000px;}
._1a_c01296{width:53.874000px;}
._1b_c01296{width:92.754000px;}
._11_c01296{width:138.468000px;}
._1e_c01296{width:358.428000px;}
._12_c01296{width:867.606000px;}
.fc2_c01296{color:transparent;}
.fc1_c01296{color:rgb(128,128,128);}
.fc0_c01296{color:rgb(0,0,0);}
.fs4_c01296{font-size:48.000000px;}
.fs3_c01296{font-size:57.600000px;}
.fs2_c01296{font-size:63.000000px;}
.fs1_c01296{font-size:72.000000px;}
.fs0_c01296{font-size:78.000000px;}
.y0_c01296{bottom:0.000000px;}
.y1e_c01296{bottom:3.105000px;}
.y1d_c01296{bottom:7.228369px;}
.y1c_c01296{bottom:31.620000px;}
.y1b_c01296{bottom:57.720000px;}
.y1a_c01296{bottom:83.370000px;}
.y19_c01296{bottom:108.270000px;}
.y18_c01296{bottom:132.570000px;}
.y17_c01296{bottom:157.170000px;}
.y16_c01296{bottom:184.170000px;}
.y15_c01296{bottom:208.920000px;}
.y14_c01296{bottom:234.120000px;}
.y13_c01296{bottom:258.870000px;}
.y12_c01296{bottom:283.170000px;}
.y11_c01296{bottom:308.370000px;}
.y10_c01296{bottom:332.370000px;}
.yf_c01296{bottom:356.670000px;}
.ye_c01296{bottom:381.420000px;}
.yd_c01296{bottom:402.270000px;}
.yc_c01296{bottom:427.170000px;}
.yb_c01296{bottom:452.220000px;}
.ya_c01296{bottom:476.820000px;}
.y9_c01296{bottom:502.170000px;}
.y8_c01296{bottom:527.820000px;}
.y7_c01296{bottom:551.070000px;}
.y6_c01296{bottom:575.820000px;}
.y5_c01296{bottom:602.670000px;}
.y4_c01296{bottom:625.620000px;}
.y3_c01296{bottom:651.270000px;}
.y2_c01296{bottom:677.370000px;}
.y1_c01296{bottom:700.020000px;}
.h5_c01296{height:13.200073px;}
.h6_c01296{height:43.804688px;}
.h4_c01296{height:79.765137px;}
.h3_c01296{height:91.160156px;}
.h2_c01296{height:98.756836px;}
.h0_c01296{height:775.950000px;}
.h1_c01296{height:776.250000px;}
.w2_c01296{width:104.875500px;}
.w1_c01296{width:525.750000px;}
.w0_c01296{width:525.975000px;}
.x0_c01296{left:0.000000px;}
.x5_c01296{left:15.450000px;}
.x2_c01296{left:18.000000px;}
.x1_c01296{left:19.350000px;}
.x3_c01296{left:20.850000px;}
.x4_c01296{left:42.750000px;}
.x6_c01296{left:202.800000px;}
.x7_c01296{left:214.801758px;}
@media print{
.v1_c01296{vertical-align:-11.200000pt;}
.v0_c01296{vertical-align:0.000000pt;}
.ls4_c01296{letter-spacing:-2.666667pt;}
.ls2_c01296{letter-spacing:0.000000pt;}
.ls0_c01296{letter-spacing:2.666667pt;}
.ls3_c01296{letter-spacing:5.333333pt;}
.ls1_c01296{letter-spacing:318.442667pt;}
.ws1_c01296{word-spacing:-32.045333pt;}
.ws3_c01296{word-spacing:-26.837333pt;}
.ws0_c01296{word-spacing:-18.090667pt;}
.ws2_c01296{word-spacing:-15.005867pt;}
.ws4_c01296{word-spacing:0.000000pt;}
._1c_c01296{margin-left:-19.850667pt;}
._19_c01296{margin-left:-16.693333pt;}
._c_c01296{margin-left:-14.474667pt;}
._b_c01296{margin-left:-12.608000pt;}
._9_c01296{margin-left:-11.466667pt;}
._a_c01296{margin-left:-9.589333pt;}
._4_c01296{margin-left:-6.794667pt;}
._7_c01296{margin-left:-5.269333pt;}
._5_c01296{margin-left:-4.021333pt;}
._6_c01296{margin-left:-2.773333pt;}
._2_c01296{margin-left:-1.733333pt;}
._0_c01296{width:0.970667pt;}
._8_c01296{width:2.704000pt;}
._d_c01296{width:4.032000pt;}
._e_c01296{width:5.360000pt;}
._f_c01296{width:7.029333pt;}
._3_c01296{width:7.973333pt;}
._15_c01296{width:8.906667pt;}
._10_c01296{width:10.554667pt;}
._16_c01296{width:12.176000pt;}
._18_c01296{width:13.253333pt;}
._1_c01296{width:14.352000pt;}
._17_c01296{width:19.904000pt;}
._13_c01296{width:24.896000pt;}
._14_c01296{width:27.968000pt;}
._1d_c01296{width:34.674667pt;}
._1a_c01296{width:47.888000pt;}
._1b_c01296{width:82.448000pt;}
._11_c01296{width:123.082667pt;}
._1e_c01296{width:318.602667pt;}
._12_c01296{width:771.205333pt;}
.fs4_c01296{font-size:42.666667pt;}
.fs3_c01296{font-size:51.200000pt;}
.fs2_c01296{font-size:56.000000pt;}
.fs1_c01296{font-size:64.000000pt;}
.fs0_c01296{font-size:69.333333pt;}
.y0_c01296{bottom:0.000000pt;}
.y1e_c01296{bottom:2.760000pt;}
.y1d_c01296{bottom:6.425217pt;}
.y1c_c01296{bottom:28.106667pt;}
.y1b_c01296{bottom:51.306667pt;}
.y1a_c01296{bottom:74.106667pt;}
.y19_c01296{bottom:96.240000pt;}
.y18_c01296{bottom:117.840000pt;}
.y17_c01296{bottom:139.706667pt;}
.y16_c01296{bottom:163.706667pt;}
.y15_c01296{bottom:185.706667pt;}
.y14_c01296{bottom:208.106667pt;}
.y13_c01296{bottom:230.106667pt;}
.y12_c01296{bottom:251.706667pt;}
.y11_c01296{bottom:274.106667pt;}
.y10_c01296{bottom:295.440000pt;}
.yf_c01296{bottom:317.040000pt;}
.ye_c01296{bottom:339.040000pt;}
.yd_c01296{bottom:357.573333pt;}
.yc_c01296{bottom:379.706667pt;}
.yb_c01296{bottom:401.973333pt;}
.ya_c01296{bottom:423.840000pt;}
.y9_c01296{bottom:446.373333pt;}
.y8_c01296{bottom:469.173333pt;}
.y7_c01296{bottom:489.840000pt;}
.y6_c01296{bottom:511.840000pt;}
.y5_c01296{bottom:535.706667pt;}
.y4_c01296{bottom:556.106667pt;}
.y3_c01296{bottom:578.906667pt;}
.y2_c01296{bottom:602.106667pt;}
.y1_c01296{bottom:622.240000pt;}
.h5_c01296{height:11.733399pt;}
.h6_c01296{height:38.937500pt;}
.h4_c01296{height:70.902344pt;}
.h3_c01296{height:81.031250pt;}
.h2_c01296{height:87.783854pt;}
.h0_c01296{height:689.733333pt;}
.h1_c01296{height:690.000000pt;}
.w2_c01296{width:93.222667pt;}
.w1_c01296{width:467.333333pt;}
.w0_c01296{width:467.533333pt;}
.x0_c01296{left:0.000000pt;}
.x5_c01296{left:13.733333pt;}
.x2_c01296{left:16.000000pt;}
.x1_c01296{left:17.200000pt;}
.x3_c01296{left:18.533333pt;}
.x4_c01296{left:38.000000pt;}
.x6_c01296{left:180.266667pt;}
.x7_c01296{left:190.934896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9ecaac5fbc3f18943de641ae.woff2')format("woff");}.ff1_c01297{font-family:ff1_c01297;line-height:1.480469;font-style:normal;font-weight:normal;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_632a6cc591d863577ded03f3.woff2')format("woff");}.ff2_c01297{font-family:ff2_c01297;line-height:1.568848;font-style:normal;font-weight:normal;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_0c525ae1ed53fc51fda497e7.woff2')format("woff");}.ff3_c01297{font-family:ff3_c01297;line-height:1.480469;font-style:normal;font-weight:normal;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_4e2776012e7d292605a23df9.woff2')format("woff");}.ff4_c01297{font-family:ff4_c01297;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01297;src:url('chunks/assets/font_ebae2c2efd4d03fa09153994.woff2')format("woff");}.ff5_c01297{font-family:ff5_c01297;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01297;src:url('chunks/assets/font_b50e7a12ace25ef92e919681.woff2')format("woff");}.ff6_c01297{font-family:ff6_c01297;line-height:1.592000;font-style:normal;font-weight: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_c01297;src:url('chunks/assets/font_ba8cac6f7085485eb8c89093.woff2')format("woff");}.ff7_c01297{font-family:ff7_c01297;line-height:1.575000;font-style:normal;font-weight: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_c01297;src:url('chunks/assets/font_ad94887ae5f0669b3ceff36b.woff2')format("woff");}.ff8_c01297{font-family:ff8_c01297;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01297;src:url('chunks/assets/font_57a7d7c6401454698e9cdade.woff2')format("woff");}.ff9_c01297{font-family:ff9_c01297;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01297;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ffa_c01297{font-family:ffa_c01297;line-height:1.219238;font-style: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;}
.ls2_c01297{letter-spacing:-6.000000px;}
.ls3_c01297{letter-spacing:-3.000000px;}
.ls1_c01297{letter-spacing:0.000000px;}
.ls4_c01297{letter-spacing:3.000000px;}
.ls0_c01297{letter-spacing:10.188000px;}
.ls5_c01297{letter-spacing:12.000000px;}
.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:-53.430000px;}
.ws6_c01297{word-spacing:-45.000000px;}
.ws5_c01297{word-spacing:-20.352000px;}
.ws2_c01297{word-spacing:-19.812000px;}
.ws4_c01297{word-spacing:-14.352000px;}
.ws1_c01297{word-spacing:-13.737000px;}
.ws3_c01297{word-spacing:-11.352000px;}
.ws7_c01297{word-spacing:0.000000px;}
._43_c01297{margin-left:-70.293000px;}
._2e_c01297{margin-left:-68.328000px;}
._33_c01297{margin-left:-56.658000px;}
._3d_c01297{margin-left:-42.885000px;}
._35_c01297{margin-left:-34.734000px;}
._18_c01297{margin-left:-28.548000px;}
._28_c01297{margin-left:-25.818000px;}
._1d_c01297{margin-left:-23.391000px;}
._15_c01297{margin-left:-21.672000px;}
._34_c01297{margin-left:-19.224000px;}
._1e_c01297{margin-left:-16.995000px;}
._42_c01297{margin-left:-15.840000px;}
._30_c01297{margin-left:-14.703000px;}
._19_c01297{margin-left:-12.870000px;}
._17_c01297{margin-left:-11.076000px;}
._f_c01297{margin-left:-8.697000px;}
._13_c01297{margin-left:-7.254000px;}
._0_c01297{margin-left:-6.162000px;}
._4_c01297{margin-left:-4.680000px;}
._1_c01297{margin-left:-3.342000px;}
._3_c01297{margin-left:-1.506000px;}
._b_c01297{width:1.062000px;}
._a_c01297{width:2.376000px;}
._5_c01297{width:4.161000px;}
._8_c01297{width:5.358000px;}
._7_c01297{width:6.612000px;}
._6_c01297{width:8.094000px;}
._11_c01297{width:9.630000px;}
._c_c01297{width:10.659000px;}
._24_c01297{width:12.417000px;}
._12_c01297{width:13.464000px;}
._10_c01297{width:14.610000px;}
._9_c01297{width:15.990000px;}
._22_c01297{width:17.466000px;}
._d_c01297{width:18.468000px;}
._2b_c01297{width:22.059000px;}
._25_c01297{width:24.627000px;}
._e_c01297{width:25.878000px;}
._36_c01297{width:27.360000px;}
._2a_c01297{width:28.938000px;}
._37_c01297{width:30.192000px;}
._38_c01297{width:32.400000px;}
._1c_c01297{width:33.771000px;}
._16_c01297{width:36.714000px;}
._46_c01297{width:40.824000px;}
._31_c01297{width:42.336000px;}
._1b_c01297{width:45.819000px;}
._3c_c01297{width:47.880000px;}
._45_c01297{width:49.101000px;}
._2d_c01297{width:56.565000px;}
._3f_c01297{width:58.452000px;}
._20_c01297{width:63.414000px;}
._27_c01297{width:66.876000px;}
._32_c01297{width:68.199000px;}
._39_c01297{width:71.439000px;}
._2_c01297{width:73.008000px;}
._4a_c01297{width:78.534000px;}
._3b_c01297{width:88.536000px;}
._2c_c01297{width:91.998000px;}
._49_c01297{width:140.382000px;}
._1a_c01297{width:165.507000px;}
._47_c01297{width:187.245000px;}
._4b_c01297{width:190.620000px;}
._21_c01297{width:205.011000px;}
._1f_c01297{width:208.350000px;}
._3e_c01297{width:209.736000px;}
._3a_c01297{width:217.455000px;}
._26_c01297{width:219.249000px;}
._2f_c01297{width:264.030000px;}
._48_c01297{width:276.861000px;}
._4c_c01297{width:295.071000px;}
._41_c01297{width:304.143000px;}
._40_c01297{width:325.161000px;}
._14_c01297{width:404.046000px;}
._29_c01297{width:441.324000px;}
._44_c01297{width:472.314000px;}
._23_c01297{width:527.028000px;}
.fc2_c01297{color:transparent;}
.fc1_c01297{color:rgb(128,128,128);}
.fc0_c01297{color:rgb(0,0,0);}
.fs6_c01297{font-size:45.000000px;}
.fs7_c01297{font-size:48.000000px;}
.fs1_c01297{font-size:57.000000px;}
.fs3_c01297{font-size:63.000000px;}
.fs5_c01297{font-size:66.000000px;}
.fs4_c01297{font-size:69.000000px;}
.fs2_c01297{font-size:72.000000px;}
.fs0_c01297{font-size:78.000000px;}
.y0_c01297{bottom:0.000000px;}
.y16_c01297{bottom:3.105000px;}
.y15_c01297{bottom:7.228357px;}
.y14_c01297{bottom:76.980000px;}
.y13_c01297{bottom:102.930000px;}
.y12_c01297{bottom:154.530000px;}
.y11_c01297{bottom:178.530000px;}
.y10_c01297{bottom:202.830000px;}
.yf_c01297{bottom:229.230000px;}
.ye_c01297{bottom:253.530000px;}
.yd_c01297{bottom:271.080000px;}
.yc_c01297{bottom:376.680000px;}
.yb_c01297{bottom:400.980000px;}
.ya_c01297{bottom:423.330000px;}
.y9_c01297{bottom:452.880000px;}
.y8_c01297{bottom:471.930000px;}
.y7_c01297{bottom:502.230000px;}
.y6_c01297{bottom:521.880000px;}
.y5_c01297{bottom:576.480000px;}
.y4_c01297{bottom:598.830000px;}
.y3_c01297{bottom:623.130000px;}
.y2_c01297{bottom:673.380000px;}
.y1_c01297{bottom:698.730000px;}
.h8_c01297{height:13.200074px;}
.h9_c01297{height:43.804688px;}
.h5_c01297{height:73.623000px;}
.h6_c01297{height:83.563477px;}
.h4_c01297{height:84.552000px;}
.h3_c01297{height:91.160156px;}
.h7_c01297{height:91.291992px;}
.h2_c01297{height:98.756836px;}
.h1_c01297{height:783.000000px;}
.h0_c01297{height:783.300000px;}
.w2_c01297{width:104.875500px;}
.w0_c01297{width:533.775000px;}
.w1_c01297{width:534.000000px;}
.x0_c01297{left:0.000000px;}
.x2_c01297{left:36.450000px;}
.x3_c01297{left:38.550000px;}
.x1_c01297{left:52.200000px;}
.x10_c01297{left:84.750000px;}
.x4_c01297{left:114.750000px;}
.x5_c01297{left:116.850000px;}
.x6_c01297{left:118.050000px;}
.x8_c01297{left:119.700000px;}
.x9_c01297{left:121.200000px;}
.xc_c01297{left:123.150000px;}
.xd_c01297{left:125.250000px;}
.xe_c01297{left:126.450000px;}
.x11_c01297{left:129.900000px;}
.xf_c01297{left:182.550000px;}
.xb_c01297{left:187.200000px;}
.x7_c01297{left:202.800000px;}
.x12_c01297{left:218.701767px;}
.xa_c01297{left:292.500000px;}
@media print{
.v0_c01297{vertical-align:0.000000pt;}
.ls2_c01297{letter-spacing:-5.333333pt;}
.ls3_c01297{letter-spacing:-2.666667pt;}
.ls1_c01297{letter-spacing:0.000000pt;}
.ls4_c01297{letter-spacing:2.666667pt;}
.ls0_c01297{letter-spacing:9.056000pt;}
.ls5_c01297{letter-spacing:10.666667pt;}
.ws0_c01297{word-spacing:-47.493333pt;}
.ws6_c01297{word-spacing:-40.000000pt;}
.ws5_c01297{word-spacing:-18.090667pt;}
.ws2_c01297{word-spacing:-17.610667pt;}
.ws4_c01297{word-spacing:-12.757333pt;}
.ws1_c01297{word-spacing:-12.210667pt;}
.ws3_c01297{word-spacing:-10.090667pt;}
.ws7_c01297{word-spacing:0.000000pt;}
._43_c01297{margin-left:-62.482667pt;}
._2e_c01297{margin-left:-60.736000pt;}
._33_c01297{margin-left:-50.362667pt;}
._3d_c01297{margin-left:-38.120000pt;}
._35_c01297{margin-left:-30.874667pt;}
._18_c01297{margin-left:-25.376000pt;}
._28_c01297{margin-left:-22.949333pt;}
._1d_c01297{margin-left:-20.792000pt;}
._15_c01297{margin-left:-19.264000pt;}
._34_c01297{margin-left:-17.088000pt;}
._1e_c01297{margin-left:-15.106667pt;}
._42_c01297{margin-left:-14.080000pt;}
._30_c01297{margin-left:-13.069333pt;}
._19_c01297{margin-left:-11.440000pt;}
._17_c01297{margin-left:-9.845333pt;}
._f_c01297{margin-left:-7.730667pt;}
._13_c01297{margin-left:-6.448000pt;}
._0_c01297{margin-left:-5.477333pt;}
._4_c01297{margin-left:-4.160000pt;}
._1_c01297{margin-left:-2.970667pt;}
._3_c01297{margin-left:-1.338667pt;}
._b_c01297{width:0.944000pt;}
._a_c01297{width:2.112000pt;}
._5_c01297{width:3.698667pt;}
._8_c01297{width:4.762667pt;}
._7_c01297{width:5.877333pt;}
._6_c01297{width:7.194667pt;}
._11_c01297{width:8.560000pt;}
._c_c01297{width:9.474667pt;}
._24_c01297{width:11.037333pt;}
._12_c01297{width:11.968000pt;}
._10_c01297{width:12.986667pt;}
._9_c01297{width:14.213333pt;}
._22_c01297{width:15.525333pt;}
._d_c01297{width:16.416000pt;}
._2b_c01297{width:19.608000pt;}
._25_c01297{width:21.890667pt;}
._e_c01297{width:23.002667pt;}
._36_c01297{width:24.320000pt;}
._2a_c01297{width:25.722667pt;}
._37_c01297{width:26.837333pt;}
._38_c01297{width:28.800000pt;}
._1c_c01297{width:30.018667pt;}
._16_c01297{width:32.634667pt;}
._46_c01297{width:36.288000pt;}
._31_c01297{width:37.632000pt;}
._1b_c01297{width:40.728000pt;}
._3c_c01297{width:42.560000pt;}
._45_c01297{width:43.645333pt;}
._2d_c01297{width:50.280000pt;}
._3f_c01297{width:51.957333pt;}
._20_c01297{width:56.368000pt;}
._27_c01297{width:59.445333pt;}
._32_c01297{width:60.621333pt;}
._39_c01297{width:63.501333pt;}
._2_c01297{width:64.896000pt;}
._4a_c01297{width:69.808000pt;}
._3b_c01297{width:78.698667pt;}
._2c_c01297{width:81.776000pt;}
._49_c01297{width:124.784000pt;}
._1a_c01297{width:147.117333pt;}
._47_c01297{width:166.440000pt;}
._4b_c01297{width:169.440000pt;}
._21_c01297{width:182.232000pt;}
._1f_c01297{width:185.200000pt;}
._3e_c01297{width:186.432000pt;}
._3a_c01297{width:193.293333pt;}
._26_c01297{width:194.888000pt;}
._2f_c01297{width:234.693333pt;}
._48_c01297{width:246.098667pt;}
._4c_c01297{width:262.285333pt;}
._41_c01297{width:270.349333pt;}
._40_c01297{width:289.032000pt;}
._14_c01297{width:359.152000pt;}
._29_c01297{width:392.288000pt;}
._44_c01297{width:419.834667pt;}
._23_c01297{width:468.469333pt;}
.fs6_c01297{font-size:40.000000pt;}
.fs7_c01297{font-size:42.666667pt;}
.fs1_c01297{font-size:50.666667pt;}
.fs3_c01297{font-size:56.000000pt;}
.fs5_c01297{font-size:58.666667pt;}
.fs4_c01297{font-size:61.333333pt;}
.fs2_c01297{font-size:64.000000pt;}
.fs0_c01297{font-size:69.333333pt;}
.y0_c01297{bottom:0.000000pt;}
.y16_c01297{bottom:2.760000pt;}
.y15_c01297{bottom:6.425206pt;}
.y14_c01297{bottom:68.426667pt;}
.y13_c01297{bottom:91.493333pt;}
.y12_c01297{bottom:137.360000pt;}
.y11_c01297{bottom:158.693333pt;}
.y10_c01297{bottom:180.293333pt;}
.yf_c01297{bottom:203.760000pt;}
.ye_c01297{bottom:225.360000pt;}
.yd_c01297{bottom:240.960000pt;}
.yc_c01297{bottom:334.826667pt;}
.yb_c01297{bottom:356.426667pt;}
.ya_c01297{bottom:376.293333pt;}
.y9_c01297{bottom:402.560000pt;}
.y8_c01297{bottom:419.493333pt;}
.y7_c01297{bottom:446.426667pt;}
.y6_c01297{bottom:463.893333pt;}
.y5_c01297{bottom:512.426667pt;}
.y4_c01297{bottom:532.293333pt;}
.y3_c01297{bottom:553.893333pt;}
.y2_c01297{bottom:598.560000pt;}
.y1_c01297{bottom:621.093333pt;}
.h8_c01297{height:11.733399pt;}
.h9_c01297{height:38.937500pt;}
.h5_c01297{height:65.442667pt;}
.h6_c01297{height:74.278646pt;}
.h4_c01297{height:75.157333pt;}
.h3_c01297{height:81.031250pt;}
.h7_c01297{height:81.148438pt;}
.h2_c01297{height:87.783854pt;}
.h1_c01297{height:696.000000pt;}
.h0_c01297{height:696.266667pt;}
.w2_c01297{width:93.222667pt;}
.w0_c01297{width:474.466667pt;}
.w1_c01297{width:474.666667pt;}
.x0_c01297{left:0.000000pt;}
.x2_c01297{left:32.400000pt;}
.x3_c01297{left:34.266667pt;}
.x1_c01297{left:46.400000pt;}
.x10_c01297{left:75.333333pt;}
.x4_c01297{left:102.000000pt;}
.x5_c01297{left:103.866667pt;}
.x6_c01297{left:104.933333pt;}
.x8_c01297{left:106.400000pt;}
.x9_c01297{left:107.733333pt;}
.xc_c01297{left:109.466667pt;}
.xd_c01297{left:111.333333pt;}
.xe_c01297{left:112.400000pt;}
.x11_c01297{left:115.466667pt;}
.xf_c01297{left:162.266667pt;}
.xb_c01297{left:166.400000pt;}
.x7_c01297{left:180.266667pt;}
.x12_c01297{left:194.401571pt;}
.xa_c01297{left:260.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_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_62fb5151c9575137e52214b4.woff2')format("woff");}.ff1_c01298{font-family:ff1_c01298;line-height:1.480469;font-style:normal;font-weight:normal;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_3b2e480bebd94f585231e5d7.woff2')format("woff");}.ff2_c01298{font-family:ff2_c01298;line-height:1.480469;font-style:normal;font-weight:normal;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_46728b7ea86445eeacf2761f.woff2')format("woff");}.ff3_c01298{font-family:ff3_c01298;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01298;src:url('chunks/assets/font_e2f0a374fdd9f8e538357c6d.woff2')format("woff");}.ff4_c01298{font-family:ff4_c01298;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01298;src:url('chunks/assets/font_0bca48b51e4050dd9dc12c01.woff2')format("woff");}.ff5_c01298{font-family:ff5_c01298;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01298;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01298{font-family:ff6_c01298;line-height:1.219238;font-style: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;}
.ls6_c01298{letter-spacing:-3.000000px;}
.ls4_c01298{letter-spacing:0.000000px;}
.ls5_c01298{letter-spacing:3.000000px;}
.ls2_c01298{letter-spacing:3.417000px;}
.ls7_c01298{letter-spacing:6.000000px;}
.ls0_c01298{letter-spacing:9.237000px;}
.ls1_c01298{letter-spacing:10.785000px;}
.ls3_c01298{letter-spacing:21.000000px;}
.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;}
}
.ws1_c01298{word-spacing:-33.930000px;}
.ws0_c01298{word-spacing:-27.144000px;}
.ws2_c01298{word-spacing:-20.967000px;}
.ws3_c01298{word-spacing:-14.352000px;}
.ws4_c01298{word-spacing:0.000000px;}
._0_c01298{margin-left:-21.054000px;}
._f_c01298{margin-left:-19.488000px;}
._12_c01298{margin-left:-16.806600px;}
._1_c01298{margin-left:-15.486000px;}
._7_c01298{margin-left:-14.268000px;}
._19_c01298{margin-left:-12.192000px;}
._c_c01298{margin-left:-10.962000px;}
._6_c01298{margin-left:-9.570000px;}
._b_c01298{margin-left:-7.656000px;}
._2_c01298{margin-left:-6.264000px;}
._11_c01298{margin-left:-4.872000px;}
._d_c01298{margin-left:-3.828000px;}
._10_c01298{margin-left:-2.697000px;}
._e_c01298{margin-left:-1.653000px;}
._16_c01298{width:1.092000px;}
._15_c01298{width:2.508000px;}
._17_c01298{width:4.188000px;}
._3_c01298{width:5.916000px;}
._4_c01298{width:7.308000px;}
._5_c01298{width:8.700000px;}
._13_c01298{width:11.232000px;}
._1a_c01298{width:12.450000px;}
._18_c01298{width:14.280000px;}
._a_c01298{width:16.095000px;}
._9_c01298{width:17.661000px;}
._1b_c01298{width:38.556000px;}
._8_c01298{width:70.470000px;}
._1c_c01298{width:315.078000px;}
._14_c01298{width:515.448000px;}
.fc2_c01298{color:transparent;}
.fc1_c01298{color:rgb(128,128,128);}
.fc0_c01298{color:rgb(0,0,0);}
.fs7_c01298{font-size:48.000000px;}
.fs6_c01298{font-size:63.000000px;}
.fs1_c01298{font-size:69.600000px;}
.fs2_c01298{font-size:72.000000px;}
.fs4_c01298{font-size:75.000000px;}
.fs5_c01298{font-size:81.000000px;}
.fs0_c01298{font-size:87.000000px;}
.fs3_c01298{font-size:210.000000px;}
.y0_c01298{bottom:0.000000px;}
.y1d_c01298{bottom:3.105000px;}
.y1c_c01298{bottom:7.228357px;}
.y1b_c01298{bottom:59.130000px;}
.y1a_c01298{bottom:84.480000px;}
.y19_c01298{bottom:109.380000px;}
.y18_c01298{bottom:133.080000px;}
.y15_c01298{bottom:159.480000px;}
.y17_c01298{bottom:160.380000px;}
.y16_c01298{bottom:184.980000px;}
.y14_c01298{bottom:209.580000px;}
.y13_c01298{bottom:234.930000px;}
.y12_c01298{bottom:259.530000px;}
.y11_c01298{bottom:284.130000px;}
.y10_c01298{bottom:309.180000px;}
.yf_c01298{bottom:333.780000px;}
.ye_c01298{bottom:356.730000px;}
.yd_c01298{bottom:379.980000px;}
.yc_c01298{bottom:403.380000px;}
.yb_c01298{bottom:427.980000px;}
.ya_c01298{bottom:451.530000px;}
.y9_c01298{bottom:476.580000px;}
.y8_c01298{bottom:501.480000px;}
.y7_c01298{bottom:525.480000px;}
.y6_c01298{bottom:550.230000px;}
.y5_c01298{bottom:574.830000px;}
.y4_c01298{bottom:599.730000px;}
.y3_c01298{bottom:666.930000px;}
.y2_c01298{bottom:693.930000px;}
.y1_c01298{bottom:721.980000px;}
.h8_c01298{height:13.200074px;}
.h9_c01298{height:43.804688px;}
.h6_c01298{height:73.608398px;}
.h4_c01298{height:91.160156px;}
.h7_c01298{height:94.803223px;}
.h2_c01298{height:101.825684px;}
.h3_c01298{height:110.151855px;}
.h5_c01298{height:211.640625px;}
.h1_c01298{height:796.500000px;}
.h0_c01298{height:796.800000px;}
.w2_c01298{width:104.875500px;}
.w1_c01298{width:547.500000px;}
.w0_c01298{width:547.800000px;}
.x0_c01298{left:0.000000px;}
.xa_c01298{left:24.000000px;}
.x8_c01298{left:26.700000px;}
.x9_c01298{left:28.050000px;}
.x7_c01298{left:30.000000px;}
.x1_c01298{left:33.000000px;}
.xb_c01298{left:38.700000px;}
.x2_c01298{left:61.200000px;}
.x3_c01298{left:141.000000px;}
.x6_c01298{left:149.850000px;}
.x5_c01298{left:151.200000px;}
.x4_c01298{left:152.850000px;}
.xd_c01298{left:225.714249px;}
.xc_c01298{left:235.650000px;}
@media print{
.v0_c01298{vertical-align:0.000000pt;}
.ls6_c01298{letter-spacing:-2.666667pt;}
.ls4_c01298{letter-spacing:0.000000pt;}
.ls5_c01298{letter-spacing:2.666667pt;}
.ls2_c01298{letter-spacing:3.037333pt;}
.ls7_c01298{letter-spacing:5.333333pt;}
.ls0_c01298{letter-spacing:8.210667pt;}
.ls1_c01298{letter-spacing:9.586667pt;}
.ls3_c01298{letter-spacing:18.666667pt;}
.ws1_c01298{word-spacing:-30.160000pt;}
.ws0_c01298{word-spacing:-24.128000pt;}
.ws2_c01298{word-spacing:-18.637333pt;}
.ws3_c01298{word-spacing:-12.757333pt;}
.ws4_c01298{word-spacing:0.000000pt;}
._0_c01298{margin-left:-18.714667pt;}
._f_c01298{margin-left:-17.322667pt;}
._12_c01298{margin-left:-14.939200pt;}
._1_c01298{margin-left:-13.765333pt;}
._7_c01298{margin-left:-12.682667pt;}
._19_c01298{margin-left:-10.837333pt;}
._c_c01298{margin-left:-9.744000pt;}
._6_c01298{margin-left:-8.506667pt;}
._b_c01298{margin-left:-6.805333pt;}
._2_c01298{margin-left:-5.568000pt;}
._11_c01298{margin-left:-4.330667pt;}
._d_c01298{margin-left:-3.402667pt;}
._10_c01298{margin-left:-2.397333pt;}
._e_c01298{margin-left:-1.469333pt;}
._16_c01298{width:0.970667pt;}
._15_c01298{width:2.229333pt;}
._17_c01298{width:3.722667pt;}
._3_c01298{width:5.258667pt;}
._4_c01298{width:6.496000pt;}
._5_c01298{width:7.733333pt;}
._13_c01298{width:9.984000pt;}
._1a_c01298{width:11.066667pt;}
._18_c01298{width:12.693333pt;}
._a_c01298{width:14.306667pt;}
._9_c01298{width:15.698667pt;}
._1b_c01298{width:34.272000pt;}
._8_c01298{width:62.640000pt;}
._1c_c01298{width:280.069333pt;}
._14_c01298{width:458.176000pt;}
.fs7_c01298{font-size:42.666667pt;}
.fs6_c01298{font-size:56.000000pt;}
.fs1_c01298{font-size:61.866667pt;}
.fs2_c01298{font-size:64.000000pt;}
.fs4_c01298{font-size:66.666667pt;}
.fs5_c01298{font-size:72.000000pt;}
.fs0_c01298{font-size:77.333333pt;}
.fs3_c01298{font-size:186.666667pt;}
.y0_c01298{bottom:0.000000pt;}
.y1d_c01298{bottom:2.760000pt;}
.y1c_c01298{bottom:6.425206pt;}
.y1b_c01298{bottom:52.560000pt;}
.y1a_c01298{bottom:75.093333pt;}
.y19_c01298{bottom:97.226667pt;}
.y18_c01298{bottom:118.293333pt;}
.y15_c01298{bottom:141.760000pt;}
.y17_c01298{bottom:142.560000pt;}
.y16_c01298{bottom:164.426667pt;}
.y14_c01298{bottom:186.293333pt;}
.y13_c01298{bottom:208.826667pt;}
.y12_c01298{bottom:230.693333pt;}
.y11_c01298{bottom:252.560000pt;}
.y10_c01298{bottom:274.826667pt;}
.yf_c01298{bottom:296.693333pt;}
.ye_c01298{bottom:317.093333pt;}
.yd_c01298{bottom:337.760000pt;}
.yc_c01298{bottom:358.560000pt;}
.yb_c01298{bottom:380.426667pt;}
.ya_c01298{bottom:401.360000pt;}
.y9_c01298{bottom:423.626667pt;}
.y8_c01298{bottom:445.760000pt;}
.y7_c01298{bottom:467.093333pt;}
.y6_c01298{bottom:489.093333pt;}
.y5_c01298{bottom:510.960000pt;}
.y4_c01298{bottom:533.093333pt;}
.y3_c01298{bottom:592.826667pt;}
.y2_c01298{bottom:616.826667pt;}
.y1_c01298{bottom:641.760000pt;}
.h8_c01298{height:11.733399pt;}
.h9_c01298{height:38.937500pt;}
.h6_c01298{height:65.429688pt;}
.h4_c01298{height:81.031250pt;}
.h7_c01298{height:84.269531pt;}
.h2_c01298{height:90.511719pt;}
.h3_c01298{height:97.912760pt;}
.h5_c01298{height:188.125000pt;}
.h1_c01298{height:708.000000pt;}
.h0_c01298{height:708.266667pt;}
.w2_c01298{width:93.222667pt;}
.w1_c01298{width:486.666667pt;}
.w0_c01298{width:486.933333pt;}
.x0_c01298{left:0.000000pt;}
.xa_c01298{left:21.333333pt;}
.x8_c01298{left:23.733333pt;}
.x9_c01298{left:24.933333pt;}
.x7_c01298{left:26.666667pt;}
.x1_c01298{left:29.333333pt;}
.xb_c01298{left:34.400000pt;}
.x2_c01298{left:54.400000pt;}
.x3_c01298{left:125.333333pt;}
.x6_c01298{left:133.200000pt;}
.x5_c01298{left:134.400000pt;}
.x4_c01298{left:135.866667pt;}
.xd_c01298{left:200.634888pt;}
.xc_c01298{left:209.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9ede48eefb5b3b1d64923cb0.woff2')format("woff");}.ff1_c01299{font-family:ff1_c01299;line-height:1.284180;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01299{font-family:ff2_c01299;line-height:1.284668;font-style:normal;font-weight:normal;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_607a2a7ccdb16d3270dc5397.woff2')format("woff");}.ff3_c01299{font-family:ff3_c01299;line-height:1.568848;font-style:normal;font-weight:normal;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_98f6b0d02802cce7770aa265.woff2')format("woff");}.ff4_c01299{font-family:ff4_c01299;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01299;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01299{font-family:ff5_c01299;line-height:1.219238;font-style: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;}
.ls2_c01299{letter-spacing:-9.000000px;}
.ls1_c01299{letter-spacing:0.000000px;}
.ls0_c01299{letter-spacing:3.000000px;}
.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;}
._12_c01299{margin-left:-18.108000px;}
._5_c01299{margin-left:-14.280000px;}
._13_c01299{margin-left:-12.876000px;}
._e_c01299{margin-left:-10.932000px;}
._7_c01299{margin-left:-8.568000px;}
._3_c01299{margin-left:-7.560000px;}
._9_c01299{margin-left:-5.352000px;}
._8_c01299{margin-left:-3.312000px;}
._a_c01299{margin-left:-2.088000px;}
._c_c01299{margin-left:-1.032000px;}
._6_c01299{width:1.428000px;}
._1_c01299{width:2.688000px;}
._2_c01299{width:4.536000px;}
._4_c01299{width:5.544000px;}
._0_c01299{width:7.476000px;}
._b_c01299{width:9.360000px;}
._11_c01299{width:10.620000px;}
._f_c01299{width:12.168000px;}
._d_c01299{width:14.064000px;}
._10_c01299{width:18.000000px;}
.fc2_c01299{color:transparent;}
.fc1_c01299{color:rgb(128,128,128);}
.fc0_c01299{color:rgb(0,0,0);}
.fs2_c01299{font-size:48.000000px;}
.fs1_c01299{font-size:72.000000px;}
.fs0_c01299{font-size:84.000000px;}
.y0_c01299{bottom:0.000000px;}
.y1f_c01299{bottom:3.105000px;}
.y1e_c01299{bottom:7.228369px;}
.y1d_c01299{bottom:53.220000px;}
.y1c_c01299{bottom:80.370000px;}
.y1b_c01299{bottom:106.320000px;}
.y1a_c01299{bottom:131.220000px;}
.y19_c01299{bottom:156.270000px;}
.y18_c01299{bottom:180.870000px;}
.y17_c01299{bottom:206.220000px;}
.y16_c01299{bottom:231.420000px;}
.y15_c01299{bottom:257.820000px;}
.y14_c01299{bottom:281.070000px;}
.y13_c01299{bottom:306.120000px;}
.y12_c01299{bottom:330.420000px;}
.y11_c01299{bottom:355.770000px;}
.y10_c01299{bottom:378.570000px;}
.yf_c01299{bottom:402.270000px;}
.ye_c01299{bottom:428.220000px;}
.yd_c01299{bottom:452.820000px;}
.yc_c01299{bottom:473.520000px;}
.yb_c01299{bottom:498.870000px;}
.ya_c01299{bottom:523.020000px;}
.y9_c01299{bottom:548.370000px;}
.y8_c01299{bottom:572.670000px;}
.y7_c01299{bottom:596.970000px;}
.y6_c01299{bottom:621.570000px;}
.y5_c01299{bottom:646.020000px;}
.y4_c01299{bottom:670.620000px;}
.y3_c01299{bottom:694.920000px;}
.y2_c01299{bottom:718.770000px;}
.y1_c01299{bottom:744.420000px;}
.h5_c01299{height:13.200073px;}
.h6_c01299{height:43.804688px;}
.h4_c01299{height:76.824000px;}
.h2_c01299{height:82.441406px;}
.h3_c01299{height:91.160156px;}
.h1_c01299{height:797.250000px;}
.h0_c01299{height:797.550000px;}
.w2_c01299{width:104.875500px;}
.w0_c01299{width:527.850000px;}
.w1_c01299{width:528.000000px;}
.x0_c01299{left:0.000000px;}
.x2_c01299{left:108.300000px;}
.x3_c01299{left:110.250000px;}
.x4_c01299{left:111.300000px;}
.x5_c01299{left:112.650000px;}
.x6_c01299{left:113.700000px;}
.x7_c01299{left:114.750000px;}
.x1_c01299{left:215.100000px;}
.x8_c01299{left:404.550000px;}
@media print{
.v0_c01299{vertical-align:0.000000pt;}
.ls2_c01299{letter-spacing:-8.000000pt;}
.ls1_c01299{letter-spacing:0.000000pt;}
.ls0_c01299{letter-spacing:2.666667pt;}
.ws0_c01299{word-spacing:0.000000pt;}
._12_c01299{margin-left:-16.096000pt;}
._5_c01299{margin-left:-12.693333pt;}
._13_c01299{margin-left:-11.445333pt;}
._e_c01299{margin-left:-9.717333pt;}
._7_c01299{margin-left:-7.616000pt;}
._3_c01299{margin-left:-6.720000pt;}
._9_c01299{margin-left:-4.757333pt;}
._8_c01299{margin-left:-2.944000pt;}
._a_c01299{margin-left:-1.856000pt;}
._c_c01299{margin-left:-0.917333pt;}
._6_c01299{width:1.269333pt;}
._1_c01299{width:2.389333pt;}
._2_c01299{width:4.032000pt;}
._4_c01299{width:4.928000pt;}
._0_c01299{width:6.645333pt;}
._b_c01299{width:8.320000pt;}
._11_c01299{width:9.440000pt;}
._f_c01299{width:10.816000pt;}
._d_c01299{width:12.501333pt;}
._10_c01299{width:16.000000pt;}
.fs2_c01299{font-size:42.666667pt;}
.fs1_c01299{font-size:64.000000pt;}
.fs0_c01299{font-size:74.666667pt;}
.y0_c01299{bottom:0.000000pt;}
.y1f_c01299{bottom:2.760000pt;}
.y1e_c01299{bottom:6.425217pt;}
.y1d_c01299{bottom:47.306667pt;}
.y1c_c01299{bottom:71.440000pt;}
.y1b_c01299{bottom:94.506667pt;}
.y1a_c01299{bottom:116.640000pt;}
.y19_c01299{bottom:138.906667pt;}
.y18_c01299{bottom:160.773333pt;}
.y17_c01299{bottom:183.306667pt;}
.y16_c01299{bottom:205.706667pt;}
.y15_c01299{bottom:229.173333pt;}
.y14_c01299{bottom:249.840000pt;}
.y13_c01299{bottom:272.106667pt;}
.y12_c01299{bottom:293.706667pt;}
.y11_c01299{bottom:316.240000pt;}
.y10_c01299{bottom:336.506667pt;}
.yf_c01299{bottom:357.573333pt;}
.ye_c01299{bottom:380.640000pt;}
.yd_c01299{bottom:402.506667pt;}
.yc_c01299{bottom:420.906667pt;}
.yb_c01299{bottom:443.440000pt;}
.ya_c01299{bottom:464.906667pt;}
.y9_c01299{bottom:487.440000pt;}
.y8_c01299{bottom:509.040000pt;}
.y7_c01299{bottom:530.640000pt;}
.y6_c01299{bottom:552.506667pt;}
.y5_c01299{bottom:574.240000pt;}
.y4_c01299{bottom:596.106667pt;}
.y3_c01299{bottom:617.706667pt;}
.y2_c01299{bottom:638.906667pt;}
.y1_c01299{bottom:661.706667pt;}
.h5_c01299{height:11.733399pt;}
.h6_c01299{height:38.937500pt;}
.h4_c01299{height:68.288000pt;}
.h2_c01299{height:73.281250pt;}
.h3_c01299{height:81.031250pt;}
.h1_c01299{height:708.666667pt;}
.h0_c01299{height:708.933333pt;}
.w2_c01299{width:93.222667pt;}
.w0_c01299{width:469.200000pt;}
.w1_c01299{width:469.333333pt;}
.x0_c01299{left:0.000000pt;}
.x2_c01299{left:96.266667pt;}
.x3_c01299{left:98.000000pt;}
.x4_c01299{left:98.933333pt;}
.x5_c01299{left:100.133333pt;}
.x6_c01299{left:101.066667pt;}
.x7_c01299{left:102.000000pt;}
.x1_c01299{left:191.200000pt;}
.x8_c01299{left:359.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0c2da88365448e911f4a011d.woff2')format("woff");}.ff1_c01300{font-family:ff1_c01300;line-height:1.480469;font-style:normal;font-weight:normal;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_cde2aba5ffef1df230458fef.woff2')format("woff");}.ff2_c01300{font-family:ff2_c01300;line-height:1.568848;font-style:normal;font-weight:normal;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_3183ad9494f0ff716ddd03fa.woff2')format("woff");}.ff3_c01300{font-family:ff3_c01300;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01300;src:url('chunks/assets/font_5a0b10e78920515f9db99980.woff2')format("woff");}.ff4_c01300{font-family:ff4_c01300;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01300;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01300{font-family:ff5_c01300;line-height:1.219238;font-style: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:-3.000000px;}
.ls3_c01300{letter-spacing:0.000000px;}
.ls0_c01300{letter-spacing:3.000000px;}
.ls2_c01300{letter-spacing:6.000000px;}
.sc__c01300{text-shadow:none;}
.sc0_c01300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01300{-webkit-text-stroke:0px transparent;}
.sc0_c01300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01300{word-spacing:-36.051000px;}
.ws0_c01300{word-spacing:-30.192000px;}
.ws2_c01300{word-spacing:-20.352000px;}
.ws3_c01300{word-spacing:0.000000px;}
._18_c01300{margin-left:-24.483000px;}
._1b_c01300{margin-left:-22.248000px;}
._1a_c01300{margin-left:-19.800000px;}
._11_c01300{margin-left:-17.280000px;}
._6_c01300{margin-left:-15.048000px;}
._17_c01300{margin-left:-13.461000px;}
._15_c01300{margin-left:-12.384000px;}
._1c_c01300{margin-left:-10.872000px;}
._16_c01300{margin-left:-9.792000px;}
._13_c01300{margin-left:-8.496000px;}
._10_c01300{margin-left:-7.419000px;}
._12_c01300{margin-left:-6.333000px;}
._7_c01300{margin-left:-4.968000px;}
._b_c01300{margin-left:-3.888000px;}
._e_c01300{margin-left:-2.664000px;}
._8_c01300{margin-left:-1.224000px;}
._a_c01300{width:1.080000px;}
._5_c01300{width:2.592000px;}
._c_c01300{width:3.672000px;}
._1_c01300{width:5.616000px;}
._9_c01300{width:7.344000px;}
._f_c01300{width:8.535000px;}
._2_c01300{width:9.720000px;}
._3_c01300{width:11.664000px;}
._d_c01300{width:14.256000px;}
._0_c01300{width:15.696000px;}
._1f_c01300{width:20.952000px;}
._1d_c01300{width:29.730000px;}
._14_c01300{width:110.448000px;}
._19_c01300{width:170.133000px;}
._4_c01300{width:244.056000px;}
._20_c01300{width:313.263000px;}
._1e_c01300{width:757.656000px;}
.fc2_c01300{color:transparent;}
.fc1_c01300{color:rgb(128,128,128);}
.fc0_c01300{color:rgb(0,0,0);}
.fs3_c01300{font-size:48.000000px;}
.fs1_c01300{font-size:57.000000px;}
.fs2_c01300{font-size:63.000000px;}
.fs0_c01300{font-size:72.000000px;}
.y0_c01300{bottom:0.000000px;}
.y1f_c01300{bottom:3.105000px;}
.y1e_c01300{bottom:7.228369px;}
.y1d_c01300{bottom:45.120000px;}
.y1c_c01300{bottom:70.770000px;}
.y1b_c01300{bottom:94.770000px;}
.y1a_c01300{bottom:120.420000px;}
.y19_c01300{bottom:145.020000px;}
.y18_c01300{bottom:169.320000px;}
.y17_c01300{bottom:195.420000px;}
.y16_c01300{bottom:219.420000px;}
.y15_c01300{bottom:244.320000px;}
.y14_c01300{bottom:268.920000px;}
.y13_c01300{bottom:294.570000px;}
.y12_c01300{bottom:318.270000px;}
.y11_c01300{bottom:342.870000px;}
.y10_c01300{bottom:366.120000px;}
.yf_c01300{bottom:388.470000px;}
.ye_c01300{bottom:412.020000px;}
.yd_c01300{bottom:437.670000px;}
.yc_c01300{bottom:461.670000px;}
.yb_c01300{bottom:489.720000px;}
.ya_c01300{bottom:511.020000px;}
.y9_c01300{bottom:535.170000px;}
.y8_c01300{bottom:563.520000px;}
.y7_c01300{bottom:584.820000px;}
.y6_c01300{bottom:609.420000px;}
.y5_c01300{bottom:633.120000px;}
.y4_c01300{bottom:657.420000px;}
.y3_c01300{bottom:682.470000px;}
.y2_c01300{bottom:707.370000px;}
.y1_c01300{bottom:732.720000px;}
.h4_c01300{height:13.200073px;}
.h5_c01300{height:43.804688px;}
.h3_c01300{height:79.765137px;}
.h2_c01300{height:91.160156px;}
.h1_c01300{height:778.500000px;}
.h0_c01300{height:778.650000px;}
.w2_c01300{width:104.875500px;}
.w0_c01300{width:537.600000px;}
.w1_c01300{width:537.750000px;}
.x0_c01300{left:0.000000px;}
.x7_c01300{left:31.800000px;}
.x2_c01300{left:33.150000px;}
.x3_c01300{left:34.800000px;}
.x4_c01300{left:36.150000px;}
.x5_c01300{left:37.800000px;}
.x6_c01300{left:42.600000px;}
.x1_c01300{left:141.300000px;}
.x9_c01300{left:220.614258px;}
.x8_c01300{left:228.450000px;}
@media print{
.v0_c01300{vertical-align:0.000000pt;}
.ls1_c01300{letter-spacing:-2.666667pt;}
.ls3_c01300{letter-spacing:0.000000pt;}
.ls0_c01300{letter-spacing:2.666667pt;}
.ls2_c01300{letter-spacing:5.333333pt;}
.ws1_c01300{word-spacing:-32.045333pt;}
.ws0_c01300{word-spacing:-26.837333pt;}
.ws2_c01300{word-spacing:-18.090667pt;}
.ws3_c01300{word-spacing:0.000000pt;}
._18_c01300{margin-left:-21.762667pt;}
._1b_c01300{margin-left:-19.776000pt;}
._1a_c01300{margin-left:-17.600000pt;}
._11_c01300{margin-left:-15.360000pt;}
._6_c01300{margin-left:-13.376000pt;}
._17_c01300{margin-left:-11.965333pt;}
._15_c01300{margin-left:-11.008000pt;}
._1c_c01300{margin-left:-9.664000pt;}
._16_c01300{margin-left:-8.704000pt;}
._13_c01300{margin-left:-7.552000pt;}
._10_c01300{margin-left:-6.594667pt;}
._12_c01300{margin-left:-5.629333pt;}
._7_c01300{margin-left:-4.416000pt;}
._b_c01300{margin-left:-3.456000pt;}
._e_c01300{margin-left:-2.368000pt;}
._8_c01300{margin-left:-1.088000pt;}
._a_c01300{width:0.960000pt;}
._5_c01300{width:2.304000pt;}
._c_c01300{width:3.264000pt;}
._1_c01300{width:4.992000pt;}
._9_c01300{width:6.528000pt;}
._f_c01300{width:7.586667pt;}
._2_c01300{width:8.640000pt;}
._3_c01300{width:10.368000pt;}
._d_c01300{width:12.672000pt;}
._0_c01300{width:13.952000pt;}
._1f_c01300{width:18.624000pt;}
._1d_c01300{width:26.426667pt;}
._14_c01300{width:98.176000pt;}
._19_c01300{width:151.229333pt;}
._4_c01300{width:216.938667pt;}
._20_c01300{width:278.456000pt;}
._1e_c01300{width:673.472000pt;}
.fs3_c01300{font-size:42.666667pt;}
.fs1_c01300{font-size:50.666667pt;}
.fs2_c01300{font-size:56.000000pt;}
.fs0_c01300{font-size:64.000000pt;}
.y0_c01300{bottom:0.000000pt;}
.y1f_c01300{bottom:2.760000pt;}
.y1e_c01300{bottom:6.425217pt;}
.y1d_c01300{bottom:40.106667pt;}
.y1c_c01300{bottom:62.906667pt;}
.y1b_c01300{bottom:84.240000pt;}
.y1a_c01300{bottom:107.040000pt;}
.y19_c01300{bottom:128.906667pt;}
.y18_c01300{bottom:150.506667pt;}
.y17_c01300{bottom:173.706667pt;}
.y16_c01300{bottom:195.040000pt;}
.y15_c01300{bottom:217.173333pt;}
.y14_c01300{bottom:239.040000pt;}
.y13_c01300{bottom:261.840000pt;}
.y12_c01300{bottom:282.906667pt;}
.y11_c01300{bottom:304.773333pt;}
.y10_c01300{bottom:325.440000pt;}
.yf_c01300{bottom:345.306667pt;}
.ye_c01300{bottom:366.240000pt;}
.yd_c01300{bottom:389.040000pt;}
.yc_c01300{bottom:410.373333pt;}
.yb_c01300{bottom:435.306667pt;}
.ya_c01300{bottom:454.240000pt;}
.y9_c01300{bottom:475.706667pt;}
.y8_c01300{bottom:500.906667pt;}
.y7_c01300{bottom:519.840000pt;}
.y6_c01300{bottom:541.706667pt;}
.y5_c01300{bottom:562.773333pt;}
.y4_c01300{bottom:584.373333pt;}
.y3_c01300{bottom:606.640000pt;}
.y2_c01300{bottom:628.773333pt;}
.y1_c01300{bottom:651.306667pt;}
.h4_c01300{height:11.733399pt;}
.h5_c01300{height:38.937500pt;}
.h3_c01300{height:70.902344pt;}
.h2_c01300{height:81.031250pt;}
.h1_c01300{height:692.000000pt;}
.h0_c01300{height:692.133333pt;}
.w2_c01300{width:93.222667pt;}
.w0_c01300{width:477.866667pt;}
.w1_c01300{width:478.000000pt;}
.x0_c01300{left:0.000000pt;}
.x7_c01300{left:28.266667pt;}
.x2_c01300{left:29.466667pt;}
.x3_c01300{left:30.933333pt;}
.x4_c01300{left:32.133333pt;}
.x5_c01300{left:33.600000pt;}
.x6_c01300{left:37.866667pt;}
.x1_c01300{left:125.600000pt;}
.x9_c01300{left:196.101563pt;}
.x8_c01300{left:203.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a480cd1c5e5561ddc3ea38b9.woff2')format("woff");}.ff1_c01301{font-family:ff1_c01301;line-height:1.480469;font-style:normal;font-weight:normal;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_01398e45b582cf7129fd0145.woff2')format("woff");}.ff2_c01301{font-family:ff2_c01301;line-height:1.480469;font-style:normal;font-weight:normal;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_0bc5cbc89d6b8eda89a6cb24.woff2')format("woff");}.ff3_c01301{font-family:ff3_c01301;line-height:1.568848;font-style:normal;font-weight:normal;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_ad9e6fe50691142a26a8a10a.woff2')format("woff");}.ff4_c01301{font-family:ff4_c01301;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01301;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01301{font-family:ff5_c01301;line-height:1.219238;font-style: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;}
.ls2_c01301{letter-spacing:-12.000000px;}
.ls3_c01301{letter-spacing:-3.000000px;}
.ls1_c01301{letter-spacing:0.000000px;}
.ls0_c01301{letter-spacing:3.000000px;}
.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;}
}
.ws1_c01301{word-spacing:-57.540000px;}
.ws2_c01301{word-spacing:-20.352000px;}
.ws3_c01301{word-spacing:-14.352000px;}
.ws0_c01301{word-spacing:-8.967000px;}
.ws4_c01301{word-spacing:-6.336000px;}
.ws5_c01301{word-spacing:0.000000px;}
._13_c01301{margin-left:-19.365000px;}
._12_c01301{margin-left:-18.180000px;}
._4_c01301{margin-left:-15.732000px;}
._14_c01301{margin-left:-13.827000px;}
._10_c01301{margin-left:-11.661000px;}
._9_c01301{margin-left:-10.230000px;}
._8_c01301{margin-left:-8.865000px;}
._1_c01301{margin-left:-6.843000px;}
._f_c01301{margin-left:-5.637000px;}
._7_c01301{margin-left:-4.599000px;}
._5_c01301{margin-left:-3.306000px;}
._6_c01301{margin-left:-1.305000px;}
._0_c01301{width:1.479000px;}
._a_c01301{width:2.667000px;}
._3_c01301{width:4.437000px;}
._b_c01301{width:5.610000px;}
._11_c01301{width:6.945000px;}
._e_c01301{width:7.983000px;}
._2_c01301{width:9.657000px;}
._d_c01301{width:11.346000px;}
._19_c01301{width:14.316000px;}
._1c_c01301{width:15.768000px;}
._1a_c01301{width:17.244000px;}
._18_c01301{width:18.648000px;}
._1d_c01301{width:21.324000px;}
._1b_c01301{width:24.012000px;}
._1e_c01301{width:25.476000px;}
._1f_c01301{width:28.500000px;}
._17_c01301{width:30.168000px;}
._16_c01301{width:32.481000px;}
._c_c01301{width:172.428000px;}
._15_c01301{width:283.623000px;}
.fc2_c01301{color:transparent;}
.fc1_c01301{color:rgb(128,128,128);}
.fc0_c01301{color:rgb(0,0,0);}
.fs4_c01301{font-size:36.000000px;}
.fs5_c01301{font-size:48.000000px;}
.fs3_c01301{font-size:72.000000px;}
.fs1_c01301{font-size:84.000000px;}
.fs0_c01301{font-size:87.000000px;}
.fs2_c01301{font-size:93.000000px;}
.y0_c01301{bottom:0.000000px;}
.y1e_c01301{bottom:3.105000px;}
.y1d_c01301{bottom:7.228355px;}
.y1c_c01301{bottom:82.635000px;}
.y1b_c01301{bottom:102.885000px;}
.y1a_c01301{bottom:128.235000px;}
.y19_c01301{bottom:153.435000px;}
.y18_c01301{bottom:178.185000px;}
.y17_c01301{bottom:204.435000px;}
.y16_c01301{bottom:239.985000px;}
.y15_c01301{bottom:256.035000px;}
.y14_c01301{bottom:278.685000px;}
.y13_c01301{bottom:304.035000px;}
.y12_c01301{bottom:327.735000px;}
.y11_c01301{bottom:352.335000px;}
.y10_c01301{bottom:376.635000px;}
.yf_c01301{bottom:400.485000px;}
.ye_c01301{bottom:424.785000px;}
.yd_c01301{bottom:449.235000px;}
.yc_c01301{bottom:472.035000px;}
.yb_c01301{bottom:496.485000px;}
.ya_c01301{bottom:521.085000px;}
.y9_c01301{bottom:546.285000px;}
.y8_c01301{bottom:570.735000px;}
.y7_c01301{bottom:595.335000px;}
.y6_c01301{bottom:620.535000px;}
.y5_c01301{bottom:644.985000px;}
.y4_c01301{bottom:670.185000px;}
.y3_c01301{bottom:694.185000px;}
.y2_c01301{bottom:718.785000px;}
.y1_c01301{bottom:744.435000px;}
.h7_c01301{height:13.200074px;}
.h6_c01301{height:38.412000px;}
.h8_c01301{height:43.804688px;}
.h5_c01301{height:84.269531px;}
.h4_c01301{height:91.160156px;}
.h2_c01301{height:101.825684px;}
.h3_c01301{height:117.748535px;}
.h0_c01301{height:795.675000px;}
.h1_c01301{height:795.750000px;}
.w2_c01301{width:104.875500px;}
.w1_c01301{width:531.000000px;}
.w0_c01301{width:531.075000px;}
.x0_c01301{left:0.000000px;}
.x9_c01301{left:34.800000px;}
.x8_c01301{left:37.350000px;}
.x2_c01301{left:109.350000px;}
.x3_c01301{left:110.400000px;}
.x4_c01301{left:111.750000px;}
.x5_c01301{left:113.100000px;}
.x6_c01301{left:115.050000px;}
.x7_c01301{left:116.400000px;}
.xb_c01301{left:117.750000px;}
.xc_c01301{left:118.800000px;}
.xd_c01301{left:120.450000px;}
.xa_c01301{left:142.050000px;}
.x1_c01301{left:217.350000px;}
@media print{
.v0_c01301{vertical-align:0.000000pt;}
.ls2_c01301{letter-spacing:-10.666667pt;}
.ls3_c01301{letter-spacing:-2.666667pt;}
.ls1_c01301{letter-spacing:0.000000pt;}
.ls0_c01301{letter-spacing:2.666667pt;}
.ws1_c01301{word-spacing:-51.146667pt;}
.ws2_c01301{word-spacing:-18.090667pt;}
.ws3_c01301{word-spacing:-12.757333pt;}
.ws0_c01301{word-spacing:-7.970667pt;}
.ws4_c01301{word-spacing:-5.632000pt;}
.ws5_c01301{word-spacing:0.000000pt;}
._13_c01301{margin-left:-17.213333pt;}
._12_c01301{margin-left:-16.160000pt;}
._4_c01301{margin-left:-13.984000pt;}
._14_c01301{margin-left:-12.290667pt;}
._10_c01301{margin-left:-10.365333pt;}
._9_c01301{margin-left:-9.093333pt;}
._8_c01301{margin-left:-7.880000pt;}
._1_c01301{margin-left:-6.082667pt;}
._f_c01301{margin-left:-5.010667pt;}
._7_c01301{margin-left:-4.088000pt;}
._5_c01301{margin-left:-2.938667pt;}
._6_c01301{margin-left:-1.160000pt;}
._0_c01301{width:1.314667pt;}
._a_c01301{width:2.370667pt;}
._3_c01301{width:3.944000pt;}
._b_c01301{width:4.986667pt;}
._11_c01301{width:6.173333pt;}
._e_c01301{width:7.096000pt;}
._2_c01301{width:8.584000pt;}
._d_c01301{width:10.085333pt;}
._19_c01301{width:12.725333pt;}
._1c_c01301{width:14.016000pt;}
._1a_c01301{width:15.328000pt;}
._18_c01301{width:16.576000pt;}
._1d_c01301{width:18.954667pt;}
._1b_c01301{width:21.344000pt;}
._1e_c01301{width:22.645333pt;}
._1f_c01301{width:25.333333pt;}
._17_c01301{width:26.816000pt;}
._16_c01301{width:28.872000pt;}
._c_c01301{width:153.269333pt;}
._15_c01301{width:252.109333pt;}
.fs4_c01301{font-size:32.000000pt;}
.fs5_c01301{font-size:42.666667pt;}
.fs3_c01301{font-size:64.000000pt;}
.fs1_c01301{font-size:74.666667pt;}
.fs0_c01301{font-size:77.333333pt;}
.fs2_c01301{font-size:82.666667pt;}
.y0_c01301{bottom:0.000000pt;}
.y1e_c01301{bottom:2.760000pt;}
.y1d_c01301{bottom:6.425204pt;}
.y1c_c01301{bottom:73.453333pt;}
.y1b_c01301{bottom:91.453333pt;}
.y1a_c01301{bottom:113.986667pt;}
.y19_c01301{bottom:136.386667pt;}
.y18_c01301{bottom:158.386667pt;}
.y17_c01301{bottom:181.720000pt;}
.y16_c01301{bottom:213.320000pt;}
.y15_c01301{bottom:227.586667pt;}
.y14_c01301{bottom:247.720000pt;}
.y13_c01301{bottom:270.253333pt;}
.y12_c01301{bottom:291.320000pt;}
.y11_c01301{bottom:313.186667pt;}
.y10_c01301{bottom:334.786667pt;}
.yf_c01301{bottom:355.986667pt;}
.ye_c01301{bottom:377.586667pt;}
.yd_c01301{bottom:399.320000pt;}
.yc_c01301{bottom:419.586667pt;}
.yb_c01301{bottom:441.320000pt;}
.ya_c01301{bottom:463.186667pt;}
.y9_c01301{bottom:485.586667pt;}
.y8_c01301{bottom:507.320000pt;}
.y7_c01301{bottom:529.186667pt;}
.y6_c01301{bottom:551.586667pt;}
.y5_c01301{bottom:573.320000pt;}
.y4_c01301{bottom:595.720000pt;}
.y3_c01301{bottom:617.053333pt;}
.y2_c01301{bottom:638.920000pt;}
.y1_c01301{bottom:661.720000pt;}
.h7_c01301{height:11.733399pt;}
.h6_c01301{height:34.144000pt;}
.h8_c01301{height:38.937500pt;}
.h5_c01301{height:74.906250pt;}
.h4_c01301{height:81.031250pt;}
.h2_c01301{height:90.511719pt;}
.h3_c01301{height:104.665365pt;}
.h0_c01301{height:707.266667pt;}
.h1_c01301{height:707.333333pt;}
.w2_c01301{width:93.222667pt;}
.w1_c01301{width:472.000000pt;}
.w0_c01301{width:472.066667pt;}
.x0_c01301{left:0.000000pt;}
.x9_c01301{left:30.933333pt;}
.x8_c01301{left:33.200000pt;}
.x2_c01301{left:97.200000pt;}
.x3_c01301{left:98.133333pt;}
.x4_c01301{left:99.333333pt;}
.x5_c01301{left:100.533333pt;}
.x6_c01301{left:102.266667pt;}
.x7_c01301{left:103.466667pt;}
.xb_c01301{left:104.666667pt;}
.xc_c01301{left:105.600000pt;}
.xd_c01301{left:107.066667pt;}
.xa_c01301{left:126.266667pt;}
.x1_c01301{left:193.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_28a250443a64c43cbf74c416.woff2')format("woff");}.ff1_c01302{font-family:ff1_c01302;line-height:1.284180;font-style:normal;font-weight:normal;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_5af8ddd0f0c3ee7fd3daa5d0.woff2')format("woff");}.ff2_c01302{font-family:ff2_c01302;line-height:1.284668;font-style:normal;font-weight:normal;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_ae9d7ba6d98b7d001fba98e2.woff2')format("woff");}.ff3_c01302{font-family:ff3_c01302;line-height:1.568848;font-style:normal;font-weight:normal;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_c62e29bc92dcf2532dbab752.woff2')format("woff");}.ff4_c01302{font-family:ff4_c01302;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01302;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01302{font-family:ff5_c01302;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01302{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01302{vertical-align:0.000000px;}
.ls2_c01302{letter-spacing:-3.000000px;}
.ls0_c01302{letter-spacing:0.000000px;}
.ls1_c01302{letter-spacing:3.000000px;}
.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:-30.192000px;}
.ws1_c01302{word-spacing:0.000000px;}
._14_c01302{margin-left:-16.512000px;}
._11_c01302{margin-left:-13.611000px;}
._16_c01302{margin-left:-12.000000px;}
._7_c01302{margin-left:-10.248000px;}
._15_c01302{margin-left:-8.877000px;}
._b_c01302{margin-left:-7.032000px;}
._10_c01302{margin-left:-5.712000px;}
._c_c01302{margin-left:-4.320000px;}
._4_c01302{margin-left:-2.352000px;}
._d_c01302{margin-left:-1.020000px;}
._6_c01302{width:1.848000px;}
._8_c01302{width:2.940000px;}
._5_c01302{width:4.452000px;}
._e_c01302{width:5.496000px;}
._1_c01302{width:6.636000px;}
._12_c01302{width:8.121000px;}
._3_c01302{width:9.408000px;}
._2_c01302{width:10.416000px;}
._0_c01302{width:11.676000px;}
._a_c01302{width:13.527000px;}
._13_c01302{width:14.535000px;}
._f_c01302{width:17.136000px;}
._1a_c01302{width:30.468000px;}
._17_c01302{width:94.704000px;}
._9_c01302{width:259.038000px;}
._1b_c01302{width:316.512000px;}
._18_c01302{width:343.488000px;}
._19_c01302{width:575.661000px;}
.fc2_c01302{color:transparent;}
.fc1_c01302{color:rgb(128,128,128);}
.fc0_c01302{color:rgb(0,0,0);}
.fs4_c01302{font-size:48.000000px;}
.fs3_c01302{font-size:66.000000px;}
.fs2_c01302{font-size:72.000000px;}
.fs1_c01302{font-size:81.000000px;}
.fs0_c01302{font-size:84.000000px;}
.y0_c01302{bottom:0.000000px;}
.y1f_c01302{bottom:3.105000px;}
.y1e_c01302{bottom:7.228369px;}
.y1d_c01302{bottom:40.770000px;}
.y1c_c01302{bottom:65.370000px;}
.y1b_c01302{bottom:90.120000px;}
.y1a_c01302{bottom:118.020000px;}
.y19_c01302{bottom:142.470000px;}
.y18_c01302{bottom:167.070000px;}
.y17_c01302{bottom:192.720000px;}
.y16_c01302{bottom:215.370000px;}
.y15_c01302{bottom:242.970000px;}
.y14_c01302{bottom:267.570000px;}
.y13_c01302{bottom:292.620000px;}
.y12_c01302{bottom:316.470000px;}
.y11_c01302{bottom:340.470000px;}
.y10_c01302{bottom:365.820000px;}
.yf_c01302{bottom:386.670000px;}
.ye_c01302{bottom:412.470000px;}
.yd_c01302{bottom:435.720000px;}
.yc_c01302{bottom:461.370000px;}
.yb_c01302{bottom:485.970000px;}
.ya_c01302{bottom:510.870000px;}
.y9_c01302{bottom:535.620000px;}
.y8_c01302{bottom:560.970000px;}
.y7_c01302{bottom:584.520000px;}
.y6_c01302{bottom:610.170000px;}
.y5_c01302{bottom:635.220000px;}
.y4_c01302{bottom:660.420000px;}
.y3_c01302{bottom:685.020000px;}
.y2_c01302{bottom:710.820000px;}
.y1_c01302{bottom:735.420000px;}
.h4_c01302{height:13.200073px;}
.h5_c01302{height:43.804688px;}
.h2_c01302{height:82.400391px;}
.h3_c01302{height:91.160156px;}
.h1_c01302{height:785.250000px;}
.h0_c01302{height:785.400000px;}
.w2_c01302{width:104.875500px;}
.w0_c01302{width:532.200000px;}
.w1_c01302{width:532.500000px;}
.x0_c01302{left:0.000000px;}
.x2_c01302{left:33.450000px;}
.x3_c01302{left:34.500000px;}
.x4_c01302{left:35.550000px;}
.xb_c01302{left:36.900000px;}
.x8_c01302{left:38.850000px;}
.x9_c01302{left:39.900000px;}
.x7_c01302{left:41.100000px;}
.x5_c01302{left:42.600000px;}
.x6_c01302{left:45.000000px;}
.xa_c01302{left:55.950000px;}
.xc_c01302{left:66.150000px;}
.x1_c01302{left:127.800000px;}
.xd_c01302{left:217.914230px;}
@media print{
.v0_c01302{vertical-align:0.000000pt;}
.ls2_c01302{letter-spacing:-2.666667pt;}
.ls0_c01302{letter-spacing:0.000000pt;}
.ls1_c01302{letter-spacing:2.666667pt;}
.ws0_c01302{word-spacing:-26.837333pt;}
.ws1_c01302{word-spacing:0.000000pt;}
._14_c01302{margin-left:-14.677333pt;}
._11_c01302{margin-left:-12.098667pt;}
._16_c01302{margin-left:-10.666667pt;}
._7_c01302{margin-left:-9.109333pt;}
._15_c01302{margin-left:-7.890667pt;}
._b_c01302{margin-left:-6.250667pt;}
._10_c01302{margin-left:-5.077333pt;}
._c_c01302{margin-left:-3.840000pt;}
._4_c01302{margin-left:-2.090667pt;}
._d_c01302{margin-left:-0.906667pt;}
._6_c01302{width:1.642667pt;}
._8_c01302{width:2.613333pt;}
._5_c01302{width:3.957333pt;}
._e_c01302{width:4.885333pt;}
._1_c01302{width:5.898667pt;}
._12_c01302{width:7.218667pt;}
._3_c01302{width:8.362667pt;}
._2_c01302{width:9.258667pt;}
._0_c01302{width:10.378667pt;}
._a_c01302{width:12.024000pt;}
._13_c01302{width:12.920000pt;}
._f_c01302{width:15.232000pt;}
._1a_c01302{width:27.082667pt;}
._17_c01302{width:84.181333pt;}
._9_c01302{width:230.256000pt;}
._1b_c01302{width:281.344000pt;}
._18_c01302{width:305.322667pt;}
._19_c01302{width:511.698667pt;}
.fs4_c01302{font-size:42.666667pt;}
.fs3_c01302{font-size:58.666667pt;}
.fs2_c01302{font-size:64.000000pt;}
.fs1_c01302{font-size:72.000000pt;}
.fs0_c01302{font-size:74.666667pt;}
.y0_c01302{bottom:0.000000pt;}
.y1f_c01302{bottom:2.760000pt;}
.y1e_c01302{bottom:6.425217pt;}
.y1d_c01302{bottom:36.240000pt;}
.y1c_c01302{bottom:58.106667pt;}
.y1b_c01302{bottom:80.106667pt;}
.y1a_c01302{bottom:104.906667pt;}
.y19_c01302{bottom:126.640000pt;}
.y18_c01302{bottom:148.506667pt;}
.y17_c01302{bottom:171.306667pt;}
.y16_c01302{bottom:191.440000pt;}
.y15_c01302{bottom:215.973333pt;}
.y14_c01302{bottom:237.840000pt;}
.y13_c01302{bottom:260.106667pt;}
.y12_c01302{bottom:281.306667pt;}
.y11_c01302{bottom:302.640000pt;}
.y10_c01302{bottom:325.173333pt;}
.yf_c01302{bottom:343.706667pt;}
.ye_c01302{bottom:366.640000pt;}
.yd_c01302{bottom:387.306667pt;}
.yc_c01302{bottom:410.106667pt;}
.yb_c01302{bottom:431.973333pt;}
.ya_c01302{bottom:454.106667pt;}
.y9_c01302{bottom:476.106667pt;}
.y8_c01302{bottom:498.640000pt;}
.y7_c01302{bottom:519.573333pt;}
.y6_c01302{bottom:542.373333pt;}
.y5_c01302{bottom:564.640000pt;}
.y4_c01302{bottom:587.040000pt;}
.y3_c01302{bottom:608.906667pt;}
.y2_c01302{bottom:631.840000pt;}
.y1_c01302{bottom:653.706667pt;}
.h4_c01302{height:11.733399pt;}
.h5_c01302{height:38.937500pt;}
.h2_c01302{height:73.244792pt;}
.h3_c01302{height:81.031250pt;}
.h1_c01302{height:698.000000pt;}
.h0_c01302{height:698.133333pt;}
.w2_c01302{width:93.222667pt;}
.w0_c01302{width:473.066667pt;}
.w1_c01302{width:473.333333pt;}
.x0_c01302{left:0.000000pt;}
.x2_c01302{left:29.733333pt;}
.x3_c01302{left:30.666667pt;}
.x4_c01302{left:31.600000pt;}
.xb_c01302{left:32.800000pt;}
.x8_c01302{left:34.533333pt;}
.x9_c01302{left:35.466667pt;}
.x7_c01302{left:36.533333pt;}
.x5_c01302{left:37.866667pt;}
.x6_c01302{left:40.000000pt;}
.xa_c01302{left:49.733333pt;}
.xc_c01302{left:58.800000pt;}
.x1_c01302{left:113.600000pt;}
.xd_c01302{left:193.701538pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_625b7aa1030b0f2076156f58.woff2')format("woff");}.ff1_c01303{font-family:ff1_c01303;line-height:1.480469;font-style:normal;font-weight:normal;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_7f5d2b01976edf63617e1d6b.woff2')format("woff");}.ff2_c01303{font-family:ff2_c01303;line-height:1.568848;font-style:normal;font-weight:normal;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_d6bfaf8a6af423a9aa3e5831.woff2')format("woff");}.ff3_c01303{font-family:ff3_c01303;line-height:1.284668;font-style:normal;font-weight:normal;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_38cbf328730151b2f6578ffe.woff2')format("woff");}.ff4_c01303{font-family:ff4_c01303;line-height:1.575000;font-style:normal;font-weight:normal;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_ef7995a693549da0447ca8bd.woff2')format("woff");}.ff5_c01303{font-family:ff5_c01303;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01303{font-family:ff6_c01303;line-height:1.219238;font-style: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);}
.v0_c01303{vertical-align:0.000000px;}
.ls4_c01303{letter-spacing:-6.000000px;}
.ls3_c01303{letter-spacing:-3.000000px;}
.ls2_c01303{letter-spacing:0.000000px;}
.ls1_c01303{letter-spacing:3.000000px;}
.ls0_c01303{letter-spacing:16.188000px;}
.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:-16.629000px;}
.ws1_c01303{word-spacing:-14.352000px;}
.ws2_c01303{word-spacing:-10.629000px;}
.ws3_c01303{word-spacing:0.000000px;}
._6_c01303{margin-left:-15.939000px;}
._17_c01303{margin-left:-12.138000px;}
._5_c01303{margin-left:-9.936000px;}
._1a_c01303{margin-left:-8.913000px;}
._7_c01303{margin-left:-7.632000px;}
._19_c01303{margin-left:-6.147000px;}
._3_c01303{margin-left:-5.133000px;}
._11_c01303{margin-left:-3.354000px;}
._4_c01303{margin-left:-2.088000px;}
._c_c01303{margin-left:-1.065000px;}
._1_c01303{width:1.131000px;}
._2_c01303{width:2.349000px;}
._0_c01303{width:3.828000px;}
._9_c01303{width:4.899000px;}
._10_c01303{width:6.138000px;}
._a_c01303{width:7.245000px;}
._8_c01303{width:8.697000px;}
._f_c01303{width:9.864000px;}
._d_c01303{width:10.911000px;}
._b_c01303{width:12.420000px;}
._13_c01303{width:14.001000px;}
._15_c01303{width:15.240000px;}
._14_c01303{width:19.590000px;}
._1b_c01303{width:25.806000px;}
._e_c01303{width:30.084000px;}
._18_c01303{width:146.748000px;}
._12_c01303{width:150.858000px;}
._16_c01303{width:174.681000px;}
._1c_c01303{width:577.962000px;}
.fc2_c01303{color:transparent;}
.fc1_c01303{color:rgb(128,128,128);}
.fc0_c01303{color:rgb(0,0,0);}
.fs6_c01303{font-size:48.000000px;}
.fs4_c01303{font-size:63.000000px;}
.fs5_c01303{font-size:66.000000px;}
.fs1_c01303{font-size:69.000000px;}
.fs2_c01303{font-size:72.000000px;}
.fs3_c01303{font-size:84.000000px;}
.fs0_c01303{font-size:87.000000px;}
.y0_c01303{bottom:0.000000px;}
.y1f_c01303{bottom:3.105000px;}
.y1e_c01303{bottom:7.228371px;}
.y1d_c01303{bottom:43.215000px;}
.y1c_c01303{bottom:63.915000px;}
.y1b_c01303{bottom:90.765000px;}
.y1a_c01303{bottom:116.565000px;}
.y19_c01303{bottom:143.865000px;}
.y18_c01303{bottom:165.765000px;}
.y17_c01303{bottom:192.015000px;}
.y16_c01303{bottom:217.065000px;}
.y15_c01303{bottom:242.715000px;}
.y14_c01303{bottom:267.315000px;}
.y13_c01303{bottom:293.265000px;}
.y12_c01303{bottom:317.565000px;}
.y11_c01303{bottom:341.565000px;}
.y10_c01303{bottom:367.665000px;}
.yf_c01303{bottom:389.565000px;}
.ye_c01303{bottom:412.515000px;}
.yd_c01303{bottom:437.865000px;}
.yc_c01303{bottom:462.165000px;}
.yb_c01303{bottom:487.365000px;}
.ya_c01303{bottom:511.665000px;}
.y9_c01303{bottom:536.415000px;}
.y8_c01303{bottom:561.315000px;}
.y7_c01303{bottom:585.915000px;}
.y6_c01303{bottom:610.665000px;}
.y5_c01303{bottom:633.915000px;}
.y4_c01303{bottom:659.565000px;}
.y3_c01303{bottom:685.215000px;}
.y2_c01303{bottom:709.815000px;}
.y1_c01303{bottom:735.165000px;}
.h7_c01303{height:13.200074px;}
.h8_c01303{height:43.804688px;}
.h6_c01303{height:70.422000px;}
.h5_c01303{height:82.441406px;}
.h3_c01303{height:87.361816px;}
.h4_c01303{height:91.160156px;}
.h2_c01303{height:101.825684px;}
.h1_c01303{height:783.750000px;}
.h0_c01303{height:783.825000px;}
.w1_c01303{width:104.875500px;}
.w0_c01303{width:516.000000px;}
.x0_c01303{left:0.000000px;}
.xa_c01303{left:35.850000px;}
.x2_c01303{left:40.500000px;}
.x3_c01303{left:97.950000px;}
.xc_c01303{left:103.650000px;}
.xd_c01303{left:104.700000px;}
.xb_c01303{left:107.100000px;}
.x9_c01303{left:109.050000px;}
.x8_c01303{left:110.400000px;}
.x7_c01303{left:112.350000px;}
.x6_c01303{left:113.400000px;}
.x5_c01303{left:114.450000px;}
.x4_c01303{left:116.550000px;}
.xf_c01303{left:209.814240px;}
.x1_c01303{left:219.150000px;}
.xe_c01303{left:268.950000px;}
@media print{
.v0_c01303{vertical-align:0.000000pt;}
.ls4_c01303{letter-spacing:-5.333333pt;}
.ls3_c01303{letter-spacing:-2.666667pt;}
.ls2_c01303{letter-spacing:0.000000pt;}
.ls1_c01303{letter-spacing:2.666667pt;}
.ls0_c01303{letter-spacing:14.389333pt;}
.ws0_c01303{word-spacing:-14.781333pt;}
.ws1_c01303{word-spacing:-12.757333pt;}
.ws2_c01303{word-spacing:-9.448000pt;}
.ws3_c01303{word-spacing:0.000000pt;}
._6_c01303{margin-left:-14.168000pt;}
._17_c01303{margin-left:-10.789333pt;}
._5_c01303{margin-left:-8.832000pt;}
._1a_c01303{margin-left:-7.922667pt;}
._7_c01303{margin-left:-6.784000pt;}
._19_c01303{margin-left:-5.464000pt;}
._3_c01303{margin-left:-4.562667pt;}
._11_c01303{margin-left:-2.981333pt;}
._4_c01303{margin-left:-1.856000pt;}
._c_c01303{margin-left:-0.946667pt;}
._1_c01303{width:1.005333pt;}
._2_c01303{width:2.088000pt;}
._0_c01303{width:3.402667pt;}
._9_c01303{width:4.354667pt;}
._10_c01303{width:5.456000pt;}
._a_c01303{width:6.440000pt;}
._8_c01303{width:7.730667pt;}
._f_c01303{width:8.768000pt;}
._d_c01303{width:9.698667pt;}
._b_c01303{width:11.040000pt;}
._13_c01303{width:12.445333pt;}
._15_c01303{width:13.546667pt;}
._14_c01303{width:17.413333pt;}
._1b_c01303{width:22.938667pt;}
._e_c01303{width:26.741333pt;}
._18_c01303{width:130.442667pt;}
._12_c01303{width:134.096000pt;}
._16_c01303{width:155.272000pt;}
._1c_c01303{width:513.744000pt;}
.fs6_c01303{font-size:42.666667pt;}
.fs4_c01303{font-size:56.000000pt;}
.fs5_c01303{font-size:58.666667pt;}
.fs1_c01303{font-size:61.333333pt;}
.fs2_c01303{font-size:64.000000pt;}
.fs3_c01303{font-size:74.666667pt;}
.fs0_c01303{font-size:77.333333pt;}
.y0_c01303{bottom:0.000000pt;}
.y1f_c01303{bottom:2.760000pt;}
.y1e_c01303{bottom:6.425219pt;}
.y1d_c01303{bottom:38.413333pt;}
.y1c_c01303{bottom:56.813333pt;}
.y1b_c01303{bottom:80.680000pt;}
.y1a_c01303{bottom:103.613333pt;}
.y19_c01303{bottom:127.880000pt;}
.y18_c01303{bottom:147.346667pt;}
.y17_c01303{bottom:170.680000pt;}
.y16_c01303{bottom:192.946667pt;}
.y15_c01303{bottom:215.746667pt;}
.y14_c01303{bottom:237.613333pt;}
.y13_c01303{bottom:260.680000pt;}
.y12_c01303{bottom:282.280000pt;}
.y11_c01303{bottom:303.613333pt;}
.y10_c01303{bottom:326.813333pt;}
.yf_c01303{bottom:346.280000pt;}
.ye_c01303{bottom:366.680000pt;}
.yd_c01303{bottom:389.213333pt;}
.yc_c01303{bottom:410.813333pt;}
.yb_c01303{bottom:433.213333pt;}
.ya_c01303{bottom:454.813333pt;}
.y9_c01303{bottom:476.813333pt;}
.y8_c01303{bottom:498.946667pt;}
.y7_c01303{bottom:520.813333pt;}
.y6_c01303{bottom:542.813333pt;}
.y5_c01303{bottom:563.480000pt;}
.y4_c01303{bottom:586.280000pt;}
.y3_c01303{bottom:609.080000pt;}
.y2_c01303{bottom:630.946667pt;}
.y1_c01303{bottom:653.480000pt;}
.h7_c01303{height:11.733399pt;}
.h8_c01303{height:38.937500pt;}
.h6_c01303{height:62.597333pt;}
.h5_c01303{height:73.281250pt;}
.h3_c01303{height:77.654948pt;}
.h4_c01303{height:81.031250pt;}
.h2_c01303{height:90.511719pt;}
.h1_c01303{height:696.666667pt;}
.h0_c01303{height:696.733333pt;}
.w1_c01303{width:93.222667pt;}
.w0_c01303{width:458.666667pt;}
.x0_c01303{left:0.000000pt;}
.xa_c01303{left:31.866667pt;}
.x2_c01303{left:36.000000pt;}
.x3_c01303{left:87.066667pt;}
.xc_c01303{left:92.133333pt;}
.xd_c01303{left:93.066667pt;}
.xb_c01303{left:95.200000pt;}
.x9_c01303{left:96.933333pt;}
.x8_c01303{left:98.133333pt;}
.x7_c01303{left:99.866667pt;}
.x6_c01303{left:100.800000pt;}
.x5_c01303{left:101.733333pt;}
.x4_c01303{left:103.600000pt;}
.xf_c01303{left:186.501546pt;}
.x1_c01303{left:194.800000pt;}
.xe_c01303{left:239.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2928c9ecf8b265dfabe672b2.woff2')format("woff");}.ff1_c01304{font-family:ff1_c01304;line-height:1.480469;font-style:normal;font-weight:normal;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_71adfb6156d1596e141b4d32.woff2')format("woff");}.ff2_c01304{font-family:ff2_c01304;line-height:1.568848;font-style:normal;font-weight:normal;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_1c0740174ec80ddfd2de5b6d.woff2')format("woff");}.ff3_c01304{font-family:ff3_c01304;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01304{font-family:ff4_c01304;line-height:1.219238;font-style: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);}
.v0_c01304{vertical-align:0.000000px;}
.ls2_c01304{letter-spacing:0.000000px;}
.ls0_c01304{letter-spacing:3.000000px;}
.ls1_c01304{letter-spacing:13.788000px;}
.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:-20.352000px;}
.ws1_c01304{word-spacing:0.000000px;}
._15_c01304{margin-left:-21.168000px;}
._17_c01304{margin-left:-13.794000px;}
._11_c01304{margin-left:-10.509000px;}
._b_c01304{margin-left:-8.703000px;}
._10_c01304{margin-left:-7.632000px;}
._1_c01304{margin-left:-5.568000px;}
._c_c01304{margin-left:-4.380000px;}
._7_c01304{margin-left:-2.694000px;}
._0_c01304{margin-left:-1.305000px;}
._3_c01304{width:1.218000px;}
._4_c01304{width:2.958000px;}
._2_c01304{width:4.002000px;}
._6_c01304{width:5.568000px;}
._a_c01304{width:6.774000px;}
._9_c01304{width:8.355000px;}
._e_c01304{width:9.462000px;}
._8_c01304{width:11.694000px;}
._18_c01304{width:13.188000px;}
._d_c01304{width:14.442000px;}
._12_c01304{width:15.444000px;}
._f_c01304{width:19.158000px;}
._14_c01304{width:22.968000px;}
._13_c01304{width:24.618000px;}
._5_c01304{width:224.634000px;}
._16_c01304{width:520.848000px;}
.fc2_c01304{color:transparent;}
.fc1_c01304{color:rgb(128,128,128);}
.fc0_c01304{color:rgb(0,0,0);}
.fs3_c01304{font-size:48.000000px;}
.fs2_c01304{font-size:63.000000px;}
.fs1_c01304{font-size:72.000000px;}
.fs0_c01304{font-size:87.000000px;}
.y0_c01304{bottom:0.000000px;}
.y1f_c01304{bottom:3.105000px;}
.y1e_c01304{bottom:7.228371px;}
.y1d_c01304{bottom:36.915000px;}
.y1c_c01304{bottom:61.065000px;}
.y1b_c01304{bottom:87.165000px;}
.y1a_c01304{bottom:111.465000px;}
.y19_c01304{bottom:136.365000px;}
.y18_c01304{bottom:160.965000px;}
.y17_c01304{bottom:185.715000px;}
.y16_c01304{bottom:210.615000px;}
.y15_c01304{bottom:235.965000px;}
.y14_c01304{bottom:261.315000px;}
.y13_c01304{bottom:286.965000px;}
.y12_c01304{bottom:311.565000px;}
.y11_c01304{bottom:334.965000px;}
.y10_c01304{bottom:359.415000px;}
.yf_c01304{bottom:383.865000px;}
.ye_c01304{bottom:407.715000px;}
.yd_c01304{bottom:432.465000px;}
.yc_c01304{bottom:456.765000px;}
.yb_c01304{bottom:481.365000px;}
.ya_c01304{bottom:505.965000px;}
.y9_c01304{bottom:529.215000px;}
.y8_c01304{bottom:554.865000px;}
.y7_c01304{bottom:579.465000px;}
.y6_c01304{bottom:603.915000px;}
.y5_c01304{bottom:629.115000px;}
.y4_c01304{bottom:653.865000px;}
.y3_c01304{bottom:678.765000px;}
.y2_c01304{bottom:703.365000px;}
.y1_c01304{bottom:728.715000px;}
.h4_c01304{height:13.200074px;}
.h5_c01304{height:43.804688px;}
.h3_c01304{height:91.160156px;}
.h2_c01304{height:110.151855px;}
.h0_c01304{height:774.375000px;}
.h1_c01304{height:774.750000px;}
.w2_c01304{width:104.875500px;}
.w1_c01304{width:527.250000px;}
.w0_c01304{width:527.550000px;}
.x0_c01304{left:0.000000px;}
.x2_c01304{left:28.050000px;}
.x3_c01304{left:29.400000px;}
.x4_c01304{left:30.750000px;}
.x5_c01304{left:32.400000px;}
.x6_c01304{left:34.050000px;}
.x1_c01304{left:133.650000px;}
.x8_c01304{left:215.589249px;}
.x7_c01304{left:343.650000px;}
@media print{
.v0_c01304{vertical-align:0.000000pt;}
.ls2_c01304{letter-spacing:0.000000pt;}
.ls0_c01304{letter-spacing:2.666667pt;}
.ls1_c01304{letter-spacing:12.256000pt;}
.ws0_c01304{word-spacing:-18.090667pt;}
.ws1_c01304{word-spacing:0.000000pt;}
._15_c01304{margin-left:-18.816000pt;}
._17_c01304{margin-left:-12.261333pt;}
._11_c01304{margin-left:-9.341333pt;}
._b_c01304{margin-left:-7.736000pt;}
._10_c01304{margin-left:-6.784000pt;}
._1_c01304{margin-left:-4.949333pt;}
._c_c01304{margin-left:-3.893333pt;}
._7_c01304{margin-left:-2.394667pt;}
._0_c01304{margin-left:-1.160000pt;}
._3_c01304{width:1.082667pt;}
._4_c01304{width:2.629333pt;}
._2_c01304{width:3.557333pt;}
._6_c01304{width:4.949333pt;}
._a_c01304{width:6.021333pt;}
._9_c01304{width:7.426667pt;}
._e_c01304{width:8.410667pt;}
._8_c01304{width:10.394667pt;}
._18_c01304{width:11.722667pt;}
._d_c01304{width:12.837333pt;}
._12_c01304{width:13.728000pt;}
._f_c01304{width:17.029333pt;}
._14_c01304{width:20.416000pt;}
._13_c01304{width:21.882667pt;}
._5_c01304{width:199.674667pt;}
._16_c01304{width:462.976000pt;}
.fs3_c01304{font-size:42.666667pt;}
.fs2_c01304{font-size:56.000000pt;}
.fs1_c01304{font-size:64.000000pt;}
.fs0_c01304{font-size:77.333333pt;}
.y0_c01304{bottom:0.000000pt;}
.y1f_c01304{bottom:2.760000pt;}
.y1e_c01304{bottom:6.425219pt;}
.y1d_c01304{bottom:32.813333pt;}
.y1c_c01304{bottom:54.280000pt;}
.y1b_c01304{bottom:77.480000pt;}
.y1a_c01304{bottom:99.080000pt;}
.y19_c01304{bottom:121.213333pt;}
.y18_c01304{bottom:143.080000pt;}
.y17_c01304{bottom:165.080000pt;}
.y16_c01304{bottom:187.213333pt;}
.y15_c01304{bottom:209.746667pt;}
.y14_c01304{bottom:232.280000pt;}
.y13_c01304{bottom:255.080000pt;}
.y12_c01304{bottom:276.946667pt;}
.y11_c01304{bottom:297.746667pt;}
.y10_c01304{bottom:319.480000pt;}
.yf_c01304{bottom:341.213333pt;}
.ye_c01304{bottom:362.413333pt;}
.yd_c01304{bottom:384.413333pt;}
.yc_c01304{bottom:406.013333pt;}
.yb_c01304{bottom:427.880000pt;}
.ya_c01304{bottom:449.746667pt;}
.y9_c01304{bottom:470.413333pt;}
.y8_c01304{bottom:493.213333pt;}
.y7_c01304{bottom:515.080000pt;}
.y6_c01304{bottom:536.813333pt;}
.y5_c01304{bottom:559.213333pt;}
.y4_c01304{bottom:581.213333pt;}
.y3_c01304{bottom:603.346667pt;}
.y2_c01304{bottom:625.213333pt;}
.y1_c01304{bottom:647.746667pt;}
.h4_c01304{height:11.733399pt;}
.h5_c01304{height:38.937500pt;}
.h3_c01304{height:81.031250pt;}
.h2_c01304{height:97.912760pt;}
.h0_c01304{height:688.333333pt;}
.h1_c01304{height:688.666667pt;}
.w2_c01304{width:93.222667pt;}
.w1_c01304{width:468.666667pt;}
.w0_c01304{width:468.933333pt;}
.x0_c01304{left:0.000000pt;}
.x2_c01304{left:24.933333pt;}
.x3_c01304{left:26.133333pt;}
.x4_c01304{left:27.333333pt;}
.x5_c01304{left:28.800000pt;}
.x6_c01304{left:30.266667pt;}
.x1_c01304{left:118.800000pt;}
.x8_c01304{left:191.634888pt;}
.x7_c01304{left:305.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b0a2c76399ff004a18ed5a86.woff2')format("woff");}.ff1_c01305{font-family:ff1_c01305;line-height:1.480469;font-style:normal;font-weight:normal;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_8a300ce2c5361c9863bc43c9.woff2')format("woff");}.ff2_c01305{font-family:ff2_c01305;line-height:1.568848;font-style:normal;font-weight:normal;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_64a8c597e4c911649580f50c.woff2')format("woff");}.ff3_c01305{font-family:ff3_c01305;line-height:1.575000;font-style:normal;font-weight:normal;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_eed3487b88e2698ef798e377.woff2')format("woff");}.ff4_c01305{font-family:ff4_c01305;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01305{font-family:ff5_c01305;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01305{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01305{vertical-align:0.000000px;}
.ls4_c01305{letter-spacing:-9.000000px;}
.ls3_c01305{letter-spacing:-3.000000px;}
.ls2_c01305{letter-spacing:0.000000px;}
.ls0_c01305{letter-spacing:3.000000px;}
.ls1_c01305{letter-spacing:632.448000px;}
.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:-14.352000px;}
.ws1_c01305{word-spacing:-6.283200px;}
.ws2_c01305{word-spacing:0.000000px;}
._1b_c01305{margin-left:-29.685000px;}
._4_c01305{margin-left:-18.618000px;}
._1c_c01305{margin-left:-16.773000px;}
._10_c01305{margin-left:-15.102000px;}
._15_c01305{margin-left:-13.194000px;}
._a_c01305{margin-left:-11.586000px;}
._1d_c01305{margin-left:-10.308000px;}
._f_c01305{margin-left:-8.394000px;}
._b_c01305{margin-left:-6.696000px;}
._c_c01305{margin-left:-5.685000px;}
._8_c01305{margin-left:-4.518000px;}
._5_c01305{margin-left:-3.393000px;}
._13_c01305{margin-left:-2.271000px;}
._6_c01305{margin-left:-1.218000px;}
._7_c01305{width:1.578000px;}
._9_c01305{width:2.904000px;}
._d_c01305{width:4.425000px;}
._1_c01305{width:5.568000px;}
._2_c01305{width:6.960000px;}
._14_c01305{width:8.028000px;}
._3_c01305{width:9.048000px;}
._0_c01305{width:10.701000px;}
._12_c01305{width:12.039000px;}
._11_c01305{width:13.833000px;}
._e_c01305{width:15.069000px;}
._16_c01305{width:16.473000px;}
._19_c01305{width:18.003000px;}
._17_c01305{width:20.088000px;}
._1a_c01305{width:26.517000px;}
._1f_c01305{width:33.062400px;}
._20_c01305{width:34.848000px;}
._1e_c01305{width:54.324000px;}
._18_c01305{width:145.065000px;}
.fc2_c01305{color:transparent;}
.fc1_c01305{color:rgb(128,128,128);}
.fc0_c01305{color:rgb(0,0,0);}
.fs4_c01305{font-size:48.000000px;}
.fs3_c01305{font-size:57.600000px;}
.fs2_c01305{font-size:63.000000px;}
.fs1_c01305{font-size:72.000000px;}
.fs0_c01305{font-size:87.000000px;}
.y0_c01305{bottom:0.000000px;}
.y1f_c01305{bottom:3.105000px;}
.y1e_c01305{bottom:7.228371px;}
.y1d_c01305{bottom:39.165000px;}
.y1c_c01305{bottom:60.465000px;}
.y1b_c01305{bottom:87.765000px;}
.y1a_c01305{bottom:112.815000px;}
.y19_c01305{bottom:137.415000px;}
.y18_c01305{bottom:161.715000px;}
.y17_c01305{bottom:186.765000px;}
.y16_c01305{bottom:212.265000px;}
.y15_c01305{bottom:237.015000px;}
.y14_c01305{bottom:262.215000px;}
.y13_c01305{bottom:286.965000px;}
.y12_c01305{bottom:311.265000px;}
.y11_c01305{bottom:336.165000px;}
.y10_c01305{bottom:362.115000px;}
.yf_c01305{bottom:386.565000px;}
.ye_c01305{bottom:409.365000px;}
.yd_c01305{bottom:433.665000px;}
.yc_c01305{bottom:455.415000px;}
.yb_c01305{bottom:480.915000px;}
.ya_c01305{bottom:506.715000px;}
.y9_c01305{bottom:531.315000px;}
.y8_c01305{bottom:556.515000px;}
.y7_c01305{bottom:581.265000px;}
.y6_c01305{bottom:606.465000px;}
.y5_c01305{bottom:631.215000px;}
.y4_c01305{bottom:654.465000px;}
.y3_c01305{bottom:680.865000px;}
.y2_c01305{bottom:705.165000px;}
.y1_c01305{bottom:730.815000px;}
.h5_c01305{height:13.200074px;}
.h6_c01305{height:43.804688px;}
.h4_c01305{height:72.928125px;}
.h3_c01305{height:91.160156px;}
.h2_c01305{height:110.151855px;}
.h1_c01305{height:775.500000px;}
.h0_c01305{height:775.725000px;}
.w2_c01305{width:104.875500px;}
.w0_c01305{width:548.925000px;}
.w1_c01305{width:549.000000px;}
.x0_c01305{left:0.000000px;}
.x7_c01305{left:46.650000px;}
.x8_c01305{left:48.000000px;}
.x9_c01305{left:49.350000px;}
.xb_c01305{left:124.200000px;}
.xa_c01305{left:126.000000px;}
.x6_c01305{left:128.250000px;}
.x5_c01305{left:129.300000px;}
.x4_c01305{left:130.950000px;}
.x3_c01305{left:132.000000px;}
.x2_c01305{left:133.650000px;}
.xc_c01305{left:219.750000px;}
.xe_c01305{left:226.276749px;}
.x1_c01305{left:232.650000px;}
.xd_c01305{left:419.250000px;}
@media print{
.v0_c01305{vertical-align:0.000000pt;}
.ls4_c01305{letter-spacing:-8.000000pt;}
.ls3_c01305{letter-spacing:-2.666667pt;}
.ls2_c01305{letter-spacing:0.000000pt;}
.ls0_c01305{letter-spacing:2.666667pt;}
.ls1_c01305{letter-spacing:562.176000pt;}
.ws0_c01305{word-spacing:-12.757333pt;}
.ws1_c01305{word-spacing:-5.585067pt;}
.ws2_c01305{word-spacing:0.000000pt;}
._1b_c01305{margin-left:-26.386667pt;}
._4_c01305{margin-left:-16.549333pt;}
._1c_c01305{margin-left:-14.909333pt;}
._10_c01305{margin-left:-13.424000pt;}
._15_c01305{margin-left:-11.728000pt;}
._a_c01305{margin-left:-10.298667pt;}
._1d_c01305{margin-left:-9.162667pt;}
._f_c01305{margin-left:-7.461333pt;}
._b_c01305{margin-left:-5.952000pt;}
._c_c01305{margin-left:-5.053333pt;}
._8_c01305{margin-left:-4.016000pt;}
._5_c01305{margin-left:-3.016000pt;}
._13_c01305{margin-left:-2.018667pt;}
._6_c01305{margin-left:-1.082667pt;}
._7_c01305{width:1.402667pt;}
._9_c01305{width:2.581333pt;}
._d_c01305{width:3.933333pt;}
._1_c01305{width:4.949333pt;}
._2_c01305{width:6.186667pt;}
._14_c01305{width:7.136000pt;}
._3_c01305{width:8.042667pt;}
._0_c01305{width:9.512000pt;}
._12_c01305{width:10.701333pt;}
._11_c01305{width:12.296000pt;}
._e_c01305{width:13.394667pt;}
._16_c01305{width:14.642667pt;}
._19_c01305{width:16.002667pt;}
._17_c01305{width:17.856000pt;}
._1a_c01305{width:23.570667pt;}
._1f_c01305{width:29.388800pt;}
._20_c01305{width:30.976000pt;}
._1e_c01305{width:48.288000pt;}
._18_c01305{width:128.946667pt;}
.fs4_c01305{font-size:42.666667pt;}
.fs3_c01305{font-size:51.200000pt;}
.fs2_c01305{font-size:56.000000pt;}
.fs1_c01305{font-size:64.000000pt;}
.fs0_c01305{font-size:77.333333pt;}
.y0_c01305{bottom:0.000000pt;}
.y1f_c01305{bottom:2.760000pt;}
.y1e_c01305{bottom:6.425219pt;}
.y1d_c01305{bottom:34.813333pt;}
.y1c_c01305{bottom:53.746667pt;}
.y1b_c01305{bottom:78.013333pt;}
.y1a_c01305{bottom:100.280000pt;}
.y19_c01305{bottom:122.146667pt;}
.y18_c01305{bottom:143.746667pt;}
.y17_c01305{bottom:166.013333pt;}
.y16_c01305{bottom:188.680000pt;}
.y15_c01305{bottom:210.680000pt;}
.y14_c01305{bottom:233.080000pt;}
.y13_c01305{bottom:255.080000pt;}
.y12_c01305{bottom:276.680000pt;}
.y11_c01305{bottom:298.813333pt;}
.y10_c01305{bottom:321.880000pt;}
.yf_c01305{bottom:343.613333pt;}
.ye_c01305{bottom:363.880000pt;}
.yd_c01305{bottom:385.480000pt;}
.yc_c01305{bottom:404.813333pt;}
.yb_c01305{bottom:427.480000pt;}
.ya_c01305{bottom:450.413333pt;}
.y9_c01305{bottom:472.280000pt;}
.y8_c01305{bottom:494.680000pt;}
.y7_c01305{bottom:516.680000pt;}
.y6_c01305{bottom:539.080000pt;}
.y5_c01305{bottom:561.080000pt;}
.y4_c01305{bottom:581.746667pt;}
.y3_c01305{bottom:605.213333pt;}
.y2_c01305{bottom:626.813333pt;}
.y1_c01305{bottom:649.613333pt;}
.h5_c01305{height:11.733399pt;}
.h6_c01305{height:38.937500pt;}
.h4_c01305{height:64.825000pt;}
.h3_c01305{height:81.031250pt;}
.h2_c01305{height:97.912760pt;}
.h1_c01305{height:689.333333pt;}
.h0_c01305{height:689.533333pt;}
.w2_c01305{width:93.222667pt;}
.w0_c01305{width:487.933333pt;}
.w1_c01305{width:488.000000pt;}
.x0_c01305{left:0.000000pt;}
.x7_c01305{left:41.466667pt;}
.x8_c01305{left:42.666667pt;}
.x9_c01305{left:43.866667pt;}
.xb_c01305{left:110.400000pt;}
.xa_c01305{left:112.000000pt;}
.x6_c01305{left:114.000000pt;}
.x5_c01305{left:114.933333pt;}
.x4_c01305{left:116.400000pt;}
.x3_c01305{left:117.333333pt;}
.x2_c01305{left:118.800000pt;}
.xc_c01305{left:195.333333pt;}
.xe_c01305{left:201.134888pt;}
.x1_c01305{left:206.800000pt;}
.xd_c01305{left:372.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_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_12b6b9ab222c6506b67100ef.woff2')format("woff");}.ff1_c01306{font-family:ff1_c01306;line-height:1.568848;font-style:normal;font-weight:normal;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_326a26059f865fb55a051ff7.woff2')format("woff");}.ff2_c01306{font-family:ff2_c01306;line-height:1.480469;font-style:normal;font-weight:normal;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_4fd906f1479ad3fe7f34d223.woff2')format("woff");}.ff3_c01306{font-family:ff3_c01306;line-height:1.568848;font-style:normal;font-weight:normal;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_3410e6fc568577c99bdc9ee7.woff2')format("woff");}.ff4_c01306{font-family:ff4_c01306;line-height:1.592000;font-style:normal;font-weight:normal;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_11eed4c528c79c7cc1b97132.woff2')format("woff");}.ff5_c01306{font-family:ff5_c01306;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01306;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01306{font-family:ff6_c01306;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01306{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01306{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01306{vertical-align:0.000000px;}
.ls5_c01306{letter-spacing:-15.000000px;}
.ls3_c01306{letter-spacing:-3.000000px;}
.ls2_c01306{letter-spacing:0.000000px;}
.ls1_c01306{letter-spacing:3.000000px;}
.ls4_c01306{letter-spacing:6.000000px;}
.ls0_c01306{letter-spacing:24.000000px;}
.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:-105.204000px;}
.ws3_c01306{word-spacing:-38.844000px;}
.ws6_c01306{word-spacing:-30.420000px;}
.ws5_c01306{word-spacing:-24.336000px;}
.ws2_c01306{word-spacing:-20.352000px;}
.ws0_c01306{word-spacing:-18.798000px;}
.ws7_c01306{word-spacing:-15.798000px;}
.ws4_c01306{word-spacing:-3.798000px;}
.ws8_c01306{word-spacing:0.000000px;}
._28_c01306{margin-left:-52.278000px;}
._31_c01306{margin-left:-20.748000px;}
._2f_c01306{margin-left:-19.266000px;}
._22_c01306{margin-left:-18.096000px;}
._25_c01306{margin-left:-16.788000px;}
._33_c01306{margin-left:-15.678000px;}
._19_c01306{margin-left:-14.586000px;}
._23_c01306{margin-left:-13.182000px;}
._1e_c01306{margin-left:-11.388000px;}
._1d_c01306{margin-left:-10.284000px;}
._1f_c01306{margin-left:-8.424000px;}
._21_c01306{margin-left:-7.032000px;}
._20_c01306{margin-left:-5.472000px;}
._24_c01306{margin-left:-4.110000px;}
._1c_c01306{margin-left:-3.042000px;}
._1b_c01306{margin-left:-1.980000px;}
._c_c01306{width:1.080000px;}
._17_c01306{width:2.418000px;}
._1a_c01306{width:4.446000px;}
._2d_c01306{width:5.694000px;}
._14_c01306{width:6.696000px;}
._16_c01306{width:8.424000px;}
._10_c01306{width:9.504000px;}
._12_c01306{width:10.728000px;}
._15_c01306{width:11.736000px;}
._f_c01306{width:12.816000px;}
._18_c01306{width:13.920000px;}
._e_c01306{width:14.976000px;}
._b_c01306{width:16.131000px;}
._13_c01306{width:18.000000px;}
._3_c01306{width:22.185000px;}
._11_c01306{width:23.328000px;}
._5_c01306{width:24.447000px;}
._4_c01306{width:25.578000px;}
._a_c01306{width:28.158000px;}
._8_c01306{width:29.592000px;}
._9_c01306{width:31.959000px;}
._6_c01306{width:33.609000px;}
._7_c01306{width:34.704000px;}
._2_c01306{width:38.640000px;}
._1_c01306{width:40.044000px;}
._0_c01306{width:43.065000px;}
._3b_c01306{width:44.451000px;}
._2b_c01306{width:55.536000px;}
._27_c01306{width:66.570000px;}
._2c_c01306{width:70.488000px;}
._29_c01306{width:78.252000px;}
._38_c01306{width:90.048000px;}
._2e_c01306{width:119.733000px;}
._35_c01306{width:136.260000px;}
._d_c01306{width:175.248000px;}
._30_c01306{width:195.390000px;}
._3a_c01306{width:216.144000px;}
._3d_c01306{width:258.360000px;}
._2a_c01306{width:260.784000px;}
._37_c01306{width:298.944000px;}
._39_c01306{width:314.502000px;}
._34_c01306{width:339.942000px;}
._36_c01306{width:416.598000px;}
._32_c01306{width:584.532000px;}
._3e_c01306{width:734.988000px;}
._26_c01306{width:1246.584000px;}
._3c_c01306{width:1381.158000px;}
.fc2_c01306{color:transparent;}
.fc1_c01306{color:rgb(128,128,128);}
.fc0_c01306{color:rgb(0,0,0);}
.fs7_c01306{font-size:48.000000px;}
.fs2_c01306{font-size:51.000000px;}
.fs6_c01306{font-size:62.400000px;}
.fs5_c01306{font-size:66.000000px;}
.fs1_c01306{font-size:72.000000px;}
.fs3_c01306{font-size:78.000000px;}
.fs0_c01306{font-size:87.000000px;}
.fs4_c01306{font-size:132.000000px;}
.y0_c01306{bottom:0.000000px;}
.y1d_c01306{bottom:3.105000px;}
.y1c_c01306{bottom:7.228363px;}
.y1b_c01306{bottom:13.500000px;}
.y1a_c01306{bottom:38.850000px;}
.y19_c01306{bottom:62.400000px;}
.y18_c01306{bottom:90.150000px;}
.y17_c01306{bottom:111.750000px;}
.y16_c01306{bottom:137.400000px;}
.y15_c01306{bottom:165.000000px;}
.y14_c01306{bottom:187.200000px;}
.y13_c01306{bottom:212.250000px;}
.y12_c01306{bottom:236.250000px;}
.y11_c01306{bottom:261.450000px;}
.y10_c01306{bottom:286.500000px;}
.yf_c01306{bottom:311.100000px;}
.ye_c01306{bottom:337.050000px;}
.yd_c01306{bottom:359.100000px;}
.yc_c01306{bottom:384.750000px;}
.yb_c01306{bottom:410.400000px;}
.ya_c01306{bottom:433.950000px;}
.y9_c01306{bottom:458.550000px;}
.y8_c01306{bottom:482.550000px;}
.y7_c01306{bottom:508.650000px;}
.y6_c01306{bottom:533.550000px;}
.y5_c01306{bottom:564.300000px;}
.y4_c01306{bottom:606.750000px;}
.y3_c01306{bottom:615.900000px;}
.y2_c01306{bottom:655.800000px;}
.y1_c01306{bottom:693.450000px;}
.h8_c01306{height:13.200074px;}
.h9_c01306{height:43.804688px;}
.h4_c01306{height:64.571777px;}
.h3_c01306{height:91.160156px;}
.h5_c01306{height:91.291992px;}
.h6_c01306{height:98.756836px;}
.h2_c01306{height:110.151855px;}
.h7_c01306{height:167.126953px;}
.h1_c01306{height:781.500000px;}
.h0_c01306{height:781.650000px;}
.w2_c01306{width:104.875500px;}
.w0_c01306{width:519.450000px;}
.w1_c01306{width:519.750000px;}
.x0_c01306{left:0.000000px;}
.x1_c01306{left:27.750000px;}
.xc_c01306{left:31.350000px;}
.xd_c01306{left:33.150000px;}
.x8_c01306{left:34.200000px;}
.x4_c01306{left:43.950000px;}
.xa_c01306{left:51.600000px;}
.x7_c01306{left:55.650000px;}
.xb_c01306{left:58.500000px;}
.x6_c01306{left:69.900000px;}
.x2_c01306{left:70.950000px;}
.xe_c01306{left:72.000000px;}
.xf_c01306{left:79.050000px;}
.x3_c01306{left:101.250000px;}
.x5_c01306{left:121.950000px;}
.x11_c01306{left:211.539230px;}
.x10_c01306{left:416.250000px;}
.x9_c01306{left:439.050000px;}
@media print{
.v0_c01306{vertical-align:0.000000pt;}
.ls5_c01306{letter-spacing:-13.333333pt;}
.ls3_c01306{letter-spacing:-2.666667pt;}
.ls2_c01306{letter-spacing:0.000000pt;}
.ls1_c01306{letter-spacing:2.666667pt;}
.ls4_c01306{letter-spacing:5.333333pt;}
.ls0_c01306{letter-spacing:21.333333pt;}
.ws1_c01306{word-spacing:-93.514667pt;}
.ws3_c01306{word-spacing:-34.528000pt;}
.ws6_c01306{word-spacing:-27.040000pt;}
.ws5_c01306{word-spacing:-21.632000pt;}
.ws2_c01306{word-spacing:-18.090667pt;}
.ws0_c01306{word-spacing:-16.709333pt;}
.ws7_c01306{word-spacing:-14.042667pt;}
.ws4_c01306{word-spacing:-3.376000pt;}
.ws8_c01306{word-spacing:0.000000pt;}
._28_c01306{margin-left:-46.469333pt;}
._31_c01306{margin-left:-18.442667pt;}
._2f_c01306{margin-left:-17.125333pt;}
._22_c01306{margin-left:-16.085333pt;}
._25_c01306{margin-left:-14.922667pt;}
._33_c01306{margin-left:-13.936000pt;}
._19_c01306{margin-left:-12.965333pt;}
._23_c01306{margin-left:-11.717333pt;}
._1e_c01306{margin-left:-10.122667pt;}
._1d_c01306{margin-left:-9.141333pt;}
._1f_c01306{margin-left:-7.488000pt;}
._21_c01306{margin-left:-6.250667pt;}
._20_c01306{margin-left:-4.864000pt;}
._24_c01306{margin-left:-3.653333pt;}
._1c_c01306{margin-left:-2.704000pt;}
._1b_c01306{margin-left:-1.760000pt;}
._c_c01306{width:0.960000pt;}
._17_c01306{width:2.149333pt;}
._1a_c01306{width:3.952000pt;}
._2d_c01306{width:5.061333pt;}
._14_c01306{width:5.952000pt;}
._16_c01306{width:7.488000pt;}
._10_c01306{width:8.448000pt;}
._12_c01306{width:9.536000pt;}
._15_c01306{width:10.432000pt;}
._f_c01306{width:11.392000pt;}
._18_c01306{width:12.373333pt;}
._e_c01306{width:13.312000pt;}
._b_c01306{width:14.338667pt;}
._13_c01306{width:16.000000pt;}
._3_c01306{width:19.720000pt;}
._11_c01306{width:20.736000pt;}
._5_c01306{width:21.730667pt;}
._4_c01306{width:22.736000pt;}
._a_c01306{width:25.029333pt;}
._8_c01306{width:26.304000pt;}
._9_c01306{width:28.408000pt;}
._6_c01306{width:29.874667pt;}
._7_c01306{width:30.848000pt;}
._2_c01306{width:34.346667pt;}
._1_c01306{width:35.594667pt;}
._0_c01306{width:38.280000pt;}
._3b_c01306{width:39.512000pt;}
._2b_c01306{width:49.365333pt;}
._27_c01306{width:59.173333pt;}
._2c_c01306{width:62.656000pt;}
._29_c01306{width:69.557333pt;}
._38_c01306{width:80.042667pt;}
._2e_c01306{width:106.429333pt;}
._35_c01306{width:121.120000pt;}
._d_c01306{width:155.776000pt;}
._30_c01306{width:173.680000pt;}
._3a_c01306{width:192.128000pt;}
._3d_c01306{width:229.653333pt;}
._2a_c01306{width:231.808000pt;}
._37_c01306{width:265.728000pt;}
._39_c01306{width:279.557333pt;}
._34_c01306{width:302.170667pt;}
._36_c01306{width:370.309333pt;}
._32_c01306{width:519.584000pt;}
._3e_c01306{width:653.322667pt;}
._26_c01306{width:1108.074667pt;}
._3c_c01306{width:1227.696000pt;}
.fs7_c01306{font-size:42.666667pt;}
.fs2_c01306{font-size:45.333333pt;}
.fs6_c01306{font-size:55.466667pt;}
.fs5_c01306{font-size:58.666667pt;}
.fs1_c01306{font-size:64.000000pt;}
.fs3_c01306{font-size:69.333333pt;}
.fs0_c01306{font-size:77.333333pt;}
.fs4_c01306{font-size:117.333333pt;}
.y0_c01306{bottom:0.000000pt;}
.y1d_c01306{bottom:2.760000pt;}
.y1c_c01306{bottom:6.425212pt;}
.y1b_c01306{bottom:12.000000pt;}
.y1a_c01306{bottom:34.533333pt;}
.y19_c01306{bottom:55.466667pt;}
.y18_c01306{bottom:80.133333pt;}
.y17_c01306{bottom:99.333333pt;}
.y16_c01306{bottom:122.133333pt;}
.y15_c01306{bottom:146.666667pt;}
.y14_c01306{bottom:166.400000pt;}
.y13_c01306{bottom:188.666667pt;}
.y12_c01306{bottom:210.000000pt;}
.y11_c01306{bottom:232.400000pt;}
.y10_c01306{bottom:254.666667pt;}
.yf_c01306{bottom:276.533333pt;}
.ye_c01306{bottom:299.600000pt;}
.yd_c01306{bottom:319.200000pt;}
.yc_c01306{bottom:342.000000pt;}
.yb_c01306{bottom:364.800000pt;}
.ya_c01306{bottom:385.733333pt;}
.y9_c01306{bottom:407.600000pt;}
.y8_c01306{bottom:428.933333pt;}
.y7_c01306{bottom:452.133333pt;}
.y6_c01306{bottom:474.266667pt;}
.y5_c01306{bottom:501.600000pt;}
.y4_c01306{bottom:539.333333pt;}
.y3_c01306{bottom:547.466667pt;}
.y2_c01306{bottom:582.933333pt;}
.y1_c01306{bottom:616.400000pt;}
.h8_c01306{height:11.733399pt;}
.h9_c01306{height:38.937500pt;}
.h4_c01306{height:57.397135pt;}
.h3_c01306{height:81.031250pt;}
.h5_c01306{height:81.148438pt;}
.h6_c01306{height:87.783854pt;}
.h2_c01306{height:97.912760pt;}
.h7_c01306{height:148.557292pt;}
.h1_c01306{height:694.666667pt;}
.h0_c01306{height:694.800000pt;}
.w2_c01306{width:93.222667pt;}
.w0_c01306{width:461.733333pt;}
.w1_c01306{width:462.000000pt;}
.x0_c01306{left:0.000000pt;}
.x1_c01306{left:24.666667pt;}
.xc_c01306{left:27.866667pt;}
.xd_c01306{left:29.466667pt;}
.x8_c01306{left:30.400000pt;}
.x4_c01306{left:39.066667pt;}
.xa_c01306{left:45.866667pt;}
.x7_c01306{left:49.466667pt;}
.xb_c01306{left:52.000000pt;}
.x6_c01306{left:62.133333pt;}
.x2_c01306{left:63.066667pt;}
.xe_c01306{left:64.000000pt;}
.xf_c01306{left:70.266667pt;}
.x3_c01306{left:90.000000pt;}
.x5_c01306{left:108.400000pt;}
.x11_c01306{left:188.034871pt;}
.x10_c01306{left:370.000000pt;}
.x9_c01306{left:390.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_47ea3b00f4be6614f6361831.woff2')format("woff");}.ff1_c01307{font-family:ff1_c01307;line-height:1.284180;font-style:normal;font-weight:normal;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_f8cdc97d604a9cb2639350bb.woff2')format("woff");}.ff2_c01307{font-family:ff2_c01307;line-height:1.480469;font-style:normal;font-weight:normal;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_516740c3fe092587dc7effc9.woff2')format("woff");}.ff3_c01307{font-family:ff3_c01307;line-height:1.568848;font-style:normal;font-weight:normal;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_b9fc106cc61a606c0b7ce8cd.woff2')format("woff");}.ff4_c01307{font-family:ff4_c01307;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01307;src:url('chunks/assets/font_27443ce9b4e0cd9bf64b9d78.woff2')format("woff");}.ff5_c01307{font-family:ff5_c01307;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01307;src:url('chunks/assets/font_e9a57ca89a7da4850937d3b7.woff2')format("woff");}.ff6_c01307{font-family:ff6_c01307;line-height:1.480469;font-style:normal;font-weight: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_c01307;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c01307{font-family:ff7_c01307;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01307{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01307{vertical-align:0.000000px;}
.v1_c01307{vertical-align:112.200000px;}
.ls3_c01307{letter-spacing:-3.000000px;}
.ls4_c01307{letter-spacing:0.000000px;}
.ls5_c01307{letter-spacing:3.000000px;}
.ls6_c01307{letter-spacing:6.000000px;}
.ls1_c01307{letter-spacing:20.712000px;}
.ls2_c01307{letter-spacing:27.000000px;}
.ls0_c01307{letter-spacing:61.476000px;}
.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:-56.250000px;}
.ws2_c01307{word-spacing:-19.464000px;}
.ws3_c01307{word-spacing:-18.000000px;}
.ws4_c01307{word-spacing:-17.250000px;}
.ws1_c01307{word-spacing:-14.352000px;}
.ws5_c01307{word-spacing:0.000000px;}
._22_c01307{margin-left:-16.740000px;}
._1a_c01307{margin-left:-15.336000px;}
._5_c01307{margin-left:-13.752000px;}
._19_c01307{margin-left:-12.336000px;}
._12_c01307{margin-left:-10.440000px;}
._16_c01307{margin-left:-9.288000px;}
._8_c01307{margin-left:-7.344000px;}
._7_c01307{margin-left:-5.616000px;}
._9_c01307{margin-left:-3.888000px;}
._4_c01307{margin-left:-2.808000px;}
._3_c01307{margin-left:-1.728000px;}
._f_c01307{width:1.512000px;}
._b_c01307{width:3.096000px;}
._c_c01307{width:4.320000px;}
._a_c01307{width:5.760000px;}
._1c_c01307{width:7.200000px;}
._6_c01307{width:8.856000px;}
._18_c01307{width:10.560000px;}
._11_c01307{width:11.592000px;}
._20_c01307{width:13.032000px;}
._0_c01307{width:15.093000px;}
._1_c01307{width:16.497000px;}
._2_c01307{width:18.369000px;}
._15_c01307{width:20.304000px;}
._14_c01307{width:27.792000px;}
._1f_c01307{width:110.880000px;}
._1b_c01307{width:168.744000px;}
._21_c01307{width:182.328000px;}
._1e_c01307{width:190.800000px;}
._17_c01307{width:228.456000px;}
._23_c01307{width:330.192000px;}
._e_c01307{width:514.008000px;}
._1d_c01307{width:632.418000px;}
._10_c01307{width:1037.520000px;}
._24_c01307{width:1132.896000px;}
._13_c01307{width:1165.680000px;}
._d_c01307{width:1336.752000px;}
.fc2_c01307{color:transparent;}
.fc1_c01307{color:rgb(128,128,128);}
.fc0_c01307{color:rgb(0,0,0);}
.fs9_c01307{font-size:48.000000px;}
.fs6_c01307{font-size:57.600000px;}
.fs2_c01307{font-size:60.000000px;}
.fs7_c01307{font-size:69.000000px;}
.fs1_c01307{font-size:72.000000px;}
.fs3_c01307{font-size:78.000000px;}
.fs8_c01307{font-size:84.000000px;}
.fs4_c01307{font-size:99.000000px;}
.fs0_c01307{font-size:117.000000px;}
.fs5_c01307{font-size:222.000000px;}
.y0_c01307{bottom:0.000000px;}
.y1b_c01307{bottom:3.105000px;}
.y1a_c01307{bottom:7.228355px;}
.y19_c01307{bottom:58.935000px;}
.y18_c01307{bottom:80.235000px;}
.y17_c01307{bottom:108.885000px;}
.y16_c01307{bottom:135.885000px;}
.y15_c01307{bottom:160.335000px;}
.y14_c01307{bottom:184.935000px;}
.y13_c01307{bottom:210.885000px;}
.y12_c01307{bottom:232.185000px;}
.y11_c01307{bottom:261.435000px;}
.y10_c01307{bottom:285.435000px;}
.yf_c01307{bottom:336.435000px;}
.ye_c01307{bottom:359.985000px;}
.yc_c01307{bottom:379.935000px;}
.yd_c01307{bottom:383.685000px;}
.yb_c01307{bottom:449.535000px;}
.ya_c01307{bottom:503.835000px;}
.y9_c01307{bottom:529.485000px;}
.y8_c01307{bottom:553.785000px;}
.y7_c01307{bottom:579.135000px;}
.y6_c01307{bottom:603.735000px;}
.y5_c01307{bottom:628.635000px;}
.y4_c01307{bottom:653.985000px;}
.y3_c01307{bottom:678.735000px;}
.y2_c01307{bottom:703.035000px;}
.y1_c01307{bottom:728.535000px;}
.hb_c01307{height:13.200074px;}
.hc_c01307{height:43.804688px;}
.h9_c01307{height:70.628906px;}
.h4_c01307{height:84.269531px;}
.h3_c01307{height:91.160156px;}
.h8_c01307{height:91.291992px;}
.h6_c01307{height:97.163086px;}
.ha_c01307{height:98.314453px;}
.h5_c01307{height:98.756836px;}
.h2_c01307{height:114.771973px;}
.h7_c01307{height:259.831055px;}
.h0_c01307{height:783.525000px;}
.h1_c01307{height:783.750000px;}
.w2_c01307{width:104.875500px;}
.w0_c01307{width:532.425000px;}
.w1_c01307{width:532.500000px;}
.x0_c01307{left:0.000000px;}
.xc_c01307{left:63.750000px;}
.x11_c01307{left:69.150000px;}
.x10_c01307{left:70.500000px;}
.xd_c01307{left:72.150000px;}
.x9_c01307{left:73.950000px;}
.xa_c01307{left:76.650000px;}
.x5_c01307{left:78.900000px;}
.x4_c01307{left:79.950000px;}
.x12_c01307{left:93.750000px;}
.xf_c01307{left:94.800000px;}
.x8_c01307{left:101.250000px;}
.x6_c01307{left:102.900000px;}
.xe_c01307{left:104.550000px;}
.x3_c01307{left:105.600000px;}
.x7_c01307{left:114.450000px;}
.x2_c01307{left:123.900000px;}
.xb_c01307{left:144.150000px;}
.x13_c01307{left:218.026749px;}
.x1_c01307{left:229.800000px;}
@media print{
.v0_c01307{vertical-align:0.000000pt;}
.v1_c01307{vertical-align:99.733333pt;}
.ls3_c01307{letter-spacing:-2.666667pt;}
.ls4_c01307{letter-spacing:0.000000pt;}
.ls5_c01307{letter-spacing:2.666667pt;}
.ls6_c01307{letter-spacing:5.333333pt;}
.ls1_c01307{letter-spacing:18.410667pt;}
.ls2_c01307{letter-spacing:24.000000pt;}
.ls0_c01307{letter-spacing:54.645333pt;}
.ws0_c01307{word-spacing:-50.000000pt;}
.ws2_c01307{word-spacing:-17.301333pt;}
.ws3_c01307{word-spacing:-16.000000pt;}
.ws4_c01307{word-spacing:-15.333333pt;}
.ws1_c01307{word-spacing:-12.757333pt;}
.ws5_c01307{word-spacing:0.000000pt;}
._22_c01307{margin-left:-14.880000pt;}
._1a_c01307{margin-left:-13.632000pt;}
._5_c01307{margin-left:-12.224000pt;}
._19_c01307{margin-left:-10.965333pt;}
._12_c01307{margin-left:-9.280000pt;}
._16_c01307{margin-left:-8.256000pt;}
._8_c01307{margin-left:-6.528000pt;}
._7_c01307{margin-left:-4.992000pt;}
._9_c01307{margin-left:-3.456000pt;}
._4_c01307{margin-left:-2.496000pt;}
._3_c01307{margin-left:-1.536000pt;}
._f_c01307{width:1.344000pt;}
._b_c01307{width:2.752000pt;}
._c_c01307{width:3.840000pt;}
._a_c01307{width:5.120000pt;}
._1c_c01307{width:6.400000pt;}
._6_c01307{width:7.872000pt;}
._18_c01307{width:9.386667pt;}
._11_c01307{width:10.304000pt;}
._20_c01307{width:11.584000pt;}
._0_c01307{width:13.416000pt;}
._1_c01307{width:14.664000pt;}
._2_c01307{width:16.328000pt;}
._15_c01307{width:18.048000pt;}
._14_c01307{width:24.704000pt;}
._1f_c01307{width:98.560000pt;}
._1b_c01307{width:149.994667pt;}
._21_c01307{width:162.069333pt;}
._1e_c01307{width:169.600000pt;}
._17_c01307{width:203.072000pt;}
._23_c01307{width:293.504000pt;}
._e_c01307{width:456.896000pt;}
._1d_c01307{width:562.149333pt;}
._10_c01307{width:922.240000pt;}
._24_c01307{width:1007.018667pt;}
._13_c01307{width:1036.160000pt;}
._d_c01307{width:1188.224000pt;}
.fs9_c01307{font-size:42.666667pt;}
.fs6_c01307{font-size:51.200000pt;}
.fs2_c01307{font-size:53.333333pt;}
.fs7_c01307{font-size:61.333333pt;}
.fs1_c01307{font-size:64.000000pt;}
.fs3_c01307{font-size:69.333333pt;}
.fs8_c01307{font-size:74.666667pt;}
.fs4_c01307{font-size:88.000000pt;}
.fs0_c01307{font-size:104.000000pt;}
.fs5_c01307{font-size:197.333333pt;}
.y0_c01307{bottom:0.000000pt;}
.y1b_c01307{bottom:2.760000pt;}
.y1a_c01307{bottom:6.425204pt;}
.y19_c01307{bottom:52.386667pt;}
.y18_c01307{bottom:71.320000pt;}
.y17_c01307{bottom:96.786667pt;}
.y16_c01307{bottom:120.786667pt;}
.y15_c01307{bottom:142.520000pt;}
.y14_c01307{bottom:164.386667pt;}
.y13_c01307{bottom:187.453333pt;}
.y12_c01307{bottom:206.386667pt;}
.y11_c01307{bottom:232.386667pt;}
.y10_c01307{bottom:253.720000pt;}
.yf_c01307{bottom:299.053333pt;}
.ye_c01307{bottom:319.986667pt;}
.yc_c01307{bottom:337.720000pt;}
.yd_c01307{bottom:341.053333pt;}
.yb_c01307{bottom:399.586667pt;}
.ya_c01307{bottom:447.853333pt;}
.y9_c01307{bottom:470.653333pt;}
.y8_c01307{bottom:492.253333pt;}
.y7_c01307{bottom:514.786667pt;}
.y6_c01307{bottom:536.653333pt;}
.y5_c01307{bottom:558.786667pt;}
.y4_c01307{bottom:581.320000pt;}
.y3_c01307{bottom:603.320000pt;}
.y2_c01307{bottom:624.920000pt;}
.y1_c01307{bottom:647.586667pt;}
.hb_c01307{height:11.733399pt;}
.hc_c01307{height:38.937500pt;}
.h9_c01307{height:62.781250pt;}
.h4_c01307{height:74.906250pt;}
.h3_c01307{height:81.031250pt;}
.h8_c01307{height:81.148438pt;}
.h6_c01307{height:86.367188pt;}
.ha_c01307{height:87.390625pt;}
.h5_c01307{height:87.783854pt;}
.h2_c01307{height:102.019531pt;}
.h7_c01307{height:230.960938pt;}
.h0_c01307{height:696.466667pt;}
.h1_c01307{height:696.666667pt;}
.w2_c01307{width:93.222667pt;}
.w0_c01307{width:473.266667pt;}
.w1_c01307{width:473.333333pt;}
.x0_c01307{left:0.000000pt;}
.xc_c01307{left:56.666667pt;}
.x11_c01307{left:61.466667pt;}
.x10_c01307{left:62.666667pt;}
.xd_c01307{left:64.133333pt;}
.x9_c01307{left:65.733333pt;}
.xa_c01307{left:68.133333pt;}
.x5_c01307{left:70.133333pt;}
.x4_c01307{left:71.066667pt;}
.x12_c01307{left:83.333333pt;}
.xf_c01307{left:84.266667pt;}
.x8_c01307{left:90.000000pt;}
.x6_c01307{left:91.466667pt;}
.xe_c01307{left:92.933333pt;}
.x3_c01307{left:93.866667pt;}
.x7_c01307{left:101.733333pt;}
.x2_c01307{left:110.133333pt;}
.xb_c01307{left:128.133333pt;}
.x13_c01307{left:193.801554pt;}
.x1_c01307{left:204.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea9ff5c2f3b48bc946cfdb02.woff2')format("woff");}.ff1_c01308{font-family:ff1_c01308;line-height:1.480469;font-style:normal;font-weight:normal;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_9b53360ed2cdc8e5c8870f44.woff2')format("woff");}.ff2_c01308{font-family:ff2_c01308;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01308;src:url('chunks/assets/font_4bf26d9cdb7b2a46da6cdccc.woff2')format("woff");}.ff3_c01308{font-family:ff3_c01308;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01308;src:url('chunks/assets/font_0bdcd0e56bb2c5f8b71d739c.woff2')format("woff");}.ff4_c01308{font-family:ff4_c01308;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01308;src:url('chunks/assets/font_441c76c67cf473ba574bb862.woff2')format("woff");}.ff5_c01308{font-family:ff5_c01308;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01308;src:url('chunks/assets/font_7f4b0d1febba7ec040ef05e4.woff2')format("woff");}.ff6_c01308{font-family:ff6_c01308;line-height:1.284668;font-style:normal;font-weight: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_c01308;src:url('chunks/assets/font_837c441094fa687b90f19a17.woff2')format("woff");}.ff7_c01308{font-family:ff7_c01308;line-height:1.284180;font-style:normal;font-weight: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_c01308;src:url('chunks/assets/font_4fef8fe18e792c93f9c38a62.woff2')format("woff");}.ff8_c01308{font-family:ff8_c01308;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01308;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff9_c01308{font-family:ff9_c01308;line-height:1.219238;font-style: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);}
.m1_c01308{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01308{vertical-align:0.000000px;}
.v1_c01308{vertical-align:91.200000px;}
.v2_c01308{vertical-align:102.600000px;}
.ls6_c01308{letter-spacing:-3.000000px;}
.ls5_c01308{letter-spacing:0.000000px;}
.ls1_c01308{letter-spacing:2.388000px;}
.ls7_c01308{letter-spacing:3.000000px;}
.ls3_c01308{letter-spacing:4.800000px;}
.ls2_c01308{letter-spacing:5.400000px;}
.ls8_c01308{letter-spacing:6.000000px;}
.ls0_c01308{letter-spacing:54.900000px;}
.ls4_c01308{letter-spacing:133.500000px;}
.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:-45.000000px;}
.ws1_c01308{word-spacing:-14.352000px;}
.ws2_c01308{word-spacing:0.000000px;}
._1f_c01308{margin-left:-27.072000px;}
._1c_c01308{margin-left:-19.587000px;}
._1b_c01308{margin-left:-18.000000px;}
._16_c01308{margin-left:-15.408000px;}
._14_c01308{margin-left:-14.400000px;}
._17_c01308{margin-left:-12.090000px;}
._18_c01308{margin-left:-10.299000px;}
._22_c01308{margin-left:-9.228000px;}
._12_c01308{margin-left:-8.106000px;}
._1d_c01308{margin-left:-6.258000px;}
._c_c01308{margin-left:-5.046000px;}
._10_c01308{margin-left:-3.168000px;}
._11_c01308{margin-left:-1.872000px;}
._a_c01308{width:1.479000px;}
._b_c01308{width:2.610000px;}
._9_c01308{width:3.915000px;}
._e_c01308{width:5.133000px;}
._8_c01308{width:6.873000px;}
._7_c01308{width:8.265000px;}
._f_c01308{width:9.570000px;}
._21_c01308{width:11.349000px;}
._d_c01308{width:13.311000px;}
._15_c01308{width:16.008000px;}
._25_c01308{width:17.712000px;}
._29_c01308{width:21.915000px;}
._1_c01308{width:25.440000px;}
._6_c01308{width:32.820000px;}
._23_c01308{width:35.016000px;}
._5_c01308{width:36.240000px;}
._4_c01308{width:41.820000px;}
._13_c01308{width:43.272000px;}
._3_c01308{width:48.360000px;}
._2_c01308{width:49.920000px;}
._0_c01308{width:57.060000px;}
._1e_c01308{width:121.374000px;}
._26_c01308{width:167.331000px;}
._28_c01308{width:329.496000px;}
._1a_c01308{width:335.280000px;}
._2b_c01308{width:399.384000px;}
._19_c01308{width:466.989000px;}
._27_c01308{width:556.938000px;}
._2a_c01308{width:666.651000px;}
._20_c01308{width:958.536000px;}
._24_c01308{width:1417.824000px;}
.fc2_c01308{color:transparent;}
.fc1_c01308{color:rgb(128,128,128);}
.fc0_c01308{color:rgb(0,0,0);}
.fs8_c01308{font-size:48.000000px;}
.fs0_c01308{font-size:60.000000px;}
.fs4_c01308{font-size:63.000000px;}
.fs3_c01308{font-size:72.000000px;}
.fs5_c01308{font-size:78.000000px;}
.fs1_c01308{font-size:87.000000px;}
.fs6_c01308{font-size:99.000000px;}
.fs7_c01308{font-size:156.000000px;}
.fs2_c01308{font-size:171.000000px;}
.y0_c01308{bottom:0.000000px;}
.y1b_c01308{bottom:3.105000px;}
.y1a_c01308{bottom:7.228357px;}
.y19_c01308{bottom:22.230000px;}
.y18_c01308{bottom:48.030000px;}
.y17_c01308{bottom:75.030000px;}
.y14_c01308{bottom:81.330000px;}
.y16_c01308{bottom:99.330000px;}
.y15_c01308{bottom:142.380000px;}
.y13_c01308{bottom:198.180000px;}
.y12_c01308{bottom:223.080000px;}
.y11_c01308{bottom:247.830000px;}
.y10_c01308{bottom:273.480000px;}
.yf_c01308{bottom:297.630000px;}
.ye_c01308{bottom:364.230000px;}
.yd_c01308{bottom:418.530000px;}
.yc_c01308{bottom:443.880000px;}
.yb_c01308{bottom:469.830000px;}
.ya_c01308{bottom:493.830000px;}
.y9_c01308{bottom:518.430000px;}
.y8_c01308{bottom:542.730000px;}
.y7_c01308{bottom:568.080000px;}
.y6_c01308{bottom:592.380000px;}
.y5_c01308{bottom:616.680000px;}
.y4_c01308{bottom:643.680000px;}
.y3_c01308{bottom:644.430000px;}
.y2_c01308{bottom:712.830000px;}
.y1_c01308{bottom:740.130000px;}
.hc_c01308{height:13.200074px;}
.hd_c01308{height:43.804688px;}
.h2_c01308{height:70.224609px;}
.ha_c01308{height:70.664062px;}
.hb_c01308{height:78.609375px;}
.h6_c01308{height:84.269531px;}
.h5_c01308{height:91.160156px;}
.h7_c01308{height:97.163086px;}
.h3_c01308{height:110.151855px;}
.h4_c01308{height:175.469531px;}
.h8_c01308{height:186.869531px;}
.h9_c01308{height:197.513672px;}
.h0_c01308{height:788.700000px;}
.h1_c01308{height:789.000000px;}
.w2_c01308{width:104.875500px;}
.w0_c01308{width:530.850000px;}
.w1_c01308{width:531.000000px;}
.x0_c01308{left:0.000000px;}
.x3_c01308{left:14.550000px;}
.xe_c01308{left:21.150000px;}
.x6_c01308{left:23.850000px;}
.xa_c01308{left:25.650000px;}
.x9_c01308{left:31.350000px;}
.x5_c01308{left:46.500000px;}
.x7_c01308{left:47.700000px;}
.x11_c01308{left:57.150000px;}
.x8_c01308{left:60.750000px;}
.xf_c01308{left:62.400000px;}
.xc_c01308{left:69.750000px;}
.x4_c01308{left:87.750000px;}
.x2_c01308{left:93.750000px;}
.x10_c01308{left:98.550000px;}
.xd_c01308{left:104.850000px;}
.x1_c01308{left:156.300000px;}
.xb_c01308{left:160.350000px;}
.x13_c01308{left:217.239258px;}
.x12_c01308{left:418.200000px;}
@media print{
.v0_c01308{vertical-align:0.000000pt;}
.v1_c01308{vertical-align:81.066667pt;}
.v2_c01308{vertical-align:91.200000pt;}
.ls6_c01308{letter-spacing:-2.666667pt;}
.ls5_c01308{letter-spacing:0.000000pt;}
.ls1_c01308{letter-spacing:2.122667pt;}
.ls7_c01308{letter-spacing:2.666667pt;}
.ls3_c01308{letter-spacing:4.266667pt;}
.ls2_c01308{letter-spacing:4.800000pt;}
.ls8_c01308{letter-spacing:5.333333pt;}
.ls0_c01308{letter-spacing:48.800000pt;}
.ls4_c01308{letter-spacing:118.666667pt;}
.ws0_c01308{word-spacing:-40.000000pt;}
.ws1_c01308{word-spacing:-12.757333pt;}
.ws2_c01308{word-spacing:0.000000pt;}
._1f_c01308{margin-left:-24.064000pt;}
._1c_c01308{margin-left:-17.410667pt;}
._1b_c01308{margin-left:-16.000000pt;}
._16_c01308{margin-left:-13.696000pt;}
._14_c01308{margin-left:-12.800000pt;}
._17_c01308{margin-left:-10.746667pt;}
._18_c01308{margin-left:-9.154667pt;}
._22_c01308{margin-left:-8.202667pt;}
._12_c01308{margin-left:-7.205333pt;}
._1d_c01308{margin-left:-5.562667pt;}
._c_c01308{margin-left:-4.485333pt;}
._10_c01308{margin-left:-2.816000pt;}
._11_c01308{margin-left:-1.664000pt;}
._a_c01308{width:1.314667pt;}
._b_c01308{width:2.320000pt;}
._9_c01308{width:3.480000pt;}
._e_c01308{width:4.562667pt;}
._8_c01308{width:6.109333pt;}
._7_c01308{width:7.346667pt;}
._f_c01308{width:8.506667pt;}
._21_c01308{width:10.088000pt;}
._d_c01308{width:11.832000pt;}
._15_c01308{width:14.229333pt;}
._25_c01308{width:15.744000pt;}
._29_c01308{width:19.480000pt;}
._1_c01308{width:22.613333pt;}
._6_c01308{width:29.173333pt;}
._23_c01308{width:31.125333pt;}
._5_c01308{width:32.213333pt;}
._4_c01308{width:37.173333pt;}
._13_c01308{width:38.464000pt;}
._3_c01308{width:42.986667pt;}
._2_c01308{width:44.373333pt;}
._0_c01308{width:50.720000pt;}
._1e_c01308{width:107.888000pt;}
._26_c01308{width:148.738667pt;}
._28_c01308{width:292.885333pt;}
._1a_c01308{width:298.026667pt;}
._2b_c01308{width:355.008000pt;}
._19_c01308{width:415.101333pt;}
._27_c01308{width:495.056000pt;}
._2a_c01308{width:592.578667pt;}
._20_c01308{width:852.032000pt;}
._24_c01308{width:1260.288000pt;}
.fs8_c01308{font-size:42.666667pt;}
.fs0_c01308{font-size:53.333333pt;}
.fs4_c01308{font-size:56.000000pt;}
.fs3_c01308{font-size:64.000000pt;}
.fs5_c01308{font-size:69.333333pt;}
.fs1_c01308{font-size:77.333333pt;}
.fs6_c01308{font-size:88.000000pt;}
.fs7_c01308{font-size:138.666667pt;}
.fs2_c01308{font-size:152.000000pt;}
.y0_c01308{bottom:0.000000pt;}
.y1b_c01308{bottom:2.760000pt;}
.y1a_c01308{bottom:6.425206pt;}
.y19_c01308{bottom:19.760000pt;}
.y18_c01308{bottom:42.693333pt;}
.y17_c01308{bottom:66.693333pt;}
.y14_c01308{bottom:72.293333pt;}
.y16_c01308{bottom:88.293333pt;}
.y15_c01308{bottom:126.560000pt;}
.y13_c01308{bottom:176.160000pt;}
.y12_c01308{bottom:198.293333pt;}
.y11_c01308{bottom:220.293333pt;}
.y10_c01308{bottom:243.093333pt;}
.yf_c01308{bottom:264.560000pt;}
.ye_c01308{bottom:323.760000pt;}
.yd_c01308{bottom:372.026667pt;}
.yc_c01308{bottom:394.560000pt;}
.yb_c01308{bottom:417.626667pt;}
.ya_c01308{bottom:438.960000pt;}
.y9_c01308{bottom:460.826667pt;}
.y8_c01308{bottom:482.426667pt;}
.y7_c01308{bottom:504.960000pt;}
.y6_c01308{bottom:526.560000pt;}
.y5_c01308{bottom:548.160000pt;}
.y4_c01308{bottom:572.160000pt;}
.y3_c01308{bottom:572.826667pt;}
.y2_c01308{bottom:633.626667pt;}
.y1_c01308{bottom:657.893333pt;}
.hc_c01308{height:11.733399pt;}
.hd_c01308{height:38.937500pt;}
.h2_c01308{height:62.421875pt;}
.ha_c01308{height:62.812500pt;}
.hb_c01308{height:69.875000pt;}
.h6_c01308{height:74.906250pt;}
.h5_c01308{height:81.031250pt;}
.h7_c01308{height:86.367188pt;}
.h3_c01308{height:97.912760pt;}
.h4_c01308{height:155.972917pt;}
.h8_c01308{height:166.106250pt;}
.h9_c01308{height:175.567708pt;}
.h0_c01308{height:701.066667pt;}
.h1_c01308{height:701.333333pt;}
.w2_c01308{width:93.222667pt;}
.w0_c01308{width:471.866667pt;}
.w1_c01308{width:472.000000pt;}
.x0_c01308{left:0.000000pt;}
.x3_c01308{left:12.933333pt;}
.xe_c01308{left:18.800000pt;}
.x6_c01308{left:21.200000pt;}
.xa_c01308{left:22.800000pt;}
.x9_c01308{left:27.866667pt;}
.x5_c01308{left:41.333333pt;}
.x7_c01308{left:42.400000pt;}
.x11_c01308{left:50.800000pt;}
.x8_c01308{left:54.000000pt;}
.xf_c01308{left:55.466667pt;}
.xc_c01308{left:62.000000pt;}
.x4_c01308{left:78.000000pt;}
.x2_c01308{left:83.333333pt;}
.x10_c01308{left:87.600000pt;}
.xd_c01308{left:93.200000pt;}
.x1_c01308{left:138.933333pt;}
.xb_c01308{left:142.533333pt;}
.x13_c01308{left:193.101563pt;}
.x12_c01308{left:371.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_867ba7f4b3d9af21286da625.woff2')format("woff");}.ff1_c01309{font-family:ff1_c01309;line-height:1.284180;font-style:normal;font-weight:normal;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_7570da68996db4a750bd6204.woff2')format("woff");}.ff2_c01309{font-family:ff2_c01309;line-height:1.480469;font-style:normal;font-weight:normal;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_c2389428535e597dcadd75f4.woff2')format("woff");}.ff3_c01309{font-family:ff3_c01309;line-height:1.568848;font-style:normal;font-weight:normal;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_8d60d5b9195d5fff721b21c1.woff2')format("woff");}.ff4_c01309{font-family:ff4_c01309;line-height:1.284180;font-style:normal;font-weight:normal;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_7ed59ff60b5d01606ccb5eef.woff2')format("woff");}.ff5_c01309{font-family:ff5_c01309;line-height:1.284668;font-style:normal;font-weight:normal;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_63f16e5ed0ed6c0e237f5578.woff2')format("woff");}.ff6_c01309{font-family:ff6_c01309;line-height:1.592000;font-style:normal;font-weight: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_c01309;src:url('chunks/assets/font_0c00b7a9ca99f729860505bc.woff2')format("woff");}.ff7_c01309{font-family:ff7_c01309;line-height:1.575000;font-style:normal;font-weight: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_c01309;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff8_c01309{font-family:ff8_c01309;line-height:1.219238;font-style: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);}
.v0_c01309{vertical-align:0.000000px;}
.v1_c01309{vertical-align:111.600000px;}
.ls4_c01309{letter-spacing:-15.000000px;}
.ls9_c01309{letter-spacing:-6.000000px;}
.ls5_c01309{letter-spacing:-3.000000px;}
.ls2_c01309{letter-spacing:0.000000px;}
.ls6_c01309{letter-spacing:3.000000px;}
.ls8_c01309{letter-spacing:6.000000px;}
.ls1_c01309{letter-spacing:10.632000px;}
.ls7_c01309{letter-spacing:12.000000px;}
.ls3_c01309{letter-spacing:21.000000px;}
.ls0_c01309{letter-spacing:43.722000px;}
.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;}
}
.ws4_c01309{word-spacing:-38.844000px;}
.ws7_c01309{word-spacing:-36.051000px;}
.ws5_c01309{word-spacing:-18.798000px;}
.ws2_c01309{word-spacing:-16.500000px;}
.ws3_c01309{word-spacing:-14.352000px;}
.ws0_c01309{word-spacing:-14.136000px;}
.ws6_c01309{word-spacing:-12.798000px;}
.ws1_c01309{word-spacing:-3.798000px;}
.ws8_c01309{word-spacing:0.000000px;}
._3c_c01309{margin-left:-65.088000px;}
._2f_c01309{margin-left:-45.924000px;}
._3f_c01309{margin-left:-41.760000px;}
._22_c01309{margin-left:-40.608000px;}
._f_c01309{margin-left:-35.568000px;}
._10_c01309{margin-left:-31.668000px;}
._11_c01309{margin-left:-30.048000px;}
._33_c01309{margin-left:-28.578000px;}
._2d_c01309{margin-left:-26.796000px;}
._37_c01309{margin-left:-23.166000px;}
._2b_c01309{margin-left:-21.978000px;}
._24_c01309{margin-left:-20.304000px;}
._1c_c01309{margin-left:-18.072000px;}
._2e_c01309{margin-left:-16.566000px;}
._1a_c01309{margin-left:-14.904000px;}
._12_c01309{margin-left:-13.650000px;}
._29_c01309{margin-left:-11.520000px;}
._d_c01309{margin-left:-9.984000px;}
._5_c01309{margin-left:-8.580000px;}
._3_c01309{margin-left:-7.488000px;}
._2_c01309{margin-left:-5.694000px;}
._4_c01309{margin-left:-4.368000px;}
._a_c01309{margin-left:-2.496000px;}
._c_c01309{margin-left:-1.170000px;}
._20_c01309{width:1.050000px;}
._13_c01309{width:2.178000px;}
._8_c01309{width:3.354000px;}
._1f_c01309{width:4.662000px;}
._e_c01309{width:5.772000px;}
._14_c01309{width:7.176000px;}
._25_c01309{width:8.640000px;}
._7_c01309{width:9.672000px;}
._b_c01309{width:10.764000px;}
._17_c01309{width:12.888000px;}
._30_c01309{width:14.718000px;}
._15_c01309{width:16.830000px;}
._1_c01309{width:17.976000px;}
._32_c01309{width:20.946000px;}
._26_c01309{width:25.344000px;}
._21_c01309{width:29.340000px;}
._27_c01309{width:30.684000px;}
._1b_c01309{width:33.624000px;}
._0_c01309{width:39.984000px;}
._19_c01309{width:43.176000px;}
._2c_c01309{width:48.312000px;}
._3e_c01309{width:50.514000px;}
._9_c01309{width:58.032000px;}
._18_c01309{width:65.436000px;}
._1e_c01309{width:76.368000px;}
._2a_c01309{width:88.512000px;}
._39_c01309{width:106.728000px;}
._38_c01309{width:146.796000px;}
._3b_c01309{width:172.644000px;}
._6_c01309{width:220.194000px;}
._3d_c01309{width:244.224000px;}
._1d_c01309{width:272.448000px;}
._36_c01309{width:295.980000px;}
._31_c01309{width:323.124000px;}
._3a_c01309{width:355.692000px;}
._35_c01309{width:483.540000px;}
._40_c01309{width:503.712000px;}
._41_c01309{width:518.376000px;}
._42_c01309{width:725.040000px;}
._28_c01309{width:835.416000px;}
._34_c01309{width:908.322000px;}
._23_c01309{width:1176.960000px;}
._16_c01309{width:1360.176000px;}
.fc2_c01309{color:transparent;}
.fc1_c01309{color:rgb(128,128,128);}
.fc0_c01309{color:rgb(0,0,0);}
.fs8_c01309{font-size:48.000000px;}
.fs3_c01309{font-size:54.000000px;}
.fs7_c01309{font-size:63.000000px;}
.fs4_c01309{font-size:66.000000px;}
.fs2_c01309{font-size:72.000000px;}
.fs1_c01309{font-size:78.000000px;}
.fs0_c01309{font-size:84.000000px;}
.fs5_c01309{font-size:99.000000px;}
.fs6_c01309{font-size:222.000000px;}
.y0_c01309{bottom:0.000000px;}
.y1f_c01309{bottom:3.105000px;}
.y1e_c01309{bottom:7.228371px;}
.y1d_c01309{bottom:19.365000px;}
.y1c_c01309{bottom:44.565000px;}
.y1b_c01309{bottom:65.865000px;}
.y1a_c01309{bottom:93.465000px;}
.y19_c01309{bottom:116.865000px;}
.y18_c01309{bottom:141.465000px;}
.y17_c01309{bottom:167.715000px;}
.y16_c01309{bottom:193.515000px;}
.y15_c01309{bottom:218.115000px;}
.y14_c01309{bottom:242.715000px;}
.y12_c01309{bottom:264.765000px;}
.y13_c01309{bottom:267.765000px;}
.y11_c01309{bottom:336.615000px;}
.y10_c01309{bottom:365.565000px;}
.yf_c01309{bottom:389.565000px;}
.ye_c01309{bottom:413.415000px;}
.yd_c01309{bottom:438.165000px;}
.yc_c01309{bottom:460.815000px;}
.yb_c01309{bottom:486.315000px;}
.ya_c01309{bottom:510.765000px;}
.y9_c01309{bottom:535.365000px;}
.y8_c01309{bottom:560.715000px;}
.y7_c01309{bottom:585.015000px;}
.y6_c01309{bottom:609.915000px;}
.y5_c01309{bottom:636.315000px;}
.y4_c01309{bottom:659.115000px;}
.y3_c01309{bottom:685.215000px;}
.y2_c01309{bottom:710.415000px;}
.y1_c01309{bottom:736.215000px;}
.ha_c01309{height:13.200074px;}
.hb_c01309{height:43.804688px;}
.h7_c01309{height:64.743164px;}
.h2_c01309{height:82.400391px;}
.h5_c01309{height:84.269531px;}
.h6_c01309{height:91.160156px;}
.h4_c01309{height:91.291992px;}
.h8_c01309{height:97.163086px;}
.h3_c01309{height:98.756836px;}
.h9_c01309{height:259.831055px;}
.h0_c01309{height:786.525000px;}
.h1_c01309{height:786.750000px;}
.w2_c01309{width:104.875500px;}
.w0_c01309{width:484.950000px;}
.w1_c01309{width:485.250000px;}
.x0_c01309{left:0.000000px;}
.xd_c01309{left:32.850000px;}
.x13_c01309{left:35.100000px;}
.xf_c01309{left:37.500000px;}
.x9_c01309{left:42.300000px;}
.xa_c01309{left:43.650000px;}
.x6_c01309{left:45.000000px;}
.x3_c01309{left:46.650000px;}
.x4_c01309{left:51.300000px;}
.x12_c01309{left:58.500000px;}
.x10_c01309{left:61.200000px;}
.x11_c01309{left:63.450000px;}
.x8_c01309{left:67.200000px;}
.x7_c01309{left:68.250000px;}
.x5_c01309{left:69.900000px;}
.x2_c01309{left:71.850000px;}
.xe_c01309{left:85.350000px;}
.xc_c01309{left:124.650000px;}
.xb_c01309{left:128.700000px;}
.x1_c01309{left:192.150000px;}
.x15_c01309{left:194.289230px;}
.x14_c01309{left:425.250000px;}
@media print{
.v0_c01309{vertical-align:0.000000pt;}
.v1_c01309{vertical-align:99.200000pt;}
.ls4_c01309{letter-spacing:-13.333333pt;}
.ls9_c01309{letter-spacing:-5.333333pt;}
.ls5_c01309{letter-spacing:-2.666667pt;}
.ls2_c01309{letter-spacing:0.000000pt;}
.ls6_c01309{letter-spacing:2.666667pt;}
.ls8_c01309{letter-spacing:5.333333pt;}
.ls1_c01309{letter-spacing:9.450667pt;}
.ls7_c01309{letter-spacing:10.666667pt;}
.ls3_c01309{letter-spacing:18.666667pt;}
.ls0_c01309{letter-spacing:38.864000pt;}
.ws4_c01309{word-spacing:-34.528000pt;}
.ws7_c01309{word-spacing:-32.045333pt;}
.ws5_c01309{word-spacing:-16.709333pt;}
.ws2_c01309{word-spacing:-14.666667pt;}
.ws3_c01309{word-spacing:-12.757333pt;}
.ws0_c01309{word-spacing:-12.565333pt;}
.ws6_c01309{word-spacing:-11.376000pt;}
.ws1_c01309{word-spacing:-3.376000pt;}
.ws8_c01309{word-spacing:0.000000pt;}
._3c_c01309{margin-left:-57.856000pt;}
._2f_c01309{margin-left:-40.821333pt;}
._3f_c01309{margin-left:-37.120000pt;}
._22_c01309{margin-left:-36.096000pt;}
._f_c01309{margin-left:-31.616000pt;}
._10_c01309{margin-left:-28.149333pt;}
._11_c01309{margin-left:-26.709333pt;}
._33_c01309{margin-left:-25.402667pt;}
._2d_c01309{margin-left:-23.818667pt;}
._37_c01309{margin-left:-20.592000pt;}
._2b_c01309{margin-left:-19.536000pt;}
._24_c01309{margin-left:-18.048000pt;}
._1c_c01309{margin-left:-16.064000pt;}
._2e_c01309{margin-left:-14.725333pt;}
._1a_c01309{margin-left:-13.248000pt;}
._12_c01309{margin-left:-12.133333pt;}
._29_c01309{margin-left:-10.240000pt;}
._d_c01309{margin-left:-8.874667pt;}
._5_c01309{margin-left:-7.626667pt;}
._3_c01309{margin-left:-6.656000pt;}
._2_c01309{margin-left:-5.061333pt;}
._4_c01309{margin-left:-3.882667pt;}
._a_c01309{margin-left:-2.218667pt;}
._c_c01309{margin-left:-1.040000pt;}
._20_c01309{width:0.933333pt;}
._13_c01309{width:1.936000pt;}
._8_c01309{width:2.981333pt;}
._1f_c01309{width:4.144000pt;}
._e_c01309{width:5.130667pt;}
._14_c01309{width:6.378667pt;}
._25_c01309{width:7.680000pt;}
._7_c01309{width:8.597333pt;}
._b_c01309{width:9.568000pt;}
._17_c01309{width:11.456000pt;}
._30_c01309{width:13.082667pt;}
._15_c01309{width:14.960000pt;}
._1_c01309{width:15.978667pt;}
._32_c01309{width:18.618667pt;}
._26_c01309{width:22.528000pt;}
._21_c01309{width:26.080000pt;}
._27_c01309{width:27.274667pt;}
._1b_c01309{width:29.888000pt;}
._0_c01309{width:35.541333pt;}
._19_c01309{width:38.378667pt;}
._2c_c01309{width:42.944000pt;}
._3e_c01309{width:44.901333pt;}
._9_c01309{width:51.584000pt;}
._18_c01309{width:58.165333pt;}
._1e_c01309{width:67.882667pt;}
._2a_c01309{width:78.677333pt;}
._39_c01309{width:94.869333pt;}
._38_c01309{width:130.485333pt;}
._3b_c01309{width:153.461333pt;}
._6_c01309{width:195.728000pt;}
._3d_c01309{width:217.088000pt;}
._1d_c01309{width:242.176000pt;}
._36_c01309{width:263.093333pt;}
._31_c01309{width:287.221333pt;}
._3a_c01309{width:316.170667pt;}
._35_c01309{width:429.813333pt;}
._40_c01309{width:447.744000pt;}
._41_c01309{width:460.778667pt;}
._42_c01309{width:644.480000pt;}
._28_c01309{width:742.592000pt;}
._34_c01309{width:807.397333pt;}
._23_c01309{width:1046.186667pt;}
._16_c01309{width:1209.045333pt;}
.fs8_c01309{font-size:42.666667pt;}
.fs3_c01309{font-size:48.000000pt;}
.fs7_c01309{font-size:56.000000pt;}
.fs4_c01309{font-size:58.666667pt;}
.fs2_c01309{font-size:64.000000pt;}
.fs1_c01309{font-size:69.333333pt;}
.fs0_c01309{font-size:74.666667pt;}
.fs5_c01309{font-size:88.000000pt;}
.fs6_c01309{font-size:197.333333pt;}
.y0_c01309{bottom:0.000000pt;}
.y1f_c01309{bottom:2.760000pt;}
.y1e_c01309{bottom:6.425219pt;}
.y1d_c01309{bottom:17.213333pt;}
.y1c_c01309{bottom:39.613333pt;}
.y1b_c01309{bottom:58.546667pt;}
.y1a_c01309{bottom:83.080000pt;}
.y19_c01309{bottom:103.880000pt;}
.y18_c01309{bottom:125.746667pt;}
.y17_c01309{bottom:149.080000pt;}
.y16_c01309{bottom:172.013333pt;}
.y15_c01309{bottom:193.880000pt;}
.y14_c01309{bottom:215.746667pt;}
.y12_c01309{bottom:235.346667pt;}
.y13_c01309{bottom:238.013333pt;}
.y11_c01309{bottom:299.213333pt;}
.y10_c01309{bottom:324.946667pt;}
.yf_c01309{bottom:346.280000pt;}
.ye_c01309{bottom:367.480000pt;}
.yd_c01309{bottom:389.480000pt;}
.yc_c01309{bottom:409.613333pt;}
.yb_c01309{bottom:432.280000pt;}
.ya_c01309{bottom:454.013333pt;}
.y9_c01309{bottom:475.880000pt;}
.y8_c01309{bottom:498.413333pt;}
.y7_c01309{bottom:520.013333pt;}
.y6_c01309{bottom:542.146667pt;}
.y5_c01309{bottom:565.613333pt;}
.y4_c01309{bottom:585.880000pt;}
.y3_c01309{bottom:609.080000pt;}
.y2_c01309{bottom:631.480000pt;}
.y1_c01309{bottom:654.413333pt;}
.ha_c01309{height:11.733399pt;}
.hb_c01309{height:38.937500pt;}
.h7_c01309{height:57.549479pt;}
.h2_c01309{height:73.244792pt;}
.h5_c01309{height:74.906250pt;}
.h6_c01309{height:81.031250pt;}
.h4_c01309{height:81.148438pt;}
.h8_c01309{height:86.367188pt;}
.h3_c01309{height:87.783854pt;}
.h9_c01309{height:230.960938pt;}
.h0_c01309{height:699.133333pt;}
.h1_c01309{height:699.333333pt;}
.w2_c01309{width:93.222667pt;}
.w0_c01309{width:431.066667pt;}
.w1_c01309{width:431.333333pt;}
.x0_c01309{left:0.000000pt;}
.xd_c01309{left:29.200000pt;}
.x13_c01309{left:31.200000pt;}
.xf_c01309{left:33.333333pt;}
.x9_c01309{left:37.600000pt;}
.xa_c01309{left:38.800000pt;}
.x6_c01309{left:40.000000pt;}
.x3_c01309{left:41.466667pt;}
.x4_c01309{left:45.600000pt;}
.x12_c01309{left:52.000000pt;}
.x10_c01309{left:54.400000pt;}
.x11_c01309{left:56.400000pt;}
.x8_c01309{left:59.733333pt;}
.x7_c01309{left:60.666667pt;}
.x5_c01309{left:62.133333pt;}
.x2_c01309{left:63.866667pt;}
.xe_c01309{left:75.866667pt;}
.xc_c01309{left:110.800000pt;}
.xb_c01309{left:114.400000pt;}
.x1_c01309{left:170.800000pt;}
.x15_c01309{left:172.701538pt;}
.x14_c01309{left:378.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_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_a5aeb3a98bc2078bd29e2851.woff2')format("woff");}.ff1_c01310{font-family:ff1_c01310;line-height:1.480469;font-style:normal;font-weight:normal;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_c92d69fb9688d62cba3c2ff0.woff2')format("woff");}.ff2_c01310{font-family:ff2_c01310;line-height:1.568848;font-style:normal;font-weight:normal;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_72729d5464f1eb2280dc22d8.woff2')format("woff");}.ff3_c01310{font-family:ff3_c01310;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01310;src:url('chunks/assets/font_46b9a1a14ecf5aa811623b28.woff2')format("woff");}.ff4_c01310{font-family:ff4_c01310;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01310;src:url('chunks/assets/font_bb61020786cad815a1559b6e.woff2')format("woff");}.ff5_c01310{font-family:ff5_c01310;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01310;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01310{font-family:ff6_c01310;line-height:1.219238;font-style: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;}
.v1_c01310{vertical-align:90.600000px;}
.ls8_c01310{letter-spacing:-3.000000px;}
.ls7_c01310{letter-spacing:0.000000px;}
.ls4_c01310{letter-spacing:2.100000px;}
.ls2_c01310{letter-spacing:2.400000px;}
.ls9_c01310{letter-spacing:3.000000px;}
.lsa_c01310{letter-spacing:6.000000px;}
.ls3_c01310{letter-spacing:6.504000px;}
.ls1_c01310{letter-spacing:16.188000px;}
.ls6_c01310{letter-spacing:21.000000px;}
.ls0_c01310{letter-spacing:112.500000px;}
.ls5_c01310{letter-spacing:125.700000px;}
.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;}
}
.ws2_c01310{word-spacing:-45.000000px;}
.ws1_c01310{word-spacing:-14.352000px;}
.ws0_c01310{word-spacing:-13.224000px;}
.ws3_c01310{word-spacing:0.000000px;}
._28_c01310{margin-left:-26.568000px;}
._1b_c01310{margin-left:-21.837000px;}
._e_c01310{margin-left:-20.808000px;}
._2a_c01310{margin-left:-18.687000px;}
._24_c01310{margin-left:-15.714000px;}
._18_c01310{margin-left:-13.938000px;}
._13_c01310{margin-left:-12.072000px;}
._11_c01310{margin-left:-9.615000px;}
._21_c01310{margin-left:-8.568000px;}
._f_c01310{margin-left:-7.440000px;}
._a_c01310{margin-left:-6.081000px;}
._10_c01310{margin-left:-5.040000px;}
._b_c01310{margin-left:-3.600000px;}
._5_c01310{margin-left:-2.088000px;}
._c_c01310{margin-left:-1.008000px;}
._9_c01310{width:1.296000px;}
._6_c01310{width:2.697000px;}
._4_c01310{width:3.915000px;}
._7_c01310{width:5.133000px;}
._3_c01310{width:6.612000px;}
._2_c01310{width:7.917000px;}
._8_c01310{width:9.831000px;}
._27_c01310{width:11.736000px;}
._1f_c01310{width:13.827000px;}
._1c_c01310{width:16.731000px;}
._15_c01310{width:18.288000px;}
._17_c01310{width:23.616000px;}
._0_c01310{width:28.368000px;}
._1_c01310{width:29.952000px;}
._20_c01310{width:36.753000px;}
._1d_c01310{width:41.565000px;}
._14_c01310{width:69.336000px;}
._22_c01310{width:106.272000px;}
._26_c01310{width:217.068000px;}
._2b_c01310{width:252.264000px;}
._25_c01310{width:265.647000px;}
._d_c01310{width:547.776000px;}
._1a_c01310{width:750.717000px;}
._19_c01310{width:757.200000px;}
._1e_c01310{width:811.536000px;}
._16_c01310{width:852.519000px;}
._29_c01310{width:902.133000px;}
._12_c01310{width:966.798000px;}
._23_c01310{width:1410.117000px;}
.fc2_c01310{color:transparent;}
.fc1_c01310{color:rgb(128,128,128);}
.fc0_c01310{color:rgb(0,0,0);}
.fs6_c01310{font-size:48.000000px;}
.fs5_c01310{font-size:51.000000px;}
.fs3_c01310{font-size:63.000000px;}
.fs0_c01310{font-size:72.000000px;}
.fs4_c01310{font-size:78.000000px;}
.fs1_c01310{font-size:87.000000px;}
.fs2_c01310{font-size:171.000000px;}
.y0_c01310{bottom:0.000000px;}
.y1e_c01310{bottom:3.105000px;}
.y1d_c01310{bottom:7.228355px;}
.y1c_c01310{bottom:30.585000px;}
.y1b_c01310{bottom:56.685000px;}
.y1a_c01310{bottom:82.635000px;}
.y19_c01310{bottom:107.235000px;}
.y18_c01310{bottom:109.035000px;}
.y17_c01310{bottom:174.435000px;}
.y16_c01310{bottom:231.135000px;}
.y15_c01310{bottom:256.785000px;}
.y14_c01310{bottom:281.835000px;}
.y13_c01310{bottom:307.335000px;}
.y12_c01310{bottom:329.385000px;}
.y11_c01310{bottom:331.785000px;}
.y10_c01310{bottom:356.385000px;}
.yf_c01310{bottom:379.335000px;}
.ye_c01310{bottom:405.885000px;}
.yd_c01310{bottom:429.285000px;}
.yc_c01310{bottom:454.935000px;}
.yb_c01310{bottom:480.285000px;}
.ya_c01310{bottom:505.185000px;}
.y9_c01310{bottom:529.185000px;}
.y8_c01310{bottom:556.785000px;}
.y7_c01310{bottom:580.185000px;}
.y6_c01310{bottom:603.735000px;}
.y5_c01310{bottom:631.335000px;}
.y4_c01310{bottom:656.685000px;}
.y3_c01310{bottom:658.785000px;}
.y2_c01310{bottom:728.685000px;}
.y1_c01310{bottom:755.685000px;}
.h8_c01310{height:13.200074px;}
.h9_c01310{height:43.804688px;}
.h6_c01310{height:64.571777px;}
.h2_c01310{height:84.269531px;}
.h5_c01310{height:91.160156px;}
.h3_c01310{height:110.151855px;}
.h4_c01310{height:174.869531px;}
.h7_c01310{height:175.469531px;}
.h1_c01310{height:786.000000px;}
.h0_c01310{height:786.225000px;}
.w2_c01310{width:104.875500px;}
.w0_c01310{width:514.350000px;}
.w1_c01310{width:514.500000px;}
.x0_c01310{left:0.000000px;}
.x3_c01310{left:4.950000px;}
.x5_c01310{left:16.500000px;}
.x7_c01310{left:19.800000px;}
.xa_c01310{left:21.600000px;}
.x10_c01310{left:24.000000px;}
.x6_c01310{left:40.800000px;}
.x8_c01310{left:42.150000px;}
.x9_c01310{left:43.200000px;}
.xb_c01310{left:46.950000px;}
.xc_c01310{left:49.500000px;}
.x4_c01310{left:55.650000px;}
.xd_c01310{left:65.100000px;}
.xf_c01310{left:72.600000px;}
.x2_c01310{left:87.450000px;}
.xe_c01310{left:99.150000px;}
.x1_c01310{left:164.400000px;}
.x12_c01310{left:208.989258px;}
.x11_c01310{left:292.500000px;}
@media print{
.v0_c01310{vertical-align:0.000000pt;}
.v1_c01310{vertical-align:80.533333pt;}
.ls8_c01310{letter-spacing:-2.666667pt;}
.ls7_c01310{letter-spacing:0.000000pt;}
.ls4_c01310{letter-spacing:1.866667pt;}
.ls2_c01310{letter-spacing:2.133333pt;}
.ls9_c01310{letter-spacing:2.666667pt;}
.lsa_c01310{letter-spacing:5.333333pt;}
.ls3_c01310{letter-spacing:5.781333pt;}
.ls1_c01310{letter-spacing:14.389333pt;}
.ls6_c01310{letter-spacing:18.666667pt;}
.ls0_c01310{letter-spacing:100.000000pt;}
.ls5_c01310{letter-spacing:111.733333pt;}
.ws2_c01310{word-spacing:-40.000000pt;}
.ws1_c01310{word-spacing:-12.757333pt;}
.ws0_c01310{word-spacing:-11.754667pt;}
.ws3_c01310{word-spacing:0.000000pt;}
._28_c01310{margin-left:-23.616000pt;}
._1b_c01310{margin-left:-19.410667pt;}
._e_c01310{margin-left:-18.496000pt;}
._2a_c01310{margin-left:-16.610667pt;}
._24_c01310{margin-left:-13.968000pt;}
._18_c01310{margin-left:-12.389333pt;}
._13_c01310{margin-left:-10.730667pt;}
._11_c01310{margin-left:-8.546667pt;}
._21_c01310{margin-left:-7.616000pt;}
._f_c01310{margin-left:-6.613333pt;}
._a_c01310{margin-left:-5.405333pt;}
._10_c01310{margin-left:-4.480000pt;}
._b_c01310{margin-left:-3.200000pt;}
._5_c01310{margin-left:-1.856000pt;}
._c_c01310{margin-left:-0.896000pt;}
._9_c01310{width:1.152000pt;}
._6_c01310{width:2.397333pt;}
._4_c01310{width:3.480000pt;}
._7_c01310{width:4.562667pt;}
._3_c01310{width:5.877333pt;}
._2_c01310{width:7.037333pt;}
._8_c01310{width:8.738667pt;}
._27_c01310{width:10.432000pt;}
._1f_c01310{width:12.290667pt;}
._1c_c01310{width:14.872000pt;}
._15_c01310{width:16.256000pt;}
._17_c01310{width:20.992000pt;}
._0_c01310{width:25.216000pt;}
._1_c01310{width:26.624000pt;}
._20_c01310{width:32.669333pt;}
._1d_c01310{width:36.946667pt;}
._14_c01310{width:61.632000pt;}
._22_c01310{width:94.464000pt;}
._26_c01310{width:192.949333pt;}
._2b_c01310{width:224.234667pt;}
._25_c01310{width:236.130667pt;}
._d_c01310{width:486.912000pt;}
._1a_c01310{width:667.304000pt;}
._19_c01310{width:673.066667pt;}
._1e_c01310{width:721.365333pt;}
._16_c01310{width:757.794667pt;}
._29_c01310{width:801.896000pt;}
._12_c01310{width:859.376000pt;}
._23_c01310{width:1253.437333pt;}
.fs6_c01310{font-size:42.666667pt;}
.fs5_c01310{font-size:45.333333pt;}
.fs3_c01310{font-size:56.000000pt;}
.fs0_c01310{font-size:64.000000pt;}
.fs4_c01310{font-size:69.333333pt;}
.fs1_c01310{font-size:77.333333pt;}
.fs2_c01310{font-size:152.000000pt;}
.y0_c01310{bottom:0.000000pt;}
.y1e_c01310{bottom:2.760000pt;}
.y1d_c01310{bottom:6.425204pt;}
.y1c_c01310{bottom:27.186667pt;}
.y1b_c01310{bottom:50.386667pt;}
.y1a_c01310{bottom:73.453333pt;}
.y19_c01310{bottom:95.320000pt;}
.y18_c01310{bottom:96.920000pt;}
.y17_c01310{bottom:155.053333pt;}
.y16_c01310{bottom:205.453333pt;}
.y15_c01310{bottom:228.253333pt;}
.y14_c01310{bottom:250.520000pt;}
.y13_c01310{bottom:273.186667pt;}
.y12_c01310{bottom:292.786667pt;}
.y11_c01310{bottom:294.920000pt;}
.y10_c01310{bottom:316.786667pt;}
.yf_c01310{bottom:337.186667pt;}
.ye_c01310{bottom:360.786667pt;}
.yd_c01310{bottom:381.586667pt;}
.yc_c01310{bottom:404.386667pt;}
.yb_c01310{bottom:426.920000pt;}
.ya_c01310{bottom:449.053333pt;}
.y9_c01310{bottom:470.386667pt;}
.y8_c01310{bottom:494.920000pt;}
.y7_c01310{bottom:515.720000pt;}
.y6_c01310{bottom:536.653333pt;}
.y5_c01310{bottom:561.186667pt;}
.y4_c01310{bottom:583.720000pt;}
.y3_c01310{bottom:585.586667pt;}
.y2_c01310{bottom:647.720000pt;}
.y1_c01310{bottom:671.720000pt;}
.h8_c01310{height:11.733399pt;}
.h9_c01310{height:38.937500pt;}
.h6_c01310{height:57.397135pt;}
.h2_c01310{height:74.906250pt;}
.h5_c01310{height:81.031250pt;}
.h3_c01310{height:97.912760pt;}
.h4_c01310{height:155.439583pt;}
.h7_c01310{height:155.972917pt;}
.h1_c01310{height:698.666667pt;}
.h0_c01310{height:698.866667pt;}
.w2_c01310{width:93.222667pt;}
.w0_c01310{width:457.200000pt;}
.w1_c01310{width:457.333333pt;}
.x0_c01310{left:0.000000pt;}
.x3_c01310{left:4.400000pt;}
.x5_c01310{left:14.666667pt;}
.x7_c01310{left:17.600000pt;}
.xa_c01310{left:19.200000pt;}
.x10_c01310{left:21.333333pt;}
.x6_c01310{left:36.266667pt;}
.x8_c01310{left:37.466667pt;}
.x9_c01310{left:38.400000pt;}
.xb_c01310{left:41.733333pt;}
.xc_c01310{left:44.000000pt;}
.x4_c01310{left:49.466667pt;}
.xd_c01310{left:57.866667pt;}
.xf_c01310{left:64.533333pt;}
.x2_c01310{left:77.733333pt;}
.xe_c01310{left:88.133333pt;}
.x1_c01310{left:146.133333pt;}
.x12_c01310{left:185.768229pt;}
.x11_c01310{left:260.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_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_c579b983e0409fa79c036048.woff2')format("woff");}.ff1_c01311{font-family:ff1_c01311;line-height:1.284180;font-style:normal;font-weight:normal;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_76d41d8545dfe026df6854a4.woff2')format("woff");}.ff2_c01311{font-family:ff2_c01311;line-height:1.480469;font-style:normal;font-weight:normal;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_44c3568ecf3b7bc7769317e0.woff2')format("woff");}.ff3_c01311{font-family:ff3_c01311;line-height:1.568848;font-style:normal;font-weight:normal;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_aa269358b88e5b9a6bb4cdcf.woff2')format("woff");}.ff4_c01311{font-family:ff4_c01311;line-height:1.575000;font-style:normal;font-weight:normal;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_5bebf3a29ec2ee701c5e7d0d.woff2')format("woff");}.ff5_c01311{font-family:ff5_c01311;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01311;src:url('chunks/assets/font_089510d0d6d8c3460deb1b9c.woff2')format("woff");}.ff6_c01311{font-family:ff6_c01311;line-height:1.284668;font-style:normal;font-weight: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_c01311;src:url('chunks/assets/font_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff7_c01311{font-family:ff7_c01311;line-height:1.284180;font-style:normal;font-weight: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_c01311;src:url('chunks/assets/font_df4d4338ff6f236e8a6f5477.woff2')format("woff");}.ff8_c01311{font-family:ff8_c01311;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01311;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff9_c01311{font-family:ff9_c01311;line-height:1.219238;font-style: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;}
.ls8_c01311{letter-spacing:-12.000000px;}
.ls5_c01311{letter-spacing:-9.000000px;}
.ls3_c01311{letter-spacing:-3.000000px;}
.ls6_c01311{letter-spacing:0.000000px;}
.ls4_c01311{letter-spacing:3.000000px;}
.ls1_c01311{letter-spacing:3.600000px;}
.ls7_c01311{letter-spacing:6.000000px;}
.ls2_c01311{letter-spacing:27.000000px;}
.ls0_c01311{letter-spacing:100.152000px;}
.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:-85.500000px;}
.ws3_c01311{word-spacing:-40.500000px;}
.ws7_c01311{word-spacing:-23.142000px;}
.ws1_c01311{word-spacing:-20.352000px;}
.ws4_c01311{word-spacing:-19.629000px;}
.ws5_c01311{word-spacing:-15.906000px;}
.ws2_c01311{word-spacing:-14.352000px;}
.ws6_c01311{word-spacing:-5.352000px;}
.ws8_c01311{word-spacing:0.000000px;}
._23_c01311{margin-left:-66.642000px;}
._2_c01311{margin-left:-62.712000px;}
._32_c01311{margin-left:-59.916000px;}
._3d_c01311{margin-left:-46.719000px;}
._29_c01311{margin-left:-40.608000px;}
._2d_c01311{margin-left:-38.520000px;}
._3b_c01311{margin-left:-34.887000px;}
._1c_c01311{margin-left:-33.696000px;}
._28_c01311{margin-left:-31.392000px;}
._1e_c01311{margin-left:-29.448000px;}
._e_c01311{margin-left:-25.200000px;}
._36_c01311{margin-left:-23.094000px;}
._2a_c01311{margin-left:-20.448000px;}
._1f_c01311{margin-left:-19.374000px;}
._21_c01311{margin-left:-18.072000px;}
._38_c01311{margin-left:-16.848000px;}
._13_c01311{margin-left:-15.627000px;}
._14_c01311{margin-left:-14.040000px;}
._27_c01311{margin-left:-12.960000px;}
._b_c01311{margin-left:-10.986000px;}
._30_c01311{margin-left:-9.792000px;}
._9_c01311{margin-left:-8.517000px;}
._c_c01311{margin-left:-7.488000px;}
._6_c01311{margin-left:-6.192000px;}
._11_c01311{margin-left:-4.248000px;}
._5_c01311{margin-left:-3.240000px;}
._4_c01311{margin-left:-1.944000px;}
._7_c01311{width:1.368000px;}
._d_c01311{width:2.598000px;}
._8_c01311{width:3.930000px;}
._1_c01311{width:5.031000px;}
._0_c01311{width:6.318000px;}
._16_c01311{width:7.575000px;}
._a_c01311{width:8.691000px;}
._26_c01311{width:9.759000px;}
._1b_c01311{width:11.697000px;}
._17_c01311{width:15.408000px;}
._12_c01311{width:16.794000px;}
._1d_c01311{width:19.224000px;}
._35_c01311{width:23.646000px;}
._15_c01311{width:24.840000px;}
._3f_c01311{width:29.286000px;}
._20_c01311{width:33.042000px;}
._2b_c01311{width:35.784000px;}
._2f_c01311{width:41.118000px;}
._33_c01311{width:47.736000px;}
._34_c01311{width:49.779000px;}
._31_c01311{width:52.848000px;}
._19_c01311{width:57.672000px;}
._37_c01311{width:67.320000px;}
._3_c01311{width:75.096000px;}
._2c_c01311{width:91.224000px;}
._3c_c01311{width:94.281000px;}
._22_c01311{width:132.960000px;}
._18_c01311{width:213.504000px;}
._24_c01311{width:246.036000px;}
._3e_c01311{width:254.874000px;}
._39_c01311{width:291.390000px;}
._2e_c01311{width:298.296000px;}
._10_c01311{width:477.720000px;}
._25_c01311{width:624.552000px;}
._3a_c01311{width:652.416000px;}
._f_c01311{width:879.594000px;}
._1a_c01311{width:939.360000px;}
.fc2_c01311{color:transparent;}
.fc1_c01311{color:rgb(128,128,128);}
.fc0_c01311{color:rgb(0,0,0);}
.fs8_c01311{font-size:48.000000px;}
.fs4_c01311{font-size:66.000000px;}
.fs5_c01311{font-size:69.000000px;}
.fs1_c01311{font-size:72.000000px;}
.fs6_c01311{font-size:75.000000px;}
.fs7_c01311{font-size:78.000000px;}
.fs2_c01311{font-size:87.000000px;}
.fs3_c01311{font-size:99.000000px;}
.fs0_c01311{font-size:117.000000px;}
.y0_c01311{bottom:0.000000px;}
.y1d_c01311{bottom:3.105000px;}
.y1c_c01311{bottom:7.228363px;}
.y1b_c01311{bottom:39.900000px;}
.y1a_c01311{bottom:45.600000px;}
.y19_c01311{bottom:118.200000px;}
.y18_c01311{bottom:142.800000px;}
.y17_c01311{bottom:169.050000px;}
.y16_c01311{bottom:192.150000px;}
.y15_c01311{bottom:218.700000px;}
.y14_c01311{bottom:243.750000px;}
.y13_c01311{bottom:268.650000px;}
.y12_c01311{bottom:290.700000px;}
.y11_c01311{bottom:319.950000px;}
.y10_c01311{bottom:343.350000px;}
.yf_c01311{bottom:369.300000px;}
.ye_c01311{bottom:410.850000px;}
.yd_c01311{bottom:463.350000px;}
.yc_c01311{bottom:488.700000px;}
.yb_c01311{bottom:514.650000px;}
.ya_c01311{bottom:538.950000px;}
.y9_c01311{bottom:563.400000px;}
.y8_c01311{bottom:587.850000px;}
.y7_c01311{bottom:613.500000px;}
.y6_c01311{bottom:638.250000px;}
.y5_c01311{bottom:663.150000px;}
.y4_c01311{bottom:689.550000px;}
.y3_c01311{bottom:712.500000px;}
.y2_c01311{bottom:737.550000px;}
.y1_c01311{bottom:762.150000px;}
.hb_c01311{height:13.200074px;}
.hc_c01311{height:43.804688px;}
.h7_c01311{height:77.247070px;}
.h9_c01311{height:83.563477px;}
.h4_c01311{height:84.269531px;}
.h3_c01311{height:91.160156px;}
.h8_c01311{height:91.760156px;}
.ha_c01311{height:92.829000px;}
.h6_c01311{height:99.773438px;}
.h5_c01311{height:110.151855px;}
.h2_c01311{height:114.771973px;}
.h1_c01311{height:795.000000px;}
.h0_c01311{height:795.150000px;}
.w2_c01311{width:104.875500px;}
.w1_c01311{width:520.500000px;}
.w0_c01311{width:520.575000px;}
.x0_c01311{left:0.000000px;}
.xc_c01311{left:68.400000px;}
.x9_c01311{left:70.800000px;}
.x2_c01311{left:72.150000px;}
.xe_c01311{left:74.250000px;}
.xa_c01311{left:76.950000px;}
.xb_c01311{left:79.200000px;}
.x4_c01311{left:81.000000px;}
.xd_c01311{left:92.400000px;}
.x8_c01311{left:93.750000px;}
.x7_c01311{left:94.800000px;}
.x5_c01311{left:95.850000px;}
.x3_c01311{left:97.500000px;}
.x6_c01311{left:137.250000px;}
.xf_c01311{left:148.800000px;}
.x10_c01311{left:212.101730px;}
.x1_c01311{left:219.000000px;}
@media print{
.v0_c01311{vertical-align:0.000000pt;}
.ls8_c01311{letter-spacing:-10.666667pt;}
.ls5_c01311{letter-spacing:-8.000000pt;}
.ls3_c01311{letter-spacing:-2.666667pt;}
.ls6_c01311{letter-spacing:0.000000pt;}
.ls4_c01311{letter-spacing:2.666667pt;}
.ls1_c01311{letter-spacing:3.200000pt;}
.ls7_c01311{letter-spacing:5.333333pt;}
.ls2_c01311{letter-spacing:24.000000pt;}
.ls0_c01311{letter-spacing:89.024000pt;}
.ws0_c01311{word-spacing:-76.000000pt;}
.ws3_c01311{word-spacing:-36.000000pt;}
.ws7_c01311{word-spacing:-20.570667pt;}
.ws1_c01311{word-spacing:-18.090667pt;}
.ws4_c01311{word-spacing:-17.448000pt;}
.ws5_c01311{word-spacing:-14.138667pt;}
.ws2_c01311{word-spacing:-12.757333pt;}
.ws6_c01311{word-spacing:-4.757333pt;}
.ws8_c01311{word-spacing:0.000000pt;}
._23_c01311{margin-left:-59.237333pt;}
._2_c01311{margin-left:-55.744000pt;}
._32_c01311{margin-left:-53.258667pt;}
._3d_c01311{margin-left:-41.528000pt;}
._29_c01311{margin-left:-36.096000pt;}
._2d_c01311{margin-left:-34.240000pt;}
._3b_c01311{margin-left:-31.010667pt;}
._1c_c01311{margin-left:-29.952000pt;}
._28_c01311{margin-left:-27.904000pt;}
._1e_c01311{margin-left:-26.176000pt;}
._e_c01311{margin-left:-22.400000pt;}
._36_c01311{margin-left:-20.528000pt;}
._2a_c01311{margin-left:-18.176000pt;}
._1f_c01311{margin-left:-17.221333pt;}
._21_c01311{margin-left:-16.064000pt;}
._38_c01311{margin-left:-14.976000pt;}
._13_c01311{margin-left:-13.890667pt;}
._14_c01311{margin-left:-12.480000pt;}
._27_c01311{margin-left:-11.520000pt;}
._b_c01311{margin-left:-9.765333pt;}
._30_c01311{margin-left:-8.704000pt;}
._9_c01311{margin-left:-7.570667pt;}
._c_c01311{margin-left:-6.656000pt;}
._6_c01311{margin-left:-5.504000pt;}
._11_c01311{margin-left:-3.776000pt;}
._5_c01311{margin-left:-2.880000pt;}
._4_c01311{margin-left:-1.728000pt;}
._7_c01311{width:1.216000pt;}
._d_c01311{width:2.309333pt;}
._8_c01311{width:3.493333pt;}
._1_c01311{width:4.472000pt;}
._0_c01311{width:5.616000pt;}
._16_c01311{width:6.733333pt;}
._a_c01311{width:7.725333pt;}
._26_c01311{width:8.674667pt;}
._1b_c01311{width:10.397333pt;}
._17_c01311{width:13.696000pt;}
._12_c01311{width:14.928000pt;}
._1d_c01311{width:17.088000pt;}
._35_c01311{width:21.018667pt;}
._15_c01311{width:22.080000pt;}
._3f_c01311{width:26.032000pt;}
._20_c01311{width:29.370667pt;}
._2b_c01311{width:31.808000pt;}
._2f_c01311{width:36.549333pt;}
._33_c01311{width:42.432000pt;}
._34_c01311{width:44.248000pt;}
._31_c01311{width:46.976000pt;}
._19_c01311{width:51.264000pt;}
._37_c01311{width:59.840000pt;}
._3_c01311{width:66.752000pt;}
._2c_c01311{width:81.088000pt;}
._3c_c01311{width:83.805333pt;}
._22_c01311{width:118.186667pt;}
._18_c01311{width:189.781333pt;}
._24_c01311{width:218.698667pt;}
._3e_c01311{width:226.554667pt;}
._39_c01311{width:259.013333pt;}
._2e_c01311{width:265.152000pt;}
._10_c01311{width:424.640000pt;}
._25_c01311{width:555.157333pt;}
._3a_c01311{width:579.925333pt;}
._f_c01311{width:781.861333pt;}
._1a_c01311{width:834.986667pt;}
.fs8_c01311{font-size:42.666667pt;}
.fs4_c01311{font-size:58.666667pt;}
.fs5_c01311{font-size:61.333333pt;}
.fs1_c01311{font-size:64.000000pt;}
.fs6_c01311{font-size:66.666667pt;}
.fs7_c01311{font-size:69.333333pt;}
.fs2_c01311{font-size:77.333333pt;}
.fs3_c01311{font-size:88.000000pt;}
.fs0_c01311{font-size:104.000000pt;}
.y0_c01311{bottom:0.000000pt;}
.y1d_c01311{bottom:2.760000pt;}
.y1c_c01311{bottom:6.425212pt;}
.y1b_c01311{bottom:35.466667pt;}
.y1a_c01311{bottom:40.533333pt;}
.y19_c01311{bottom:105.066667pt;}
.y18_c01311{bottom:126.933333pt;}
.y17_c01311{bottom:150.266667pt;}
.y16_c01311{bottom:170.800000pt;}
.y15_c01311{bottom:194.400000pt;}
.y14_c01311{bottom:216.666667pt;}
.y13_c01311{bottom:238.800000pt;}
.y12_c01311{bottom:258.400000pt;}
.y11_c01311{bottom:284.400000pt;}
.y10_c01311{bottom:305.200000pt;}
.yf_c01311{bottom:328.266667pt;}
.ye_c01311{bottom:365.200000pt;}
.yd_c01311{bottom:411.866667pt;}
.yc_c01311{bottom:434.400000pt;}
.yb_c01311{bottom:457.466667pt;}
.ya_c01311{bottom:479.066667pt;}
.y9_c01311{bottom:500.800000pt;}
.y8_c01311{bottom:522.533333pt;}
.y7_c01311{bottom:545.333333pt;}
.y6_c01311{bottom:567.333333pt;}
.y5_c01311{bottom:589.466667pt;}
.y4_c01311{bottom:612.933333pt;}
.y3_c01311{bottom:633.333333pt;}
.y2_c01311{bottom:655.600000pt;}
.y1_c01311{bottom:677.466667pt;}
.hb_c01311{height:11.733399pt;}
.hc_c01311{height:38.937500pt;}
.h7_c01311{height:68.664062pt;}
.h9_c01311{height:74.278646pt;}
.h4_c01311{height:74.906250pt;}
.h3_c01311{height:81.031250pt;}
.h8_c01311{height:81.564583pt;}
.ha_c01311{height:82.514667pt;}
.h6_c01311{height:88.687500pt;}
.h5_c01311{height:97.912760pt;}
.h2_c01311{height:102.019531pt;}
.h1_c01311{height:706.666667pt;}
.h0_c01311{height:706.800000pt;}
.w2_c01311{width:93.222667pt;}
.w1_c01311{width:462.666667pt;}
.w0_c01311{width:462.733333pt;}
.x0_c01311{left:0.000000pt;}
.xc_c01311{left:60.800000pt;}
.x9_c01311{left:62.933333pt;}
.x2_c01311{left:64.133333pt;}
.xe_c01311{left:66.000000pt;}
.xa_c01311{left:68.400000pt;}
.xb_c01311{left:70.400000pt;}
.x4_c01311{left:72.000000pt;}
.xd_c01311{left:82.133333pt;}
.x8_c01311{left:83.333333pt;}
.x7_c01311{left:84.266667pt;}
.x5_c01311{left:85.200000pt;}
.x3_c01311{left:86.666667pt;}
.x6_c01311{left:122.000000pt;}
.xf_c01311{left:132.266667pt;}
.x10_c01311{left:188.534871pt;}
.x1_c01311{left:194.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_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_6512c2a0522666c5d7cf5b63.woff2')format("woff");}.ff1_c01312{font-family:ff1_c01312;line-height:1.568848;font-style:normal;font-weight:normal;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_a14393e1e3fa6f74a1bd990f.woff2')format("woff");}.ff2_c01312{font-family:ff2_c01312;line-height:1.480469;font-style:normal;font-weight:normal;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_706af9524b25eeb42668599c.woff2')format("woff");}.ff3_c01312{font-family:ff3_c01312;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01312;src:url('chunks/assets/font_921fb5f4bbf05cb900c47bd9.woff2')format("woff");}.ff4_c01312{font-family:ff4_c01312;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01312;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff5_c01312{font-family:ff5_c01312;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01312{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01312{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01312{vertical-align:0.000000px;}
.ls7_c01312{letter-spacing:-3.000000px;}
.ls3_c01312{letter-spacing:0.000000px;}
.ls2_c01312{letter-spacing:2.412000px;}
.ls6_c01312{letter-spacing:3.000000px;}
.ls0_c01312{letter-spacing:3.429000px;}
.ls1_c01312{letter-spacing:5.829000px;}
.ls5_c01312{letter-spacing:6.000000px;}
.ls4_c01312{letter-spacing:21.000000px;}
.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;}
}
.ws5_c01312{word-spacing:-45.000000px;}
.ws6_c01312{word-spacing:-41.412000px;}
.ws0_c01312{word-spacing:-36.906000px;}
.ws1_c01312{word-spacing:-19.629000px;}
.ws2_c01312{word-spacing:-15.906000px;}
.ws3_c01312{word-spacing:-14.352000px;}
.ws7_c01312{word-spacing:0.000000px;}
.ws4_c01312{word-spacing:3.864000px;}
._21_c01312{margin-left:-27.828000px;}
._14_c01312{margin-left:-20.658000px;}
._15_c01312{margin-left:-14.982000px;}
._18_c01312{margin-left:-13.272000px;}
._11_c01312{margin-left:-12.210000px;}
._10_c01312{margin-left:-10.290000px;}
._d_c01312{margin-left:-8.544000px;}
._b_c01312{margin-left:-6.270000px;}
._1_c01312{margin-left:-4.860000px;}
._9_c01312{margin-left:-3.432000px;}
._c_c01312{margin-left:-2.316000px;}
._a_c01312{margin-left:-1.152000px;}
._12_c01312{width:1.056000px;}
._f_c01312{width:2.574000px;}
._17_c01312{width:3.894000px;}
._1f_c01312{width:5.148000px;}
._16_c01312{width:6.336000px;}
._e_c01312{width:7.830000px;}
._1e_c01312{width:9.654000px;}
._22_c01312{width:11.028000px;}
._1b_c01312{width:12.144000px;}
._3_c01312{width:16.740000px;}
._1c_c01312{width:20.592000px;}
._26_c01312{width:25.236000px;}
._27_c01312{width:26.478000px;}
._5_c01312{width:27.816000px;}
._8_c01312{width:37.608000px;}
._6_c01312{width:49.104000px;}
._4_c01312{width:50.304000px;}
._0_c01312{width:52.260000px;}
._7_c01312{width:55.704000px;}
._23_c01312{width:60.456000px;}
._25_c01312{width:74.832000px;}
._2_c01312{width:81.420000px;}
._13_c01312{width:197.598000px;}
._28_c01312{width:242.070000px;}
._1d_c01312{width:253.788000px;}
._20_c01312{width:260.343000px;}
._19_c01312{width:468.042000px;}
._1a_c01312{width:682.914000px;}
._24_c01312{width:811.788000px;}
.fc2_c01312{color:transparent;}
.fc1_c01312{color:rgb(128,128,128);}
.fc0_c01312{color:rgb(0,0,0);}
.fs1_c01312{font-size:24.000000px;}
.fs8_c01312{font-size:48.000000px;}
.fs0_c01312{font-size:60.000000px;}
.fs2_c01312{font-size:66.000000px;}
.fs4_c01312{font-size:69.000000px;}
.fs6_c01312{font-size:72.000000px;}
.fs3_c01312{font-size:75.000000px;}
.fs7_c01312{font-size:78.000000px;}
.fs5_c01312{font-size:87.000000px;}
.y0_c01312{bottom:0.000000px;}
.y1d_c01312{bottom:3.105000px;}
.y1c_c01312{bottom:7.228363px;}
.y1b_c01312{bottom:10.800000px;}
.y1a_c01312{bottom:29.700000px;}
.y19_c01312{bottom:62.550000px;}
.y18_c01312{bottom:111.000000px;}
.y17_c01312{bottom:139.050000px;}
.y16_c01312{bottom:161.700000px;}
.y15_c01312{bottom:188.400000px;}
.y14_c01312{bottom:215.250000px;}
.y13_c01312{bottom:238.950000px;}
.y12_c01312{bottom:265.950000px;}
.y11_c01312{bottom:289.350000px;}
.y10_c01312{bottom:314.250000px;}
.yf_c01312{bottom:338.850000px;}
.ye_c01312{bottom:365.550000px;}
.yd_c01312{bottom:406.050000px;}
.yc_c01312{bottom:459.750000px;}
.yb_c01312{bottom:486.000000px;}
.ya_c01312{bottom:512.400000px;}
.y9_c01312{bottom:535.500000px;}
.y8_c01312{bottom:561.000000px;}
.y7_c01312{bottom:586.200000px;}
.y6_c01312{bottom:610.500000px;}
.y5_c01312{bottom:636.750000px;}
.y4_c01312{bottom:660.150000px;}
.y3_c01312{bottom:686.550000px;}
.y2_c01312{bottom:711.000000px;}
.y1_c01312{bottom:734.700000px;}
.h9_c01312{height:13.200074px;}
.ha_c01312{height:43.804688px;}
.h2_c01312{height:75.966797px;}
.h4_c01312{height:77.247070px;}
.h5_c01312{height:80.758301px;}
.h3_c01312{height:83.563477px;}
.h8_c01312{height:84.269531px;}
.h7_c01312{height:91.160156px;}
.h6_c01312{height:110.151855px;}
.h1_c01312{height:781.500000px;}
.h0_c01312{height:781.650000px;}
.w2_c01312{width:104.875500px;}
.w1_c01312{width:504.750000px;}
.w0_c01312{width:504.900000px;}
.x0_c01312{left:0.000000px;}
.xd_c01312{left:15.750000px;}
.x9_c01312{left:17.250000px;}
.x5_c01312{left:19.800000px;}
.x4_c01312{left:24.000000px;}
.xb_c01312{left:33.750000px;}
.xc_c01312{left:37.800000px;}
.x3_c01312{left:39.450000px;}
.xa_c01312{left:43.200000px;}
.x7_c01312{left:44.250000px;}
.x2_c01312{left:46.200000px;}
.x6_c01312{left:47.850000px;}
.x8_c01312{left:91.050000px;}
.x1_c01312{left:163.950000px;}
.x10_c01312{left:204.264267px;}
.xf_c01312{left:291.900000px;}
.xe_c01312{left:409.350000px;}
@media print{
.v0_c01312{vertical-align:0.000000pt;}
.ls7_c01312{letter-spacing:-2.666667pt;}
.ls3_c01312{letter-spacing:0.000000pt;}
.ls2_c01312{letter-spacing:2.144000pt;}
.ls6_c01312{letter-spacing:2.666667pt;}
.ls0_c01312{letter-spacing:3.048000pt;}
.ls1_c01312{letter-spacing:5.181333pt;}
.ls5_c01312{letter-spacing:5.333333pt;}
.ls4_c01312{letter-spacing:18.666667pt;}
.ws5_c01312{word-spacing:-40.000000pt;}
.ws6_c01312{word-spacing:-36.810667pt;}
.ws0_c01312{word-spacing:-32.805333pt;}
.ws1_c01312{word-spacing:-17.448000pt;}
.ws2_c01312{word-spacing:-14.138667pt;}
.ws3_c01312{word-spacing:-12.757333pt;}
.ws7_c01312{word-spacing:0.000000pt;}
.ws4_c01312{word-spacing:3.434667pt;}
._21_c01312{margin-left:-24.736000pt;}
._14_c01312{margin-left:-18.362667pt;}
._15_c01312{margin-left:-13.317333pt;}
._18_c01312{margin-left:-11.797333pt;}
._11_c01312{margin-left:-10.853333pt;}
._10_c01312{margin-left:-9.146667pt;}
._d_c01312{margin-left:-7.594667pt;}
._b_c01312{margin-left:-5.573333pt;}
._1_c01312{margin-left:-4.320000pt;}
._9_c01312{margin-left:-3.050667pt;}
._c_c01312{margin-left:-2.058667pt;}
._a_c01312{margin-left:-1.024000pt;}
._12_c01312{width:0.938667pt;}
._f_c01312{width:2.288000pt;}
._17_c01312{width:3.461333pt;}
._1f_c01312{width:4.576000pt;}
._16_c01312{width:5.632000pt;}
._e_c01312{width:6.960000pt;}
._1e_c01312{width:8.581333pt;}
._22_c01312{width:9.802667pt;}
._1b_c01312{width:10.794667pt;}
._3_c01312{width:14.880000pt;}
._1c_c01312{width:18.304000pt;}
._26_c01312{width:22.432000pt;}
._27_c01312{width:23.536000pt;}
._5_c01312{width:24.725333pt;}
._8_c01312{width:33.429333pt;}
._6_c01312{width:43.648000pt;}
._4_c01312{width:44.714667pt;}
._0_c01312{width:46.453333pt;}
._7_c01312{width:49.514667pt;}
._23_c01312{width:53.738667pt;}
._25_c01312{width:66.517333pt;}
._2_c01312{width:72.373333pt;}
._13_c01312{width:175.642667pt;}
._28_c01312{width:215.173333pt;}
._1d_c01312{width:225.589333pt;}
._20_c01312{width:231.416000pt;}
._19_c01312{width:416.037333pt;}
._1a_c01312{width:607.034667pt;}
._24_c01312{width:721.589333pt;}
.fs1_c01312{font-size:21.333333pt;}
.fs8_c01312{font-size:42.666667pt;}
.fs0_c01312{font-size:53.333333pt;}
.fs2_c01312{font-size:58.666667pt;}
.fs4_c01312{font-size:61.333333pt;}
.fs6_c01312{font-size:64.000000pt;}
.fs3_c01312{font-size:66.666667pt;}
.fs7_c01312{font-size:69.333333pt;}
.fs5_c01312{font-size:77.333333pt;}
.y0_c01312{bottom:0.000000pt;}
.y1d_c01312{bottom:2.760000pt;}
.y1c_c01312{bottom:6.425212pt;}
.y1b_c01312{bottom:9.600000pt;}
.y1a_c01312{bottom:26.400000pt;}
.y19_c01312{bottom:55.600000pt;}
.y18_c01312{bottom:98.666667pt;}
.y17_c01312{bottom:123.600000pt;}
.y16_c01312{bottom:143.733333pt;}
.y15_c01312{bottom:167.466667pt;}
.y14_c01312{bottom:191.333333pt;}
.y13_c01312{bottom:212.400000pt;}
.y12_c01312{bottom:236.400000pt;}
.y11_c01312{bottom:257.200000pt;}
.y10_c01312{bottom:279.333333pt;}
.yf_c01312{bottom:301.200000pt;}
.ye_c01312{bottom:324.933333pt;}
.yd_c01312{bottom:360.933333pt;}
.yc_c01312{bottom:408.666667pt;}
.yb_c01312{bottom:432.000000pt;}
.ya_c01312{bottom:455.466667pt;}
.y9_c01312{bottom:476.000000pt;}
.y8_c01312{bottom:498.666667pt;}
.y7_c01312{bottom:521.066667pt;}
.y6_c01312{bottom:542.666667pt;}
.y5_c01312{bottom:566.000000pt;}
.y4_c01312{bottom:586.800000pt;}
.y3_c01312{bottom:610.266667pt;}
.y2_c01312{bottom:632.000000pt;}
.y1_c01312{bottom:653.066667pt;}
.h9_c01312{height:11.733399pt;}
.ha_c01312{height:38.937500pt;}
.h2_c01312{height:67.526042pt;}
.h4_c01312{height:68.664062pt;}
.h5_c01312{height:71.785156pt;}
.h3_c01312{height:74.278646pt;}
.h8_c01312{height:74.906250pt;}
.h7_c01312{height:81.031250pt;}
.h6_c01312{height:97.912760pt;}
.h1_c01312{height:694.666667pt;}
.h0_c01312{height:694.800000pt;}
.w2_c01312{width:93.222667pt;}
.w1_c01312{width:448.666667pt;}
.w0_c01312{width:448.800000pt;}
.x0_c01312{left:0.000000pt;}
.xd_c01312{left:14.000000pt;}
.x9_c01312{left:15.333333pt;}
.x5_c01312{left:17.600000pt;}
.x4_c01312{left:21.333333pt;}
.xb_c01312{left:30.000000pt;}
.xc_c01312{left:33.600000pt;}
.x3_c01312{left:35.066667pt;}
.xa_c01312{left:38.400000pt;}
.x7_c01312{left:39.333333pt;}
.x2_c01312{left:41.066667pt;}
.x6_c01312{left:42.533333pt;}
.x8_c01312{left:80.933333pt;}
.x1_c01312{left:145.733333pt;}
.x10_c01312{left:181.568237pt;}
.xf_c01312{left:259.466667pt;}
.xe_c01312{left:363.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_be85a1c3e40dbb0e591bbd51.woff2')format("woff");}.ff1_c01313{font-family:ff1_c01313;line-height:1.284180;font-style:normal;font-weight:normal;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_b660fd2fc1f4c899140f117d.woff2')format("woff");}.ff2_c01313{font-family:ff2_c01313;line-height:1.480469;font-style:normal;font-weight:normal;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_b6198f39362cb7ec57e2095a.woff2')format("woff");}.ff3_c01313{font-family:ff3_c01313;line-height:1.568848;font-style:normal;font-weight:normal;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_458971c543ee0e93b44172a0.woff2')format("woff");}.ff4_c01313{font-family:ff4_c01313;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01313;src:url('chunks/assets/font_a17afda264b9cd90a01c4959.woff2')format("woff");}.ff5_c01313{font-family:ff5_c01313;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01313;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff6_c01313{font-family:ff6_c01313;line-height:1.219238;font-style: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;}
.v1_c01313{vertical-align:2.400000px;}
.ls9_c01313{letter-spacing:-12.000000px;}
.ls7_c01313{letter-spacing:-3.000000px;}
.ls8_c01313{letter-spacing:0.000000px;}
.ls0_c01313{letter-spacing:2.400000px;}
.ls2_c01313{letter-spacing:3.000000px;}
.ls5_c01313{letter-spacing:5.400000px;}
.ls3_c01313{letter-spacing:6.000000px;}
.ls1_c01313{letter-spacing:15.000000px;}
.ls4_c01313{letter-spacing:23.400000px;}
.ls6_c01313{letter-spacing:27.000000px;}
.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:-85.500000px;}
.ws4_c01313{word-spacing:-45.000000px;}
.ws1_c01313{word-spacing:-23.352000px;}
.ws5_c01313{word-spacing:-14.352000px;}
.ws3_c01313{word-spacing:-5.352000px;}
.ws2_c01313{word-spacing:-1.848000px;}
.ws6_c01313{word-spacing:0.000000px;}
._1e_c01313{margin-left:-26.616000px;}
._16_c01313{margin-left:-20.898000px;}
._17_c01313{margin-left:-17.856000px;}
._1f_c01313{margin-left:-16.200000px;}
._6_c01313{margin-left:-14.040000px;}
._e_c01313{margin-left:-11.376000px;}
._a_c01313{margin-left:-10.140000px;}
._1a_c01313{margin-left:-8.292000px;}
._19_c01313{margin-left:-7.068000px;}
._b_c01313{margin-left:-5.832000px;}
._4_c01313{margin-left:-4.464000px;}
._3_c01313{margin-left:-3.288000px;}
._2_c01313{margin-left:-2.244000px;}
._c_c01313{margin-left:-1.128000px;}
._1_c01313{width:1.008000px;}
._0_c01313{width:2.106000px;}
._7_c01313{width:4.059000px;}
._12_c01313{width:5.544000px;}
._11_c01313{width:6.840000px;}
._1b_c01313{width:7.932000px;}
._15_c01313{width:9.264000px;}
._5_c01313{width:11.088000px;}
._9_c01313{width:12.816000px;}
._d_c01313{width:16.716000px;}
._14_c01313{width:18.414000px;}
._22_c01313{width:27.468000px;}
._8_c01313{width:33.489000px;}
._f_c01313{width:40.584000px;}
._1c_c01313{width:70.632000px;}
._1d_c01313{width:135.567000px;}
._20_c01313{width:202.947000px;}
._13_c01313{width:382.692000px;}
._18_c01313{width:526.314000px;}
._21_c01313{width:1004.088000px;}
._10_c01313{width:1198.668000px;}
.fc2_c01313{color:transparent;}
.fc1_c01313{color:rgb(128,128,128);}
.fc0_c01313{color:rgb(0,0,0);}
.fs4_c01313{font-size:48.000000px;}
.fs1_c01313{font-size:72.000000px;}
.fs3_c01313{font-size:78.000000px;}
.fs2_c01313{font-size:99.000000px;}
.fs0_c01313{font-size:117.000000px;}
.y0_c01313{bottom:0.000000px;}
.y1c_c01313{bottom:3.105000px;}
.y1b_c01313{bottom:7.228355px;}
.y1a_c01313{bottom:56.235000px;}
.y19_c01313{bottom:85.635000px;}
.y18_c01313{bottom:111.585000px;}
.y17_c01313{bottom:137.685000px;}
.y16_c01313{bottom:163.035000px;}
.y15_c01313{bottom:186.585000px;}
.y14_c01313{bottom:213.285000px;}
.y13_c01313{bottom:236.535000px;}
.y12_c01313{bottom:265.635000px;}
.y11_c01313{bottom:288.435000px;}
.y10_c01313{bottom:313.785000px;}
.yf_c01313{bottom:338.835000px;}
.ye_c01313{bottom:362.085000px;}
.yd_c01313{bottom:386.085000px;}
.yc_c01313{bottom:409.635000px;}
.yb_c01313{bottom:435.285000px;}
.ya_c01313{bottom:458.685000px;}
.y9_c01313{bottom:483.585000px;}
.y8_c01313{bottom:508.635000px;}
.y7_c01313{bottom:534.285000px;}
.y6_c01313{bottom:559.785000px;}
.y5_c01313{bottom:584.085000px;}
.y4_c01313{bottom:627.435000px;}
.y3_c01313{bottom:683.385000px;}
.y2_c01313{bottom:708.435000px;}
.y1_c01313{bottom:733.335000px;}
.h6_c01313{height:13.200074px;}
.h7_c01313{height:43.804688px;}
.h4_c01313{height:84.269531px;}
.h3_c01313{height:91.160156px;}
.h5_c01313{height:97.163086px;}
.h2_c01313{height:114.771973px;}
.h0_c01313{height:791.625000px;}
.h1_c01313{height:792.000000px;}
.w1_c01313{width:104.875500px;}
.w0_c01313{width:509.250000px;}
.x0_c01313{left:0.000000px;}
.xa_c01313{left:56.700000px;}
.x2_c01313{left:57.750000px;}
.x8_c01313{left:58.800000px;}
.x6_c01313{left:72.000000px;}
.x9_c01313{left:81.300000px;}
.x3_c01313{left:82.350000px;}
.x7_c01313{left:84.000000px;}
.x5_c01313{left:133.650000px;}
.x4_c01313{left:154.800000px;}
.x1_c01313{left:206.550000px;}
@media print{
.v0_c01313{vertical-align:0.000000pt;}
.v1_c01313{vertical-align:2.133333pt;}
.ls9_c01313{letter-spacing:-10.666667pt;}
.ls7_c01313{letter-spacing:-2.666667pt;}
.ls8_c01313{letter-spacing:0.000000pt;}
.ls0_c01313{letter-spacing:2.133333pt;}
.ls2_c01313{letter-spacing:2.666667pt;}
.ls5_c01313{letter-spacing:4.800000pt;}
.ls3_c01313{letter-spacing:5.333333pt;}
.ls1_c01313{letter-spacing:13.333333pt;}
.ls4_c01313{letter-spacing:20.800000pt;}
.ls6_c01313{letter-spacing:24.000000pt;}
.ws0_c01313{word-spacing:-76.000000pt;}
.ws4_c01313{word-spacing:-40.000000pt;}
.ws1_c01313{word-spacing:-20.757333pt;}
.ws5_c01313{word-spacing:-12.757333pt;}
.ws3_c01313{word-spacing:-4.757333pt;}
.ws2_c01313{word-spacing:-1.642667pt;}
.ws6_c01313{word-spacing:0.000000pt;}
._1e_c01313{margin-left:-23.658667pt;}
._16_c01313{margin-left:-18.576000pt;}
._17_c01313{margin-left:-15.872000pt;}
._1f_c01313{margin-left:-14.400000pt;}
._6_c01313{margin-left:-12.480000pt;}
._e_c01313{margin-left:-10.112000pt;}
._a_c01313{margin-left:-9.013333pt;}
._1a_c01313{margin-left:-7.370667pt;}
._19_c01313{margin-left:-6.282667pt;}
._b_c01313{margin-left:-5.184000pt;}
._4_c01313{margin-left:-3.968000pt;}
._3_c01313{margin-left:-2.922667pt;}
._2_c01313{margin-left:-1.994667pt;}
._c_c01313{margin-left:-1.002667pt;}
._1_c01313{width:0.896000pt;}
._0_c01313{width:1.872000pt;}
._7_c01313{width:3.608000pt;}
._12_c01313{width:4.928000pt;}
._11_c01313{width:6.080000pt;}
._1b_c01313{width:7.050667pt;}
._15_c01313{width:8.234667pt;}
._5_c01313{width:9.856000pt;}
._9_c01313{width:11.392000pt;}
._d_c01313{width:14.858667pt;}
._14_c01313{width:16.368000pt;}
._22_c01313{width:24.416000pt;}
._8_c01313{width:29.768000pt;}
._f_c01313{width:36.074667pt;}
._1c_c01313{width:62.784000pt;}
._1d_c01313{width:120.504000pt;}
._20_c01313{width:180.397333pt;}
._13_c01313{width:340.170667pt;}
._18_c01313{width:467.834667pt;}
._21_c01313{width:892.522667pt;}
._10_c01313{width:1065.482667pt;}
.fs4_c01313{font-size:42.666667pt;}
.fs1_c01313{font-size:64.000000pt;}
.fs3_c01313{font-size:69.333333pt;}
.fs2_c01313{font-size:88.000000pt;}
.fs0_c01313{font-size:104.000000pt;}
.y0_c01313{bottom:0.000000pt;}
.y1c_c01313{bottom:2.760000pt;}
.y1b_c01313{bottom:6.425204pt;}
.y1a_c01313{bottom:49.986667pt;}
.y19_c01313{bottom:76.120000pt;}
.y18_c01313{bottom:99.186667pt;}
.y17_c01313{bottom:122.386667pt;}
.y16_c01313{bottom:144.920000pt;}
.y15_c01313{bottom:165.853333pt;}
.y14_c01313{bottom:189.586667pt;}
.y13_c01313{bottom:210.253333pt;}
.y12_c01313{bottom:236.120000pt;}
.y11_c01313{bottom:256.386667pt;}
.y10_c01313{bottom:278.920000pt;}
.yf_c01313{bottom:301.186667pt;}
.ye_c01313{bottom:321.853333pt;}
.yd_c01313{bottom:343.186667pt;}
.yc_c01313{bottom:364.120000pt;}
.yb_c01313{bottom:386.920000pt;}
.ya_c01313{bottom:407.720000pt;}
.y9_c01313{bottom:429.853333pt;}
.y8_c01313{bottom:452.120000pt;}
.y7_c01313{bottom:474.920000pt;}
.y6_c01313{bottom:497.586667pt;}
.y5_c01313{bottom:519.186667pt;}
.y4_c01313{bottom:557.720000pt;}
.y3_c01313{bottom:607.453333pt;}
.y2_c01313{bottom:629.720000pt;}
.y1_c01313{bottom:651.853333pt;}
.h6_c01313{height:11.733399pt;}
.h7_c01313{height:38.937500pt;}
.h4_c01313{height:74.906250pt;}
.h3_c01313{height:81.031250pt;}
.h5_c01313{height:86.367188pt;}
.h2_c01313{height:102.019531pt;}
.h0_c01313{height:703.666667pt;}
.h1_c01313{height:704.000000pt;}
.w1_c01313{width:93.222667pt;}
.w0_c01313{width:452.666667pt;}
.x0_c01313{left:0.000000pt;}
.xa_c01313{left:50.400000pt;}
.x2_c01313{left:51.333333pt;}
.x8_c01313{left:52.266667pt;}
.x6_c01313{left:64.000000pt;}
.x9_c01313{left:72.266667pt;}
.x3_c01313{left:73.200000pt;}
.x7_c01313{left:74.666667pt;}
.x5_c01313{left:118.800000pt;}
.x4_c01313{left:137.600000pt;}
.x1_c01313{left:183.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_72290996b49723dfe28a67ef.woff2')format("woff");}.ff1_c01314{font-family:ff1_c01314;line-height:1.480469;font-style:normal;font-weight:normal;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_c85de47047f7facd399dd401.woff2')format("woff");}.ff2_c01314{font-family:ff2_c01314;line-height:1.284668;font-style:normal;font-weight:normal;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_5c932f973578da137b61b44c.woff2')format("woff");}.ff3_c01314{font-family:ff3_c01314;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01314;src:url('chunks/assets/font_2b07a759bfd4dd14a98bc410.woff2')format("woff");}.ff4_c01314{font-family:ff4_c01314;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01314;src:url('chunks/assets/font_89483c0c947567e63158d9a2.woff2')format("woff");}.ff5_c01314{font-family:ff5_c01314;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01314;src:url('chunks/assets/font_34b0be3dd596f018a67b03f4.woff2')format("woff");}.ff6_c01314{font-family:ff6_c01314;line-height:1.575000;font-style:normal;font-weight: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_c01314;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c01314{font-family:ff7_c01314;line-height:1.219238;font-style: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);}
.m1_c01314{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01314{vertical-align:0.000000px;}
.lsa_c01314{letter-spacing:-12.000000px;}
.ls7_c01314{letter-spacing:-3.000000px;}
.ls6_c01314{letter-spacing:0.000000px;}
.ls4_c01314{letter-spacing:0.432000px;}
.ls3_c01314{letter-spacing:1.200000px;}
.ls9_c01314{letter-spacing:3.000000px;}
.ls8_c01314{letter-spacing:6.000000px;}
.ls1_c01314{letter-spacing:15.588000px;}
.ls5_c01314{letter-spacing:21.000000px;}
.ls0_c01314{letter-spacing:905.448000px;}
.ls2_c01314{letter-spacing:1279.848000px;}
.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;}
}
.ws3_c01314{word-spacing:-45.000000px;}
.ws6_c01314{word-spacing:-36.051000px;}
.ws1_c01314{word-spacing:-26.487000px;}
.ws5_c01314{word-spacing:-23.352000px;}
.ws0_c01314{word-spacing:-20.712000px;}
.ws7_c01314{word-spacing:-20.352000px;}
.ws2_c01314{word-spacing:-14.352000px;}
.ws4_c01314{word-spacing:-5.352000px;}
.ws8_c01314{word-spacing:0.000000px;}
._1e_c01314{margin-left:-20.634000px;}
._23_c01314{margin-left:-18.177000px;}
._15_c01314{margin-left:-16.560000px;}
._1b_c01314{margin-left:-14.400000px;}
._13_c01314{margin-left:-12.999000px;}
._21_c01314{margin-left:-11.286000px;}
._16_c01314{margin-left:-9.999000px;}
._f_c01314{margin-left:-8.901000px;}
._12_c01314{margin-left:-7.470000px;}
._8_c01314{margin-left:-6.435000px;}
._e_c01314{margin-left:-4.950000px;}
._17_c01314{margin-left:-3.924000px;}
._d_c01314{margin-left:-2.898000px;}
._4_c01314{margin-left:-1.881000px;}
._7_c01314{width:1.188000px;}
._5_c01314{width:2.277000px;}
._6_c01314{width:3.861000px;}
._3_c01314{width:4.950000px;}
._2_c01314{width:7.029000px;}
._18_c01314{width:8.121000px;}
._11_c01314{width:9.255000px;}
._c_c01314{width:10.692000px;}
._b_c01314{width:11.964000px;}
._10_c01314{width:14.457000px;}
._1c_c01314{width:16.821000px;}
._0_c01314{width:20.232000px;}
._1_c01314{width:21.528000px;}
._1a_c01314{width:32.040000px;}
._9_c01314{width:43.896000px;}
._1d_c01314{width:149.934000px;}
._a_c01314{width:368.499000px;}
._14_c01314{width:427.956000px;}
._22_c01314{width:442.386000px;}
._20_c01314{width:604.881000px;}
._19_c01314{width:710.511000px;}
._1f_c01314{width:969.291000px;}
.fc2_c01314{color:transparent;}
.fc1_c01314{color:rgb(128,128,128);}
.fc0_c01314{color:rgb(0,0,0);}
.fs8_c01314{font-size:48.000000px;}
.fs5_c01314{font-size:60.000000px;}
.fs7_c01314{font-size:63.000000px;}
.fs3_c01314{font-size:69.000000px;}
.fs0_c01314{font-size:72.000000px;}
.fs6_c01314{font-size:78.000000px;}
.fs4_c01314{font-size:81.000000px;}
.fs2_c01314{font-size:93.000000px;}
.fs1_c01314{font-size:99.000000px;}
.y0_c01314{bottom:0.000000px;}
.y1e_c01314{bottom:3.105000px;}
.y1d_c01314{bottom:7.228371px;}
.y1c_c01314{bottom:30.765000px;}
.y1b_c01314{bottom:59.415000px;}
.y1a_c01314{bottom:82.065000px;}
.y19_c01314{bottom:107.415000px;}
.y18_c01314{bottom:132.615000px;}
.y17_c01314{bottom:157.965000px;}
.y16_c01314{bottom:182.265000px;}
.y15_c01314{bottom:208.215000px;}
.y14_c01314{bottom:232.665000px;}
.y13_c01314{bottom:257.865000px;}
.y12_c01314{bottom:283.215000px;}
.y11_c01314{bottom:307.515000px;}
.y10_c01314{bottom:332.565000px;}
.yf_c01314{bottom:357.465000px;}
.ye_c01314{bottom:379.665000px;}
.yd_c01314{bottom:428.715000px;}
.yc_c01314{bottom:453.315000px;}
.yb_c01314{bottom:478.965000px;}
.ya_c01314{bottom:501.915000px;}
.y9_c01314{bottom:528.165000px;}
.y8_c01314{bottom:552.165000px;}
.y7_c01314{bottom:578.565000px;}
.y6_c01314{bottom:602.865000px;}
.y5_c01314{bottom:626.715000px;}
.y4_c01314{bottom:653.865000px;}
.y3_c01314{bottom:679.515000px;}
.y2_c01314{bottom:703.665000px;}
.y1_c01314{bottom:730.665000px;}
.h7_c01314{height:13.200074px;}
.h8_c01314{height:43.804688px;}
.h5_c01314{height:80.758301px;}
.h2_c01314{height:84.269531px;}
.h6_c01314{height:91.160156px;}
.h3_c01314{height:97.163086px;}
.h4_c01314{height:117.748535px;}
.h0_c01314{height:771.675000px;}
.h1_c01314{height:771.750000px;}
.w2_c01314{width:104.875500px;}
.w1_c01314{width:507.000000px;}
.w0_c01314{width:507.075000px;}
.x0_c01314{left:0.000000px;}
.x6_c01314{left:25.050000px;}
.x7_c01314{left:26.700000px;}
.x3_c01314{left:27.900000px;}
.x2_c01314{left:35.400000px;}
.xb_c01314{left:46.350000px;}
.x5_c01314{left:48.600000px;}
.x8_c01314{left:51.000000px;}
.x9_c01314{left:52.050000px;}
.xa_c01314{left:54.000000px;}
.x4_c01314{left:61.200000px;}
.xc_c01314{left:62.400000px;}
.xd_c01314{left:160.350000px;}
.x1_c01314{left:168.750000px;}
.xe_c01314{left:205.351730px;}
@media print{
.v0_c01314{vertical-align:0.000000pt;}
.lsa_c01314{letter-spacing:-10.666667pt;}
.ls7_c01314{letter-spacing:-2.666667pt;}
.ls6_c01314{letter-spacing:0.000000pt;}
.ls4_c01314{letter-spacing:0.384000pt;}
.ls3_c01314{letter-spacing:1.066667pt;}
.ls9_c01314{letter-spacing:2.666667pt;}
.ls8_c01314{letter-spacing:5.333333pt;}
.ls1_c01314{letter-spacing:13.856000pt;}
.ls5_c01314{letter-spacing:18.666667pt;}
.ls0_c01314{letter-spacing:804.842667pt;}
.ls2_c01314{letter-spacing:1137.642667pt;}
.ws3_c01314{word-spacing:-40.000000pt;}
.ws6_c01314{word-spacing:-32.045333pt;}
.ws1_c01314{word-spacing:-23.544000pt;}
.ws5_c01314{word-spacing:-20.757333pt;}
.ws0_c01314{word-spacing:-18.410667pt;}
.ws7_c01314{word-spacing:-18.090667pt;}
.ws2_c01314{word-spacing:-12.757333pt;}
.ws4_c01314{word-spacing:-4.757333pt;}
.ws8_c01314{word-spacing:0.000000pt;}
._1e_c01314{margin-left:-18.341333pt;}
._23_c01314{margin-left:-16.157333pt;}
._15_c01314{margin-left:-14.720000pt;}
._1b_c01314{margin-left:-12.800000pt;}
._13_c01314{margin-left:-11.554667pt;}
._21_c01314{margin-left:-10.032000pt;}
._16_c01314{margin-left:-8.888000pt;}
._f_c01314{margin-left:-7.912000pt;}
._12_c01314{margin-left:-6.640000pt;}
._8_c01314{margin-left:-5.720000pt;}
._e_c01314{margin-left:-4.400000pt;}
._17_c01314{margin-left:-3.488000pt;}
._d_c01314{margin-left:-2.576000pt;}
._4_c01314{margin-left:-1.672000pt;}
._7_c01314{width:1.056000pt;}
._5_c01314{width:2.024000pt;}
._6_c01314{width:3.432000pt;}
._3_c01314{width:4.400000pt;}
._2_c01314{width:6.248000pt;}
._18_c01314{width:7.218667pt;}
._11_c01314{width:8.226667pt;}
._c_c01314{width:9.504000pt;}
._b_c01314{width:10.634667pt;}
._10_c01314{width:12.850667pt;}
._1c_c01314{width:14.952000pt;}
._0_c01314{width:17.984000pt;}
._1_c01314{width:19.136000pt;}
._1a_c01314{width:28.480000pt;}
._9_c01314{width:39.018667pt;}
._1d_c01314{width:133.274667pt;}
._a_c01314{width:327.554667pt;}
._14_c01314{width:380.405333pt;}
._22_c01314{width:393.232000pt;}
._20_c01314{width:537.672000pt;}
._19_c01314{width:631.565333pt;}
._1f_c01314{width:861.592000pt;}
.fs8_c01314{font-size:42.666667pt;}
.fs5_c01314{font-size:53.333333pt;}
.fs7_c01314{font-size:56.000000pt;}
.fs3_c01314{font-size:61.333333pt;}
.fs0_c01314{font-size:64.000000pt;}
.fs6_c01314{font-size:69.333333pt;}
.fs4_c01314{font-size:72.000000pt;}
.fs2_c01314{font-size:82.666667pt;}
.fs1_c01314{font-size:88.000000pt;}
.y0_c01314{bottom:0.000000pt;}
.y1e_c01314{bottom:2.760000pt;}
.y1d_c01314{bottom:6.425219pt;}
.y1c_c01314{bottom:27.346667pt;}
.y1b_c01314{bottom:52.813333pt;}
.y1a_c01314{bottom:72.946667pt;}
.y19_c01314{bottom:95.480000pt;}
.y18_c01314{bottom:117.880000pt;}
.y17_c01314{bottom:140.413333pt;}
.y16_c01314{bottom:162.013333pt;}
.y15_c01314{bottom:185.080000pt;}
.y14_c01314{bottom:206.813333pt;}
.y13_c01314{bottom:229.213333pt;}
.y12_c01314{bottom:251.746667pt;}
.y11_c01314{bottom:273.346667pt;}
.y10_c01314{bottom:295.613333pt;}
.yf_c01314{bottom:317.746667pt;}
.ye_c01314{bottom:337.480000pt;}
.yd_c01314{bottom:381.080000pt;}
.yc_c01314{bottom:402.946667pt;}
.yb_c01314{bottom:425.746667pt;}
.ya_c01314{bottom:446.146667pt;}
.y9_c01314{bottom:469.480000pt;}
.y8_c01314{bottom:490.813333pt;}
.y7_c01314{bottom:514.280000pt;}
.y6_c01314{bottom:535.880000pt;}
.y5_c01314{bottom:557.080000pt;}
.y4_c01314{bottom:581.213333pt;}
.y3_c01314{bottom:604.013333pt;}
.y2_c01314{bottom:625.480000pt;}
.y1_c01314{bottom:649.480000pt;}
.h7_c01314{height:11.733399pt;}
.h8_c01314{height:38.937500pt;}
.h5_c01314{height:71.785156pt;}
.h2_c01314{height:74.906250pt;}
.h6_c01314{height:81.031250pt;}
.h3_c01314{height:86.367188pt;}
.h4_c01314{height:104.665365pt;}
.h0_c01314{height:685.933333pt;}
.h1_c01314{height:686.000000pt;}
.w2_c01314{width:93.222667pt;}
.w1_c01314{width:450.666667pt;}
.w0_c01314{width:450.733333pt;}
.x0_c01314{left:0.000000pt;}
.x6_c01314{left:22.266667pt;}
.x7_c01314{left:23.733333pt;}
.x3_c01314{left:24.800000pt;}
.x2_c01314{left:31.466667pt;}
.xb_c01314{left:41.200000pt;}
.x5_c01314{left:43.200000pt;}
.x8_c01314{left:45.333333pt;}
.x9_c01314{left:46.266667pt;}
.xa_c01314{left:48.000000pt;}
.x4_c01314{left:54.400000pt;}
.xc_c01314{left:55.466667pt;}
.xd_c01314{left:142.533333pt;}
.x1_c01314{left:150.000000pt;}
.xe_c01314{left:182.534871pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a5e052f067f14ec35c23aaaa.woff2')format("woff");}.ff1_c01315{font-family:ff1_c01315;line-height:1.568848;font-style:normal;font-weight:normal;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_549ae24d0c571c2f44b8bc70.woff2')format("woff");}.ff2_c01315{font-family:ff2_c01315;line-height:1.284668;font-style:normal;font-weight:normal;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_d6b1b61d0ebfd74c25465de1.woff2')format("woff");}.ff3_c01315{font-family:ff3_c01315;line-height:1.575000;font-style:normal;font-weight:normal;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_1c743a35b85c39b493e07017.woff2')format("woff");}.ff4_c01315{font-family:ff4_c01315;line-height:1.575000;font-style:normal;font-weight:normal;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_5c7593b994f6886a129d0a1c.woff2')format("woff");}.ff5_c01315{font-family:ff5_c01315;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01315;src:url('chunks/assets/font_5875db5b74cbac0a38d34fc7.woff2')format("woff");}.ff6_c01315{font-family:ff6_c01315;line-height:1.568848;font-style:normal;font-weight: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_c01315;src:url('chunks/assets/font_0cd28848117c522636214637.woff2')format("woff");}.ff7_c01315{font-family:ff7_c01315;line-height:1.219238;font-style: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;}
.lsd_c01315{letter-spacing:-12.000000px;}
.ls6_c01315{letter-spacing:-9.000000px;}
.ls9_c01315{letter-spacing:-6.000000px;}
.ls8_c01315{letter-spacing:-3.000000px;}
.ls5_c01315{letter-spacing:0.000000px;}
.ls4_c01315{letter-spacing:3.000000px;}
.ls2_c01315{letter-spacing:3.588000px;}
.ls7_c01315{letter-spacing:6.000000px;}
.ls0_c01315{letter-spacing:10.200000px;}
.ls1_c01315{letter-spacing:11.568000px;}
.lsa_c01315{letter-spacing:18.000000px;}
.lsb_c01315{letter-spacing:27.000000px;}
.lsc_c01315{letter-spacing:66.000000px;}
.ls3_c01315{letter-spacing:240.648000px;}
.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;}
}
.wsb_c01315{word-spacing:-83.352000px;}
.ws9_c01315{word-spacing:-70.488000px;}
.ws8_c01315{word-spacing:-61.790400px;}
.ws7_c01315{word-spacing:-35.352000px;}
.ws0_c01315{word-spacing:-30.000000px;}
.wsa_c01315{word-spacing:-26.352000px;}
.ws2_c01315{word-spacing:-24.963000px;}
.ws4_c01315{word-spacing:-23.352000px;}
.ws6_c01315{word-spacing:-20.352000px;}
.ws3_c01315{word-spacing:-14.352000px;}
.ws5_c01315{word-spacing:-11.352000px;}
.wsc_c01315{word-spacing:-5.352000px;}
.ws1_c01315{word-spacing:-4.014000px;}
.wsd_c01315{word-spacing:0.000000px;}
._36_c01315{margin-left:-51.595800px;}
._37_c01315{margin-left:-46.660800px;}
._39_c01315{margin-left:-38.520000px;}
._38_c01315{margin-left:-30.240000px;}
._33_c01315{margin-left:-27.918000px;}
._2d_c01315{margin-left:-25.920000px;}
._31_c01315{margin-left:-22.680000px;}
._14_c01315{margin-left:-20.070000px;}
._1d_c01315{margin-left:-18.360000px;}
._f_c01315{margin-left:-16.200000px;}
._b_c01315{margin-left:-14.418000px;}
._1a_c01315{margin-left:-12.834000px;}
._32_c01315{margin-left:-11.178000px;}
._1c_c01315{margin-left:-10.134000px;}
._1b_c01315{margin-left:-9.072000px;}
._21_c01315{margin-left:-7.788000px;}
._27_c01315{margin-left:-6.768000px;}
._1e_c01315{margin-left:-5.604000px;}
._1f_c01315{margin-left:-4.104000px;}
._11_c01315{margin-left:-2.187000px;}
._13_c01315{margin-left:-1.161000px;}
._8_c01315{width:1.539000px;}
._a_c01315{width:2.673000px;}
._9_c01315{width:3.726000px;}
._4_c01315{width:5.427000px;}
._29_c01315{width:6.624000px;}
._7_c01315{width:7.776000px;}
._5_c01315{width:9.477000px;}
._e_c01315{width:10.953000px;}
._0_c01315{width:13.104000px;}
._6_c01315{width:15.633000px;}
._2_c01315{width:17.136000px;}
._35_c01315{width:20.445000px;}
._c_c01315{width:22.437000px;}
._3a_c01315{width:24.267000px;}
._1_c01315{width:28.224000px;}
._42_c01315{width:30.291000px;}
._12_c01315{width:32.202000px;}
._2e_c01315{width:39.960000px;}
._18_c01315{width:41.958000px;}
._2c_c01315{width:45.300000px;}
._2f_c01315{width:63.954000px;}
._10_c01315{width:72.252000px;}
._3b_c01315{width:88.980000px;}
._16_c01315{width:103.680000px;}
._34_c01315{width:126.108000px;}
._28_c01315{width:129.843000px;}
._3_c01315{width:147.024000px;}
._20_c01315{width:166.155000px;}
._15_c01315{width:176.826000px;}
._24_c01315{width:182.781000px;}
._25_c01315{width:198.648000px;}
._44_c01315{width:203.301000px;}
._26_c01315{width:206.148000px;}
._17_c01315{width:218.052000px;}
._3c_c01315{width:221.319000px;}
._43_c01315{width:222.837000px;}
._3d_c01315{width:259.272000px;}
._d_c01315{width:262.521000px;}
._2b_c01315{width:281.244000px;}
._19_c01315{width:284.805000px;}
._40_c01315{width:289.368000px;}
._45_c01315{width:297.432000px;}
._41_c01315{width:311.112000px;}
._3e_c01315{width:479.700000px;}
._23_c01315{width:611.346000px;}
._2a_c01315{width:690.336000px;}
._30_c01315{width:709.335000px;}
._22_c01315{width:812.106000px;}
._3f_c01315{width:941.142000px;}
.fc2_c01315{color:transparent;}
.fc1_c01315{color:rgb(128,128,128);}
.fc0_c01315{color:rgb(0,0,0);}
.fs4_c01315{font-size:36.000000px;}
.fs7_c01315{font-size:48.000000px;}
.fs2_c01315{font-size:54.000000px;}
.fs6_c01315{font-size:57.600000px;}
.fs3_c01315{font-size:60.000000px;}
.fs5_c01315{font-size:63.000000px;}
.fs0_c01315{font-size:72.000000px;}
.fs1_c01315{font-size:81.000000px;}
.y0_c01315{bottom:0.000000px;}
.y16_c01315{bottom:3.105000px;}
.y15_c01315{bottom:7.228363px;}
.y14_c01315{bottom:31.050000px;}
.y13_c01315{bottom:83.400000px;}
.y12_c01315{bottom:109.350000px;}
.y11_c01315{bottom:133.950000px;}
.y10_c01315{bottom:159.600000px;}
.yf_c01315{bottom:186.000000px;}
.ye_c01315{bottom:261.000000px;}
.yd_c01315{bottom:287.550000px;}
.yc_c01315{bottom:310.200000px;}
.yb_c01315{bottom:337.200000px;}
.ya_c01315{bottom:455.250000px;}
.y9_c01315{bottom:507.600000px;}
.y8_c01315{bottom:532.950000px;}
.y7_c01315{bottom:557.550000px;}
.y6_c01315{bottom:581.850000px;}
.y5_c01315{bottom:608.550000px;}
.y4_c01315{bottom:632.550000px;}
.y3_c01315{bottom:684.000000px;}
.y2_c01315{bottom:708.150000px;}
.y1_c01315{bottom:735.000000px;}
.h7_c01315{height:13.200074px;}
.h5_c01315{height:38.412000px;}
.h8_c01315{height:43.804688px;}
.h4_c01315{height:68.370117px;}
.h6_c01315{height:84.269531px;}
.h2_c01315{height:91.160156px;}
.h3_c01315{height:102.555176px;}
.h0_c01315{height:785.700000px;}
.h1_c01315{height:786.000000px;}
.w1_c01315{width:104.875500px;}
.w0_c01315{width:513.000000px;}
.x0_c01315{left:0.000000px;}
.x7_c01315{left:45.900000px;}
.x3_c01315{left:46.950000px;}
.xa_c01315{left:49.950000px;}
.xb_c01315{left:51.000000px;}
.x2_c01315{left:53.100000px;}
.xd_c01315{left:76.500000px;}
.xc_c01315{left:108.300000px;}
.x6_c01315{left:161.700000px;}
.xf_c01315{left:208.314240px;}
.xe_c01315{left:211.200000px;}
.x1_c01315{left:229.800000px;}
.x5_c01315{left:234.900000px;}
.x8_c01315{left:255.150000px;}
.x4_c01315{left:381.600000px;}
.x9_c01315{left:412.350000px;}
@media print{
.v0_c01315{vertical-align:0.000000pt;}
.lsd_c01315{letter-spacing:-10.666667pt;}
.ls6_c01315{letter-spacing:-8.000000pt;}
.ls9_c01315{letter-spacing:-5.333333pt;}
.ls8_c01315{letter-spacing:-2.666667pt;}
.ls5_c01315{letter-spacing:0.000000pt;}
.ls4_c01315{letter-spacing:2.666667pt;}
.ls2_c01315{letter-spacing:3.189333pt;}
.ls7_c01315{letter-spacing:5.333333pt;}
.ls0_c01315{letter-spacing:9.066667pt;}
.ls1_c01315{letter-spacing:10.282667pt;}
.lsa_c01315{letter-spacing:16.000000pt;}
.lsb_c01315{letter-spacing:24.000000pt;}
.lsc_c01315{letter-spacing:58.666667pt;}
.ls3_c01315{letter-spacing:213.909333pt;}
.wsb_c01315{word-spacing:-74.090667pt;}
.ws9_c01315{word-spacing:-62.656000pt;}
.ws8_c01315{word-spacing:-54.924800pt;}
.ws7_c01315{word-spacing:-31.424000pt;}
.ws0_c01315{word-spacing:-26.666667pt;}
.wsa_c01315{word-spacing:-23.424000pt;}
.ws2_c01315{word-spacing:-22.189333pt;}
.ws4_c01315{word-spacing:-20.757333pt;}
.ws6_c01315{word-spacing:-18.090667pt;}
.ws3_c01315{word-spacing:-12.757333pt;}
.ws5_c01315{word-spacing:-10.090667pt;}
.wsc_c01315{word-spacing:-4.757333pt;}
.ws1_c01315{word-spacing:-3.568000pt;}
.wsd_c01315{word-spacing:0.000000pt;}
._36_c01315{margin-left:-45.862933pt;}
._37_c01315{margin-left:-41.476267pt;}
._39_c01315{margin-left:-34.240000pt;}
._38_c01315{margin-left:-26.880000pt;}
._33_c01315{margin-left:-24.816000pt;}
._2d_c01315{margin-left:-23.040000pt;}
._31_c01315{margin-left:-20.160000pt;}
._14_c01315{margin-left:-17.840000pt;}
._1d_c01315{margin-left:-16.320000pt;}
._f_c01315{margin-left:-14.400000pt;}
._b_c01315{margin-left:-12.816000pt;}
._1a_c01315{margin-left:-11.408000pt;}
._32_c01315{margin-left:-9.936000pt;}
._1c_c01315{margin-left:-9.008000pt;}
._1b_c01315{margin-left:-8.064000pt;}
._21_c01315{margin-left:-6.922667pt;}
._27_c01315{margin-left:-6.016000pt;}
._1e_c01315{margin-left:-4.981333pt;}
._1f_c01315{margin-left:-3.648000pt;}
._11_c01315{margin-left:-1.944000pt;}
._13_c01315{margin-left:-1.032000pt;}
._8_c01315{width:1.368000pt;}
._a_c01315{width:2.376000pt;}
._9_c01315{width:3.312000pt;}
._4_c01315{width:4.824000pt;}
._29_c01315{width:5.888000pt;}
._7_c01315{width:6.912000pt;}
._5_c01315{width:8.424000pt;}
._e_c01315{width:9.736000pt;}
._0_c01315{width:11.648000pt;}
._6_c01315{width:13.896000pt;}
._2_c01315{width:15.232000pt;}
._35_c01315{width:18.173333pt;}
._c_c01315{width:19.944000pt;}
._3a_c01315{width:21.570667pt;}
._1_c01315{width:25.088000pt;}
._42_c01315{width:26.925333pt;}
._12_c01315{width:28.624000pt;}
._2e_c01315{width:35.520000pt;}
._18_c01315{width:37.296000pt;}
._2c_c01315{width:40.266667pt;}
._2f_c01315{width:56.848000pt;}
._10_c01315{width:64.224000pt;}
._3b_c01315{width:79.093333pt;}
._16_c01315{width:92.160000pt;}
._34_c01315{width:112.096000pt;}
._28_c01315{width:115.416000pt;}
._3_c01315{width:130.688000pt;}
._20_c01315{width:147.693333pt;}
._15_c01315{width:157.178667pt;}
._24_c01315{width:162.472000pt;}
._25_c01315{width:176.576000pt;}
._44_c01315{width:180.712000pt;}
._26_c01315{width:183.242667pt;}
._17_c01315{width:193.824000pt;}
._3c_c01315{width:196.728000pt;}
._43_c01315{width:198.077333pt;}
._3d_c01315{width:230.464000pt;}
._d_c01315{width:233.352000pt;}
._2b_c01315{width:249.994667pt;}
._19_c01315{width:253.160000pt;}
._40_c01315{width:257.216000pt;}
._45_c01315{width:264.384000pt;}
._41_c01315{width:276.544000pt;}
._3e_c01315{width:426.400000pt;}
._23_c01315{width:543.418667pt;}
._2a_c01315{width:613.632000pt;}
._30_c01315{width:630.520000pt;}
._22_c01315{width:721.872000pt;}
._3f_c01315{width:836.570667pt;}
.fs4_c01315{font-size:32.000000pt;}
.fs7_c01315{font-size:42.666667pt;}
.fs2_c01315{font-size:48.000000pt;}
.fs6_c01315{font-size:51.200000pt;}
.fs3_c01315{font-size:53.333333pt;}
.fs5_c01315{font-size:56.000000pt;}
.fs0_c01315{font-size:64.000000pt;}
.fs1_c01315{font-size:72.000000pt;}
.y0_c01315{bottom:0.000000pt;}
.y16_c01315{bottom:2.760000pt;}
.y15_c01315{bottom:6.425212pt;}
.y14_c01315{bottom:27.600000pt;}
.y13_c01315{bottom:74.133333pt;}
.y12_c01315{bottom:97.200000pt;}
.y11_c01315{bottom:119.066667pt;}
.y10_c01315{bottom:141.866667pt;}
.yf_c01315{bottom:165.333333pt;}
.ye_c01315{bottom:232.000000pt;}
.yd_c01315{bottom:255.600000pt;}
.yc_c01315{bottom:275.733333pt;}
.yb_c01315{bottom:299.733333pt;}
.ya_c01315{bottom:404.666667pt;}
.y9_c01315{bottom:451.200000pt;}
.y8_c01315{bottom:473.733333pt;}
.y7_c01315{bottom:495.600000pt;}
.y6_c01315{bottom:517.200000pt;}
.y5_c01315{bottom:540.933333pt;}
.y4_c01315{bottom:562.266667pt;}
.y3_c01315{bottom:608.000000pt;}
.y2_c01315{bottom:629.466667pt;}
.y1_c01315{bottom:653.333333pt;}
.h7_c01315{height:11.733399pt;}
.h5_c01315{height:34.144000pt;}
.h8_c01315{height:38.937500pt;}
.h4_c01315{height:60.773438pt;}
.h6_c01315{height:74.906250pt;}
.h2_c01315{height:81.031250pt;}
.h3_c01315{height:91.160156pt;}
.h0_c01315{height:698.400000pt;}
.h1_c01315{height:698.666667pt;}
.w1_c01315{width:93.222667pt;}
.w0_c01315{width:456.000000pt;}
.x0_c01315{left:0.000000pt;}
.x7_c01315{left:40.800000pt;}
.x3_c01315{left:41.733333pt;}
.xa_c01315{left:44.400000pt;}
.xb_c01315{left:45.333333pt;}
.x2_c01315{left:47.200000pt;}
.xd_c01315{left:68.000000pt;}
.xc_c01315{left:96.266667pt;}
.x6_c01315{left:143.733333pt;}
.xf_c01315{left:185.168213pt;}
.xe_c01315{left:187.733333pt;}
.x1_c01315{left:204.266667pt;}
.x5_c01315{left:208.800000pt;}
.x8_c01315{left:226.800000pt;}
.x4_c01315{left:339.200000pt;}
.x9_c01315{left:366.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4e40bb40fbd74f75b9a47c5e.woff2')format("woff");}.ff1_c01316{font-family:ff1_c01316;line-height:1.284668;font-style:normal;font-weight:normal;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_0bf7f7492708f469c90b172a.woff2')format("woff");}.ff2_c01316{font-family:ff2_c01316;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff3_c01316{font-family:ff3_c01316;line-height:1.219238;font-style: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);}
.v1_c01316{vertical-align:-4.800000px;}
.v0_c01316{vertical-align:0.000000px;}
.ls0_c01316{letter-spacing:-6.000000px;}
.ls1_c01316{letter-spacing:0.000000px;}
.sc__c01316{text-shadow:none;}
.sc0_c01316{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01316{-webkit-text-stroke:0px transparent;}
.sc0_c01316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01316{word-spacing:0.000000px;}
.ws1_c01316{word-spacing:1.296000px;}
.ws0_c01316{word-spacing:731.262000px;}
._1_c01316{width:2.232000px;}
._0_c01316{width:7.095000px;}
._3_c01316{width:9.996000px;}
._4_c01316{width:55.794000px;}
._2_c01316{width:318.336000px;}
.fc2_c01316{color:transparent;}
.fc1_c01316{color:rgb(128,128,128);}
.fc0_c01316{color:rgb(0,0,0);}
.fs2_c01316{font-size:24.000000px;}
.fs4_c01316{font-size:48.000000px;}
.fs3_c01316{font-size:51.000000px;}
.fs1_c01316{font-size:72.000000px;}
.fs0_c01316{font-size:129.000000px;}
.y0_c01316{bottom:0.000000px;}
.y4_c01316{bottom:3.105000px;}
.y3_c01316{bottom:7.228363px;}
.y2_c01316{bottom:686.100000px;}
.y1_c01316{bottom:740.100000px;}
.h4_c01316{height:13.200074px;}
.h5_c01316{height:43.804688px;}
.h3_c01316{height:64.571777px;}
.h2_c01316{height:126.606445px;}
.h1_c01316{height:754.500000px;}
.h0_c01316{height:754.650000px;}
.w2_c01316{width:104.875500px;}
.w0_c01316{width:477.600000px;}
.w1_c01316{width:477.750000px;}
.x0_c01316{left:0.000000px;}
.x1_c01316{left:119.100000px;}
.x3_c01316{left:190.614258px;}
.x2_c01316{left:364.050000px;}
@media print{
.v1_c01316{vertical-align:-4.266667pt;}
.v0_c01316{vertical-align:0.000000pt;}
.ls0_c01316{letter-spacing:-5.333333pt;}
.ls1_c01316{letter-spacing:0.000000pt;}
.ws2_c01316{word-spacing:0.000000pt;}
.ws1_c01316{word-spacing:1.152000pt;}
.ws0_c01316{word-spacing:650.010667pt;}
._1_c01316{width:1.984000pt;}
._0_c01316{width:6.306667pt;}
._3_c01316{width:8.885333pt;}
._4_c01316{width:49.594667pt;}
._2_c01316{width:282.965333pt;}
.fs2_c01316{font-size:21.333333pt;}
.fs4_c01316{font-size:42.666667pt;}
.fs3_c01316{font-size:45.333333pt;}
.fs1_c01316{font-size:64.000000pt;}
.fs0_c01316{font-size:114.666667pt;}
.y0_c01316{bottom:0.000000pt;}
.y4_c01316{bottom:2.760000pt;}
.y3_c01316{bottom:6.425212pt;}
.y2_c01316{bottom:609.866667pt;}
.y1_c01316{bottom:657.866667pt;}
.h4_c01316{height:11.733399pt;}
.h5_c01316{height:38.937500pt;}
.h3_c01316{height:57.397135pt;}
.h2_c01316{height:112.539062pt;}
.h1_c01316{height:670.666667pt;}
.h0_c01316{height:670.800000pt;}
.w2_c01316{width:93.222667pt;}
.w0_c01316{width:424.533333pt;}
.w1_c01316{width:424.666667pt;}
.x0_c01316{left:0.000000pt;}
.x1_c01316{left:105.866667pt;}
.x3_c01316{left:169.434896pt;}
.x2_c01316{left:323.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4223c72f9107727f49cea987.woff2')format("woff");}.ff1_c01317{font-family:ff1_c01317;line-height:1.575000;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff2_c01317{font-family:ff2_c01317;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01317{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01317{vertical-align:0.000000px;}
.ls0_c01317{letter-spacing:-9.000000px;}
.ls1_c01317{letter-spacing:0.000000px;}
.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:0.000000px;}
._2_c01317{margin-left:-29.232000px;}
._1_c01317{margin-left:-19.152000px;}
._6_c01317{margin-left:-17.280000px;}
._8_c01317{margin-left:-14.544000px;}
._0_c01317{margin-left:-11.736000px;}
._3_c01317{margin-left:-10.512000px;}
._5_c01317{margin-left:-9.360000px;}
._9_c01317{margin-left:-8.352000px;}
._7_c01317{margin-left:-6.120000px;}
._4_c01317{margin-left:-1.008000px;}
._a_c01317{width:2.160000px;}
.fc2_c01317{color:transparent;}
.fc1_c01317{color:rgb(128,128,128);}
.fc0_c01317{color:rgb(0,0,0);}
.fs1_c01317{font-size:48.000000px;}
.fs0_c01317{font-size:72.000000px;}
.y0_c01317{bottom:0.000000px;}
.y1_c01317{bottom:0.315000px;}
.y3_c01317{bottom:3.105000px;}
.y2_c01317{bottom:7.228371px;}
.h3_c01317{height:13.200074px;}
.h4_c01317{height:43.804688px;}
.h2_c01317{height:76.824000px;}
.h0_c01317{height:740.625000px;}
.h1_c01317{height:741.000000px;}
.w2_c01317{width:104.875500px;}
.w0_c01317{width:525.675000px;}
.w1_c01317{width:525.750000px;}
.x0_c01317{left:0.000000px;}
.x2_c01317{left:214.651749px;}
.x1_c01317{left:272.400000px;}
@media print{
.v0_c01317{vertical-align:0.000000pt;}
.ls0_c01317{letter-spacing:-8.000000pt;}
.ls1_c01317{letter-spacing:0.000000pt;}
.ws0_c01317{word-spacing:0.000000pt;}
._2_c01317{margin-left:-25.984000pt;}
._1_c01317{margin-left:-17.024000pt;}
._6_c01317{margin-left:-15.360000pt;}
._8_c01317{margin-left:-12.928000pt;}
._0_c01317{margin-left:-10.432000pt;}
._3_c01317{margin-left:-9.344000pt;}
._5_c01317{margin-left:-8.320000pt;}
._9_c01317{margin-left:-7.424000pt;}
._7_c01317{margin-left:-5.440000pt;}
._4_c01317{margin-left:-0.896000pt;}
._a_c01317{width:1.920000pt;}
.fs1_c01317{font-size:42.666667pt;}
.fs0_c01317{font-size:64.000000pt;}
.y0_c01317{bottom:0.000000pt;}
.y1_c01317{bottom:0.280000pt;}
.y3_c01317{bottom:2.760000pt;}
.y2_c01317{bottom:6.425219pt;}
.h3_c01317{height:11.733399pt;}
.h4_c01317{height:38.937500pt;}
.h2_c01317{height:68.288000pt;}
.h0_c01317{height:658.333333pt;}
.h1_c01317{height:658.666667pt;}
.w2_c01317{width:93.222667pt;}
.w0_c01317{width:467.266667pt;}
.w1_c01317{width:467.333333pt;}
.x0_c01317{left:0.000000pt;}
.x2_c01317{left:190.801554pt;}
.x1_c01317{left:242.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ea2c1e5f4ab1a530c4b98499.woff2')format("woff");}.ff1_c01318{font-family:ff1_c01318;line-height:1.480469;font-style:normal;font-weight:normal;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_d5607f21f85a07bc38b1ca11.woff2')format("woff");}.ff2_c01318{font-family:ff2_c01318;line-height:1.284180;font-style:normal;font-weight:normal;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_607ee0feabaca73ef47b758c.woff2')format("woff");}.ff3_c01318{font-family:ff3_c01318;line-height:1.568848;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff4_c01318{font-family:ff4_c01318;line-height:1.219238;font-style: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);}
.v1_c01318{vertical-align:-106.800000px;}
.v0_c01318{vertical-align:0.000000px;}
.v2_c01318{vertical-align:18.600000px;}
.ls3_c01318{letter-spacing:-6.000000px;}
.ls4_c01318{letter-spacing:0.000000px;}
.ls2_c01318{letter-spacing:6.000000px;}
.ls0_c01318{letter-spacing:7.560000px;}
.ls1_c01318{letter-spacing:20.400000px;}
.sc__c01318{text-shadow:none;}
.sc0_c01318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01318{-webkit-text-stroke:0px transparent;}
.sc0_c01318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01318{word-spacing:0.000000px;}
.ws1_c01318{word-spacing:0.048000px;}
.ws0_c01318{word-spacing:265.632000px;}
._2_c01318{margin-left:-18.720000px;}
._7_c01318{margin-left:-4.896000px;}
._9_c01318{margin-left:-2.952000px;}
._3_c01318{margin-left:-1.872000px;}
._0_c01318{width:5.040000px;}
._5_c01318{width:7.920000px;}
._6_c01318{width:9.744000px;}
._1_c01318{width:13.176000px;}
._8_c01318{width:14.760000px;}
._4_c01318{width:26.424000px;}
.fc2_c01318{color:transparent;}
.fc1_c01318{color:rgb(128,128,128);}
.fc0_c01318{color:rgb(0,0,0);}
.fs2_c01318{font-size:24.000000px;}
.fs3_c01318{font-size:48.000000px;}
.fs0_c01318{font-size:72.000000px;}
.fs1_c01318{font-size:78.000000px;}
.y0_c01318{bottom:0.000000px;}
.y6_c01318{bottom:3.105000px;}
.y5_c01318{bottom:7.228363px;}
.y4_c01318{bottom:84.750000px;}
.y3_c01318{bottom:165.450000px;}
.y2_c01318{bottom:213.000000px;}
.y1_c01318{bottom:271.350000px;}
.h4_c01318{height:13.200074px;}
.h5_c01318{height:43.804688px;}
.h2_c01318{height:84.269531px;}
.h3_c01318{height:91.160156px;}
.h1_c01318{height:786.750000px;}
.h0_c01318{height:787.050000px;}
.w2_c01318{width:104.875500px;}
.w1_c01318{width:568.500000px;}
.w0_c01318{width:568.650000px;}
.x0_c01318{left:0.000000px;}
.x5_c01318{left:236.139267px;}
.x4_c01318{left:360.450000px;}
.x3_c01318{left:422.850000px;}
.x2_c01318{left:443.850000px;}
.x1_c01318{left:445.500000px;}
@media print{
.v1_c01318{vertical-align:-94.933333pt;}
.v0_c01318{vertical-align:0.000000pt;}
.v2_c01318{vertical-align:16.533333pt;}
.ls3_c01318{letter-spacing:-5.333333pt;}
.ls4_c01318{letter-spacing:0.000000pt;}
.ls2_c01318{letter-spacing:5.333333pt;}
.ls0_c01318{letter-spacing:6.720000pt;}
.ls1_c01318{letter-spacing:18.133333pt;}
.ws2_c01318{word-spacing:0.000000pt;}
.ws1_c01318{word-spacing:0.042667pt;}
.ws0_c01318{word-spacing:236.117333pt;}
._2_c01318{margin-left:-16.640000pt;}
._7_c01318{margin-left:-4.352000pt;}
._9_c01318{margin-left:-2.624000pt;}
._3_c01318{margin-left:-1.664000pt;}
._0_c01318{width:4.480000pt;}
._5_c01318{width:7.040000pt;}
._6_c01318{width:8.661333pt;}
._1_c01318{width:11.712000pt;}
._8_c01318{width:13.120000pt;}
._4_c01318{width:23.488000pt;}
.fs2_c01318{font-size:21.333333pt;}
.fs3_c01318{font-size:42.666667pt;}
.fs0_c01318{font-size:64.000000pt;}
.fs1_c01318{font-size:69.333333pt;}
.y0_c01318{bottom:0.000000pt;}
.y6_c01318{bottom:2.760000pt;}
.y5_c01318{bottom:6.425212pt;}
.y4_c01318{bottom:75.333333pt;}
.y3_c01318{bottom:147.066667pt;}
.y2_c01318{bottom:189.333333pt;}
.y1_c01318{bottom:241.200000pt;}
.h4_c01318{height:11.733399pt;}
.h5_c01318{height:38.937500pt;}
.h2_c01318{height:74.906250pt;}
.h3_c01318{height:81.031250pt;}
.h1_c01318{height:699.333333pt;}
.h0_c01318{height:699.600000pt;}
.w2_c01318{width:93.222667pt;}
.w1_c01318{width:505.333333pt;}
.w0_c01318{width:505.466667pt;}
.x0_c01318{left:0.000000pt;}
.x5_c01318{left:209.901571pt;}
.x4_c01318{left:320.400000pt;}
.x3_c01318{left:375.866667pt;}
.x2_c01318{left:394.533333pt;}
.x1_c01318{left:396.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_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_0cd28848117c522636214637.woff2')format("woff");}.ff1_c01319{font-family:ff1_c01319;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01319{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01319{vertical-align:0.000000px;}
.ls0_c01319{letter-spacing:0.000000px;}
.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.000000px;}
.fc0_c01319{color:rgb(128,128,128);}
.fs0_c01319{font-size:48.000000px;}
.y0_c01319{bottom:0.000000px;}
.y2_c01319{bottom:3.105000px;}
.y1_c01319{bottom:7.228369px;}
.h2_c01319{height:13.200073px;}
.h3_c01319{height:43.804688px;}
.h1_c01319{height:810.750000px;}
.h0_c01319{height:811.050000px;}
.w2_c01319{width:104.875500px;}
.w1_c01319{width:590.250000px;}
.w0_c01319{width:590.475000px;}
.x0_c01319{left:0.000000px;}
.x1_c01319{left:247.051758px;}
@media print{
.v0_c01319{vertical-align:0.000000pt;}
.ls0_c01319{letter-spacing:0.000000pt;}
.ws0_c01319{word-spacing:0.000000pt;}
.fs0_c01319{font-size:42.666667pt;}
.y0_c01319{bottom:0.000000pt;}
.y2_c01319{bottom:2.760000pt;}
.y1_c01319{bottom:6.425217pt;}
.h2_c01319{height:11.733399pt;}
.h3_c01319{height:38.937500pt;}
.h1_c01319{height:720.666667pt;}
.h0_c01319{height:720.933333pt;}
.w2_c01319{width:93.222667pt;}
.w1_c01319{width:524.666667pt;}
.w0_c01319{width:524.866667pt;}
.x0_c01319{left:0.000000pt;}
.x1_c01319{left:219.601563pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d15abb510356cf4df528b070.woff2')format("woff");}.ff1_c01320{font-family:ff1_c01320;line-height:1.480469;font-style:normal;font-weight:normal;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_0cd28848117c522636214637.woff2')format("woff");}.ff2_c01320{font-family:ff2_c01320;line-height:1.219238;font-style: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);}
.v0_c01320{vertical-align:0.000000px;}
.ls0_c01320{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc2_c01320{color:transparent;}
.fc1_c01320{color:rgb(128,128,128);}
.fc0_c01320{color:rgb(0,0,0);}
.fs1_c01320{font-size:48.000000px;}
.fs0_c01320{font-size:60.000000px;}
.y0_c01320{bottom:0.000000px;}
.y3_c01320{bottom:3.105000px;}
.y2_c01320{bottom:7.228363px;}
.y1_c01320{bottom:554.100000px;}
.h3_c01320{height:13.200074px;}
.h4_c01320{height:43.804688px;}
.h2_c01320{height:70.224609px;}
.h1_c01320{height:847.500000px;}
.h0_c01320{height:847.800000px;}
.w2_c01320{width:104.875500px;}
.w0_c01320{width:243.525000px;}
.w1_c01320{width:243.750000px;}
.x0_c01320{left:0.000000px;}
.x1_c01320{left:49.500000px;}
.x2_c01320{left:73.576767px;}
@media print{
.v0_c01320{vertical-align:0.000000pt;}
.ls0_c01320{letter-spacing:0.000000pt;}
.ws0_c01320{word-spacing:0.000000pt;}
.fs1_c01320{font-size:42.666667pt;}
.fs0_c01320{font-size:53.333333pt;}
.y0_c01320{bottom:0.000000pt;}
.y3_c01320{bottom:2.760000pt;}
.y2_c01320{bottom:6.425212pt;}
.y1_c01320{bottom:492.533333pt;}
.h3_c01320{height:11.733399pt;}
.h4_c01320{height:38.937500pt;}
.h2_c01320{height:62.421875pt;}
.h1_c01320{height:753.333333pt;}
.h0_c01320{height:753.600000pt;}
.w2_c01320{width:93.222667pt;}
.w0_c01320{width:216.466667pt;}
.w1_c01320{width:216.666667pt;}
.x0_c01320{left:0.000000pt;}
.x1_c01320{left:44.000000pt;}
.x2_c01320{left:65.401571pt;}
}




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